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