minor long double related changes
[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()->getTypeSize(Ty) == 4)
196       FourByteCPs.push_back(std::make_pair(CPE, i));
197     else if (TAI->getEightByteConstantSection() &&
198              TM.getTargetData()->getTypeSize(Ty) == 8)
199       EightByteCPs.push_back(std::make_pair(CPE, i));
200     else if (TAI->getSixteenByteConstantSection() &&
201              TM.getTargetData()->getTypeSize(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()->getTypeSize(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->getTypeSize(Ty) >= TD->getTypeSize(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 ///
809 void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
810   const TargetData *TD = TM.getTargetData();
811
812   if (CV->isNullValue() || isa<UndefValue>(CV)) {
813     EmitZeros(TD->getTypeSize(CV->getType()));
814     return;
815   } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
816     if (CVA->isString()) {
817       EmitString(CVA);
818     } else { // Not a string.  Print the values in successive locations
819       for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
820         EmitGlobalConstant(CVA->getOperand(i));
821     }
822     return;
823   } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
824     // Print the fields in successive locations. Pad to align if needed!
825     const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
826     uint64_t sizeSoFar = 0;
827     for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
828       const Constant* field = CVS->getOperand(i);
829
830       // Check if padding is needed and insert one or more 0s.
831       uint64_t fieldSize = TD->getTypeSize(field->getType());
832       uint64_t padSize = ((i == e-1? cvsLayout->getSizeInBytes()
833                            : cvsLayout->getElementOffset(i+1))
834                           - cvsLayout->getElementOffset(i)) - fieldSize;
835       sizeSoFar += fieldSize + padSize;
836
837       // Now print the actual field value
838       EmitGlobalConstant(field);
839
840       // Insert the field padding unless it's zero bytes...
841       EmitZeros(padSize);
842     }
843     assert(sizeSoFar == cvsLayout->getSizeInBytes() &&
844            "Layout of constant struct may be incorrect!");
845     return;
846   } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
847     // FP Constants are printed as integer constants to avoid losing
848     // precision...
849     if (CFP->getType() == Type::DoubleTy) {
850       double Val = CFP->getValueAPF().convertToDouble();  // for comment only
851       uint64_t i = CFP->getValueAPF().convertToAPInt().getZExtValue();
852       if (TAI->getData64bitsDirective())
853         O << TAI->getData64bitsDirective() << i << "\t"
854           << TAI->getCommentString() << " double value: " << Val << "\n";
855       else if (TD->isBigEndian()) {
856         O << TAI->getData32bitsDirective() << unsigned(i >> 32)
857           << "\t" << TAI->getCommentString()
858           << " double most significant word " << Val << "\n";
859         O << TAI->getData32bitsDirective() << unsigned(i)
860           << "\t" << TAI->getCommentString()
861           << " double least significant word " << Val << "\n";
862       } else {
863         O << TAI->getData32bitsDirective() << unsigned(i)
864           << "\t" << TAI->getCommentString()
865           << " double least significant word " << Val << "\n";
866         O << TAI->getData32bitsDirective() << unsigned(i >> 32)
867           << "\t" << TAI->getCommentString()
868           << " double most significant word " << Val << "\n";
869       }
870       return;
871     } else if (CFP->getType() == Type::FloatTy) {
872       float Val = CFP->getValueAPF().convertToFloat();  // for comment only
873       O << TAI->getData32bitsDirective()
874         << CFP->getValueAPF().convertToAPInt().getZExtValue()
875         << "\t" << TAI->getCommentString() << " float " << Val << "\n";
876       return;
877     } else if (CFP->getType() == Type::X86_FP80Ty) {
878       // all long double variants are printed as hex
879       // api needed to prevent premature destruction
880       APInt api = CFP->getValueAPF().convertToAPInt();
881       const uint64_t *p = api.getRawData();
882       if (TD->isBigEndian()) {
883         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48)
884           << "\t" << TAI->getCommentString()
885           << " long double most significant halfword\n";
886         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32)
887           << "\t" << TAI->getCommentString()
888           << " long double next halfword\n";
889         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 16)
890           << "\t" << TAI->getCommentString()
891           << " long double next halfword\n";
892         O << TAI->getData16bitsDirective() << uint16_t(p[0])
893           << "\t" << TAI->getCommentString()
894           << " long double next halfword\n";
895         O << TAI->getData16bitsDirective() << uint16_t(p[1])
896           << "\t" << TAI->getCommentString()
897           << " long double least significant halfword\n";
898        } else {
899         O << TAI->getData16bitsDirective() << uint16_t(p[1])
900           << "\t" << TAI->getCommentString()
901           << " long double least significant halfword\n";
902         O << TAI->getData16bitsDirective() << uint16_t(p[0])
903           << "\t" << TAI->getCommentString()
904           << " long double next halfword\n";
905         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 16)
906           << "\t" << TAI->getCommentString()
907           << " long double next halfword\n";
908         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32)
909           << "\t" << TAI->getCommentString()
910           << " long double next halfword\n";
911         O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48)
912           << "\t" << TAI->getCommentString()
913           << " long double most significant halfword\n";
914       }
915       return;
916     } else assert(0 && "Floating point constant type not handled");
917   } else if (CV->getType() == Type::Int64Ty) {
918     if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
919       uint64_t Val = CI->getZExtValue();
920
921       if (TAI->getData64bitsDirective())
922         O << TAI->getData64bitsDirective() << Val << "\n";
923       else if (TD->isBigEndian()) {
924         O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
925           << "\t" << TAI->getCommentString()
926           << " Double-word most significant word " << Val << "\n";
927         O << TAI->getData32bitsDirective() << unsigned(Val)
928           << "\t" << TAI->getCommentString()
929           << " Double-word least significant word " << Val << "\n";
930       } else {
931         O << TAI->getData32bitsDirective() << unsigned(Val)
932           << "\t" << TAI->getCommentString()
933           << " Double-word least significant word " << Val << "\n";
934         O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
935           << "\t" << TAI->getCommentString()
936           << " Double-word most significant word " << Val << "\n";
937       }
938       return;
939     }
940   } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
941     const VectorType *PTy = CP->getType();
942     
943     for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
944       EmitGlobalConstant(CP->getOperand(I));
945     
946     return;
947   }
948
949   const Type *type = CV->getType();
950   printDataDirective(type);
951   EmitConstantValueOnly(CV);
952   O << "\n";
953 }
954
955 void
956 AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
957   // Target doesn't support this yet!
958   abort();
959 }
960
961 /// PrintSpecial - Print information related to the specified machine instr
962 /// that is independent of the operand, and may be independent of the instr
963 /// itself.  This can be useful for portably encoding the comment character
964 /// or other bits of target-specific knowledge into the asmstrings.  The
965 /// syntax used is ${:comment}.  Targets can override this to add support
966 /// for their own strange codes.
967 void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) {
968   if (!strcmp(Code, "private")) {
969     O << TAI->getPrivateGlobalPrefix();
970   } else if (!strcmp(Code, "comment")) {
971     O << TAI->getCommentString();
972   } else if (!strcmp(Code, "uid")) {
973     // Assign a unique ID to this machine instruction.
974     static const MachineInstr *LastMI = 0;
975     static const Function *F = 0;
976     static unsigned Counter = 0U-1;
977
978     // Comparing the address of MI isn't sufficient, because machineinstrs may
979     // be allocated to the same address across functions.
980     const Function *ThisF = MI->getParent()->getParent()->getFunction();
981     
982     // If this is a new machine instruction, bump the counter.
983     if (LastMI != MI || F != ThisF) {
984       ++Counter;
985       LastMI = MI;
986       F = ThisF;
987     }
988     O << Counter;
989   } else {
990     cerr << "Unknown special formatter '" << Code
991          << "' for machine instr: " << *MI;
992     exit(1);
993   }    
994 }
995
996
997 /// printInlineAsm - This method formats and prints the specified machine
998 /// instruction that is an inline asm.
999 void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
1000   unsigned NumOperands = MI->getNumOperands();
1001   
1002   // Count the number of register definitions.
1003   unsigned NumDefs = 0;
1004   for (; MI->getOperand(NumDefs).isRegister() && MI->getOperand(NumDefs).isDef();
1005        ++NumDefs)
1006     assert(NumDefs != NumOperands-1 && "No asm string?");
1007   
1008   assert(MI->getOperand(NumDefs).isExternalSymbol() && "No asm string?");
1009
1010   // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
1011   const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
1012
1013   // If this asmstr is empty, don't bother printing the #APP/#NOAPP markers.
1014   if (AsmStr[0] == 0) {
1015     O << "\n";  // Tab already printed, avoid double indenting next instr.
1016     return;
1017   }
1018   
1019   O << TAI->getInlineAsmStart() << "\n\t";
1020
1021   // The variant of the current asmprinter.
1022   int AsmPrinterVariant = TAI->getAssemblerDialect();
1023
1024   int CurVariant = -1;            // The number of the {.|.|.} region we are in.
1025   const char *LastEmitted = AsmStr; // One past the last character emitted.
1026   
1027   while (*LastEmitted) {
1028     switch (*LastEmitted) {
1029     default: {
1030       // Not a special case, emit the string section literally.
1031       const char *LiteralEnd = LastEmitted+1;
1032       while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
1033              *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
1034         ++LiteralEnd;
1035       if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1036         O.write(LastEmitted, LiteralEnd-LastEmitted);
1037       LastEmitted = LiteralEnd;
1038       break;
1039     }
1040     case '\n':
1041       ++LastEmitted;   // Consume newline character.
1042       O << "\n";       // Indent code with newline.
1043       break;
1044     case '$': {
1045       ++LastEmitted;   // Consume '$' character.
1046       bool Done = true;
1047
1048       // Handle escapes.
1049       switch (*LastEmitted) {
1050       default: Done = false; break;
1051       case '$':     // $$ -> $
1052         if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1053           O << '$';
1054         ++LastEmitted;  // Consume second '$' character.
1055         break;
1056       case '(':             // $( -> same as GCC's { character.
1057         ++LastEmitted;      // Consume '(' character.
1058         if (CurVariant != -1) {
1059           cerr << "Nested variants found in inline asm string: '"
1060                << AsmStr << "'\n";
1061           exit(1);
1062         }
1063         CurVariant = 0;     // We're in the first variant now.
1064         break;
1065       case '|':
1066         ++LastEmitted;  // consume '|' character.
1067         if (CurVariant == -1) {
1068           cerr << "Found '|' character outside of variant in inline asm "
1069                << "string: '" << AsmStr << "'\n";
1070           exit(1);
1071         }
1072         ++CurVariant;   // We're in the next variant.
1073         break;
1074       case ')':         // $) -> same as GCC's } char.
1075         ++LastEmitted;  // consume ')' character.
1076         if (CurVariant == -1) {
1077           cerr << "Found '}' character outside of variant in inline asm "
1078                << "string: '" << AsmStr << "'\n";
1079           exit(1);
1080         }
1081         CurVariant = -1;
1082         break;
1083       }
1084       if (Done) break;
1085       
1086       bool HasCurlyBraces = false;
1087       if (*LastEmitted == '{') {     // ${variable}
1088         ++LastEmitted;               // Consume '{' character.
1089         HasCurlyBraces = true;
1090       }
1091       
1092       const char *IDStart = LastEmitted;
1093       char *IDEnd;
1094       errno = 0;
1095       long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1096       if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
1097         cerr << "Bad $ operand number in inline asm string: '" 
1098              << AsmStr << "'\n";
1099         exit(1);
1100       }
1101       LastEmitted = IDEnd;
1102       
1103       char Modifier[2] = { 0, 0 };
1104       
1105       if (HasCurlyBraces) {
1106         // If we have curly braces, check for a modifier character.  This
1107         // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1108         if (*LastEmitted == ':') {
1109           ++LastEmitted;    // Consume ':' character.
1110           if (*LastEmitted == 0) {
1111             cerr << "Bad ${:} expression in inline asm string: '" 
1112                  << AsmStr << "'\n";
1113             exit(1);
1114           }
1115           
1116           Modifier[0] = *LastEmitted;
1117           ++LastEmitted;    // Consume modifier character.
1118         }
1119         
1120         if (*LastEmitted != '}') {
1121           cerr << "Bad ${} expression in inline asm string: '" 
1122                << AsmStr << "'\n";
1123           exit(1);
1124         }
1125         ++LastEmitted;    // Consume '}' character.
1126       }
1127       
1128       if ((unsigned)Val >= NumOperands-1) {
1129         cerr << "Invalid $ operand number in inline asm string: '" 
1130              << AsmStr << "'\n";
1131         exit(1);
1132       }
1133       
1134       // Okay, we finally have a value number.  Ask the target to print this
1135       // operand!
1136       if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1137         unsigned OpNo = 1;
1138
1139         bool Error = false;
1140
1141         // Scan to find the machine operand number for the operand.
1142         for (; Val; --Val) {
1143           if (OpNo >= MI->getNumOperands()) break;
1144           unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
1145           OpNo += (OpFlags >> 3) + 1;
1146         }
1147
1148         if (OpNo >= MI->getNumOperands()) {
1149           Error = true;
1150         } else {
1151           unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
1152           ++OpNo;  // Skip over the ID number.
1153
1154           AsmPrinter *AP = const_cast<AsmPrinter*>(this);
1155           if ((OpFlags & 7) == 4 /*ADDR MODE*/) {
1156             Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1157                                               Modifier[0] ? Modifier : 0);
1158           } else {
1159             Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1160                                         Modifier[0] ? Modifier : 0);
1161           }
1162         }
1163         if (Error) {
1164           cerr << "Invalid operand found in inline asm: '"
1165                << AsmStr << "'\n";
1166           MI->dump();
1167           exit(1);
1168         }
1169       }
1170       break;
1171     }
1172     }
1173   }
1174   O << "\n\t" << TAI->getInlineAsmEnd() << "\n";
1175 }
1176
1177 /// printLabel - This method prints a local label used by debug and
1178 /// exception handling tables.
1179 void AsmPrinter::printLabel(const MachineInstr *MI) const {
1180   O << "\n"
1181     << TAI->getPrivateGlobalPrefix()
1182     << "label"
1183     << MI->getOperand(0).getImmedValue()
1184     << ":\n";
1185 }
1186
1187 /// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1188 /// instruction, using the specified assembler variant.  Targets should
1189 /// overried this to format as appropriate.
1190 bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
1191                                  unsigned AsmVariant, const char *ExtraCode) {
1192   // Target doesn't support this yet!
1193   return true;
1194 }
1195
1196 bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1197                                        unsigned AsmVariant,
1198                                        const char *ExtraCode) {
1199   // Target doesn't support this yet!
1200   return true;
1201 }
1202
1203 /// printBasicBlockLabel - This method prints the label for the specified
1204 /// MachineBasicBlock
1205 void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
1206                                       bool printColon,
1207                                       bool printComment) const {
1208   O << TAI->getPrivateGlobalPrefix() << "BB" << FunctionNumber << "_"
1209     << MBB->getNumber();
1210   if (printColon)
1211     O << ':';
1212   if (printComment && MBB->getBasicBlock())
1213     O << '\t' << TAI->getCommentString() << ' '
1214       << MBB->getBasicBlock()->getName();
1215 }
1216
1217 /// printSetLabel - This method prints a set label for the specified
1218 /// MachineBasicBlock
1219 void AsmPrinter::printSetLabel(unsigned uid, 
1220                                const MachineBasicBlock *MBB) const {
1221   if (!TAI->getSetDirective())
1222     return;
1223   
1224   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
1225     << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
1226   printBasicBlockLabel(MBB, false, false);
1227   O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
1228     << '_' << uid << '\n';
1229 }
1230
1231 void AsmPrinter::printSetLabel(unsigned uid, unsigned uid2,
1232                                const MachineBasicBlock *MBB) const {
1233   if (!TAI->getSetDirective())
1234     return;
1235   
1236   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
1237     << getFunctionNumber() << '_' << uid << '_' << uid2
1238     << "_set_" << MBB->getNumber() << ',';
1239   printBasicBlockLabel(MBB, false, false);
1240   O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
1241     << '_' << uid << '_' << uid2 << '\n';
1242 }
1243
1244 /// printDataDirective - This method prints the asm directive for the
1245 /// specified type.
1246 void AsmPrinter::printDataDirective(const Type *type) {
1247   const TargetData *TD = TM.getTargetData();
1248   switch (type->getTypeID()) {
1249   case Type::IntegerTyID: {
1250     unsigned BitWidth = cast<IntegerType>(type)->getBitWidth();
1251     if (BitWidth <= 8)
1252       O << TAI->getData8bitsDirective();
1253     else if (BitWidth <= 16)
1254       O << TAI->getData16bitsDirective();
1255     else if (BitWidth <= 32)
1256       O << TAI->getData32bitsDirective();
1257     else if (BitWidth <= 64) {
1258       assert(TAI->getData64bitsDirective() &&
1259              "Target cannot handle 64-bit constant exprs!");
1260       O << TAI->getData64bitsDirective();
1261     }
1262     break;
1263   }
1264   case Type::PointerTyID:
1265     if (TD->getPointerSize() == 8) {
1266       assert(TAI->getData64bitsDirective() &&
1267              "Target cannot handle 64-bit pointer exprs!");
1268       O << TAI->getData64bitsDirective();
1269     } else {
1270       O << TAI->getData32bitsDirective();
1271     }
1272     break;
1273   case Type::FloatTyID: case Type::DoubleTyID:
1274   case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID:
1275     assert (0 && "Should have already output floating point constant.");
1276   default:
1277     assert (0 && "Can't handle printing this type of thing");
1278     break;
1279   }
1280 }
1281