When the allocator rewrite a spill register with new virtual register, it replaces...
[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/CommandLine.h"
22 #include "llvm/Support/Mangler.h"
23 #include "llvm/Support/MathExtras.h"
24 #include "llvm/Support/Streams.h"
25 #include "llvm/Target/TargetAsmInfo.h"
26 #include "llvm/Target/TargetData.h"
27 #include "llvm/Target/TargetLowering.h"
28 #include "llvm/Target/TargetMachine.h"
29 #include <cerrno>
30 using namespace llvm;
31
32 static cl::opt<bool>
33 AsmVerbose("asm-verbose", cl::Hidden, cl::desc("Add comments to directives."));
34
35 char AsmPrinter::ID = 0;
36 AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm,
37                        const TargetAsmInfo *T)
38   : MachineFunctionPass((intptr_t)&ID), FunctionNumber(0), O(o), TM(tm), TAI(T)
39 {}
40
41 std::string AsmPrinter::getSectionForFunction(const Function &F) const {
42   return TAI->getTextSection();
43 }
44
45
46 /// SwitchToTextSection - Switch to the specified text section of the executable
47 /// if we are not already in it!
48 ///
49 void AsmPrinter::SwitchToTextSection(const char *NewSection,
50                                      const GlobalValue *GV) {
51   std::string NS;
52   if (GV && GV->hasSection())
53     NS = TAI->getSwitchToSectionDirective() + GV->getSection();
54   else
55     NS = NewSection;
56   
57   // If we're already in this section, we're done.
58   if (CurrentSection == NS) return;
59
60   // Close the current section, if applicable.
61   if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
62     O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
63
64   CurrentSection = NS;
65
66   if (!CurrentSection.empty())
67     O << CurrentSection << TAI->getTextSectionStartSuffix() << '\n';
68 }
69
70 /// SwitchToDataSection - Switch to the specified data section of the executable
71 /// if we are not already in it!
72 ///
73 void AsmPrinter::SwitchToDataSection(const char *NewSection,
74                                      const GlobalValue *GV) {
75   std::string NS;
76   if (GV && GV->hasSection())
77     NS = TAI->getSwitchToSectionDirective() + GV->getSection();
78   else
79     NS = NewSection;
80   
81   // If we're already in this section, we're done.
82   if (CurrentSection == NS) return;
83
84   // Close the current section, if applicable.
85   if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
86     O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
87
88   CurrentSection = NS;
89   
90   if (!CurrentSection.empty())
91     O << CurrentSection << TAI->getDataSectionStartSuffix() << '\n';
92 }
93
94
95 bool AsmPrinter::doInitialization(Module &M) {
96   Mang = new Mangler(M, TAI->getGlobalPrefix());
97   
98   if (!M.getModuleInlineAsm().empty())
99     O << TAI->getCommentString() << " Start of file scope inline assembly\n"
100       << M.getModuleInlineAsm()
101       << "\n" << TAI->getCommentString()
102       << " End of file scope inline assembly\n";
103
104   SwitchToDataSection("");   // Reset back to no section.
105   
106   if (MachineModuleInfo *MMI = getAnalysisToUpdate<MachineModuleInfo>()) {
107     MMI->AnalyzeModule(M);
108   }
109   
110   return false;
111 }
112
113 bool AsmPrinter::doFinalization(Module &M) {
114   if (TAI->getWeakRefDirective()) {
115     if (!ExtWeakSymbols.empty())
116       SwitchToDataSection("");
117
118     for (std::set<const GlobalValue*>::iterator i = ExtWeakSymbols.begin(),
119          e = ExtWeakSymbols.end(); i != e; ++i) {
120       const GlobalValue *GV = *i;
121       std::string Name = Mang->getValueName(GV);
122       O << TAI->getWeakRefDirective() << Name << "\n";
123     }
124   }
125
126   if (TAI->getSetDirective()) {
127     if (!M.alias_empty())
128       SwitchToTextSection(TAI->getTextSection());
129
130     O << "\n";
131     for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
132          I!=E; ++I) {
133       std::string Name = Mang->getValueName(I);
134       std::string Target;
135
136       const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
137       Target = Mang->getValueName(GV);
138       
139       if (I->hasExternalLinkage() || !TAI->getWeakRefDirective())
140         O << "\t.globl\t" << Name << "\n";
141       else if (I->hasWeakLinkage())
142         O << TAI->getWeakRefDirective() << Name << "\n";
143       else if (!I->hasInternalLinkage())
144         assert(0 && "Invalid alias linkage");
145       
146       O << TAI->getSetDirective() << Name << ", " << Target << "\n";
147
148       // If the aliasee has external weak linkage it can be referenced only by
149       // alias itself. In this case it can be not in ExtWeakSymbols list. Emit
150       // weak reference in such case.
151       if (GV->hasExternalWeakLinkage())
152         if (TAI->getWeakRefDirective())
153           O << TAI->getWeakRefDirective() << Target << "\n";
154         else
155           O << "\t.globl\t" << Target << "\n";
156     }
157   }
158
159   delete Mang; Mang = 0;
160   return false;
161 }
162
163 std::string AsmPrinter::getCurrentFunctionEHName(const MachineFunction *MF) {
164   assert(MF && "No machine function?");
165   return Mang->makeNameProper(MF->getFunction()->getName() + ".eh",
166                               TAI->getGlobalPrefix());
167 }
168
169 void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
170   // What's my mangled name?
171   CurrentFnName = Mang->getValueName(MF.getFunction());
172   IncrementFunctionNumber();
173 }
174
175 /// EmitConstantPool - Print to the current output stream assembly
176 /// representations of the constants in the constant pool MCP. This is
177 /// used to print out constants which have been "spilled to memory" by
178 /// the code generator.
179 ///
180 void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
181   const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
182   if (CP.empty()) return;
183
184   // Some targets require 4-, 8-, and 16- byte constant literals to be placed
185   // in special sections.
186   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > FourByteCPs;
187   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > EightByteCPs;
188   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > SixteenByteCPs;
189   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > OtherCPs;
190   std::vector<std::pair<MachineConstantPoolEntry,unsigned> > TargetCPs;
191   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
192     MachineConstantPoolEntry CPE = CP[i];
193     const Type *Ty = CPE.getType();
194     if (TAI->getFourByteConstantSection() &&
195         TM.getTargetData()->getABITypeSize(Ty) == 4)
196       FourByteCPs.push_back(std::make_pair(CPE, i));
197     else if (TAI->getEightByteConstantSection() &&
198              TM.getTargetData()->getABITypeSize(Ty) == 8)
199       EightByteCPs.push_back(std::make_pair(CPE, i));
200     else if (TAI->getSixteenByteConstantSection() &&
201              TM.getTargetData()->getABITypeSize(Ty) == 16)
202       SixteenByteCPs.push_back(std::make_pair(CPE, i));
203     else
204       OtherCPs.push_back(std::make_pair(CPE, i));
205   }
206
207   unsigned Alignment = MCP->getConstantPoolAlignment();
208   EmitConstantPool(Alignment, TAI->getFourByteConstantSection(), FourByteCPs);
209   EmitConstantPool(Alignment, TAI->getEightByteConstantSection(), EightByteCPs);
210   EmitConstantPool(Alignment, TAI->getSixteenByteConstantSection(),
211                    SixteenByteCPs);
212   EmitConstantPool(Alignment, TAI->getConstantPoolSection(), OtherCPs);
213 }
214
215 void AsmPrinter::EmitConstantPool(unsigned Alignment, const char *Section,
216                std::vector<std::pair<MachineConstantPoolEntry,unsigned> > &CP) {
217   if (CP.empty()) return;
218
219   SwitchToDataSection(Section);
220   EmitAlignment(Alignment);
221   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
222     O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
223       << CP[i].second << ":\t\t\t\t\t" << TAI->getCommentString() << " ";
224     WriteTypeSymbolic(O, CP[i].first.getType(), 0) << '\n';
225     if (CP[i].first.isMachineConstantPoolEntry())
226       EmitMachineConstantPoolValue(CP[i].first.Val.MachineCPVal);
227      else
228       EmitGlobalConstant(CP[i].first.Val.ConstVal);
229     if (i != e-1) {
230       const Type *Ty = CP[i].first.getType();
231       unsigned EntSize =
232         TM.getTargetData()->getABITypeSize(Ty);
233       unsigned ValEnd = CP[i].first.getOffset() + EntSize;
234       // Emit inter-object padding for alignment.
235       EmitZeros(CP[i+1].first.getOffset()-ValEnd);
236     }
237   }
238 }
239
240 /// EmitJumpTableInfo - Print assembly representations of the jump tables used
241 /// by the current function to the current output stream.  
242 ///
243 void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
244                                    MachineFunction &MF) {
245   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
246   if (JT.empty()) return;
247   bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
248   
249   // Use JumpTableDirective otherwise honor the entry size from the jump table
250   // info.
251   const char *JTEntryDirective = TAI->getJumpTableDirective();
252   bool HadJTEntryDirective = JTEntryDirective != NULL;
253   if (!HadJTEntryDirective) {
254     JTEntryDirective = MJTI->getEntrySize() == 4 ?
255       TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
256   }
257   
258   // Pick the directive to use to print the jump table entries, and switch to 
259   // the appropriate section.
260   TargetLowering *LoweringInfo = TM.getTargetLowering();
261
262   const char* JumpTableDataSection = TAI->getJumpTableDataSection();  
263   if ((IsPic && !(LoweringInfo && LoweringInfo->usesGlobalOffsetTable())) ||
264      !JumpTableDataSection) {
265     // In PIC mode, we need to emit the jump table to the same section as the
266     // function body itself, otherwise the label differences won't make sense.
267     // We should also do if the section name is NULL.
268     const Function *F = MF.getFunction();
269     SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
270   } else {
271     SwitchToDataSection(JumpTableDataSection);
272   }
273   
274   EmitAlignment(Log2_32(MJTI->getAlignment()));
275   
276   for (unsigned i = 0, e = JT.size(); i != e; ++i) {
277     const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
278     
279     // If this jump table was deleted, ignore it. 
280     if (JTBBs.empty()) continue;
281
282     // For PIC codegen, if possible we want to use the SetDirective to reduce
283     // the number of relocations the assembler will generate for the jump table.
284     // Set directives are all printed before the jump table itself.
285     std::set<MachineBasicBlock*> EmittedSets;
286     if (TAI->getSetDirective() && IsPic)
287       for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
288         if (EmittedSets.insert(JTBBs[ii]).second)
289           printSetLabel(i, JTBBs[ii]);
290     
291     // On some targets (e.g. darwin) we want to emit two consequtive labels
292     // before each jump table.  The first label is never referenced, but tells
293     // the assembler and linker the extents of the jump table object.  The
294     // second label is actually referenced by the code.
295     if (const char *JTLabelPrefix = TAI->getJumpTableSpecialLabelPrefix())
296       O << JTLabelPrefix << "JTI" << getFunctionNumber() << '_' << i << ":\n";
297     
298     O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
299       << '_' << i << ":\n";
300     
301     for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
302       O << JTEntryDirective << ' ';
303       // If we have emitted set directives for the jump table entries, print 
304       // them rather than the entries themselves.  If we're emitting PIC, then
305       // emit the table entries as differences between two text section labels.
306       // If we're emitting non-PIC code, then emit the entries as direct
307       // references to the target basic blocks.
308       if (!EmittedSets.empty()) {
309         O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
310           << '_' << i << "_set_" << JTBBs[ii]->getNumber();
311       } else if (IsPic) {
312         printBasicBlockLabel(JTBBs[ii], false, false);
313         // If the arch uses custom Jump Table directives, don't calc relative to
314         // JT
315         if (!HadJTEntryDirective) 
316           O << '-' << TAI->getPrivateGlobalPrefix() << "JTI"
317             << getFunctionNumber() << '_' << i;
318       } else {
319         printBasicBlockLabel(JTBBs[ii], false, false);
320       }
321       O << '\n';
322     }
323   }
324 }
325
326 /// EmitSpecialLLVMGlobal - Check to see if the specified global is a
327 /// special global used by LLVM.  If so, emit it and return true, otherwise
328 /// do nothing and return false.
329 bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
330   if (GV->getName() == "llvm.used") {
331     if (TAI->getUsedDirective() != 0)    // No need to emit this at all.
332       EmitLLVMUsedList(GV->getInitializer());
333     return true;
334   }
335
336   // Ignore debug and non-emitted data.
337   if (GV->getSection() == "llvm.metadata") return true;
338   
339   if (!GV->hasAppendingLinkage()) return false;
340
341   assert(GV->hasInitializer() && "Not a special LLVM global!");
342   
343   const TargetData *TD = TM.getTargetData();
344   unsigned Align = Log2_32(TD->getPointerPrefAlignment());
345   if (GV->getName() == "llvm.global_ctors" && GV->use_empty()) {
346     SwitchToDataSection(TAI->getStaticCtorsSection());
347     EmitAlignment(Align, 0);
348     EmitXXStructorList(GV->getInitializer());
349     return true;
350   } 
351   
352   if (GV->getName() == "llvm.global_dtors" && GV->use_empty()) {
353     SwitchToDataSection(TAI->getStaticDtorsSection());
354     EmitAlignment(Align, 0);
355     EmitXXStructorList(GV->getInitializer());
356     return true;
357   }
358   
359   return false;
360 }
361
362 /// EmitLLVMUsedList - For targets that define a TAI::UsedDirective, mark each
363 /// global in the specified llvm.used list as being used with this directive.
364 void AsmPrinter::EmitLLVMUsedList(Constant *List) {
365   const char *Directive = TAI->getUsedDirective();
366
367   // Should be an array of 'sbyte*'.
368   ConstantArray *InitList = dyn_cast<ConstantArray>(List);
369   if (InitList == 0) return;
370   
371   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
372     O << Directive;
373     EmitConstantValueOnly(InitList->getOperand(i));
374     O << "\n";
375   }
376 }
377
378 /// EmitXXStructorList - Emit the ctor or dtor list.  This just prints out the 
379 /// function pointers, ignoring the init priority.
380 void AsmPrinter::EmitXXStructorList(Constant *List) {
381   // Should be an array of '{ int, void ()* }' structs.  The first value is the
382   // init priority, which we ignore.
383   if (!isa<ConstantArray>(List)) return;
384   ConstantArray *InitList = cast<ConstantArray>(List);
385   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
386     if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
387       if (CS->getNumOperands() != 2) return;  // Not array of 2-element structs.
388
389       if (CS->getOperand(1)->isNullValue())
390         return;  // Found a null terminator, exit printing.
391       // Emit the function pointer.
392       EmitGlobalConstant(CS->getOperand(1));
393     }
394 }
395
396 /// getGlobalLinkName - Returns the asm/link name of of the specified
397 /// global variable.  Should be overridden by each target asm printer to
398 /// generate the appropriate value.
399 const std::string AsmPrinter::getGlobalLinkName(const GlobalVariable *GV) const{
400   std::string LinkName;
401   
402   if (isa<Function>(GV)) {
403     LinkName += TAI->getFunctionAddrPrefix();
404     LinkName += Mang->getValueName(GV);
405     LinkName += TAI->getFunctionAddrSuffix();
406   } else {
407     LinkName += TAI->getGlobalVarAddrPrefix();
408     LinkName += Mang->getValueName(GV);
409     LinkName += TAI->getGlobalVarAddrSuffix();
410   }  
411   
412   return LinkName;
413 }
414
415 /// EmitExternalGlobal - Emit the external reference to a global variable.
416 /// Should be overridden if an indirect reference should be used.
417 void AsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
418   O << getGlobalLinkName(GV);
419 }
420
421
422
423 //===----------------------------------------------------------------------===//
424 /// LEB 128 number encoding.
425
426 /// PrintULEB128 - Print a series of hexidecimal values (separated by commas)
427 /// representing an unsigned leb128 value.
428 void AsmPrinter::PrintULEB128(unsigned Value) const {
429   do {
430     unsigned Byte = Value & 0x7f;
431     Value >>= 7;
432     if (Value) Byte |= 0x80;
433     O << "0x" << std::hex << Byte << std::dec;
434     if (Value) O << ", ";
435   } while (Value);
436 }
437
438 /// SizeULEB128 - Compute the number of bytes required for an unsigned leb128
439 /// value.
440 unsigned AsmPrinter::SizeULEB128(unsigned Value) {
441   unsigned Size = 0;
442   do {
443     Value >>= 7;
444     Size += sizeof(int8_t);
445   } while (Value);
446   return Size;
447 }
448
449 /// PrintSLEB128 - Print a series of hexidecimal values (separated by commas)
450 /// representing a signed leb128 value.
451 void AsmPrinter::PrintSLEB128(int Value) const {
452   int Sign = Value >> (8 * sizeof(Value) - 1);
453   bool IsMore;
454   
455   do {
456     unsigned Byte = Value & 0x7f;
457     Value >>= 7;
458     IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
459     if (IsMore) Byte |= 0x80;
460     O << "0x" << std::hex << Byte << std::dec;
461     if (IsMore) O << ", ";
462   } while (IsMore);
463 }
464
465 /// SizeSLEB128 - Compute the number of bytes required for a signed leb128
466 /// value.
467 unsigned AsmPrinter::SizeSLEB128(int Value) {
468   unsigned Size = 0;
469   int Sign = Value >> (8 * sizeof(Value) - 1);
470   bool IsMore;
471   
472   do {
473     unsigned Byte = Value & 0x7f;
474     Value >>= 7;
475     IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
476     Size += sizeof(int8_t);
477   } while (IsMore);
478   return Size;
479 }
480
481 //===--------------------------------------------------------------------===//
482 // Emission and print routines
483 //
484
485 /// PrintHex - Print a value as a hexidecimal value.
486 ///
487 void AsmPrinter::PrintHex(int Value) const { 
488   O << "0x" << std::hex << Value << std::dec;
489 }
490
491 /// EOL - Print a newline character to asm stream.  If a comment is present
492 /// then it will be printed first.  Comments should not contain '\n'.
493 void AsmPrinter::EOL() const {
494   O << "\n";
495 }
496 void AsmPrinter::EOL(const std::string &Comment) const {
497   if (AsmVerbose && !Comment.empty()) {
498     O << "\t"
499       << TAI->getCommentString()
500       << " "
501       << Comment;
502   }
503   O << "\n";
504 }
505
506 /// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
507 /// unsigned leb128 value.
508 void AsmPrinter::EmitULEB128Bytes(unsigned Value) const {
509   if (TAI->hasLEB128()) {
510     O << "\t.uleb128\t"
511       << Value;
512   } else {
513     O << TAI->getData8bitsDirective();
514     PrintULEB128(Value);
515   }
516 }
517
518 /// EmitSLEB128Bytes - print an assembler byte data directive to compose a
519 /// signed leb128 value.
520 void AsmPrinter::EmitSLEB128Bytes(int Value) const {
521   if (TAI->hasLEB128()) {
522     O << "\t.sleb128\t"
523       << Value;
524   } else {
525     O << TAI->getData8bitsDirective();
526     PrintSLEB128(Value);
527   }
528 }
529
530 /// EmitInt8 - Emit a byte directive and value.
531 ///
532 void AsmPrinter::EmitInt8(int Value) const {
533   O << TAI->getData8bitsDirective();
534   PrintHex(Value & 0xFF);
535 }
536
537 /// EmitInt16 - Emit a short directive and value.
538 ///
539 void AsmPrinter::EmitInt16(int Value) const {
540   O << TAI->getData16bitsDirective();
541   PrintHex(Value & 0xFFFF);
542 }
543
544 /// EmitInt32 - Emit a long directive and value.
545 ///
546 void AsmPrinter::EmitInt32(int Value) const {
547   O << TAI->getData32bitsDirective();
548   PrintHex(Value);
549 }
550
551 /// EmitInt64 - Emit a long long directive and value.
552 ///
553 void AsmPrinter::EmitInt64(uint64_t Value) const {
554   if (TAI->getData64bitsDirective()) {
555     O << TAI->getData64bitsDirective();
556     PrintHex(Value);
557   } else {
558     if (TM.getTargetData()->isBigEndian()) {
559       EmitInt32(unsigned(Value >> 32)); O << "\n";
560       EmitInt32(unsigned(Value));
561     } else {
562       EmitInt32(unsigned(Value)); O << "\n";
563       EmitInt32(unsigned(Value >> 32));
564     }
565   }
566 }
567
568 /// toOctal - Convert the low order bits of X into an octal digit.
569 ///
570 static inline char toOctal(int X) {
571   return (X&7)+'0';
572 }
573
574 /// printStringChar - Print a char, escaped if necessary.
575 ///
576 static void printStringChar(std::ostream &O, unsigned char C) {
577   if (C == '"') {
578     O << "\\\"";
579   } else if (C == '\\') {
580     O << "\\\\";
581   } else if (isprint(C)) {
582     O << C;
583   } else {
584     switch(C) {
585     case '\b': O << "\\b"; break;
586     case '\f': O << "\\f"; break;
587     case '\n': O << "\\n"; break;
588     case '\r': O << "\\r"; break;
589     case '\t': O << "\\t"; break;
590     default:
591       O << '\\';
592       O << toOctal(C >> 6);
593       O << toOctal(C >> 3);
594       O << toOctal(C >> 0);
595       break;
596     }
597   }
598 }
599
600 /// EmitString - Emit a string with quotes and a null terminator.
601 /// Special characters are emitted properly.
602 /// \literal (Eg. '\t') \endliteral
603 void AsmPrinter::EmitString(const std::string &String) const {
604   const char* AscizDirective = TAI->getAscizDirective();
605   if (AscizDirective)
606     O << AscizDirective;
607   else
608     O << TAI->getAsciiDirective();
609   O << "\"";
610   for (unsigned i = 0, N = String.size(); i < N; ++i) {
611     unsigned char C = String[i];
612     printStringChar(O, C);
613   }
614   if (AscizDirective)
615     O << "\"";
616   else
617     O << "\\0\"";
618 }
619
620
621 /// EmitFile - Emit a .file directive.
622 void AsmPrinter::EmitFile(unsigned Number, const std::string &Name) const {
623   O << "\t.file\t" << Number << " \"";
624   for (unsigned i = 0, N = Name.size(); i < N; ++i) {
625     unsigned char C = Name[i];
626     printStringChar(O, C);
627   }
628   O << "\"";
629 }
630
631
632 //===----------------------------------------------------------------------===//
633
634 // EmitAlignment - Emit an alignment directive to the specified power of
635 // two boundary.  For example, if you pass in 3 here, you will get an 8
636 // byte alignment.  If a global value is specified, and if that global has
637 // an explicit alignment requested, it will unconditionally override the
638 // alignment request.  However, if ForcedAlignBits is specified, this value
639 // has final say: the ultimate alignment will be the max of ForcedAlignBits
640 // and the alignment computed with NumBits and the global.
641 //
642 // The algorithm is:
643 //     Align = NumBits;
644 //     if (GV && GV->hasalignment) Align = GV->getalignment();
645 //     Align = std::max(Align, ForcedAlignBits);
646 //
647 void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
648                                unsigned ForcedAlignBits, bool UseFillExpr,
649                                unsigned FillValue) const {
650   if (GV && GV->getAlignment())
651     NumBits = Log2_32(GV->getAlignment());
652   NumBits = std::max(NumBits, ForcedAlignBits);
653   
654   if (NumBits == 0) return;   // No need to emit alignment.
655   if (TAI->getAlignmentIsInBytes()) NumBits = 1 << NumBits;
656   O << TAI->getAlignDirective() << NumBits;
657   if (UseFillExpr) O << ",0x" << std::hex << FillValue << std::dec;
658   O << "\n";
659 }
660
661     
662 /// EmitZeros - Emit a block of zeros.
663 ///
664 void AsmPrinter::EmitZeros(uint64_t NumZeros) const {
665   if (NumZeros) {
666     if (TAI->getZeroDirective()) {
667       O << TAI->getZeroDirective() << NumZeros;
668       if (TAI->getZeroDirectiveSuffix())
669         O << TAI->getZeroDirectiveSuffix();
670       O << "\n";
671     } else {
672       for (; NumZeros; --NumZeros)
673         O << TAI->getData8bitsDirective() << "0\n";
674     }
675   }
676 }
677
678 // Print out the specified constant, without a storage class.  Only the
679 // constants valid in constant expressions can occur here.
680 void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
681   if (CV->isNullValue() || isa<UndefValue>(CV))
682     O << "0";
683   else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
684     O << CI->getZExtValue();
685   } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
686     // This is a constant address for a global variable or function. Use the
687     // name of the variable or function as the address value, possibly
688     // decorating it with GlobalVarAddrPrefix/Suffix or
689     // FunctionAddrPrefix/Suffix (these all default to "" )
690     if (isa<Function>(GV)) {
691       O << TAI->getFunctionAddrPrefix()
692         << Mang->getValueName(GV)
693         << TAI->getFunctionAddrSuffix();
694     } else {
695       O << TAI->getGlobalVarAddrPrefix()
696         << Mang->getValueName(GV)
697         << TAI->getGlobalVarAddrSuffix();
698     }
699   } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
700     const TargetData *TD = TM.getTargetData();
701     unsigned Opcode = CE->getOpcode();    
702     switch (Opcode) {
703     case Instruction::GetElementPtr: {
704       // generate a symbolic expression for the byte address
705       const Constant *ptrVal = CE->getOperand(0);
706       SmallVector<Value*, 8> idxVec(CE->op_begin()+1, CE->op_end());
707       if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), &idxVec[0],
708                                                 idxVec.size())) {
709         if (Offset)
710           O << "(";
711         EmitConstantValueOnly(ptrVal);
712         if (Offset > 0)
713           O << ") + " << Offset;
714         else if (Offset < 0)
715           O << ") - " << -Offset;
716       } else {
717         EmitConstantValueOnly(ptrVal);
718       }
719       break;
720     }
721     case Instruction::Trunc:
722     case Instruction::ZExt:
723     case Instruction::SExt:
724     case Instruction::FPTrunc:
725     case Instruction::FPExt:
726     case Instruction::UIToFP:
727     case Instruction::SIToFP:
728     case Instruction::FPToUI:
729     case Instruction::FPToSI:
730       assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
731       break;
732     case Instruction::BitCast:
733       return EmitConstantValueOnly(CE->getOperand(0));
734
735     case Instruction::IntToPtr: {
736       // Handle casts to pointers by changing them into casts to the appropriate
737       // integer type.  This promotes constant folding and simplifies this code.
738       Constant *Op = CE->getOperand(0);
739       Op = ConstantExpr::getIntegerCast(Op, TD->getIntPtrType(), false/*ZExt*/);
740       return EmitConstantValueOnly(Op);
741     }
742       
743       
744     case Instruction::PtrToInt: {
745       // Support only foldable casts to/from pointers that can be eliminated by
746       // changing the pointer to the appropriately sized integer type.
747       Constant *Op = CE->getOperand(0);
748       const Type *Ty = CE->getType();
749
750       // We can emit the pointer value into this slot if the slot is an
751       // integer slot greater or equal to the size of the pointer.
752       if (Ty->isInteger() &&
753           TD->getABITypeSize(Ty) >= TD->getABITypeSize(Op->getType()))
754         return EmitConstantValueOnly(Op);
755       
756       assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
757       EmitConstantValueOnly(Op);
758       break;
759     }
760     case Instruction::Add:
761     case Instruction::Sub:
762       O << "(";
763       EmitConstantValueOnly(CE->getOperand(0));
764       O << (Opcode==Instruction::Add ? ") + (" : ") - (");
765       EmitConstantValueOnly(CE->getOperand(1));
766       O << ")";
767       break;
768     default:
769       assert(0 && "Unsupported operator!");
770     }
771   } else {
772     assert(0 && "Unknown constant value!");
773   }
774 }
775
776 /// printAsCString - Print the specified array as a C compatible string, only if
777 /// the predicate isString is true.
778 ///
779 static void printAsCString(std::ostream &O, const ConstantArray *CVA,
780                            unsigned LastElt) {
781   assert(CVA->isString() && "Array is not string compatible!");
782
783   O << "\"";
784   for (unsigned i = 0; i != LastElt; ++i) {
785     unsigned char C =
786         (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getZExtValue();
787     printStringChar(O, C);
788   }
789   O << "\"";
790 }
791
792 /// EmitString - Emit a zero-byte-terminated string constant.
793 ///
794 void AsmPrinter::EmitString(const ConstantArray *CVA) const {
795   unsigned NumElts = CVA->getNumOperands();
796   if (TAI->getAscizDirective() && NumElts && 
797       cast<ConstantInt>(CVA->getOperand(NumElts-1))->getZExtValue() == 0) {
798     O << TAI->getAscizDirective();
799     printAsCString(O, CVA, NumElts-1);
800   } else {
801     O << TAI->getAsciiDirective();
802     printAsCString(O, CVA, NumElts);
803   }
804   O << "\n";
805 }
806
807 /// EmitGlobalConstant - Print a general LLVM constant to the .s file.
808 /// If Packed is false, pad to the ABI size.
809 void AsmPrinter::EmitGlobalConstant(const Constant *CV, bool Packed) {
810   const TargetData *TD = TM.getTargetData();
811   unsigned Size = Packed ?
812     TD->getTypeStoreSize(CV->getType()) : TD->getABITypeSize(CV->getType());
813
814   if (CV->isNullValue() || isa<UndefValue>(CV)) {
815     EmitZeros(Size);
816     return;
817   } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
818     if (CVA->isString()) {
819       EmitString(CVA);
820     } else { // Not a string.  Print the values in successive locations
821       for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
822         EmitGlobalConstant(CVA->getOperand(i), false);
823     }
824     return;
825   } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
826     // Print the fields in successive locations. Pad to align if needed!
827     const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
828     uint64_t sizeSoFar = 0;
829     for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
830       const Constant* field = CVS->getOperand(i);
831
832       // Check if padding is needed and insert one or more 0s.
833       uint64_t fieldSize = TD->getTypeStoreSize(field->getType());
834       uint64_t padSize = ((i == e-1 ? Size : cvsLayout->getElementOffset(i+1))
835                           - cvsLayout->getElementOffset(i)) - fieldSize;
836       sizeSoFar += fieldSize + padSize;
837
838       // Now print the actual field value without ABI size padding.
839       EmitGlobalConstant(field, true);
840
841       // Insert padding - this may include padding to increase the size of the
842       // current field up to the ABI size (if the struct is not packed) as well
843       // as padding to ensure that the next field starts at the right offset.
844       EmitZeros(padSize);
845     }
846     assert(sizeSoFar == cvsLayout->getSizeInBytes() &&
847            "Layout of constant struct may be incorrect!");
848     return;
849   } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
850     // FP Constants are printed as integer constants to avoid losing
851     // precision...
852     if (CFP->getType() == Type::DoubleTy) {
853       double Val = CFP->getValueAPF().convertToDouble();  // for comment only
854       uint64_t i = CFP->getValueAPF().convertToAPInt().getZExtValue();
855       if (TAI->getData64bitsDirective())
856         O << TAI->getData64bitsDirective() << i << "\t"
857           << TAI->getCommentString() << " double value: " << Val << "\n";
858       else if (TD->isBigEndian()) {
859         O << TAI->getData32bitsDirective() << unsigned(i >> 32)
860           << "\t" << TAI->getCommentString()
861           << " double most significant word " << Val << "\n";
862         O << TAI->getData32bitsDirective() << unsigned(i)
863           << "\t" << TAI->getCommentString()
864           << " double least significant word " << Val << "\n";
865       } else {
866         O << TAI->getData32bitsDirective() << unsigned(i)
867           << "\t" << TAI->getCommentString()
868           << " double least significant word " << Val << "\n";
869         O << TAI->getData32bitsDirective() << unsigned(i >> 32)
870           << "\t" << TAI->getCommentString()
871           << " double most significant word " << Val << "\n";
872       }
873       return;
874     } else if (CFP->getType() == Type::FloatTy) {
875       float Val = CFP->getValueAPF().convertToFloat();  // for comment only
876       O << TAI->getData32bitsDirective()
877         << CFP->getValueAPF().convertToAPInt().getZExtValue()
878         << "\t" << TAI->getCommentString() << " float " << Val << "\n";
879       return;
880     } else if (CFP->getType() == Type::X86_FP80Ty) {
881       // all long double variants are printed as hex
882       // api needed to prevent premature destruction
883       APInt api = CFP->getValueAPF().convertToAPInt();
884       const uint64_t *p = api.getRawData();
885       if (TD->isBigEndian()) {
886         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48)
887           << "\t" << TAI->getCommentString()
888           << " long double most significant halfword\n";
889         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32)
890           << "\t" << TAI->getCommentString()
891           << " long double next halfword\n";
892         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 16)
893           << "\t" << TAI->getCommentString()
894           << " long double next halfword\n";
895         O << TAI->getData16bitsDirective() << uint16_t(p[0])
896           << "\t" << TAI->getCommentString()
897           << " long double next halfword\n";
898         O << TAI->getData16bitsDirective() << uint16_t(p[1])
899           << "\t" << TAI->getCommentString()
900           << " long double least significant halfword\n";
901        } else {
902         O << TAI->getData16bitsDirective() << uint16_t(p[1])
903           << "\t" << TAI->getCommentString()
904           << " long double least significant halfword\n";
905         O << TAI->getData16bitsDirective() << uint16_t(p[0])
906           << "\t" << TAI->getCommentString()
907           << " long double next halfword\n";
908         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 16)
909           << "\t" << TAI->getCommentString()
910           << " long double next halfword\n";
911         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32)
912           << "\t" << TAI->getCommentString()
913           << " long double next halfword\n";
914         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48)
915           << "\t" << TAI->getCommentString()
916           << " long double most significant halfword\n";
917       }
918       EmitZeros(Size - TD->getTypeStoreSize(Type::X86_FP80Ty));
919       return;
920     } else if (CFP->getType() == Type::PPC_FP128Ty) {
921       // all long double variants are printed as hex
922       // api needed to prevent premature destruction
923       APInt api = CFP->getValueAPF().convertToAPInt();
924       const uint64_t *p = api.getRawData();
925       if (TD->isBigEndian()) {
926         O << TAI->getData32bitsDirective() << uint32_t(p[0] >> 32)
927           << "\t" << TAI->getCommentString()
928           << " long double most significant word\n";
929         O << TAI->getData32bitsDirective() << uint32_t(p[0])
930           << "\t" << TAI->getCommentString()
931           << " long double next word\n";
932         O << TAI->getData32bitsDirective() << uint32_t(p[1] >> 32)
933           << "\t" << TAI->getCommentString()
934           << " long double next word\n";
935         O << TAI->getData32bitsDirective() << uint32_t(p[1])
936           << "\t" << TAI->getCommentString()
937           << " long double least significant word\n";
938        } else {
939         O << TAI->getData32bitsDirective() << uint32_t(p[1])
940           << "\t" << TAI->getCommentString()
941           << " long double least significant word\n";
942         O << TAI->getData32bitsDirective() << uint32_t(p[1] >> 32)
943           << "\t" << TAI->getCommentString()
944           << " long double next word\n";
945         O << TAI->getData32bitsDirective() << uint32_t(p[0])
946           << "\t" << TAI->getCommentString()
947           << " long double next word\n";
948         O << TAI->getData32bitsDirective() << uint32_t(p[0] >> 32)
949           << "\t" << TAI->getCommentString()
950           << " long double most significant word\n";
951       }
952       return;
953     } else assert(0 && "Floating point constant type not handled");
954   } else if (CV->getType() == Type::Int64Ty) {
955     if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
956       uint64_t Val = CI->getZExtValue();
957
958       if (TAI->getData64bitsDirective())
959         O << TAI->getData64bitsDirective() << Val << "\n";
960       else if (TD->isBigEndian()) {
961         O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
962           << "\t" << TAI->getCommentString()
963           << " Double-word most significant word " << Val << "\n";
964         O << TAI->getData32bitsDirective() << unsigned(Val)
965           << "\t" << TAI->getCommentString()
966           << " Double-word least significant word " << Val << "\n";
967       } else {
968         O << TAI->getData32bitsDirective() << unsigned(Val)
969           << "\t" << TAI->getCommentString()
970           << " Double-word least significant word " << Val << "\n";
971         O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
972           << "\t" << TAI->getCommentString()
973           << " Double-word most significant word " << Val << "\n";
974       }
975       return;
976     }
977   } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
978     const VectorType *PTy = CP->getType();
979     
980     for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
981       EmitGlobalConstant(CP->getOperand(I), false);
982     
983     return;
984   }
985
986   const Type *type = CV->getType();
987   printDataDirective(type);
988   EmitConstantValueOnly(CV);
989   O << "\n";
990 }
991
992 void
993 AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
994   // Target doesn't support this yet!
995   abort();
996 }
997
998 /// PrintSpecial - Print information related to the specified machine instr
999 /// that is independent of the operand, and may be independent of the instr
1000 /// itself.  This can be useful for portably encoding the comment character
1001 /// or other bits of target-specific knowledge into the asmstrings.  The
1002 /// syntax used is ${:comment}.  Targets can override this to add support
1003 /// for their own strange codes.
1004 void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) {
1005   if (!strcmp(Code, "private")) {
1006     O << TAI->getPrivateGlobalPrefix();
1007   } else if (!strcmp(Code, "comment")) {
1008     O << TAI->getCommentString();
1009   } else if (!strcmp(Code, "uid")) {
1010     // Assign a unique ID to this machine instruction.
1011     static const MachineInstr *LastMI = 0;
1012     static const Function *F = 0;
1013     static unsigned Counter = 0U-1;
1014
1015     // Comparing the address of MI isn't sufficient, because machineinstrs may
1016     // be allocated to the same address across functions.
1017     const Function *ThisF = MI->getParent()->getParent()->getFunction();
1018     
1019     // If this is a new machine instruction, bump the counter.
1020     if (LastMI != MI || F != ThisF) {
1021       ++Counter;
1022       LastMI = MI;
1023       F = ThisF;
1024     }
1025     O << Counter;
1026   } else {
1027     cerr << "Unknown special formatter '" << Code
1028          << "' for machine instr: " << *MI;
1029     exit(1);
1030   }    
1031 }
1032
1033
1034 /// printInlineAsm - This method formats and prints the specified machine
1035 /// instruction that is an inline asm.
1036 void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
1037   unsigned NumOperands = MI->getNumOperands();
1038   
1039   // Count the number of register definitions.
1040   unsigned NumDefs = 0;
1041   for (; MI->getOperand(NumDefs).isRegister() && MI->getOperand(NumDefs).isDef();
1042        ++NumDefs)
1043     assert(NumDefs != NumOperands-1 && "No asm string?");
1044   
1045   assert(MI->getOperand(NumDefs).isExternalSymbol() && "No asm string?");
1046
1047   // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
1048   const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
1049
1050   // If this asmstr is empty, don't bother printing the #APP/#NOAPP markers.
1051   if (AsmStr[0] == 0) {
1052     O << "\n";  // Tab already printed, avoid double indenting next instr.
1053     return;
1054   }
1055   
1056   O << TAI->getInlineAsmStart() << "\n\t";
1057
1058   // The variant of the current asmprinter.
1059   int AsmPrinterVariant = TAI->getAssemblerDialect();
1060
1061   int CurVariant = -1;            // The number of the {.|.|.} region we are in.
1062   const char *LastEmitted = AsmStr; // One past the last character emitted.
1063   
1064   while (*LastEmitted) {
1065     switch (*LastEmitted) {
1066     default: {
1067       // Not a special case, emit the string section literally.
1068       const char *LiteralEnd = LastEmitted+1;
1069       while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
1070              *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
1071         ++LiteralEnd;
1072       if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1073         O.write(LastEmitted, LiteralEnd-LastEmitted);
1074       LastEmitted = LiteralEnd;
1075       break;
1076     }
1077     case '\n':
1078       ++LastEmitted;   // Consume newline character.
1079       O << "\n";       // Indent code with newline.
1080       break;
1081     case '$': {
1082       ++LastEmitted;   // Consume '$' character.
1083       bool Done = true;
1084
1085       // Handle escapes.
1086       switch (*LastEmitted) {
1087       default: Done = false; break;
1088       case '$':     // $$ -> $
1089         if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1090           O << '$';
1091         ++LastEmitted;  // Consume second '$' character.
1092         break;
1093       case '(':             // $( -> same as GCC's { character.
1094         ++LastEmitted;      // Consume '(' character.
1095         if (CurVariant != -1) {
1096           cerr << "Nested variants found in inline asm string: '"
1097                << AsmStr << "'\n";
1098           exit(1);
1099         }
1100         CurVariant = 0;     // We're in the first variant now.
1101         break;
1102       case '|':
1103         ++LastEmitted;  // consume '|' character.
1104         if (CurVariant == -1) {
1105           cerr << "Found '|' character outside of variant in inline asm "
1106                << "string: '" << AsmStr << "'\n";
1107           exit(1);
1108         }
1109         ++CurVariant;   // We're in the next variant.
1110         break;
1111       case ')':         // $) -> same as GCC's } char.
1112         ++LastEmitted;  // consume ')' character.
1113         if (CurVariant == -1) {
1114           cerr << "Found '}' character outside of variant in inline asm "
1115                << "string: '" << AsmStr << "'\n";
1116           exit(1);
1117         }
1118         CurVariant = -1;
1119         break;
1120       }
1121       if (Done) break;
1122       
1123       bool HasCurlyBraces = false;
1124       if (*LastEmitted == '{') {     // ${variable}
1125         ++LastEmitted;               // Consume '{' character.
1126         HasCurlyBraces = true;
1127       }
1128       
1129       const char *IDStart = LastEmitted;
1130       char *IDEnd;
1131       errno = 0;
1132       long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1133       if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
1134         cerr << "Bad $ operand number in inline asm string: '" 
1135              << AsmStr << "'\n";
1136         exit(1);
1137       }
1138       LastEmitted = IDEnd;
1139       
1140       char Modifier[2] = { 0, 0 };
1141       
1142       if (HasCurlyBraces) {
1143         // If we have curly braces, check for a modifier character.  This
1144         // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1145         if (*LastEmitted == ':') {
1146           ++LastEmitted;    // Consume ':' character.
1147           if (*LastEmitted == 0) {
1148             cerr << "Bad ${:} expression in inline asm string: '" 
1149                  << AsmStr << "'\n";
1150             exit(1);
1151           }
1152           
1153           Modifier[0] = *LastEmitted;
1154           ++LastEmitted;    // Consume modifier character.
1155         }
1156         
1157         if (*LastEmitted != '}') {
1158           cerr << "Bad ${} expression in inline asm string: '" 
1159                << AsmStr << "'\n";
1160           exit(1);
1161         }
1162         ++LastEmitted;    // Consume '}' character.
1163       }
1164       
1165       if ((unsigned)Val >= NumOperands-1) {
1166         cerr << "Invalid $ operand number in inline asm string: '" 
1167              << AsmStr << "'\n";
1168         exit(1);
1169       }
1170       
1171       // Okay, we finally have a value number.  Ask the target to print this
1172       // operand!
1173       if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1174         unsigned OpNo = 1;
1175
1176         bool Error = false;
1177
1178         // Scan to find the machine operand number for the operand.
1179         for (; Val; --Val) {
1180           if (OpNo >= MI->getNumOperands()) break;
1181           unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
1182           OpNo += (OpFlags >> 3) + 1;
1183         }
1184
1185         if (OpNo >= MI->getNumOperands()) {
1186           Error = true;
1187         } else {
1188           unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
1189           ++OpNo;  // Skip over the ID number.
1190
1191           if (Modifier[0]=='l')  // labels are target independent
1192             printBasicBlockLabel(MI->getOperand(OpNo).getMachineBasicBlock(), 
1193                                  false, false);
1194           else {
1195             AsmPrinter *AP = const_cast<AsmPrinter*>(this);
1196             if ((OpFlags & 7) == 4 /*ADDR MODE*/) {
1197               Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1198                                                 Modifier[0] ? Modifier : 0);
1199             } else {
1200               Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1201                                           Modifier[0] ? Modifier : 0);
1202             }
1203           }
1204         }
1205         if (Error) {
1206           cerr << "Invalid operand found in inline asm: '"
1207                << AsmStr << "'\n";
1208           MI->dump();
1209           exit(1);
1210         }
1211       }
1212       break;
1213     }
1214     }
1215   }
1216   O << "\n\t" << TAI->getInlineAsmEnd() << "\n";
1217 }
1218
1219 /// printLabel - This method prints a local label used by debug and
1220 /// exception handling tables.
1221 void AsmPrinter::printLabel(const MachineInstr *MI) const {
1222   O << "\n"
1223     << TAI->getPrivateGlobalPrefix()
1224     << "label"
1225     << MI->getOperand(0).getImmedValue()
1226     << ":\n";
1227 }
1228
1229 /// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1230 /// instruction, using the specified assembler variant.  Targets should
1231 /// overried this to format as appropriate.
1232 bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
1233                                  unsigned AsmVariant, const char *ExtraCode) {
1234   // Target doesn't support this yet!
1235   return true;
1236 }
1237
1238 bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1239                                        unsigned AsmVariant,
1240                                        const char *ExtraCode) {
1241   // Target doesn't support this yet!
1242   return true;
1243 }
1244
1245 /// printBasicBlockLabel - This method prints the label for the specified
1246 /// MachineBasicBlock
1247 void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
1248                                       bool printColon,
1249                                       bool printComment) const {
1250   O << TAI->getPrivateGlobalPrefix() << "BB" << getFunctionNumber() << "_"
1251     << MBB->getNumber();
1252   if (printColon)
1253     O << ':';
1254   if (printComment && MBB->getBasicBlock())
1255     O << '\t' << TAI->getCommentString() << ' '
1256       << MBB->getBasicBlock()->getName();
1257 }
1258
1259 /// printSetLabel - This method prints a set label for the specified
1260 /// MachineBasicBlock
1261 void AsmPrinter::printSetLabel(unsigned uid, 
1262                                const MachineBasicBlock *MBB) const {
1263   if (!TAI->getSetDirective())
1264     return;
1265   
1266   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
1267     << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
1268   printBasicBlockLabel(MBB, false, false);
1269   O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
1270     << '_' << uid << '\n';
1271 }
1272
1273 void AsmPrinter::printSetLabel(unsigned uid, unsigned uid2,
1274                                const MachineBasicBlock *MBB) const {
1275   if (!TAI->getSetDirective())
1276     return;
1277   
1278   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
1279     << getFunctionNumber() << '_' << uid << '_' << uid2
1280     << "_set_" << MBB->getNumber() << ',';
1281   printBasicBlockLabel(MBB, false, false);
1282   O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
1283     << '_' << uid << '_' << uid2 << '\n';
1284 }
1285
1286 /// printDataDirective - This method prints the asm directive for the
1287 /// specified type.
1288 void AsmPrinter::printDataDirective(const Type *type) {
1289   const TargetData *TD = TM.getTargetData();
1290   switch (type->getTypeID()) {
1291   case Type::IntegerTyID: {
1292     unsigned BitWidth = cast<IntegerType>(type)->getBitWidth();
1293     if (BitWidth <= 8)
1294       O << TAI->getData8bitsDirective();
1295     else if (BitWidth <= 16)
1296       O << TAI->getData16bitsDirective();
1297     else if (BitWidth <= 32)
1298       O << TAI->getData32bitsDirective();
1299     else if (BitWidth <= 64) {
1300       assert(TAI->getData64bitsDirective() &&
1301              "Target cannot handle 64-bit constant exprs!");
1302       O << TAI->getData64bitsDirective();
1303     }
1304     break;
1305   }
1306   case Type::PointerTyID:
1307     if (TD->getPointerSize() == 8) {
1308       assert(TAI->getData64bitsDirective() &&
1309              "Target cannot handle 64-bit pointer exprs!");
1310       O << TAI->getData64bitsDirective();
1311     } else {
1312       O << TAI->getData32bitsDirective();
1313     }
1314     break;
1315   case Type::FloatTyID: case Type::DoubleTyID:
1316   case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID:
1317     assert (0 && "Should have already output floating point constant.");
1318   default:
1319     assert (0 && "Can't handle printing this type of thing");
1320     break;
1321   }
1322 }
1323