ARM: print COFF function header for Windows on ARM
[oota-llvm.git] / lib / Target / ARM / ARMAsmPrinter.cpp
1 //===-- ARMAsmPrinter.cpp - Print machine code to an ARM .s file ----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains a printer that converts from our internal representation
11 // of machine-dependent LLVM code to GAS-format ARM assembly language.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "ARMAsmPrinter.h"
16 #include "ARM.h"
17 #include "ARMConstantPoolValue.h"
18 #include "ARMFPUName.h"
19 #include "ARMMachineFunctionInfo.h"
20 #include "ARMTargetMachine.h"
21 #include "ARMTargetObjectFile.h"
22 #include "InstPrinter/ARMInstPrinter.h"
23 #include "MCTargetDesc/ARMAddressingModes.h"
24 #include "MCTargetDesc/ARMMCExpr.h"
25 #include "llvm/ADT/SetVector.h"
26 #include "llvm/ADT/SmallString.h"
27 #include "llvm/CodeGen/MachineFunctionPass.h"
28 #include "llvm/CodeGen/MachineJumpTableInfo.h"
29 #include "llvm/CodeGen/MachineModuleInfoImpls.h"
30 #include "llvm/IR/Constants.h"
31 #include "llvm/IR/DataLayout.h"
32 #include "llvm/IR/DebugInfo.h"
33 #include "llvm/IR/Mangler.h"
34 #include "llvm/IR/Module.h"
35 #include "llvm/IR/Type.h"
36 #include "llvm/MC/MCAsmInfo.h"
37 #include "llvm/MC/MCAssembler.h"
38 #include "llvm/MC/MCContext.h"
39 #include "llvm/MC/MCELFStreamer.h"
40 #include "llvm/MC/MCInst.h"
41 #include "llvm/MC/MCInstBuilder.h"
42 #include "llvm/MC/MCObjectStreamer.h"
43 #include "llvm/MC/MCSectionMachO.h"
44 #include "llvm/MC/MCStreamer.h"
45 #include "llvm/MC/MCSymbol.h"
46 #include "llvm/Support/ARMBuildAttributes.h"
47 #include "llvm/Support/COFF.h"
48 #include "llvm/Support/CommandLine.h"
49 #include "llvm/Support/Debug.h"
50 #include "llvm/Support/ELF.h"
51 #include "llvm/Support/ErrorHandling.h"
52 #include "llvm/Support/TargetRegistry.h"
53 #include "llvm/Support/raw_ostream.h"
54 #include "llvm/Target/TargetMachine.h"
55 #include <cctype>
56 using namespace llvm;
57
58 #define DEBUG_TYPE "asm-printer"
59
60 void ARMAsmPrinter::EmitFunctionBodyEnd() {
61   // Make sure to terminate any constant pools that were at the end
62   // of the function.
63   if (!InConstantPool)
64     return;
65   InConstantPool = false;
66   OutStreamer.EmitDataRegion(MCDR_DataRegionEnd);
67 }
68
69 void ARMAsmPrinter::EmitFunctionEntryLabel() {
70   if (AFI->isThumbFunction()) {
71     OutStreamer.EmitAssemblerFlag(MCAF_Code16);
72     OutStreamer.EmitThumbFunc(CurrentFnSym);
73   }
74
75   OutStreamer.EmitLabel(CurrentFnSym);
76 }
77
78 void ARMAsmPrinter::EmitXXStructor(const Constant *CV) {
79   uint64_t Size = TM.getDataLayout()->getTypeAllocSize(CV->getType());
80   assert(Size && "C++ constructor pointer had zero size!");
81
82   const GlobalValue *GV = dyn_cast<GlobalValue>(CV->stripPointerCasts());
83   assert(GV && "C++ constructor pointer was not a GlobalValue!");
84
85   const MCExpr *E = MCSymbolRefExpr::Create(getSymbol(GV),
86                                             (Subtarget->isTargetELF()
87                                              ? MCSymbolRefExpr::VK_ARM_TARGET1
88                                              : MCSymbolRefExpr::VK_None),
89                                             OutContext);
90
91   OutStreamer.EmitValue(E, Size);
92 }
93
94 /// runOnMachineFunction - This uses the EmitInstruction()
95 /// method to print assembly for each instruction.
96 ///
97 bool ARMAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
98   AFI = MF.getInfo<ARMFunctionInfo>();
99   MCP = MF.getConstantPool();
100
101   SetupMachineFunction(MF);
102
103   if (Subtarget->isTargetCOFF()) {
104     bool Internal = MF.getFunction()->hasInternalLinkage();
105     COFF::SymbolStorageClass Scl = Internal ? COFF::IMAGE_SYM_CLASS_STATIC
106                                             : COFF::IMAGE_SYM_CLASS_EXTERNAL;
107     int Type = COFF::IMAGE_SYM_DTYPE_FUNCTION << COFF::SCT_COMPLEX_TYPE_SHIFT;
108
109     OutStreamer.BeginCOFFSymbolDef(CurrentFnSym);
110     OutStreamer.EmitCOFFSymbolStorageClass(Scl);
111     OutStreamer.EmitCOFFSymbolType(Type);
112     OutStreamer.EndCOFFSymbolDef();
113   }
114
115   // Have common code print out the function header with linkage info etc.
116   EmitFunctionHeader();
117
118   // Emit the rest of the function body.
119   EmitFunctionBody();
120
121   // We didn't modify anything.
122   return false;
123 }
124
125 void ARMAsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
126                                  raw_ostream &O, const char *Modifier) {
127   const MachineOperand &MO = MI->getOperand(OpNum);
128   unsigned TF = MO.getTargetFlags();
129
130   switch (MO.getType()) {
131   default: llvm_unreachable("<unknown operand type>");
132   case MachineOperand::MO_Register: {
133     unsigned Reg = MO.getReg();
134     assert(TargetRegisterInfo::isPhysicalRegister(Reg));
135     assert(!MO.getSubReg() && "Subregs should be eliminated!");
136     if(ARM::GPRPairRegClass.contains(Reg)) {
137       const MachineFunction &MF = *MI->getParent()->getParent();
138       const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
139       Reg = TRI->getSubReg(Reg, ARM::gsub_0);
140     }
141     O << ARMInstPrinter::getRegisterName(Reg);
142     break;
143   }
144   case MachineOperand::MO_Immediate: {
145     int64_t Imm = MO.getImm();
146     O << '#';
147     if ((Modifier && strcmp(Modifier, "lo16") == 0) ||
148         (TF == ARMII::MO_LO16))
149       O << ":lower16:";
150     else if ((Modifier && strcmp(Modifier, "hi16") == 0) ||
151              (TF == ARMII::MO_HI16))
152       O << ":upper16:";
153     O << Imm;
154     break;
155   }
156   case MachineOperand::MO_MachineBasicBlock:
157     O << *MO.getMBB()->getSymbol();
158     return;
159   case MachineOperand::MO_GlobalAddress: {
160     const GlobalValue *GV = MO.getGlobal();
161     if ((Modifier && strcmp(Modifier, "lo16") == 0) ||
162         (TF & ARMII::MO_LO16))
163       O << ":lower16:";
164     else if ((Modifier && strcmp(Modifier, "hi16") == 0) ||
165              (TF & ARMII::MO_HI16))
166       O << ":upper16:";
167     O << *getSymbol(GV);
168
169     printOffset(MO.getOffset(), O);
170     if (TF == ARMII::MO_PLT)
171       O << "(PLT)";
172     break;
173   }
174   case MachineOperand::MO_ConstantPoolIndex:
175     O << *GetCPISymbol(MO.getIndex());
176     break;
177   }
178 }
179
180 //===--------------------------------------------------------------------===//
181
182 MCSymbol *ARMAsmPrinter::
183 GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const {
184   const DataLayout *DL = TM.getDataLayout();
185   SmallString<60> Name;
186   raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "JTI"
187     << getFunctionNumber() << '_' << uid << '_' << uid2;
188   return OutContext.GetOrCreateSymbol(Name.str());
189 }
190
191
192 MCSymbol *ARMAsmPrinter::GetARMSJLJEHLabel() const {
193   const DataLayout *DL = TM.getDataLayout();
194   SmallString<60> Name;
195   raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "SJLJEH"
196     << getFunctionNumber();
197   return OutContext.GetOrCreateSymbol(Name.str());
198 }
199
200 bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
201                                     unsigned AsmVariant, const char *ExtraCode,
202                                     raw_ostream &O) {
203   // Does this asm operand have a single letter operand modifier?
204   if (ExtraCode && ExtraCode[0]) {
205     if (ExtraCode[1] != 0) return true; // Unknown modifier.
206
207     switch (ExtraCode[0]) {
208     default:
209       // See if this is a generic print operand
210       return AsmPrinter::PrintAsmOperand(MI, OpNum, AsmVariant, ExtraCode, O);
211     case 'a': // Print as a memory address.
212       if (MI->getOperand(OpNum).isReg()) {
213         O << "["
214           << ARMInstPrinter::getRegisterName(MI->getOperand(OpNum).getReg())
215           << "]";
216         return false;
217       }
218       // Fallthrough
219     case 'c': // Don't print "#" before an immediate operand.
220       if (!MI->getOperand(OpNum).isImm())
221         return true;
222       O << MI->getOperand(OpNum).getImm();
223       return false;
224     case 'P': // Print a VFP double precision register.
225     case 'q': // Print a NEON quad precision register.
226       printOperand(MI, OpNum, O);
227       return false;
228     case 'y': // Print a VFP single precision register as indexed double.
229       if (MI->getOperand(OpNum).isReg()) {
230         unsigned Reg = MI->getOperand(OpNum).getReg();
231         const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
232         // Find the 'd' register that has this 's' register as a sub-register,
233         // and determine the lane number.
234         for (MCSuperRegIterator SR(Reg, TRI); SR.isValid(); ++SR) {
235           if (!ARM::DPRRegClass.contains(*SR))
236             continue;
237           bool Lane0 = TRI->getSubReg(*SR, ARM::ssub_0) == Reg;
238           O << ARMInstPrinter::getRegisterName(*SR) << (Lane0 ? "[0]" : "[1]");
239           return false;
240         }
241       }
242       return true;
243     case 'B': // Bitwise inverse of integer or symbol without a preceding #.
244       if (!MI->getOperand(OpNum).isImm())
245         return true;
246       O << ~(MI->getOperand(OpNum).getImm());
247       return false;
248     case 'L': // The low 16 bits of an immediate constant.
249       if (!MI->getOperand(OpNum).isImm())
250         return true;
251       O << (MI->getOperand(OpNum).getImm() & 0xffff);
252       return false;
253     case 'M': { // A register range suitable for LDM/STM.
254       if (!MI->getOperand(OpNum).isReg())
255         return true;
256       const MachineOperand &MO = MI->getOperand(OpNum);
257       unsigned RegBegin = MO.getReg();
258       // This takes advantage of the 2 operand-ness of ldm/stm and that we've
259       // already got the operands in registers that are operands to the
260       // inline asm statement.
261       O << "{";
262       if (ARM::GPRPairRegClass.contains(RegBegin)) {
263         const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
264         unsigned Reg0 = TRI->getSubReg(RegBegin, ARM::gsub_0);
265         O << ARMInstPrinter::getRegisterName(Reg0) << ", ";
266         RegBegin = TRI->getSubReg(RegBegin, ARM::gsub_1);
267       }
268       O << ARMInstPrinter::getRegisterName(RegBegin);
269
270       // FIXME: The register allocator not only may not have given us the
271       // registers in sequence, but may not be in ascending registers. This
272       // will require changes in the register allocator that'll need to be
273       // propagated down here if the operands change.
274       unsigned RegOps = OpNum + 1;
275       while (MI->getOperand(RegOps).isReg()) {
276         O << ", "
277           << ARMInstPrinter::getRegisterName(MI->getOperand(RegOps).getReg());
278         RegOps++;
279       }
280
281       O << "}";
282
283       return false;
284     }
285     case 'R': // The most significant register of a pair.
286     case 'Q': { // The least significant register of a pair.
287       if (OpNum == 0)
288         return true;
289       const MachineOperand &FlagsOP = MI->getOperand(OpNum - 1);
290       if (!FlagsOP.isImm())
291         return true;
292       unsigned Flags = FlagsOP.getImm();
293
294       // This operand may not be the one that actually provides the register. If
295       // it's tied to a previous one then we should refer instead to that one
296       // for registers and their classes.
297       unsigned TiedIdx;
298       if (InlineAsm::isUseOperandTiedToDef(Flags, TiedIdx)) {
299         for (OpNum = InlineAsm::MIOp_FirstOperand; TiedIdx; --TiedIdx) {
300           unsigned OpFlags = MI->getOperand(OpNum).getImm();
301           OpNum += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
302         }
303         Flags = MI->getOperand(OpNum).getImm();
304
305         // Later code expects OpNum to be pointing at the register rather than
306         // the flags.
307         OpNum += 1;
308       }
309
310       unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
311       unsigned RC;
312       InlineAsm::hasRegClassConstraint(Flags, RC);
313       if (RC == ARM::GPRPairRegClassID) {
314         if (NumVals != 1)
315           return true;
316         const MachineOperand &MO = MI->getOperand(OpNum);
317         if (!MO.isReg())
318           return true;
319         const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
320         unsigned Reg = TRI->getSubReg(MO.getReg(), ExtraCode[0] == 'Q' ?
321             ARM::gsub_0 : ARM::gsub_1);
322         O << ARMInstPrinter::getRegisterName(Reg);
323         return false;
324       }
325       if (NumVals != 2)
326         return true;
327       unsigned RegOp = ExtraCode[0] == 'Q' ? OpNum : OpNum + 1;
328       if (RegOp >= MI->getNumOperands())
329         return true;
330       const MachineOperand &MO = MI->getOperand(RegOp);
331       if (!MO.isReg())
332         return true;
333       unsigned Reg = MO.getReg();
334       O << ARMInstPrinter::getRegisterName(Reg);
335       return false;
336     }
337
338     case 'e': // The low doubleword register of a NEON quad register.
339     case 'f': { // The high doubleword register of a NEON quad register.
340       if (!MI->getOperand(OpNum).isReg())
341         return true;
342       unsigned Reg = MI->getOperand(OpNum).getReg();
343       if (!ARM::QPRRegClass.contains(Reg))
344         return true;
345       const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
346       unsigned SubReg = TRI->getSubReg(Reg, ExtraCode[0] == 'e' ?
347                                        ARM::dsub_0 : ARM::dsub_1);
348       O << ARMInstPrinter::getRegisterName(SubReg);
349       return false;
350     }
351
352     // This modifier is not yet supported.
353     case 'h': // A range of VFP/NEON registers suitable for VLD1/VST1.
354       return true;
355     case 'H': { // The highest-numbered register of a pair.
356       const MachineOperand &MO = MI->getOperand(OpNum);
357       if (!MO.isReg())
358         return true;
359       const MachineFunction &MF = *MI->getParent()->getParent();
360       const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
361       unsigned Reg = MO.getReg();
362       if(!ARM::GPRPairRegClass.contains(Reg))
363         return false;
364       Reg = TRI->getSubReg(Reg, ARM::gsub_1);
365       O << ARMInstPrinter::getRegisterName(Reg);
366       return false;
367     }
368     }
369   }
370
371   printOperand(MI, OpNum, O);
372   return false;
373 }
374
375 bool ARMAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
376                                           unsigned OpNum, unsigned AsmVariant,
377                                           const char *ExtraCode,
378                                           raw_ostream &O) {
379   // Does this asm operand have a single letter operand modifier?
380   if (ExtraCode && ExtraCode[0]) {
381     if (ExtraCode[1] != 0) return true; // Unknown modifier.
382
383     switch (ExtraCode[0]) {
384       case 'A': // A memory operand for a VLD1/VST1 instruction.
385       default: return true;  // Unknown modifier.
386       case 'm': // The base register of a memory operand.
387         if (!MI->getOperand(OpNum).isReg())
388           return true;
389         O << ARMInstPrinter::getRegisterName(MI->getOperand(OpNum).getReg());
390         return false;
391     }
392   }
393
394   const MachineOperand &MO = MI->getOperand(OpNum);
395   assert(MO.isReg() && "unexpected inline asm memory operand");
396   O << "[" << ARMInstPrinter::getRegisterName(MO.getReg()) << "]";
397   return false;
398 }
399
400 static bool isThumb(const MCSubtargetInfo& STI) {
401   return (STI.getFeatureBits() & ARM::ModeThumb) != 0;
402 }
403
404 void ARMAsmPrinter::emitInlineAsmEnd(const MCSubtargetInfo &StartInfo,
405                                      const MCSubtargetInfo *EndInfo) const {
406   // If either end mode is unknown (EndInfo == NULL) or different than
407   // the start mode, then restore the start mode.
408   const bool WasThumb = isThumb(StartInfo);
409   if (!EndInfo || WasThumb != isThumb(*EndInfo)) {
410     OutStreamer.EmitAssemblerFlag(WasThumb ? MCAF_Code16 : MCAF_Code32);
411   }
412 }
413
414 void ARMAsmPrinter::EmitStartOfAsmFile(Module &M) {
415   if (Subtarget->isTargetMachO()) {
416     Reloc::Model RelocM = TM.getRelocationModel();
417     if (RelocM == Reloc::PIC_ || RelocM == Reloc::DynamicNoPIC) {
418       // Declare all the text sections up front (before the DWARF sections
419       // emitted by AsmPrinter::doInitialization) so the assembler will keep
420       // them together at the beginning of the object file.  This helps
421       // avoid out-of-range branches that are due a fundamental limitation of
422       // the way symbol offsets are encoded with the current Darwin ARM
423       // relocations.
424       const TargetLoweringObjectFileMachO &TLOFMacho =
425         static_cast<const TargetLoweringObjectFileMachO &>(
426           getObjFileLowering());
427
428       // Collect the set of sections our functions will go into.
429       SetVector<const MCSection *, SmallVector<const MCSection *, 8>,
430         SmallPtrSet<const MCSection *, 8> > TextSections;
431       // Default text section comes first.
432       TextSections.insert(TLOFMacho.getTextSection());
433       // Now any user defined text sections from function attributes.
434       for (Module::iterator F = M.begin(), e = M.end(); F != e; ++F)
435         if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage())
436           TextSections.insert(TLOFMacho.SectionForGlobal(F, *Mang, TM));
437       // Now the coalescable sections.
438       TextSections.insert(TLOFMacho.getTextCoalSection());
439       TextSections.insert(TLOFMacho.getConstTextCoalSection());
440
441       // Emit the sections in the .s file header to fix the order.
442       for (unsigned i = 0, e = TextSections.size(); i != e; ++i)
443         OutStreamer.SwitchSection(TextSections[i]);
444
445       if (RelocM == Reloc::DynamicNoPIC) {
446         const MCSection *sect =
447           OutContext.getMachOSection("__TEXT", "__symbol_stub4",
448                                      MachO::S_SYMBOL_STUBS,
449                                      12, SectionKind::getText());
450         OutStreamer.SwitchSection(sect);
451       } else {
452         const MCSection *sect =
453           OutContext.getMachOSection("__TEXT", "__picsymbolstub4",
454                                      MachO::S_SYMBOL_STUBS,
455                                      16, SectionKind::getText());
456         OutStreamer.SwitchSection(sect);
457       }
458       const MCSection *StaticInitSect =
459         OutContext.getMachOSection("__TEXT", "__StaticInit",
460                                    MachO::S_REGULAR |
461                                    MachO::S_ATTR_PURE_INSTRUCTIONS,
462                                    SectionKind::getText());
463       OutStreamer.SwitchSection(StaticInitSect);
464     }
465
466     // Compiling with debug info should not affect the code
467     // generation.  Ensure the cstring section comes before the
468     // optional __DWARF secion. Otherwise, PC-relative loads would
469     // have to use different instruction sequences at "-g" in order to
470     // reach global data in the same object file.
471     OutStreamer.SwitchSection(getObjFileLowering().getCStringSection());
472   }
473
474   // Use unified assembler syntax.
475   OutStreamer.EmitAssemblerFlag(MCAF_SyntaxUnified);
476
477   // Emit ARM Build Attributes
478   if (Subtarget->isTargetELF())
479     emitAttributes();
480 }
481
482 static void
483 emitNonLazySymbolPointer(MCStreamer &OutStreamer, MCSymbol *StubLabel,
484                          MachineModuleInfoImpl::StubValueTy &MCSym) {
485   // L_foo$stub:
486   OutStreamer.EmitLabel(StubLabel);
487   //   .indirect_symbol _foo
488   OutStreamer.EmitSymbolAttribute(MCSym.getPointer(), MCSA_IndirectSymbol);
489
490   if (MCSym.getInt())
491     // External to current translation unit.
492     OutStreamer.EmitIntValue(0, 4/*size*/);
493   else
494     // Internal to current translation unit.
495     //
496     // When we place the LSDA into the TEXT section, the type info
497     // pointers need to be indirect and pc-rel. We accomplish this by
498     // using NLPs; however, sometimes the types are local to the file.
499     // We need to fill in the value for the NLP in those cases.
500     OutStreamer.EmitValue(
501         MCSymbolRefExpr::Create(MCSym.getPointer(), OutStreamer.getContext()),
502         4 /*size*/);
503 }
504
505
506 void ARMAsmPrinter::EmitEndOfAsmFile(Module &M) {
507   if (Subtarget->isTargetMachO()) {
508     // All darwin targets use mach-o.
509     const TargetLoweringObjectFileMachO &TLOFMacho =
510       static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
511     MachineModuleInfoMachO &MMIMacho =
512       MMI->getObjFileInfo<MachineModuleInfoMachO>();
513
514     // Output non-lazy-pointers for external and common global variables.
515     MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList();
516
517     if (!Stubs.empty()) {
518       // Switch with ".non_lazy_symbol_pointer" directive.
519       OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
520       EmitAlignment(2);
521
522       for (auto &Stub : Stubs)
523         emitNonLazySymbolPointer(OutStreamer, Stub.first, Stub.second);
524
525       Stubs.clear();
526       OutStreamer.AddBlankLine();
527     }
528
529     Stubs = MMIMacho.GetHiddenGVStubList();
530     if (!Stubs.empty()) {
531       OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
532       EmitAlignment(2);
533
534       for (auto &Stub : Stubs)
535         emitNonLazySymbolPointer(OutStreamer, Stub.first, Stub.second);
536
537       Stubs.clear();
538       OutStreamer.AddBlankLine();
539     }
540
541     // Funny Darwin hack: This flag tells the linker that no global symbols
542     // contain code that falls through to other global symbols (e.g. the obvious
543     // implementation of multiple entry points).  If this doesn't occur, the
544     // linker can safely perform dead code stripping.  Since LLVM never
545     // generates code that does this, it is always safe to set.
546     OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
547   }
548 }
549
550 //===----------------------------------------------------------------------===//
551 // Helper routines for EmitStartOfAsmFile() and EmitEndOfAsmFile()
552 // FIXME:
553 // The following seem like one-off assembler flags, but they actually need
554 // to appear in the .ARM.attributes section in ELF.
555 // Instead of subclassing the MCELFStreamer, we do the work here.
556
557 static ARMBuildAttrs::CPUArch getArchForCPU(StringRef CPU,
558                                             const ARMSubtarget *Subtarget) {
559   if (CPU == "xscale")
560     return ARMBuildAttrs::v5TEJ;
561
562   if (Subtarget->hasV8Ops())
563     return ARMBuildAttrs::v8;
564   else if (Subtarget->hasV7Ops()) {
565     if (Subtarget->isMClass() && Subtarget->hasThumb2DSP())
566       return ARMBuildAttrs::v7E_M;
567     return ARMBuildAttrs::v7;
568   } else if (Subtarget->hasV6T2Ops())
569     return ARMBuildAttrs::v6T2;
570   else if (Subtarget->hasV6MOps())
571     return ARMBuildAttrs::v6S_M;
572   else if (Subtarget->hasV6Ops())
573     return ARMBuildAttrs::v6;
574   else if (Subtarget->hasV5TEOps())
575     return ARMBuildAttrs::v5TE;
576   else if (Subtarget->hasV5TOps())
577     return ARMBuildAttrs::v5T;
578   else if (Subtarget->hasV4TOps())
579     return ARMBuildAttrs::v4T;
580   else
581     return ARMBuildAttrs::v4;
582 }
583
584 void ARMAsmPrinter::emitAttributes() {
585   MCTargetStreamer &TS = *OutStreamer.getTargetStreamer();
586   ARMTargetStreamer &ATS = static_cast<ARMTargetStreamer &>(TS);
587
588   ATS.switchVendor("aeabi");
589
590   std::string CPUString = Subtarget->getCPUString();
591
592   // FIXME: remove krait check when GNU tools support krait cpu
593   if (CPUString != "generic" && CPUString != "krait")
594     ATS.emitTextAttribute(ARMBuildAttrs::CPU_name, CPUString);
595
596   ATS.emitAttribute(ARMBuildAttrs::CPU_arch,
597                     getArchForCPU(CPUString, Subtarget));
598
599   // Tag_CPU_arch_profile must have the default value of 0 when "Architecture
600   // profile is not applicable (e.g. pre v7, or cross-profile code)".
601   if (Subtarget->hasV7Ops()) {
602     if (Subtarget->isAClass()) {
603       ATS.emitAttribute(ARMBuildAttrs::CPU_arch_profile,
604                         ARMBuildAttrs::ApplicationProfile);
605     } else if (Subtarget->isRClass()) {
606       ATS.emitAttribute(ARMBuildAttrs::CPU_arch_profile,
607                         ARMBuildAttrs::RealTimeProfile);
608     } else if (Subtarget->isMClass()) {
609       ATS.emitAttribute(ARMBuildAttrs::CPU_arch_profile,
610                         ARMBuildAttrs::MicroControllerProfile);
611     }
612   }
613
614   ATS.emitAttribute(ARMBuildAttrs::ARM_ISA_use, Subtarget->hasARMOps() ?
615                       ARMBuildAttrs::Allowed : ARMBuildAttrs::Not_Allowed);
616   if (Subtarget->isThumb1Only()) {
617     ATS.emitAttribute(ARMBuildAttrs::THUMB_ISA_use,
618                       ARMBuildAttrs::Allowed);
619   } else if (Subtarget->hasThumb2()) {
620     ATS.emitAttribute(ARMBuildAttrs::THUMB_ISA_use,
621                       ARMBuildAttrs::AllowThumb32);
622   }
623
624   if (Subtarget->hasNEON()) {
625     /* NEON is not exactly a VFP architecture, but GAS emit one of
626      * neon/neon-fp-armv8/neon-vfpv4/vfpv3/vfpv2 for .fpu parameters */
627     if (Subtarget->hasFPARMv8()) {
628       if (Subtarget->hasCrypto())
629         ATS.emitFPU(ARM::CRYPTO_NEON_FP_ARMV8);
630       else
631         ATS.emitFPU(ARM::NEON_FP_ARMV8);
632     }
633     else if (Subtarget->hasVFP4())
634       ATS.emitFPU(ARM::NEON_VFPV4);
635     else
636       ATS.emitFPU(ARM::NEON);
637     // Emit Tag_Advanced_SIMD_arch for ARMv8 architecture
638     if (Subtarget->hasV8Ops())
639       ATS.emitAttribute(ARMBuildAttrs::Advanced_SIMD_arch,
640                         ARMBuildAttrs::AllowNeonARMv8);
641   } else {
642     if (Subtarget->hasFPARMv8())
643       ATS.emitFPU(ARM::FP_ARMV8);
644     else if (Subtarget->hasVFP4())
645       ATS.emitFPU(Subtarget->hasD16() ? ARM::VFPV4_D16 : ARM::VFPV4);
646     else if (Subtarget->hasVFP3())
647       ATS.emitFPU(Subtarget->hasD16() ? ARM::VFPV3_D16 : ARM::VFPV3);
648     else if (Subtarget->hasVFP2())
649       ATS.emitFPU(ARM::VFPV2);
650   }
651
652   // Signal various FP modes.
653   if (!TM.Options.UnsafeFPMath) {
654     ATS.emitAttribute(ARMBuildAttrs::ABI_FP_denormal, ARMBuildAttrs::Allowed);
655     ATS.emitAttribute(ARMBuildAttrs::ABI_FP_exceptions,
656                       ARMBuildAttrs::Allowed);
657   }
658
659   if (TM.Options.NoInfsFPMath && TM.Options.NoNaNsFPMath)
660     ATS.emitAttribute(ARMBuildAttrs::ABI_FP_number_model,
661                       ARMBuildAttrs::Allowed);
662   else
663     ATS.emitAttribute(ARMBuildAttrs::ABI_FP_number_model,
664                       ARMBuildAttrs::AllowIEE754);
665
666   // FIXME: add more flags to ARMBuildAttributes.h
667   // 8-bytes alignment stuff.
668   ATS.emitAttribute(ARMBuildAttrs::ABI_align_needed, 1);
669   ATS.emitAttribute(ARMBuildAttrs::ABI_align_preserved, 1);
670
671   // ABI_HardFP_use attribute to indicate single precision FP.
672   if (Subtarget->isFPOnlySP())
673     ATS.emitAttribute(ARMBuildAttrs::ABI_HardFP_use,
674                       ARMBuildAttrs::HardFPSinglePrecision);
675
676   // Hard float.  Use both S and D registers and conform to AAPCS-VFP.
677   if (Subtarget->isAAPCS_ABI() && TM.Options.FloatABIType == FloatABI::Hard)
678     ATS.emitAttribute(ARMBuildAttrs::ABI_VFP_args, ARMBuildAttrs::HardFPAAPCS);
679
680   // FIXME: Should we signal R9 usage?
681
682   if (Subtarget->hasFP16())
683       ATS.emitAttribute(ARMBuildAttrs::FP_HP_extension, ARMBuildAttrs::AllowHPFP);
684
685   if (Subtarget->hasMPExtension())
686       ATS.emitAttribute(ARMBuildAttrs::MPextension_use, ARMBuildAttrs::AllowMP);
687
688   // Hardware divide in ARM mode is part of base arch, starting from ARMv8.
689   // If only Thumb hwdiv is present, it must also be in base arch (ARMv7-R/M).
690   // It is not possible to produce DisallowDIV: if hwdiv is present in the base
691   // arch, supplying -hwdiv downgrades the effective arch, via ClearImpliedBits.
692   // AllowDIVExt is only emitted if hwdiv isn't available in the base arch;
693   // otherwise, the default value (AllowDIVIfExists) applies.
694   if (Subtarget->hasDivideInARMMode() && !Subtarget->hasV8Ops())
695       ATS.emitAttribute(ARMBuildAttrs::DIV_use, ARMBuildAttrs::AllowDIVExt);
696
697   if (Subtarget->hasTrustZone() && Subtarget->hasVirtualization())
698       ATS.emitAttribute(ARMBuildAttrs::Virtualization_use,
699                         ARMBuildAttrs::AllowTZVirtualization);
700   else if (Subtarget->hasTrustZone())
701       ATS.emitAttribute(ARMBuildAttrs::Virtualization_use,
702                         ARMBuildAttrs::AllowTZ);
703   else if (Subtarget->hasVirtualization())
704       ATS.emitAttribute(ARMBuildAttrs::Virtualization_use,
705                         ARMBuildAttrs::AllowVirtualization);
706
707   ATS.finishAttributeSection();
708 }
709
710 //===----------------------------------------------------------------------===//
711
712 static MCSymbol *getPICLabel(const char *Prefix, unsigned FunctionNumber,
713                              unsigned LabelId, MCContext &Ctx) {
714
715   MCSymbol *Label = Ctx.GetOrCreateSymbol(Twine(Prefix)
716                        + "PC" + Twine(FunctionNumber) + "_" + Twine(LabelId));
717   return Label;
718 }
719
720 static MCSymbolRefExpr::VariantKind
721 getModifierVariantKind(ARMCP::ARMCPModifier Modifier) {
722   switch (Modifier) {
723   case ARMCP::no_modifier: return MCSymbolRefExpr::VK_None;
724   case ARMCP::TLSGD:       return MCSymbolRefExpr::VK_TLSGD;
725   case ARMCP::TPOFF:       return MCSymbolRefExpr::VK_TPOFF;
726   case ARMCP::GOTTPOFF:    return MCSymbolRefExpr::VK_GOTTPOFF;
727   case ARMCP::GOT:         return MCSymbolRefExpr::VK_GOT;
728   case ARMCP::GOTOFF:      return MCSymbolRefExpr::VK_GOTOFF;
729   }
730   llvm_unreachable("Invalid ARMCPModifier!");
731 }
732
733 MCSymbol *ARMAsmPrinter::GetARMGVSymbol(const GlobalValue *GV,
734                                         unsigned char TargetFlags) {
735   bool isIndirect = Subtarget->isTargetMachO() &&
736     (TargetFlags & ARMII::MO_NONLAZY) &&
737     Subtarget->GVIsIndirectSymbol(GV, TM.getRelocationModel());
738   if (!isIndirect)
739     return getSymbol(GV);
740
741   // FIXME: Remove this when Darwin transition to @GOT like syntax.
742   MCSymbol *MCSym = getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
743   MachineModuleInfoMachO &MMIMachO =
744     MMI->getObjFileInfo<MachineModuleInfoMachO>();
745   MachineModuleInfoImpl::StubValueTy &StubSym =
746     GV->hasHiddenVisibility() ? MMIMachO.getHiddenGVStubEntry(MCSym) :
747     MMIMachO.getGVStubEntry(MCSym);
748   if (!StubSym.getPointer())
749     StubSym = MachineModuleInfoImpl::
750       StubValueTy(getSymbol(GV), !GV->hasInternalLinkage());
751   return MCSym;
752 }
753
754 void ARMAsmPrinter::
755 EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
756   const DataLayout *DL = TM.getDataLayout();
757   int Size = TM.getDataLayout()->getTypeAllocSize(MCPV->getType());
758
759   ARMConstantPoolValue *ACPV = static_cast<ARMConstantPoolValue*>(MCPV);
760
761   MCSymbol *MCSym;
762   if (ACPV->isLSDA()) {
763     SmallString<128> Str;
764     raw_svector_ostream OS(Str);
765     OS << DL->getPrivateGlobalPrefix() << "_LSDA_" << getFunctionNumber();
766     MCSym = OutContext.GetOrCreateSymbol(OS.str());
767   } else if (ACPV->isBlockAddress()) {
768     const BlockAddress *BA =
769       cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress();
770     MCSym = GetBlockAddressSymbol(BA);
771   } else if (ACPV->isGlobalValue()) {
772     const GlobalValue *GV = cast<ARMConstantPoolConstant>(ACPV)->getGV();
773
774     // On Darwin, const-pool entries may get the "FOO$non_lazy_ptr" mangling, so
775     // flag the global as MO_NONLAZY.
776     unsigned char TF = Subtarget->isTargetMachO() ? ARMII::MO_NONLAZY : 0;
777     MCSym = GetARMGVSymbol(GV, TF);
778   } else if (ACPV->isMachineBasicBlock()) {
779     const MachineBasicBlock *MBB = cast<ARMConstantPoolMBB>(ACPV)->getMBB();
780     MCSym = MBB->getSymbol();
781   } else {
782     assert(ACPV->isExtSymbol() && "unrecognized constant pool value");
783     const char *Sym = cast<ARMConstantPoolSymbol>(ACPV)->getSymbol();
784     MCSym = GetExternalSymbolSymbol(Sym);
785   }
786
787   // Create an MCSymbol for the reference.
788   const MCExpr *Expr =
789     MCSymbolRefExpr::Create(MCSym, getModifierVariantKind(ACPV->getModifier()),
790                             OutContext);
791
792   if (ACPV->getPCAdjustment()) {
793     MCSymbol *PCLabel = getPICLabel(DL->getPrivateGlobalPrefix(),
794                                     getFunctionNumber(),
795                                     ACPV->getLabelId(),
796                                     OutContext);
797     const MCExpr *PCRelExpr = MCSymbolRefExpr::Create(PCLabel, OutContext);
798     PCRelExpr =
799       MCBinaryExpr::CreateAdd(PCRelExpr,
800                               MCConstantExpr::Create(ACPV->getPCAdjustment(),
801                                                      OutContext),
802                               OutContext);
803     if (ACPV->mustAddCurrentAddress()) {
804       // We want "(<expr> - .)", but MC doesn't have a concept of the '.'
805       // label, so just emit a local label end reference that instead.
806       MCSymbol *DotSym = OutContext.CreateTempSymbol();
807       OutStreamer.EmitLabel(DotSym);
808       const MCExpr *DotExpr = MCSymbolRefExpr::Create(DotSym, OutContext);
809       PCRelExpr = MCBinaryExpr::CreateSub(PCRelExpr, DotExpr, OutContext);
810     }
811     Expr = MCBinaryExpr::CreateSub(Expr, PCRelExpr, OutContext);
812   }
813   OutStreamer.EmitValue(Expr, Size);
814 }
815
816 void ARMAsmPrinter::EmitJumpTable(const MachineInstr *MI) {
817   unsigned Opcode = MI->getOpcode();
818   int OpNum = 1;
819   if (Opcode == ARM::BR_JTadd)
820     OpNum = 2;
821   else if (Opcode == ARM::BR_JTm)
822     OpNum = 3;
823
824   const MachineOperand &MO1 = MI->getOperand(OpNum);
825   const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
826   unsigned JTI = MO1.getIndex();
827
828   // Emit a label for the jump table.
829   MCSymbol *JTISymbol = GetARMJTIPICJumpTableLabel2(JTI, MO2.getImm());
830   OutStreamer.EmitLabel(JTISymbol);
831
832   // Mark the jump table as data-in-code.
833   OutStreamer.EmitDataRegion(MCDR_DataRegionJT32);
834
835   // Emit each entry of the table.
836   const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
837   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
838   const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
839
840   for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
841     MachineBasicBlock *MBB = JTBBs[i];
842     // Construct an MCExpr for the entry. We want a value of the form:
843     // (BasicBlockAddr - TableBeginAddr)
844     //
845     // For example, a table with entries jumping to basic blocks BB0 and BB1
846     // would look like:
847     // LJTI_0_0:
848     //    .word (LBB0 - LJTI_0_0)
849     //    .word (LBB1 - LJTI_0_0)
850     const MCExpr *Expr = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
851
852     if (TM.getRelocationModel() == Reloc::PIC_)
853       Expr = MCBinaryExpr::CreateSub(Expr, MCSymbolRefExpr::Create(JTISymbol,
854                                                                    OutContext),
855                                      OutContext);
856     // If we're generating a table of Thumb addresses in static relocation
857     // model, we need to add one to keep interworking correctly.
858     else if (AFI->isThumbFunction())
859       Expr = MCBinaryExpr::CreateAdd(Expr, MCConstantExpr::Create(1,OutContext),
860                                      OutContext);
861     OutStreamer.EmitValue(Expr, 4);
862   }
863   // Mark the end of jump table data-in-code region.
864   OutStreamer.EmitDataRegion(MCDR_DataRegionEnd);
865 }
866
867 void ARMAsmPrinter::EmitJump2Table(const MachineInstr *MI) {
868   unsigned Opcode = MI->getOpcode();
869   int OpNum = (Opcode == ARM::t2BR_JT) ? 2 : 1;
870   const MachineOperand &MO1 = MI->getOperand(OpNum);
871   const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
872   unsigned JTI = MO1.getIndex();
873
874   MCSymbol *JTISymbol = GetARMJTIPICJumpTableLabel2(JTI, MO2.getImm());
875   OutStreamer.EmitLabel(JTISymbol);
876
877   // Emit each entry of the table.
878   const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
879   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
880   const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
881   unsigned OffsetWidth = 4;
882   if (MI->getOpcode() == ARM::t2TBB_JT) {
883     OffsetWidth = 1;
884     // Mark the jump table as data-in-code.
885     OutStreamer.EmitDataRegion(MCDR_DataRegionJT8);
886   } else if (MI->getOpcode() == ARM::t2TBH_JT) {
887     OffsetWidth = 2;
888     // Mark the jump table as data-in-code.
889     OutStreamer.EmitDataRegion(MCDR_DataRegionJT16);
890   }
891
892   for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
893     MachineBasicBlock *MBB = JTBBs[i];
894     const MCExpr *MBBSymbolExpr = MCSymbolRefExpr::Create(MBB->getSymbol(),
895                                                       OutContext);
896     // If this isn't a TBB or TBH, the entries are direct branch instructions.
897     if (OffsetWidth == 4) {
898       EmitToStreamer(OutStreamer, MCInstBuilder(ARM::t2B)
899         .addExpr(MBBSymbolExpr)
900         .addImm(ARMCC::AL)
901         .addReg(0));
902       continue;
903     }
904     // Otherwise it's an offset from the dispatch instruction. Construct an
905     // MCExpr for the entry. We want a value of the form:
906     // (BasicBlockAddr - TableBeginAddr) / 2
907     //
908     // For example, a TBB table with entries jumping to basic blocks BB0 and BB1
909     // would look like:
910     // LJTI_0_0:
911     //    .byte (LBB0 - LJTI_0_0) / 2
912     //    .byte (LBB1 - LJTI_0_0) / 2
913     const MCExpr *Expr =
914       MCBinaryExpr::CreateSub(MBBSymbolExpr,
915                               MCSymbolRefExpr::Create(JTISymbol, OutContext),
916                               OutContext);
917     Expr = MCBinaryExpr::CreateDiv(Expr, MCConstantExpr::Create(2, OutContext),
918                                    OutContext);
919     OutStreamer.EmitValue(Expr, OffsetWidth);
920   }
921   // Mark the end of jump table data-in-code region. 32-bit offsets use
922   // actual branch instructions here, so we don't mark those as a data-region
923   // at all.
924   if (OffsetWidth != 4)
925     OutStreamer.EmitDataRegion(MCDR_DataRegionEnd);
926 }
927
928 void ARMAsmPrinter::EmitUnwindingInstruction(const MachineInstr *MI) {
929   assert(MI->getFlag(MachineInstr::FrameSetup) &&
930       "Only instruction which are involved into frame setup code are allowed");
931
932   MCTargetStreamer &TS = *OutStreamer.getTargetStreamer();
933   ARMTargetStreamer &ATS = static_cast<ARMTargetStreamer &>(TS);
934   const MachineFunction &MF = *MI->getParent()->getParent();
935   const TargetRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
936   const ARMFunctionInfo &AFI = *MF.getInfo<ARMFunctionInfo>();
937
938   unsigned FramePtr = RegInfo->getFrameRegister(MF);
939   unsigned Opc = MI->getOpcode();
940   unsigned SrcReg, DstReg;
941
942   if (Opc == ARM::tPUSH || Opc == ARM::tLDRpci) {
943     // Two special cases:
944     // 1) tPUSH does not have src/dst regs.
945     // 2) for Thumb1 code we sometimes materialize the constant via constpool
946     // load. Yes, this is pretty fragile, but for now I don't see better
947     // way... :(
948     SrcReg = DstReg = ARM::SP;
949   } else {
950     SrcReg = MI->getOperand(1).getReg();
951     DstReg = MI->getOperand(0).getReg();
952   }
953
954   // Try to figure out the unwinding opcode out of src / dst regs.
955   if (MI->mayStore()) {
956     // Register saves.
957     assert(DstReg == ARM::SP &&
958            "Only stack pointer as a destination reg is supported");
959
960     SmallVector<unsigned, 4> RegList;
961     // Skip src & dst reg, and pred ops.
962     unsigned StartOp = 2 + 2;
963     // Use all the operands.
964     unsigned NumOffset = 0;
965
966     switch (Opc) {
967     default:
968       MI->dump();
969       llvm_unreachable("Unsupported opcode for unwinding information");
970     case ARM::tPUSH:
971       // Special case here: no src & dst reg, but two extra imp ops.
972       StartOp = 2; NumOffset = 2;
973     case ARM::STMDB_UPD:
974     case ARM::t2STMDB_UPD:
975     case ARM::VSTMDDB_UPD:
976       assert(SrcReg == ARM::SP &&
977              "Only stack pointer as a source reg is supported");
978       for (unsigned i = StartOp, NumOps = MI->getNumOperands() - NumOffset;
979            i != NumOps; ++i) {
980         const MachineOperand &MO = MI->getOperand(i);
981         // Actually, there should never be any impdef stuff here. Skip it
982         // temporary to workaround PR11902.
983         if (MO.isImplicit())
984           continue;
985         RegList.push_back(MO.getReg());
986       }
987       break;
988     case ARM::STR_PRE_IMM:
989     case ARM::STR_PRE_REG:
990     case ARM::t2STR_PRE:
991       assert(MI->getOperand(2).getReg() == ARM::SP &&
992              "Only stack pointer as a source reg is supported");
993       RegList.push_back(SrcReg);
994       break;
995     }
996     ATS.emitRegSave(RegList, Opc == ARM::VSTMDDB_UPD);
997   } else {
998     // Changes of stack / frame pointer.
999     if (SrcReg == ARM::SP) {
1000       int64_t Offset = 0;
1001       switch (Opc) {
1002       default:
1003         MI->dump();
1004         llvm_unreachable("Unsupported opcode for unwinding information");
1005       case ARM::MOVr:
1006       case ARM::tMOVr:
1007         Offset = 0;
1008         break;
1009       case ARM::ADDri:
1010         Offset = -MI->getOperand(2).getImm();
1011         break;
1012       case ARM::SUBri:
1013       case ARM::t2SUBri:
1014         Offset = MI->getOperand(2).getImm();
1015         break;
1016       case ARM::tSUBspi:
1017         Offset = MI->getOperand(2).getImm()*4;
1018         break;
1019       case ARM::tADDspi:
1020       case ARM::tADDrSPi:
1021         Offset = -MI->getOperand(2).getImm()*4;
1022         break;
1023       case ARM::tLDRpci: {
1024         // Grab the constpool index and check, whether it corresponds to
1025         // original or cloned constpool entry.
1026         unsigned CPI = MI->getOperand(1).getIndex();
1027         const MachineConstantPool *MCP = MF.getConstantPool();
1028         if (CPI >= MCP->getConstants().size())
1029           CPI = AFI.getOriginalCPIdx(CPI);
1030         assert(CPI != -1U && "Invalid constpool index");
1031
1032         // Derive the actual offset.
1033         const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI];
1034         assert(!CPE.isMachineConstantPoolEntry() && "Invalid constpool entry");
1035         // FIXME: Check for user, it should be "add" instruction!
1036         Offset = -cast<ConstantInt>(CPE.Val.ConstVal)->getSExtValue();
1037         break;
1038       }
1039       }
1040
1041       if (DstReg == FramePtr && FramePtr != ARM::SP)
1042         // Set-up of the frame pointer. Positive values correspond to "add"
1043         // instruction.
1044         ATS.emitSetFP(FramePtr, ARM::SP, -Offset);
1045       else if (DstReg == ARM::SP) {
1046         // Change of SP by an offset. Positive values correspond to "sub"
1047         // instruction.
1048         ATS.emitPad(Offset);
1049       } else {
1050         // Move of SP to a register.  Positive values correspond to an "add"
1051         // instruction.
1052         ATS.emitMovSP(DstReg, -Offset);
1053       }
1054     } else if (DstReg == ARM::SP) {
1055       MI->dump();
1056       llvm_unreachable("Unsupported opcode for unwinding information");
1057     }
1058     else {
1059       MI->dump();
1060       llvm_unreachable("Unsupported opcode for unwinding information");
1061     }
1062   }
1063 }
1064
1065 // Simple pseudo-instructions have their lowering (with expansion to real
1066 // instructions) auto-generated.
1067 #include "ARMGenMCPseudoLowering.inc"
1068
1069 void ARMAsmPrinter::EmitInstruction(const MachineInstr *MI) {
1070   const DataLayout *DL = TM.getDataLayout();
1071
1072   // If we just ended a constant pool, mark it as such.
1073   if (InConstantPool && MI->getOpcode() != ARM::CONSTPOOL_ENTRY) {
1074     OutStreamer.EmitDataRegion(MCDR_DataRegionEnd);
1075     InConstantPool = false;
1076   }
1077
1078   // Emit unwinding stuff for frame-related instructions
1079   if (Subtarget->isTargetEHABICompatible() &&
1080        MI->getFlag(MachineInstr::FrameSetup))
1081     EmitUnwindingInstruction(MI);
1082
1083   // Do any auto-generated pseudo lowerings.
1084   if (emitPseudoExpansionLowering(OutStreamer, MI))
1085     return;
1086
1087   assert(!convertAddSubFlagsOpcode(MI->getOpcode()) &&
1088          "Pseudo flag setting opcode should be expanded early");
1089
1090   // Check for manual lowerings.
1091   unsigned Opc = MI->getOpcode();
1092   switch (Opc) {
1093   case ARM::t2MOVi32imm: llvm_unreachable("Should be lowered by thumb2it pass");
1094   case ARM::DBG_VALUE: llvm_unreachable("Should be handled by generic printing");
1095   case ARM::LEApcrel:
1096   case ARM::tLEApcrel:
1097   case ARM::t2LEApcrel: {
1098     // FIXME: Need to also handle globals and externals
1099     MCSymbol *CPISymbol = GetCPISymbol(MI->getOperand(1).getIndex());
1100     EmitToStreamer(OutStreamer, MCInstBuilder(MI->getOpcode() ==
1101                                               ARM::t2LEApcrel ? ARM::t2ADR
1102                   : (MI->getOpcode() == ARM::tLEApcrel ? ARM::tADR
1103                      : ARM::ADR))
1104       .addReg(MI->getOperand(0).getReg())
1105       .addExpr(MCSymbolRefExpr::Create(CPISymbol, OutContext))
1106       // Add predicate operands.
1107       .addImm(MI->getOperand(2).getImm())
1108       .addReg(MI->getOperand(3).getReg()));
1109     return;
1110   }
1111   case ARM::LEApcrelJT:
1112   case ARM::tLEApcrelJT:
1113   case ARM::t2LEApcrelJT: {
1114     MCSymbol *JTIPICSymbol =
1115       GetARMJTIPICJumpTableLabel2(MI->getOperand(1).getIndex(),
1116                                   MI->getOperand(2).getImm());
1117     EmitToStreamer(OutStreamer, MCInstBuilder(MI->getOpcode() ==
1118                                               ARM::t2LEApcrelJT ? ARM::t2ADR
1119                   : (MI->getOpcode() == ARM::tLEApcrelJT ? ARM::tADR
1120                      : ARM::ADR))
1121       .addReg(MI->getOperand(0).getReg())
1122       .addExpr(MCSymbolRefExpr::Create(JTIPICSymbol, OutContext))
1123       // Add predicate operands.
1124       .addImm(MI->getOperand(3).getImm())
1125       .addReg(MI->getOperand(4).getReg()));
1126     return;
1127   }
1128   // Darwin call instructions are just normal call instructions with different
1129   // clobber semantics (they clobber R9).
1130   case ARM::BX_CALL: {
1131     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::MOVr)
1132       .addReg(ARM::LR)
1133       .addReg(ARM::PC)
1134       // Add predicate operands.
1135       .addImm(ARMCC::AL)
1136       .addReg(0)
1137       // Add 's' bit operand (always reg0 for this)
1138       .addReg(0));
1139
1140     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::BX)
1141       .addReg(MI->getOperand(0).getReg()));
1142     return;
1143   }
1144   case ARM::tBX_CALL: {
1145     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tMOVr)
1146       .addReg(ARM::LR)
1147       .addReg(ARM::PC)
1148       // Add predicate operands.
1149       .addImm(ARMCC::AL)
1150       .addReg(0));
1151
1152     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tBX)
1153       .addReg(MI->getOperand(0).getReg())
1154       // Add predicate operands.
1155       .addImm(ARMCC::AL)
1156       .addReg(0));
1157     return;
1158   }
1159   case ARM::BMOVPCRX_CALL: {
1160     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::MOVr)
1161       .addReg(ARM::LR)
1162       .addReg(ARM::PC)
1163       // Add predicate operands.
1164       .addImm(ARMCC::AL)
1165       .addReg(0)
1166       // Add 's' bit operand (always reg0 for this)
1167       .addReg(0));
1168
1169     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::MOVr)
1170       .addReg(ARM::PC)
1171       .addReg(MI->getOperand(0).getReg())
1172       // Add predicate operands.
1173       .addImm(ARMCC::AL)
1174       .addReg(0)
1175       // Add 's' bit operand (always reg0 for this)
1176       .addReg(0));
1177     return;
1178   }
1179   case ARM::BMOVPCB_CALL: {
1180     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::MOVr)
1181       .addReg(ARM::LR)
1182       .addReg(ARM::PC)
1183       // Add predicate operands.
1184       .addImm(ARMCC::AL)
1185       .addReg(0)
1186       // Add 's' bit operand (always reg0 for this)
1187       .addReg(0));
1188
1189     const GlobalValue *GV = MI->getOperand(0).getGlobal();
1190     MCSymbol *GVSym = getSymbol(GV);
1191     const MCExpr *GVSymExpr = MCSymbolRefExpr::Create(GVSym, OutContext);
1192     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::Bcc)
1193       .addExpr(GVSymExpr)
1194       // Add predicate operands.
1195       .addImm(ARMCC::AL)
1196       .addReg(0));
1197     return;
1198   }
1199   case ARM::MOVi16_ga_pcrel:
1200   case ARM::t2MOVi16_ga_pcrel: {
1201     MCInst TmpInst;
1202     TmpInst.setOpcode(Opc == ARM::MOVi16_ga_pcrel? ARM::MOVi16 : ARM::t2MOVi16);
1203     TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
1204
1205     unsigned TF = MI->getOperand(1).getTargetFlags();
1206     const GlobalValue *GV = MI->getOperand(1).getGlobal();
1207     MCSymbol *GVSym = GetARMGVSymbol(GV, TF);
1208     const MCExpr *GVSymExpr = MCSymbolRefExpr::Create(GVSym, OutContext);
1209
1210     MCSymbol *LabelSym = getPICLabel(DL->getPrivateGlobalPrefix(),
1211                                      getFunctionNumber(),
1212                                      MI->getOperand(2).getImm(), OutContext);
1213     const MCExpr *LabelSymExpr= MCSymbolRefExpr::Create(LabelSym, OutContext);
1214     unsigned PCAdj = (Opc == ARM::MOVi16_ga_pcrel) ? 8 : 4;
1215     const MCExpr *PCRelExpr =
1216       ARMMCExpr::CreateLower16(MCBinaryExpr::CreateSub(GVSymExpr,
1217                                       MCBinaryExpr::CreateAdd(LabelSymExpr,
1218                                       MCConstantExpr::Create(PCAdj, OutContext),
1219                                       OutContext), OutContext), OutContext);
1220       TmpInst.addOperand(MCOperand::CreateExpr(PCRelExpr));
1221
1222     // Add predicate operands.
1223     TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1224     TmpInst.addOperand(MCOperand::CreateReg(0));
1225     // Add 's' bit operand (always reg0 for this)
1226     TmpInst.addOperand(MCOperand::CreateReg(0));
1227     EmitToStreamer(OutStreamer, TmpInst);
1228     return;
1229   }
1230   case ARM::MOVTi16_ga_pcrel:
1231   case ARM::t2MOVTi16_ga_pcrel: {
1232     MCInst TmpInst;
1233     TmpInst.setOpcode(Opc == ARM::MOVTi16_ga_pcrel
1234                       ? ARM::MOVTi16 : ARM::t2MOVTi16);
1235     TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
1236     TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(1).getReg()));
1237
1238     unsigned TF = MI->getOperand(2).getTargetFlags();
1239     const GlobalValue *GV = MI->getOperand(2).getGlobal();
1240     MCSymbol *GVSym = GetARMGVSymbol(GV, TF);
1241     const MCExpr *GVSymExpr = MCSymbolRefExpr::Create(GVSym, OutContext);
1242
1243     MCSymbol *LabelSym = getPICLabel(DL->getPrivateGlobalPrefix(),
1244                                      getFunctionNumber(),
1245                                      MI->getOperand(3).getImm(), OutContext);
1246     const MCExpr *LabelSymExpr= MCSymbolRefExpr::Create(LabelSym, OutContext);
1247     unsigned PCAdj = (Opc == ARM::MOVTi16_ga_pcrel) ? 8 : 4;
1248     const MCExpr *PCRelExpr =
1249         ARMMCExpr::CreateUpper16(MCBinaryExpr::CreateSub(GVSymExpr,
1250                                    MCBinaryExpr::CreateAdd(LabelSymExpr,
1251                                       MCConstantExpr::Create(PCAdj, OutContext),
1252                                           OutContext), OutContext), OutContext);
1253       TmpInst.addOperand(MCOperand::CreateExpr(PCRelExpr));
1254     // Add predicate operands.
1255     TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1256     TmpInst.addOperand(MCOperand::CreateReg(0));
1257     // Add 's' bit operand (always reg0 for this)
1258     TmpInst.addOperand(MCOperand::CreateReg(0));
1259     EmitToStreamer(OutStreamer, TmpInst);
1260     return;
1261   }
1262   case ARM::tPICADD: {
1263     // This is a pseudo op for a label + instruction sequence, which looks like:
1264     // LPC0:
1265     //     add r0, pc
1266     // This adds the address of LPC0 to r0.
1267
1268     // Emit the label.
1269     OutStreamer.EmitLabel(getPICLabel(DL->getPrivateGlobalPrefix(),
1270                           getFunctionNumber(), MI->getOperand(2).getImm(),
1271                           OutContext));
1272
1273     // Form and emit the add.
1274     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tADDhirr)
1275       .addReg(MI->getOperand(0).getReg())
1276       .addReg(MI->getOperand(0).getReg())
1277       .addReg(ARM::PC)
1278       // Add predicate operands.
1279       .addImm(ARMCC::AL)
1280       .addReg(0));
1281     return;
1282   }
1283   case ARM::PICADD: {
1284     // This is a pseudo op for a label + instruction sequence, which looks like:
1285     // LPC0:
1286     //     add r0, pc, r0
1287     // This adds the address of LPC0 to r0.
1288
1289     // Emit the label.
1290     OutStreamer.EmitLabel(getPICLabel(DL->getPrivateGlobalPrefix(),
1291                           getFunctionNumber(), MI->getOperand(2).getImm(),
1292                           OutContext));
1293
1294     // Form and emit the add.
1295     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::ADDrr)
1296       .addReg(MI->getOperand(0).getReg())
1297       .addReg(ARM::PC)
1298       .addReg(MI->getOperand(1).getReg())
1299       // Add predicate operands.
1300       .addImm(MI->getOperand(3).getImm())
1301       .addReg(MI->getOperand(4).getReg())
1302       // Add 's' bit operand (always reg0 for this)
1303       .addReg(0));
1304     return;
1305   }
1306   case ARM::PICSTR:
1307   case ARM::PICSTRB:
1308   case ARM::PICSTRH:
1309   case ARM::PICLDR:
1310   case ARM::PICLDRB:
1311   case ARM::PICLDRH:
1312   case ARM::PICLDRSB:
1313   case ARM::PICLDRSH: {
1314     // This is a pseudo op for a label + instruction sequence, which looks like:
1315     // LPC0:
1316     //     OP r0, [pc, r0]
1317     // The LCP0 label is referenced by a constant pool entry in order to get
1318     // a PC-relative address at the ldr instruction.
1319
1320     // Emit the label.
1321     OutStreamer.EmitLabel(getPICLabel(DL->getPrivateGlobalPrefix(),
1322                           getFunctionNumber(), MI->getOperand(2).getImm(),
1323                           OutContext));
1324
1325     // Form and emit the load
1326     unsigned Opcode;
1327     switch (MI->getOpcode()) {
1328     default:
1329       llvm_unreachable("Unexpected opcode!");
1330     case ARM::PICSTR:   Opcode = ARM::STRrs; break;
1331     case ARM::PICSTRB:  Opcode = ARM::STRBrs; break;
1332     case ARM::PICSTRH:  Opcode = ARM::STRH; break;
1333     case ARM::PICLDR:   Opcode = ARM::LDRrs; break;
1334     case ARM::PICLDRB:  Opcode = ARM::LDRBrs; break;
1335     case ARM::PICLDRH:  Opcode = ARM::LDRH; break;
1336     case ARM::PICLDRSB: Opcode = ARM::LDRSB; break;
1337     case ARM::PICLDRSH: Opcode = ARM::LDRSH; break;
1338     }
1339     EmitToStreamer(OutStreamer, MCInstBuilder(Opcode)
1340       .addReg(MI->getOperand(0).getReg())
1341       .addReg(ARM::PC)
1342       .addReg(MI->getOperand(1).getReg())
1343       .addImm(0)
1344       // Add predicate operands.
1345       .addImm(MI->getOperand(3).getImm())
1346       .addReg(MI->getOperand(4).getReg()));
1347
1348     return;
1349   }
1350   case ARM::CONSTPOOL_ENTRY: {
1351     /// CONSTPOOL_ENTRY - This instruction represents a floating constant pool
1352     /// in the function.  The first operand is the ID# for this instruction, the
1353     /// second is the index into the MachineConstantPool that this is, the third
1354     /// is the size in bytes of this constant pool entry.
1355     /// The required alignment is specified on the basic block holding this MI.
1356     unsigned LabelId = (unsigned)MI->getOperand(0).getImm();
1357     unsigned CPIdx   = (unsigned)MI->getOperand(1).getIndex();
1358
1359     // If this is the first entry of the pool, mark it.
1360     if (!InConstantPool) {
1361       OutStreamer.EmitDataRegion(MCDR_DataRegion);
1362       InConstantPool = true;
1363     }
1364
1365     OutStreamer.EmitLabel(GetCPISymbol(LabelId));
1366
1367     const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
1368     if (MCPE.isMachineConstantPoolEntry())
1369       EmitMachineConstantPoolValue(MCPE.Val.MachineCPVal);
1370     else
1371       EmitGlobalConstant(MCPE.Val.ConstVal);
1372     return;
1373   }
1374   case ARM::t2BR_JT: {
1375     // Lower and emit the instruction itself, then the jump table following it.
1376     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tMOVr)
1377       .addReg(ARM::PC)
1378       .addReg(MI->getOperand(0).getReg())
1379       // Add predicate operands.
1380       .addImm(ARMCC::AL)
1381       .addReg(0));
1382
1383     // Output the data for the jump table itself
1384     EmitJump2Table(MI);
1385     return;
1386   }
1387   case ARM::t2TBB_JT: {
1388     // Lower and emit the instruction itself, then the jump table following it.
1389     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::t2TBB)
1390       .addReg(ARM::PC)
1391       .addReg(MI->getOperand(0).getReg())
1392       // Add predicate operands.
1393       .addImm(ARMCC::AL)
1394       .addReg(0));
1395
1396     // Output the data for the jump table itself
1397     EmitJump2Table(MI);
1398     // Make sure the next instruction is 2-byte aligned.
1399     EmitAlignment(1);
1400     return;
1401   }
1402   case ARM::t2TBH_JT: {
1403     // Lower and emit the instruction itself, then the jump table following it.
1404     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::t2TBH)
1405       .addReg(ARM::PC)
1406       .addReg(MI->getOperand(0).getReg())
1407       // Add predicate operands.
1408       .addImm(ARMCC::AL)
1409       .addReg(0));
1410
1411     // Output the data for the jump table itself
1412     EmitJump2Table(MI);
1413     return;
1414   }
1415   case ARM::tBR_JTr:
1416   case ARM::BR_JTr: {
1417     // Lower and emit the instruction itself, then the jump table following it.
1418     // mov pc, target
1419     MCInst TmpInst;
1420     unsigned Opc = MI->getOpcode() == ARM::BR_JTr ?
1421       ARM::MOVr : ARM::tMOVr;
1422     TmpInst.setOpcode(Opc);
1423     TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1424     TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
1425     // Add predicate operands.
1426     TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1427     TmpInst.addOperand(MCOperand::CreateReg(0));
1428     // Add 's' bit operand (always reg0 for this)
1429     if (Opc == ARM::MOVr)
1430       TmpInst.addOperand(MCOperand::CreateReg(0));
1431     EmitToStreamer(OutStreamer, TmpInst);
1432
1433     // Make sure the Thumb jump table is 4-byte aligned.
1434     if (Opc == ARM::tMOVr)
1435       EmitAlignment(2);
1436
1437     // Output the data for the jump table itself
1438     EmitJumpTable(MI);
1439     return;
1440   }
1441   case ARM::BR_JTm: {
1442     // Lower and emit the instruction itself, then the jump table following it.
1443     // ldr pc, target
1444     MCInst TmpInst;
1445     if (MI->getOperand(1).getReg() == 0) {
1446       // literal offset
1447       TmpInst.setOpcode(ARM::LDRi12);
1448       TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1449       TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
1450       TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
1451     } else {
1452       TmpInst.setOpcode(ARM::LDRrs);
1453       TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1454       TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
1455       TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(1).getReg()));
1456       TmpInst.addOperand(MCOperand::CreateImm(0));
1457     }
1458     // Add predicate operands.
1459     TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1460     TmpInst.addOperand(MCOperand::CreateReg(0));
1461     EmitToStreamer(OutStreamer, TmpInst);
1462
1463     // Output the data for the jump table itself
1464     EmitJumpTable(MI);
1465     return;
1466   }
1467   case ARM::BR_JTadd: {
1468     // Lower and emit the instruction itself, then the jump table following it.
1469     // add pc, target, idx
1470     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::ADDrr)
1471       .addReg(ARM::PC)
1472       .addReg(MI->getOperand(0).getReg())
1473       .addReg(MI->getOperand(1).getReg())
1474       // Add predicate operands.
1475       .addImm(ARMCC::AL)
1476       .addReg(0)
1477       // Add 's' bit operand (always reg0 for this)
1478       .addReg(0));
1479
1480     // Output the data for the jump table itself
1481     EmitJumpTable(MI);
1482     return;
1483   }
1484   case ARM::TRAP: {
1485     // Non-Darwin binutils don't yet support the "trap" mnemonic.
1486     // FIXME: Remove this special case when they do.
1487     if (!Subtarget->isTargetMachO()) {
1488       //.long 0xe7ffdefe @ trap
1489       uint32_t Val = 0xe7ffdefeUL;
1490       OutStreamer.AddComment("trap");
1491       OutStreamer.EmitIntValue(Val, 4);
1492       return;
1493     }
1494     break;
1495   }
1496   case ARM::TRAPNaCl: {
1497     //.long 0xe7fedef0 @ trap
1498     uint32_t Val = 0xe7fedef0UL;
1499     OutStreamer.AddComment("trap");
1500     OutStreamer.EmitIntValue(Val, 4);
1501     return;
1502   }
1503   case ARM::tTRAP: {
1504     // Non-Darwin binutils don't yet support the "trap" mnemonic.
1505     // FIXME: Remove this special case when they do.
1506     if (!Subtarget->isTargetMachO()) {
1507       //.short 57086 @ trap
1508       uint16_t Val = 0xdefe;
1509       OutStreamer.AddComment("trap");
1510       OutStreamer.EmitIntValue(Val, 2);
1511       return;
1512     }
1513     break;
1514   }
1515   case ARM::t2Int_eh_sjlj_setjmp:
1516   case ARM::t2Int_eh_sjlj_setjmp_nofp:
1517   case ARM::tInt_eh_sjlj_setjmp: {
1518     // Two incoming args: GPR:$src, GPR:$val
1519     // mov $val, pc
1520     // adds $val, #7
1521     // str $val, [$src, #4]
1522     // movs r0, #0
1523     // b 1f
1524     // movs r0, #1
1525     // 1:
1526     unsigned SrcReg = MI->getOperand(0).getReg();
1527     unsigned ValReg = MI->getOperand(1).getReg();
1528     MCSymbol *Label = GetARMSJLJEHLabel();
1529     OutStreamer.AddComment("eh_setjmp begin");
1530     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tMOVr)
1531       .addReg(ValReg)
1532       .addReg(ARM::PC)
1533       // Predicate.
1534       .addImm(ARMCC::AL)
1535       .addReg(0));
1536
1537     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tADDi3)
1538       .addReg(ValReg)
1539       // 's' bit operand
1540       .addReg(ARM::CPSR)
1541       .addReg(ValReg)
1542       .addImm(7)
1543       // Predicate.
1544       .addImm(ARMCC::AL)
1545       .addReg(0));
1546
1547     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tSTRi)
1548       .addReg(ValReg)
1549       .addReg(SrcReg)
1550       // The offset immediate is #4. The operand value is scaled by 4 for the
1551       // tSTR instruction.
1552       .addImm(1)
1553       // Predicate.
1554       .addImm(ARMCC::AL)
1555       .addReg(0));
1556
1557     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tMOVi8)
1558       .addReg(ARM::R0)
1559       .addReg(ARM::CPSR)
1560       .addImm(0)
1561       // Predicate.
1562       .addImm(ARMCC::AL)
1563       .addReg(0));
1564
1565     const MCExpr *SymbolExpr = MCSymbolRefExpr::Create(Label, OutContext);
1566     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tB)
1567       .addExpr(SymbolExpr)
1568       .addImm(ARMCC::AL)
1569       .addReg(0));
1570
1571     OutStreamer.AddComment("eh_setjmp end");
1572     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tMOVi8)
1573       .addReg(ARM::R0)
1574       .addReg(ARM::CPSR)
1575       .addImm(1)
1576       // Predicate.
1577       .addImm(ARMCC::AL)
1578       .addReg(0));
1579
1580     OutStreamer.EmitLabel(Label);
1581     return;
1582   }
1583
1584   case ARM::Int_eh_sjlj_setjmp_nofp:
1585   case ARM::Int_eh_sjlj_setjmp: {
1586     // Two incoming args: GPR:$src, GPR:$val
1587     // add $val, pc, #8
1588     // str $val, [$src, #+4]
1589     // mov r0, #0
1590     // add pc, pc, #0
1591     // mov r0, #1
1592     unsigned SrcReg = MI->getOperand(0).getReg();
1593     unsigned ValReg = MI->getOperand(1).getReg();
1594
1595     OutStreamer.AddComment("eh_setjmp begin");
1596     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::ADDri)
1597       .addReg(ValReg)
1598       .addReg(ARM::PC)
1599       .addImm(8)
1600       // Predicate.
1601       .addImm(ARMCC::AL)
1602       .addReg(0)
1603       // 's' bit operand (always reg0 for this).
1604       .addReg(0));
1605
1606     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::STRi12)
1607       .addReg(ValReg)
1608       .addReg(SrcReg)
1609       .addImm(4)
1610       // Predicate.
1611       .addImm(ARMCC::AL)
1612       .addReg(0));
1613
1614     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::MOVi)
1615       .addReg(ARM::R0)
1616       .addImm(0)
1617       // Predicate.
1618       .addImm(ARMCC::AL)
1619       .addReg(0)
1620       // 's' bit operand (always reg0 for this).
1621       .addReg(0));
1622
1623     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::ADDri)
1624       .addReg(ARM::PC)
1625       .addReg(ARM::PC)
1626       .addImm(0)
1627       // Predicate.
1628       .addImm(ARMCC::AL)
1629       .addReg(0)
1630       // 's' bit operand (always reg0 for this).
1631       .addReg(0));
1632
1633     OutStreamer.AddComment("eh_setjmp end");
1634     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::MOVi)
1635       .addReg(ARM::R0)
1636       .addImm(1)
1637       // Predicate.
1638       .addImm(ARMCC::AL)
1639       .addReg(0)
1640       // 's' bit operand (always reg0 for this).
1641       .addReg(0));
1642     return;
1643   }
1644   case ARM::Int_eh_sjlj_longjmp: {
1645     // ldr sp, [$src, #8]
1646     // ldr $scratch, [$src, #4]
1647     // ldr r7, [$src]
1648     // bx $scratch
1649     unsigned SrcReg = MI->getOperand(0).getReg();
1650     unsigned ScratchReg = MI->getOperand(1).getReg();
1651     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::LDRi12)
1652       .addReg(ARM::SP)
1653       .addReg(SrcReg)
1654       .addImm(8)
1655       // Predicate.
1656       .addImm(ARMCC::AL)
1657       .addReg(0));
1658
1659     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::LDRi12)
1660       .addReg(ScratchReg)
1661       .addReg(SrcReg)
1662       .addImm(4)
1663       // Predicate.
1664       .addImm(ARMCC::AL)
1665       .addReg(0));
1666
1667     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::LDRi12)
1668       .addReg(ARM::R7)
1669       .addReg(SrcReg)
1670       .addImm(0)
1671       // Predicate.
1672       .addImm(ARMCC::AL)
1673       .addReg(0));
1674
1675     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::BX)
1676       .addReg(ScratchReg)
1677       // Predicate.
1678       .addImm(ARMCC::AL)
1679       .addReg(0));
1680     return;
1681   }
1682   case ARM::tInt_eh_sjlj_longjmp: {
1683     // ldr $scratch, [$src, #8]
1684     // mov sp, $scratch
1685     // ldr $scratch, [$src, #4]
1686     // ldr r7, [$src]
1687     // bx $scratch
1688     unsigned SrcReg = MI->getOperand(0).getReg();
1689     unsigned ScratchReg = MI->getOperand(1).getReg();
1690     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tLDRi)
1691       .addReg(ScratchReg)
1692       .addReg(SrcReg)
1693       // The offset immediate is #8. The operand value is scaled by 4 for the
1694       // tLDR instruction.
1695       .addImm(2)
1696       // Predicate.
1697       .addImm(ARMCC::AL)
1698       .addReg(0));
1699
1700     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tMOVr)
1701       .addReg(ARM::SP)
1702       .addReg(ScratchReg)
1703       // Predicate.
1704       .addImm(ARMCC::AL)
1705       .addReg(0));
1706
1707     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tLDRi)
1708       .addReg(ScratchReg)
1709       .addReg(SrcReg)
1710       .addImm(1)
1711       // Predicate.
1712       .addImm(ARMCC::AL)
1713       .addReg(0));
1714
1715     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tLDRi)
1716       .addReg(ARM::R7)
1717       .addReg(SrcReg)
1718       .addImm(0)
1719       // Predicate.
1720       .addImm(ARMCC::AL)
1721       .addReg(0));
1722
1723     EmitToStreamer(OutStreamer, MCInstBuilder(ARM::tBX)
1724       .addReg(ScratchReg)
1725       // Predicate.
1726       .addImm(ARMCC::AL)
1727       .addReg(0));
1728     return;
1729   }
1730   }
1731
1732   MCInst TmpInst;
1733   LowerARMMachineInstrToMCInst(MI, TmpInst, *this);
1734
1735   EmitToStreamer(OutStreamer, TmpInst);
1736 }
1737
1738 //===----------------------------------------------------------------------===//
1739 // Target Registry Stuff
1740 //===----------------------------------------------------------------------===//
1741
1742 // Force static initialization.
1743 extern "C" void LLVMInitializeARMAsmPrinter() {
1744   RegisterAsmPrinter<ARMAsmPrinter> X(TheARMLETarget);
1745   RegisterAsmPrinter<ARMAsmPrinter> Y(TheARMBETarget);
1746   RegisterAsmPrinter<ARMAsmPrinter> A(TheThumbLETarget);
1747   RegisterAsmPrinter<ARMAsmPrinter> B(TheThumbBETarget);
1748 }