blob: bb90356625e0c299bda163d4be7f7c625e7a648a [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)
Chris Lattnerb84822f2010-01-26 04:35:26 +000067 : MachineFunctionPass(&ID), 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 Lattnerb84822f2010-01-26 04:35:26 +000090/// getFunctionNumber - Return a unique ID for the current function.
91///
92unsigned AsmPrinter::getFunctionNumber() const {
93 return MF->getFunctionNumber();
94}
95
Chris Lattner38c39882009-08-03 19:12:26 +000096TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
Chris Lattnerf0144122009-07-28 03:13:23 +000097 return TM.getTargetLowering()->getObjFileLowering();
98}
99
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000100/// getCurrentSection() - Return the current section we are emitting to.
101const MCSection *AsmPrinter::getCurrentSection() const {
102 return OutStreamer.getCurrentSection();
103}
104
105
Gordon Henriksence224772008-01-07 01:30:38 +0000106void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +0000107 AU.setPreservesAll();
Gordon Henriksence224772008-01-07 01:30:38 +0000108 MachineFunctionPass::getAnalysisUsage(AU);
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000109 AU.addRequired<GCModuleInfo>();
David Greenefe37ab32009-08-18 19:22:55 +0000110 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000111 AU.addRequired<MachineLoopInfo>();
Gordon Henriksence224772008-01-07 01:30:38 +0000112}
113
Chris Lattnera80ba712004-08-16 23:15:22 +0000114bool AsmPrinter::doInitialization(Module &M) {
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000115 // Initialize TargetLoweringObjectFile.
116 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
117 .Initialize(OutContext, TM);
118
Chris Lattnerc0dba722010-01-17 18:22:35 +0000119 Mang = new Mangler(*MAI);
Chris Lattner2c1b1592006-01-23 23:47:53 +0000120
Bob Wilson812209a2009-09-30 22:06:26 +0000121 // Allow the target to emit any magic that it wants at the start of the file.
122 EmitStartOfAsmFile(M);
Rafael Espindola952b8392008-12-03 11:01:37 +0000123
Chris Lattnera6594fc2010-01-25 18:58:59 +0000124 // Very minimal debug info. It is ignored if we emit actual debug info. If we
125 // don't, this at least helps the user find where a global came from.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000126 if (MAI->hasSingleParameterDotFile()) {
Chris Lattnera6594fc2010-01-25 18:58:59 +0000127 // .file "foo.c"
128 OutStreamer.EmitFileDirective(M.getModuleIdentifier());
Rafael Espindola952b8392008-12-03 11:01:37 +0000129 }
130
Bob Wilson812209a2009-09-30 22:06:26 +0000131 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
132 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000133 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
134 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000135 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000136
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000137 if (!M.getModuleInlineAsm().empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000138 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000139 << M.getModuleInlineAsm()
Chris Lattner33adcfb2009-08-22 21:43:10 +0000140 << '\n' << MAI->getCommentString()
Jim Laskey563321a2006-09-06 18:34:40 +0000141 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000142
Chris Lattnerb55e0682009-09-24 05:44:53 +0000143 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
144 if (MMI)
145 MMI->AnalyzeModule(M);
146 DW = getAnalysisIfAvailable<DwarfWriter>();
Sanjiv Gupta9a501cf2009-11-14 07:22:25 +0000147 if (DW)
Chris Lattnerb55e0682009-09-24 05:44:53 +0000148 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel14a55d92009-06-19 21:54:26 +0000149
Chris Lattnera80ba712004-08-16 23:15:22 +0000150 return false;
151}
152
Chris Lattnera3e88832010-01-26 23:47:12 +0000153void AsmPrinter::EmitLinkage(unsigned Linkage, MCSymbol *GVSym) {
154 switch ((GlobalValue::LinkageTypes)Linkage) {
155 case GlobalValue::CommonLinkage:
156 case GlobalValue::LinkOnceAnyLinkage:
157 case GlobalValue::LinkOnceODRLinkage:
158 case GlobalValue::WeakAnyLinkage:
159 case GlobalValue::WeakODRLinkage:
160 case GlobalValue::LinkerPrivateLinkage:
161 if (MAI->getWeakDefDirective() != 0) {
162 // .globl _foo
163 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
164 // .weak_definition _foo
165 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
166 } else if (const char *LinkOnce = MAI->getLinkOnceDirective()) {
167 // .globl _foo
168 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
169 // FIXME: linkonce should be a section attribute, handled by COFF Section
170 // assignment.
171 // http://sourceware.org/binutils/docs-2.20/as/Linkonce.html#Linkonce
172 // .linkonce same_size
173 O << LinkOnce;
174 } else {
175 // .weak _foo
176 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
177 }
178 break;
179 case GlobalValue::DLLExportLinkage:
180 case GlobalValue::AppendingLinkage:
181 // FIXME: appending linkage variables should go into a section of
182 // their name or something. For now, just emit them as external.
183 case GlobalValue::ExternalLinkage:
184 // If external or appending, declare as a global symbol.
185 // .globl _foo
186 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
187 break;
188 case GlobalValue::PrivateLinkage:
189 case GlobalValue::InternalLinkage:
190 break;
191 default:
192 llvm_unreachable("Unknown linkage type!");
193 }
194}
195
196
Chris Lattner48d64ba2010-01-19 04:39:15 +0000197/// EmitGlobalVariable - Emit the specified global variable to the .s file.
198void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
199 if (!GV->hasInitializer()) // External globals require no code.
200 return;
201
202 // Check to see if this is a special global used by LLVM, if so, emit it.
203 if (EmitSpecialLLVMGlobal(GV))
204 return;
Chris Lattner74bfe212010-01-19 05:38:33 +0000205
206 MCSymbol *GVSym = GetGlobalValueSymbol(GV);
207 printVisibility(GVSym, GV->getVisibility());
208
Chris Lattnera800f7c2010-01-25 18:33:40 +0000209 if (MAI->hasDotTypeDotSizeDirective())
210 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
Chris Lattner48d64ba2010-01-19 04:39:15 +0000211
Chris Lattner74bfe212010-01-19 05:38:33 +0000212 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
213
214 const TargetData *TD = TM.getTargetData();
215 unsigned Size = TD->getTypeAllocSize(GV->getType()->getElementType());
216 unsigned AlignLog = TD->getPreferredAlignmentLog(GV);
217
Chris Lattner9744d612010-01-19 05:51:42 +0000218 // Handle common and BSS local symbols (.lcomm).
219 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000220 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
221
Chris Lattner74bfe212010-01-19 05:38:33 +0000222 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000223 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
224 /*PrintType=*/false, GV->getParent());
225 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000226 }
Chris Lattner814819f2010-01-19 06:25:51 +0000227
228 // Handle common symbols.
Chris Lattner9744d612010-01-19 05:51:42 +0000229 if (GVKind.isCommon()) {
230 // .comm _foo, 42, 4
Chris Lattner4ed54382010-01-19 06:01:04 +0000231 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner814819f2010-01-19 06:25:51 +0000232 return;
Chris Lattner9744d612010-01-19 05:51:42 +0000233 }
Chris Lattner814819f2010-01-19 06:25:51 +0000234
235 // Handle local BSS symbols.
236 if (MAI->hasMachoZeroFillDirective()) {
237 const MCSection *TheSection =
238 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
239 // .zerofill __DATA, __bss, _foo, 400, 5
240 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
241 return;
242 }
243
Chris Lattner9eb158d2010-01-23 07:47:02 +0000244 if (MAI->hasLCOMMDirective()) {
Chris Lattner814819f2010-01-19 06:25:51 +0000245 // .lcomm _foo, 42
Chris Lattner9eb158d2010-01-23 07:47:02 +0000246 OutStreamer.EmitLocalCommonSymbol(GVSym, Size);
Chris Lattner814819f2010-01-19 06:25:51 +0000247 return;
248 }
249
250 // .local _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000251 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
Chris Lattner814819f2010-01-19 06:25:51 +0000252 // .comm _foo, 42, 4
253 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner74bfe212010-01-19 05:38:33 +0000254 return;
255 }
256
257 const MCSection *TheSection =
258 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
259
260 // Handle the zerofill directive on darwin, which is a special form of BSS
261 // emission.
262 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
263 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000264 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000265 // .zerofill __DATA, __common, _foo, 400, 5
266 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
267 return;
268 }
269
270 OutStreamer.SwitchSection(TheSection);
271
Chris Lattnera3e88832010-01-26 23:47:12 +0000272 EmitLinkage(GV->getLinkage(), GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000273 EmitAlignment(AlignLog, GV);
Chris Lattnera3e88832010-01-26 23:47:12 +0000274
Chris Lattner74bfe212010-01-19 05:38:33 +0000275 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000276 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
277 /*PrintType=*/false, GV->getParent());
278 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000279 }
Chris Lattner4c8c6682010-01-19 06:41:24 +0000280 OutStreamer.EmitLabel(GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000281
282 EmitGlobalConstant(GV->getInitializer());
283
284 if (MAI->hasDotTypeDotSizeDirective())
Chris Lattner1947f242010-01-25 07:53:05 +0000285 // .size foo, 42
Chris Lattner99328ad2010-01-25 07:52:13 +0000286 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000287
288 OutStreamer.AddBlankLine();
Chris Lattner48d64ba2010-01-19 04:39:15 +0000289}
290
Chris Lattnerb11caed2010-01-26 23:18:44 +0000291/// EmitFunctionHeader - This method emits the header for the current
292/// function.
293void AsmPrinter::EmitFunctionHeader() {
294 // Print out constants referenced by the function
295 EmitConstantPool(MF->getConstantPool());
296
297 // Print the 'header' of function.
Chris Lattnerb11caed2010-01-26 23:18:44 +0000298 const Function *F = MF->getFunction();
299
300 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Chris Lattnerb406a812010-01-26 23:41:48 +0000301 printVisibility(CurrentFnSym, F->getVisibility());
Chris Lattnerb11caed2010-01-26 23:18:44 +0000302
303 switch (F->getLinkage()) {
304 default: llvm_unreachable("Unknown linkage type!");
305 case Function::InternalLinkage: // Symbols default to internal.
306 case Function::PrivateLinkage:
307 break;
308 case Function::DLLExportLinkage:
309 case Function::ExternalLinkage:
310 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_Global);
311 break;
312 case Function::LinkerPrivateLinkage:
313 case Function::LinkOnceAnyLinkage:
314 case Function::LinkOnceODRLinkage:
315 case Function::WeakAnyLinkage:
316 case Function::WeakODRLinkage:
317 if (MAI->getWeakDefDirective() != 0) {
318 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_Global);
319 O << MAI->getWeakDefDirective() << *CurrentFnSym << '\n';
320 } else if (MAI->getLinkOnceDirective() != 0) {
321 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_Global);
322 // FIXME: linkonce should be a section attribute, handled by COFF Section
323 // assignment.
324 // http://sourceware.org/binutils/docs-2.20/as/Linkonce.html#Linkonce
325 O << "\t.linkonce discard\n";
326 } else {
327 O << "\t.weak\t" << *CurrentFnSym << '\n';
328 }
329 break;
330 }
331
Chris Lattnerb406a812010-01-26 23:41:48 +0000332 EmitAlignment(MF->getAlignment(), F);
333
Chris Lattnerb11caed2010-01-26 23:18:44 +0000334
335 if (MAI->hasDotTypeDotSizeDirective())
336 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
337
338 O << *CurrentFnSym << ':';
339 if (VerboseAsm) {
340 O.PadToColumn(MAI->getCommentColumn());
341 O << MAI->getCommentString() << ' ';
342 WriteAsOperand(O, F, /*PrintType=*/false, F->getParent());
343 }
344 O << '\n';
345
346 // Add some workaround for linkonce linkage on Cygwin\MinGW.
347 if (MAI->getLinkOnceDirective() != 0 &&
348 (F->hasLinkOnceLinkage() || F->hasWeakLinkage()))
349 O << "Lllvm$workaround$fake$stub$" << *CurrentFnSym << ":\n";
350
351 // Emit pre-function debug and/or EH information.
352 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
353 DW->BeginFunction(MF);
354}
355
356
357
Chris Lattner48d64ba2010-01-19 04:39:15 +0000358
Chris Lattnera80ba712004-08-16 23:15:22 +0000359bool AsmPrinter::doFinalization(Module &M) {
Chris Lattner40bbebd2009-07-21 18:38:57 +0000360 // Emit global variables.
361 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
362 I != E; ++I)
Chris Lattner48d64ba2010-01-19 04:39:15 +0000363 EmitGlobalVariable(I);
Chris Lattner40bbebd2009-07-21 18:38:57 +0000364
Chris Lattner1f522fe2009-06-24 18:54:37 +0000365 // Emit final debug information.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000366 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattner1f522fe2009-06-24 18:54:37 +0000367 DW->EndModule();
368
Chris Lattner0a7befa2009-06-24 18:52:01 +0000369 // If the target wants to know about weak references, print them all.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000370 if (MAI->getWeakRefDirective()) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000371 // FIXME: This is not lazy, it would be nice to only print weak references
372 // to stuff that is actually used. Note that doing so would require targets
373 // to notice uses in operands (due to constant exprs etc). This should
374 // happen with the MC stuff eventually.
Rafael Espindola15404d02006-12-18 03:37:18 +0000375
Chris Lattner0a7befa2009-06-24 18:52:01 +0000376 // Print out module-level global variables here.
377 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
378 I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000379 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000380 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000381 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000382 }
383
Chris Lattnerc6fdced2009-08-03 23:10:34 +0000384 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000385 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000386 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000387 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000388 }
Rafael Espindola15404d02006-12-18 03:37:18 +0000389 }
390
Chris Lattnercee63322010-01-26 20:40:54 +0000391 if (MAI->hasSetDirective()) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000392 OutStreamer.AddBlankLine();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000393 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattner0a7befa2009-06-24 18:52:01 +0000394 I != E; ++I) {
Chris Lattner5c40e692010-01-16 01:17:26 +0000395 MCSymbol *Name = GetGlobalValueSymbol(I);
Anton Korobeynikov325be7c2007-09-06 17:21:48 +0000396
397 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattner5c40e692010-01-16 01:17:26 +0000398 MCSymbol *Target = GetGlobalValueSymbol(GV);
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000399
Chris Lattner10b318b2010-01-17 21:43:43 +0000400 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000401 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
Chris Lattner10b318b2010-01-17 21:43:43 +0000402 else if (I->hasWeakLinkage())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000403 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
Chris Lattner10b318b2010-01-17 21:43:43 +0000404 else
Chris Lattner10595492010-01-16 01:37:14 +0000405 assert(I->hasLocalLinkage() && "Invalid alias linkage");
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000406
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000407 printVisibility(Name, I->getVisibility());
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000408
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000409 // Emit the directives as assignments aka .set:
410 OutStreamer.EmitAssignment(Name,
411 MCSymbolRefExpr::Create(Target, OutContext));
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000412 }
413 }
414
Duncan Sands1465d612009-01-28 13:14:17 +0000415 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000416 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
417 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
418 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000419 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000420
Dan Gohmana779a982008-05-05 00:28:39 +0000421 // If we don't have any trampolines, then we don't require stack memory
422 // to be executable. Some targets have a directive to declare this.
Chris Lattner0a7befa2009-06-24 18:52:01 +0000423 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana779a982008-05-05 00:28:39 +0000424 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattnerf9f93e42010-01-23 07:21:06 +0000425 if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
426 OutStreamer.SwitchSection(S);
Chris Lattnerbd23d5f2009-09-18 20:17:03 +0000427
428 // Allow the target to emit any magic that it wants at the end of the file,
429 // after everything else has gone out.
430 EmitEndOfAsmFile(M);
431
Chris Lattnera80ba712004-08-16 23:15:22 +0000432 delete Mang; Mang = 0;
Chris Lattner0de1fc42009-06-24 19:09:55 +0000433 DW = 0; MMI = 0;
Chris Lattner2b2954f2009-07-27 21:28:04 +0000434
435 OutStreamer.Finish();
Chris Lattnera80ba712004-08-16 23:15:22 +0000436 return false;
437}
438
Chris Lattner25045bd2005-11-21 07:51:36 +0000439void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnerb84822f2010-01-26 04:35:26 +0000440 this->MF = &MF;
Chris Lattner412c3a52010-01-16 01:24:10 +0000441 // Get the function symbol.
Chris Lattnerd1947ed2010-01-15 23:55:16 +0000442 CurrentFnSym = GetGlobalValueSymbol(MF.getFunction());
David Greeneb71d1b22009-08-10 16:38:07 +0000443
Chris Lattner25d812b2009-09-16 00:35:39 +0000444 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000445 LI = &getAnalysis<MachineLoopInfo>();
Chris Lattnera80ba712004-08-16 23:15:22 +0000446}
447
Evan Cheng1606e8e2009-03-13 07:51:59 +0000448namespace {
449 // SectionCPs - Keep track the alignment, constpool entries per Section.
450 struct SectionCPs {
Chris Lattnera87dea42009-07-31 18:48:30 +0000451 const MCSection *S;
Evan Cheng1606e8e2009-03-13 07:51:59 +0000452 unsigned Alignment;
453 SmallVector<unsigned, 4> CPEs;
Douglas Gregorcabdd742009-12-19 07:05:23 +0000454 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
Evan Cheng1606e8e2009-03-13 07:51:59 +0000455 };
456}
457
Chris Lattner3b4fd322005-11-21 08:25:09 +0000458/// EmitConstantPool - Print to the current output stream assembly
459/// representations of the constants in the constant pool MCP. This is
460/// used to print out constants which have been "spilled to memory" by
461/// the code generator.
462///
Chris Lattnerb11caed2010-01-26 23:18:44 +0000463void AsmPrinter::EmitConstantPool(const MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000464 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000465 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000466
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000467 // Calculate sections for constant pool entries. We collect entries to go into
468 // the same section together to reduce amount of section switch statements.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000469 SmallVector<SectionCPs, 4> CPSections;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000470 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner298414e2009-07-22 00:28:43 +0000471 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng1606e8e2009-03-13 07:51:59 +0000472 unsigned Align = CPE.getAlignment();
Chris Lattner5c2f7892009-07-26 06:26:55 +0000473
474 SectionKind Kind;
475 switch (CPE.getRelocationInfo()) {
476 default: llvm_unreachable("Unknown section kind");
Chris Lattner27981192009-08-01 23:57:16 +0000477 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000478 case 1:
Chris Lattner27981192009-08-01 23:57:16 +0000479 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattner4c509222009-07-26 07:00:12 +0000480 break;
Chris Lattner5c2f7892009-07-26 06:26:55 +0000481 case 0:
Chris Lattner4c509222009-07-26 07:00:12 +0000482 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000483 case 4: Kind = SectionKind::getMergeableConst4(); break;
484 case 8: Kind = SectionKind::getMergeableConst8(); break;
485 case 16: Kind = SectionKind::getMergeableConst16();break;
486 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000487 }
Chris Lattner5c2f7892009-07-26 06:26:55 +0000488 }
489
Chris Lattner83d77fa2009-08-01 23:46:12 +0000490 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner298414e2009-07-22 00:28:43 +0000491
Evan Cheng1606e8e2009-03-13 07:51:59 +0000492 // The number of sections are small, just do a linear search from the
493 // last section to the first.
494 bool Found = false;
495 unsigned SecIdx = CPSections.size();
496 while (SecIdx != 0) {
497 if (CPSections[--SecIdx].S == S) {
498 Found = true;
499 break;
500 }
501 }
502 if (!Found) {
503 SecIdx = CPSections.size();
504 CPSections.push_back(SectionCPs(S, Align));
505 }
506
507 if (Align > CPSections[SecIdx].Alignment)
508 CPSections[SecIdx].Alignment = Align;
509 CPSections[SecIdx].CPEs.push_back(i);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000510 }
511
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000512 // Now print stuff into the calculated sections.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000513 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000514 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000515 EmitAlignment(Log2_32(CPSections[i].Alignment));
Evan Cheng2d2cec12006-06-29 00:26:09 +0000516
Evan Cheng1606e8e2009-03-13 07:51:59 +0000517 unsigned Offset = 0;
518 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
519 unsigned CPI = CPSections[i].CPEs[j];
520 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000521
Chris Lattner3029f922006-02-09 04:46:04 +0000522 // Emit inter-object padding for alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000523 unsigned AlignMask = CPE.getAlignment() - 1;
524 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
Chris Lattneraaec2052010-01-19 19:46:13 +0000525 OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000526
527 const Type *Ty = CPE.getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000528 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000529
Chris Lattner39248682010-01-23 05:19:23 +0000530 // Emit the label with a comment on it.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000531 if (VerboseAsm) {
Chris Lattner39248682010-01-23 05:19:23 +0000532 OutStreamer.GetCommentOS() << "constant pool ";
533 WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(),
534 MF->getFunction()->getParent());
535 OutStreamer.GetCommentOS() << '\n';
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000536 }
Chris Lattner39248682010-01-23 05:19:23 +0000537 OutStreamer.EmitLabel(GetCPISymbol(CPI));
538
Evan Cheng1606e8e2009-03-13 07:51:59 +0000539 if (CPE.isMachineConstantPoolEntry())
540 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
541 else
542 EmitGlobalConstant(CPE.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000543 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000544 }
545}
546
Nate Begeman37efe672006-04-22 18:53:45 +0000547/// EmitJumpTableInfo - Print assembly representations of the jump tables used
548/// by the current function to the current output stream.
549///
Chris Lattner44e87252010-01-25 22:41:33 +0000550void AsmPrinter::EmitJumpTableInfo(MachineFunction &MF) {
551 MachineJumpTableInfo *MJTI = MF.getJumpTableInfo();
552 if (MJTI == 0) return;
Nate Begeman37efe672006-04-22 18:53:45 +0000553 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
554 if (JT.empty()) return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000555
Nate Begeman2f1ae882006-07-27 01:13:04 +0000556 // Pick the directive to use to print the jump table entries, and switch to
557 // the appropriate section.
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000558 const Function *F = MF.getFunction();
Evan Chengb13bafe2009-06-18 20:37:15 +0000559 bool JTInDiffSection = false;
Chris Lattnerf1214cb2010-01-26 06:53:37 +0000560 if (// In PIC mode, we need to emit the jump table to the same section as the
561 // function body itself, otherwise the label differences won't make sense.
562 // FIXME: Need a better predicate for this: what about custom entries?
563 MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 ||
564 // We should also do if the section name is NULL or function is declared
565 // in discardable section
566 // FIXME: this isn't the right predicate, should be based on the MCSection
567 // for the function.
568 F->isWeakForLinker()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000569 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang,
570 TM));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000571 } else {
Chris Lattner83d77fa2009-08-01 23:46:12 +0000572 // Otherwise, drop it in the readonly section.
573 const MCSection *ReadOnlySection =
Chris Lattner27981192009-08-01 23:57:16 +0000574 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000575 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengb13bafe2009-06-18 20:37:15 +0000576 JTInDiffSection = true;
Nate Begeman2f1ae882006-07-27 01:13:04 +0000577 }
Chris Lattner071c62f2010-01-25 23:26:13 +0000578
Chris Lattner071c62f2010-01-25 23:26:13 +0000579 EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getTargetData())));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000580
Chris Lattner3b131d72010-01-26 06:42:44 +0000581 for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
582 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000583
584 // If this jump table was deleted, ignore it.
585 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000586
Chris Lattnere35df922010-01-26 05:15:20 +0000587 // For the EK_LabelDifference32 entry, if the target supports .set, emit a
588 // .set directive for each unique entry. This reduces the number of
589 // relocations the assembler will generate for the jump table.
590 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
Chris Lattnercee63322010-01-26 20:40:54 +0000591 MAI->hasSetDirective()) {
Chris Lattner3b131d72010-01-26 06:42:44 +0000592 SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
593 const TargetLowering *TLI = TM.getTargetLowering();
594 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(&MF, JTI,
595 OutContext);
596 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
597 const MachineBasicBlock *MBB = JTBBs[ii];
598 if (!EmittedSets.insert(MBB)) continue;
599
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000600 // .set LJTSet, LBB32-base
601 const MCExpr *LHS =
602 MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
603 OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
604 MCBinaryExpr::CreateSub(LHS, Base, OutContext));
Chris Lattner3b131d72010-01-26 06:42:44 +0000605 }
606 }
Nate Begeman52a51e382006-08-12 21:29:52 +0000607
Chris Lattner7c301912009-09-13 19:02:16 +0000608 // On some targets (e.g. Darwin) we want to emit two consequtive labels
Chris Lattner393a8ee2007-01-18 01:12:56 +0000609 // before each jump table. The first label is never referenced, but tells
610 // the assembler and linker the extents of the jump table object. The
611 // second label is actually referenced by the code.
Chris Lattner39248682010-01-23 05:19:23 +0000612 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
Chris Lattnerbeeb93e2010-01-26 05:58:28 +0000613 // FIXME: This doesn't have to have any specific name, just any randomly
614 // named and numbered 'l' label would work. Simplify GetJTISymbol.
Chris Lattner3b131d72010-01-26 06:42:44 +0000615 OutStreamer.EmitLabel(GetJTISymbol(JTI, true));
Chris Lattner39248682010-01-23 05:19:23 +0000616
Chris Lattner3b131d72010-01-26 06:42:44 +0000617 OutStreamer.EmitLabel(GetJTISymbol(JTI));
Chris Lattner39248682010-01-23 05:19:23 +0000618
Chris Lattner6bf1def2010-01-26 05:10:10 +0000619 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Chris Lattner3b131d72010-01-26 06:42:44 +0000620 EmitJumpTableEntry(MJTI, JTBBs[ii], JTI);
Nate Begeman37efe672006-04-22 18:53:45 +0000621 }
622}
623
Chris Lattner6bf1def2010-01-26 05:10:10 +0000624/// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
625/// current stream.
626void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
627 const MachineBasicBlock *MBB,
628 unsigned UID) const {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000629 const MCExpr *Value = 0;
630 switch (MJTI->getEntryKind()) {
Chris Lattner85fe0782010-01-26 04:05:28 +0000631 case MachineJumpTableInfo::EK_Custom32:
Chris Lattner6bf1def2010-01-26 05:10:10 +0000632 Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
Chris Lattner85fe0782010-01-26 04:05:28 +0000633 OutContext);
634 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000635 case MachineJumpTableInfo::EK_BlockAddress:
636 // EK_BlockAddress - Each entry is a plain address of block, e.g.:
637 // .word LBB123
Chris Lattnerf71cb012010-01-26 04:55:51 +0000638 Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000639 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000640 case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
641 // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
642 // with a relocation as gp-relative, e.g.:
643 // .gprel32 LBB123
Chris Lattnerf71cb012010-01-26 04:55:51 +0000644 MCSymbol *MBBSym = MBB->getSymbol(OutContext);
Chris Lattner718fb592010-01-25 21:28:50 +0000645 OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
Chris Lattner78f485a2010-01-25 21:10:10 +0000646 return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000647 }
Chris Lattner85fe0782010-01-26 04:05:28 +0000648
Chris Lattnerff537ce2010-01-26 03:43:22 +0000649 case MachineJumpTableInfo::EK_LabelDifference32: {
650 // EK_LabelDifference32 - Each entry is the address of the block minus
651 // the address of the jump table. This is used for PIC jump tables where
652 // gprel32 is not supported. e.g.:
653 // .word LBB123 - LJTI1_2
654 // If the .set directive is supported, this is emitted as:
655 // .set L4_5_set_123, LBB123 - LJTI1_2
656 // .word L4_5_set_123
657
658 // If we have emitted set directives for the jump table entries, print
659 // them rather than the entries themselves. If we're emitting PIC, then
660 // emit the table entries as differences between two text section labels.
Chris Lattnercee63322010-01-26 20:40:54 +0000661 if (MAI->hasSetDirective()) {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000662 // If we used .set, reference the .set's symbol.
Chris Lattner6bf1def2010-01-26 05:10:10 +0000663 Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
Chris Lattnerff537ce2010-01-26 03:43:22 +0000664 OutContext);
665 break;
666 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000667 // Otherwise, use the difference as the jump table entry.
Chris Lattnerf71cb012010-01-26 04:55:51 +0000668 Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
Chris Lattner6bf1def2010-01-26 05:10:10 +0000669 const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000670 Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
671 break;
672 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000673 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000674
Chris Lattnerff537ce2010-01-26 03:43:22 +0000675 assert(Value && "Unknown entry kind!");
676
Chris Lattner071c62f2010-01-25 23:26:13 +0000677 unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData());
Chris Lattnerff537ce2010-01-26 03:43:22 +0000678 OutStreamer.EmitValue(Value, EntrySize, /*addrspace*/0);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000679}
680
681
Chris Lattnered138932005-12-13 06:32:10 +0000682/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
683/// special global used by LLVM. If so, emit it and return true, otherwise
684/// do nothing and return false.
685bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000686 if (GV->getName() == "llvm.used") {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000687 if (MAI->hasNoDeadStrip()) // No need to emit this at all.
Andrew Lenharthb753a9b2007-08-22 19:33:11 +0000688 EmitLLVMUsedList(GV->getInitializer());
689 return true;
690 }
691
Chris Lattner401e10c2009-07-20 06:14:25 +0000692 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000693 if (GV->getSection() == "llvm.metadata" ||
694 GV->hasAvailableExternallyLinkage())
695 return true;
Jim Laskey78098112006-03-07 22:00:35 +0000696
697 if (!GV->hasAppendingLinkage()) return false;
698
699 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000700
Evan Cheng916d07c2007-06-04 20:39:18 +0000701 const TargetData *TD = TM.getTargetData();
702 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattnerf231c072009-03-09 05:52:15 +0000703 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000704 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000705 EmitAlignment(Align, 0);
706 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000707
708 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000709 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
710 StringRef Sym(".constructors_used");
711 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000712 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000713 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000714 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000715 }
716
Chris Lattnerf231c072009-03-09 05:52:15 +0000717 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000718 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000719 EmitAlignment(Align, 0);
720 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000721
722 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000723 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
724 StringRef Sym(".destructors_used");
725 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000726 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000727 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000728 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000729 }
730
731 return false;
732}
733
Chris Lattner33adcfb2009-08-22 21:43:10 +0000734/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesend2e51af2008-09-09 22:29:13 +0000735/// global in the specified llvm.used list for which emitUsedDirectiveFor
736/// is true, as being used with this directive.
Chris Lattnercb05af82006-09-26 03:38:18 +0000737void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Dan Gohmana119de82009-06-14 23:30:43 +0000738 // Should be an array of 'i8*'.
Chris Lattnercb05af82006-09-26 03:38:18 +0000739 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
740 if (InitList == 0) return;
741
742 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner16fe9902009-07-17 22:00:23 +0000743 const GlobalValue *GV =
744 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000745 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
746 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(GV),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000747 MCSA_NoDeadStrip);
Chris Lattnercb05af82006-09-26 03:38:18 +0000748 }
749}
750
Chris Lattnered138932005-12-13 06:32:10 +0000751/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
752/// function pointers, ignoring the init priority.
753void AsmPrinter::EmitXXStructorList(Constant *List) {
754 // Should be an array of '{ int, void ()* }' structs. The first value is the
755 // init priority, which we ignore.
756 if (!isa<ConstantArray>(List)) return;
757 ConstantArray *InitList = cast<ConstantArray>(List);
758 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
759 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
760 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000761
762 if (CS->getOperand(1)->isNullValue())
763 return; // Found a null terminator, exit printing.
764 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000765 EmitGlobalConstant(CS->getOperand(1));
766 }
767}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000768
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000769//===--------------------------------------------------------------------===//
770// Emission and print routines
771//
772
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000773/// EmitInt8 - Emit a byte directive and value.
774///
775void AsmPrinter::EmitInt8(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000776 OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000777}
778
779/// EmitInt16 - Emit a short directive and value.
780///
781void AsmPrinter::EmitInt16(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000782 OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000783}
784
785/// EmitInt32 - Emit a long directive and value.
786///
787void AsmPrinter::EmitInt32(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000788 OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000789}
790
791/// EmitInt64 - Emit a long long directive and value.
792///
793void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000794 OutStreamer.EmitIntValue(Value, 8, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000795}
796
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000797//===----------------------------------------------------------------------===//
798
Chris Lattner3a420532007-05-31 18:57:45 +0000799// EmitAlignment - Emit an alignment directive to the specified power of
800// two boundary. For example, if you pass in 3 here, you will get an 8
801// byte alignment. If a global value is specified, and if that global has
802// an explicit alignment requested, it will unconditionally override the
803// alignment request. However, if ForcedAlignBits is specified, this value
804// has final say: the ultimate alignment will be the max of ForcedAlignBits
805// and the alignment computed with NumBits and the global.
806//
807// The algorithm is:
808// Align = NumBits;
809// if (GV && GV->hasalignment) Align = GV->getalignment();
810// Align = std::max(Align, ForcedAlignBits);
811//
812void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng05548eb2008-02-29 19:36:59 +0000813 unsigned ForcedAlignBits,
814 bool UseFillExpr) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000815 if (GV && GV->getAlignment())
Chris Lattner3a420532007-05-31 18:57:45 +0000816 NumBits = Log2_32(GV->getAlignment());
817 NumBits = std::max(NumBits, ForcedAlignBits);
818
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000819 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner663c2d22009-08-19 06:12:02 +0000820
821 unsigned FillValue = 0;
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000822 if (getCurrentSection()->getKind().isText())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000823 FillValue = MAI->getTextAlignFillValue();
Chris Lattner663c2d22009-08-19 06:12:02 +0000824
825 OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
Chris Lattnerbfddc202004-08-17 19:14:29 +0000826}
David Greenea5bb59f2009-08-05 21:00:52 +0000827
Chris Lattner52492ac2010-01-23 06:17:14 +0000828/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
829///
830static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
831 MCContext &Ctx = AP.OutContext;
832
833 if (CV->isNullValue() || isa<UndefValue>(CV))
834 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000835
Chris Lattner52492ac2010-01-23 06:17:14 +0000836 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
837 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000838
Chris Lattner52492ac2010-01-23 06:17:14 +0000839 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
840 return MCSymbolRefExpr::Create(AP.GetGlobalValueSymbol(GV), Ctx);
841 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
842 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000843
844 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
845 if (CE == 0) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000846 llvm_unreachable("Unknown constant value to lower!");
847 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000848 }
849
850 switch (CE->getOpcode()) {
851 case Instruction::ZExt:
852 case Instruction::SExt:
853 case Instruction::FPTrunc:
854 case Instruction::FPExt:
855 case Instruction::UIToFP:
856 case Instruction::SIToFP:
857 case Instruction::FPToUI:
858 case Instruction::FPToSI:
Chris Lattner52492ac2010-01-23 06:17:14 +0000859 default: llvm_unreachable("FIXME: Don't support this constant cast expr");
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000860 case Instruction::GetElementPtr: {
Chris Lattner52492ac2010-01-23 06:17:14 +0000861 const TargetData &TD = *AP.TM.getTargetData();
862 // Generate a symbolic expression for the byte address
863 const Constant *PtrVal = CE->getOperand(0);
864 SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
865 int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0],
866 IdxVec.size());
867
868 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000869 if (Offset == 0)
Chris Lattner52492ac2010-01-23 06:17:14 +0000870 return Base;
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000871
872 // Truncate/sext the offset to the pointer size.
Chris Lattner52492ac2010-01-23 06:17:14 +0000873 if (TD.getPointerSizeInBits() != 64) {
874 int SExtAmount = 64-TD.getPointerSizeInBits();
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000875 Offset = (Offset << SExtAmount) >> SExtAmount;
876 }
877
Chris Lattner52492ac2010-01-23 06:17:14 +0000878 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
879 Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000880 }
881
882 case Instruction::Trunc:
883 // We emit the value and depend on the assembler to truncate the generated
884 // expression properly. This is important for differences between
885 // blockaddress labels. Since the two labels are in the same function, it
886 // is reasonable to treat their delta as a 32-bit value.
Chris Lattner52492ac2010-01-23 06:17:14 +0000887 // FALL THROUGH.
888 case Instruction::BitCast:
889 return LowerConstant(CE->getOperand(0), AP);
890
891 case Instruction::IntToPtr: {
892 const TargetData &TD = *AP.TM.getTargetData();
893 // Handle casts to pointers by changing them into casts to the appropriate
894 // integer type. This promotes constant folding and simplifies this code.
895 Constant *Op = CE->getOperand(0);
896 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
897 false/*ZExt*/);
898 return LowerConstant(Op, AP);
899 }
900
901 case Instruction::PtrToInt: {
902 const TargetData &TD = *AP.TM.getTargetData();
903 // Support only foldable casts to/from pointers that can be eliminated by
904 // changing the pointer to the appropriately sized integer type.
905 Constant *Op = CE->getOperand(0);
906 const Type *Ty = CE->getType();
907
908 const MCExpr *OpExpr = LowerConstant(Op, AP);
909
910 // We can emit the pointer value into this slot if the slot is an
911 // integer slot equal to the size of the pointer.
912 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
913 return OpExpr;
914
915 // Otherwise the pointer is smaller than the resultant integer, mask off
916 // the high bits so we are sure to get a proper truncation if the input is
917 // a constant expr.
918 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
919 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
920 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
921 }
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000922
923 case Instruction::Add:
924 case Instruction::Sub:
925 case Instruction::And:
926 case Instruction::Or:
Chris Lattner52492ac2010-01-23 06:17:14 +0000927 case Instruction::Xor: {
928 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
929 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000930 switch (CE->getOpcode()) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000931 default: llvm_unreachable("Unknown binary operator constant cast expr");
932 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
933 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
934 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
935 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
936 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000937 }
Chris Lattner52492ac2010-01-23 06:17:14 +0000938 }
Chris Lattnera80ba712004-08-16 23:15:22 +0000939 }
940}
Chris Lattner1b7e2352004-08-17 06:36:49 +0000941
Chris Lattner91093ec2010-01-19 19:10:44 +0000942static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
943 AsmPrinter &AP) {
Chris Lattner05f84532010-01-23 04:54:10 +0000944 if (AddrSpace != 0 || !CA->isString()) {
945 // Not a string. Print the values in successive locations
Chris Lattner91093ec2010-01-19 19:10:44 +0000946 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
947 AP.EmitGlobalConstant(CA->getOperand(i), AddrSpace);
Chris Lattner05f84532010-01-23 04:54:10 +0000948 return;
Dan Gohman00d448a2008-12-22 21:14:27 +0000949 }
Chris Lattner05f84532010-01-23 04:54:10 +0000950
951 // Otherwise, it can be emitted as .ascii.
952 SmallVector<char, 128> TmpVec;
953 TmpVec.reserve(CA->getNumOperands());
954 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
955 TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
956
957 AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000958}
959
Chris Lattner91093ec2010-01-19 19:10:44 +0000960static void EmitGlobalConstantVector(const ConstantVector *CV,
961 unsigned AddrSpace, AsmPrinter &AP) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000962 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
Chris Lattner91093ec2010-01-19 19:10:44 +0000963 AP.EmitGlobalConstant(CV->getOperand(i), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000964}
965
Chris Lattner91093ec2010-01-19 19:10:44 +0000966static void EmitGlobalConstantStruct(const ConstantStruct *CS,
967 unsigned AddrSpace, AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000968 // Print the fields in successive locations. Pad to align if needed!
Chris Lattner91093ec2010-01-19 19:10:44 +0000969 const TargetData *TD = AP.TM.getTargetData();
970 unsigned Size = TD->getTypeAllocSize(CS->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +0000971 const StructLayout *Layout = TD->getStructLayout(CS->getType());
Chris Lattner91093ec2010-01-19 19:10:44 +0000972 uint64_t SizeSoFar = 0;
973 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000974 const Constant *Field = CS->getOperand(i);
Dan Gohman00d448a2008-12-22 21:14:27 +0000975
976 // Check if padding is needed and insert one or more 0s.
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000977 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +0000978 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
979 - Layout->getElementOffset(i)) - FieldSize;
980 SizeSoFar += FieldSize + PadSize;
Dan Gohman00d448a2008-12-22 21:14:27 +0000981
982 // Now print the actual field value.
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000983 AP.EmitGlobalConstant(Field, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000984
985 // Insert padding - this may include padding to increase the size of the
986 // current field up to the ABI size (if the struct is not packed) as well
987 // as padding to ensure that the next field starts at the right offset.
Chris Lattner2dd245c2010-01-20 07:11:32 +0000988 AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000989 }
Chris Lattner2dd245c2010-01-20 07:11:32 +0000990 assert(SizeSoFar == Layout->getSizeInBytes() &&
Dan Gohman00d448a2008-12-22 21:14:27 +0000991 "Layout of constant struct may be incorrect!");
992}
993
Chris Lattner2dd245c2010-01-20 07:11:32 +0000994static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
995 AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000996 // FP Constants are printed as integer constants to avoid losing
Chris Lattner9ceff942010-01-20 06:53:37 +0000997 // precision.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000998 if (CFP->getType()->isDoubleTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000999 if (AP.VerboseAsm) {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +00001000 double Val = CFP->getValueAPF().convertToDouble();
1001 AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
Chris Lattner09ce6742010-01-19 22:16:33 +00001002 }
1003
Chris Lattner2dd245c2010-01-20 07:11:32 +00001004 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1005 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001006 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001007 }
1008
1009 if (CFP->getType()->isFloatTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001010 if (AP.VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001011 float Val = CFP->getValueAPF().convertToFloat();
1012 AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
Dan Gohmana12e9d72009-08-12 18:32:22 +00001013 }
Chris Lattner2dd245c2010-01-20 07:11:32 +00001014 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1015 AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001016 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001017 }
1018
1019 if (CFP->getType()->isX86_FP80Ty()) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001020 // all long double variants are printed as hex
1021 // api needed to prevent premature destruction
Chris Lattner09ce6742010-01-19 22:16:33 +00001022 APInt API = CFP->getValueAPF().bitcastToAPInt();
1023 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +00001024 if (AP.VerboseAsm) {
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001025 // Convert to double so we can print the approximate val as a comment.
1026 APFloat DoubleVal = CFP->getValueAPF();
1027 bool ignored;
1028 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
1029 &ignored);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001030 AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
1031 << DoubleVal.convertToDouble() << '\n';
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001032 }
1033
Chris Lattner2dd245c2010-01-20 07:11:32 +00001034 if (AP.TM.getTargetData()->isBigEndian()) {
1035 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
1036 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001037 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001038 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1039 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001040 }
Chris Lattner9ceff942010-01-20 06:53:37 +00001041
1042 // Emit the tail padding for the long double.
Chris Lattner2dd245c2010-01-20 07:11:32 +00001043 const TargetData &TD = *AP.TM.getTargetData();
1044 AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
1045 TD.getTypeStoreSize(CFP->getType()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001046 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001047 }
1048
Chris Lattner09ce6742010-01-19 22:16:33 +00001049 assert(CFP->getType()->isPPC_FP128Ty() &&
1050 "Floating point constant type not handled");
1051 // All long double variants are printed as hex api needed to prevent
1052 // premature destruction.
1053 APInt API = CFP->getValueAPF().bitcastToAPInt();
1054 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +00001055 if (AP.TM.getTargetData()->isBigEndian()) {
1056 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1057 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
Chris Lattner9ceff942010-01-20 06:53:37 +00001058 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001059 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
1060 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner09ce6742010-01-19 22:16:33 +00001061 }
Dan Gohman00d448a2008-12-22 21:14:27 +00001062}
1063
Chris Lattner2dd245c2010-01-20 07:11:32 +00001064static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
1065 unsigned AddrSpace, AsmPrinter &AP) {
1066 const TargetData *TD = AP.TM.getTargetData();
Dan Gohman00d448a2008-12-22 21:14:27 +00001067 unsigned BitWidth = CI->getBitWidth();
Chris Lattner38c2b0a2010-01-13 04:39:46 +00001068 assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
Dan Gohman00d448a2008-12-22 21:14:27 +00001069
1070 // We don't expect assemblers to support integer data directives
1071 // for more than 64 bits, so we emit the data in at most 64-bit
1072 // quantities at a time.
1073 const uint64_t *RawData = CI->getValue().getRawData();
1074 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001075 uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1076 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001077 }
1078}
1079
Chris Lattner25045bd2005-11-21 07:51:36 +00001080/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001081void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Chris Lattner043c4e52010-01-20 07:19:19 +00001082 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001083 uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
Chris Lattner6449abf2010-01-19 21:51:22 +00001084 return OutStreamer.EmitZeros(Size, AddrSpace);
Chris Lattner2dd245c2010-01-20 07:11:32 +00001085 }
1086
1087 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1088 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1089 switch (Size) {
1090 case 1:
1091 case 2:
1092 case 4:
1093 case 8:
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001094 if (VerboseAsm)
1095 OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001096 OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1097 return;
1098 default:
1099 EmitGlobalConstantLargeInt(CI, AddrSpace, *this);
1100 return;
1101 }
1102 }
Chris Lattner3cc3a002010-01-13 04:34:19 +00001103
Chris Lattner91093ec2010-01-19 19:10:44 +00001104 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1105 return EmitGlobalConstantArray(CVA, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001106
Chris Lattner91093ec2010-01-19 19:10:44 +00001107 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1108 return EmitGlobalConstantStruct(CVS, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001109
Chris Lattner91093ec2010-01-19 19:10:44 +00001110 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
Chris Lattner2dd245c2010-01-20 07:11:32 +00001111 return EmitGlobalConstantFP(CFP, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001112
Chris Lattner91093ec2010-01-19 19:10:44 +00001113 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1114 return EmitGlobalConstantVector(V, AddrSpace, *this);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001115
Chris Lattnerb0bedd62010-01-20 17:57:50 +00001116 if (isa<ConstantPointerNull>(CV)) {
1117 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1118 OutStreamer.EmitIntValue(0, Size, AddrSpace);
1119 return;
1120 }
1121
Chris Lattner52492ac2010-01-23 06:17:14 +00001122 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it
1123 // thread the streamer with EmitValue.
1124 OutStreamer.EmitValue(LowerConstant(CV, *this),
1125 TM.getTargetData()->getTypeAllocSize(CV->getType()),
1126 AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001127}
Chris Lattner0264d1a2006-01-27 02:10:10 +00001128
Chris Lattnerfad86b02008-08-17 07:19:36 +00001129void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001130 // Target doesn't support this yet!
Torok Edwinc23197a2009-07-14 16:55:14 +00001131 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Evan Chengd6594ae2006-09-12 21:00:35 +00001132}
1133
Chris Lattner3ce9b672006-09-26 23:59:50 +00001134/// PrintSpecial - Print information related to the specified machine instr
1135/// that is independent of the operand, and may be independent of the instr
1136/// itself. This can be useful for portably encoding the comment character
1137/// or other bits of target-specific knowledge into the asmstrings. The
1138/// syntax used is ${:comment}. Targets can override this to add support
1139/// for their own strange codes.
Chris Lattner3e0cc262009-03-10 05:37:13 +00001140void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001141 if (!strcmp(Code, "private")) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001142 O << MAI->getPrivateGlobalPrefix();
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001143 } else if (!strcmp(Code, "comment")) {
Evan Chengf1c0ae92009-03-24 00:17:40 +00001144 if (VerboseAsm)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001145 O << MAI->getCommentString();
Chris Lattner3ce9b672006-09-26 23:59:50 +00001146 } else if (!strcmp(Code, "uid")) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001147 // Comparing the address of MI isn't sufficient, because machineinstrs may
1148 // be allocated to the same address across functions.
1149 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1150
Owen Andersonbd58edf2009-06-24 22:28:12 +00001151 // If this is a new LastFn instruction, bump the counter.
1152 if (LastMI != MI || LastFn != ThisF) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001153 ++Counter;
1154 LastMI = MI;
Owen Andersonbd58edf2009-06-24 22:28:12 +00001155 LastFn = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001156 }
Chris Lattner3ce9b672006-09-26 23:59:50 +00001157 O << Counter;
1158 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001159 std::string msg;
1160 raw_string_ostream Msg(msg);
1161 Msg << "Unknown special formatter '" << Code
Bill Wendlinge8156192006-12-07 01:30:32 +00001162 << "' for machine instr: " << *MI;
Torok Edwin7d696d82009-07-11 13:10:19 +00001163 llvm_report_error(Msg.str());
Chris Lattner3ce9b672006-09-26 23:59:50 +00001164 }
1165}
1166
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001167/// processDebugLoc - Processes the debug information of each machine
1168/// instruction's DebugLoc.
Devang Patelaf0e2722009-10-06 02:19:11 +00001169void AsmPrinter::processDebugLoc(const MachineInstr *MI,
1170 bool BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001171 if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1172 || !DW->ShouldEmitDwarfDebug())
Chris Lattnerd2503292009-08-05 04:09:18 +00001173 return;
Devang Patelb0fdedb2009-09-30 23:12:50 +00001174 DebugLoc DL = MI->getDebugLoc();
Devang Patel53bb5c92009-11-10 23:06:00 +00001175 if (DL.isUnknown())
1176 return;
Devang Patel6b61f582010-01-16 06:09:35 +00001177 DILocation CurDLT = MF->getDILocation(DL);
1178 if (CurDLT.getScope().isNull())
Devang Patel53bb5c92009-11-10 23:06:00 +00001179 return;
1180
Chris Lattner043c4e52010-01-20 07:19:19 +00001181 if (!BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001182 // After printing instruction
1183 DW->EndScope(MI);
Chris Lattner043c4e52010-01-20 07:19:19 +00001184 } else if (CurDLT.getNode() != PrevDLT) {
1185 unsigned L = DW->RecordSourceLine(CurDLT.getLineNumber(),
1186 CurDLT.getColumnNumber(),
1187 CurDLT.getScope().getNode());
1188 printLabel(L);
1189 O << '\n';
1190 DW->BeginScope(MI, L);
1191 PrevDLT = CurDLT.getNode();
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001192 }
1193}
Chris Lattner3ce9b672006-09-26 23:59:50 +00001194
Devang Patel53bb5c92009-11-10 23:06:00 +00001195
Chris Lattner0264d1a2006-01-27 02:10:10 +00001196/// printInlineAsm - This method formats and prints the specified machine
1197/// instruction that is an inline asm.
1198void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001199 unsigned NumOperands = MI->getNumOperands();
1200
1201 // Count the number of register definitions.
1202 unsigned NumDefs = 0;
Dan Gohmand735b802008-10-03 15:45:36 +00001203 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Chris Lattner67942f52006-09-05 20:02:51 +00001204 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001205 assert(NumDefs != NumOperands-1 && "No asm string?");
1206
Dan Gohmand735b802008-10-03 15:45:36 +00001207 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +00001208
1209 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001210 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +00001211
Dan Gohman40c57862009-11-06 00:04:54 +00001212 O << '\t';
1213
Dale Johannesenba2a0b92008-01-29 02:21:21 +00001214 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1215 // These are useful to see where empty asm's wound up.
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001216 if (AsmStr[0] == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001217 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1218 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001219 return;
1220 }
1221
Chris Lattner33adcfb2009-08-22 21:43:10 +00001222 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001223
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001224 // The variant of the current asmprinter.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001225 int AsmPrinterVariant = MAI->getAssemblerDialect();
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001226
Chris Lattner66099132006-02-01 22:41:11 +00001227 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1228 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +00001229
Chris Lattner66099132006-02-01 22:41:11 +00001230 while (*LastEmitted) {
1231 switch (*LastEmitted) {
1232 default: {
1233 // Not a special case, emit the string section literally.
1234 const char *LiteralEnd = LastEmitted+1;
1235 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +00001236 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +00001237 ++LiteralEnd;
1238 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1239 O.write(LastEmitted, LiteralEnd-LastEmitted);
1240 LastEmitted = LiteralEnd;
1241 break;
1242 }
Chris Lattner1c059972006-05-05 21:47:05 +00001243 case '\n':
1244 ++LastEmitted; // Consume newline character.
Dan Gohmand19a53b2008-06-30 22:03:41 +00001245 O << '\n'; // Indent code with newline.
Chris Lattner1c059972006-05-05 21:47:05 +00001246 break;
Chris Lattner66099132006-02-01 22:41:11 +00001247 case '$': {
1248 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001249 bool Done = true;
1250
1251 // Handle escapes.
1252 switch (*LastEmitted) {
1253 default: Done = false; break;
1254 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +00001255 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1256 O << '$';
1257 ++LastEmitted; // Consume second '$' character.
1258 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001259 case '(': // $( -> same as GCC's { character.
1260 ++LastEmitted; // Consume '(' character.
1261 if (CurVariant != -1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001262 llvm_report_error("Nested variants found in inline asm string: '"
1263 + std::string(AsmStr) + "'");
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001264 }
1265 CurVariant = 0; // We're in the first variant now.
1266 break;
1267 case '|':
1268 ++LastEmitted; // consume '|' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001269 if (CurVariant == -1)
1270 O << '|'; // this is gcc's behavior for | outside a variant
1271 else
1272 ++CurVariant; // We're in the next variant.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001273 break;
1274 case ')': // $) -> same as GCC's } char.
1275 ++LastEmitted; // consume ')' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001276 if (CurVariant == -1)
1277 O << '}'; // this is gcc's behavior for } outside a variant
1278 else
1279 CurVariant = -1;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001280 break;
Chris Lattner66099132006-02-01 22:41:11 +00001281 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001282 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +00001283
1284 bool HasCurlyBraces = false;
1285 if (*LastEmitted == '{') { // ${variable}
1286 ++LastEmitted; // Consume '{' character.
1287 HasCurlyBraces = true;
1288 }
1289
Chris Lattner3e0cc262009-03-10 05:37:13 +00001290 // If we have ${:foo}, then this is not a real operand reference, it is a
1291 // "magic" string reference, just like in .td files. Arrange to call
1292 // PrintSpecial.
1293 if (HasCurlyBraces && *LastEmitted == ':') {
1294 ++LastEmitted;
1295 const char *StrStart = LastEmitted;
1296 const char *StrEnd = strchr(StrStart, '}');
1297 if (StrEnd == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001298 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1299 + std::string(AsmStr) + "'");
Chris Lattner3e0cc262009-03-10 05:37:13 +00001300 }
1301
1302 std::string Val(StrStart, StrEnd);
1303 PrintSpecial(MI, Val.c_str());
1304 LastEmitted = StrEnd+1;
1305 break;
1306 }
1307
Chris Lattner66099132006-02-01 22:41:11 +00001308 const char *IDStart = LastEmitted;
1309 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +00001310 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +00001311 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1312 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001313 llvm_report_error("Bad $ operand number in inline asm string: '"
1314 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001315 }
1316 LastEmitted = IDEnd;
1317
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001318 char Modifier[2] = { 0, 0 };
1319
Chris Lattner66099132006-02-01 22:41:11 +00001320 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001321 // If we have curly braces, check for a modifier character. This
1322 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1323 if (*LastEmitted == ':') {
1324 ++LastEmitted; // Consume ':' character.
1325 if (*LastEmitted == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001326 llvm_report_error("Bad ${:} expression in inline asm string: '"
1327 + std::string(AsmStr) + "'");
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001328 }
1329
1330 Modifier[0] = *LastEmitted;
1331 ++LastEmitted; // Consume modifier character.
1332 }
1333
Chris Lattner66099132006-02-01 22:41:11 +00001334 if (*LastEmitted != '}') {
Torok Edwin7d696d82009-07-11 13:10:19 +00001335 llvm_report_error("Bad ${} expression in inline asm string: '"
1336 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001337 }
1338 ++LastEmitted; // Consume '}' character.
1339 }
1340
1341 if ((unsigned)Val >= NumOperands-1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001342 llvm_report_error("Invalid $ operand number in inline asm string: '"
1343 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001344 }
1345
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001346 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001347 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001348 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1349 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001350
1351 bool Error = false;
1352
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001353 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001354 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001355 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner9e330492007-12-30 20:50:28 +00001356 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng697cbbf2009-03-20 18:03:34 +00001357 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001358 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001359
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001360 if (OpNo >= MI->getNumOperands()) {
1361 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001362 } else {
Chris Lattner9e330492007-12-30 20:50:28 +00001363 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001364 ++OpNo; // Skip over the ID number.
1365
Chris Lattner10b318b2010-01-17 21:43:43 +00001366 if (Modifier[0] == 'l') // labels are target independent
Chris Lattnerf71cb012010-01-26 04:55:51 +00001367 O << *MI->getOperand(OpNo).getMBB()->getSymbol(OutContext);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001368 else {
1369 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen86b49f82008-09-24 01:07:17 +00001370 if ((OpFlags & 7) == 4) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001371 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1372 Modifier[0] ? Modifier : 0);
1373 } else {
1374 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1375 Modifier[0] ? Modifier : 0);
1376 }
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001377 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001378 }
1379 if (Error) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001380 std::string msg;
1381 raw_string_ostream Msg(msg);
Chris Lattner10b318b2010-01-17 21:43:43 +00001382 Msg << "Invalid operand found in inline asm: '" << AsmStr << "'\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00001383 MI->print(Msg);
1384 llvm_report_error(Msg.str());
Chris Lattner66099132006-02-01 22:41:11 +00001385 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001386 }
Chris Lattner66099132006-02-01 22:41:11 +00001387 break;
1388 }
Chris Lattner66099132006-02-01 22:41:11 +00001389 }
1390 }
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001391 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
Chris Lattner66099132006-02-01 22:41:11 +00001392}
1393
Evan Chengda47e6e2008-03-15 00:03:38 +00001394/// printImplicitDef - This method prints the specified machine instruction
1395/// that is an implicit def.
1396void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001397 if (!VerboseAsm) return;
1398 O.PadToColumn(MAI->getCommentColumn());
1399 O << MAI->getCommentString() << " implicit-def: "
Chris Lattnerf806c232009-09-13 19:48:37 +00001400 << TRI->getName(MI->getOperand(0).getReg());
Evan Chengda47e6e2008-03-15 00:03:38 +00001401}
1402
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001403void AsmPrinter::printKill(const MachineInstr *MI) const {
1404 if (!VerboseAsm) return;
1405 O.PadToColumn(MAI->getCommentColumn());
1406 O << MAI->getCommentString() << " kill:";
1407 for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1408 const MachineOperand &op = MI->getOperand(n);
1409 assert(op.isReg() && "KILL instruction must have only register operands");
1410 O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1411 }
1412}
1413
Jim Laskey1ee29252007-01-26 14:34:52 +00001414/// printLabel - This method prints a local label used by debug and
1415/// exception handling tables.
1416void AsmPrinter::printLabel(const MachineInstr *MI) const {
Dan Gohman528bc022008-07-01 00:16:26 +00001417 printLabel(MI->getOperand(0).getImm());
Jim Laskey1ee29252007-01-26 14:34:52 +00001418}
1419
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001420void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001421 O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001422}
1423
Chris Lattner66099132006-02-01 22:41:11 +00001424/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1425/// instruction, using the specified assembler variant. Targets should
Dale Johannesencf0b7662010-01-14 21:50:17 +00001426/// override this to format as appropriate.
Chris Lattner66099132006-02-01 22:41:11 +00001427bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001428 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001429 // Target doesn't support this yet!
1430 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001431}
Chris Lattnerdd260332006-02-24 20:21:58 +00001432
1433bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1434 unsigned AsmVariant,
1435 const char *ExtraCode) {
1436 // Target doesn't support this yet!
1437 return true;
1438}
Nate Begeman37efe672006-04-22 18:53:45 +00001439
Dan Gohman29cbade2009-11-20 23:18:13 +00001440MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA,
1441 const char *Suffix) const {
1442 return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock(), Suffix);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001443}
1444
1445MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
Dan Gohman29cbade2009-11-20 23:18:13 +00001446 const BasicBlock *BB,
1447 const char *Suffix) const {
Dan Gohman8c2b5252009-10-30 01:27:03 +00001448 assert(BB->hasName() &&
1449 "Address of anonymous basic block not supported yet!");
1450
Dan Gohman568a3be2009-11-05 23:14:35 +00001451 // This code must use the function name itself, and not the function number,
1452 // since it must be possible to generate the label name from within other
1453 // functions.
Chris Lattner2f8cc262010-01-13 07:30:49 +00001454 SmallString<60> FnName;
1455 Mang->getNameWithPrefix(FnName, F, false);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001456
Chris Lattner2f8cc262010-01-13 07:30:49 +00001457 // FIXME: THIS IS BROKEN IF THE LLVM BASIC BLOCK DOESN'T HAVE A NAME!
Chris Lattner48130352010-01-13 06:38:18 +00001458 SmallString<60> NameResult;
Chris Lattner2f8cc262010-01-13 07:30:49 +00001459 Mang->getNameWithPrefix(NameResult,
1460 StringRef("BA") + Twine((unsigned)FnName.size()) +
1461 "_" + FnName.str() + "_" + BB->getName() + Suffix,
1462 Mangler::Private);
Dan Gohman568a3be2009-11-05 23:14:35 +00001463
Chris Lattner48130352010-01-13 06:38:18 +00001464 return OutContext.GetOrCreateSymbol(NameResult.str());
Dan Gohman8c2b5252009-10-30 01:27:03 +00001465}
1466
Chris Lattner39248682010-01-23 05:19:23 +00001467/// GetCPISymbol - Return the symbol for the specified constant pool entry.
1468MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
1469 SmallString<60> Name;
1470 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "CPI"
1471 << getFunctionNumber() << '_' << CPID;
1472 return OutContext.GetOrCreateSymbol(Name.str());
1473}
1474
1475/// GetJTISymbol - Return the symbol for the specified jump table entry.
1476MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
Chris Lattner589c6f62010-01-26 06:28:43 +00001477 return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
Chris Lattner7cb384d2009-09-12 23:02:08 +00001478}
1479
Chris Lattner798d1252010-01-25 21:17:10 +00001480/// GetJTSetSymbol - Return the symbol for the specified jump table .set
1481/// FIXME: privatize to AsmPrinter.
1482MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
1483 SmallString<60> Name;
1484 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix()
1485 << getFunctionNumber() << '_' << UID << "_set_" << MBBID;
1486 return OutContext.GetOrCreateSymbol(Name.str());
1487}
1488
Chris Lattner6b04ede2010-01-15 23:18:17 +00001489/// GetGlobalValueSymbol - Return the MCSymbol for the specified global
1490/// value.
1491MCSymbol *AsmPrinter::GetGlobalValueSymbol(const GlobalValue *GV) const {
1492 SmallString<60> NameStr;
1493 Mang->getNameWithPrefix(NameStr, GV, false);
1494 return OutContext.GetOrCreateSymbol(NameStr.str());
1495}
1496
Chris Lattner7a2ba942010-01-16 18:37:32 +00001497/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
Chris Lattnerd588b972010-01-15 23:25:11 +00001498/// global value name as its base, with the specified suffix, and where the
Chris Lattner7a2ba942010-01-16 18:37:32 +00001499/// symbol is forced to have private linkage if ForcePrivate is true.
1500MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
1501 StringRef Suffix,
1502 bool ForcePrivate) const {
Chris Lattnerd588b972010-01-15 23:25:11 +00001503 SmallString<60> NameStr;
Chris Lattner7a2ba942010-01-16 18:37:32 +00001504 Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
Chris Lattnerd588b972010-01-15 23:25:11 +00001505 NameStr.append(Suffix.begin(), Suffix.end());
1506 return OutContext.GetOrCreateSymbol(NameStr.str());
1507}
1508
Chris Lattner6b04ede2010-01-15 23:18:17 +00001509/// GetExternalSymbolSymbol - Return the MCSymbol for the specified
1510/// ExternalSymbol.
1511MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
1512 SmallString<60> NameStr;
1513 Mang->getNameWithPrefix(NameStr, Sym);
1514 return OutContext.GetOrCreateSymbol(NameStr.str());
1515}
1516
Chris Lattner7cb384d2009-09-12 23:02:08 +00001517
Chris Lattner523a5082010-01-22 21:50:41 +00001518
1519/// PrintParentLoopComment - Print comments about parent loops of this one.
1520static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1521 unsigned FunctionNumber) {
1522 if (Loop == 0) return;
1523 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
1524 OS.indent(Loop->getLoopDepth()*2)
1525 << "Parent Loop BB" << FunctionNumber << "_"
1526 << Loop->getHeader()->getNumber()
1527 << " Depth=" << Loop->getLoopDepth() << '\n';
1528}
1529
1530
1531/// PrintChildLoopComment - Print comments about child loops within
1532/// the loop for this basic block, with nesting.
1533static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1534 unsigned FunctionNumber) {
1535 // Add child loop information
1536 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
1537 OS.indent((*CL)->getLoopDepth()*2)
1538 << "Child Loop BB" << FunctionNumber << "_"
1539 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
1540 << '\n';
1541 PrintChildLoopComment(OS, *CL, FunctionNumber);
1542 }
1543}
1544
1545/// EmitComments - Pretty-print comments for basic blocks.
1546static void PrintBasicBlockLoopComments(const MachineBasicBlock &MBB,
1547 const MachineLoopInfo *LI,
1548 const AsmPrinter &AP) {
1549 // Add loop depth information
1550 const MachineLoop *Loop = LI->getLoopFor(&MBB);
1551 if (Loop == 0) return;
1552
1553 MachineBasicBlock *Header = Loop->getHeader();
1554 assert(Header && "No header for loop");
1555
1556 // If this block is not a loop header, just print out what is the loop header
1557 // and return.
1558 if (Header != &MBB) {
1559 AP.OutStreamer.AddComment(" in Loop: Header=BB" +
1560 Twine(AP.getFunctionNumber())+"_" +
1561 Twine(Loop->getHeader()->getNumber())+
1562 " Depth="+Twine(Loop->getLoopDepth()));
1563 return;
1564 }
1565
1566 // Otherwise, it is a loop header. Print out information about child and
1567 // parent loops.
1568 raw_ostream &OS = AP.OutStreamer.GetCommentOS();
1569
1570 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
1571
1572 OS << "=>";
1573 OS.indent(Loop->getLoopDepth()*2-2);
1574
1575 OS << "This ";
1576 if (Loop->empty())
1577 OS << "Inner ";
1578 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
1579
1580 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
1581}
1582
1583
Chris Lattner70a54c02009-09-13 18:25:37 +00001584/// EmitBasicBlockStart - This method prints the label for the specified
1585/// MachineBasicBlock, an alignment (if present) and a comment describing
1586/// it if appropriate.
Chris Lattner662316c2009-09-14 03:15:54 +00001587void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
Dan Gohmanb1cac332009-10-30 01:34:35 +00001588 // Emit an alignment directive for this block, if needed.
Chris Lattner70a54c02009-09-13 18:25:37 +00001589 if (unsigned Align = MBB->getAlignment())
1590 EmitAlignment(Log2_32(Align));
Evan Chengfb8075d2008-02-28 00:43:03 +00001591
Dan Gohmanb1cac332009-10-30 01:34:35 +00001592 // If the block has its address taken, emit a special label to satisfy
1593 // references to the block. This is done so that we don't need to
1594 // remember the number of this label, and so that we can make
1595 // forward references to labels without knowing what their numbers
1596 // will be.
Dan Gohman8c2b5252009-10-30 01:27:03 +00001597 if (MBB->hasAddressTaken()) {
Chris Lattner213168b2010-01-20 07:24:05 +00001598 const BasicBlock *BB = MBB->getBasicBlock();
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001599 if (VerboseAsm)
1600 OutStreamer.AddComment("Address Taken");
Chris Lattner213168b2010-01-20 07:24:05 +00001601 OutStreamer.EmitLabel(GetBlockAddressSymbol(BB->getParent(), BB));
Dan Gohman8c2b5252009-10-30 01:27:03 +00001602 }
1603
Dan Gohmanb1cac332009-10-30 01:34:35 +00001604 // Print the main label for the block.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001605 if (MBB->pred_empty() || MBB->isOnlyReachableByFallthrough()) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001606 if (VerboseAsm) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +00001607 // NOTE: Want this comment at start of line.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001608 O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001609 if (const BasicBlock *BB = MBB->getBasicBlock())
1610 if (BB->hasName())
1611 OutStreamer.AddComment("%" + BB->getName());
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001612
Chris Lattner523a5082010-01-22 21:50:41 +00001613 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001614 OutStreamer.AddBlankLine();
1615 }
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001616 } else {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001617 if (VerboseAsm) {
1618 if (const BasicBlock *BB = MBB->getBasicBlock())
1619 if (BB->hasName())
1620 OutStreamer.AddComment("%" + BB->getName());
Chris Lattner523a5082010-01-22 21:50:41 +00001621 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001622 }
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001623
Chris Lattnerf71cb012010-01-26 04:55:51 +00001624 OutStreamer.EmitLabel(MBB->getSymbol(OutContext));
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001625 }
Nate Begeman37efe672006-04-22 18:53:45 +00001626}
Nate Begeman52a51e382006-08-12 21:29:52 +00001627
Chris Lattner152a29b2010-01-23 06:53:23 +00001628void AsmPrinter::printVisibility(MCSymbol *Sym, unsigned Visibility) const {
Chris Lattnerb11caed2010-01-26 23:18:44 +00001629 // FIXME: RENAME TO EmitVisibility.
Chris Lattner152a29b2010-01-23 06:53:23 +00001630 MCSymbolAttr Attr = MCSA_Invalid;
1631
1632 switch (Visibility) {
1633 default: break;
1634 case GlobalValue::HiddenVisibility:
1635 Attr = MAI->getHiddenVisibilityAttr();
1636 break;
1637 case GlobalValue::ProtectedVisibility:
1638 Attr = MAI->getProtectedVisibilityAttr();
1639 break;
Chris Lattner53d4d782010-01-15 23:38:51 +00001640 }
Chris Lattner152a29b2010-01-23 06:53:23 +00001641
1642 if (Attr != MCSA_Invalid)
1643 OutStreamer.EmitSymbolAttribute(Sym, Attr);
Chris Lattner53d4d782010-01-15 23:38:51 +00001644}
1645
Anton Korobeynikov7751ad92008-11-22 16:15:34 +00001646void AsmPrinter::printOffset(int64_t Offset) const {
1647 if (Offset > 0)
1648 O << '+' << Offset;
1649 else if (Offset < 0)
1650 O << Offset;
1651}
1652
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001653GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1654 if (!S->usesMetadata())
Gordon Henriksenc317a602008-08-17 12:08:44 +00001655 return 0;
1656
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001657 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001658 if (GCPI != GCMetadataPrinters.end())
1659 return GCPI->second;
1660
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001661 const char *Name = S->getName().c_str();
Gordon Henriksenc317a602008-08-17 12:08:44 +00001662
1663 for (GCMetadataPrinterRegistry::iterator
1664 I = GCMetadataPrinterRegistry::begin(),
1665 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1666 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001667 GCMetadataPrinter *GMP = I->instantiate();
1668 GMP->S = S;
1669 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1670 return GMP;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001671 }
1672
Chris Lattner52492ac2010-01-23 06:17:14 +00001673 llvm_report_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
1674 return 0;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001675}
David Greene014700c2009-07-13 20:25:48 +00001676
1677/// EmitComments - Pretty-print comments for instructions
Chris Lattner5f51cd02009-08-07 23:42:01 +00001678void AsmPrinter::EmitComments(const MachineInstr &MI) const {
David Greene1924aab2009-11-13 21:34:57 +00001679 if (!VerboseAsm)
1680 return;
David Greene3ac1ab82009-07-16 22:24:20 +00001681
David Greene1924aab2009-11-13 21:34:57 +00001682 bool Newline = false;
1683
1684 if (!MI.getDebugLoc().isUnknown()) {
Devang Patel6b61f582010-01-16 06:09:35 +00001685 DILocation DLT = MF->getDILocation(MI.getDebugLoc());
David Greene1924aab2009-11-13 21:34:57 +00001686
1687 // Print source line info.
1688 O.PadToColumn(MAI->getCommentColumn());
Dan Gohman3b9bc042009-12-05 00:23:29 +00001689 O << MAI->getCommentString() << ' ';
Devang Patel6b61f582010-01-16 06:09:35 +00001690 DIScope Scope = DLT.getScope();
Dan Gohman3b9bc042009-12-05 00:23:29 +00001691 // Omit the directory, because it's likely to be long and uninteresting.
1692 if (!Scope.isNull())
1693 O << Scope.getFilename();
1694 else
1695 O << "<unknown>";
Devang Patel6b61f582010-01-16 06:09:35 +00001696 O << ':' << DLT.getLineNumber();
1697 if (DLT.getColumnNumber() != 0)
1698 O << ':' << DLT.getColumnNumber();
David Greene1924aab2009-11-13 21:34:57 +00001699 Newline = true;
David Greene3ac1ab82009-07-16 22:24:20 +00001700 }
David Greene1924aab2009-11-13 21:34:57 +00001701
David Greeneddff9412009-11-16 15:12:23 +00001702 // Check for spills and reloads
1703 int FI;
1704
1705 const MachineFrameInfo *FrameInfo =
1706 MI.getParent()->getParent()->getFrameInfo();
1707
1708 // We assume a single instruction only has a spill or reload, not
1709 // both.
David Greenef7ea2a52009-12-04 22:46:04 +00001710 const MachineMemOperand *MMO;
David Greeneddff9412009-11-16 15:12:23 +00001711 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
1712 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001713 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001714 if (Newline) O << '\n';
1715 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001716 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Reload";
David Greeneddff9412009-11-16 15:12:23 +00001717 Newline = true;
1718 }
1719 }
David Greenef7ea2a52009-12-04 22:46:04 +00001720 else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001721 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1722 if (Newline) O << '\n';
1723 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001724 O << MAI->getCommentString() << ' '
1725 << MMO->getSize() << "-byte Folded Reload";
David Greeneddff9412009-11-16 15:12:23 +00001726 Newline = true;
1727 }
1728 }
1729 else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
1730 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001731 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001732 if (Newline) O << '\n';
1733 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001734 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Spill";
David Greeneddff9412009-11-16 15:12:23 +00001735 Newline = true;
1736 }
1737 }
David Greenef7ea2a52009-12-04 22:46:04 +00001738 else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001739 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1740 if (Newline) O << '\n';
1741 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001742 O << MAI->getCommentString() << ' '
1743 << MMO->getSize() << "-byte Folded Spill";
David Greeneddff9412009-11-16 15:12:23 +00001744 Newline = true;
1745 }
1746 }
1747
1748 // Check for spill-induced copies
1749 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1750 if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
1751 SrcSubIdx, DstSubIdx)) {
1752 if (MI.getAsmPrinterFlag(ReloadReuse)) {
1753 if (Newline) O << '\n';
1754 O.PadToColumn(MAI->getCommentColumn());
1755 O << MAI->getCommentString() << " Reload Reuse";
David Greeneddff9412009-11-16 15:12:23 +00001756 }
1757 }
David Greene014700c2009-07-13 20:25:48 +00001758}
1759