63d5f9218209cf290bed318452f08b520e74db98
[oota-llvm.git] / lib / CodeGen / AsmPrinter.cpp
1 //===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the AsmPrinter class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/AsmPrinter.h"
15 #include "llvm/Assembly/Writer.h"
16 #include "llvm/DerivedTypes.h"
17 #include "llvm/Constants.h"
18 #include "llvm/Module.h"
19 #include "llvm/CodeGen/MachineConstantPool.h"
20 #include "llvm/CodeGen/MachineJumpTableInfo.h"
21 #include "llvm/Support/Mangler.h"
22 #include "llvm/Support/MathExtras.h"
23 #include "llvm/Target/TargetAsmInfo.h"
24 #include "llvm/Target/TargetData.h"
25 #include "llvm/Target/TargetMachine.h"
26 #include <iostream>
27 #include <cerrno>
28 using namespace llvm;
29
30 AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm,
31                        const TargetAsmInfo *T)
32 : FunctionNumber(0), O(o), TM(tm), TAI(T)
33 {}
34
35 std::string AsmPrinter::getSectionForFunction(const Function &F) const {
36   return TAI->getTextSection();
37 }
38
39
40 /// SwitchToTextSection - Switch to the specified text section of the executable
41 /// if we are not already in it!
42 ///
43 void AsmPrinter::SwitchToTextSection(const char *NewSection,
44                                      const GlobalValue *GV) {
45   std::string NS;
46   if (GV && GV->hasSection())
47     NS = TAI->getSwitchToSectionDirective() + GV->getSection();
48   else
49     NS = NewSection;
50   
51   // If we're already in this section, we're done.
52   if (CurrentSection == NS) return;
53
54   // Close the current section, if applicable.
55   if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
56     O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
57
58   CurrentSection = NS;
59
60   if (!CurrentSection.empty())
61     O << CurrentSection << TAI->getTextSectionStartSuffix() << '\n';
62 }
63
64 /// SwitchToDataSection - Switch to the specified data section of the executable
65 /// if we are not already in it!
66 ///
67 void AsmPrinter::SwitchToDataSection(const char *NewSection,
68                                      const GlobalValue *GV) {
69   std::string NS;
70   if (GV && GV->hasSection())
71     NS = TAI->getSwitchToSectionDirective() + GV->getSection();
72   else
73     NS = NewSection;
74   
75   // If we're already in this section, we're done.
76   if (CurrentSection == NS) return;
77
78   // Close the current section, if applicable.
79   if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
80     O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
81
82   CurrentSection = NS;
83   
84   if (!CurrentSection.empty())
85     O << CurrentSection << TAI->getDataSectionStartSuffix() << '\n';
86 }
87
88
89 bool AsmPrinter::doInitialization(Module &M) {
90   Mang = new Mangler(M, TAI->getGlobalPrefix());
91   
92   if (!M.getModuleInlineAsm().empty())
93     O << TAI->getCommentString() << " Start of file scope inline assembly\n"
94       << M.getModuleInlineAsm()
95       << "\n" << TAI->getCommentString()
96       << " End of file scope inline assembly\n";
97
98   SwitchToDataSection("", 0);   // Reset back to no section.
99   
100   if (MachineDebugInfo *DebugInfo = getAnalysisToUpdate<MachineDebugInfo>()) {
101     DebugInfo->AnalyzeModule(M);
102   }
103   
104   return false;
105 }
106
107 bool AsmPrinter::doFinalization(Module &M) {
108   delete Mang; Mang = 0;
109   return false;
110 }
111
112 void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
113   // What's my mangled name?
114   CurrentFnName = Mang->getValueName(MF.getFunction());
115   IncrementFunctionNumber();
116 }
117
118 /// EmitConstantPool - Print to the current output stream assembly
119 /// representations of the constants in the constant pool MCP. This is
120 /// used to print out constants which have been "spilled to memory" by
121 /// the code generator.
122 ///
123 void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
124   const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
125   if (CP.empty()) return;
126
127   // Some targets require 4-, 8-, and 16- byte constant literals to be placed
128   // in special sections.
129   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > FourByteCPs;
130   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > EightByteCPs;
131   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > SixteenByteCPs;
132   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > OtherCPs;
133   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > TargetCPs;
134   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
135     MachineConstantPoolEntry CPE = CP[i];
136     const Type *Ty = CPE.getType();
137     if (TAI->getFourByteConstantSection() &&
138         TM.getTargetData()->getTypeSize(Ty) == 4)
139       FourByteCPs.push_back(std::make_pair(CPE, i));
140     else if (TAI->getEightByteConstantSection() &&
141              TM.getTargetData()->getTypeSize(Ty) == 8)
142       EightByteCPs.push_back(std::make_pair(CPE, i));
143     else if (TAI->getSixteenByteConstantSection() &&
144              TM.getTargetData()->getTypeSize(Ty) == 16)
145       SixteenByteCPs.push_back(std::make_pair(CPE, i));
146     else
147       OtherCPs.push_back(std::make_pair(CPE, i));
148   }
149
150   unsigned Alignment = MCP->getConstantPoolAlignment();
151   EmitConstantPool(Alignment, TAI->getFourByteConstantSection(), FourByteCPs);
152   EmitConstantPool(Alignment, TAI->getEightByteConstantSection(), EightByteCPs);
153   EmitConstantPool(Alignment, TAI->getSixteenByteConstantSection(),
154                    SixteenByteCPs);
155   EmitConstantPool(Alignment, TAI->getConstantPoolSection(), OtherCPs);
156 }
157
158 void AsmPrinter::EmitConstantPool(unsigned Alignment, const char *Section,
159                std::vector<std::pair<MachineConstantPoolEntry,unsigned> > &CP) {
160   if (CP.empty()) return;
161
162   SwitchToDataSection(Section, 0);
163   EmitAlignment(Alignment);
164   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
165     O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
166       << CP[i].second << ":\t\t\t\t\t" << TAI->getCommentString() << " ";
167     WriteTypeSymbolic(O, CP[i].first.getType(), 0) << '\n';
168     if (CP[i].first.isMachineConstantPoolEntry())
169       EmitMachineConstantPoolValue(CP[i].first.Val.MachineCPVal);
170      else
171       EmitGlobalConstant(CP[i].first.Val.ConstVal);
172     if (i != e-1) {
173       const Type *Ty = CP[i].first.getType();
174       unsigned EntSize =
175         TM.getTargetData()->getTypeSize(Ty);
176       unsigned ValEnd = CP[i].first.getOffset() + EntSize;
177       // Emit inter-object padding for alignment.
178       EmitZeros(CP[i+1].first.getOffset()-ValEnd);
179     }
180   }
181 }
182
183 /// EmitJumpTableInfo - Print assembly representations of the jump tables used
184 /// by the current function to the current output stream.  
185 ///
186 void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
187                                    MachineFunction &MF) {
188   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
189   if (JT.empty()) return;
190   const TargetData *TD = TM.getTargetData();
191   
192   // JTEntryDirective is a string to print sizeof(ptr) for non-PIC jump tables,
193   // and 32 bits for PIC since PIC jump table entries are differences, not
194   // pointers to blocks.
195   // Use the architecture specific relocation directive, if it is set
196   const char *JTEntryDirective = TAI->getJumpTableDirective();
197   if (!JTEntryDirective)
198     JTEntryDirective = TAI->getData32bitsDirective();
199   
200   // Pick the directive to use to print the jump table entries, and switch to 
201   // the appropriate section.
202   if (TM.getRelocationModel() == Reloc::PIC_) {
203     SwitchToTextSection(TAI->getJumpTableTextSection(), 0);
204   } else {
205     SwitchToDataSection(TAI->getJumpTableDataSection(), 0);
206     if (TD->getPointerSize() == 8)
207       JTEntryDirective = TAI->getData64bitsDirective();
208   }
209   EmitAlignment(Log2_32(TD->getPointerAlignment()));
210   
211   for (unsigned i = 0, e = JT.size(); i != e; ++i) {
212     const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
213
214     // For PIC codegen, if possible we want to use the SetDirective to reduce
215     // the number of relocations the assembler will generate for the jump table.
216     // Set directives are all printed before the jump table itself.
217     std::set<MachineBasicBlock*> EmittedSets;
218     if (TAI->getSetDirective() && TM.getRelocationModel() == Reloc::PIC_)
219       for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
220         if (EmittedSets.insert(JTBBs[ii]).second)
221           printSetLabel(i, JTBBs[ii]);
222     
223     O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
224       << '_' << i << ":\n";
225     
226     for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
227       O << JTEntryDirective << ' ';
228       // If we have emitted set directives for the jump table entries, print 
229       // them rather than the entries themselves.  If we're emitting PIC, then
230       // emit the table entries as differences between two text section labels.
231       // If we're emitting non-PIC code, then emit the entries as direct
232       // references to the target basic blocks.
233       if (!EmittedSets.empty()) {
234         O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
235           << '_' << i << "_set_" << JTBBs[ii]->getNumber();
236       } else if (TM.getRelocationModel() == Reloc::PIC_) {
237         printBasicBlockLabel(JTBBs[ii], false, false);
238         //If the arch uses custom Jump Table directives, don't calc relative to JT
239         if (!TAI->getJumpTableDirective()) 
240           O << '-' << TAI->getPrivateGlobalPrefix() << "JTI"
241             << getFunctionNumber() << '_' << i;
242       } else {
243         printBasicBlockLabel(JTBBs[ii], false, false);
244       }
245       O << '\n';
246     }
247   }
248 }
249
250 /// EmitSpecialLLVMGlobal - Check to see if the specified global is a
251 /// special global used by LLVM.  If so, emit it and return true, otherwise
252 /// do nothing and return false.
253 bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
254   // Ignore debug and non-emitted data.
255   if (GV->getSection() == "llvm.metadata") return true;
256   
257   if (!GV->hasAppendingLinkage()) return false;
258
259   assert(GV->hasInitializer() && "Not a special LLVM global!");
260   
261   if (GV->getName() == "llvm.used") {
262     if (TAI->getUsedDirective() != 0)    // No need to emit this at all.
263       EmitLLVMUsedList(GV->getInitializer());
264     return true;
265   }
266
267   if (GV->getName() == "llvm.global_ctors" && GV->use_empty()) {
268     SwitchToDataSection(TAI->getStaticCtorsSection(), 0);
269     EmitAlignment(2, 0);
270     EmitXXStructorList(GV->getInitializer());
271     return true;
272   } 
273   
274   if (GV->getName() == "llvm.global_dtors" && GV->use_empty()) {
275     SwitchToDataSection(TAI->getStaticDtorsSection(), 0);
276     EmitAlignment(2, 0);
277     EmitXXStructorList(GV->getInitializer());
278     return true;
279   }
280   
281   return false;
282 }
283
284 /// EmitLLVMUsedList - For targets that define a TAI::UsedDirective, mark each
285 /// global in the specified llvm.used list as being used with this directive.
286 void AsmPrinter::EmitLLVMUsedList(Constant *List) {
287   const char *Directive = TAI->getUsedDirective();
288
289   // Should be an array of 'sbyte*'.
290   ConstantArray *InitList = dyn_cast<ConstantArray>(List);
291   if (InitList == 0) return;
292   
293   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
294     O << Directive;
295     EmitConstantValueOnly(InitList->getOperand(i));
296     O << "\n";
297   }
298 }
299
300 /// EmitXXStructorList - Emit the ctor or dtor list.  This just prints out the 
301 /// function pointers, ignoring the init priority.
302 void AsmPrinter::EmitXXStructorList(Constant *List) {
303   // Should be an array of '{ int, void ()* }' structs.  The first value is the
304   // init priority, which we ignore.
305   if (!isa<ConstantArray>(List)) return;
306   ConstantArray *InitList = cast<ConstantArray>(List);
307   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
308     if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
309       if (CS->getNumOperands() != 2) return;  // Not array of 2-element structs.
310
311       if (CS->getOperand(1)->isNullValue())
312         return;  // Found a null terminator, exit printing.
313       // Emit the function pointer.
314       EmitGlobalConstant(CS->getOperand(1));
315     }
316 }
317
318 /// getPreferredAlignmentLog - Return the preferred alignment of the
319 /// specified global, returned in log form.  This includes an explicitly
320 /// requested alignment (if the global has one).
321 unsigned AsmPrinter::getPreferredAlignmentLog(const GlobalVariable *GV) const {
322   const Type *ElemType = GV->getType()->getElementType();
323   unsigned Alignment = TM.getTargetData()->getTypeAlignmentShift(ElemType);
324   if (GV->getAlignment() > (1U << Alignment))
325     Alignment = Log2_32(GV->getAlignment());
326   
327   if (GV->hasInitializer()) {
328     // Always round up alignment of global doubles to 8 bytes.
329     if (GV->getType()->getElementType() == Type::DoubleTy && Alignment < 3)
330       Alignment = 3;
331     if (Alignment < 4) {
332       // If the global is not external, see if it is large.  If so, give it a
333       // larger alignment.
334       if (TM.getTargetData()->getTypeSize(ElemType) > 128)
335         Alignment = 4;    // 16-byte alignment.
336     }
337   }
338   return Alignment;
339 }
340
341 // EmitAlignment - Emit an alignment directive to the specified power of two.
342 void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
343   if (GV && GV->getAlignment())
344     NumBits = Log2_32(GV->getAlignment());
345   if (NumBits == 0) return;   // No need to emit alignment.
346   if (TAI->getAlignmentIsInBytes()) NumBits = 1 << NumBits;
347   O << TAI->getAlignDirective() << NumBits << "\n";
348 }
349
350 /// EmitZeros - Emit a block of zeros.
351 ///
352 void AsmPrinter::EmitZeros(uint64_t NumZeros) const {
353   if (NumZeros) {
354     if (TAI->getZeroDirective()) {
355       O << TAI->getZeroDirective() << NumZeros;
356       if (TAI->getZeroDirectiveSuffix())
357         O << TAI->getZeroDirectiveSuffix();
358       O << "\n";
359     } else {
360       for (; NumZeros; --NumZeros)
361         O << TAI->getData8bitsDirective() << "0\n";
362     }
363   }
364 }
365
366 // Print out the specified constant, without a storage class.  Only the
367 // constants valid in constant expressions can occur here.
368 void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
369   if (CV->isNullValue() || isa<UndefValue>(CV))
370     O << "0";
371   else if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
372     assert(CB->getValue());
373     O << "1";
374   } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
375     if (((CI->getValue() << 32) >> 32) == CI->getValue())
376       O << CI->getValue();
377     else
378       O << (uint64_t)CI->getValue();
379   else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
380     O << CI->getValue();
381   else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
382     // This is a constant address for a global variable or function. Use the
383     // name of the variable or function as the address value, possibly
384     // decorating it with GlobalVarAddrPrefix/Suffix or
385     // FunctionAddrPrefix/Suffix (these all default to "" )
386     if (isa<Function>(GV)) {
387       O << TAI->getFunctionAddrPrefix()
388         << Mang->getValueName(GV)
389         << TAI->getFunctionAddrSuffix();
390     } else {
391       O << TAI->getGlobalVarAddrPrefix()
392         << Mang->getValueName(GV)
393         << TAI->getGlobalVarAddrSuffix();
394     }
395   } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
396     const TargetData *TD = TM.getTargetData();
397     switch(CE->getOpcode()) {
398     case Instruction::GetElementPtr: {
399       // generate a symbolic expression for the byte address
400       const Constant *ptrVal = CE->getOperand(0);
401       std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
402       if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), idxVec)) {
403         if (Offset)
404           O << "(";
405         EmitConstantValueOnly(ptrVal);
406         if (Offset > 0)
407           O << ") + " << Offset;
408         else if (Offset < 0)
409           O << ") - " << -Offset;
410       } else {
411         EmitConstantValueOnly(ptrVal);
412       }
413       break;
414     }
415     case Instruction::Cast: {
416       // Support only foldable casts to/from pointers that can be eliminated by
417       // changing the pointer to the appropriately sized integer type.
418       Constant *Op = CE->getOperand(0);
419       const Type *OpTy = Op->getType(), *Ty = CE->getType();
420
421       // Handle casts to pointers by changing them into casts to the appropriate
422       // integer type.  This promotes constant folding and simplifies this code.
423       if (isa<PointerType>(Ty)) {
424         const Type *IntPtrTy = TD->getIntPtrType();
425         Op = ConstantExpr::getCast(Op, IntPtrTy);
426         return EmitConstantValueOnly(Op);
427       }
428       
429       // We know the dest type is not a pointer.  Is the src value a pointer or
430       // integral?
431       if (isa<PointerType>(OpTy) || OpTy->isIntegral()) {
432         // We can emit the pointer value into this slot if the slot is an
433         // integer slot greater or equal to the size of the pointer.
434         if (Ty->isIntegral() && TD->getTypeSize(Ty) >= TD->getTypeSize(OpTy))
435           return EmitConstantValueOnly(Op);
436       }
437       
438       assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
439       EmitConstantValueOnly(Op);
440       break;
441     }
442     case Instruction::Add:
443       O << "(";
444       EmitConstantValueOnly(CE->getOperand(0));
445       O << ") + (";
446       EmitConstantValueOnly(CE->getOperand(1));
447       O << ")";
448       break;
449     default:
450       assert(0 && "Unsupported operator!");
451     }
452   } else {
453     assert(0 && "Unknown constant value!");
454   }
455 }
456
457 /// toOctal - Convert the low order bits of X into an octal digit.
458 ///
459 static inline char toOctal(int X) {
460   return (X&7)+'0';
461 }
462
463 /// printAsCString - Print the specified array as a C compatible string, only if
464 /// the predicate isString is true.
465 ///
466 static void printAsCString(std::ostream &O, const ConstantArray *CVA,
467                            unsigned LastElt) {
468   assert(CVA->isString() && "Array is not string compatible!");
469
470   O << "\"";
471   for (unsigned i = 0; i != LastElt; ++i) {
472     unsigned char C =
473         (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
474
475     if (C == '"') {
476       O << "\\\"";
477     } else if (C == '\\') {
478       O << "\\\\";
479     } else if (isprint(C)) {
480       O << C;
481     } else {
482       switch(C) {
483       case '\b': O << "\\b"; break;
484       case '\f': O << "\\f"; break;
485       case '\n': O << "\\n"; break;
486       case '\r': O << "\\r"; break;
487       case '\t': O << "\\t"; break;
488       default:
489         O << '\\';
490         O << toOctal(C >> 6);
491         O << toOctal(C >> 3);
492         O << toOctal(C >> 0);
493         break;
494       }
495     }
496   }
497   O << "\"";
498 }
499
500 /// EmitString - Emit a zero-byte-terminated string constant.
501 ///
502 void AsmPrinter::EmitString(const ConstantArray *CVA) const {
503   unsigned NumElts = CVA->getNumOperands();
504   if (TAI->getAscizDirective() && NumElts && 
505       cast<ConstantInt>(CVA->getOperand(NumElts-1))->getRawValue() == 0) {
506     O << TAI->getAscizDirective();
507     printAsCString(O, CVA, NumElts-1);
508   } else {
509     O << TAI->getAsciiDirective();
510     printAsCString(O, CVA, NumElts);
511   }
512   O << "\n";
513 }
514
515 /// EmitGlobalConstant - Print a general LLVM constant to the .s file.
516 ///
517 void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
518   const TargetData *TD = TM.getTargetData();
519
520   if (CV->isNullValue() || isa<UndefValue>(CV)) {
521     EmitZeros(TD->getTypeSize(CV->getType()));
522     return;
523   } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
524     if (CVA->isString()) {
525       EmitString(CVA);
526     } else { // Not a string.  Print the values in successive locations
527       for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
528         EmitGlobalConstant(CVA->getOperand(i));
529     }
530     return;
531   } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
532     // Print the fields in successive locations. Pad to align if needed!
533     const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
534     uint64_t sizeSoFar = 0;
535     for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
536       const Constant* field = CVS->getOperand(i);
537
538       // Check if padding is needed and insert one or more 0s.
539       uint64_t fieldSize = TD->getTypeSize(field->getType());
540       uint64_t padSize = ((i == e-1? cvsLayout->StructSize
541                            : cvsLayout->MemberOffsets[i+1])
542                           - cvsLayout->MemberOffsets[i]) - fieldSize;
543       sizeSoFar += fieldSize + padSize;
544
545       // Now print the actual field value
546       EmitGlobalConstant(field);
547
548       // Insert the field padding unless it's zero bytes...
549       EmitZeros(padSize);
550     }
551     assert(sizeSoFar == cvsLayout->StructSize &&
552            "Layout of constant struct may be incorrect!");
553     return;
554   } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
555     // FP Constants are printed as integer constants to avoid losing
556     // precision...
557     double Val = CFP->getValue();
558     if (CFP->getType() == Type::DoubleTy) {
559       if (TAI->getData64bitsDirective())
560         O << TAI->getData64bitsDirective() << DoubleToBits(Val) << "\t"
561           << TAI->getCommentString() << " double value: " << Val << "\n";
562       else if (TD->isBigEndian()) {
563         O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val) >> 32)
564           << "\t" << TAI->getCommentString()
565           << " double most significant word " << Val << "\n";
566         O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val))
567           << "\t" << TAI->getCommentString()
568           << " double least significant word " << Val << "\n";
569       } else {
570         O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val))
571           << "\t" << TAI->getCommentString()
572           << " double least significant word " << Val << "\n";
573         O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val) >> 32)
574           << "\t" << TAI->getCommentString()
575           << " double most significant word " << Val << "\n";
576       }
577       return;
578     } else {
579       O << TAI->getData32bitsDirective() << FloatToBits(Val)
580         << "\t" << TAI->getCommentString() << " float " << Val << "\n";
581       return;
582     }
583   } else if (CV->getType() == Type::ULongTy || CV->getType() == Type::LongTy) {
584     if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
585       uint64_t Val = CI->getRawValue();
586
587       if (TAI->getData64bitsDirective())
588         O << TAI->getData64bitsDirective() << Val << "\n";
589       else if (TD->isBigEndian()) {
590         O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
591           << "\t" << TAI->getCommentString()
592           << " Double-word most significant word " << Val << "\n";
593         O << TAI->getData32bitsDirective() << unsigned(Val)
594           << "\t" << TAI->getCommentString()
595           << " Double-word least significant word " << Val << "\n";
596       } else {
597         O << TAI->getData32bitsDirective() << unsigned(Val)
598           << "\t" << TAI->getCommentString()
599           << " Double-word least significant word " << Val << "\n";
600         O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
601           << "\t" << TAI->getCommentString()
602           << " Double-word most significant word " << Val << "\n";
603       }
604       return;
605     }
606   } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
607     const PackedType *PTy = CP->getType();
608     
609     for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
610       EmitGlobalConstant(CP->getOperand(I));
611     
612     return;
613   }
614
615   const Type *type = CV->getType();
616   printDataDirective(type);
617   EmitConstantValueOnly(CV);
618   O << "\n";
619 }
620
621 void
622 AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
623   // Target doesn't support this yet!
624   abort();
625 }
626
627 /// PrintSpecial - Print information related to the specified machine instr
628 /// that is independent of the operand, and may be independent of the instr
629 /// itself.  This can be useful for portably encoding the comment character
630 /// or other bits of target-specific knowledge into the asmstrings.  The
631 /// syntax used is ${:comment}.  Targets can override this to add support
632 /// for their own strange codes.
633 void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) {
634   if (!strcmp(Code, "private")) {
635     O << TAI->getPrivateGlobalPrefix();
636   } else if (!strcmp(Code, "comment")) {
637     O << TAI->getCommentString();
638   } else if (!strcmp(Code, "uid")) {
639     // Assign a unique ID to this machine instruction.
640     static const MachineInstr *LastMI = 0;
641     static unsigned Counter = 0U-1;
642     // If this is a new machine instruction, bump the counter.
643     if (LastMI != MI) { ++Counter; LastMI = MI; }
644     O << Counter;
645   } else {
646     std::cerr << "Unknown special formatter '" << Code
647               << "' for machine instr: " << *MI;
648     exit(1);
649   }    
650 }
651
652
653 /// printInlineAsm - This method formats and prints the specified machine
654 /// instruction that is an inline asm.
655 void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
656   unsigned NumOperands = MI->getNumOperands();
657   
658   // Count the number of register definitions.
659   unsigned NumDefs = 0;
660   for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
661        ++NumDefs)
662     assert(NumDefs != NumOperands-1 && "No asm string?");
663   
664   assert(MI->getOperand(NumDefs).isExternalSymbol() && "No asm string?");
665
666   // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
667   const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
668
669   // If this asmstr is empty, don't bother printing the #APP/#NOAPP markers.
670   if (AsmStr[0] == 0) {
671     O << "\n";  // Tab already printed, avoid double indenting next instr.
672     return;
673   }
674   
675   O << TAI->getInlineAsmStart() << "\n\t";
676
677   // The variant of the current asmprinter: FIXME: change.
678   int AsmPrinterVariant = 0;
679   
680   int CurVariant = -1;            // The number of the {.|.|.} region we are in.
681   const char *LastEmitted = AsmStr; // One past the last character emitted.
682   
683   while (*LastEmitted) {
684     switch (*LastEmitted) {
685     default: {
686       // Not a special case, emit the string section literally.
687       const char *LiteralEnd = LastEmitted+1;
688       while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
689              *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
690         ++LiteralEnd;
691       if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
692         O.write(LastEmitted, LiteralEnd-LastEmitted);
693       LastEmitted = LiteralEnd;
694       break;
695     }
696     case '\n':
697       ++LastEmitted;   // Consume newline character.
698       O << "\n\t";     // Indent code with newline.
699       break;
700     case '$': {
701       ++LastEmitted;   // Consume '$' character.
702       bool Done = true;
703
704       // Handle escapes.
705       switch (*LastEmitted) {
706       default: Done = false; break;
707       case '$':     // $$ -> $
708         if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
709           O << '$';
710         ++LastEmitted;  // Consume second '$' character.
711         break;
712       case '(':             // $( -> same as GCC's { character.
713         ++LastEmitted;      // Consume '(' character.
714         if (CurVariant != -1) {
715           std::cerr << "Nested variants found in inline asm string: '"
716           << AsmStr << "'\n";
717           exit(1);
718         }
719         CurVariant = 0;     // We're in the first variant now.
720         break;
721       case '|':
722         ++LastEmitted;  // consume '|' character.
723         if (CurVariant == -1) {
724           std::cerr << "Found '|' character outside of variant in inline asm "
725           << "string: '" << AsmStr << "'\n";
726           exit(1);
727         }
728         ++CurVariant;   // We're in the next variant.
729         break;
730       case ')':         // $) -> same as GCC's } char.
731         ++LastEmitted;  // consume ')' character.
732         if (CurVariant == -1) {
733           std::cerr << "Found '}' character outside of variant in inline asm "
734                     << "string: '" << AsmStr << "'\n";
735           exit(1);
736         }
737         CurVariant = -1;
738         break;
739       }
740       if (Done) break;
741       
742       bool HasCurlyBraces = false;
743       if (*LastEmitted == '{') {     // ${variable}
744         ++LastEmitted;               // Consume '{' character.
745         HasCurlyBraces = true;
746       }
747       
748       const char *IDStart = LastEmitted;
749       char *IDEnd;
750       long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
751       if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
752         std::cerr << "Bad $ operand number in inline asm string: '" 
753                   << AsmStr << "'\n";
754         exit(1);
755       }
756       LastEmitted = IDEnd;
757       
758       char Modifier[2] = { 0, 0 };
759       
760       if (HasCurlyBraces) {
761         // If we have curly braces, check for a modifier character.  This
762         // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
763         if (*LastEmitted == ':') {
764           ++LastEmitted;    // Consume ':' character.
765           if (*LastEmitted == 0) {
766             std::cerr << "Bad ${:} expression in inline asm string: '" 
767                       << AsmStr << "'\n";
768             exit(1);
769           }
770           
771           Modifier[0] = *LastEmitted;
772           ++LastEmitted;    // Consume modifier character.
773         }
774         
775         if (*LastEmitted != '}') {
776           std::cerr << "Bad ${} expression in inline asm string: '" 
777                     << AsmStr << "'\n";
778           exit(1);
779         }
780         ++LastEmitted;    // Consume '}' character.
781       }
782       
783       if ((unsigned)Val >= NumOperands-1) {
784         std::cerr << "Invalid $ operand number in inline asm string: '" 
785                   << AsmStr << "'\n";
786         exit(1);
787       }
788       
789       // Okay, we finally have a value number.  Ask the target to print this
790       // operand!
791       if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
792         unsigned OpNo = 1;
793
794         bool Error = false;
795
796         // Scan to find the machine operand number for the operand.
797         for (; Val; --Val) {
798           if (OpNo >= MI->getNumOperands()) break;
799           unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
800           OpNo += (OpFlags >> 3) + 1;
801         }
802
803         if (OpNo >= MI->getNumOperands()) {
804           Error = true;
805         } else {
806           unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
807           ++OpNo;  // Skip over the ID number.
808
809           AsmPrinter *AP = const_cast<AsmPrinter*>(this);
810           if ((OpFlags & 7) == 4 /*ADDR MODE*/) {
811             Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
812                                               Modifier[0] ? Modifier : 0);
813           } else {
814             Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
815                                         Modifier[0] ? Modifier : 0);
816           }
817         }
818         if (Error) {
819           std::cerr << "Invalid operand found in inline asm: '"
820                     << AsmStr << "'\n";
821           MI->dump();
822           exit(1);
823         }
824       }
825       break;
826     }
827     }
828   }
829   O << "\n\t" << TAI->getInlineAsmEnd() << "\n";
830 }
831
832 /// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
833 /// instruction, using the specified assembler variant.  Targets should
834 /// overried this to format as appropriate.
835 bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
836                                  unsigned AsmVariant, const char *ExtraCode) {
837   // Target doesn't support this yet!
838   return true;
839 }
840
841 bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
842                                        unsigned AsmVariant,
843                                        const char *ExtraCode) {
844   // Target doesn't support this yet!
845   return true;
846 }
847
848 /// printBasicBlockLabel - This method prints the label for the specified
849 /// MachineBasicBlock
850 void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
851                                       bool printColon,
852                                       bool printComment) const {
853   O << TAI->getPrivateGlobalPrefix() << "BB" << FunctionNumber << "_"
854     << MBB->getNumber();
855   if (printColon)
856     O << ':';
857   if (printComment)
858     O << '\t' << TAI->getCommentString() << MBB->getBasicBlock()->getName();
859 }
860
861 /// printSetLabel - This method prints a set label for the specified
862 /// MachineBasicBlock
863 void AsmPrinter::printSetLabel(unsigned uid, 
864                                const MachineBasicBlock *MBB) const {
865   if (!TAI->getSetDirective())
866     return;
867   
868   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
869     << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
870   printBasicBlockLabel(MBB, false, false);
871   O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
872     << '_' << uid << '\n';
873 }
874
875 /// printDataDirective - This method prints the asm directive for the
876 /// specified type.
877 void AsmPrinter::printDataDirective(const Type *type) {
878   const TargetData *TD = TM.getTargetData();
879   switch (type->getTypeID()) {
880   case Type::BoolTyID:
881   case Type::UByteTyID: case Type::SByteTyID:
882     O << TAI->getData8bitsDirective();
883     break;
884   case Type::UShortTyID: case Type::ShortTyID:
885     O << TAI->getData16bitsDirective();
886     break;
887   case Type::PointerTyID:
888     if (TD->getPointerSize() == 8) {
889       assert(TAI->getData64bitsDirective() &&
890              "Target cannot handle 64-bit pointer exprs!");
891       O << TAI->getData64bitsDirective();
892       break;
893     }
894     //Fall through for pointer size == int size
895   case Type::UIntTyID: case Type::IntTyID:
896     O << TAI->getData32bitsDirective();
897     break;
898   case Type::ULongTyID: case Type::LongTyID:
899     assert(TAI->getData64bitsDirective() &&
900            "Target cannot handle 64-bit constant exprs!");
901     O << TAI->getData64bitsDirective();
902     break;
903   case Type::FloatTyID: case Type::DoubleTyID:
904     assert (0 && "Should have already output floating point constant.");
905   default:
906     assert (0 && "Can't handle printing this type of thing");
907     break;
908   }
909 }