blob: 28937797a81b94857ddad5baef0c126f65d325d9 [file] [log] [blame]
Chris Lattnera80ba712004-08-16 23:15:22 +00001//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnera80ba712004-08-16 23:15:22 +00007//
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 Lattner45111d12010-01-16 21:57:06 +000019#include "llvm/CodeGen/DwarfWriter.h"
Gordon Henriksen5eca0752008-08-17 18:44:35 +000020#include "llvm/CodeGen/GCMetadataPrinter.h"
Chris Lattner3b4fd322005-11-21 08:25:09 +000021#include "llvm/CodeGen/MachineConstantPool.h"
David Greene1924aab2009-11-13 21:34:57 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
David Greenefe37ab32009-08-18 19:22:55 +000023#include "llvm/CodeGen/MachineFunction.h"
Nate Begeman37efe672006-04-22 18:53:45 +000024#include "llvm/CodeGen/MachineJumpTableInfo.h"
David Greeneb71d1b22009-08-10 16:38:07 +000025#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000026#include "llvm/CodeGen/MachineModuleInfo.h"
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +000027#include "llvm/Analysis/DebugInfo.h"
Chris Lattner2b2954f2009-07-27 21:28:04 +000028#include "llvm/MC/MCContext.h"
Chris Lattner52492ac2010-01-23 06:17:14 +000029#include "llvm/MC/MCExpr.h"
David Greene3ac1ab82009-07-16 22:24:20 +000030#include "llvm/MC/MCInst.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000031#include "llvm/MC/MCSection.h"
32#include "llvm/MC/MCStreamer.h"
Chris Lattner7cb384d2009-09-12 23:02:08 +000033#include "llvm/MC/MCSymbol.h"
Evan Cheng42bf74b2009-03-25 01:47:28 +000034#include "llvm/Support/CommandLine.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000035#include "llvm/Support/ErrorHandling.h"
Chris Lattner0fd90fd2010-01-22 19:52:01 +000036#include "llvm/Support/Format.h"
David Greene014700c2009-07-13 20:25:48 +000037#include "llvm/Support/FormattedStream.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattner45111d12010-01-16 21:57:06 +000039#include "llvm/Target/Mangler.h"
Owen Anderson07000c62006-05-12 06:33:49 +000040#include "llvm/Target/TargetData.h"
David Greene1924aab2009-11-13 21:34:57 +000041#include "llvm/Target/TargetInstrInfo.h"
Chris Lattner0336fdb2006-10-06 22:50:56 +000042#include "llvm/Target/TargetLowering.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000043#include "llvm/Target/TargetLoweringObjectFile.h"
Evan Cheng6547e402008-07-01 23:18:29 +000044#include "llvm/Target/TargetOptions.h"
Evan Chengda47e6e2008-03-15 00:03:38 +000045#include "llvm/Target/TargetRegisterInfo.h"
Evan Chengcc415862007-11-09 01:32:10 +000046#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerfad86b02008-08-17 07:19:36 +000047#include "llvm/ADT/SmallString.h"
Chris Lattner66099132006-02-01 22:41:11 +000048#include <cerrno>
Chris Lattnera80ba712004-08-16 23:15:22 +000049using namespace llvm;
50
Evan Cheng42bf74b2009-03-25 01:47:28 +000051static cl::opt<cl::boolOrDefault>
52AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
53 cl::init(cl::BOU_UNSET));
54
Chris Lattner07404412010-01-22 07:06:15 +000055static bool getVerboseAsm(bool VDef) {
56 switch (AsmVerbose) {
57 default:
58 case cl::BOU_UNSET: return VDef;
59 case cl::BOU_TRUE: return true;
60 case cl::BOU_FALSE: return false;
61 }
62}
63
Devang Patel19974732007-05-03 01:11:54 +000064char AsmPrinter::ID = 0;
David Greene71847812009-07-14 20:18:05 +000065AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +000066 const MCAsmInfo *T, bool VDef)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000067 : MachineFunctionPass(&ID), FunctionNumber(0), O(o),
Chris Lattner33adcfb2009-08-22 21:43:10 +000068 TM(tm), MAI(T), TRI(tm.getRegisterInfo()),
Chris Lattner2b2954f2009-07-27 21:28:04 +000069
70 OutContext(*new MCContext()),
Chris Lattner90edac02009-09-14 03:02:37 +000071 // FIXME: Pass instprinter to streamer.
Chris Lattner16582022010-01-20 06:39:07 +000072 OutStreamer(*createAsmStreamer(OutContext, O, *T,
Chris Lattner07404412010-01-22 07:06:15 +000073 TM.getTargetData()->isLittleEndian(),
74 getVerboseAsm(VDef), 0)),
Chris Lattner2b2954f2009-07-27 21:28:04 +000075
Devang Patel6b61f582010-01-16 06:09:35 +000076 LastMI(0), LastFn(0), Counter(~0U), PrevDLT(NULL) {
Chris Lattner0de1fc42009-06-24 19:09:55 +000077 DW = 0; MMI = 0;
Chris Lattner07404412010-01-22 07:06:15 +000078 VerboseAsm = getVerboseAsm(VDef);
Evan Cheng42bf74b2009-03-25 01:47:28 +000079}
Chris Lattnered138932005-12-13 06:32:10 +000080
Gordon Henriksenc317a602008-08-17 12:08:44 +000081AsmPrinter::~AsmPrinter() {
82 for (gcp_iterator I = GCMetadataPrinters.begin(),
83 E = GCMetadataPrinters.end(); I != E; ++I)
84 delete I->second;
Chris Lattner2b2954f2009-07-27 21:28:04 +000085
86 delete &OutStreamer;
87 delete &OutContext;
Gordon Henriksenc317a602008-08-17 12:08:44 +000088}
Chris Lattnered138932005-12-13 06:32:10 +000089
Chris Lattner38c39882009-08-03 19:12:26 +000090TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
Chris Lattnerf0144122009-07-28 03:13:23 +000091 return TM.getTargetLowering()->getObjFileLowering();
92}
93
Chris Lattnerdabf07c2009-08-18 06:15:16 +000094/// getCurrentSection() - Return the current section we are emitting to.
95const MCSection *AsmPrinter::getCurrentSection() const {
96 return OutStreamer.getCurrentSection();
97}
98
99
Gordon Henriksence224772008-01-07 01:30:38 +0000100void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +0000101 AU.setPreservesAll();
Gordon Henriksence224772008-01-07 01:30:38 +0000102 MachineFunctionPass::getAnalysisUsage(AU);
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000103 AU.addRequired<GCModuleInfo>();
David Greenefe37ab32009-08-18 19:22:55 +0000104 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000105 AU.addRequired<MachineLoopInfo>();
Gordon Henriksence224772008-01-07 01:30:38 +0000106}
107
Chris Lattnera80ba712004-08-16 23:15:22 +0000108bool AsmPrinter::doInitialization(Module &M) {
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000109 // Initialize TargetLoweringObjectFile.
110 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
111 .Initialize(OutContext, TM);
112
Chris Lattnerc0dba722010-01-17 18:22:35 +0000113 Mang = new Mangler(*MAI);
Chris Lattner2c1b1592006-01-23 23:47:53 +0000114
Bob Wilson812209a2009-09-30 22:06:26 +0000115 // Allow the target to emit any magic that it wants at the start of the file.
116 EmitStartOfAsmFile(M);
Rafael Espindola952b8392008-12-03 11:01:37 +0000117
Chris Lattnera6594fc2010-01-25 18:58:59 +0000118 // Very minimal debug info. It is ignored if we emit actual debug info. If we
119 // don't, this at least helps the user find where a global came from.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000120 if (MAI->hasSingleParameterDotFile()) {
Chris Lattnera6594fc2010-01-25 18:58:59 +0000121 // .file "foo.c"
122 OutStreamer.EmitFileDirective(M.getModuleIdentifier());
Rafael Espindola952b8392008-12-03 11:01:37 +0000123 }
124
Bob Wilson812209a2009-09-30 22:06:26 +0000125 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
126 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000127 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
128 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000129 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000130
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000131 if (!M.getModuleInlineAsm().empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000132 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000133 << M.getModuleInlineAsm()
Chris Lattner33adcfb2009-08-22 21:43:10 +0000134 << '\n' << MAI->getCommentString()
Jim Laskey563321a2006-09-06 18:34:40 +0000135 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000136
Chris Lattnerb55e0682009-09-24 05:44:53 +0000137 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
138 if (MMI)
139 MMI->AnalyzeModule(M);
140 DW = getAnalysisIfAvailable<DwarfWriter>();
Sanjiv Gupta9a501cf2009-11-14 07:22:25 +0000141 if (DW)
Chris Lattnerb55e0682009-09-24 05:44:53 +0000142 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel14a55d92009-06-19 21:54:26 +0000143
Chris Lattnera80ba712004-08-16 23:15:22 +0000144 return false;
145}
146
Chris Lattner48d64ba2010-01-19 04:39:15 +0000147/// EmitGlobalVariable - Emit the specified global variable to the .s file.
148void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
149 if (!GV->hasInitializer()) // External globals require no code.
150 return;
151
152 // Check to see if this is a special global used by LLVM, if so, emit it.
153 if (EmitSpecialLLVMGlobal(GV))
154 return;
Chris Lattner74bfe212010-01-19 05:38:33 +0000155
156 MCSymbol *GVSym = GetGlobalValueSymbol(GV);
157 printVisibility(GVSym, GV->getVisibility());
158
Chris Lattnera800f7c2010-01-25 18:33:40 +0000159 if (MAI->hasDotTypeDotSizeDirective())
160 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
Chris Lattner48d64ba2010-01-19 04:39:15 +0000161
Chris Lattner74bfe212010-01-19 05:38:33 +0000162 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
163
164 const TargetData *TD = TM.getTargetData();
165 unsigned Size = TD->getTypeAllocSize(GV->getType()->getElementType());
166 unsigned AlignLog = TD->getPreferredAlignmentLog(GV);
167
Chris Lattner9744d612010-01-19 05:51:42 +0000168 // Handle common and BSS local symbols (.lcomm).
169 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000170 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
171
Chris Lattner74bfe212010-01-19 05:38:33 +0000172 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000173 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
174 /*PrintType=*/false, GV->getParent());
175 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000176 }
Chris Lattner814819f2010-01-19 06:25:51 +0000177
178 // Handle common symbols.
Chris Lattner9744d612010-01-19 05:51:42 +0000179 if (GVKind.isCommon()) {
180 // .comm _foo, 42, 4
Chris Lattner4ed54382010-01-19 06:01:04 +0000181 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner814819f2010-01-19 06:25:51 +0000182 return;
Chris Lattner9744d612010-01-19 05:51:42 +0000183 }
Chris Lattner814819f2010-01-19 06:25:51 +0000184
185 // Handle local BSS symbols.
186 if (MAI->hasMachoZeroFillDirective()) {
187 const MCSection *TheSection =
188 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
189 // .zerofill __DATA, __bss, _foo, 400, 5
190 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
191 return;
192 }
193
Chris Lattner9eb158d2010-01-23 07:47:02 +0000194 if (MAI->hasLCOMMDirective()) {
Chris Lattner814819f2010-01-19 06:25:51 +0000195 // .lcomm _foo, 42
Chris Lattner9eb158d2010-01-23 07:47:02 +0000196 OutStreamer.EmitLocalCommonSymbol(GVSym, Size);
Chris Lattner814819f2010-01-19 06:25:51 +0000197 return;
198 }
199
200 // .local _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000201 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
Chris Lattner814819f2010-01-19 06:25:51 +0000202 // .comm _foo, 42, 4
203 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner74bfe212010-01-19 05:38:33 +0000204 return;
205 }
206
207 const MCSection *TheSection =
208 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
209
210 // Handle the zerofill directive on darwin, which is a special form of BSS
211 // emission.
212 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
213 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000214 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000215 // .zerofill __DATA, __common, _foo, 400, 5
216 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
217 return;
218 }
219
220 OutStreamer.SwitchSection(TheSection);
221
222 // TODO: Factor into an 'emit linkage' thing that is shared with function
223 // bodies.
224 switch (GV->getLinkage()) {
225 case GlobalValue::CommonLinkage:
226 case GlobalValue::LinkOnceAnyLinkage:
227 case GlobalValue::LinkOnceODRLinkage:
228 case GlobalValue::WeakAnyLinkage:
229 case GlobalValue::WeakODRLinkage:
230 case GlobalValue::LinkerPrivateLinkage:
Chris Lattner4c8c6682010-01-19 06:41:24 +0000231 if (MAI->getWeakDefDirective() != 0) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000232 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000233 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000234 // .weak_definition _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000235 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
Chris Lattner74bfe212010-01-19 05:38:33 +0000236 } else if (const char *LinkOnce = MAI->getLinkOnceDirective()) {
237 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000238 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000239 // FIXME: linkonce should be a section attribute, handled by COFF Section
240 // assignment.
241 // http://sourceware.org/binutils/docs-2.20/as/Linkonce.html#Linkonce
Chris Lattner74bfe212010-01-19 05:38:33 +0000242 // .linkonce same_size
243 O << LinkOnce;
Chris Lattner4c8c6682010-01-19 06:41:24 +0000244 } else {
245 // .weak _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000246 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
Chris Lattner4c8c6682010-01-19 06:41:24 +0000247 }
Chris Lattner74bfe212010-01-19 05:38:33 +0000248 break;
249 case GlobalValue::DLLExportLinkage:
250 case GlobalValue::AppendingLinkage:
251 // FIXME: appending linkage variables should go into a section of
252 // their name or something. For now, just emit them as external.
253 case GlobalValue::ExternalLinkage:
254 // If external or appending, declare as a global symbol.
255 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000256 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000257 break;
258 case GlobalValue::PrivateLinkage:
259 case GlobalValue::InternalLinkage:
260 break;
261 default:
262 llvm_unreachable("Unknown linkage type!");
263 }
264
265 EmitAlignment(AlignLog, GV);
Chris Lattner74bfe212010-01-19 05:38:33 +0000266 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000267 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
268 /*PrintType=*/false, GV->getParent());
269 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000270 }
Chris Lattner4c8c6682010-01-19 06:41:24 +0000271 OutStreamer.EmitLabel(GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000272
273 EmitGlobalConstant(GV->getInitializer());
274
275 if (MAI->hasDotTypeDotSizeDirective())
Chris Lattner1947f242010-01-25 07:53:05 +0000276 // .size foo, 42
Chris Lattner99328ad2010-01-25 07:52:13 +0000277 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000278
279 OutStreamer.AddBlankLine();
Chris Lattner48d64ba2010-01-19 04:39:15 +0000280}
281
282
Chris Lattnera80ba712004-08-16 23:15:22 +0000283bool AsmPrinter::doFinalization(Module &M) {
Chris Lattner40bbebd2009-07-21 18:38:57 +0000284 // Emit global variables.
285 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
286 I != E; ++I)
Chris Lattner48d64ba2010-01-19 04:39:15 +0000287 EmitGlobalVariable(I);
Chris Lattner40bbebd2009-07-21 18:38:57 +0000288
Chris Lattner1f522fe2009-06-24 18:54:37 +0000289 // Emit final debug information.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000290 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattner1f522fe2009-06-24 18:54:37 +0000291 DW->EndModule();
292
Chris Lattner0a7befa2009-06-24 18:52:01 +0000293 // If the target wants to know about weak references, print them all.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000294 if (MAI->getWeakRefDirective()) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000295 // FIXME: This is not lazy, it would be nice to only print weak references
296 // to stuff that is actually used. Note that doing so would require targets
297 // to notice uses in operands (due to constant exprs etc). This should
298 // happen with the MC stuff eventually.
Rafael Espindola15404d02006-12-18 03:37:18 +0000299
Chris Lattner0a7befa2009-06-24 18:52:01 +0000300 // Print out module-level global variables here.
301 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
302 I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000303 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000304 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000305 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000306 }
307
Chris Lattnerc6fdced2009-08-03 23:10:34 +0000308 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000309 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000310 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000311 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000312 }
Rafael Espindola15404d02006-12-18 03:37:18 +0000313 }
314
Chris Lattner33adcfb2009-08-22 21:43:10 +0000315 if (MAI->getSetDirective()) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000316 OutStreamer.AddBlankLine();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000317 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattner0a7befa2009-06-24 18:52:01 +0000318 I != E; ++I) {
Chris Lattner5c40e692010-01-16 01:17:26 +0000319 MCSymbol *Name = GetGlobalValueSymbol(I);
Anton Korobeynikov325be7c2007-09-06 17:21:48 +0000320
321 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattner5c40e692010-01-16 01:17:26 +0000322 MCSymbol *Target = GetGlobalValueSymbol(GV);
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000323
Chris Lattner10b318b2010-01-17 21:43:43 +0000324 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000325 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
Chris Lattner10b318b2010-01-17 21:43:43 +0000326 else if (I->hasWeakLinkage())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000327 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
Chris Lattner10b318b2010-01-17 21:43:43 +0000328 else
Chris Lattner10595492010-01-16 01:37:14 +0000329 assert(I->hasLocalLinkage() && "Invalid alias linkage");
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000330
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000331 printVisibility(Name, I->getVisibility());
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000332
Chris Lattner10b318b2010-01-17 21:43:43 +0000333 O << MAI->getSetDirective() << ' ' << *Name << ", " << *Target << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000334 }
335 }
336
Duncan Sands1465d612009-01-28 13:14:17 +0000337 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000338 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
339 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
340 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000341 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000342
Dan Gohmana779a982008-05-05 00:28:39 +0000343 // If we don't have any trampolines, then we don't require stack memory
344 // to be executable. Some targets have a directive to declare this.
Chris Lattner0a7befa2009-06-24 18:52:01 +0000345 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana779a982008-05-05 00:28:39 +0000346 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattnerf9f93e42010-01-23 07:21:06 +0000347 if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
348 OutStreamer.SwitchSection(S);
Chris Lattnerbd23d5f2009-09-18 20:17:03 +0000349
350 // Allow the target to emit any magic that it wants at the end of the file,
351 // after everything else has gone out.
352 EmitEndOfAsmFile(M);
353
Chris Lattnera80ba712004-08-16 23:15:22 +0000354 delete Mang; Mang = 0;
Chris Lattner0de1fc42009-06-24 19:09:55 +0000355 DW = 0; MMI = 0;
Chris Lattner2b2954f2009-07-27 21:28:04 +0000356
357 OutStreamer.Finish();
Chris Lattnera80ba712004-08-16 23:15:22 +0000358 return false;
359}
360
Chris Lattner25045bd2005-11-21 07:51:36 +0000361void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattner412c3a52010-01-16 01:24:10 +0000362 // Get the function symbol.
Chris Lattnerd1947ed2010-01-15 23:55:16 +0000363 CurrentFnSym = GetGlobalValueSymbol(MF.getFunction());
Evan Cheng347d39f2007-10-14 05:57:21 +0000364 IncrementFunctionNumber();
David Greeneb71d1b22009-08-10 16:38:07 +0000365
Chris Lattner25d812b2009-09-16 00:35:39 +0000366 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000367 LI = &getAnalysis<MachineLoopInfo>();
Chris Lattnera80ba712004-08-16 23:15:22 +0000368}
369
Evan Cheng1606e8e2009-03-13 07:51:59 +0000370namespace {
371 // SectionCPs - Keep track the alignment, constpool entries per Section.
372 struct SectionCPs {
Chris Lattnera87dea42009-07-31 18:48:30 +0000373 const MCSection *S;
Evan Cheng1606e8e2009-03-13 07:51:59 +0000374 unsigned Alignment;
375 SmallVector<unsigned, 4> CPEs;
Douglas Gregorcabdd742009-12-19 07:05:23 +0000376 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
Evan Cheng1606e8e2009-03-13 07:51:59 +0000377 };
378}
379
Chris Lattner3b4fd322005-11-21 08:25:09 +0000380/// EmitConstantPool - Print to the current output stream assembly
381/// representations of the constants in the constant pool MCP. This is
382/// used to print out constants which have been "spilled to memory" by
383/// the code generator.
384///
385void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000386 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000387 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000388
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000389 // Calculate sections for constant pool entries. We collect entries to go into
390 // the same section together to reduce amount of section switch statements.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000391 SmallVector<SectionCPs, 4> CPSections;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000392 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner298414e2009-07-22 00:28:43 +0000393 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng1606e8e2009-03-13 07:51:59 +0000394 unsigned Align = CPE.getAlignment();
Chris Lattner5c2f7892009-07-26 06:26:55 +0000395
396 SectionKind Kind;
397 switch (CPE.getRelocationInfo()) {
398 default: llvm_unreachable("Unknown section kind");
Chris Lattner27981192009-08-01 23:57:16 +0000399 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000400 case 1:
Chris Lattner27981192009-08-01 23:57:16 +0000401 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattner4c509222009-07-26 07:00:12 +0000402 break;
Chris Lattner5c2f7892009-07-26 06:26:55 +0000403 case 0:
Chris Lattner4c509222009-07-26 07:00:12 +0000404 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000405 case 4: Kind = SectionKind::getMergeableConst4(); break;
406 case 8: Kind = SectionKind::getMergeableConst8(); break;
407 case 16: Kind = SectionKind::getMergeableConst16();break;
408 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000409 }
Chris Lattner5c2f7892009-07-26 06:26:55 +0000410 }
411
Chris Lattner83d77fa2009-08-01 23:46:12 +0000412 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner298414e2009-07-22 00:28:43 +0000413
Evan Cheng1606e8e2009-03-13 07:51:59 +0000414 // The number of sections are small, just do a linear search from the
415 // last section to the first.
416 bool Found = false;
417 unsigned SecIdx = CPSections.size();
418 while (SecIdx != 0) {
419 if (CPSections[--SecIdx].S == S) {
420 Found = true;
421 break;
422 }
423 }
424 if (!Found) {
425 SecIdx = CPSections.size();
426 CPSections.push_back(SectionCPs(S, Align));
427 }
428
429 if (Align > CPSections[SecIdx].Alignment)
430 CPSections[SecIdx].Alignment = Align;
431 CPSections[SecIdx].CPEs.push_back(i);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000432 }
433
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000434 // Now print stuff into the calculated sections.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000435 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000436 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000437 EmitAlignment(Log2_32(CPSections[i].Alignment));
Evan Cheng2d2cec12006-06-29 00:26:09 +0000438
Evan Cheng1606e8e2009-03-13 07:51:59 +0000439 unsigned Offset = 0;
440 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
441 unsigned CPI = CPSections[i].CPEs[j];
442 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000443
Chris Lattner3029f922006-02-09 04:46:04 +0000444 // Emit inter-object padding for alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000445 unsigned AlignMask = CPE.getAlignment() - 1;
446 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
Chris Lattneraaec2052010-01-19 19:46:13 +0000447 OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000448
449 const Type *Ty = CPE.getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000450 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000451
Chris Lattner39248682010-01-23 05:19:23 +0000452 // Emit the label with a comment on it.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000453 if (VerboseAsm) {
Chris Lattner39248682010-01-23 05:19:23 +0000454 OutStreamer.GetCommentOS() << "constant pool ";
455 WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(),
456 MF->getFunction()->getParent());
457 OutStreamer.GetCommentOS() << '\n';
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000458 }
Chris Lattner39248682010-01-23 05:19:23 +0000459 OutStreamer.EmitLabel(GetCPISymbol(CPI));
460
Evan Cheng1606e8e2009-03-13 07:51:59 +0000461 if (CPE.isMachineConstantPoolEntry())
462 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
463 else
464 EmitGlobalConstant(CPE.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000465 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000466 }
467}
468
Nate Begeman37efe672006-04-22 18:53:45 +0000469/// EmitJumpTableInfo - Print assembly representations of the jump tables used
470/// by the current function to the current output stream.
471///
Chris Lattner44e87252010-01-25 22:41:33 +0000472void AsmPrinter::EmitJumpTableInfo(MachineFunction &MF) {
473 MachineJumpTableInfo *MJTI = MF.getJumpTableInfo();
474 if (MJTI == 0) return;
Nate Begeman37efe672006-04-22 18:53:45 +0000475 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
476 if (JT.empty()) return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000477
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000478 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
Nate Begeman4d9bbdc2006-07-27 16:46:58 +0000479
Nate Begeman2f1ae882006-07-27 01:13:04 +0000480 // Pick the directive to use to print the jump table entries, and switch to
481 // the appropriate section.
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000482 TargetLowering *LoweringInfo = TM.getTargetLowering();
Anton Korobeynikov24287dd2006-12-19 21:04:20 +0000483
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000484 const Function *F = MF.getFunction();
Evan Chengb13bafe2009-06-18 20:37:15 +0000485 bool JTInDiffSection = false;
Chris Lattner83d77fa2009-08-01 23:46:12 +0000486 if (F->isWeakForLinker() ||
487 (IsPic && !LoweringInfo->usesGlobalOffsetTable())) {
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000488 // In PIC mode, we need to emit the jump table to the same section as the
489 // function body itself, otherwise the label differences won't make sense.
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000490 // We should also do if the section name is NULL or function is declared in
491 // discardable section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000492 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang,
493 TM));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000494 } else {
Chris Lattner83d77fa2009-08-01 23:46:12 +0000495 // Otherwise, drop it in the readonly section.
496 const MCSection *ReadOnlySection =
Chris Lattner27981192009-08-01 23:57:16 +0000497 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000498 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengb13bafe2009-06-18 20:37:15 +0000499 JTInDiffSection = true;
Nate Begeman2f1ae882006-07-27 01:13:04 +0000500 }
Chris Lattner071c62f2010-01-25 23:26:13 +0000501
502 unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData());
503 EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getTargetData())));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000504
Nate Begeman37efe672006-04-22 18:53:45 +0000505 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
Nate Begeman52a51e382006-08-12 21:29:52 +0000506 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000507
508 // If this jump table was deleted, ignore it.
509 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000510
511 // For PIC codegen, if possible we want to use the SetDirective to reduce
512 // the number of relocations the assembler will generate for the jump table.
513 // Set directives are all printed before the jump table itself.
Evan Chengcc415862007-11-09 01:32:10 +0000514 SmallPtrSet<MachineBasicBlock*, 16> EmittedSets;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000515 if (MAI->getSetDirective() && IsPic)
Nate Begeman52a51e382006-08-12 21:29:52 +0000516 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Evan Chengcc415862007-11-09 01:32:10 +0000517 if (EmittedSets.insert(JTBBs[ii]))
518 printPICJumpTableSetLabel(i, JTBBs[ii]);
Nate Begeman52a51e382006-08-12 21:29:52 +0000519
Chris Lattner7c301912009-09-13 19:02:16 +0000520 // On some targets (e.g. Darwin) we want to emit two consequtive labels
Chris Lattner393a8ee2007-01-18 01:12:56 +0000521 // before each jump table. The first label is never referenced, but tells
522 // the assembler and linker the extents of the jump table object. The
523 // second label is actually referenced by the code.
Chris Lattner39248682010-01-23 05:19:23 +0000524 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
525 OutStreamer.EmitLabel(GetJTISymbol(i, true));
526
527 OutStreamer.EmitLabel(GetJTISymbol(i));
528
Chris Lattnera86106e2010-01-25 21:01:58 +0000529 if (!IsPic) {
Chris Lattner1aca2492010-01-25 21:22:22 +0000530 // In non-pic mode, the entries in the jump table are direct references
531 // to the basic blocks.
Chris Lattnera86106e2010-01-25 21:01:58 +0000532 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
533 MCSymbol *MBBSym = GetMBBSymbol(JTBBs[ii]->getNumber());
534 OutStreamer.EmitValue(MCSymbolRefExpr::Create(MBBSym, OutContext),
535 EntrySize, /*addrspace*/0);
536 }
537 } else {
538 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
539 printPICJumpTableEntry(MJTI, JTBBs[ii], i);
Nate Begeman37efe672006-04-22 18:53:45 +0000540 }
541 }
542}
543
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000544void AsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
545 const MachineBasicBlock *MBB,
Chris Lattnerff537ce2010-01-26 03:43:22 +0000546 unsigned uid) const {
547 const MCExpr *Value = 0;
548 switch (MJTI->getEntryKind()) {
549 case MachineJumpTableInfo::EK_BlockAddress:
550 // EK_BlockAddress - Each entry is a plain address of block, e.g.:
551 // .word LBB123
552 Value = MCSymbolRefExpr::Create(GetMBBSymbol(MBB->getNumber()), OutContext);
553 break;
554
555 case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
556 // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
557 // with a relocation as gp-relative, e.g.:
558 // .gprel32 LBB123
Chris Lattner718fb592010-01-25 21:28:50 +0000559 MCSymbol *MBBSym = GetMBBSymbol(MBB->getNumber());
560 OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
Chris Lattner78f485a2010-01-25 21:10:10 +0000561 return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000562 }
Chris Lattnerff537ce2010-01-26 03:43:22 +0000563
564 case MachineJumpTableInfo::EK_LabelDifference32: {
565 // EK_LabelDifference32 - Each entry is the address of the block minus
566 // the address of the jump table. This is used for PIC jump tables where
567 // gprel32 is not supported. e.g.:
568 // .word LBB123 - LJTI1_2
569 // If the .set directive is supported, this is emitted as:
570 // .set L4_5_set_123, LBB123 - LJTI1_2
571 // .word L4_5_set_123
572
573 // If we have emitted set directives for the jump table entries, print
574 // them rather than the entries themselves. If we're emitting PIC, then
575 // emit the table entries as differences between two text section labels.
576 if (MAI->getSetDirective()) {
577 // If we used .set, reference the .set's symbol.
578 Value = MCSymbolRefExpr::Create(GetJTSetSymbol(uid, MBB->getNumber()),
579 OutContext);
580 break;
581 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000582 // Otherwise, use the difference as the jump table entry.
Chris Lattnerff537ce2010-01-26 03:43:22 +0000583 Value = MCSymbolRefExpr::Create(GetMBBSymbol(MBB->getNumber()), OutContext);
Chris Lattner1aca2492010-01-25 21:22:22 +0000584 const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(uid), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000585 Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
586 break;
587 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000588 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000589
Chris Lattnerff537ce2010-01-26 03:43:22 +0000590 assert(Value && "Unknown entry kind!");
591
Chris Lattner071c62f2010-01-25 23:26:13 +0000592 unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData());
Chris Lattnerff537ce2010-01-26 03:43:22 +0000593 OutStreamer.EmitValue(Value, EntrySize, /*addrspace*/0);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000594}
595
596
Chris Lattnered138932005-12-13 06:32:10 +0000597/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
598/// special global used by LLVM. If so, emit it and return true, otherwise
599/// do nothing and return false.
600bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000601 if (GV->getName() == "llvm.used") {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000602 if (MAI->hasNoDeadStrip()) // No need to emit this at all.
Andrew Lenharthb753a9b2007-08-22 19:33:11 +0000603 EmitLLVMUsedList(GV->getInitializer());
604 return true;
605 }
606
Chris Lattner401e10c2009-07-20 06:14:25 +0000607 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000608 if (GV->getSection() == "llvm.metadata" ||
609 GV->hasAvailableExternallyLinkage())
610 return true;
Jim Laskey78098112006-03-07 22:00:35 +0000611
612 if (!GV->hasAppendingLinkage()) return false;
613
614 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000615
Evan Cheng916d07c2007-06-04 20:39:18 +0000616 const TargetData *TD = TM.getTargetData();
617 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattnerf231c072009-03-09 05:52:15 +0000618 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000619 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000620 EmitAlignment(Align, 0);
621 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000622
623 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000624 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
625 StringRef Sym(".constructors_used");
626 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000627 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000628 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000629 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000630 }
631
Chris Lattnerf231c072009-03-09 05:52:15 +0000632 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000633 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000634 EmitAlignment(Align, 0);
635 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000636
637 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000638 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
639 StringRef Sym(".destructors_used");
640 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000641 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000642 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000643 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000644 }
645
646 return false;
647}
648
Chris Lattner33adcfb2009-08-22 21:43:10 +0000649/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesend2e51af2008-09-09 22:29:13 +0000650/// global in the specified llvm.used list for which emitUsedDirectiveFor
651/// is true, as being used with this directive.
Chris Lattnercb05af82006-09-26 03:38:18 +0000652void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Dan Gohmana119de82009-06-14 23:30:43 +0000653 // Should be an array of 'i8*'.
Chris Lattnercb05af82006-09-26 03:38:18 +0000654 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
655 if (InitList == 0) return;
656
657 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner16fe9902009-07-17 22:00:23 +0000658 const GlobalValue *GV =
659 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000660 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
661 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(GV),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000662 MCSA_NoDeadStrip);
Chris Lattnercb05af82006-09-26 03:38:18 +0000663 }
664}
665
Chris Lattnered138932005-12-13 06:32:10 +0000666/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
667/// function pointers, ignoring the init priority.
668void AsmPrinter::EmitXXStructorList(Constant *List) {
669 // Should be an array of '{ int, void ()* }' structs. The first value is the
670 // init priority, which we ignore.
671 if (!isa<ConstantArray>(List)) return;
672 ConstantArray *InitList = cast<ConstantArray>(List);
673 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
674 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
675 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000676
677 if (CS->getOperand(1)->isNullValue())
678 return; // Found a null terminator, exit printing.
679 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000680 EmitGlobalConstant(CS->getOperand(1));
681 }
682}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000683
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000684//===--------------------------------------------------------------------===//
685// Emission and print routines
686//
687
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000688/// EmitInt8 - Emit a byte directive and value.
689///
690void AsmPrinter::EmitInt8(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000691 OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000692}
693
694/// EmitInt16 - Emit a short directive and value.
695///
696void AsmPrinter::EmitInt16(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000697 OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000698}
699
700/// EmitInt32 - Emit a long directive and value.
701///
702void AsmPrinter::EmitInt32(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000703 OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000704}
705
706/// EmitInt64 - Emit a long long directive and value.
707///
708void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000709 OutStreamer.EmitIntValue(Value, 8, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000710}
711
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000712//===----------------------------------------------------------------------===//
713
Chris Lattner3a420532007-05-31 18:57:45 +0000714// EmitAlignment - Emit an alignment directive to the specified power of
715// two boundary. For example, if you pass in 3 here, you will get an 8
716// byte alignment. If a global value is specified, and if that global has
717// an explicit alignment requested, it will unconditionally override the
718// alignment request. However, if ForcedAlignBits is specified, this value
719// has final say: the ultimate alignment will be the max of ForcedAlignBits
720// and the alignment computed with NumBits and the global.
721//
722// The algorithm is:
723// Align = NumBits;
724// if (GV && GV->hasalignment) Align = GV->getalignment();
725// Align = std::max(Align, ForcedAlignBits);
726//
727void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng05548eb2008-02-29 19:36:59 +0000728 unsigned ForcedAlignBits,
729 bool UseFillExpr) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000730 if (GV && GV->getAlignment())
Chris Lattner3a420532007-05-31 18:57:45 +0000731 NumBits = Log2_32(GV->getAlignment());
732 NumBits = std::max(NumBits, ForcedAlignBits);
733
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000734 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner663c2d22009-08-19 06:12:02 +0000735
736 unsigned FillValue = 0;
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000737 if (getCurrentSection()->getKind().isText())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000738 FillValue = MAI->getTextAlignFillValue();
Chris Lattner663c2d22009-08-19 06:12:02 +0000739
740 OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
Chris Lattnerbfddc202004-08-17 19:14:29 +0000741}
David Greenea5bb59f2009-08-05 21:00:52 +0000742
Chris Lattner52492ac2010-01-23 06:17:14 +0000743/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
744///
745static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
746 MCContext &Ctx = AP.OutContext;
747
748 if (CV->isNullValue() || isa<UndefValue>(CV))
749 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000750
Chris Lattner52492ac2010-01-23 06:17:14 +0000751 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
752 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000753
Chris Lattner52492ac2010-01-23 06:17:14 +0000754 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
755 return MCSymbolRefExpr::Create(AP.GetGlobalValueSymbol(GV), Ctx);
756 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
757 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000758
759 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
760 if (CE == 0) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000761 llvm_unreachable("Unknown constant value to lower!");
762 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000763 }
764
765 switch (CE->getOpcode()) {
766 case Instruction::ZExt:
767 case Instruction::SExt:
768 case Instruction::FPTrunc:
769 case Instruction::FPExt:
770 case Instruction::UIToFP:
771 case Instruction::SIToFP:
772 case Instruction::FPToUI:
773 case Instruction::FPToSI:
Chris Lattner52492ac2010-01-23 06:17:14 +0000774 default: llvm_unreachable("FIXME: Don't support this constant cast expr");
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000775 case Instruction::GetElementPtr: {
Chris Lattner52492ac2010-01-23 06:17:14 +0000776 const TargetData &TD = *AP.TM.getTargetData();
777 // Generate a symbolic expression for the byte address
778 const Constant *PtrVal = CE->getOperand(0);
779 SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
780 int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0],
781 IdxVec.size());
782
783 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000784 if (Offset == 0)
Chris Lattner52492ac2010-01-23 06:17:14 +0000785 return Base;
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000786
787 // Truncate/sext the offset to the pointer size.
Chris Lattner52492ac2010-01-23 06:17:14 +0000788 if (TD.getPointerSizeInBits() != 64) {
789 int SExtAmount = 64-TD.getPointerSizeInBits();
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000790 Offset = (Offset << SExtAmount) >> SExtAmount;
791 }
792
Chris Lattner52492ac2010-01-23 06:17:14 +0000793 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
794 Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000795 }
796
797 case Instruction::Trunc:
798 // We emit the value and depend on the assembler to truncate the generated
799 // expression properly. This is important for differences between
800 // blockaddress labels. Since the two labels are in the same function, it
801 // is reasonable to treat their delta as a 32-bit value.
Chris Lattner52492ac2010-01-23 06:17:14 +0000802 // FALL THROUGH.
803 case Instruction::BitCast:
804 return LowerConstant(CE->getOperand(0), AP);
805
806 case Instruction::IntToPtr: {
807 const TargetData &TD = *AP.TM.getTargetData();
808 // Handle casts to pointers by changing them into casts to the appropriate
809 // integer type. This promotes constant folding and simplifies this code.
810 Constant *Op = CE->getOperand(0);
811 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
812 false/*ZExt*/);
813 return LowerConstant(Op, AP);
814 }
815
816 case Instruction::PtrToInt: {
817 const TargetData &TD = *AP.TM.getTargetData();
818 // Support only foldable casts to/from pointers that can be eliminated by
819 // changing the pointer to the appropriately sized integer type.
820 Constant *Op = CE->getOperand(0);
821 const Type *Ty = CE->getType();
822
823 const MCExpr *OpExpr = LowerConstant(Op, AP);
824
825 // We can emit the pointer value into this slot if the slot is an
826 // integer slot equal to the size of the pointer.
827 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
828 return OpExpr;
829
830 // Otherwise the pointer is smaller than the resultant integer, mask off
831 // the high bits so we are sure to get a proper truncation if the input is
832 // a constant expr.
833 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
834 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
835 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
836 }
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000837
838 case Instruction::Add:
839 case Instruction::Sub:
840 case Instruction::And:
841 case Instruction::Or:
Chris Lattner52492ac2010-01-23 06:17:14 +0000842 case Instruction::Xor: {
843 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
844 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000845 switch (CE->getOpcode()) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000846 default: llvm_unreachable("Unknown binary operator constant cast expr");
847 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
848 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
849 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
850 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
851 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000852 }
Chris Lattner52492ac2010-01-23 06:17:14 +0000853 }
Chris Lattnera80ba712004-08-16 23:15:22 +0000854 }
855}
Chris Lattner1b7e2352004-08-17 06:36:49 +0000856
Chris Lattner91093ec2010-01-19 19:10:44 +0000857static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
858 AsmPrinter &AP) {
Chris Lattner05f84532010-01-23 04:54:10 +0000859 if (AddrSpace != 0 || !CA->isString()) {
860 // Not a string. Print the values in successive locations
Chris Lattner91093ec2010-01-19 19:10:44 +0000861 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
862 AP.EmitGlobalConstant(CA->getOperand(i), AddrSpace);
Chris Lattner05f84532010-01-23 04:54:10 +0000863 return;
Dan Gohman00d448a2008-12-22 21:14:27 +0000864 }
Chris Lattner05f84532010-01-23 04:54:10 +0000865
866 // Otherwise, it can be emitted as .ascii.
867 SmallVector<char, 128> TmpVec;
868 TmpVec.reserve(CA->getNumOperands());
869 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
870 TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
871
872 AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000873}
874
Chris Lattner91093ec2010-01-19 19:10:44 +0000875static void EmitGlobalConstantVector(const ConstantVector *CV,
876 unsigned AddrSpace, AsmPrinter &AP) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000877 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
Chris Lattner91093ec2010-01-19 19:10:44 +0000878 AP.EmitGlobalConstant(CV->getOperand(i), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000879}
880
Chris Lattner91093ec2010-01-19 19:10:44 +0000881static void EmitGlobalConstantStruct(const ConstantStruct *CS,
882 unsigned AddrSpace, AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000883 // Print the fields in successive locations. Pad to align if needed!
Chris Lattner91093ec2010-01-19 19:10:44 +0000884 const TargetData *TD = AP.TM.getTargetData();
885 unsigned Size = TD->getTypeAllocSize(CS->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +0000886 const StructLayout *Layout = TD->getStructLayout(CS->getType());
Chris Lattner91093ec2010-01-19 19:10:44 +0000887 uint64_t SizeSoFar = 0;
888 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000889 const Constant *Field = CS->getOperand(i);
Dan Gohman00d448a2008-12-22 21:14:27 +0000890
891 // Check if padding is needed and insert one or more 0s.
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000892 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +0000893 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
894 - Layout->getElementOffset(i)) - FieldSize;
895 SizeSoFar += FieldSize + PadSize;
Dan Gohman00d448a2008-12-22 21:14:27 +0000896
897 // Now print the actual field value.
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000898 AP.EmitGlobalConstant(Field, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000899
900 // Insert padding - this may include padding to increase the size of the
901 // current field up to the ABI size (if the struct is not packed) as well
902 // as padding to ensure that the next field starts at the right offset.
Chris Lattner2dd245c2010-01-20 07:11:32 +0000903 AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000904 }
Chris Lattner2dd245c2010-01-20 07:11:32 +0000905 assert(SizeSoFar == Layout->getSizeInBytes() &&
Dan Gohman00d448a2008-12-22 21:14:27 +0000906 "Layout of constant struct may be incorrect!");
907}
908
Chris Lattner2dd245c2010-01-20 07:11:32 +0000909static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
910 AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000911 // FP Constants are printed as integer constants to avoid losing
Chris Lattner9ceff942010-01-20 06:53:37 +0000912 // precision.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000913 if (CFP->getType()->isDoubleTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000914 if (AP.VerboseAsm) {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000915 double Val = CFP->getValueAPF().convertToDouble();
916 AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
Chris Lattner09ce6742010-01-19 22:16:33 +0000917 }
918
Chris Lattner2dd245c2010-01-20 07:11:32 +0000919 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
920 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000921 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000922 }
923
924 if (CFP->getType()->isFloatTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000925 if (AP.VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000926 float Val = CFP->getValueAPF().convertToFloat();
927 AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
Dan Gohmana12e9d72009-08-12 18:32:22 +0000928 }
Chris Lattner2dd245c2010-01-20 07:11:32 +0000929 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
930 AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000931 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000932 }
933
934 if (CFP->getType()->isX86_FP80Ty()) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000935 // all long double variants are printed as hex
936 // api needed to prevent premature destruction
Chris Lattner09ce6742010-01-19 22:16:33 +0000937 APInt API = CFP->getValueAPF().bitcastToAPInt();
938 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +0000939 if (AP.VerboseAsm) {
Chris Lattner72b5ebc2010-01-19 22:11:05 +0000940 // Convert to double so we can print the approximate val as a comment.
941 APFloat DoubleVal = CFP->getValueAPF();
942 bool ignored;
943 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
944 &ignored);
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000945 AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
946 << DoubleVal.convertToDouble() << '\n';
Chris Lattner72b5ebc2010-01-19 22:11:05 +0000947 }
948
Chris Lattner2dd245c2010-01-20 07:11:32 +0000949 if (AP.TM.getTargetData()->isBigEndian()) {
950 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
951 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner72b5ebc2010-01-19 22:11:05 +0000952 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000953 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
954 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000955 }
Chris Lattner9ceff942010-01-20 06:53:37 +0000956
957 // Emit the tail padding for the long double.
Chris Lattner2dd245c2010-01-20 07:11:32 +0000958 const TargetData &TD = *AP.TM.getTargetData();
959 AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
960 TD.getTypeStoreSize(CFP->getType()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000961 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000962 }
963
Chris Lattner09ce6742010-01-19 22:16:33 +0000964 assert(CFP->getType()->isPPC_FP128Ty() &&
965 "Floating point constant type not handled");
966 // All long double variants are printed as hex api needed to prevent
967 // premature destruction.
968 APInt API = CFP->getValueAPF().bitcastToAPInt();
969 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +0000970 if (AP.TM.getTargetData()->isBigEndian()) {
971 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
972 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
Chris Lattner9ceff942010-01-20 06:53:37 +0000973 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000974 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
975 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner09ce6742010-01-19 22:16:33 +0000976 }
Dan Gohman00d448a2008-12-22 21:14:27 +0000977}
978
Chris Lattner2dd245c2010-01-20 07:11:32 +0000979static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
980 unsigned AddrSpace, AsmPrinter &AP) {
981 const TargetData *TD = AP.TM.getTargetData();
Dan Gohman00d448a2008-12-22 21:14:27 +0000982 unsigned BitWidth = CI->getBitWidth();
Chris Lattner38c2b0a2010-01-13 04:39:46 +0000983 assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
Dan Gohman00d448a2008-12-22 21:14:27 +0000984
985 // We don't expect assemblers to support integer data directives
986 // for more than 64 bits, so we emit the data in at most 64-bit
987 // quantities at a time.
988 const uint64_t *RawData = CI->getValue().getRawData();
989 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000990 uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
991 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000992 }
993}
994
Chris Lattner25045bd2005-11-21 07:51:36 +0000995/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +0000996void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Chris Lattner043c4e52010-01-20 07:19:19 +0000997 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000998 uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
Chris Lattner6449abf2010-01-19 21:51:22 +0000999 return OutStreamer.EmitZeros(Size, AddrSpace);
Chris Lattner2dd245c2010-01-20 07:11:32 +00001000 }
1001
1002 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1003 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1004 switch (Size) {
1005 case 1:
1006 case 2:
1007 case 4:
1008 case 8:
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001009 if (VerboseAsm)
1010 OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001011 OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1012 return;
1013 default:
1014 EmitGlobalConstantLargeInt(CI, AddrSpace, *this);
1015 return;
1016 }
1017 }
Chris Lattner3cc3a002010-01-13 04:34:19 +00001018
Chris Lattner91093ec2010-01-19 19:10:44 +00001019 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1020 return EmitGlobalConstantArray(CVA, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001021
Chris Lattner91093ec2010-01-19 19:10:44 +00001022 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1023 return EmitGlobalConstantStruct(CVS, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001024
Chris Lattner91093ec2010-01-19 19:10:44 +00001025 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
Chris Lattner2dd245c2010-01-20 07:11:32 +00001026 return EmitGlobalConstantFP(CFP, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001027
Chris Lattner91093ec2010-01-19 19:10:44 +00001028 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1029 return EmitGlobalConstantVector(V, AddrSpace, *this);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001030
Chris Lattnerb0bedd62010-01-20 17:57:50 +00001031 if (isa<ConstantPointerNull>(CV)) {
1032 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1033 OutStreamer.EmitIntValue(0, Size, AddrSpace);
1034 return;
1035 }
1036
Chris Lattner52492ac2010-01-23 06:17:14 +00001037 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it
1038 // thread the streamer with EmitValue.
1039 OutStreamer.EmitValue(LowerConstant(CV, *this),
1040 TM.getTargetData()->getTypeAllocSize(CV->getType()),
1041 AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001042}
Chris Lattner0264d1a2006-01-27 02:10:10 +00001043
Chris Lattnerfad86b02008-08-17 07:19:36 +00001044void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001045 // Target doesn't support this yet!
Torok Edwinc23197a2009-07-14 16:55:14 +00001046 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Evan Chengd6594ae2006-09-12 21:00:35 +00001047}
1048
Chris Lattner3ce9b672006-09-26 23:59:50 +00001049/// PrintSpecial - Print information related to the specified machine instr
1050/// that is independent of the operand, and may be independent of the instr
1051/// itself. This can be useful for portably encoding the comment character
1052/// or other bits of target-specific knowledge into the asmstrings. The
1053/// syntax used is ${:comment}. Targets can override this to add support
1054/// for their own strange codes.
Chris Lattner3e0cc262009-03-10 05:37:13 +00001055void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001056 if (!strcmp(Code, "private")) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001057 O << MAI->getPrivateGlobalPrefix();
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001058 } else if (!strcmp(Code, "comment")) {
Evan Chengf1c0ae92009-03-24 00:17:40 +00001059 if (VerboseAsm)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001060 O << MAI->getCommentString();
Chris Lattner3ce9b672006-09-26 23:59:50 +00001061 } else if (!strcmp(Code, "uid")) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001062 // Comparing the address of MI isn't sufficient, because machineinstrs may
1063 // be allocated to the same address across functions.
1064 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1065
Owen Andersonbd58edf2009-06-24 22:28:12 +00001066 // If this is a new LastFn instruction, bump the counter.
1067 if (LastMI != MI || LastFn != ThisF) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001068 ++Counter;
1069 LastMI = MI;
Owen Andersonbd58edf2009-06-24 22:28:12 +00001070 LastFn = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001071 }
Chris Lattner3ce9b672006-09-26 23:59:50 +00001072 O << Counter;
1073 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001074 std::string msg;
1075 raw_string_ostream Msg(msg);
1076 Msg << "Unknown special formatter '" << Code
Bill Wendlinge8156192006-12-07 01:30:32 +00001077 << "' for machine instr: " << *MI;
Torok Edwin7d696d82009-07-11 13:10:19 +00001078 llvm_report_error(Msg.str());
Chris Lattner3ce9b672006-09-26 23:59:50 +00001079 }
1080}
1081
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001082/// processDebugLoc - Processes the debug information of each machine
1083/// instruction's DebugLoc.
Devang Patelaf0e2722009-10-06 02:19:11 +00001084void AsmPrinter::processDebugLoc(const MachineInstr *MI,
1085 bool BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001086 if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1087 || !DW->ShouldEmitDwarfDebug())
Chris Lattnerd2503292009-08-05 04:09:18 +00001088 return;
Devang Patelb0fdedb2009-09-30 23:12:50 +00001089 DebugLoc DL = MI->getDebugLoc();
Devang Patel53bb5c92009-11-10 23:06:00 +00001090 if (DL.isUnknown())
1091 return;
Devang Patel6b61f582010-01-16 06:09:35 +00001092 DILocation CurDLT = MF->getDILocation(DL);
1093 if (CurDLT.getScope().isNull())
Devang Patel53bb5c92009-11-10 23:06:00 +00001094 return;
1095
Chris Lattner043c4e52010-01-20 07:19:19 +00001096 if (!BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001097 // After printing instruction
1098 DW->EndScope(MI);
Chris Lattner043c4e52010-01-20 07:19:19 +00001099 } else if (CurDLT.getNode() != PrevDLT) {
1100 unsigned L = DW->RecordSourceLine(CurDLT.getLineNumber(),
1101 CurDLT.getColumnNumber(),
1102 CurDLT.getScope().getNode());
1103 printLabel(L);
1104 O << '\n';
1105 DW->BeginScope(MI, L);
1106 PrevDLT = CurDLT.getNode();
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001107 }
1108}
Chris Lattner3ce9b672006-09-26 23:59:50 +00001109
Devang Patel53bb5c92009-11-10 23:06:00 +00001110
Chris Lattner0264d1a2006-01-27 02:10:10 +00001111/// printInlineAsm - This method formats and prints the specified machine
1112/// instruction that is an inline asm.
1113void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001114 unsigned NumOperands = MI->getNumOperands();
1115
1116 // Count the number of register definitions.
1117 unsigned NumDefs = 0;
Dan Gohmand735b802008-10-03 15:45:36 +00001118 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Chris Lattner67942f52006-09-05 20:02:51 +00001119 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001120 assert(NumDefs != NumOperands-1 && "No asm string?");
1121
Dan Gohmand735b802008-10-03 15:45:36 +00001122 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +00001123
1124 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001125 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +00001126
Dan Gohman40c57862009-11-06 00:04:54 +00001127 O << '\t';
1128
Dale Johannesenba2a0b92008-01-29 02:21:21 +00001129 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1130 // These are useful to see where empty asm's wound up.
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001131 if (AsmStr[0] == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001132 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1133 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001134 return;
1135 }
1136
Chris Lattner33adcfb2009-08-22 21:43:10 +00001137 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001138
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001139 // The variant of the current asmprinter.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001140 int AsmPrinterVariant = MAI->getAssemblerDialect();
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001141
Chris Lattner66099132006-02-01 22:41:11 +00001142 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1143 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +00001144
Chris Lattner66099132006-02-01 22:41:11 +00001145 while (*LastEmitted) {
1146 switch (*LastEmitted) {
1147 default: {
1148 // Not a special case, emit the string section literally.
1149 const char *LiteralEnd = LastEmitted+1;
1150 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +00001151 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +00001152 ++LiteralEnd;
1153 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1154 O.write(LastEmitted, LiteralEnd-LastEmitted);
1155 LastEmitted = LiteralEnd;
1156 break;
1157 }
Chris Lattner1c059972006-05-05 21:47:05 +00001158 case '\n':
1159 ++LastEmitted; // Consume newline character.
Dan Gohmand19a53b2008-06-30 22:03:41 +00001160 O << '\n'; // Indent code with newline.
Chris Lattner1c059972006-05-05 21:47:05 +00001161 break;
Chris Lattner66099132006-02-01 22:41:11 +00001162 case '$': {
1163 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001164 bool Done = true;
1165
1166 // Handle escapes.
1167 switch (*LastEmitted) {
1168 default: Done = false; break;
1169 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +00001170 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1171 O << '$';
1172 ++LastEmitted; // Consume second '$' character.
1173 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001174 case '(': // $( -> same as GCC's { character.
1175 ++LastEmitted; // Consume '(' character.
1176 if (CurVariant != -1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001177 llvm_report_error("Nested variants found in inline asm string: '"
1178 + std::string(AsmStr) + "'");
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001179 }
1180 CurVariant = 0; // We're in the first variant now.
1181 break;
1182 case '|':
1183 ++LastEmitted; // consume '|' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001184 if (CurVariant == -1)
1185 O << '|'; // this is gcc's behavior for | outside a variant
1186 else
1187 ++CurVariant; // We're in the next variant.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001188 break;
1189 case ')': // $) -> same as GCC's } char.
1190 ++LastEmitted; // consume ')' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001191 if (CurVariant == -1)
1192 O << '}'; // this is gcc's behavior for } outside a variant
1193 else
1194 CurVariant = -1;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001195 break;
Chris Lattner66099132006-02-01 22:41:11 +00001196 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001197 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +00001198
1199 bool HasCurlyBraces = false;
1200 if (*LastEmitted == '{') { // ${variable}
1201 ++LastEmitted; // Consume '{' character.
1202 HasCurlyBraces = true;
1203 }
1204
Chris Lattner3e0cc262009-03-10 05:37:13 +00001205 // If we have ${:foo}, then this is not a real operand reference, it is a
1206 // "magic" string reference, just like in .td files. Arrange to call
1207 // PrintSpecial.
1208 if (HasCurlyBraces && *LastEmitted == ':') {
1209 ++LastEmitted;
1210 const char *StrStart = LastEmitted;
1211 const char *StrEnd = strchr(StrStart, '}');
1212 if (StrEnd == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001213 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1214 + std::string(AsmStr) + "'");
Chris Lattner3e0cc262009-03-10 05:37:13 +00001215 }
1216
1217 std::string Val(StrStart, StrEnd);
1218 PrintSpecial(MI, Val.c_str());
1219 LastEmitted = StrEnd+1;
1220 break;
1221 }
1222
Chris Lattner66099132006-02-01 22:41:11 +00001223 const char *IDStart = LastEmitted;
1224 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +00001225 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +00001226 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1227 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001228 llvm_report_error("Bad $ operand number in inline asm string: '"
1229 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001230 }
1231 LastEmitted = IDEnd;
1232
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001233 char Modifier[2] = { 0, 0 };
1234
Chris Lattner66099132006-02-01 22:41:11 +00001235 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001236 // If we have curly braces, check for a modifier character. This
1237 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1238 if (*LastEmitted == ':') {
1239 ++LastEmitted; // Consume ':' character.
1240 if (*LastEmitted == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001241 llvm_report_error("Bad ${:} expression in inline asm string: '"
1242 + std::string(AsmStr) + "'");
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001243 }
1244
1245 Modifier[0] = *LastEmitted;
1246 ++LastEmitted; // Consume modifier character.
1247 }
1248
Chris Lattner66099132006-02-01 22:41:11 +00001249 if (*LastEmitted != '}') {
Torok Edwin7d696d82009-07-11 13:10:19 +00001250 llvm_report_error("Bad ${} expression in inline asm string: '"
1251 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001252 }
1253 ++LastEmitted; // Consume '}' character.
1254 }
1255
1256 if ((unsigned)Val >= NumOperands-1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001257 llvm_report_error("Invalid $ operand number in inline asm string: '"
1258 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001259 }
1260
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001261 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001262 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001263 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1264 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001265
1266 bool Error = false;
1267
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001268 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001269 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001270 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner9e330492007-12-30 20:50:28 +00001271 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng697cbbf2009-03-20 18:03:34 +00001272 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001273 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001274
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001275 if (OpNo >= MI->getNumOperands()) {
1276 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001277 } else {
Chris Lattner9e330492007-12-30 20:50:28 +00001278 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001279 ++OpNo; // Skip over the ID number.
1280
Chris Lattner10b318b2010-01-17 21:43:43 +00001281 if (Modifier[0] == 'l') // labels are target independent
1282 O << *GetMBBSymbol(MI->getOperand(OpNo).getMBB()->getNumber());
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001283 else {
1284 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen86b49f82008-09-24 01:07:17 +00001285 if ((OpFlags & 7) == 4) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001286 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1287 Modifier[0] ? Modifier : 0);
1288 } else {
1289 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1290 Modifier[0] ? Modifier : 0);
1291 }
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001292 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001293 }
1294 if (Error) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001295 std::string msg;
1296 raw_string_ostream Msg(msg);
Chris Lattner10b318b2010-01-17 21:43:43 +00001297 Msg << "Invalid operand found in inline asm: '" << AsmStr << "'\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00001298 MI->print(Msg);
1299 llvm_report_error(Msg.str());
Chris Lattner66099132006-02-01 22:41:11 +00001300 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001301 }
Chris Lattner66099132006-02-01 22:41:11 +00001302 break;
1303 }
Chris Lattner66099132006-02-01 22:41:11 +00001304 }
1305 }
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001306 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
Chris Lattner66099132006-02-01 22:41:11 +00001307}
1308
Evan Chengda47e6e2008-03-15 00:03:38 +00001309/// printImplicitDef - This method prints the specified machine instruction
1310/// that is an implicit def.
1311void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001312 if (!VerboseAsm) return;
1313 O.PadToColumn(MAI->getCommentColumn());
1314 O << MAI->getCommentString() << " implicit-def: "
Chris Lattnerf806c232009-09-13 19:48:37 +00001315 << TRI->getName(MI->getOperand(0).getReg());
Evan Chengda47e6e2008-03-15 00:03:38 +00001316}
1317
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001318void AsmPrinter::printKill(const MachineInstr *MI) const {
1319 if (!VerboseAsm) return;
1320 O.PadToColumn(MAI->getCommentColumn());
1321 O << MAI->getCommentString() << " kill:";
1322 for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1323 const MachineOperand &op = MI->getOperand(n);
1324 assert(op.isReg() && "KILL instruction must have only register operands");
1325 O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1326 }
1327}
1328
Jim Laskey1ee29252007-01-26 14:34:52 +00001329/// printLabel - This method prints a local label used by debug and
1330/// exception handling tables.
1331void AsmPrinter::printLabel(const MachineInstr *MI) const {
Dan Gohman528bc022008-07-01 00:16:26 +00001332 printLabel(MI->getOperand(0).getImm());
Jim Laskey1ee29252007-01-26 14:34:52 +00001333}
1334
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001335void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001336 O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001337}
1338
Chris Lattner66099132006-02-01 22:41:11 +00001339/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1340/// instruction, using the specified assembler variant. Targets should
Dale Johannesencf0b7662010-01-14 21:50:17 +00001341/// override this to format as appropriate.
Chris Lattner66099132006-02-01 22:41:11 +00001342bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001343 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001344 // Target doesn't support this yet!
1345 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001346}
Chris Lattnerdd260332006-02-24 20:21:58 +00001347
1348bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1349 unsigned AsmVariant,
1350 const char *ExtraCode) {
1351 // Target doesn't support this yet!
1352 return true;
1353}
Nate Begeman37efe672006-04-22 18:53:45 +00001354
Dan Gohman29cbade2009-11-20 23:18:13 +00001355MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA,
1356 const char *Suffix) const {
1357 return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock(), Suffix);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001358}
1359
1360MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
Dan Gohman29cbade2009-11-20 23:18:13 +00001361 const BasicBlock *BB,
1362 const char *Suffix) const {
Dan Gohman8c2b5252009-10-30 01:27:03 +00001363 assert(BB->hasName() &&
1364 "Address of anonymous basic block not supported yet!");
1365
Dan Gohman568a3be2009-11-05 23:14:35 +00001366 // This code must use the function name itself, and not the function number,
1367 // since it must be possible to generate the label name from within other
1368 // functions.
Chris Lattner2f8cc262010-01-13 07:30:49 +00001369 SmallString<60> FnName;
1370 Mang->getNameWithPrefix(FnName, F, false);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001371
Chris Lattner2f8cc262010-01-13 07:30:49 +00001372 // FIXME: THIS IS BROKEN IF THE LLVM BASIC BLOCK DOESN'T HAVE A NAME!
Chris Lattner48130352010-01-13 06:38:18 +00001373 SmallString<60> NameResult;
Chris Lattner2f8cc262010-01-13 07:30:49 +00001374 Mang->getNameWithPrefix(NameResult,
1375 StringRef("BA") + Twine((unsigned)FnName.size()) +
1376 "_" + FnName.str() + "_" + BB->getName() + Suffix,
1377 Mangler::Private);
Dan Gohman568a3be2009-11-05 23:14:35 +00001378
Chris Lattner48130352010-01-13 06:38:18 +00001379 return OutContext.GetOrCreateSymbol(NameResult.str());
Dan Gohman8c2b5252009-10-30 01:27:03 +00001380}
1381
Chris Lattner7cb384d2009-09-12 23:02:08 +00001382MCSymbol *AsmPrinter::GetMBBSymbol(unsigned MBBID) const {
1383 SmallString<60> Name;
1384 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "BB"
1385 << getFunctionNumber() << '_' << MBBID;
Chris Lattner39248682010-01-23 05:19:23 +00001386 return OutContext.GetOrCreateSymbol(Name.str());
1387}
1388
1389/// GetCPISymbol - Return the symbol for the specified constant pool entry.
1390MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
1391 SmallString<60> Name;
1392 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "CPI"
1393 << getFunctionNumber() << '_' << CPID;
1394 return OutContext.GetOrCreateSymbol(Name.str());
1395}
1396
1397/// GetJTISymbol - Return the symbol for the specified jump table entry.
1398MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
1399 const char *Prefix = isLinkerPrivate ? MAI->getLinkerPrivateGlobalPrefix() :
1400 MAI->getPrivateGlobalPrefix();
1401 SmallString<60> Name;
1402 raw_svector_ostream(Name) << Prefix << "JTI" << getFunctionNumber() << '_'
1403 << JTID;
Chris Lattner7cb384d2009-09-12 23:02:08 +00001404 return OutContext.GetOrCreateSymbol(Name.str());
1405}
1406
Chris Lattner798d1252010-01-25 21:17:10 +00001407/// GetJTSetSymbol - Return the symbol for the specified jump table .set
1408/// FIXME: privatize to AsmPrinter.
1409MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
1410 SmallString<60> Name;
1411 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix()
1412 << getFunctionNumber() << '_' << UID << "_set_" << MBBID;
1413 return OutContext.GetOrCreateSymbol(Name.str());
1414}
1415
Chris Lattner6b04ede2010-01-15 23:18:17 +00001416/// GetGlobalValueSymbol - Return the MCSymbol for the specified global
1417/// value.
1418MCSymbol *AsmPrinter::GetGlobalValueSymbol(const GlobalValue *GV) const {
1419 SmallString<60> NameStr;
1420 Mang->getNameWithPrefix(NameStr, GV, false);
1421 return OutContext.GetOrCreateSymbol(NameStr.str());
1422}
1423
Chris Lattner7a2ba942010-01-16 18:37:32 +00001424/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
Chris Lattnerd588b972010-01-15 23:25:11 +00001425/// global value name as its base, with the specified suffix, and where the
Chris Lattner7a2ba942010-01-16 18:37:32 +00001426/// symbol is forced to have private linkage if ForcePrivate is true.
1427MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
1428 StringRef Suffix,
1429 bool ForcePrivate) const {
Chris Lattnerd588b972010-01-15 23:25:11 +00001430 SmallString<60> NameStr;
Chris Lattner7a2ba942010-01-16 18:37:32 +00001431 Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
Chris Lattnerd588b972010-01-15 23:25:11 +00001432 NameStr.append(Suffix.begin(), Suffix.end());
1433 return OutContext.GetOrCreateSymbol(NameStr.str());
1434}
1435
Chris Lattner6b04ede2010-01-15 23:18:17 +00001436/// GetExternalSymbolSymbol - Return the MCSymbol for the specified
1437/// ExternalSymbol.
1438MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
1439 SmallString<60> NameStr;
1440 Mang->getNameWithPrefix(NameStr, Sym);
1441 return OutContext.GetOrCreateSymbol(NameStr.str());
1442}
1443
Chris Lattner7cb384d2009-09-12 23:02:08 +00001444
Chris Lattner523a5082010-01-22 21:50:41 +00001445
1446/// PrintParentLoopComment - Print comments about parent loops of this one.
1447static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1448 unsigned FunctionNumber) {
1449 if (Loop == 0) return;
1450 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
1451 OS.indent(Loop->getLoopDepth()*2)
1452 << "Parent Loop BB" << FunctionNumber << "_"
1453 << Loop->getHeader()->getNumber()
1454 << " Depth=" << Loop->getLoopDepth() << '\n';
1455}
1456
1457
1458/// PrintChildLoopComment - Print comments about child loops within
1459/// the loop for this basic block, with nesting.
1460static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1461 unsigned FunctionNumber) {
1462 // Add child loop information
1463 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
1464 OS.indent((*CL)->getLoopDepth()*2)
1465 << "Child Loop BB" << FunctionNumber << "_"
1466 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
1467 << '\n';
1468 PrintChildLoopComment(OS, *CL, FunctionNumber);
1469 }
1470}
1471
1472/// EmitComments - Pretty-print comments for basic blocks.
1473static void PrintBasicBlockLoopComments(const MachineBasicBlock &MBB,
1474 const MachineLoopInfo *LI,
1475 const AsmPrinter &AP) {
1476 // Add loop depth information
1477 const MachineLoop *Loop = LI->getLoopFor(&MBB);
1478 if (Loop == 0) return;
1479
1480 MachineBasicBlock *Header = Loop->getHeader();
1481 assert(Header && "No header for loop");
1482
1483 // If this block is not a loop header, just print out what is the loop header
1484 // and return.
1485 if (Header != &MBB) {
1486 AP.OutStreamer.AddComment(" in Loop: Header=BB" +
1487 Twine(AP.getFunctionNumber())+"_" +
1488 Twine(Loop->getHeader()->getNumber())+
1489 " Depth="+Twine(Loop->getLoopDepth()));
1490 return;
1491 }
1492
1493 // Otherwise, it is a loop header. Print out information about child and
1494 // parent loops.
1495 raw_ostream &OS = AP.OutStreamer.GetCommentOS();
1496
1497 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
1498
1499 OS << "=>";
1500 OS.indent(Loop->getLoopDepth()*2-2);
1501
1502 OS << "This ";
1503 if (Loop->empty())
1504 OS << "Inner ";
1505 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
1506
1507 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
1508}
1509
1510
Chris Lattner70a54c02009-09-13 18:25:37 +00001511/// EmitBasicBlockStart - This method prints the label for the specified
1512/// MachineBasicBlock, an alignment (if present) and a comment describing
1513/// it if appropriate.
Chris Lattner662316c2009-09-14 03:15:54 +00001514void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
Dan Gohmanb1cac332009-10-30 01:34:35 +00001515 // Emit an alignment directive for this block, if needed.
Chris Lattner70a54c02009-09-13 18:25:37 +00001516 if (unsigned Align = MBB->getAlignment())
1517 EmitAlignment(Log2_32(Align));
Evan Chengfb8075d2008-02-28 00:43:03 +00001518
Dan Gohmanb1cac332009-10-30 01:34:35 +00001519 // If the block has its address taken, emit a special label to satisfy
1520 // references to the block. This is done so that we don't need to
1521 // remember the number of this label, and so that we can make
1522 // forward references to labels without knowing what their numbers
1523 // will be.
Dan Gohman8c2b5252009-10-30 01:27:03 +00001524 if (MBB->hasAddressTaken()) {
Chris Lattner213168b2010-01-20 07:24:05 +00001525 const BasicBlock *BB = MBB->getBasicBlock();
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001526 if (VerboseAsm)
1527 OutStreamer.AddComment("Address Taken");
Chris Lattner213168b2010-01-20 07:24:05 +00001528 OutStreamer.EmitLabel(GetBlockAddressSymbol(BB->getParent(), BB));
Dan Gohman8c2b5252009-10-30 01:27:03 +00001529 }
1530
Dan Gohmanb1cac332009-10-30 01:34:35 +00001531 // Print the main label for the block.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001532 if (MBB->pred_empty() || MBB->isOnlyReachableByFallthrough()) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001533 if (VerboseAsm) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +00001534 // NOTE: Want this comment at start of line.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001535 O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001536 if (const BasicBlock *BB = MBB->getBasicBlock())
1537 if (BB->hasName())
1538 OutStreamer.AddComment("%" + BB->getName());
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001539
Chris Lattner523a5082010-01-22 21:50:41 +00001540 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001541 OutStreamer.AddBlankLine();
1542 }
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001543 } else {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001544 if (VerboseAsm) {
1545 if (const BasicBlock *BB = MBB->getBasicBlock())
1546 if (BB->hasName())
1547 OutStreamer.AddComment("%" + BB->getName());
Chris Lattner523a5082010-01-22 21:50:41 +00001548 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001549 }
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001550
Chris Lattner213168b2010-01-20 07:24:05 +00001551 OutStreamer.EmitLabel(GetMBBSymbol(MBB->getNumber()));
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001552 }
Nate Begeman37efe672006-04-22 18:53:45 +00001553}
Nate Begeman52a51e382006-08-12 21:29:52 +00001554
Evan Chengcc415862007-11-09 01:32:10 +00001555/// printPICJumpTableSetLabel - This method prints a set label for the
1556/// specified MachineBasicBlock for a jumptable entry.
1557void AsmPrinter::printPICJumpTableSetLabel(unsigned uid,
1558 const MachineBasicBlock *MBB) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001559 if (!MAI->getSetDirective())
Nate Begeman52a51e382006-08-12 21:29:52 +00001560 return;
1561
Chris Lattner33adcfb2009-08-22 21:43:10 +00001562 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
Chris Lattner798d1252010-01-25 21:17:10 +00001563 << *GetJTSetSymbol(uid, MBB->getNumber()) << ','
1564 << *GetMBBSymbol(MBB->getNumber()) << '-' << *GetJTISymbol(uid) << '\n';
Nate Begeman52a51e382006-08-12 21:29:52 +00001565}
Evan Chengd6594ae2006-09-12 21:00:35 +00001566
Chris Lattner152a29b2010-01-23 06:53:23 +00001567void AsmPrinter::printVisibility(MCSymbol *Sym, unsigned Visibility) const {
1568 MCSymbolAttr Attr = MCSA_Invalid;
1569
1570 switch (Visibility) {
1571 default: break;
1572 case GlobalValue::HiddenVisibility:
1573 Attr = MAI->getHiddenVisibilityAttr();
1574 break;
1575 case GlobalValue::ProtectedVisibility:
1576 Attr = MAI->getProtectedVisibilityAttr();
1577 break;
Chris Lattner53d4d782010-01-15 23:38:51 +00001578 }
Chris Lattner152a29b2010-01-23 06:53:23 +00001579
1580 if (Attr != MCSA_Invalid)
1581 OutStreamer.EmitSymbolAttribute(Sym, Attr);
Chris Lattner53d4d782010-01-15 23:38:51 +00001582}
1583
Anton Korobeynikov7751ad92008-11-22 16:15:34 +00001584void AsmPrinter::printOffset(int64_t Offset) const {
1585 if (Offset > 0)
1586 O << '+' << Offset;
1587 else if (Offset < 0)
1588 O << Offset;
1589}
1590
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001591GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1592 if (!S->usesMetadata())
Gordon Henriksenc317a602008-08-17 12:08:44 +00001593 return 0;
1594
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001595 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001596 if (GCPI != GCMetadataPrinters.end())
1597 return GCPI->second;
1598
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001599 const char *Name = S->getName().c_str();
Gordon Henriksenc317a602008-08-17 12:08:44 +00001600
1601 for (GCMetadataPrinterRegistry::iterator
1602 I = GCMetadataPrinterRegistry::begin(),
1603 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1604 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001605 GCMetadataPrinter *GMP = I->instantiate();
1606 GMP->S = S;
1607 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1608 return GMP;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001609 }
1610
Chris Lattner52492ac2010-01-23 06:17:14 +00001611 llvm_report_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
1612 return 0;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001613}
David Greene014700c2009-07-13 20:25:48 +00001614
1615/// EmitComments - Pretty-print comments for instructions
Chris Lattner5f51cd02009-08-07 23:42:01 +00001616void AsmPrinter::EmitComments(const MachineInstr &MI) const {
David Greene1924aab2009-11-13 21:34:57 +00001617 if (!VerboseAsm)
1618 return;
David Greene3ac1ab82009-07-16 22:24:20 +00001619
David Greene1924aab2009-11-13 21:34:57 +00001620 bool Newline = false;
1621
1622 if (!MI.getDebugLoc().isUnknown()) {
Devang Patel6b61f582010-01-16 06:09:35 +00001623 DILocation DLT = MF->getDILocation(MI.getDebugLoc());
David Greene1924aab2009-11-13 21:34:57 +00001624
1625 // Print source line info.
1626 O.PadToColumn(MAI->getCommentColumn());
Dan Gohman3b9bc042009-12-05 00:23:29 +00001627 O << MAI->getCommentString() << ' ';
Devang Patel6b61f582010-01-16 06:09:35 +00001628 DIScope Scope = DLT.getScope();
Dan Gohman3b9bc042009-12-05 00:23:29 +00001629 // Omit the directory, because it's likely to be long and uninteresting.
1630 if (!Scope.isNull())
1631 O << Scope.getFilename();
1632 else
1633 O << "<unknown>";
Devang Patel6b61f582010-01-16 06:09:35 +00001634 O << ':' << DLT.getLineNumber();
1635 if (DLT.getColumnNumber() != 0)
1636 O << ':' << DLT.getColumnNumber();
David Greene1924aab2009-11-13 21:34:57 +00001637 Newline = true;
David Greene3ac1ab82009-07-16 22:24:20 +00001638 }
David Greene1924aab2009-11-13 21:34:57 +00001639
David Greeneddff9412009-11-16 15:12:23 +00001640 // Check for spills and reloads
1641 int FI;
1642
1643 const MachineFrameInfo *FrameInfo =
1644 MI.getParent()->getParent()->getFrameInfo();
1645
1646 // We assume a single instruction only has a spill or reload, not
1647 // both.
David Greenef7ea2a52009-12-04 22:46:04 +00001648 const MachineMemOperand *MMO;
David Greeneddff9412009-11-16 15:12:23 +00001649 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
1650 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001651 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001652 if (Newline) O << '\n';
1653 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001654 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Reload";
David Greeneddff9412009-11-16 15:12:23 +00001655 Newline = true;
1656 }
1657 }
David Greenef7ea2a52009-12-04 22:46:04 +00001658 else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001659 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1660 if (Newline) O << '\n';
1661 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001662 O << MAI->getCommentString() << ' '
1663 << MMO->getSize() << "-byte Folded Reload";
David Greeneddff9412009-11-16 15:12:23 +00001664 Newline = true;
1665 }
1666 }
1667 else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
1668 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001669 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001670 if (Newline) O << '\n';
1671 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001672 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Spill";
David Greeneddff9412009-11-16 15:12:23 +00001673 Newline = true;
1674 }
1675 }
David Greenef7ea2a52009-12-04 22:46:04 +00001676 else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001677 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1678 if (Newline) O << '\n';
1679 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001680 O << MAI->getCommentString() << ' '
1681 << MMO->getSize() << "-byte Folded Spill";
David Greeneddff9412009-11-16 15:12:23 +00001682 Newline = true;
1683 }
1684 }
1685
1686 // Check for spill-induced copies
1687 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1688 if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
1689 SrcSubIdx, DstSubIdx)) {
1690 if (MI.getAsmPrinterFlag(ReloadReuse)) {
1691 if (Newline) O << '\n';
1692 O.PadToColumn(MAI->getCommentColumn());
1693 O << MAI->getCommentString() << " Reload Reuse";
David Greeneddff9412009-11-16 15:12:23 +00001694 }
1695 }
David Greene014700c2009-07-13 20:25:48 +00001696}
1697