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