blob: 6e5dab7851fdc0791e19c298e2a134280ff6bc34 [file] [log] [blame]
Chris Lattnera80ba712004-08-16 23:15:22 +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
Evan Cheng932f0222006-03-03 02:04:29 +000014#include "llvm/CodeGen/AsmPrinter.h"
Evan Cheng246ae0d2006-03-01 22:18:09 +000015#include "llvm/Assembly/Writer.h"
Nate Begeman8cfa57b2005-12-06 06:18:55 +000016#include "llvm/DerivedTypes.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000017#include "llvm/Constants.h"
Chris Lattner450de392005-11-10 18:36:17 +000018#include "llvm/Module.h"
Chris Lattner3b4fd322005-11-21 08:25:09 +000019#include "llvm/CodeGen/MachineConstantPool.h"
Nate Begeman37efe672006-04-22 18:53:45 +000020#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000021#include "llvm/Support/Mangler.h"
Jim Laskeycb6682f2005-08-17 19:34:49 +000022#include "llvm/Support/MathExtras.h"
Owen Anderson07000c62006-05-12 06:33:49 +000023#include "llvm/Target/TargetData.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000024#include "llvm/Target/TargetMachine.h"
Duraid Madina2e096c12005-12-28 06:29:02 +000025#include <iostream>
Chris Lattner66099132006-02-01 22:41:11 +000026#include <cerrno>
Chris Lattnera80ba712004-08-16 23:15:22 +000027using namespace llvm;
28
Chris Lattnered138932005-12-13 06:32:10 +000029AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm)
30: FunctionNumber(0), O(o), TM(tm),
31 CommentString("#"),
32 GlobalPrefix(""),
33 PrivateGlobalPrefix("."),
34 GlobalVarAddrPrefix(""),
35 GlobalVarAddrSuffix(""),
36 FunctionAddrPrefix(""),
37 FunctionAddrSuffix(""),
Chris Lattner1c059972006-05-05 21:47:05 +000038 InlineAsmStart("#APP"),
39 InlineAsmEnd("#NO_APP"),
Chris Lattnered138932005-12-13 06:32:10 +000040 ZeroDirective("\t.zero\t"),
Jeff Cohenc6a057b2006-05-02 03:46:13 +000041 ZeroDirectiveSuffix(0),
Chris Lattnered138932005-12-13 06:32:10 +000042 AsciiDirective("\t.ascii\t"),
43 AscizDirective("\t.asciz\t"),
44 Data8bitsDirective("\t.byte\t"),
45 Data16bitsDirective("\t.short\t"),
46 Data32bitsDirective("\t.long\t"),
47 Data64bitsDirective("\t.quad\t"),
48 AlignDirective("\t.align\t"),
49 AlignmentIsInBytes(true),
50 SwitchToSectionDirective("\t.section\t"),
Chris Lattner7faec9b2006-05-09 05:33:48 +000051 TextSectionStartSuffix(""),
52 DataSectionStartSuffix(""),
53 SectionEndDirectiveSuffix(0),
Chris Lattnered138932005-12-13 06:32:10 +000054 ConstantPoolSection("\t.section .rodata\n"),
Nate Begeman37efe672006-04-22 18:53:45 +000055 JumpTableSection("\t.section .rodata\n"),
Chris Lattnered138932005-12-13 06:32:10 +000056 StaticCtorsSection("\t.section .ctors,\"aw\",@progbits"),
57 StaticDtorsSection("\t.section .dtors,\"aw\",@progbits"),
Evan Cheng2d2cec12006-06-29 00:26:09 +000058 FourByteConstantSection(0),
59 EightByteConstantSection(0),
60 SixteenByteConstantSection(0),
Chris Lattnered138932005-12-13 06:32:10 +000061 LCOMMDirective(0),
62 COMMDirective("\t.comm\t"),
63 COMMDirectiveTakesAlignment(true),
64 HasDotTypeDotSizeDirective(true) {
65}
66
67
Chris Lattner4632d7a2006-05-09 04:59:56 +000068/// SwitchToTextSection - Switch to the specified text section of the executable
69/// if we are not already in it!
Chris Lattnerac28fbd2005-11-21 07:06:27 +000070///
Chris Lattner4632d7a2006-05-09 04:59:56 +000071void AsmPrinter::SwitchToTextSection(const char *NewSection,
72 const GlobalValue *GV) {
Chris Lattnerac28fbd2005-11-21 07:06:27 +000073 std::string NS;
Chris Lattnera7090ae2006-05-09 05:24:50 +000074 if (GV && GV->hasSection())
Chris Lattnerc8d37c62006-05-09 16:41:59 +000075 NS = SwitchToSectionDirective + GV->getSection();
Chris Lattnera7090ae2006-05-09 05:24:50 +000076 else
77 NS = NewSection;
78
79 // If we're already in this section, we're done.
80 if (CurrentSection == NS) return;
Jeff Cohen51b776d2006-05-02 03:58:45 +000081
Chris Lattner7faec9b2006-05-09 05:33:48 +000082 // Close the current section, if applicable.
83 if (SectionEndDirectiveSuffix && !CurrentSection.empty())
84 O << CurrentSection << SectionEndDirectiveSuffix << "\n";
Jeff Cohen51b776d2006-05-02 03:58:45 +000085
Chris Lattner7faec9b2006-05-09 05:33:48 +000086 CurrentSection = NS;
87
88 if (!CurrentSection.empty())
89 O << CurrentSection << TextSectionStartSuffix << '\n';
Chris Lattnerac28fbd2005-11-21 07:06:27 +000090}
91
Chris Lattner4632d7a2006-05-09 04:59:56 +000092/// SwitchToTextSection - Switch to the specified text section of the executable
93/// if we are not already in it!
94///
95void AsmPrinter::SwitchToDataSection(const char *NewSection,
96 const GlobalValue *GV) {
97 std::string NS;
Chris Lattnerb81cb612006-05-09 05:23:12 +000098 if (GV && GV->hasSection())
99 NS = SwitchToSectionDirective + GV->getSection();
100 else
101 NS = NewSection;
Chris Lattner4632d7a2006-05-09 04:59:56 +0000102
Chris Lattnerb81cb612006-05-09 05:23:12 +0000103 // If we're already in this section, we're done.
104 if (CurrentSection == NS) return;
105
Chris Lattner7faec9b2006-05-09 05:33:48 +0000106 // Close the current section, if applicable.
107 if (SectionEndDirectiveSuffix && !CurrentSection.empty())
108 O << CurrentSection << SectionEndDirectiveSuffix << "\n";
109
110 CurrentSection = NS;
Chris Lattner4632d7a2006-05-09 04:59:56 +0000111
Chris Lattner7faec9b2006-05-09 05:33:48 +0000112 if (!CurrentSection.empty())
113 O << CurrentSection << DataSectionStartSuffix << '\n';
Chris Lattner4632d7a2006-05-09 04:59:56 +0000114}
115
116
Chris Lattnera80ba712004-08-16 23:15:22 +0000117bool AsmPrinter::doInitialization(Module &M) {
Chris Lattneraf2bf0a2004-08-17 06:06:19 +0000118 Mang = new Mangler(M, GlobalPrefix);
Chris Lattner2c1b1592006-01-23 23:47:53 +0000119
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000120 if (!M.getModuleInlineAsm().empty())
121 O << CommentString << " Start of file scope inline assembly\n"
122 << M.getModuleInlineAsm()
123 << "\n" << CommentString << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000124
Chris Lattner4632d7a2006-05-09 04:59:56 +0000125 SwitchToDataSection("", 0); // Reset back to no section.
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000126
127 if (MachineDebugInfo *DebugInfo = getAnalysisToUpdate<MachineDebugInfo>()) {
128 DebugInfo->AnalyzeModule(M);
129 }
130
Chris Lattnera80ba712004-08-16 23:15:22 +0000131 return false;
132}
133
134bool AsmPrinter::doFinalization(Module &M) {
135 delete Mang; Mang = 0;
136 return false;
137}
138
Chris Lattner25045bd2005-11-21 07:51:36 +0000139void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnera80ba712004-08-16 23:15:22 +0000140 // What's my mangled name?
Chris Lattner450de392005-11-10 18:36:17 +0000141 CurrentFnName = Mang->getValueName(MF.getFunction());
Chris Lattner77bc2282005-11-21 08:13:27 +0000142 IncrementFunctionNumber();
Chris Lattnera80ba712004-08-16 23:15:22 +0000143}
144
Chris Lattner3b4fd322005-11-21 08:25:09 +0000145/// EmitConstantPool - Print to the current output stream assembly
146/// representations of the constants in the constant pool MCP. This is
147/// used to print out constants which have been "spilled to memory" by
148/// the code generator.
149///
150void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000151 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000152 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000153
154 // Some targets require 4-, 8-, and 16- byte constant literals to be placed
155 // in special sections.
156 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > FourByteCPs;
157 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > EightByteCPs;
158 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > SixteenByteCPs;
159 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > OtherCPs;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000160 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Evan Cheng2d2cec12006-06-29 00:26:09 +0000161 MachineConstantPoolEntry CPE = CP[i];
162 const Constant *CV = CPE.Val;
163 const Type *Ty = CV->getType();
164 if (FourByteConstantSection &&
165 TM.getTargetData()->getTypeSize(Ty) == 4)
166 FourByteCPs.push_back(std::make_pair(CPE, i));
167 else if (EightByteConstantSection &&
168 TM.getTargetData()->getTypeSize(Ty) == 8)
169 EightByteCPs.push_back(std::make_pair(CPE, i));
170 else if (SixteenByteConstantSection &&
171 TM.getTargetData()->getTypeSize(Ty) == 16)
172 SixteenByteCPs.push_back(std::make_pair(CPE, i));
173 else
174 OtherCPs.push_back(std::make_pair(CPE, i));
175 }
176
177 unsigned Alignment = MCP->getConstantPoolAlignment();
178 EmitConstantPool(Alignment, FourByteConstantSection, FourByteCPs);
179 EmitConstantPool(Alignment, EightByteConstantSection, EightByteCPs);
180 EmitConstantPool(Alignment, SixteenByteConstantSection, SixteenByteCPs);
181 EmitConstantPool(Alignment, ConstantPoolSection, OtherCPs);
182}
183
184void AsmPrinter::EmitConstantPool(unsigned Alignment, const char *Section,
185 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > &CP) {
186 if (CP.empty()) return;
187
188 SwitchToDataSection(Section, 0);
189 EmitAlignment(Alignment);
190 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
191 O << PrivateGlobalPrefix << "CPI" << getFunctionNumber() << '_'
192 << CP[i].second << ":\t\t\t\t\t" << CommentString << " ";
193 WriteTypeSymbolic(O, CP[i].first.Val->getType(), 0) << '\n';
194 EmitGlobalConstant(CP[i].first.Val);
Chris Lattner3029f922006-02-09 04:46:04 +0000195 if (i != e-1) {
Evan Cheng2d2cec12006-06-29 00:26:09 +0000196 unsigned EntSize =
197 TM.getTargetData()->getTypeSize(CP[i].first.Val->getType());
198 unsigned ValEnd = CP[i].first.Offset + EntSize;
Chris Lattner3029f922006-02-09 04:46:04 +0000199 // Emit inter-object padding for alignment.
Evan Cheng2d2cec12006-06-29 00:26:09 +0000200 EmitZeros(CP[i+1].first.Offset-ValEnd);
Chris Lattner3029f922006-02-09 04:46:04 +0000201 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000202 }
203}
204
Nate Begeman37efe672006-04-22 18:53:45 +0000205/// EmitJumpTableInfo - Print assembly representations of the jump tables used
206/// by the current function to the current output stream.
207///
208void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI) {
209 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
210 if (JT.empty()) return;
Owen Andersona69571c2006-05-03 01:29:57 +0000211 const TargetData *TD = TM.getTargetData();
Nate Begeman37efe672006-04-22 18:53:45 +0000212
213 // FIXME: someday we need to handle PIC jump tables
214 assert((TM.getRelocationModel() == Reloc::Static ||
215 TM.getRelocationModel() == Reloc::DynamicNoPIC) &&
216 "Unhandled relocation model emitting jump table information!");
217
Chris Lattner4632d7a2006-05-09 04:59:56 +0000218 SwitchToDataSection(JumpTableSection, 0);
Owen Andersona69571c2006-05-03 01:29:57 +0000219 EmitAlignment(Log2_32(TD->getPointerAlignment()));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000220
221 // Pick the directive to use based on the pointer size. FIXME: when we support
222 // PIC jumptables, this should always use the 32-bit directive for label
223 // differences.
224 const char *PtrDataDirective = Data32bitsDirective;
225 if (TD->getPointerSize() == 8)
226 PtrDataDirective = Data64bitsDirective;
227
Nate Begeman37efe672006-04-22 18:53:45 +0000228 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
229 O << PrivateGlobalPrefix << "JTI" << getFunctionNumber() << '_' << i
230 << ":\n";
231 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
232 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
Chris Lattner0c4e6782006-07-15 01:34:12 +0000233 O << PtrDataDirective << ' ';
Nate Begeman37efe672006-04-22 18:53:45 +0000234 printBasicBlockLabel(JTBBs[ii]);
235 O << '\n';
236 }
237 }
238}
239
Chris Lattnered138932005-12-13 06:32:10 +0000240/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
241/// special global used by LLVM. If so, emit it and return true, otherwise
242/// do nothing and return false.
243bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Jim Laskey78098112006-03-07 22:00:35 +0000244 // Ignore debug and non-emitted data.
245 if (GV->getSection() == "llvm.metadata") return true;
246
247 if (!GV->hasAppendingLinkage()) return false;
248
249 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000250
251 if (GV->getName() == "llvm.used")
252 return true; // No need to emit this at all.
253
Chris Lattner5166b822006-01-12 19:17:23 +0000254 if (GV->getName() == "llvm.global_ctors" && GV->use_empty()) {
Chris Lattner4632d7a2006-05-09 04:59:56 +0000255 SwitchToDataSection(StaticCtorsSection, 0);
Chris Lattnered138932005-12-13 06:32:10 +0000256 EmitAlignment(2, 0);
257 EmitXXStructorList(GV->getInitializer());
258 return true;
259 }
260
Chris Lattner5166b822006-01-12 19:17:23 +0000261 if (GV->getName() == "llvm.global_dtors" && GV->use_empty()) {
Chris Lattner4632d7a2006-05-09 04:59:56 +0000262 SwitchToDataSection(StaticDtorsSection, 0);
Chris Lattnered138932005-12-13 06:32:10 +0000263 EmitAlignment(2, 0);
264 EmitXXStructorList(GV->getInitializer());
265 return true;
266 }
267
268 return false;
269}
270
271/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
272/// function pointers, ignoring the init priority.
273void AsmPrinter::EmitXXStructorList(Constant *List) {
274 // Should be an array of '{ int, void ()* }' structs. The first value is the
275 // init priority, which we ignore.
276 if (!isa<ConstantArray>(List)) return;
277 ConstantArray *InitList = cast<ConstantArray>(List);
278 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
279 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
280 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000281
282 if (CS->getOperand(1)->isNullValue())
283 return; // Found a null terminator, exit printing.
284 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000285 EmitGlobalConstant(CS->getOperand(1));
286 }
287}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000288
Chris Lattner4d57e0c2006-02-05 01:29:18 +0000289/// getPreferredAlignmentLog - Return the preferred alignment of the
290/// specified global, returned in log form. This includes an explicitly
291/// requested alignment (if the global has one).
292unsigned AsmPrinter::getPreferredAlignmentLog(const GlobalVariable *GV) const {
Jim Laskey35f8c202006-06-15 13:10:58 +0000293 const Type *ElemType = GV->getType()->getElementType();
294 unsigned Alignment = TM.getTargetData()->getTypeAlignmentShift(ElemType);
Chris Lattner4d57e0c2006-02-05 01:29:18 +0000295 if (GV->getAlignment() > (1U << Alignment))
296 Alignment = Log2_32(GV->getAlignment());
297
Chris Lattner519ea2a2006-02-05 01:46:49 +0000298 if (GV->hasInitializer()) {
Jim Laskeyd5a932b2006-06-15 19:37:14 +0000299 // Always round up alignment of global doubles to 8 bytes.
300 if (GV->getType()->getElementType() == Type::DoubleTy && Alignment < 3)
301 Alignment = 3;
Chris Lattner519ea2a2006-02-05 01:46:49 +0000302 if (Alignment < 4) {
303 // If the global is not external, see if it is large. If so, give it a
304 // larger alignment.
Jim Laskey35f8c202006-06-15 13:10:58 +0000305 if (TM.getTargetData()->getTypeSize(ElemType) > 128)
Chris Lattner519ea2a2006-02-05 01:46:49 +0000306 Alignment = 4; // 16-byte alignment.
307 }
Chris Lattner4d57e0c2006-02-05 01:29:18 +0000308 }
309 return Alignment;
310}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000311
Chris Lattner25045bd2005-11-21 07:51:36 +0000312// EmitAlignment - Emit an alignment directive to the specified power of two.
313void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
Chris Lattnera1ab72d2005-11-14 19:00:06 +0000314 if (GV && GV->getAlignment())
315 NumBits = Log2_32(GV->getAlignment());
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000316 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattnerbfddc202004-08-17 19:14:29 +0000317 if (AlignmentIsInBytes) NumBits = 1 << NumBits;
318 O << AlignDirective << NumBits << "\n";
319}
320
Chris Lattner25045bd2005-11-21 07:51:36 +0000321/// EmitZeros - Emit a block of zeros.
Chris Lattner7d057a32004-08-17 21:38:40 +0000322///
Chris Lattner25045bd2005-11-21 07:51:36 +0000323void AsmPrinter::EmitZeros(uint64_t NumZeros) const {
Chris Lattner7d057a32004-08-17 21:38:40 +0000324 if (NumZeros) {
Jeff Cohenc6a057b2006-05-02 03:46:13 +0000325 if (ZeroDirective) {
326 O << ZeroDirective << NumZeros;
327 if (ZeroDirectiveSuffix)
328 O << ZeroDirectiveSuffix;
329 O << "\n";
330 } else {
Chris Lattner7d057a32004-08-17 21:38:40 +0000331 for (; NumZeros; --NumZeros)
332 O << Data8bitsDirective << "0\n";
333 }
334 }
335}
336
Chris Lattnera80ba712004-08-16 23:15:22 +0000337// Print out the specified constant, without a storage class. Only the
338// constants valid in constant expressions can occur here.
Chris Lattner25045bd2005-11-21 07:51:36 +0000339void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000340 if (CV->isNullValue() || isa<UndefValue>(CV))
Chris Lattnera80ba712004-08-16 23:15:22 +0000341 O << "0";
342 else if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
343 assert(CB == ConstantBool::True);
344 O << "1";
345 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
346 if (((CI->getValue() << 32) >> 32) == CI->getValue())
347 O << CI->getValue();
348 else
Duraid Madina45606572005-05-15 13:05:48 +0000349 O << (uint64_t)CI->getValue();
Chris Lattnera80ba712004-08-16 23:15:22 +0000350 else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
351 O << CI->getValue();
Chris Lattner450de392005-11-10 18:36:17 +0000352 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Duraid Madina855a5192005-04-02 12:21:51 +0000353 // This is a constant address for a global variable or function. Use the
354 // name of the variable or function as the address value, possibly
355 // decorating it with GlobalVarAddrPrefix/Suffix or
356 // FunctionAddrPrefix/Suffix (these all default to "" )
Chris Lattner450de392005-11-10 18:36:17 +0000357 if (isa<Function>(GV))
358 O << FunctionAddrPrefix << Mang->getValueName(GV) << FunctionAddrSuffix;
Duraid Madina855a5192005-04-02 12:21:51 +0000359 else
Chris Lattner450de392005-11-10 18:36:17 +0000360 O << GlobalVarAddrPrefix << Mang->getValueName(GV) << GlobalVarAddrSuffix;
Duraid Madina855a5192005-04-02 12:21:51 +0000361 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Owen Andersona69571c2006-05-03 01:29:57 +0000362 const TargetData *TD = TM.getTargetData();
Chris Lattnera80ba712004-08-16 23:15:22 +0000363 switch(CE->getOpcode()) {
364 case Instruction::GetElementPtr: {
365 // generate a symbolic expression for the byte address
366 const Constant *ptrVal = CE->getOperand(0);
367 std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
Owen Andersona69571c2006-05-03 01:29:57 +0000368 if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), idxVec)) {
Chris Lattner27e19212005-02-14 21:40:26 +0000369 if (Offset)
370 O << "(";
Chris Lattner25045bd2005-11-21 07:51:36 +0000371 EmitConstantValueOnly(ptrVal);
Chris Lattner27e19212005-02-14 21:40:26 +0000372 if (Offset > 0)
373 O << ") + " << Offset;
374 else if (Offset < 0)
375 O << ") - " << -Offset;
Chris Lattnera80ba712004-08-16 23:15:22 +0000376 } else {
Chris Lattner25045bd2005-11-21 07:51:36 +0000377 EmitConstantValueOnly(ptrVal);
Chris Lattnera80ba712004-08-16 23:15:22 +0000378 }
379 break;
380 }
381 case Instruction::Cast: {
382 // Support only non-converting or widening casts for now, that is, ones
383 // that do not involve a change in value. This assertion is really gross,
384 // and may not even be a complete check.
385 Constant *Op = CE->getOperand(0);
386 const Type *OpTy = Op->getType(), *Ty = CE->getType();
387
388 // Remember, kids, pointers can be losslessly converted back and forth
389 // into 32-bit or wider integers, regardless of signedness. :-P
390 assert(((isa<PointerType>(OpTy)
391 && (Ty == Type::LongTy || Ty == Type::ULongTy
392 || Ty == Type::IntTy || Ty == Type::UIntTy))
393 || (isa<PointerType>(Ty)
394 && (OpTy == Type::LongTy || OpTy == Type::ULongTy
395 || OpTy == Type::IntTy || OpTy == Type::UIntTy))
Owen Andersona69571c2006-05-03 01:29:57 +0000396 || (((TD->getTypeSize(Ty) >= TD->getTypeSize(OpTy))
Chris Lattnera80ba712004-08-16 23:15:22 +0000397 && OpTy->isLosslesslyConvertibleTo(Ty))))
398 && "FIXME: Don't yet support this kind of constant cast expr");
Chris Lattner25045bd2005-11-21 07:51:36 +0000399 EmitConstantValueOnly(Op);
Chris Lattnera80ba712004-08-16 23:15:22 +0000400 break;
401 }
402 case Instruction::Add:
403 O << "(";
Chris Lattner25045bd2005-11-21 07:51:36 +0000404 EmitConstantValueOnly(CE->getOperand(0));
Chris Lattnera80ba712004-08-16 23:15:22 +0000405 O << ") + (";
Chris Lattner25045bd2005-11-21 07:51:36 +0000406 EmitConstantValueOnly(CE->getOperand(1));
Chris Lattnera80ba712004-08-16 23:15:22 +0000407 O << ")";
408 break;
409 default:
410 assert(0 && "Unsupported operator!");
411 }
412 } else {
413 assert(0 && "Unknown constant value!");
414 }
415}
Chris Lattner1b7e2352004-08-17 06:36:49 +0000416
417/// toOctal - Convert the low order bits of X into an octal digit.
418///
419static inline char toOctal(int X) {
420 return (X&7)+'0';
421}
422
Chris Lattner2980cef2005-11-10 18:06:33 +0000423/// printAsCString - Print the specified array as a C compatible string, only if
Chris Lattner1b7e2352004-08-17 06:36:49 +0000424/// the predicate isString is true.
425///
Chris Lattner2980cef2005-11-10 18:06:33 +0000426static void printAsCString(std::ostream &O, const ConstantArray *CVA,
427 unsigned LastElt) {
Chris Lattner1b7e2352004-08-17 06:36:49 +0000428 assert(CVA->isString() && "Array is not string compatible!");
429
430 O << "\"";
Chris Lattner2980cef2005-11-10 18:06:33 +0000431 for (unsigned i = 0; i != LastElt; ++i) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000432 unsigned char C =
Chris Lattnerdea18b62005-01-08 19:59:10 +0000433 (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
Chris Lattner1b7e2352004-08-17 06:36:49 +0000434
435 if (C == '"') {
436 O << "\\\"";
437 } else if (C == '\\') {
438 O << "\\\\";
439 } else if (isprint(C)) {
440 O << C;
441 } else {
442 switch(C) {
443 case '\b': O << "\\b"; break;
444 case '\f': O << "\\f"; break;
445 case '\n': O << "\\n"; break;
446 case '\r': O << "\\r"; break;
447 case '\t': O << "\\t"; break;
448 default:
449 O << '\\';
450 O << toOctal(C >> 6);
451 O << toOctal(C >> 3);
452 O << toOctal(C >> 0);
453 break;
454 }
455 }
456 }
457 O << "\"";
458}
459
Jeff Cohenc884db42006-05-02 01:16:28 +0000460/// EmitString - Emit a zero-byte-terminated string constant.
461///
462void AsmPrinter::EmitString(const ConstantArray *CVA) const {
463 unsigned NumElts = CVA->getNumOperands();
464 if (AscizDirective && NumElts &&
465 cast<ConstantInt>(CVA->getOperand(NumElts-1))->getRawValue() == 0) {
466 O << AscizDirective;
467 printAsCString(O, CVA, NumElts-1);
468 } else {
469 O << AsciiDirective;
470 printAsCString(O, CVA, NumElts);
471 }
472 O << "\n";
473}
474
Chris Lattner25045bd2005-11-21 07:51:36 +0000475/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Chris Lattner1b7e2352004-08-17 06:36:49 +0000476///
Chris Lattner25045bd2005-11-21 07:51:36 +0000477void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
Owen Andersona69571c2006-05-03 01:29:57 +0000478 const TargetData *TD = TM.getTargetData();
Chris Lattner1b7e2352004-08-17 06:36:49 +0000479
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000480 if (CV->isNullValue() || isa<UndefValue>(CV)) {
Owen Andersona69571c2006-05-03 01:29:57 +0000481 EmitZeros(TD->getTypeSize(CV->getType()));
Chris Lattner1b7e2352004-08-17 06:36:49 +0000482 return;
483 } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
484 if (CVA->isString()) {
Jeff Cohenc884db42006-05-02 01:16:28 +0000485 EmitString(CVA);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000486 } else { // Not a string. Print the values in successive locations
487 for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
Chris Lattner25045bd2005-11-21 07:51:36 +0000488 EmitGlobalConstant(CVA->getOperand(i));
Chris Lattner1b7e2352004-08-17 06:36:49 +0000489 }
490 return;
491 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
492 // Print the fields in successive locations. Pad to align if needed!
Owen Andersona69571c2006-05-03 01:29:57 +0000493 const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
Chris Lattnerdea18b62005-01-08 19:59:10 +0000494 uint64_t sizeSoFar = 0;
Chris Lattner1b7e2352004-08-17 06:36:49 +0000495 for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
496 const Constant* field = CVS->getOperand(i);
497
498 // Check if padding is needed and insert one or more 0s.
Owen Andersona69571c2006-05-03 01:29:57 +0000499 uint64_t fieldSize = TD->getTypeSize(field->getType());
Chris Lattnerdea18b62005-01-08 19:59:10 +0000500 uint64_t padSize = ((i == e-1? cvsLayout->StructSize
Chris Lattner1b7e2352004-08-17 06:36:49 +0000501 : cvsLayout->MemberOffsets[i+1])
502 - cvsLayout->MemberOffsets[i]) - fieldSize;
503 sizeSoFar += fieldSize + padSize;
504
505 // Now print the actual field value
Chris Lattner25045bd2005-11-21 07:51:36 +0000506 EmitGlobalConstant(field);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000507
508 // Insert the field padding unless it's zero bytes...
Chris Lattner25045bd2005-11-21 07:51:36 +0000509 EmitZeros(padSize);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000510 }
511 assert(sizeSoFar == cvsLayout->StructSize &&
512 "Layout of constant struct may be incorrect!");
513 return;
514 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
515 // FP Constants are printed as integer constants to avoid losing
516 // precision...
517 double Val = CFP->getValue();
518 if (CFP->getType() == Type::DoubleTy) {
Chris Lattnere85a5a92004-08-17 06:48:16 +0000519 if (Data64bitsDirective)
Jim Laskeycb6682f2005-08-17 19:34:49 +0000520 O << Data64bitsDirective << DoubleToBits(Val) << "\t" << CommentString
Chris Lattner7d057a32004-08-17 21:38:40 +0000521 << " double value: " << Val << "\n";
Owen Andersona69571c2006-05-03 01:29:57 +0000522 else if (TD->isBigEndian()) {
Jim Laskeycb6682f2005-08-17 19:34:49 +0000523 O << Data32bitsDirective << unsigned(DoubleToBits(Val) >> 32)
Chris Lattnerf746a7d2004-08-18 02:22:55 +0000524 << "\t" << CommentString << " double most significant word "
Chris Lattner0554fb62004-08-17 16:27:05 +0000525 << Val << "\n";
Jim Laskeycb6682f2005-08-17 19:34:49 +0000526 O << Data32bitsDirective << unsigned(DoubleToBits(Val))
Chris Lattnerf746a7d2004-08-18 02:22:55 +0000527 << "\t" << CommentString << " double least significant word "
Chris Lattner0554fb62004-08-17 16:27:05 +0000528 << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000529 } else {
Jim Laskeycb6682f2005-08-17 19:34:49 +0000530 O << Data32bitsDirective << unsigned(DoubleToBits(Val))
Chris Lattnerf746a7d2004-08-18 02:22:55 +0000531 << "\t" << CommentString << " double least significant word " << Val
Chris Lattner0554fb62004-08-17 16:27:05 +0000532 << "\n";
Jim Laskeycb6682f2005-08-17 19:34:49 +0000533 O << Data32bitsDirective << unsigned(DoubleToBits(Val) >> 32)
Chris Lattnerf746a7d2004-08-18 02:22:55 +0000534 << "\t" << CommentString << " double most significant word " << Val
Chris Lattner0554fb62004-08-17 16:27:05 +0000535 << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000536 }
537 return;
538 } else {
Jim Laskeycb6682f2005-08-17 19:34:49 +0000539 O << Data32bitsDirective << FloatToBits(Val) << "\t" << CommentString
Chris Lattner0554fb62004-08-17 16:27:05 +0000540 << " float " << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000541 return;
542 }
543 } else if (CV->getType() == Type::ULongTy || CV->getType() == Type::LongTy) {
544 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
545 uint64_t Val = CI->getRawValue();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000546
Chris Lattnere85a5a92004-08-17 06:48:16 +0000547 if (Data64bitsDirective)
548 O << Data64bitsDirective << Val << "\n";
Owen Andersona69571c2006-05-03 01:29:57 +0000549 else if (TD->isBigEndian()) {
Chris Lattner1b7e2352004-08-17 06:36:49 +0000550 O << Data32bitsDirective << unsigned(Val >> 32)
Chris Lattnerf746a7d2004-08-18 02:22:55 +0000551 << "\t" << CommentString << " Double-word most significant word "
Chris Lattner0554fb62004-08-17 16:27:05 +0000552 << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000553 O << Data32bitsDirective << unsigned(Val)
Chris Lattnerf746a7d2004-08-18 02:22:55 +0000554 << "\t" << CommentString << " Double-word least significant word "
Chris Lattner0554fb62004-08-17 16:27:05 +0000555 << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000556 } else {
557 O << Data32bitsDirective << unsigned(Val)
Chris Lattnerf746a7d2004-08-18 02:22:55 +0000558 << "\t" << CommentString << " Double-word least significant word "
Chris Lattner0554fb62004-08-17 16:27:05 +0000559 << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000560 O << Data32bitsDirective << unsigned(Val >> 32)
Chris Lattnerf746a7d2004-08-18 02:22:55 +0000561 << "\t" << CommentString << " Double-word most significant word "
Chris Lattner0554fb62004-08-17 16:27:05 +0000562 << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000563 }
564 return;
565 }
Nate Begeman8cfa57b2005-12-06 06:18:55 +0000566 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
567 const PackedType *PTy = CP->getType();
568
569 for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
570 EmitGlobalConstant(CP->getOperand(I));
571
572 return;
Chris Lattner1b7e2352004-08-17 06:36:49 +0000573 }
574
575 const Type *type = CV->getType();
Chris Lattner1b7e2352004-08-17 06:36:49 +0000576 switch (type->getTypeID()) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000577 case Type::BoolTyID:
Chris Lattner1b7e2352004-08-17 06:36:49 +0000578 case Type::UByteTyID: case Type::SByteTyID:
579 O << Data8bitsDirective;
580 break;
581 case Type::UShortTyID: case Type::ShortTyID:
582 O << Data16bitsDirective;
583 break;
Chris Lattner1b7e2352004-08-17 06:36:49 +0000584 case Type::PointerTyID:
Owen Andersona69571c2006-05-03 01:29:57 +0000585 if (TD->getPointerSize() == 8) {
Evan Chenga9767f62006-06-15 08:10:56 +0000586 assert(Data64bitsDirective &&
587 "Target cannot handle 64-bit pointer exprs!");
Andrew Lenharth571c9c32005-02-04 13:47:16 +0000588 O << Data64bitsDirective;
589 break;
590 }
591 //Fall through for pointer size == int size
Chris Lattner1b7e2352004-08-17 06:36:49 +0000592 case Type::UIntTyID: case Type::IntTyID:
593 O << Data32bitsDirective;
594 break;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000595 case Type::ULongTyID: case Type::LongTyID:
Chris Lattner660538c2005-08-08 04:26:32 +0000596 assert(Data64bitsDirective &&"Target cannot handle 64-bit constant exprs!");
597 O << Data64bitsDirective;
598 break;
Chris Lattner1b7e2352004-08-17 06:36:49 +0000599 case Type::FloatTyID: case Type::DoubleTyID:
600 assert (0 && "Should have already output floating point constant.");
601 default:
602 assert (0 && "Can't handle printing this type of thing");
603 break;
604 }
Chris Lattner25045bd2005-11-21 07:51:36 +0000605 EmitConstantValueOnly(CV);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000606 O << "\n";
607}
Chris Lattner0264d1a2006-01-27 02:10:10 +0000608
609/// printInlineAsm - This method formats and prints the specified machine
610/// instruction that is an inline asm.
611void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattner1c059972006-05-05 21:47:05 +0000612 O << InlineAsmStart << "\n\t";
Chris Lattnerf2b67cf2006-01-30 23:00:08 +0000613 unsigned NumOperands = MI->getNumOperands();
614
615 // Count the number of register definitions.
616 unsigned NumDefs = 0;
617 for (; MI->getOperand(NumDefs).isDef(); ++NumDefs)
618 assert(NumDefs != NumOperands-1 && "No asm string?");
619
620 assert(MI->getOperand(NumDefs).isExternalSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +0000621
622 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +0000623 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +0000624
625 // The variant of the current asmprinter: FIXME: change.
626 int AsmPrinterVariant = 0;
Chris Lattnerf2b67cf2006-01-30 23:00:08 +0000627
Chris Lattner66099132006-02-01 22:41:11 +0000628 int CurVariant = -1; // The number of the {.|.|.} region we are in.
629 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +0000630
Chris Lattner66099132006-02-01 22:41:11 +0000631 while (*LastEmitted) {
632 switch (*LastEmitted) {
633 default: {
634 // Not a special case, emit the string section literally.
635 const char *LiteralEnd = LastEmitted+1;
636 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +0000637 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +0000638 ++LiteralEnd;
639 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
640 O.write(LastEmitted, LiteralEnd-LastEmitted);
641 LastEmitted = LiteralEnd;
642 break;
643 }
Chris Lattner1c059972006-05-05 21:47:05 +0000644 case '\n':
645 ++LastEmitted; // Consume newline character.
646 O << "\n\t"; // Indent code with newline.
647 break;
Chris Lattner66099132006-02-01 22:41:11 +0000648 case '$': {
649 ++LastEmitted; // Consume '$' character.
650 if (*LastEmitted == '$') { // $$ -> $
651 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
652 O << '$';
653 ++LastEmitted; // Consume second '$' character.
654 break;
655 }
656
657 bool HasCurlyBraces = false;
658 if (*LastEmitted == '{') { // ${variable}
659 ++LastEmitted; // Consume '{' character.
660 HasCurlyBraces = true;
661 }
662
663 const char *IDStart = LastEmitted;
664 char *IDEnd;
665 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
666 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
667 std::cerr << "Bad $ operand number in inline asm string: '"
668 << AsmStr << "'\n";
669 exit(1);
670 }
671 LastEmitted = IDEnd;
672
Chris Lattnera36cb0a2006-02-06 22:17:23 +0000673 char Modifier[2] = { 0, 0 };
674
Chris Lattner66099132006-02-01 22:41:11 +0000675 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +0000676 // If we have curly braces, check for a modifier character. This
677 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
678 if (*LastEmitted == ':') {
679 ++LastEmitted; // Consume ':' character.
680 if (*LastEmitted == 0) {
681 std::cerr << "Bad ${:} expression in inline asm string: '"
682 << AsmStr << "'\n";
683 exit(1);
684 }
685
686 Modifier[0] = *LastEmitted;
687 ++LastEmitted; // Consume modifier character.
688 }
689
Chris Lattner66099132006-02-01 22:41:11 +0000690 if (*LastEmitted != '}') {
691 std::cerr << "Bad ${} expression in inline asm string: '"
692 << AsmStr << "'\n";
693 exit(1);
694 }
695 ++LastEmitted; // Consume '}' character.
696 }
697
698 if ((unsigned)Val >= NumOperands-1) {
699 std::cerr << "Invalid $ operand number in inline asm string: '"
700 << AsmStr << "'\n";
701 exit(1);
702 }
703
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000704 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +0000705 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000706 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
707 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +0000708
709 bool Error = false;
710
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000711 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +0000712 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +0000713 if (OpNo >= MI->getNumOperands()) break;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +0000714 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
715 OpNo += (OpFlags >> 3) + 1;
716 }
Chris Lattnerdd260332006-02-24 20:21:58 +0000717
Chris Lattnerfd561cd2006-06-08 18:00:47 +0000718 if (OpNo >= MI->getNumOperands()) {
719 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +0000720 } else {
Chris Lattnerfd561cd2006-06-08 18:00:47 +0000721 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
722 ++OpNo; // Skip over the ID number.
723
724 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
725 if ((OpFlags & 7) == 4 /*ADDR MODE*/) {
726 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
727 Modifier[0] ? Modifier : 0);
728 } else {
729 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
730 Modifier[0] ? Modifier : 0);
731 }
Chris Lattnerdd260332006-02-24 20:21:58 +0000732 }
733 if (Error) {
Chris Lattner66099132006-02-01 22:41:11 +0000734 std::cerr << "Invalid operand found in inline asm: '"
735 << AsmStr << "'\n";
736 MI->dump();
737 exit(1);
738 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +0000739 }
Chris Lattner66099132006-02-01 22:41:11 +0000740 break;
741 }
742 case '{':
743 ++LastEmitted; // Consume '{' character.
744 if (CurVariant != -1) {
745 std::cerr << "Nested variants found in inline asm string: '"
746 << AsmStr << "'\n";
747 exit(1);
748 }
749 CurVariant = 0; // We're in the first variant now.
750 break;
751 case '|':
752 ++LastEmitted; // consume '|' character.
753 if (CurVariant == -1) {
754 std::cerr << "Found '|' character outside of variant in inline asm "
755 << "string: '" << AsmStr << "'\n";
756 exit(1);
757 }
758 ++CurVariant; // We're in the next variant.
759 break;
760 case '}':
761 ++LastEmitted; // consume '}' character.
762 if (CurVariant == -1) {
763 std::cerr << "Found '}' character outside of variant in inline asm "
764 << "string: '" << AsmStr << "'\n";
765 exit(1);
766 }
767 CurVariant = -1;
768 break;
769 }
770 }
Chris Lattner1c059972006-05-05 21:47:05 +0000771 O << "\n\t" << InlineAsmEnd << "\n";
Chris Lattner66099132006-02-01 22:41:11 +0000772}
773
774/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
775/// instruction, using the specified assembler variant. Targets should
776/// overried this to format as appropriate.
777bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +0000778 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +0000779 // Target doesn't support this yet!
780 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +0000781}
Chris Lattnerdd260332006-02-24 20:21:58 +0000782
783bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
784 unsigned AsmVariant,
785 const char *ExtraCode) {
786 // Target doesn't support this yet!
787 return true;
788}
Nate Begeman37efe672006-04-22 18:53:45 +0000789
790/// printBasicBlockLabel - This method prints the label for the specified
791/// MachineBasicBlock
Nate Begemancdf38c42006-05-02 05:37:32 +0000792void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
793 bool printColon,
794 bool printComment) const {
Nate Begeman9d51eeb2006-05-02 17:36:46 +0000795 O << PrivateGlobalPrefix << "BB" << FunctionNumber << "_"
796 << MBB->getNumber();
Nate Begemancdf38c42006-05-02 05:37:32 +0000797 if (printColon)
798 O << ':';
799 if (printComment)
800 O << '\t' << CommentString << MBB->getBasicBlock()->getName();
Nate Begeman37efe672006-04-22 18:53:45 +0000801}