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