1 //===-- MipsTargetStreamer.cpp - Mips Target Streamer Methods -------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file provides Mips specific target streamer methods.
11 //===----------------------------------------------------------------------===//
13 #include "MipsTargetStreamer.h"
14 #include "MipsInstPrinter.h"
15 #include "MCTargetDesc/MipsABIInfo.h"
16 #include "MipsELFStreamer.h"
17 #include "MipsMCExpr.h"
18 #include "MipsMCTargetDesc.h"
19 #include "MipsTargetObjectFile.h"
20 #include "llvm/BinaryFormat/ELF.h"
21 #include "llvm/MC/MCContext.h"
22 #include "llvm/MC/MCSectionELF.h"
23 #include "llvm/MC/MCSubtargetInfo.h"
24 #include "llvm/MC/MCSymbolELF.h"
25 #include "llvm/Support/CommandLine.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/FormattedStream.h"
32 static cl::opt
<bool> RoundSectionSizes(
33 "mips-round-section-sizes", cl::init(false),
34 cl::desc("Round section sizes up to the section alignment"), cl::Hidden
);
35 } // end anonymous namespace
37 static bool isMipsR6(const MCSubtargetInfo
*STI
) {
38 return STI
->getFeatureBits()[Mips::FeatureMips32r6
] ||
39 STI
->getFeatureBits()[Mips::FeatureMips64r6
];
42 static bool isMicroMips(const MCSubtargetInfo
*STI
) {
43 return STI
->getFeatureBits()[Mips::FeatureMicroMips
];
46 MipsTargetStreamer::MipsTargetStreamer(MCStreamer
&S
)
47 : MCTargetStreamer(S
), GPReg(Mips::GP
), ModuleDirectiveAllowed(true) {
48 GPRInfoSet
= FPRInfoSet
= FrameInfoSet
= false;
50 void MipsTargetStreamer::emitDirectiveSetMicroMips() {}
51 void MipsTargetStreamer::emitDirectiveSetNoMicroMips() {}
52 void MipsTargetStreamer::setUsesMicroMips() {}
53 void MipsTargetStreamer::emitDirectiveSetMips16() {}
54 void MipsTargetStreamer::emitDirectiveSetNoMips16() { forbidModuleDirective(); }
55 void MipsTargetStreamer::emitDirectiveSetReorder() { forbidModuleDirective(); }
56 void MipsTargetStreamer::emitDirectiveSetNoReorder() {}
57 void MipsTargetStreamer::emitDirectiveSetMacro() { forbidModuleDirective(); }
58 void MipsTargetStreamer::emitDirectiveSetNoMacro() { forbidModuleDirective(); }
59 void MipsTargetStreamer::emitDirectiveSetMsa() { forbidModuleDirective(); }
60 void MipsTargetStreamer::emitDirectiveSetNoMsa() { forbidModuleDirective(); }
61 void MipsTargetStreamer::emitDirectiveSetMt() {}
62 void MipsTargetStreamer::emitDirectiveSetNoMt() { forbidModuleDirective(); }
63 void MipsTargetStreamer::emitDirectiveSetCRC() {}
64 void MipsTargetStreamer::emitDirectiveSetNoCRC() {}
65 void MipsTargetStreamer::emitDirectiveSetVirt() {}
66 void MipsTargetStreamer::emitDirectiveSetNoVirt() {}
67 void MipsTargetStreamer::emitDirectiveSetGINV() {}
68 void MipsTargetStreamer::emitDirectiveSetNoGINV() {}
69 void MipsTargetStreamer::emitDirectiveSetAt() { forbidModuleDirective(); }
70 void MipsTargetStreamer::emitDirectiveSetAtWithArg(unsigned RegNo
) {
71 forbidModuleDirective();
73 void MipsTargetStreamer::emitDirectiveSetNoAt() { forbidModuleDirective(); }
74 void MipsTargetStreamer::emitDirectiveEnd(StringRef Name
) {}
75 void MipsTargetStreamer::emitDirectiveEnt(const MCSymbol
&Symbol
) {}
76 void MipsTargetStreamer::emitDirectiveAbiCalls() {}
77 void MipsTargetStreamer::emitDirectiveNaN2008() {}
78 void MipsTargetStreamer::emitDirectiveNaNLegacy() {}
79 void MipsTargetStreamer::emitDirectiveOptionPic0() {}
80 void MipsTargetStreamer::emitDirectiveOptionPic2() {}
81 void MipsTargetStreamer::emitDirectiveInsn() { forbidModuleDirective(); }
82 void MipsTargetStreamer::emitFrame(unsigned StackReg
, unsigned StackSize
,
83 unsigned ReturnReg
) {}
84 void MipsTargetStreamer::emitMask(unsigned CPUBitmask
, int CPUTopSavedRegOff
) {}
85 void MipsTargetStreamer::emitFMask(unsigned FPUBitmask
, int FPUTopSavedRegOff
) {
87 void MipsTargetStreamer::emitDirectiveSetArch(StringRef Arch
) {
88 forbidModuleDirective();
90 void MipsTargetStreamer::emitDirectiveSetMips0() { forbidModuleDirective(); }
91 void MipsTargetStreamer::emitDirectiveSetMips1() { forbidModuleDirective(); }
92 void MipsTargetStreamer::emitDirectiveSetMips2() { forbidModuleDirective(); }
93 void MipsTargetStreamer::emitDirectiveSetMips3() { forbidModuleDirective(); }
94 void MipsTargetStreamer::emitDirectiveSetMips4() { forbidModuleDirective(); }
95 void MipsTargetStreamer::emitDirectiveSetMips5() { forbidModuleDirective(); }
96 void MipsTargetStreamer::emitDirectiveSetMips32() { forbidModuleDirective(); }
97 void MipsTargetStreamer::emitDirectiveSetMips32R2() { forbidModuleDirective(); }
98 void MipsTargetStreamer::emitDirectiveSetMips32R3() { forbidModuleDirective(); }
99 void MipsTargetStreamer::emitDirectiveSetMips32R5() { forbidModuleDirective(); }
100 void MipsTargetStreamer::emitDirectiveSetMips32R6() { forbidModuleDirective(); }
101 void MipsTargetStreamer::emitDirectiveSetMips64() { forbidModuleDirective(); }
102 void MipsTargetStreamer::emitDirectiveSetMips64R2() { forbidModuleDirective(); }
103 void MipsTargetStreamer::emitDirectiveSetMips64R3() { forbidModuleDirective(); }
104 void MipsTargetStreamer::emitDirectiveSetMips64R5() { forbidModuleDirective(); }
105 void MipsTargetStreamer::emitDirectiveSetMips64R6() { forbidModuleDirective(); }
106 void MipsTargetStreamer::emitDirectiveSetPop() { forbidModuleDirective(); }
107 void MipsTargetStreamer::emitDirectiveSetPush() { forbidModuleDirective(); }
108 void MipsTargetStreamer::emitDirectiveSetSoftFloat() {
109 forbidModuleDirective();
111 void MipsTargetStreamer::emitDirectiveSetHardFloat() {
112 forbidModuleDirective();
114 void MipsTargetStreamer::emitDirectiveSetDsp() { forbidModuleDirective(); }
115 void MipsTargetStreamer::emitDirectiveSetDspr2() { forbidModuleDirective(); }
116 void MipsTargetStreamer::emitDirectiveSetNoDsp() { forbidModuleDirective(); }
117 void MipsTargetStreamer::emitDirectiveCpLoad(unsigned RegNo
) {}
118 void MipsTargetStreamer::emitDirectiveCpLocal(unsigned RegNo
) {
120 // This directive forces to use the alternate register for context pointer.
125 // ld $25, %call16(foo)($4)
128 if (!getABI().IsN32() && !getABI().IsN64())
133 forbidModuleDirective();
135 bool MipsTargetStreamer::emitDirectiveCpRestore(
136 int Offset
, function_ref
<unsigned()> GetATReg
, SMLoc IDLoc
,
137 const MCSubtargetInfo
*STI
) {
138 forbidModuleDirective();
141 void MipsTargetStreamer::emitDirectiveCpsetup(unsigned RegNo
, int RegOrOffset
,
142 const MCSymbol
&Sym
, bool IsReg
) {
144 void MipsTargetStreamer::emitDirectiveCpreturn(unsigned SaveLocation
,
145 bool SaveLocationIsRegister
) {}
147 void MipsTargetStreamer::emitDirectiveModuleFP() {}
149 void MipsTargetStreamer::emitDirectiveModuleOddSPReg() {
150 if (!ABIFlagsSection
.OddSPReg
&& !ABIFlagsSection
.Is32BitABI
)
151 report_fatal_error("+nooddspreg is only valid for O32");
153 void MipsTargetStreamer::emitDirectiveModuleSoftFloat() {}
154 void MipsTargetStreamer::emitDirectiveModuleHardFloat() {}
155 void MipsTargetStreamer::emitDirectiveModuleMT() {}
156 void MipsTargetStreamer::emitDirectiveModuleCRC() {}
157 void MipsTargetStreamer::emitDirectiveModuleNoCRC() {}
158 void MipsTargetStreamer::emitDirectiveModuleVirt() {}
159 void MipsTargetStreamer::emitDirectiveModuleNoVirt() {}
160 void MipsTargetStreamer::emitDirectiveModuleGINV() {}
161 void MipsTargetStreamer::emitDirectiveModuleNoGINV() {}
162 void MipsTargetStreamer::emitDirectiveSetFp(
163 MipsABIFlagsSection::FpABIKind Value
) {
164 forbidModuleDirective();
166 void MipsTargetStreamer::emitDirectiveSetOddSPReg() { forbidModuleDirective(); }
167 void MipsTargetStreamer::emitDirectiveSetNoOddSPReg() {
168 forbidModuleDirective();
171 void MipsTargetStreamer::emitR(unsigned Opcode
, unsigned Reg0
, SMLoc IDLoc
,
172 const MCSubtargetInfo
*STI
) {
174 TmpInst
.setOpcode(Opcode
);
175 TmpInst
.addOperand(MCOperand::createReg(Reg0
));
176 TmpInst
.setLoc(IDLoc
);
177 getStreamer().EmitInstruction(TmpInst
, *STI
);
180 void MipsTargetStreamer::emitRX(unsigned Opcode
, unsigned Reg0
, MCOperand Op1
,
181 SMLoc IDLoc
, const MCSubtargetInfo
*STI
) {
183 TmpInst
.setOpcode(Opcode
);
184 TmpInst
.addOperand(MCOperand::createReg(Reg0
));
185 TmpInst
.addOperand(Op1
);
186 TmpInst
.setLoc(IDLoc
);
187 getStreamer().EmitInstruction(TmpInst
, *STI
);
190 void MipsTargetStreamer::emitRI(unsigned Opcode
, unsigned Reg0
, int32_t Imm
,
191 SMLoc IDLoc
, const MCSubtargetInfo
*STI
) {
192 emitRX(Opcode
, Reg0
, MCOperand::createImm(Imm
), IDLoc
, STI
);
195 void MipsTargetStreamer::emitRR(unsigned Opcode
, unsigned Reg0
, unsigned Reg1
,
196 SMLoc IDLoc
, const MCSubtargetInfo
*STI
) {
197 emitRX(Opcode
, Reg0
, MCOperand::createReg(Reg1
), IDLoc
, STI
);
200 void MipsTargetStreamer::emitII(unsigned Opcode
, int16_t Imm1
, int16_t Imm2
,
201 SMLoc IDLoc
, const MCSubtargetInfo
*STI
) {
203 TmpInst
.setOpcode(Opcode
);
204 TmpInst
.addOperand(MCOperand::createImm(Imm1
));
205 TmpInst
.addOperand(MCOperand::createImm(Imm2
));
206 TmpInst
.setLoc(IDLoc
);
207 getStreamer().EmitInstruction(TmpInst
, *STI
);
210 void MipsTargetStreamer::emitRRX(unsigned Opcode
, unsigned Reg0
, unsigned Reg1
,
211 MCOperand Op2
, SMLoc IDLoc
,
212 const MCSubtargetInfo
*STI
) {
214 TmpInst
.setOpcode(Opcode
);
215 TmpInst
.addOperand(MCOperand::createReg(Reg0
));
216 TmpInst
.addOperand(MCOperand::createReg(Reg1
));
217 TmpInst
.addOperand(Op2
);
218 TmpInst
.setLoc(IDLoc
);
219 getStreamer().EmitInstruction(TmpInst
, *STI
);
222 void MipsTargetStreamer::emitRRR(unsigned Opcode
, unsigned Reg0
, unsigned Reg1
,
223 unsigned Reg2
, SMLoc IDLoc
,
224 const MCSubtargetInfo
*STI
) {
225 emitRRX(Opcode
, Reg0
, Reg1
, MCOperand::createReg(Reg2
), IDLoc
, STI
);
228 void MipsTargetStreamer::emitRRRX(unsigned Opcode
, unsigned Reg0
, unsigned Reg1
,
229 unsigned Reg2
, MCOperand Op3
, SMLoc IDLoc
,
230 const MCSubtargetInfo
*STI
) {
232 TmpInst
.setOpcode(Opcode
);
233 TmpInst
.addOperand(MCOperand::createReg(Reg0
));
234 TmpInst
.addOperand(MCOperand::createReg(Reg1
));
235 TmpInst
.addOperand(MCOperand::createReg(Reg2
));
236 TmpInst
.addOperand(Op3
);
237 TmpInst
.setLoc(IDLoc
);
238 getStreamer().EmitInstruction(TmpInst
, *STI
);
241 void MipsTargetStreamer::emitRRI(unsigned Opcode
, unsigned Reg0
, unsigned Reg1
,
242 int16_t Imm
, SMLoc IDLoc
,
243 const MCSubtargetInfo
*STI
) {
244 emitRRX(Opcode
, Reg0
, Reg1
, MCOperand::createImm(Imm
), IDLoc
, STI
);
247 void MipsTargetStreamer::emitRRIII(unsigned Opcode
, unsigned Reg0
,
248 unsigned Reg1
, int16_t Imm0
, int16_t Imm1
,
249 int16_t Imm2
, SMLoc IDLoc
,
250 const MCSubtargetInfo
*STI
) {
252 TmpInst
.setOpcode(Opcode
);
253 TmpInst
.addOperand(MCOperand::createReg(Reg0
));
254 TmpInst
.addOperand(MCOperand::createReg(Reg1
));
255 TmpInst
.addOperand(MCOperand::createImm(Imm0
));
256 TmpInst
.addOperand(MCOperand::createImm(Imm1
));
257 TmpInst
.addOperand(MCOperand::createImm(Imm2
));
258 TmpInst
.setLoc(IDLoc
);
259 getStreamer().EmitInstruction(TmpInst
, *STI
);
262 void MipsTargetStreamer::emitAddu(unsigned DstReg
, unsigned SrcReg
,
263 unsigned TrgReg
, bool Is64Bit
,
264 const MCSubtargetInfo
*STI
) {
265 emitRRR(Is64Bit
? Mips::DADDu
: Mips::ADDu
, DstReg
, SrcReg
, TrgReg
, SMLoc(),
269 void MipsTargetStreamer::emitDSLL(unsigned DstReg
, unsigned SrcReg
,
270 int16_t ShiftAmount
, SMLoc IDLoc
,
271 const MCSubtargetInfo
*STI
) {
272 if (ShiftAmount
>= 32) {
273 emitRRI(Mips::DSLL32
, DstReg
, SrcReg
, ShiftAmount
- 32, IDLoc
, STI
);
277 emitRRI(Mips::DSLL
, DstReg
, SrcReg
, ShiftAmount
, IDLoc
, STI
);
280 void MipsTargetStreamer::emitEmptyDelaySlot(bool hasShortDelaySlot
, SMLoc IDLoc
,
281 const MCSubtargetInfo
*STI
) {
282 if (hasShortDelaySlot
)
283 emitRR(Mips::MOVE16_MM
, Mips::ZERO
, Mips::ZERO
, IDLoc
, STI
);
285 emitRRI(Mips::SLL
, Mips::ZERO
, Mips::ZERO
, 0, IDLoc
, STI
);
288 void MipsTargetStreamer::emitNop(SMLoc IDLoc
, const MCSubtargetInfo
*STI
) {
289 if (isMicroMips(STI
))
290 emitRR(Mips::MOVE16_MM
, Mips::ZERO
, Mips::ZERO
, IDLoc
, STI
);
292 emitRRI(Mips::SLL
, Mips::ZERO
, Mips::ZERO
, 0, IDLoc
, STI
);
295 /// Emit the $gp restore operation for .cprestore.
296 void MipsTargetStreamer::emitGPRestore(int Offset
, SMLoc IDLoc
,
297 const MCSubtargetInfo
*STI
) {
298 emitLoadWithImmOffset(Mips::LW
, GPReg
, Mips::SP
, Offset
, GPReg
, IDLoc
, STI
);
301 /// Emit a store instruction with an immediate offset.
302 void MipsTargetStreamer::emitStoreWithImmOffset(
303 unsigned Opcode
, unsigned SrcReg
, unsigned BaseReg
, int64_t Offset
,
304 function_ref
<unsigned()> GetATReg
, SMLoc IDLoc
,
305 const MCSubtargetInfo
*STI
) {
306 if (isInt
<16>(Offset
)) {
307 emitRRI(Opcode
, SrcReg
, BaseReg
, Offset
, IDLoc
, STI
);
311 // sw $8, offset($8) => lui $at, %hi(offset)
313 // sw $8, %lo(offset)($at)
315 unsigned ATReg
= GetATReg();
319 unsigned LoOffset
= Offset
& 0x0000ffff;
320 unsigned HiOffset
= (Offset
& 0xffff0000) >> 16;
322 // If msb of LoOffset is 1(negative number) we must increment HiOffset
323 // to account for the sign-extension of the low part.
324 if (LoOffset
& 0x8000)
327 // Generate the base address in ATReg.
328 emitRI(Mips::LUi
, ATReg
, HiOffset
, IDLoc
, STI
);
329 if (BaseReg
!= Mips::ZERO
)
330 emitRRR(Mips::ADDu
, ATReg
, ATReg
, BaseReg
, IDLoc
, STI
);
331 // Emit the store with the adjusted base and offset.
332 emitRRI(Opcode
, SrcReg
, ATReg
, LoOffset
, IDLoc
, STI
);
335 /// Emit a store instruction with an symbol offset.
336 void MipsTargetStreamer::emitSCWithSymOffset(unsigned Opcode
, unsigned SrcReg
,
338 MCOperand
&HiOperand
,
339 MCOperand
&LoOperand
,
340 unsigned ATReg
, SMLoc IDLoc
,
341 const MCSubtargetInfo
*STI
) {
342 // sc $8, sym => lui $at, %hi(sym)
343 // sc $8, %lo(sym)($at)
345 // Generate the base address in ATReg.
346 emitRX(Mips::LUi
, ATReg
, HiOperand
, IDLoc
, STI
);
347 if (!isMicroMips(STI
) && isMipsR6(STI
)) {
348 // For non-micromips r6 offset for 'sc' is not in the lower 16 bits so we
350 // sc $8, sym => lui $at, %hi(sym)
351 // addiu $at, $at, %lo(sym)
353 emitRRX(Mips::ADDiu
, ATReg
, ATReg
, LoOperand
, IDLoc
, STI
);
354 MCOperand Offset
= MCOperand::createImm(0);
355 // Emit the store with the adjusted base and offset.
356 emitRRRX(Opcode
, SrcReg
, SrcReg
, ATReg
, Offset
, IDLoc
, STI
);
358 if (BaseReg
!= Mips::ZERO
)
359 emitRRR(Mips::ADDu
, ATReg
, ATReg
, BaseReg
, IDLoc
, STI
);
360 // Emit the store with the adjusted base and offset.
361 emitRRRX(Opcode
, SrcReg
, SrcReg
, ATReg
, LoOperand
, IDLoc
, STI
);
365 /// Emit a load instruction with an immediate offset. DstReg and TmpReg are
366 /// permitted to be the same register iff DstReg is distinct from BaseReg and
367 /// DstReg is a GPR. It is the callers responsibility to identify such cases
368 /// and pass the appropriate register in TmpReg.
369 void MipsTargetStreamer::emitLoadWithImmOffset(unsigned Opcode
, unsigned DstReg
,
370 unsigned BaseReg
, int64_t Offset
,
371 unsigned TmpReg
, SMLoc IDLoc
,
372 const MCSubtargetInfo
*STI
) {
373 if (isInt
<16>(Offset
)) {
374 emitRRI(Opcode
, DstReg
, BaseReg
, Offset
, IDLoc
, STI
);
378 // 1) lw $8, offset($9) => lui $8, %hi(offset)
380 // lw $8, %lo(offset)($9)
381 // 2) lw $8, offset($8) => lui $at, %hi(offset)
383 // lw $8, %lo(offset)($at)
385 unsigned LoOffset
= Offset
& 0x0000ffff;
386 unsigned HiOffset
= (Offset
& 0xffff0000) >> 16;
388 // If msb of LoOffset is 1(negative number) we must increment HiOffset
389 // to account for the sign-extension of the low part.
390 if (LoOffset
& 0x8000)
393 // Generate the base address in TmpReg.
394 emitRI(Mips::LUi
, TmpReg
, HiOffset
, IDLoc
, STI
);
395 if (BaseReg
!= Mips::ZERO
)
396 emitRRR(Mips::ADDu
, TmpReg
, TmpReg
, BaseReg
, IDLoc
, STI
);
397 // Emit the load with the adjusted base and offset.
398 emitRRI(Opcode
, DstReg
, TmpReg
, LoOffset
, IDLoc
, STI
);
401 MipsTargetAsmStreamer::MipsTargetAsmStreamer(MCStreamer
&S
,
402 formatted_raw_ostream
&OS
)
403 : MipsTargetStreamer(S
), OS(OS
) {}
405 void MipsTargetAsmStreamer::emitDirectiveSetMicroMips() {
406 OS
<< "\t.set\tmicromips\n";
407 forbidModuleDirective();
410 void MipsTargetAsmStreamer::emitDirectiveSetNoMicroMips() {
411 OS
<< "\t.set\tnomicromips\n";
412 forbidModuleDirective();
415 void MipsTargetAsmStreamer::emitDirectiveSetMips16() {
416 OS
<< "\t.set\tmips16\n";
417 forbidModuleDirective();
420 void MipsTargetAsmStreamer::emitDirectiveSetNoMips16() {
421 OS
<< "\t.set\tnomips16\n";
422 MipsTargetStreamer::emitDirectiveSetNoMips16();
425 void MipsTargetAsmStreamer::emitDirectiveSetReorder() {
426 OS
<< "\t.set\treorder\n";
427 MipsTargetStreamer::emitDirectiveSetReorder();
430 void MipsTargetAsmStreamer::emitDirectiveSetNoReorder() {
431 OS
<< "\t.set\tnoreorder\n";
432 forbidModuleDirective();
435 void MipsTargetAsmStreamer::emitDirectiveSetMacro() {
436 OS
<< "\t.set\tmacro\n";
437 MipsTargetStreamer::emitDirectiveSetMacro();
440 void MipsTargetAsmStreamer::emitDirectiveSetNoMacro() {
441 OS
<< "\t.set\tnomacro\n";
442 MipsTargetStreamer::emitDirectiveSetNoMacro();
445 void MipsTargetAsmStreamer::emitDirectiveSetMsa() {
446 OS
<< "\t.set\tmsa\n";
447 MipsTargetStreamer::emitDirectiveSetMsa();
450 void MipsTargetAsmStreamer::emitDirectiveSetNoMsa() {
451 OS
<< "\t.set\tnomsa\n";
452 MipsTargetStreamer::emitDirectiveSetNoMsa();
455 void MipsTargetAsmStreamer::emitDirectiveSetMt() {
456 OS
<< "\t.set\tmt\n";
457 MipsTargetStreamer::emitDirectiveSetMt();
460 void MipsTargetAsmStreamer::emitDirectiveSetNoMt() {
461 OS
<< "\t.set\tnomt\n";
462 MipsTargetStreamer::emitDirectiveSetNoMt();
465 void MipsTargetAsmStreamer::emitDirectiveSetCRC() {
466 OS
<< "\t.set\tcrc\n";
467 MipsTargetStreamer::emitDirectiveSetCRC();
470 void MipsTargetAsmStreamer::emitDirectiveSetNoCRC() {
471 OS
<< "\t.set\tnocrc\n";
472 MipsTargetStreamer::emitDirectiveSetNoCRC();
475 void MipsTargetAsmStreamer::emitDirectiveSetVirt() {
476 OS
<< "\t.set\tvirt\n";
477 MipsTargetStreamer::emitDirectiveSetVirt();
480 void MipsTargetAsmStreamer::emitDirectiveSetNoVirt() {
481 OS
<< "\t.set\tnovirt\n";
482 MipsTargetStreamer::emitDirectiveSetNoVirt();
485 void MipsTargetAsmStreamer::emitDirectiveSetGINV() {
486 OS
<< "\t.set\tginv\n";
487 MipsTargetStreamer::emitDirectiveSetGINV();
490 void MipsTargetAsmStreamer::emitDirectiveSetNoGINV() {
491 OS
<< "\t.set\tnoginv\n";
492 MipsTargetStreamer::emitDirectiveSetNoGINV();
495 void MipsTargetAsmStreamer::emitDirectiveSetAt() {
496 OS
<< "\t.set\tat\n";
497 MipsTargetStreamer::emitDirectiveSetAt();
500 void MipsTargetAsmStreamer::emitDirectiveSetAtWithArg(unsigned RegNo
) {
501 OS
<< "\t.set\tat=$" << Twine(RegNo
) << "\n";
502 MipsTargetStreamer::emitDirectiveSetAtWithArg(RegNo
);
505 void MipsTargetAsmStreamer::emitDirectiveSetNoAt() {
506 OS
<< "\t.set\tnoat\n";
507 MipsTargetStreamer::emitDirectiveSetNoAt();
510 void MipsTargetAsmStreamer::emitDirectiveEnd(StringRef Name
) {
511 OS
<< "\t.end\t" << Name
<< '\n';
514 void MipsTargetAsmStreamer::emitDirectiveEnt(const MCSymbol
&Symbol
) {
515 OS
<< "\t.ent\t" << Symbol
.getName() << '\n';
518 void MipsTargetAsmStreamer::emitDirectiveAbiCalls() { OS
<< "\t.abicalls\n"; }
520 void MipsTargetAsmStreamer::emitDirectiveNaN2008() { OS
<< "\t.nan\t2008\n"; }
522 void MipsTargetAsmStreamer::emitDirectiveNaNLegacy() {
523 OS
<< "\t.nan\tlegacy\n";
526 void MipsTargetAsmStreamer::emitDirectiveOptionPic0() {
527 OS
<< "\t.option\tpic0\n";
530 void MipsTargetAsmStreamer::emitDirectiveOptionPic2() {
531 OS
<< "\t.option\tpic2\n";
534 void MipsTargetAsmStreamer::emitDirectiveInsn() {
535 MipsTargetStreamer::emitDirectiveInsn();
539 void MipsTargetAsmStreamer::emitFrame(unsigned StackReg
, unsigned StackSize
,
540 unsigned ReturnReg
) {
542 << StringRef(MipsInstPrinter::getRegisterName(StackReg
)).lower() << ","
544 << StringRef(MipsInstPrinter::getRegisterName(ReturnReg
)).lower() << '\n';
547 void MipsTargetAsmStreamer::emitDirectiveSetArch(StringRef Arch
) {
548 OS
<< "\t.set arch=" << Arch
<< "\n";
549 MipsTargetStreamer::emitDirectiveSetArch(Arch
);
552 void MipsTargetAsmStreamer::emitDirectiveSetMips0() {
553 OS
<< "\t.set\tmips0\n";
554 MipsTargetStreamer::emitDirectiveSetMips0();
557 void MipsTargetAsmStreamer::emitDirectiveSetMips1() {
558 OS
<< "\t.set\tmips1\n";
559 MipsTargetStreamer::emitDirectiveSetMips1();
562 void MipsTargetAsmStreamer::emitDirectiveSetMips2() {
563 OS
<< "\t.set\tmips2\n";
564 MipsTargetStreamer::emitDirectiveSetMips2();
567 void MipsTargetAsmStreamer::emitDirectiveSetMips3() {
568 OS
<< "\t.set\tmips3\n";
569 MipsTargetStreamer::emitDirectiveSetMips3();
572 void MipsTargetAsmStreamer::emitDirectiveSetMips4() {
573 OS
<< "\t.set\tmips4\n";
574 MipsTargetStreamer::emitDirectiveSetMips4();
577 void MipsTargetAsmStreamer::emitDirectiveSetMips5() {
578 OS
<< "\t.set\tmips5\n";
579 MipsTargetStreamer::emitDirectiveSetMips5();
582 void MipsTargetAsmStreamer::emitDirectiveSetMips32() {
583 OS
<< "\t.set\tmips32\n";
584 MipsTargetStreamer::emitDirectiveSetMips32();
587 void MipsTargetAsmStreamer::emitDirectiveSetMips32R2() {
588 OS
<< "\t.set\tmips32r2\n";
589 MipsTargetStreamer::emitDirectiveSetMips32R2();
592 void MipsTargetAsmStreamer::emitDirectiveSetMips32R3() {
593 OS
<< "\t.set\tmips32r3\n";
594 MipsTargetStreamer::emitDirectiveSetMips32R3();
597 void MipsTargetAsmStreamer::emitDirectiveSetMips32R5() {
598 OS
<< "\t.set\tmips32r5\n";
599 MipsTargetStreamer::emitDirectiveSetMips32R5();
602 void MipsTargetAsmStreamer::emitDirectiveSetMips32R6() {
603 OS
<< "\t.set\tmips32r6\n";
604 MipsTargetStreamer::emitDirectiveSetMips32R6();
607 void MipsTargetAsmStreamer::emitDirectiveSetMips64() {
608 OS
<< "\t.set\tmips64\n";
609 MipsTargetStreamer::emitDirectiveSetMips64();
612 void MipsTargetAsmStreamer::emitDirectiveSetMips64R2() {
613 OS
<< "\t.set\tmips64r2\n";
614 MipsTargetStreamer::emitDirectiveSetMips64R2();
617 void MipsTargetAsmStreamer::emitDirectiveSetMips64R3() {
618 OS
<< "\t.set\tmips64r3\n";
619 MipsTargetStreamer::emitDirectiveSetMips64R3();
622 void MipsTargetAsmStreamer::emitDirectiveSetMips64R5() {
623 OS
<< "\t.set\tmips64r5\n";
624 MipsTargetStreamer::emitDirectiveSetMips64R5();
627 void MipsTargetAsmStreamer::emitDirectiveSetMips64R6() {
628 OS
<< "\t.set\tmips64r6\n";
629 MipsTargetStreamer::emitDirectiveSetMips64R6();
632 void MipsTargetAsmStreamer::emitDirectiveSetDsp() {
633 OS
<< "\t.set\tdsp\n";
634 MipsTargetStreamer::emitDirectiveSetDsp();
637 void MipsTargetAsmStreamer::emitDirectiveSetDspr2() {
638 OS
<< "\t.set\tdspr2\n";
639 MipsTargetStreamer::emitDirectiveSetDspr2();
642 void MipsTargetAsmStreamer::emitDirectiveSetNoDsp() {
643 OS
<< "\t.set\tnodsp\n";
644 MipsTargetStreamer::emitDirectiveSetNoDsp();
647 void MipsTargetAsmStreamer::emitDirectiveSetPop() {
648 OS
<< "\t.set\tpop\n";
649 MipsTargetStreamer::emitDirectiveSetPop();
652 void MipsTargetAsmStreamer::emitDirectiveSetPush() {
653 OS
<< "\t.set\tpush\n";
654 MipsTargetStreamer::emitDirectiveSetPush();
657 void MipsTargetAsmStreamer::emitDirectiveSetSoftFloat() {
658 OS
<< "\t.set\tsoftfloat\n";
659 MipsTargetStreamer::emitDirectiveSetSoftFloat();
662 void MipsTargetAsmStreamer::emitDirectiveSetHardFloat() {
663 OS
<< "\t.set\thardfloat\n";
664 MipsTargetStreamer::emitDirectiveSetHardFloat();
667 // Print a 32 bit hex number with all numbers.
668 static void printHex32(unsigned Value
, raw_ostream
&OS
) {
670 for (int i
= 7; i
>= 0; i
--)
671 OS
.write_hex((Value
& (0xF << (i
* 4))) >> (i
* 4));
674 void MipsTargetAsmStreamer::emitMask(unsigned CPUBitmask
,
675 int CPUTopSavedRegOff
) {
677 printHex32(CPUBitmask
, OS
);
678 OS
<< ',' << CPUTopSavedRegOff
<< '\n';
681 void MipsTargetAsmStreamer::emitFMask(unsigned FPUBitmask
,
682 int FPUTopSavedRegOff
) {
684 printHex32(FPUBitmask
, OS
);
685 OS
<< "," << FPUTopSavedRegOff
<< '\n';
688 void MipsTargetAsmStreamer::emitDirectiveCpLoad(unsigned RegNo
) {
690 << StringRef(MipsInstPrinter::getRegisterName(RegNo
)).lower() << "\n";
691 forbidModuleDirective();
694 void MipsTargetAsmStreamer::emitDirectiveCpLocal(unsigned RegNo
) {
695 OS
<< "\t.cplocal\t$"
696 << StringRef(MipsInstPrinter::getRegisterName(RegNo
)).lower() << "\n";
697 MipsTargetStreamer::emitDirectiveCpLocal(RegNo
);
700 bool MipsTargetAsmStreamer::emitDirectiveCpRestore(
701 int Offset
, function_ref
<unsigned()> GetATReg
, SMLoc IDLoc
,
702 const MCSubtargetInfo
*STI
) {
703 MipsTargetStreamer::emitDirectiveCpRestore(Offset
, GetATReg
, IDLoc
, STI
);
704 OS
<< "\t.cprestore\t" << Offset
<< "\n";
708 void MipsTargetAsmStreamer::emitDirectiveCpsetup(unsigned RegNo
,
712 OS
<< "\t.cpsetup\t$"
713 << StringRef(MipsInstPrinter::getRegisterName(RegNo
)).lower() << ", ";
717 << StringRef(MipsInstPrinter::getRegisterName(RegOrOffset
)).lower();
724 forbidModuleDirective();
727 void MipsTargetAsmStreamer::emitDirectiveCpreturn(unsigned SaveLocation
,
728 bool SaveLocationIsRegister
) {
730 forbidModuleDirective();
733 void MipsTargetAsmStreamer::emitDirectiveModuleFP() {
734 MipsABIFlagsSection::FpABIKind FpABI
= ABIFlagsSection
.getFpABI();
735 if (FpABI
== MipsABIFlagsSection::FpABIKind::SOFT
)
736 OS
<< "\t.module\tsoftfloat\n";
738 OS
<< "\t.module\tfp=" << ABIFlagsSection
.getFpABIString(FpABI
) << "\n";
741 void MipsTargetAsmStreamer::emitDirectiveSetFp(
742 MipsABIFlagsSection::FpABIKind Value
) {
743 MipsTargetStreamer::emitDirectiveSetFp(Value
);
746 OS
<< ABIFlagsSection
.getFpABIString(Value
) << "\n";
749 void MipsTargetAsmStreamer::emitDirectiveModuleOddSPReg() {
750 MipsTargetStreamer::emitDirectiveModuleOddSPReg();
752 OS
<< "\t.module\t" << (ABIFlagsSection
.OddSPReg
? "" : "no") << "oddspreg\n";
755 void MipsTargetAsmStreamer::emitDirectiveSetOddSPReg() {
756 MipsTargetStreamer::emitDirectiveSetOddSPReg();
757 OS
<< "\t.set\toddspreg\n";
760 void MipsTargetAsmStreamer::emitDirectiveSetNoOddSPReg() {
761 MipsTargetStreamer::emitDirectiveSetNoOddSPReg();
762 OS
<< "\t.set\tnooddspreg\n";
765 void MipsTargetAsmStreamer::emitDirectiveModuleSoftFloat() {
766 OS
<< "\t.module\tsoftfloat\n";
769 void MipsTargetAsmStreamer::emitDirectiveModuleHardFloat() {
770 OS
<< "\t.module\thardfloat\n";
773 void MipsTargetAsmStreamer::emitDirectiveModuleMT() {
774 OS
<< "\t.module\tmt\n";
777 void MipsTargetAsmStreamer::emitDirectiveModuleCRC() {
778 OS
<< "\t.module\tcrc\n";
781 void MipsTargetAsmStreamer::emitDirectiveModuleNoCRC() {
782 OS
<< "\t.module\tnocrc\n";
785 void MipsTargetAsmStreamer::emitDirectiveModuleVirt() {
786 OS
<< "\t.module\tvirt\n";
789 void MipsTargetAsmStreamer::emitDirectiveModuleNoVirt() {
790 OS
<< "\t.module\tnovirt\n";
793 void MipsTargetAsmStreamer::emitDirectiveModuleGINV() {
794 OS
<< "\t.module\tginv\n";
797 void MipsTargetAsmStreamer::emitDirectiveModuleNoGINV() {
798 OS
<< "\t.module\tnoginv\n";
801 // This part is for ELF object output.
802 MipsTargetELFStreamer::MipsTargetELFStreamer(MCStreamer
&S
,
803 const MCSubtargetInfo
&STI
)
804 : MipsTargetStreamer(S
), MicroMipsEnabled(false), STI(STI
) {
805 MCAssembler
&MCA
= getStreamer().getAssembler();
807 // It's possible that MCObjectFileInfo isn't fully initialized at this point
808 // due to an initialization order problem where LLVMTargetMachine creates the
809 // target streamer before TargetLoweringObjectFile calls
810 // InitializeMCObjectFileInfo. There doesn't seem to be a single place that
811 // covers all cases so this statement covers most cases and direct object
812 // emission must call setPic() once MCObjectFileInfo has been initialized. The
813 // cases we don't handle here are covered by MipsAsmPrinter.
814 Pic
= MCA
.getContext().getObjectFileInfo()->isPositionIndependent();
816 const FeatureBitset
&Features
= STI
.getFeatureBits();
818 // Set the header flags that we can in the constructor.
819 // FIXME: This is a fairly terrible hack. We set the rest
820 // of these in the destructor. The problem here is two-fold:
822 // a: Some of the eflags can be set/reset by directives.
823 // b: There aren't any usage paths that initialize the ABI
824 // pointer until after we initialize either an assembler
825 // or the target machine.
826 // We can fix this by making the target streamer construct
827 // the ABI, but this is fraught with wide ranging dependency
829 unsigned EFlags
= MCA
.getELFHeaderEFlags();
831 // FIXME: Fix a dependency issue by instantiating the ABI object to some
832 // default based off the triple. The triple doesn't describe the target
833 // fully, but any external user of the API that uses the MCTargetStreamer
834 // would otherwise crash on assertion failure.
837 STI
.getTargetTriple().getArch() == Triple::ArchType::mipsel
||
838 STI
.getTargetTriple().getArch() == Triple::ArchType::mips
840 : MipsABIInfo::N64());
843 if (Features
[Mips::FeatureMips64r6
])
844 EFlags
|= ELF::EF_MIPS_ARCH_64R6
;
845 else if (Features
[Mips::FeatureMips64r2
] ||
846 Features
[Mips::FeatureMips64r3
] ||
847 Features
[Mips::FeatureMips64r5
])
848 EFlags
|= ELF::EF_MIPS_ARCH_64R2
;
849 else if (Features
[Mips::FeatureMips64
])
850 EFlags
|= ELF::EF_MIPS_ARCH_64
;
851 else if (Features
[Mips::FeatureMips5
])
852 EFlags
|= ELF::EF_MIPS_ARCH_5
;
853 else if (Features
[Mips::FeatureMips4
])
854 EFlags
|= ELF::EF_MIPS_ARCH_4
;
855 else if (Features
[Mips::FeatureMips3
])
856 EFlags
|= ELF::EF_MIPS_ARCH_3
;
857 else if (Features
[Mips::FeatureMips32r6
])
858 EFlags
|= ELF::EF_MIPS_ARCH_32R6
;
859 else if (Features
[Mips::FeatureMips32r2
] ||
860 Features
[Mips::FeatureMips32r3
] ||
861 Features
[Mips::FeatureMips32r5
])
862 EFlags
|= ELF::EF_MIPS_ARCH_32R2
;
863 else if (Features
[Mips::FeatureMips32
])
864 EFlags
|= ELF::EF_MIPS_ARCH_32
;
865 else if (Features
[Mips::FeatureMips2
])
866 EFlags
|= ELF::EF_MIPS_ARCH_2
;
868 EFlags
|= ELF::EF_MIPS_ARCH_1
;
871 if (Features
[Mips::FeatureCnMips
])
872 EFlags
|= ELF::EF_MIPS_MACH_OCTEON
;
875 if (Features
[Mips::FeatureNaN2008
])
876 EFlags
|= ELF::EF_MIPS_NAN2008
;
878 MCA
.setELFHeaderEFlags(EFlags
);
881 void MipsTargetELFStreamer::emitLabel(MCSymbol
*S
) {
882 auto *Symbol
= cast
<MCSymbolELF
>(S
);
883 getStreamer().getAssembler().registerSymbol(*Symbol
);
884 uint8_t Type
= Symbol
->getType();
885 if (Type
!= ELF::STT_FUNC
)
888 if (isMicroMipsEnabled())
889 Symbol
->setOther(ELF::STO_MIPS_MICROMIPS
);
892 void MipsTargetELFStreamer::finish() {
893 MCAssembler
&MCA
= getStreamer().getAssembler();
894 const MCObjectFileInfo
&OFI
= *MCA
.getContext().getObjectFileInfo();
896 // .bss, .text and .data are always at least 16-byte aligned.
897 MCSection
&TextSection
= *OFI
.getTextSection();
898 MCA
.registerSection(TextSection
);
899 MCSection
&DataSection
= *OFI
.getDataSection();
900 MCA
.registerSection(DataSection
);
901 MCSection
&BSSSection
= *OFI
.getBSSSection();
902 MCA
.registerSection(BSSSection
);
904 TextSection
.setAlignment(Align(std::max(16u, TextSection
.getAlignment())));
905 DataSection
.setAlignment(Align(std::max(16u, DataSection
.getAlignment())));
906 BSSSection
.setAlignment(Align(std::max(16u, BSSSection
.getAlignment())));
908 if (RoundSectionSizes
) {
909 // Make sections sizes a multiple of the alignment. This is useful for
910 // verifying the output of IAS against the output of other assemblers but
911 // it's not necessary to produce a correct object and increases section
913 MCStreamer
&OS
= getStreamer();
914 for (MCSection
&S
: MCA
) {
915 MCSectionELF
&Section
= static_cast<MCSectionELF
&>(S
);
917 unsigned Alignment
= Section
.getAlignment();
919 OS
.SwitchSection(&Section
);
920 if (Section
.UseCodeAlign())
921 OS
.EmitCodeAlignment(Alignment
, Alignment
);
923 OS
.EmitValueToAlignment(Alignment
, 0, 1, Alignment
);
928 const FeatureBitset
&Features
= STI
.getFeatureBits();
930 // Update e_header flags. See the FIXME and comment above in
931 // the constructor for a full rundown on this.
932 unsigned EFlags
= MCA
.getELFHeaderEFlags();
935 // N64 does not require any ABI bits.
936 if (getABI().IsO32())
937 EFlags
|= ELF::EF_MIPS_ABI_O32
;
938 else if (getABI().IsN32())
939 EFlags
|= ELF::EF_MIPS_ABI2
;
941 if (Features
[Mips::FeatureGP64Bit
]) {
942 if (getABI().IsO32())
943 EFlags
|= ELF::EF_MIPS_32BITMODE
; /* Compatibility Mode */
944 } else if (Features
[Mips::FeatureMips64r2
] || Features
[Mips::FeatureMips64
])
945 EFlags
|= ELF::EF_MIPS_32BITMODE
;
947 // -mplt is not implemented but we should act as if it was
949 if (!Features
[Mips::FeatureNoABICalls
])
950 EFlags
|= ELF::EF_MIPS_CPIC
;
953 EFlags
|= ELF::EF_MIPS_PIC
| ELF::EF_MIPS_CPIC
;
955 MCA
.setELFHeaderEFlags(EFlags
);
957 // Emit all the option records.
958 // At the moment we are only emitting .Mips.options (ODK_REGINFO) and
960 MipsELFStreamer
&MEF
= static_cast<MipsELFStreamer
&>(Streamer
);
961 MEF
.EmitMipsOptionRecords();
966 void MipsTargetELFStreamer::emitAssignment(MCSymbol
*S
, const MCExpr
*Value
) {
967 auto *Symbol
= cast
<MCSymbolELF
>(S
);
968 // If on rhs is micromips symbol then mark Symbol as microMips.
969 if (Value
->getKind() != MCExpr::SymbolRef
)
971 const auto &RhsSym
= cast
<MCSymbolELF
>(
972 static_cast<const MCSymbolRefExpr
*>(Value
)->getSymbol());
974 if (!(RhsSym
.getOther() & ELF::STO_MIPS_MICROMIPS
))
977 Symbol
->setOther(ELF::STO_MIPS_MICROMIPS
);
980 MCELFStreamer
&MipsTargetELFStreamer::getStreamer() {
981 return static_cast<MCELFStreamer
&>(Streamer
);
984 void MipsTargetELFStreamer::emitDirectiveSetMicroMips() {
985 MicroMipsEnabled
= true;
986 forbidModuleDirective();
989 void MipsTargetELFStreamer::emitDirectiveSetNoMicroMips() {
990 MicroMipsEnabled
= false;
991 forbidModuleDirective();
994 void MipsTargetELFStreamer::setUsesMicroMips() {
995 MCAssembler
&MCA
= getStreamer().getAssembler();
996 unsigned Flags
= MCA
.getELFHeaderEFlags();
997 Flags
|= ELF::EF_MIPS_MICROMIPS
;
998 MCA
.setELFHeaderEFlags(Flags
);
1001 void MipsTargetELFStreamer::emitDirectiveSetMips16() {
1002 MCAssembler
&MCA
= getStreamer().getAssembler();
1003 unsigned Flags
= MCA
.getELFHeaderEFlags();
1004 Flags
|= ELF::EF_MIPS_ARCH_ASE_M16
;
1005 MCA
.setELFHeaderEFlags(Flags
);
1006 forbidModuleDirective();
1009 void MipsTargetELFStreamer::emitDirectiveSetNoReorder() {
1010 MCAssembler
&MCA
= getStreamer().getAssembler();
1011 unsigned Flags
= MCA
.getELFHeaderEFlags();
1012 Flags
|= ELF::EF_MIPS_NOREORDER
;
1013 MCA
.setELFHeaderEFlags(Flags
);
1014 forbidModuleDirective();
1017 void MipsTargetELFStreamer::emitDirectiveEnd(StringRef Name
) {
1018 MCAssembler
&MCA
= getStreamer().getAssembler();
1019 MCContext
&Context
= MCA
.getContext();
1020 MCStreamer
&OS
= getStreamer();
1022 MCSectionELF
*Sec
= Context
.getELFSection(".pdr", ELF::SHT_PROGBITS
, 0);
1024 MCSymbol
*Sym
= Context
.getOrCreateSymbol(Name
);
1025 const MCSymbolRefExpr
*ExprRef
=
1026 MCSymbolRefExpr::create(Sym
, MCSymbolRefExpr::VK_None
, Context
);
1028 MCA
.registerSection(*Sec
);
1029 Sec
->setAlignment(Align(4));
1033 OS
.SwitchSection(Sec
);
1035 OS
.EmitValueImpl(ExprRef
, 4);
1037 OS
.EmitIntValue(GPRInfoSet
? GPRBitMask
: 0, 4); // reg_mask
1038 OS
.EmitIntValue(GPRInfoSet
? GPROffset
: 0, 4); // reg_offset
1040 OS
.EmitIntValue(FPRInfoSet
? FPRBitMask
: 0, 4); // fpreg_mask
1041 OS
.EmitIntValue(FPRInfoSet
? FPROffset
: 0, 4); // fpreg_offset
1043 OS
.EmitIntValue(FrameInfoSet
? FrameOffset
: 0, 4); // frame_offset
1044 OS
.EmitIntValue(FrameInfoSet
? FrameReg
: 0, 4); // frame_reg
1045 OS
.EmitIntValue(FrameInfoSet
? ReturnReg
: 0, 4); // return_reg
1047 // The .end directive marks the end of a procedure. Invalidate
1048 // the information gathered up until this point.
1049 GPRInfoSet
= FPRInfoSet
= FrameInfoSet
= false;
1053 // .end also implicitly sets the size.
1054 MCSymbol
*CurPCSym
= Context
.createTempSymbol();
1055 OS
.EmitLabel(CurPCSym
);
1056 const MCExpr
*Size
= MCBinaryExpr::createSub(
1057 MCSymbolRefExpr::create(CurPCSym
, MCSymbolRefExpr::VK_None
, Context
),
1060 // The ELFObjectWriter can determine the absolute size as it has access to
1061 // the layout information of the assembly file, so a size expression rather
1062 // than an absolute value is ok here.
1063 static_cast<MCSymbolELF
*>(Sym
)->setSize(Size
);
1066 void MipsTargetELFStreamer::emitDirectiveEnt(const MCSymbol
&Symbol
) {
1067 GPRInfoSet
= FPRInfoSet
= FrameInfoSet
= false;
1069 // .ent also acts like an implicit '.type symbol, STT_FUNC'
1070 static_cast<const MCSymbolELF
&>(Symbol
).setType(ELF::STT_FUNC
);
1073 void MipsTargetELFStreamer::emitDirectiveAbiCalls() {
1074 MCAssembler
&MCA
= getStreamer().getAssembler();
1075 unsigned Flags
= MCA
.getELFHeaderEFlags();
1076 Flags
|= ELF::EF_MIPS_CPIC
| ELF::EF_MIPS_PIC
;
1077 MCA
.setELFHeaderEFlags(Flags
);
1080 void MipsTargetELFStreamer::emitDirectiveNaN2008() {
1081 MCAssembler
&MCA
= getStreamer().getAssembler();
1082 unsigned Flags
= MCA
.getELFHeaderEFlags();
1083 Flags
|= ELF::EF_MIPS_NAN2008
;
1084 MCA
.setELFHeaderEFlags(Flags
);
1087 void MipsTargetELFStreamer::emitDirectiveNaNLegacy() {
1088 MCAssembler
&MCA
= getStreamer().getAssembler();
1089 unsigned Flags
= MCA
.getELFHeaderEFlags();
1090 Flags
&= ~ELF::EF_MIPS_NAN2008
;
1091 MCA
.setELFHeaderEFlags(Flags
);
1094 void MipsTargetELFStreamer::emitDirectiveOptionPic0() {
1095 MCAssembler
&MCA
= getStreamer().getAssembler();
1096 unsigned Flags
= MCA
.getELFHeaderEFlags();
1097 // This option overrides other PIC options like -KPIC.
1099 Flags
&= ~ELF::EF_MIPS_PIC
;
1100 MCA
.setELFHeaderEFlags(Flags
);
1103 void MipsTargetELFStreamer::emitDirectiveOptionPic2() {
1104 MCAssembler
&MCA
= getStreamer().getAssembler();
1105 unsigned Flags
= MCA
.getELFHeaderEFlags();
1107 // NOTE: We are following the GAS behaviour here which means the directive
1108 // 'pic2' also sets the CPIC bit in the ELF header. This is different from
1109 // what is stated in the SYSV ABI which consider the bits EF_MIPS_PIC and
1110 // EF_MIPS_CPIC to be mutually exclusive.
1111 Flags
|= ELF::EF_MIPS_PIC
| ELF::EF_MIPS_CPIC
;
1112 MCA
.setELFHeaderEFlags(Flags
);
1115 void MipsTargetELFStreamer::emitDirectiveInsn() {
1116 MipsTargetStreamer::emitDirectiveInsn();
1117 MipsELFStreamer
&MEF
= static_cast<MipsELFStreamer
&>(Streamer
);
1118 MEF
.createPendingLabelRelocs();
1121 void MipsTargetELFStreamer::emitFrame(unsigned StackReg
, unsigned StackSize
,
1122 unsigned ReturnReg_
) {
1123 MCContext
&Context
= getStreamer().getAssembler().getContext();
1124 const MCRegisterInfo
*RegInfo
= Context
.getRegisterInfo();
1126 FrameInfoSet
= true;
1127 FrameReg
= RegInfo
->getEncodingValue(StackReg
);
1128 FrameOffset
= StackSize
;
1129 ReturnReg
= RegInfo
->getEncodingValue(ReturnReg_
);
1132 void MipsTargetELFStreamer::emitMask(unsigned CPUBitmask
,
1133 int CPUTopSavedRegOff
) {
1135 GPRBitMask
= CPUBitmask
;
1136 GPROffset
= CPUTopSavedRegOff
;
1139 void MipsTargetELFStreamer::emitFMask(unsigned FPUBitmask
,
1140 int FPUTopSavedRegOff
) {
1142 FPRBitMask
= FPUBitmask
;
1143 FPROffset
= FPUTopSavedRegOff
;
1146 void MipsTargetELFStreamer::emitDirectiveCpLoad(unsigned RegNo
) {
1148 // This directive expands to:
1149 // lui $gp, %hi(_gp_disp)
1150 // addui $gp, $gp, %lo(_gp_disp)
1151 // addu $gp, $gp, $reg
1152 // when support for position independent code is enabled.
1153 if (!Pic
|| (getABI().IsN32() || getABI().IsN64()))
1156 // There's a GNU extension controlled by -mno-shared that allows
1157 // locally-binding symbols to be accessed using absolute addresses.
1158 // This is currently not supported. When supported -mno-shared makes
1159 // .cpload expand to:
1160 // lui $gp, %hi(__gnu_local_gp)
1161 // addiu $gp, $gp, %lo(__gnu_local_gp)
1163 StringRef
SymName("_gp_disp");
1164 MCAssembler
&MCA
= getStreamer().getAssembler();
1165 MCSymbol
*GP_Disp
= MCA
.getContext().getOrCreateSymbol(SymName
);
1166 MCA
.registerSymbol(*GP_Disp
);
1169 TmpInst
.setOpcode(Mips::LUi
);
1170 TmpInst
.addOperand(MCOperand::createReg(GPReg
));
1171 const MCExpr
*HiSym
= MipsMCExpr::create(
1173 MCSymbolRefExpr::create("_gp_disp", MCSymbolRefExpr::VK_None
,
1176 TmpInst
.addOperand(MCOperand::createExpr(HiSym
));
1177 getStreamer().EmitInstruction(TmpInst
, STI
);
1181 TmpInst
.setOpcode(Mips::ADDiu
);
1182 TmpInst
.addOperand(MCOperand::createReg(GPReg
));
1183 TmpInst
.addOperand(MCOperand::createReg(GPReg
));
1184 const MCExpr
*LoSym
= MipsMCExpr::create(
1186 MCSymbolRefExpr::create("_gp_disp", MCSymbolRefExpr::VK_None
,
1189 TmpInst
.addOperand(MCOperand::createExpr(LoSym
));
1190 getStreamer().EmitInstruction(TmpInst
, STI
);
1194 TmpInst
.setOpcode(Mips::ADDu
);
1195 TmpInst
.addOperand(MCOperand::createReg(GPReg
));
1196 TmpInst
.addOperand(MCOperand::createReg(GPReg
));
1197 TmpInst
.addOperand(MCOperand::createReg(RegNo
));
1198 getStreamer().EmitInstruction(TmpInst
, STI
);
1200 forbidModuleDirective();
1203 void MipsTargetELFStreamer::emitDirectiveCpLocal(unsigned RegNo
) {
1205 MipsTargetStreamer::emitDirectiveCpLocal(RegNo
);
1208 bool MipsTargetELFStreamer::emitDirectiveCpRestore(
1209 int Offset
, function_ref
<unsigned()> GetATReg
, SMLoc IDLoc
,
1210 const MCSubtargetInfo
*STI
) {
1211 MipsTargetStreamer::emitDirectiveCpRestore(Offset
, GetATReg
, IDLoc
, STI
);
1212 // .cprestore offset
1213 // When PIC mode is enabled and the O32 ABI is used, this directive expands
1215 // sw $gp, offset($sp)
1216 // and adds a corresponding LW after every JAL.
1218 // Note that .cprestore is ignored if used with the N32 and N64 ABIs or if it
1219 // is used in non-PIC mode.
1220 if (!Pic
|| (getABI().IsN32() || getABI().IsN64()))
1223 // Store the $gp on the stack.
1224 emitStoreWithImmOffset(Mips::SW
, GPReg
, Mips::SP
, Offset
, GetATReg
, IDLoc
,
1229 void MipsTargetELFStreamer::emitDirectiveCpsetup(unsigned RegNo
,
1231 const MCSymbol
&Sym
,
1233 // Only N32 and N64 emit anything for .cpsetup iff PIC is set.
1234 if (!Pic
|| !(getABI().IsN32() || getABI().IsN64()))
1237 forbidModuleDirective();
1239 MCAssembler
&MCA
= getStreamer().getAssembler();
1242 // Either store the old $gp in a register or on the stack
1244 // move $save, $gpreg
1245 emitRRR(Mips::OR64
, RegOrOffset
, GPReg
, Mips::ZERO
, SMLoc(), &STI
);
1247 // sd $gpreg, offset($sp)
1248 emitRRI(Mips::SD
, GPReg
, Mips::SP
, RegOrOffset
, SMLoc(), &STI
);
1251 if (getABI().IsN32()) {
1252 MCSymbol
*GPSym
= MCA
.getContext().getOrCreateSymbol("__gnu_local_gp");
1253 const MipsMCExpr
*HiExpr
= MipsMCExpr::create(
1254 MipsMCExpr::MEK_HI
, MCSymbolRefExpr::create(GPSym
, MCA
.getContext()),
1256 const MipsMCExpr
*LoExpr
= MipsMCExpr::create(
1257 MipsMCExpr::MEK_LO
, MCSymbolRefExpr::create(GPSym
, MCA
.getContext()),
1260 // lui $gp, %hi(__gnu_local_gp)
1261 emitRX(Mips::LUi
, GPReg
, MCOperand::createExpr(HiExpr
), SMLoc(), &STI
);
1263 // addiu $gp, $gp, %lo(__gnu_local_gp)
1264 emitRRX(Mips::ADDiu
, GPReg
, GPReg
, MCOperand::createExpr(LoExpr
), SMLoc(),
1270 const MipsMCExpr
*HiExpr
= MipsMCExpr::createGpOff(
1271 MipsMCExpr::MEK_HI
, MCSymbolRefExpr::create(&Sym
, MCA
.getContext()),
1273 const MipsMCExpr
*LoExpr
= MipsMCExpr::createGpOff(
1274 MipsMCExpr::MEK_LO
, MCSymbolRefExpr::create(&Sym
, MCA
.getContext()),
1277 // lui $gp, %hi(%neg(%gp_rel(funcSym)))
1278 emitRX(Mips::LUi
, GPReg
, MCOperand::createExpr(HiExpr
), SMLoc(), &STI
);
1280 // addiu $gp, $gp, %lo(%neg(%gp_rel(funcSym)))
1281 emitRRX(Mips::ADDiu
, GPReg
, GPReg
, MCOperand::createExpr(LoExpr
), SMLoc(),
1284 // daddu $gp, $gp, $funcreg
1285 emitRRR(Mips::DADDu
, GPReg
, GPReg
, RegNo
, SMLoc(), &STI
);
1288 void MipsTargetELFStreamer::emitDirectiveCpreturn(unsigned SaveLocation
,
1289 bool SaveLocationIsRegister
) {
1290 // Only N32 and N64 emit anything for .cpreturn iff PIC is set.
1291 if (!Pic
|| !(getABI().IsN32() || getABI().IsN64()))
1295 // Either restore the old $gp from a register or on the stack
1296 if (SaveLocationIsRegister
) {
1297 Inst
.setOpcode(Mips::OR
);
1298 Inst
.addOperand(MCOperand::createReg(GPReg
));
1299 Inst
.addOperand(MCOperand::createReg(SaveLocation
));
1300 Inst
.addOperand(MCOperand::createReg(Mips::ZERO
));
1302 Inst
.setOpcode(Mips::LD
);
1303 Inst
.addOperand(MCOperand::createReg(GPReg
));
1304 Inst
.addOperand(MCOperand::createReg(Mips::SP
));
1305 Inst
.addOperand(MCOperand::createImm(SaveLocation
));
1307 getStreamer().EmitInstruction(Inst
, STI
);
1309 forbidModuleDirective();
1312 void MipsTargetELFStreamer::emitMipsAbiFlags() {
1313 MCAssembler
&MCA
= getStreamer().getAssembler();
1314 MCContext
&Context
= MCA
.getContext();
1315 MCStreamer
&OS
= getStreamer();
1316 MCSectionELF
*Sec
= Context
.getELFSection(
1317 ".MIPS.abiflags", ELF::SHT_MIPS_ABIFLAGS
, ELF::SHF_ALLOC
, 24, "");
1318 MCA
.registerSection(*Sec
);
1319 Sec
->setAlignment(Align(8));
1320 OS
.SwitchSection(Sec
);
1322 OS
<< ABIFlagsSection
;