Make ARM and Thumb2 32-bit immediate materialization into a single 32-bit pseudo
[oota-llvm.git] / lib / Target / ARM / AsmPrinter / ARMAsmPrinter.cpp
1 //                     The LLVM Compiler Infrastructure
2 //
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
5 //
6 //===----------------------------------------------------------------------===//
7 //
8 // This file contains a printer that converts from our internal representation
9 // of machine-dependent LLVM code to GAS-format ARM assembly language.
10 //
11 //===----------------------------------------------------------------------===//
12
13 #define DEBUG_TYPE "asm-printer"
14 #include "ARM.h"
15 #include "ARMBuildAttrs.h"
16 #include "ARMTargetMachine.h"
17 #include "ARMAddressingModes.h"
18 #include "ARMConstantPoolValue.h"
19 #include "ARMMachineFunctionInfo.h"
20 #include "llvm/Constants.h"
21 #include "llvm/Module.h"
22 #include "llvm/Assembly/Writer.h"
23 #include "llvm/CodeGen/AsmPrinter.h"
24 #include "llvm/CodeGen/DwarfWriter.h"
25 #include "llvm/CodeGen/MachineModuleInfo.h"
26 #include "llvm/CodeGen/MachineFunctionPass.h"
27 #include "llvm/CodeGen/MachineJumpTableInfo.h"
28 #include "llvm/MC/MCSectionMachO.h"
29 #include "llvm/MC/MCStreamer.h"
30 #include "llvm/MC/MCAsmInfo.h"
31 #include "llvm/MC/MCSymbol.h"
32 #include "llvm/Target/TargetData.h"
33 #include "llvm/Target/TargetLoweringObjectFile.h"
34 #include "llvm/Target/TargetMachine.h"
35 #include "llvm/Target/TargetOptions.h"
36 #include "llvm/Target/TargetRegistry.h"
37 #include "llvm/ADT/SmallPtrSet.h"
38 #include "llvm/ADT/SmallString.h"
39 #include "llvm/ADT/Statistic.h"
40 #include "llvm/ADT/StringSet.h"
41 #include "llvm/Support/Compiler.h"
42 #include "llvm/Support/ErrorHandling.h"
43 #include "llvm/Support/Mangler.h"
44 #include "llvm/Support/MathExtras.h"
45 #include "llvm/Support/FormattedStream.h"
46 #include <cctype>
47 using namespace llvm;
48
49 STATISTIC(EmittedInsts, "Number of machine instrs printed");
50
51 namespace {
52   class VISIBILITY_HIDDEN ARMAsmPrinter : public AsmPrinter {
53     DwarfWriter *DW;
54
55     /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
56     /// make the right decision when printing asm code for different targets.
57     const ARMSubtarget *Subtarget;
58
59     /// AFI - Keep a pointer to ARMFunctionInfo for the current
60     /// MachineFunction.
61     ARMFunctionInfo *AFI;
62
63     /// MCP - Keep a pointer to constantpool entries of the current
64     /// MachineFunction.
65     const MachineConstantPool *MCP;
66
67     /// We name each basic block in a Function with a unique number, so
68     /// that we can consistently refer to them later. This is cleared
69     /// at the beginning of each call to runOnMachineFunction().
70     ///
71     typedef std::map<const Value *, unsigned> ValueMapTy;
72     ValueMapTy NumberForBB;
73
74     /// GVNonLazyPtrs - Keeps the set of GlobalValues that require
75     /// non-lazy-pointers for indirect access.
76     StringMap<std::string> GVNonLazyPtrs;
77
78     /// HiddenGVNonLazyPtrs - Keeps the set of GlobalValues with hidden
79     /// visibility that require non-lazy-pointers for indirect access.
80     StringMap<std::string> HiddenGVNonLazyPtrs;
81
82     /// True if asm printer is printing a series of CONSTPOOL_ENTRY.
83     bool InCPMode;
84   public:
85     explicit ARMAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
86                            const MCAsmInfo *T, bool V)
87       : AsmPrinter(O, TM, T, V), DW(0), AFI(NULL), MCP(NULL),
88         InCPMode(false) {
89       Subtarget = &TM.getSubtarget<ARMSubtarget>();
90     }
91
92     virtual const char *getPassName() const {
93       return "ARM Assembly Printer";
94     }
95
96     void printOperand(const MachineInstr *MI, int OpNum,
97                       const char *Modifier = 0);
98     void printSOImmOperand(const MachineInstr *MI, int OpNum);
99     void printSOImm2PartOperand(const MachineInstr *MI, int OpNum);
100     void printSORegOperand(const MachineInstr *MI, int OpNum);
101     void printAddrMode2Operand(const MachineInstr *MI, int OpNum);
102     void printAddrMode2OffsetOperand(const MachineInstr *MI, int OpNum);
103     void printAddrMode3Operand(const MachineInstr *MI, int OpNum);
104     void printAddrMode3OffsetOperand(const MachineInstr *MI, int OpNum);
105     void printAddrMode4Operand(const MachineInstr *MI, int OpNum,
106                                const char *Modifier = 0);
107     void printAddrMode5Operand(const MachineInstr *MI, int OpNum,
108                                const char *Modifier = 0);
109     void printAddrMode6Operand(const MachineInstr *MI, int OpNum);
110     void printAddrModePCOperand(const MachineInstr *MI, int OpNum,
111                                 const char *Modifier = 0);
112     void printBitfieldInvMaskImmOperand (const MachineInstr *MI, int OpNum);
113
114     void printThumbITMask(const MachineInstr *MI, int OpNum);
115     void printThumbAddrModeRROperand(const MachineInstr *MI, int OpNum);
116     void printThumbAddrModeRI5Operand(const MachineInstr *MI, int OpNum,
117                                       unsigned Scale);
118     void printThumbAddrModeS1Operand(const MachineInstr *MI, int OpNum);
119     void printThumbAddrModeS2Operand(const MachineInstr *MI, int OpNum);
120     void printThumbAddrModeS4Operand(const MachineInstr *MI, int OpNum);
121     void printThumbAddrModeSPOperand(const MachineInstr *MI, int OpNum);
122
123     void printT2SOOperand(const MachineInstr *MI, int OpNum);
124     void printT2AddrModeImm12Operand(const MachineInstr *MI, int OpNum);
125     void printT2AddrModeImm8Operand(const MachineInstr *MI, int OpNum);
126     void printT2AddrModeImm8s4Operand(const MachineInstr *MI, int OpNum);
127     void printT2AddrModeImm8OffsetOperand(const MachineInstr *MI, int OpNum);
128     void printT2AddrModeSoRegOperand(const MachineInstr *MI, int OpNum);
129
130     void printPredicateOperand(const MachineInstr *MI, int OpNum);
131     void printSBitModifierOperand(const MachineInstr *MI, int OpNum);
132     void printPCLabel(const MachineInstr *MI, int OpNum);
133     void printRegisterList(const MachineInstr *MI, int OpNum);
134     void printCPInstOperand(const MachineInstr *MI, int OpNum,
135                             const char *Modifier);
136     void printJTBlockOperand(const MachineInstr *MI, int OpNum);
137     void printJT2BlockOperand(const MachineInstr *MI, int OpNum);
138     void printTBAddrMode(const MachineInstr *MI, int OpNum);
139     void printNoHashImmediate(const MachineInstr *MI, int OpNum);
140
141     virtual bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
142                                  unsigned AsmVariant, const char *ExtraCode);
143     virtual bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNum,
144                                        unsigned AsmVariant,
145                                        const char *ExtraCode);
146
147     void PrintGlobalVariable(const GlobalVariable* GVar);
148     void printInstruction(const MachineInstr *MI);  // autogenerated.
149     static const char *getRegisterName(unsigned RegNo);
150
151     void printMachineInstruction(const MachineInstr *MI);
152     bool runOnMachineFunction(MachineFunction &F);
153     bool doInitialization(Module &M);
154     bool doFinalization(Module &M);
155
156     /// EmitMachineConstantPoolValue - Print a machine constantpool value to
157     /// the .s file.
158     virtual void EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
159       printDataDirective(MCPV->getType());
160
161       ARMConstantPoolValue *ACPV = static_cast<ARMConstantPoolValue*>(MCPV);
162       GlobalValue *GV = ACPV->getGV();
163       std::string Name;
164
165       if (ACPV->isLSDA()) {
166         SmallString<16> LSDAName;
167         raw_svector_ostream(LSDAName) << MAI->getPrivateGlobalPrefix() <<
168           "_LSDA_" << getFunctionNumber();
169         Name = LSDAName.str();
170       } else if (GV) {
171         bool isIndirect = Subtarget->isTargetDarwin() &&
172           Subtarget->GVIsIndirectSymbol(GV, TM.getRelocationModel());
173         if (!isIndirect)
174           Name = Mang->getMangledName(GV);
175         else {
176           // FIXME: Remove this when Darwin transition to @GOT like syntax.
177           std::string SymName = Mang->getMangledName(GV);
178           Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
179           if (GV->hasHiddenVisibility())
180             HiddenGVNonLazyPtrs[SymName] = Name;
181           else
182             GVNonLazyPtrs[SymName] = Name;
183         }
184       } else
185         Name = Mang->makeNameProper(ACPV->getSymbol());
186       O << Name;
187
188       if (ACPV->hasModifier()) O << "(" << ACPV->getModifier() << ")";
189       if (ACPV->getPCAdjustment() != 0) {
190         O << "-(" << MAI->getPrivateGlobalPrefix() << "PC"
191           << ACPV->getLabelId()
192           << "+" << (unsigned)ACPV->getPCAdjustment();
193          if (ACPV->mustAddCurrentAddress())
194            O << "-.";
195          O << ")";
196       }
197       O << "\n";
198     }
199
200     void getAnalysisUsage(AnalysisUsage &AU) const {
201       AsmPrinter::getAnalysisUsage(AU);
202       AU.setPreservesAll();
203       AU.addRequired<MachineModuleInfo>();
204       AU.addRequired<DwarfWriter>();
205     }
206   };
207 } // end of anonymous namespace
208
209 #include "ARMGenAsmWriter.inc"
210
211 /// runOnMachineFunction - This uses the printInstruction()
212 /// method to print assembly for each instruction.
213 ///
214 bool ARMAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
215   this->MF = &MF;
216
217   AFI = MF.getInfo<ARMFunctionInfo>();
218   MCP = MF.getConstantPool();
219
220   SetupMachineFunction(MF);
221   O << "\n";
222
223   // NOTE: we don't print out constant pools here, they are handled as
224   // instructions.
225
226   O << '\n';
227
228   // Print out labels for the function.
229   const Function *F = MF.getFunction();
230   OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
231
232   switch (F->getLinkage()) {
233   default: llvm_unreachable("Unknown linkage type!");
234   case Function::PrivateLinkage:
235   case Function::InternalLinkage:
236     break;
237   case Function::ExternalLinkage:
238     O << "\t.globl\t" << CurrentFnName << "\n";
239     break;
240   case Function::LinkerPrivateLinkage:
241   case Function::WeakAnyLinkage:
242   case Function::WeakODRLinkage:
243   case Function::LinkOnceAnyLinkage:
244   case Function::LinkOnceODRLinkage:
245     if (Subtarget->isTargetDarwin()) {
246       O << "\t.globl\t" << CurrentFnName << "\n";
247       O << "\t.weak_definition\t" << CurrentFnName << "\n";
248     } else {
249       O << MAI->getWeakRefDirective() << CurrentFnName << "\n";
250     }
251     break;
252   }
253
254   printVisibility(CurrentFnName, F->getVisibility());
255
256   if (AFI->isThumbFunction()) {
257     EmitAlignment(MF.getAlignment(), F, AFI->getAlign());
258     O << "\t.code\t16\n";
259     O << "\t.thumb_func";
260     if (Subtarget->isTargetDarwin())
261       O << "\t" << CurrentFnName;
262     O << "\n";
263     InCPMode = false;
264   } else {
265     EmitAlignment(MF.getAlignment(), F);
266   }
267
268   O << CurrentFnName << ":\n";
269   // Emit pre-function debug information.
270   DW->BeginFunction(&MF);
271
272   if (Subtarget->isTargetDarwin()) {
273     // If the function is empty, then we need to emit *something*. Otherwise,
274     // the function's label might be associated with something that it wasn't
275     // meant to be associated with. We emit a noop in this situation.
276     MachineFunction::iterator I = MF.begin();
277
278     if (++I == MF.end() && MF.front().empty())
279       O << "\tnop\n";
280   }
281
282   // Print out code for the function.
283   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
284        I != E; ++I) {
285     // Print a label for the basic block.
286     if (I != MF.begin()) {
287       EmitBasicBlockStart(I);
288       O << '\n';
289     }
290     for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
291          II != E; ++II) {
292       // Print the assembly for the instruction.
293       printMachineInstruction(II);
294     }
295   }
296
297   if (MAI->hasDotTypeDotSizeDirective())
298     O << "\t.size " << CurrentFnName << ", .-" << CurrentFnName << "\n";
299
300   // Emit post-function debug information.
301   DW->EndFunction(&MF);
302
303   return false;
304 }
305
306 void ARMAsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
307                                  const char *Modifier) {
308   const MachineOperand &MO = MI->getOperand(OpNum);
309   switch (MO.getType()) {
310   case MachineOperand::MO_Register: {
311     unsigned Reg = MO.getReg();
312     if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
313       if (Modifier && strcmp(Modifier, "dregpair") == 0) {
314         unsigned DRegLo = TRI->getSubReg(Reg, 5); // arm_dsubreg_0
315         unsigned DRegHi = TRI->getSubReg(Reg, 6); // arm_dsubreg_1
316         O << '{'
317           << getRegisterName(DRegLo) << ',' << getRegisterName(DRegHi)
318           << '}';
319       } else if (Modifier && strcmp(Modifier, "lane") == 0) {
320         unsigned RegNum = ARMRegisterInfo::getRegisterNumbering(Reg);
321         unsigned DReg = TRI->getMatchingSuperReg(Reg, RegNum & 1 ? 2 : 1,
322                                                  &ARM::DPR_VFP2RegClass);
323         O << getRegisterName(DReg) << '[' << (RegNum & 1) << ']';
324       } else {
325         O << getRegisterName(Reg);
326       }
327     } else
328       llvm_unreachable("not implemented");
329     break;
330   }
331   case MachineOperand::MO_Immediate: {
332     int64_t Imm = MO.getImm();
333     if (Modifier) {
334       if (strcmp(Modifier, "lo16") == 0)
335         Imm = Imm & 0xffffLL;
336       else if (strcmp(Modifier, "hi16") == 0)
337         Imm = (Imm & 0xffff0000LL) >> 16;
338     }
339     O << '#' << Imm;
340     break;
341   }
342   case MachineOperand::MO_MachineBasicBlock:
343     GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
344     return;
345   case MachineOperand::MO_GlobalAddress: {
346     bool isCallOp = Modifier && !strcmp(Modifier, "call");
347     GlobalValue *GV = MO.getGlobal();
348     O << Mang->getMangledName(GV);
349
350     printOffset(MO.getOffset());
351
352     if (isCallOp && Subtarget->isTargetELF() &&
353         TM.getRelocationModel() == Reloc::PIC_)
354       O << "(PLT)";
355     break;
356   }
357   case MachineOperand::MO_ExternalSymbol: {
358     bool isCallOp = Modifier && !strcmp(Modifier, "call");
359     std::string Name = Mang->makeNameProper(MO.getSymbolName());
360
361     O << Name;
362     if (isCallOp && Subtarget->isTargetELF() &&
363         TM.getRelocationModel() == Reloc::PIC_)
364       O << "(PLT)";
365     break;
366   }
367   case MachineOperand::MO_ConstantPoolIndex:
368     O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
369       << '_' << MO.getIndex();
370     break;
371   case MachineOperand::MO_JumpTableIndex:
372     O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
373       << '_' << MO.getIndex();
374     break;
375   default:
376     O << "<unknown operand type>"; abort (); break;
377   }
378 }
379
380 static void printSOImm(formatted_raw_ostream &O, int64_t V, bool VerboseAsm,
381                        const MCAsmInfo *MAI) {
382   // Break it up into two parts that make up a shifter immediate.
383   V = ARM_AM::getSOImmVal(V);
384   assert(V != -1 && "Not a valid so_imm value!");
385
386   unsigned Imm = ARM_AM::getSOImmValImm(V);
387   unsigned Rot = ARM_AM::getSOImmValRot(V);
388
389   // Print low-level immediate formation info, per
390   // A5.1.3: "Data-processing operands - Immediate".
391   if (Rot) {
392     O << "#" << Imm << ", " << Rot;
393     // Pretty printed version.
394     if (VerboseAsm)
395       O << ' ' << MAI->getCommentString()
396         << ' ' << (int)ARM_AM::rotr32(Imm, Rot);
397   } else {
398     O << "#" << Imm;
399   }
400 }
401
402 /// printSOImmOperand - SOImm is 4-bit rotate amount in bits 8-11 with 8-bit
403 /// immediate in bits 0-7.
404 void ARMAsmPrinter::printSOImmOperand(const MachineInstr *MI, int OpNum) {
405   const MachineOperand &MO = MI->getOperand(OpNum);
406   assert(MO.isImm() && "Not a valid so_imm value!");
407   printSOImm(O, MO.getImm(), VerboseAsm, MAI);
408 }
409
410 /// printSOImm2PartOperand - SOImm is broken into two pieces using a 'mov'
411 /// followed by an 'orr' to materialize.
412 void ARMAsmPrinter::printSOImm2PartOperand(const MachineInstr *MI, int OpNum) {
413   const MachineOperand &MO = MI->getOperand(OpNum);
414   assert(MO.isImm() && "Not a valid so_imm value!");
415   unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO.getImm());
416   unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO.getImm());
417   printSOImm(O, V1, VerboseAsm, MAI);
418   O << "\n\torr";
419   printPredicateOperand(MI, 2);
420   O << " ";
421   printOperand(MI, 0);
422   O << ", ";
423   printOperand(MI, 0);
424   O << ", ";
425   printSOImm(O, V2, VerboseAsm, MAI);
426 }
427
428 // so_reg is a 4-operand unit corresponding to register forms of the A5.1
429 // "Addressing Mode 1 - Data-processing operands" forms.  This includes:
430 //    REG 0   0           - e.g. R5
431 //    REG REG 0,SH_OPC    - e.g. R5, ROR R3
432 //    REG 0   IMM,SH_OPC  - e.g. R5, LSL #3
433 void ARMAsmPrinter::printSORegOperand(const MachineInstr *MI, int Op) {
434   const MachineOperand &MO1 = MI->getOperand(Op);
435   const MachineOperand &MO2 = MI->getOperand(Op+1);
436   const MachineOperand &MO3 = MI->getOperand(Op+2);
437
438   O << getRegisterName(MO1.getReg());
439
440   // Print the shift opc.
441   O << ", "
442     << ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(MO3.getImm()))
443     << " ";
444
445   if (MO2.getReg()) {
446     O << getRegisterName(MO2.getReg());
447     assert(ARM_AM::getSORegOffset(MO3.getImm()) == 0);
448   } else {
449     O << "#" << ARM_AM::getSORegOffset(MO3.getImm());
450   }
451 }
452
453 void ARMAsmPrinter::printAddrMode2Operand(const MachineInstr *MI, int Op) {
454   const MachineOperand &MO1 = MI->getOperand(Op);
455   const MachineOperand &MO2 = MI->getOperand(Op+1);
456   const MachineOperand &MO3 = MI->getOperand(Op+2);
457
458   if (!MO1.isReg()) {   // FIXME: This is for CP entries, but isn't right.
459     printOperand(MI, Op);
460     return;
461   }
462
463   O << "[" << getRegisterName(MO1.getReg());
464
465   if (!MO2.getReg()) {
466     if (ARM_AM::getAM2Offset(MO3.getImm()))  // Don't print +0.
467       O << ", #"
468         << (char)ARM_AM::getAM2Op(MO3.getImm())
469         << ARM_AM::getAM2Offset(MO3.getImm());
470     O << "]";
471     return;
472   }
473
474   O << ", "
475     << (char)ARM_AM::getAM2Op(MO3.getImm())
476     << getRegisterName(MO2.getReg());
477
478   if (unsigned ShImm = ARM_AM::getAM2Offset(MO3.getImm()))
479     O << ", "
480       << ARM_AM::getShiftOpcStr(ARM_AM::getAM2ShiftOpc(MO3.getImm()))
481       << " #" << ShImm;
482   O << "]";
483 }
484
485 void ARMAsmPrinter::printAddrMode2OffsetOperand(const MachineInstr *MI, int Op){
486   const MachineOperand &MO1 = MI->getOperand(Op);
487   const MachineOperand &MO2 = MI->getOperand(Op+1);
488
489   if (!MO1.getReg()) {
490     unsigned ImmOffs = ARM_AM::getAM2Offset(MO2.getImm());
491     assert(ImmOffs && "Malformed indexed load / store!");
492     O << "#"
493       << (char)ARM_AM::getAM2Op(MO2.getImm())
494       << ImmOffs;
495     return;
496   }
497
498   O << (char)ARM_AM::getAM2Op(MO2.getImm())
499     << getRegisterName(MO1.getReg());
500
501   if (unsigned ShImm = ARM_AM::getAM2Offset(MO2.getImm()))
502     O << ", "
503       << ARM_AM::getShiftOpcStr(ARM_AM::getAM2ShiftOpc(MO2.getImm()))
504       << " #" << ShImm;
505 }
506
507 void ARMAsmPrinter::printAddrMode3Operand(const MachineInstr *MI, int Op) {
508   const MachineOperand &MO1 = MI->getOperand(Op);
509   const MachineOperand &MO2 = MI->getOperand(Op+1);
510   const MachineOperand &MO3 = MI->getOperand(Op+2);
511
512   assert(TargetRegisterInfo::isPhysicalRegister(MO1.getReg()));
513   O << "[" << getRegisterName(MO1.getReg());
514
515   if (MO2.getReg()) {
516     O << ", "
517       << (char)ARM_AM::getAM3Op(MO3.getImm())
518       << getRegisterName(MO2.getReg())
519       << "]";
520     return;
521   }
522
523   if (unsigned ImmOffs = ARM_AM::getAM3Offset(MO3.getImm()))
524     O << ", #"
525       << (char)ARM_AM::getAM3Op(MO3.getImm())
526       << ImmOffs;
527   O << "]";
528 }
529
530 void ARMAsmPrinter::printAddrMode3OffsetOperand(const MachineInstr *MI, int Op){
531   const MachineOperand &MO1 = MI->getOperand(Op);
532   const MachineOperand &MO2 = MI->getOperand(Op+1);
533
534   if (MO1.getReg()) {
535     O << (char)ARM_AM::getAM3Op(MO2.getImm())
536       << getRegisterName(MO1.getReg());
537     return;
538   }
539
540   unsigned ImmOffs = ARM_AM::getAM3Offset(MO2.getImm());
541   assert(ImmOffs && "Malformed indexed load / store!");
542   O << "#"
543     << (char)ARM_AM::getAM3Op(MO2.getImm())
544     << ImmOffs;
545 }
546
547 void ARMAsmPrinter::printAddrMode4Operand(const MachineInstr *MI, int Op,
548                                           const char *Modifier) {
549   const MachineOperand &MO1 = MI->getOperand(Op);
550   const MachineOperand &MO2 = MI->getOperand(Op+1);
551   ARM_AM::AMSubMode Mode = ARM_AM::getAM4SubMode(MO2.getImm());
552   if (Modifier && strcmp(Modifier, "submode") == 0) {
553     if (MO1.getReg() == ARM::SP) {
554       // FIXME
555       bool isLDM = (MI->getOpcode() == ARM::LDM ||
556                     MI->getOpcode() == ARM::LDM_RET ||
557                     MI->getOpcode() == ARM::t2LDM ||
558                     MI->getOpcode() == ARM::t2LDM_RET);
559       O << ARM_AM::getAMSubModeAltStr(Mode, isLDM);
560     } else
561       O << ARM_AM::getAMSubModeStr(Mode);
562   } else if (Modifier && strcmp(Modifier, "wide") == 0) {
563     ARM_AM::AMSubMode Mode = ARM_AM::getAM4SubMode(MO2.getImm());
564     if (Mode == ARM_AM::ia)
565       O << ".w";
566   } else {
567     printOperand(MI, Op);
568     if (ARM_AM::getAM4WBFlag(MO2.getImm()))
569       O << "!";
570   }
571 }
572
573 void ARMAsmPrinter::printAddrMode5Operand(const MachineInstr *MI, int Op,
574                                           const char *Modifier) {
575   const MachineOperand &MO1 = MI->getOperand(Op);
576   const MachineOperand &MO2 = MI->getOperand(Op+1);
577
578   if (!MO1.isReg()) {   // FIXME: This is for CP entries, but isn't right.
579     printOperand(MI, Op);
580     return;
581   }
582
583   assert(TargetRegisterInfo::isPhysicalRegister(MO1.getReg()));
584
585   if (Modifier && strcmp(Modifier, "submode") == 0) {
586     ARM_AM::AMSubMode Mode = ARM_AM::getAM5SubMode(MO2.getImm());
587     if (MO1.getReg() == ARM::SP) {
588       bool isFLDM = (MI->getOpcode() == ARM::FLDMD ||
589                      MI->getOpcode() == ARM::FLDMS);
590       O << ARM_AM::getAMSubModeAltStr(Mode, isFLDM);
591     } else
592       O << ARM_AM::getAMSubModeStr(Mode);
593     return;
594   } else if (Modifier && strcmp(Modifier, "base") == 0) {
595     // Used for FSTM{D|S} and LSTM{D|S} operations.
596     O << getRegisterName(MO1.getReg());
597     if (ARM_AM::getAM5WBFlag(MO2.getImm()))
598       O << "!";
599     return;
600   }
601
602   O << "[" << getRegisterName(MO1.getReg());
603
604   if (unsigned ImmOffs = ARM_AM::getAM5Offset(MO2.getImm())) {
605     O << ", #"
606       << (char)ARM_AM::getAM5Op(MO2.getImm())
607       << ImmOffs*4;
608   }
609   O << "]";
610 }
611
612 void ARMAsmPrinter::printAddrMode6Operand(const MachineInstr *MI, int Op) {
613   const MachineOperand &MO1 = MI->getOperand(Op);
614   const MachineOperand &MO2 = MI->getOperand(Op+1);
615   const MachineOperand &MO3 = MI->getOperand(Op+2);
616
617   // FIXME: No support yet for specifying alignment.
618   O << "[" << getRegisterName(MO1.getReg()) << "]";
619
620   if (ARM_AM::getAM6WBFlag(MO3.getImm())) {
621     if (MO2.getReg() == 0)
622       O << "!";
623     else
624       O << ", " << getRegisterName(MO2.getReg());
625   }
626 }
627
628 void ARMAsmPrinter::printAddrModePCOperand(const MachineInstr *MI, int Op,
629                                            const char *Modifier) {
630   if (Modifier && strcmp(Modifier, "label") == 0) {
631     printPCLabel(MI, Op+1);
632     return;
633   }
634
635   const MachineOperand &MO1 = MI->getOperand(Op);
636   assert(TargetRegisterInfo::isPhysicalRegister(MO1.getReg()));
637   O << "[pc, +" << getRegisterName(MO1.getReg()) << "]";
638 }
639
640 void
641 ARMAsmPrinter::printBitfieldInvMaskImmOperand(const MachineInstr *MI, int Op) {
642   const MachineOperand &MO = MI->getOperand(Op);
643   uint32_t v = ~MO.getImm();
644   int32_t lsb = CountTrailingZeros_32(v);
645   int32_t width = (32 - CountLeadingZeros_32 (v)) - lsb;
646   assert(MO.isImm() && "Not a valid bf_inv_mask_imm value!");
647   O << "#" << lsb << ", #" << width;
648 }
649
650 //===--------------------------------------------------------------------===//
651
652 void
653 ARMAsmPrinter::printThumbITMask(const MachineInstr *MI, int Op) {
654   // (3 - the number of trailing zeros) is the number of then / else.
655   unsigned Mask = MI->getOperand(Op).getImm();
656   unsigned NumTZ = CountTrailingZeros_32(Mask);
657   assert(NumTZ <= 3 && "Invalid IT mask!");
658   for (unsigned Pos = 3, e = NumTZ; Pos > e; --Pos) {
659     bool T = (Mask & (1 << Pos)) == 0;
660     if (T)
661       O << 't';
662     else
663       O << 'e';
664   }
665 }
666
667 void
668 ARMAsmPrinter::printThumbAddrModeRROperand(const MachineInstr *MI, int Op) {
669   const MachineOperand &MO1 = MI->getOperand(Op);
670   const MachineOperand &MO2 = MI->getOperand(Op+1);
671   O << "[" << getRegisterName(MO1.getReg());
672   O << ", " << getRegisterName(MO2.getReg()) << "]";
673 }
674
675 void
676 ARMAsmPrinter::printThumbAddrModeRI5Operand(const MachineInstr *MI, int Op,
677                                             unsigned Scale) {
678   const MachineOperand &MO1 = MI->getOperand(Op);
679   const MachineOperand &MO2 = MI->getOperand(Op+1);
680   const MachineOperand &MO3 = MI->getOperand(Op+2);
681
682   if (!MO1.isReg()) {   // FIXME: This is for CP entries, but isn't right.
683     printOperand(MI, Op);
684     return;
685   }
686
687   O << "[" << getRegisterName(MO1.getReg());
688   if (MO3.getReg())
689     O << ", " << getRegisterName(MO3.getReg());
690   else if (unsigned ImmOffs = MO2.getImm()) {
691     O << ", #" << ImmOffs;
692     if (Scale > 1)
693       O << " * " << Scale;
694   }
695   O << "]";
696 }
697
698 void
699 ARMAsmPrinter::printThumbAddrModeS1Operand(const MachineInstr *MI, int Op) {
700   printThumbAddrModeRI5Operand(MI, Op, 1);
701 }
702 void
703 ARMAsmPrinter::printThumbAddrModeS2Operand(const MachineInstr *MI, int Op) {
704   printThumbAddrModeRI5Operand(MI, Op, 2);
705 }
706 void
707 ARMAsmPrinter::printThumbAddrModeS4Operand(const MachineInstr *MI, int Op) {
708   printThumbAddrModeRI5Operand(MI, Op, 4);
709 }
710
711 void ARMAsmPrinter::printThumbAddrModeSPOperand(const MachineInstr *MI,int Op) {
712   const MachineOperand &MO1 = MI->getOperand(Op);
713   const MachineOperand &MO2 = MI->getOperand(Op+1);
714   O << "[" << getRegisterName(MO1.getReg());
715   if (unsigned ImmOffs = MO2.getImm())
716     O << ", #" << ImmOffs << " * 4";
717   O << "]";
718 }
719
720 //===--------------------------------------------------------------------===//
721
722 // Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
723 // register with shift forms.
724 // REG 0   0           - e.g. R5
725 // REG IMM, SH_OPC     - e.g. R5, LSL #3
726 void ARMAsmPrinter::printT2SOOperand(const MachineInstr *MI, int OpNum) {
727   const MachineOperand &MO1 = MI->getOperand(OpNum);
728   const MachineOperand &MO2 = MI->getOperand(OpNum+1);
729
730   unsigned Reg = MO1.getReg();
731   assert(TargetRegisterInfo::isPhysicalRegister(Reg));
732   O << getRegisterName(Reg);
733
734   // Print the shift opc.
735   O << ", "
736     << ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(MO2.getImm()))
737     << " ";
738
739   assert(MO2.isImm() && "Not a valid t2_so_reg value!");
740   O << "#" << ARM_AM::getSORegOffset(MO2.getImm());
741 }
742
743 void ARMAsmPrinter::printT2AddrModeImm12Operand(const MachineInstr *MI,
744                                                 int OpNum) {
745   const MachineOperand &MO1 = MI->getOperand(OpNum);
746   const MachineOperand &MO2 = MI->getOperand(OpNum+1);
747
748   O << "[" << getRegisterName(MO1.getReg());
749
750   unsigned OffImm = MO2.getImm();
751   if (OffImm)  // Don't print +0.
752     O << ", #+" << OffImm;
753   O << "]";
754 }
755
756 void ARMAsmPrinter::printT2AddrModeImm8Operand(const MachineInstr *MI,
757                                                int OpNum) {
758   const MachineOperand &MO1 = MI->getOperand(OpNum);
759   const MachineOperand &MO2 = MI->getOperand(OpNum+1);
760
761   O << "[" << getRegisterName(MO1.getReg());
762
763   int32_t OffImm = (int32_t)MO2.getImm();
764   // Don't print +0.
765   if (OffImm < 0)
766     O << ", #-" << -OffImm;
767   else if (OffImm > 0)
768     O << ", #+" << OffImm;
769   O << "]";
770 }
771
772 void ARMAsmPrinter::printT2AddrModeImm8s4Operand(const MachineInstr *MI,
773                                                  int OpNum) {
774   const MachineOperand &MO1 = MI->getOperand(OpNum);
775   const MachineOperand &MO2 = MI->getOperand(OpNum+1);
776
777   O << "[" << getRegisterName(MO1.getReg());
778
779   int32_t OffImm = (int32_t)MO2.getImm() / 4;
780   // Don't print +0.
781   if (OffImm < 0)
782     O << ", #-" << -OffImm << " * 4";
783   else if (OffImm > 0)
784     O << ", #+" << OffImm << " * 4";
785   O << "]";
786 }
787
788 void ARMAsmPrinter::printT2AddrModeImm8OffsetOperand(const MachineInstr *MI,
789                                                      int OpNum) {
790   const MachineOperand &MO1 = MI->getOperand(OpNum);
791   int32_t OffImm = (int32_t)MO1.getImm();
792   // Don't print +0.
793   if (OffImm < 0)
794     O << "#-" << -OffImm;
795   else if (OffImm > 0)
796     O << "#+" << OffImm;
797 }
798
799 void ARMAsmPrinter::printT2AddrModeSoRegOperand(const MachineInstr *MI,
800                                                 int OpNum) {
801   const MachineOperand &MO1 = MI->getOperand(OpNum);
802   const MachineOperand &MO2 = MI->getOperand(OpNum+1);
803   const MachineOperand &MO3 = MI->getOperand(OpNum+2);
804
805   O << "[" << getRegisterName(MO1.getReg());
806
807   assert(MO2.getReg() && "Invalid so_reg load / store address!");
808   O << ", " << getRegisterName(MO2.getReg());
809
810   unsigned ShAmt = MO3.getImm();
811   if (ShAmt) {
812     assert(ShAmt <= 3 && "Not a valid Thumb2 addressing mode!");
813     O << ", lsl #" << ShAmt;
814   }
815   O << "]";
816 }
817
818
819 //===--------------------------------------------------------------------===//
820
821 void ARMAsmPrinter::printPredicateOperand(const MachineInstr *MI, int OpNum) {
822   ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
823   if (CC != ARMCC::AL)
824     O << ARMCondCodeToString(CC);
825 }
826
827 void ARMAsmPrinter::printSBitModifierOperand(const MachineInstr *MI, int OpNum){
828   unsigned Reg = MI->getOperand(OpNum).getReg();
829   if (Reg) {
830     assert(Reg == ARM::CPSR && "Expect ARM CPSR register!");
831     O << 's';
832   }
833 }
834
835 void ARMAsmPrinter::printPCLabel(const MachineInstr *MI, int OpNum) {
836   int Id = (int)MI->getOperand(OpNum).getImm();
837   O << MAI->getPrivateGlobalPrefix() << "PC" << Id;
838 }
839
840 void ARMAsmPrinter::printRegisterList(const MachineInstr *MI, int OpNum) {
841   O << "{";
842   for (unsigned i = OpNum, e = MI->getNumOperands(); i != e; ++i) {
843     if (MI->getOperand(i).isImplicit())
844       continue;
845     if ((int)i != OpNum) O << ", ";
846     printOperand(MI, i);
847   }
848   O << "}";
849 }
850
851 void ARMAsmPrinter::printCPInstOperand(const MachineInstr *MI, int OpNum,
852                                        const char *Modifier) {
853   assert(Modifier && "This operand only works with a modifier!");
854   // There are two aspects to a CONSTANTPOOL_ENTRY operand, the label and the
855   // data itself.
856   if (!strcmp(Modifier, "label")) {
857     unsigned ID = MI->getOperand(OpNum).getImm();
858     O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
859       << '_' << ID << ":\n";
860   } else {
861     assert(!strcmp(Modifier, "cpentry") && "Unknown modifier for CPE");
862     unsigned CPI = MI->getOperand(OpNum).getIndex();
863
864     const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
865
866     if (MCPE.isMachineConstantPoolEntry()) {
867       EmitMachineConstantPoolValue(MCPE.Val.MachineCPVal);
868     } else {
869       EmitGlobalConstant(MCPE.Val.ConstVal);
870     }
871   }
872 }
873
874 void ARMAsmPrinter::printJTBlockOperand(const MachineInstr *MI, int OpNum) {
875   assert(!Subtarget->isThumb2() && "Thumb2 should use double-jump jumptables!");
876
877   const MachineOperand &MO1 = MI->getOperand(OpNum);
878   const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
879   unsigned JTI = MO1.getIndex();
880   O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
881     << '_' << JTI << '_' << MO2.getImm() << ":\n";
882
883   const char *JTEntryDirective = MAI->getData32bitsDirective();
884
885   const MachineFunction *MF = MI->getParent()->getParent();
886   const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
887   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
888   const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
889   bool UseSet= MAI->getSetDirective() && TM.getRelocationModel() == Reloc::PIC_;
890   SmallPtrSet<MachineBasicBlock*, 8> JTSets;
891   for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
892     MachineBasicBlock *MBB = JTBBs[i];
893     bool isNew = JTSets.insert(MBB);
894
895     if (UseSet && isNew)
896       printPICJumpTableSetLabel(JTI, MO2.getImm(), MBB);
897
898     O << JTEntryDirective << ' ';
899     if (UseSet)
900       O << MAI->getPrivateGlobalPrefix() << getFunctionNumber()
901         << '_' << JTI << '_' << MO2.getImm()
902         << "_set_" << MBB->getNumber();
903     else if (TM.getRelocationModel() == Reloc::PIC_) {
904       GetMBBSymbol(MBB->getNumber())->print(O, MAI);
905       O << '-' << MAI->getPrivateGlobalPrefix() << "JTI"
906         << getFunctionNumber() << '_' << JTI << '_' << MO2.getImm();
907     } else {
908       GetMBBSymbol(MBB->getNumber())->print(O, MAI);
909     }
910     if (i != e-1)
911       O << '\n';
912   }
913 }
914
915 void ARMAsmPrinter::printJT2BlockOperand(const MachineInstr *MI, int OpNum) {
916   const MachineOperand &MO1 = MI->getOperand(OpNum);
917   const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
918   unsigned JTI = MO1.getIndex();
919   O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
920     << '_' << JTI << '_' << MO2.getImm() << ":\n";
921
922   const MachineFunction *MF = MI->getParent()->getParent();
923   const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
924   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
925   const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
926   bool ByteOffset = false, HalfWordOffset = false;
927   if (MI->getOpcode() == ARM::t2TBB)
928     ByteOffset = true;
929   else if (MI->getOpcode() == ARM::t2TBH)
930     HalfWordOffset = true;
931
932   for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
933     MachineBasicBlock *MBB = JTBBs[i];
934     if (ByteOffset)
935       O << MAI->getData8bitsDirective();
936     else if (HalfWordOffset)
937       O << MAI->getData16bitsDirective();
938     if (ByteOffset || HalfWordOffset) {
939       O << '(';
940       GetMBBSymbol(MBB->getNumber())->print(O, MAI);
941       O << "-" << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
942         << '_' << JTI << '_' << MO2.getImm() << ")/2";
943     } else {
944       O << "\tb.w ";
945       GetMBBSymbol(MBB->getNumber())->print(O, MAI);
946     }
947     if (i != e-1)
948       O << '\n';
949   }
950
951   // Make sure the instruction that follows TBB is 2-byte aligned.
952   // FIXME: Constant island pass should insert an "ALIGN" instruction instead.
953   if (ByteOffset && (JTBBs.size() & 1)) {
954     O << '\n';
955     EmitAlignment(1);
956   }
957 }
958
959 void ARMAsmPrinter::printTBAddrMode(const MachineInstr *MI, int OpNum) {
960   O << "[pc, " << getRegisterName(MI->getOperand(OpNum).getReg());
961   if (MI->getOpcode() == ARM::t2TBH)
962     O << ", lsl #1";
963   O << ']';
964 }
965
966 void ARMAsmPrinter::printNoHashImmediate(const MachineInstr *MI, int OpNum) {
967   O << MI->getOperand(OpNum).getImm();
968 }
969
970 bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
971                                     unsigned AsmVariant, const char *ExtraCode){
972   // Does this asm operand have a single letter operand modifier?
973   if (ExtraCode && ExtraCode[0]) {
974     if (ExtraCode[1] != 0) return true; // Unknown modifier.
975
976     switch (ExtraCode[0]) {
977     default: return true;  // Unknown modifier.
978     case 'a': // Print as a memory address.
979       if (MI->getOperand(OpNum).isReg()) {
980         O << "[" << getRegisterName(MI->getOperand(OpNum).getReg()) << "]";
981         return false;
982       }
983       // Fallthrough
984     case 'c': // Don't print "#" before an immediate operand.
985       if (!MI->getOperand(OpNum).isImm())
986         return true;
987       printNoHashImmediate(MI, OpNum);
988       return false;
989     case 'P': // Print a VFP double precision register.
990       printOperand(MI, OpNum);
991       return false;
992     case 'Q':
993       if (TM.getTargetData()->isLittleEndian())
994         break;
995       // Fallthrough
996     case 'R':
997       if (TM.getTargetData()->isBigEndian())
998         break;
999       // Fallthrough
1000     case 'H': // Write second word of DI / DF reference.
1001       // Verify that this operand has two consecutive registers.
1002       if (!MI->getOperand(OpNum).isReg() ||
1003           OpNum+1 == MI->getNumOperands() ||
1004           !MI->getOperand(OpNum+1).isReg())
1005         return true;
1006       ++OpNum;   // Return the high-part.
1007     }
1008   }
1009
1010   printOperand(MI, OpNum);
1011   return false;
1012 }
1013
1014 bool ARMAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
1015                                           unsigned OpNum, unsigned AsmVariant,
1016                                           const char *ExtraCode) {
1017   if (ExtraCode && ExtraCode[0])
1018     return true; // Unknown modifier.
1019   printAddrMode2Operand(MI, OpNum);
1020   return false;
1021 }
1022
1023 void ARMAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
1024   ++EmittedInsts;
1025
1026   int Opc = MI->getOpcode();
1027   switch (Opc) {
1028   case ARM::CONSTPOOL_ENTRY:
1029     if (!InCPMode && AFI->isThumbFunction()) {
1030       EmitAlignment(2);
1031       InCPMode = true;
1032     }
1033     break;
1034   default: {
1035     if (InCPMode && AFI->isThumbFunction())
1036       InCPMode = false;
1037   }}
1038
1039   // Call the autogenerated instruction printer routines.
1040   processDebugLoc(MI->getDebugLoc());
1041   printInstruction(MI);
1042   if (VerboseAsm && !MI->getDebugLoc().isUnknown())
1043     EmitComments(*MI);
1044   O << '\n';
1045 }
1046
1047 bool ARMAsmPrinter::doInitialization(Module &M) {
1048
1049   bool Result = AsmPrinter::doInitialization(M);
1050   DW = getAnalysisIfAvailable<DwarfWriter>();
1051
1052   // Use unified assembler syntax mode for Thumb.
1053   if (Subtarget->isThumb())
1054     O << "\t.syntax unified\n";
1055
1056   // Emit ARM Build Attributes
1057   if (Subtarget->isTargetELF()) {
1058     // CPU Type
1059     std::string CPUString = Subtarget->getCPUString();
1060     if (CPUString != "generic")
1061       O << "\t.cpu " << CPUString << '\n';
1062
1063     // FIXME: Emit FPU type
1064     if (Subtarget->hasVFP2())
1065       O << "\t.eabi_attribute " << ARMBuildAttrs::VFP_arch << ", 2\n";
1066
1067     // Signal various FP modes.
1068     if (!UnsafeFPMath)
1069       O << "\t.eabi_attribute " << ARMBuildAttrs::ABI_FP_denormal << ", 1\n"
1070         << "\t.eabi_attribute " << ARMBuildAttrs::ABI_FP_exceptions << ", 1\n";
1071
1072     if (FiniteOnlyFPMath())
1073       O << "\t.eabi_attribute " << ARMBuildAttrs::ABI_FP_number_model << ", 1\n";
1074     else
1075       O << "\t.eabi_attribute " << ARMBuildAttrs::ABI_FP_number_model << ", 3\n";
1076
1077     // 8-bytes alignment stuff.
1078     O << "\t.eabi_attribute " << ARMBuildAttrs::ABI_align8_needed << ", 1\n"
1079       << "\t.eabi_attribute " << ARMBuildAttrs::ABI_align8_preserved << ", 1\n";
1080
1081     // Hard float.  Use both S and D registers and conform to AAPCS-VFP.
1082     if (Subtarget->isAAPCS_ABI() && FloatABIType == FloatABI::Hard)
1083       O << "\t.eabi_attribute " << ARMBuildAttrs::ABI_HardFP_use << ", 3\n"
1084         << "\t.eabi_attribute " << ARMBuildAttrs::ABI_VFP_args << ", 1\n";
1085
1086     // FIXME: Should we signal R9 usage?
1087   }
1088
1089   return Result;
1090 }
1091
1092 void ARMAsmPrinter::PrintGlobalVariable(const GlobalVariable* GVar) {
1093   const TargetData *TD = TM.getTargetData();
1094
1095   if (!GVar->hasInitializer())   // External global require no code
1096     return;
1097
1098   // Check to see if this is a special global used by LLVM, if so, emit it.
1099
1100   if (EmitSpecialLLVMGlobal(GVar)) {
1101     if (Subtarget->isTargetDarwin() &&
1102         TM.getRelocationModel() == Reloc::Static) {
1103       if (GVar->getName() == "llvm.global_ctors")
1104         O << ".reference .constructors_used\n";
1105       else if (GVar->getName() == "llvm.global_dtors")
1106         O << ".reference .destructors_used\n";
1107     }
1108     return;
1109   }
1110
1111   std::string name = Mang->getMangledName(GVar);
1112   Constant *C = GVar->getInitializer();
1113   const Type *Type = C->getType();
1114   unsigned Size = TD->getTypeAllocSize(Type);
1115   unsigned Align = TD->getPreferredAlignmentLog(GVar);
1116   bool isDarwin = Subtarget->isTargetDarwin();
1117
1118   printVisibility(name, GVar->getVisibility());
1119
1120   if (Subtarget->isTargetELF())
1121     O << "\t.type " << name << ",%object\n";
1122
1123   const MCSection *TheSection =
1124     getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
1125   OutStreamer.SwitchSection(TheSection);
1126
1127   // FIXME: get this stuff from section kind flags.
1128   if (C->isNullValue() && !GVar->hasSection() && !GVar->isThreadLocal() &&
1129       // Don't put things that should go in the cstring section into "comm".
1130       !TheSection->getKind().isMergeableCString()) {
1131     if (GVar->hasExternalLinkage()) {
1132       if (const char *Directive = MAI->getZeroFillDirective()) {
1133         O << "\t.globl\t" << name << "\n";
1134         O << Directive << "__DATA, __common, " << name << ", "
1135           << Size << ", " << Align << "\n";
1136         return;
1137       }
1138     }
1139
1140     if (GVar->hasLocalLinkage() || GVar->isWeakForLinker()) {
1141       if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
1142
1143       if (isDarwin) {
1144         if (GVar->hasLocalLinkage()) {
1145           O << MAI->getLCOMMDirective()  << name << "," << Size
1146             << ',' << Align;
1147         } else if (GVar->hasCommonLinkage()) {
1148           O << MAI->getCOMMDirective()  << name << "," << Size
1149             << ',' << Align;
1150         } else {
1151           OutStreamer.SwitchSection(TheSection);
1152           O << "\t.globl " << name << '\n'
1153             << MAI->getWeakDefDirective() << name << '\n';
1154           EmitAlignment(Align, GVar);
1155           O << name << ":";
1156           if (VerboseAsm) {
1157             O << "\t\t\t\t" << MAI->getCommentString() << ' ';
1158             WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
1159           }
1160           O << '\n';
1161           EmitGlobalConstant(C);
1162           return;
1163         }
1164       } else if (MAI->getLCOMMDirective() != NULL) {
1165         if (GVar->hasLocalLinkage()) {
1166           O << MAI->getLCOMMDirective() << name << "," << Size;
1167         } else {
1168           O << MAI->getCOMMDirective()  << name << "," << Size;
1169           if (MAI->getCOMMDirectiveTakesAlignment())
1170             O << ',' << (MAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
1171         }
1172       } else {
1173         if (GVar->hasLocalLinkage())
1174           O << "\t.local\t" << name << "\n";
1175         O << MAI->getCOMMDirective()  << name << "," << Size;
1176         if (MAI->getCOMMDirectiveTakesAlignment())
1177           O << "," << (MAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
1178       }
1179       if (VerboseAsm) {
1180         O << "\t\t" << MAI->getCommentString() << " ";
1181         WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
1182       }
1183       O << "\n";
1184       return;
1185     }
1186   }
1187
1188   switch (GVar->getLinkage()) {
1189   case GlobalValue::CommonLinkage:
1190   case GlobalValue::LinkOnceAnyLinkage:
1191   case GlobalValue::LinkOnceODRLinkage:
1192   case GlobalValue::WeakAnyLinkage:
1193   case GlobalValue::WeakODRLinkage:
1194   case GlobalValue::LinkerPrivateLinkage:
1195     if (isDarwin) {
1196       O << "\t.globl " << name << "\n"
1197         << "\t.weak_definition " << name << "\n";
1198     } else {
1199       O << "\t.weak " << name << "\n";
1200     }
1201     break;
1202   case GlobalValue::AppendingLinkage:
1203   // FIXME: appending linkage variables should go into a section of
1204   // their name or something.  For now, just emit them as external.
1205   case GlobalValue::ExternalLinkage:
1206     O << "\t.globl " << name << "\n";
1207     break;
1208   case GlobalValue::PrivateLinkage:
1209   case GlobalValue::InternalLinkage:
1210     break;
1211   default:
1212     llvm_unreachable("Unknown linkage type!");
1213   }
1214
1215   EmitAlignment(Align, GVar);
1216   O << name << ":";
1217   if (VerboseAsm) {
1218     O << "\t\t\t\t" << MAI->getCommentString() << " ";
1219     WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
1220   }
1221   O << "\n";
1222   if (MAI->hasDotTypeDotSizeDirective())
1223     O << "\t.size " << name << ", " << Size << "\n";
1224
1225   EmitGlobalConstant(C);
1226   O << '\n';
1227 }
1228
1229
1230 bool ARMAsmPrinter::doFinalization(Module &M) {
1231   if (Subtarget->isTargetDarwin()) {
1232     // All darwin targets use mach-o.
1233     TargetLoweringObjectFileMachO &TLOFMacho =
1234       static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1235
1236     O << '\n';
1237
1238     // Output non-lazy-pointers for external and common global variables.
1239     if (!GVNonLazyPtrs.empty()) {
1240       // Switch with ".non_lazy_symbol_pointer" directive.
1241       OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
1242       EmitAlignment(2);
1243       for (StringMap<std::string>::iterator I = GVNonLazyPtrs.begin(),
1244            E = GVNonLazyPtrs.end(); I != E; ++I) {
1245         O << I->second << ":\n";
1246         O << "\t.indirect_symbol " << I->getKeyData() << "\n";
1247         O << "\t.long\t0\n";
1248       }
1249     }
1250
1251     if (!HiddenGVNonLazyPtrs.empty()) {
1252       OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
1253       EmitAlignment(2);
1254       for (StringMap<std::string>::iterator I = HiddenGVNonLazyPtrs.begin(),
1255              E = HiddenGVNonLazyPtrs.end(); I != E; ++I) {
1256         O << I->second << ":\n";
1257         O << "\t.long " << I->getKeyData() << "\n";
1258       }
1259     }
1260
1261     // Funny Darwin hack: This flag tells the linker that no global symbols
1262     // contain code that falls through to other global symbols (e.g. the obvious
1263     // implementation of multiple entry points).  If this doesn't occur, the
1264     // linker can safely perform dead code stripping.  Since LLVM never
1265     // generates code that does this, it is always safe to set.
1266     O << "\t.subsections_via_symbols\n";
1267   }
1268
1269   return AsmPrinter::doFinalization(M);
1270 }
1271
1272 // Force static initialization.
1273 extern "C" void LLVMInitializeARMAsmPrinter() {
1274   RegisterAsmPrinter<ARMAsmPrinter> X(TheARMTarget);
1275   RegisterAsmPrinter<ARMAsmPrinter> Y(TheThumbTarget);
1276 }