blob: f4d886492c53de60adc74a4fec6cd69ed41c9f1f [file] [log] [blame]
Chris Lattnera80ba712004-08-16 23:15:22 +00001//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnera80ba712004-08-16 23:15:22 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the AsmPrinter class.
11//
12//===----------------------------------------------------------------------===//
13
Evan Cheng932f0222006-03-03 02:04:29 +000014#include "llvm/CodeGen/AsmPrinter.h"
Evan Cheng246ae0d2006-03-01 22:18:09 +000015#include "llvm/Assembly/Writer.h"
Nate Begeman8cfa57b2005-12-06 06:18:55 +000016#include "llvm/DerivedTypes.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000017#include "llvm/Constants.h"
Chris Lattner450de392005-11-10 18:36:17 +000018#include "llvm/Module.h"
Chris Lattner45111d12010-01-16 21:57:06 +000019#include "llvm/CodeGen/DwarfWriter.h"
Gordon Henriksen5eca0752008-08-17 18:44:35 +000020#include "llvm/CodeGen/GCMetadataPrinter.h"
Chris Lattner3b4fd322005-11-21 08:25:09 +000021#include "llvm/CodeGen/MachineConstantPool.h"
David Greene1924aab2009-11-13 21:34:57 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
David Greenefe37ab32009-08-18 19:22:55 +000023#include "llvm/CodeGen/MachineFunction.h"
Nate Begeman37efe672006-04-22 18:53:45 +000024#include "llvm/CodeGen/MachineJumpTableInfo.h"
David Greeneb71d1b22009-08-10 16:38:07 +000025#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000026#include "llvm/CodeGen/MachineModuleInfo.h"
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +000027#include "llvm/Analysis/DebugInfo.h"
Chris Lattner2b2954f2009-07-27 21:28:04 +000028#include "llvm/MC/MCContext.h"
Chris Lattner52492ac2010-01-23 06:17:14 +000029#include "llvm/MC/MCExpr.h"
David Greene3ac1ab82009-07-16 22:24:20 +000030#include "llvm/MC/MCInst.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000031#include "llvm/MC/MCSection.h"
32#include "llvm/MC/MCStreamer.h"
Chris Lattner7cb384d2009-09-12 23:02:08 +000033#include "llvm/MC/MCSymbol.h"
Evan Cheng42bf74b2009-03-25 01:47:28 +000034#include "llvm/Support/CommandLine.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000035#include "llvm/Support/ErrorHandling.h"
Chris Lattner0fd90fd2010-01-22 19:52:01 +000036#include "llvm/Support/Format.h"
David Greene014700c2009-07-13 20:25:48 +000037#include "llvm/Support/FormattedStream.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattner45111d12010-01-16 21:57:06 +000039#include "llvm/Target/Mangler.h"
Owen Anderson07000c62006-05-12 06:33:49 +000040#include "llvm/Target/TargetData.h"
David Greene1924aab2009-11-13 21:34:57 +000041#include "llvm/Target/TargetInstrInfo.h"
Chris Lattner0336fdb2006-10-06 22:50:56 +000042#include "llvm/Target/TargetLowering.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000043#include "llvm/Target/TargetLoweringObjectFile.h"
Evan Cheng6547e402008-07-01 23:18:29 +000044#include "llvm/Target/TargetOptions.h"
Evan Chengda47e6e2008-03-15 00:03:38 +000045#include "llvm/Target/TargetRegisterInfo.h"
Evan Chengcc415862007-11-09 01:32:10 +000046#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerfad86b02008-08-17 07:19:36 +000047#include "llvm/ADT/SmallString.h"
Chris Lattner66099132006-02-01 22:41:11 +000048#include <cerrno>
Chris Lattnera80ba712004-08-16 23:15:22 +000049using namespace llvm;
50
Evan Cheng42bf74b2009-03-25 01:47:28 +000051static cl::opt<cl::boolOrDefault>
52AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
53 cl::init(cl::BOU_UNSET));
54
Chris Lattner07404412010-01-22 07:06:15 +000055static bool getVerboseAsm(bool VDef) {
56 switch (AsmVerbose) {
57 default:
58 case cl::BOU_UNSET: return VDef;
59 case cl::BOU_TRUE: return true;
60 case cl::BOU_FALSE: return false;
61 }
62}
63
Devang Patel19974732007-05-03 01:11:54 +000064char AsmPrinter::ID = 0;
David Greene71847812009-07-14 20:18:05 +000065AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +000066 const MCAsmInfo *T, bool VDef)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000067 : MachineFunctionPass(&ID), FunctionNumber(0), O(o),
Chris Lattner33adcfb2009-08-22 21:43:10 +000068 TM(tm), MAI(T), TRI(tm.getRegisterInfo()),
Chris Lattner2b2954f2009-07-27 21:28:04 +000069
70 OutContext(*new MCContext()),
Chris Lattner90edac02009-09-14 03:02:37 +000071 // FIXME: Pass instprinter to streamer.
Chris Lattner16582022010-01-20 06:39:07 +000072 OutStreamer(*createAsmStreamer(OutContext, O, *T,
Chris Lattner07404412010-01-22 07:06:15 +000073 TM.getTargetData()->isLittleEndian(),
74 getVerboseAsm(VDef), 0)),
Chris Lattner2b2954f2009-07-27 21:28:04 +000075
Devang Patel6b61f582010-01-16 06:09:35 +000076 LastMI(0), LastFn(0), Counter(~0U), PrevDLT(NULL) {
Chris Lattner0de1fc42009-06-24 19:09:55 +000077 DW = 0; MMI = 0;
Chris Lattner07404412010-01-22 07:06:15 +000078 VerboseAsm = getVerboseAsm(VDef);
Evan Cheng42bf74b2009-03-25 01:47:28 +000079}
Chris Lattnered138932005-12-13 06:32:10 +000080
Gordon Henriksenc317a602008-08-17 12:08:44 +000081AsmPrinter::~AsmPrinter() {
82 for (gcp_iterator I = GCMetadataPrinters.begin(),
83 E = GCMetadataPrinters.end(); I != E; ++I)
84 delete I->second;
Chris Lattner2b2954f2009-07-27 21:28:04 +000085
86 delete &OutStreamer;
87 delete &OutContext;
Gordon Henriksenc317a602008-08-17 12:08:44 +000088}
Chris Lattnered138932005-12-13 06:32:10 +000089
Chris Lattner38c39882009-08-03 19:12:26 +000090TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
Chris Lattnerf0144122009-07-28 03:13:23 +000091 return TM.getTargetLowering()->getObjFileLowering();
92}
93
Chris Lattnerdabf07c2009-08-18 06:15:16 +000094/// getCurrentSection() - Return the current section we are emitting to.
95const MCSection *AsmPrinter::getCurrentSection() const {
96 return OutStreamer.getCurrentSection();
97}
98
99
Gordon Henriksence224772008-01-07 01:30:38 +0000100void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +0000101 AU.setPreservesAll();
Gordon Henriksence224772008-01-07 01:30:38 +0000102 MachineFunctionPass::getAnalysisUsage(AU);
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000103 AU.addRequired<GCModuleInfo>();
David Greenefe37ab32009-08-18 19:22:55 +0000104 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000105 AU.addRequired<MachineLoopInfo>();
Gordon Henriksence224772008-01-07 01:30:38 +0000106}
107
Chris Lattnera80ba712004-08-16 23:15:22 +0000108bool AsmPrinter::doInitialization(Module &M) {
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000109 // Initialize TargetLoweringObjectFile.
110 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
111 .Initialize(OutContext, TM);
112
Chris Lattnerc0dba722010-01-17 18:22:35 +0000113 Mang = new Mangler(*MAI);
Chris Lattner2c1b1592006-01-23 23:47:53 +0000114
Bob Wilson812209a2009-09-30 22:06:26 +0000115 // Allow the target to emit any magic that it wants at the start of the file.
116 EmitStartOfAsmFile(M);
Rafael Espindola952b8392008-12-03 11:01:37 +0000117
Chris Lattner33adcfb2009-08-22 21:43:10 +0000118 if (MAI->hasSingleParameterDotFile()) {
Chris Lattner39248682010-01-23 05:19:23 +0000119 // Very minimal debug info. It is ignored if we emit actual
120 // debug info. If we don't, this at least helps the user find where
121 // a function came from.
Rafael Espindola952b8392008-12-03 11:01:37 +0000122 O << "\t.file\t\"" << M.getModuleIdentifier() << "\"\n";
123 }
124
Bob Wilson812209a2009-09-30 22:06:26 +0000125 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
126 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000127 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
128 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000129 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000130
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000131 if (!M.getModuleInlineAsm().empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000132 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000133 << M.getModuleInlineAsm()
Chris Lattner33adcfb2009-08-22 21:43:10 +0000134 << '\n' << MAI->getCommentString()
Jim Laskey563321a2006-09-06 18:34:40 +0000135 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000136
Chris Lattnerb55e0682009-09-24 05:44:53 +0000137 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
138 if (MMI)
139 MMI->AnalyzeModule(M);
140 DW = getAnalysisIfAvailable<DwarfWriter>();
Sanjiv Gupta9a501cf2009-11-14 07:22:25 +0000141 if (DW)
Chris Lattnerb55e0682009-09-24 05:44:53 +0000142 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel14a55d92009-06-19 21:54:26 +0000143
Chris Lattnera80ba712004-08-16 23:15:22 +0000144 return false;
145}
146
Chris Lattner48d64ba2010-01-19 04:39:15 +0000147/// EmitGlobalVariable - Emit the specified global variable to the .s file.
148void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
149 if (!GV->hasInitializer()) // External globals require no code.
150 return;
151
152 // Check to see if this is a special global used by LLVM, if so, emit it.
153 if (EmitSpecialLLVMGlobal(GV))
154 return;
Chris Lattner74bfe212010-01-19 05:38:33 +0000155
156 MCSymbol *GVSym = GetGlobalValueSymbol(GV);
157 printVisibility(GVSym, GV->getVisibility());
158
159 if (MAI->hasDotTypeDotSizeDirective()) {
160 O << "\t.type\t" << *GVSym;
161 if (MAI->getCommentString()[0] != '@')
162 O << ",@object\n";
163 else
164 O << ",%object\n";
165 }
Chris Lattner48d64ba2010-01-19 04:39:15 +0000166
Chris Lattner74bfe212010-01-19 05:38:33 +0000167 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
168
169 const TargetData *TD = TM.getTargetData();
170 unsigned Size = TD->getTypeAllocSize(GV->getType()->getElementType());
171 unsigned AlignLog = TD->getPreferredAlignmentLog(GV);
172
Chris Lattner9744d612010-01-19 05:51:42 +0000173 // Handle common and BSS local symbols (.lcomm).
174 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000175 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
176
Chris Lattner74bfe212010-01-19 05:38:33 +0000177 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000178 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
179 /*PrintType=*/false, GV->getParent());
180 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000181 }
Chris Lattner814819f2010-01-19 06:25:51 +0000182
183 // Handle common symbols.
Chris Lattner9744d612010-01-19 05:51:42 +0000184 if (GVKind.isCommon()) {
185 // .comm _foo, 42, 4
Chris Lattner4ed54382010-01-19 06:01:04 +0000186 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner814819f2010-01-19 06:25:51 +0000187 return;
Chris Lattner9744d612010-01-19 05:51:42 +0000188 }
Chris Lattner814819f2010-01-19 06:25:51 +0000189
190 // Handle local BSS symbols.
191 if (MAI->hasMachoZeroFillDirective()) {
192 const MCSection *TheSection =
193 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
194 // .zerofill __DATA, __bss, _foo, 400, 5
195 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
196 return;
197 }
198
Chris Lattner9eb158d2010-01-23 07:47:02 +0000199 if (MAI->hasLCOMMDirective()) {
Chris Lattner814819f2010-01-19 06:25:51 +0000200 // .lcomm _foo, 42
Chris Lattner9eb158d2010-01-23 07:47:02 +0000201 OutStreamer.EmitLocalCommonSymbol(GVSym, Size);
Chris Lattner814819f2010-01-19 06:25:51 +0000202 return;
203 }
204
205 // .local _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000206 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
Chris Lattner814819f2010-01-19 06:25:51 +0000207 // .comm _foo, 42, 4
208 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner74bfe212010-01-19 05:38:33 +0000209 return;
210 }
211
212 const MCSection *TheSection =
213 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
214
215 // Handle the zerofill directive on darwin, which is a special form of BSS
216 // emission.
217 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
218 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000219 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000220 // .zerofill __DATA, __common, _foo, 400, 5
221 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
222 return;
223 }
224
225 OutStreamer.SwitchSection(TheSection);
226
227 // TODO: Factor into an 'emit linkage' thing that is shared with function
228 // bodies.
229 switch (GV->getLinkage()) {
230 case GlobalValue::CommonLinkage:
231 case GlobalValue::LinkOnceAnyLinkage:
232 case GlobalValue::LinkOnceODRLinkage:
233 case GlobalValue::WeakAnyLinkage:
234 case GlobalValue::WeakODRLinkage:
235 case GlobalValue::LinkerPrivateLinkage:
Chris Lattner4c8c6682010-01-19 06:41:24 +0000236 if (MAI->getWeakDefDirective() != 0) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000237 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000238 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000239 // .weak_definition _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000240 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
Chris Lattner74bfe212010-01-19 05:38:33 +0000241 } else if (const char *LinkOnce = MAI->getLinkOnceDirective()) {
242 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000243 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000244 // .linkonce same_size
245 O << LinkOnce;
Chris Lattner4c8c6682010-01-19 06:41:24 +0000246 } else {
247 // .weak _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000248 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
Chris Lattner4c8c6682010-01-19 06:41:24 +0000249 }
Chris Lattner74bfe212010-01-19 05:38:33 +0000250 break;
251 case GlobalValue::DLLExportLinkage:
252 case GlobalValue::AppendingLinkage:
253 // FIXME: appending linkage variables should go into a section of
254 // their name or something. For now, just emit them as external.
255 case GlobalValue::ExternalLinkage:
256 // If external or appending, declare as a global symbol.
257 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000258 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000259 break;
260 case GlobalValue::PrivateLinkage:
261 case GlobalValue::InternalLinkage:
262 break;
263 default:
264 llvm_unreachable("Unknown linkage type!");
265 }
266
267 EmitAlignment(AlignLog, GV);
Chris Lattner74bfe212010-01-19 05:38:33 +0000268 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000269 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
270 /*PrintType=*/false, GV->getParent());
271 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000272 }
Chris Lattner4c8c6682010-01-19 06:41:24 +0000273 OutStreamer.EmitLabel(GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000274
275 EmitGlobalConstant(GV->getInitializer());
276
277 if (MAI->hasDotTypeDotSizeDirective())
278 O << "\t.size\t" << *GVSym << ", " << Size << '\n';
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000279
280 OutStreamer.AddBlankLine();
Chris Lattner48d64ba2010-01-19 04:39:15 +0000281}
282
283
Chris Lattnera80ba712004-08-16 23:15:22 +0000284bool AsmPrinter::doFinalization(Module &M) {
Chris Lattner40bbebd2009-07-21 18:38:57 +0000285 // Emit global variables.
286 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
287 I != E; ++I)
Chris Lattner48d64ba2010-01-19 04:39:15 +0000288 EmitGlobalVariable(I);
Chris Lattner40bbebd2009-07-21 18:38:57 +0000289
Chris Lattner1f522fe2009-06-24 18:54:37 +0000290 // Emit final debug information.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000291 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattner1f522fe2009-06-24 18:54:37 +0000292 DW->EndModule();
293
Chris Lattner0a7befa2009-06-24 18:52:01 +0000294 // If the target wants to know about weak references, print them all.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000295 if (MAI->getWeakRefDirective()) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000296 // FIXME: This is not lazy, it would be nice to only print weak references
297 // to stuff that is actually used. Note that doing so would require targets
298 // to notice uses in operands (due to constant exprs etc). This should
299 // happen with the MC stuff eventually.
Rafael Espindola15404d02006-12-18 03:37:18 +0000300
Chris Lattner0a7befa2009-06-24 18:52:01 +0000301 // Print out module-level global variables here.
302 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
303 I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000304 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000305 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000306 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000307 }
308
Chris Lattnerc6fdced2009-08-03 23:10:34 +0000309 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000310 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000311 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000312 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000313 }
Rafael Espindola15404d02006-12-18 03:37:18 +0000314 }
315
Chris Lattner33adcfb2009-08-22 21:43:10 +0000316 if (MAI->getSetDirective()) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000317 OutStreamer.AddBlankLine();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000318 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattner0a7befa2009-06-24 18:52:01 +0000319 I != E; ++I) {
Chris Lattner5c40e692010-01-16 01:17:26 +0000320 MCSymbol *Name = GetGlobalValueSymbol(I);
Anton Korobeynikov325be7c2007-09-06 17:21:48 +0000321
322 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattner5c40e692010-01-16 01:17:26 +0000323 MCSymbol *Target = GetGlobalValueSymbol(GV);
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000324
Chris Lattner10b318b2010-01-17 21:43:43 +0000325 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000326 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
Chris Lattner10b318b2010-01-17 21:43:43 +0000327 else if (I->hasWeakLinkage())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000328 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
Chris Lattner10b318b2010-01-17 21:43:43 +0000329 else
Chris Lattner10595492010-01-16 01:37:14 +0000330 assert(I->hasLocalLinkage() && "Invalid alias linkage");
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000331
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000332 printVisibility(Name, I->getVisibility());
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000333
Chris Lattner10b318b2010-01-17 21:43:43 +0000334 O << MAI->getSetDirective() << ' ' << *Name << ", " << *Target << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000335 }
336 }
337
Duncan Sands1465d612009-01-28 13:14:17 +0000338 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000339 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
340 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
341 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000342 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000343
Dan Gohmana779a982008-05-05 00:28:39 +0000344 // If we don't have any trampolines, then we don't require stack memory
345 // to be executable. Some targets have a directive to declare this.
Chris Lattner0a7befa2009-06-24 18:52:01 +0000346 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana779a982008-05-05 00:28:39 +0000347 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattnerf9f93e42010-01-23 07:21:06 +0000348 if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
349 OutStreamer.SwitchSection(S);
Chris Lattnerbd23d5f2009-09-18 20:17:03 +0000350
351 // Allow the target to emit any magic that it wants at the end of the file,
352 // after everything else has gone out.
353 EmitEndOfAsmFile(M);
354
Chris Lattnera80ba712004-08-16 23:15:22 +0000355 delete Mang; Mang = 0;
Chris Lattner0de1fc42009-06-24 19:09:55 +0000356 DW = 0; MMI = 0;
Chris Lattner2b2954f2009-07-27 21:28:04 +0000357
358 OutStreamer.Finish();
Chris Lattnera80ba712004-08-16 23:15:22 +0000359 return false;
360}
361
Chris Lattner25045bd2005-11-21 07:51:36 +0000362void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattner412c3a52010-01-16 01:24:10 +0000363 // Get the function symbol.
Chris Lattnerd1947ed2010-01-15 23:55:16 +0000364 CurrentFnSym = GetGlobalValueSymbol(MF.getFunction());
Evan Cheng347d39f2007-10-14 05:57:21 +0000365 IncrementFunctionNumber();
David Greeneb71d1b22009-08-10 16:38:07 +0000366
Chris Lattner25d812b2009-09-16 00:35:39 +0000367 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000368 LI = &getAnalysis<MachineLoopInfo>();
Chris Lattnera80ba712004-08-16 23:15:22 +0000369}
370
Evan Cheng1606e8e2009-03-13 07:51:59 +0000371namespace {
372 // SectionCPs - Keep track the alignment, constpool entries per Section.
373 struct SectionCPs {
Chris Lattnera87dea42009-07-31 18:48:30 +0000374 const MCSection *S;
Evan Cheng1606e8e2009-03-13 07:51:59 +0000375 unsigned Alignment;
376 SmallVector<unsigned, 4> CPEs;
Douglas Gregorcabdd742009-12-19 07:05:23 +0000377 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
Evan Cheng1606e8e2009-03-13 07:51:59 +0000378 };
379}
380
Chris Lattner3b4fd322005-11-21 08:25:09 +0000381/// EmitConstantPool - Print to the current output stream assembly
382/// representations of the constants in the constant pool MCP. This is
383/// used to print out constants which have been "spilled to memory" by
384/// the code generator.
385///
386void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000387 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000388 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000389
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000390 // Calculate sections for constant pool entries. We collect entries to go into
391 // the same section together to reduce amount of section switch statements.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000392 SmallVector<SectionCPs, 4> CPSections;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000393 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner298414e2009-07-22 00:28:43 +0000394 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng1606e8e2009-03-13 07:51:59 +0000395 unsigned Align = CPE.getAlignment();
Chris Lattner5c2f7892009-07-26 06:26:55 +0000396
397 SectionKind Kind;
398 switch (CPE.getRelocationInfo()) {
399 default: llvm_unreachable("Unknown section kind");
Chris Lattner27981192009-08-01 23:57:16 +0000400 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000401 case 1:
Chris Lattner27981192009-08-01 23:57:16 +0000402 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattner4c509222009-07-26 07:00:12 +0000403 break;
Chris Lattner5c2f7892009-07-26 06:26:55 +0000404 case 0:
Chris Lattner4c509222009-07-26 07:00:12 +0000405 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000406 case 4: Kind = SectionKind::getMergeableConst4(); break;
407 case 8: Kind = SectionKind::getMergeableConst8(); break;
408 case 16: Kind = SectionKind::getMergeableConst16();break;
409 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000410 }
Chris Lattner5c2f7892009-07-26 06:26:55 +0000411 }
412
Chris Lattner83d77fa2009-08-01 23:46:12 +0000413 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner298414e2009-07-22 00:28:43 +0000414
Evan Cheng1606e8e2009-03-13 07:51:59 +0000415 // The number of sections are small, just do a linear search from the
416 // last section to the first.
417 bool Found = false;
418 unsigned SecIdx = CPSections.size();
419 while (SecIdx != 0) {
420 if (CPSections[--SecIdx].S == S) {
421 Found = true;
422 break;
423 }
424 }
425 if (!Found) {
426 SecIdx = CPSections.size();
427 CPSections.push_back(SectionCPs(S, Align));
428 }
429
430 if (Align > CPSections[SecIdx].Alignment)
431 CPSections[SecIdx].Alignment = Align;
432 CPSections[SecIdx].CPEs.push_back(i);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000433 }
434
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000435 // Now print stuff into the calculated sections.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000436 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000437 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000438 EmitAlignment(Log2_32(CPSections[i].Alignment));
Evan Cheng2d2cec12006-06-29 00:26:09 +0000439
Evan Cheng1606e8e2009-03-13 07:51:59 +0000440 unsigned Offset = 0;
441 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
442 unsigned CPI = CPSections[i].CPEs[j];
443 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000444
Chris Lattner3029f922006-02-09 04:46:04 +0000445 // Emit inter-object padding for alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000446 unsigned AlignMask = CPE.getAlignment() - 1;
447 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
Chris Lattneraaec2052010-01-19 19:46:13 +0000448 OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000449
450 const Type *Ty = CPE.getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000451 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000452
Chris Lattner39248682010-01-23 05:19:23 +0000453 // Emit the label with a comment on it.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000454 if (VerboseAsm) {
Chris Lattner39248682010-01-23 05:19:23 +0000455 OutStreamer.GetCommentOS() << "constant pool ";
456 WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(),
457 MF->getFunction()->getParent());
458 OutStreamer.GetCommentOS() << '\n';
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000459 }
Chris Lattner39248682010-01-23 05:19:23 +0000460 OutStreamer.EmitLabel(GetCPISymbol(CPI));
461
Evan Cheng1606e8e2009-03-13 07:51:59 +0000462 if (CPE.isMachineConstantPoolEntry())
463 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
464 else
465 EmitGlobalConstant(CPE.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000466 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000467 }
468}
469
Nate Begeman37efe672006-04-22 18:53:45 +0000470/// EmitJumpTableInfo - Print assembly representations of the jump tables used
471/// by the current function to the current output stream.
472///
Chris Lattner1da31ee2006-10-05 03:01:21 +0000473void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
474 MachineFunction &MF) {
Nate Begeman37efe672006-04-22 18:53:45 +0000475 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
476 if (JT.empty()) return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000477
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000478 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
Nate Begeman4d9bbdc2006-07-27 16:46:58 +0000479
Nate Begeman2f1ae882006-07-27 01:13:04 +0000480 // Pick the directive to use to print the jump table entries, and switch to
481 // the appropriate section.
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000482 TargetLowering *LoweringInfo = TM.getTargetLowering();
Anton Korobeynikov24287dd2006-12-19 21:04:20 +0000483
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000484 const Function *F = MF.getFunction();
Evan Chengb13bafe2009-06-18 20:37:15 +0000485 bool JTInDiffSection = false;
Chris Lattner83d77fa2009-08-01 23:46:12 +0000486 if (F->isWeakForLinker() ||
487 (IsPic && !LoweringInfo->usesGlobalOffsetTable())) {
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000488 // In PIC mode, we need to emit the jump table to the same section as the
489 // function body itself, otherwise the label differences won't make sense.
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000490 // We should also do if the section name is NULL or function is declared in
491 // discardable section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000492 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang,
493 TM));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000494 } else {
Chris Lattner83d77fa2009-08-01 23:46:12 +0000495 // Otherwise, drop it in the readonly section.
496 const MCSection *ReadOnlySection =
Chris Lattner27981192009-08-01 23:57:16 +0000497 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000498 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengb13bafe2009-06-18 20:37:15 +0000499 JTInDiffSection = true;
Nate Begeman2f1ae882006-07-27 01:13:04 +0000500 }
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000501
502 EmitAlignment(Log2_32(MJTI->getAlignment()));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000503
Nate Begeman37efe672006-04-22 18:53:45 +0000504 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
Nate Begeman52a51e382006-08-12 21:29:52 +0000505 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000506
507 // If this jump table was deleted, ignore it.
508 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000509
510 // For PIC codegen, if possible we want to use the SetDirective to reduce
511 // the number of relocations the assembler will generate for the jump table.
512 // Set directives are all printed before the jump table itself.
Evan Chengcc415862007-11-09 01:32:10 +0000513 SmallPtrSet<MachineBasicBlock*, 16> EmittedSets;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000514 if (MAI->getSetDirective() && IsPic)
Nate Begeman52a51e382006-08-12 21:29:52 +0000515 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Evan Chengcc415862007-11-09 01:32:10 +0000516 if (EmittedSets.insert(JTBBs[ii]))
517 printPICJumpTableSetLabel(i, JTBBs[ii]);
Nate Begeman52a51e382006-08-12 21:29:52 +0000518
Chris Lattner7c301912009-09-13 19:02:16 +0000519 // On some targets (e.g. Darwin) we want to emit two consequtive labels
Chris Lattner393a8ee2007-01-18 01:12:56 +0000520 // before each jump table. The first label is never referenced, but tells
521 // the assembler and linker the extents of the jump table object. The
522 // second label is actually referenced by the code.
Chris Lattner39248682010-01-23 05:19:23 +0000523 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
524 OutStreamer.EmitLabel(GetJTISymbol(i, true));
525
526 OutStreamer.EmitLabel(GetJTISymbol(i));
527
Nate Begeman37efe672006-04-22 18:53:45 +0000528 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000529 printPICJumpTableEntry(MJTI, JTBBs[ii], i);
Nate Begeman37efe672006-04-22 18:53:45 +0000530 O << '\n';
531 }
532 }
533}
534
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000535void AsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
536 const MachineBasicBlock *MBB,
537 unsigned uid) const {
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000538 bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000539
540 // Use JumpTableDirective otherwise honor the entry size from the jump table
541 // info.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000542 const char *JTEntryDirective = MAI->getJumpTableDirective(isPIC);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000543 bool HadJTEntryDirective = JTEntryDirective != NULL;
544 if (!HadJTEntryDirective) {
545 JTEntryDirective = MJTI->getEntrySize() == 4 ?
Chris Lattner33adcfb2009-08-22 21:43:10 +0000546 MAI->getData32bitsDirective() : MAI->getData64bitsDirective();
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000547 }
548
549 O << JTEntryDirective << ' ';
550
551 // If we have emitted set directives for the jump table entries, print
552 // them rather than the entries themselves. If we're emitting PIC, then
553 // emit the table entries as differences between two text section labels.
554 // If we're emitting non-PIC code, then emit the entries as direct
555 // references to the target basic blocks.
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000556 if (!isPIC) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000557 O << *GetMBBSymbol(MBB->getNumber());
Chris Lattner33adcfb2009-08-22 21:43:10 +0000558 } else if (MAI->getSetDirective()) {
559 O << MAI->getPrivateGlobalPrefix() << getFunctionNumber()
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000560 << '_' << uid << "_set_" << MBB->getNumber();
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000561 } else {
Chris Lattner10b318b2010-01-17 21:43:43 +0000562 O << *GetMBBSymbol(MBB->getNumber());
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000563 // If the arch uses custom Jump Table directives, don't calc relative to
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000564 // JT.
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000565 if (!HadJTEntryDirective)
Chris Lattner39248682010-01-23 05:19:23 +0000566 O << '-' << *GetJTISymbol(uid);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000567 }
568}
569
570
Chris Lattnered138932005-12-13 06:32:10 +0000571/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
572/// special global used by LLVM. If so, emit it and return true, otherwise
573/// do nothing and return false.
574bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000575 if (GV->getName() == "llvm.used") {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000576 if (MAI->hasNoDeadStrip()) // No need to emit this at all.
Andrew Lenharthb753a9b2007-08-22 19:33:11 +0000577 EmitLLVMUsedList(GV->getInitializer());
578 return true;
579 }
580
Chris Lattner401e10c2009-07-20 06:14:25 +0000581 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000582 if (GV->getSection() == "llvm.metadata" ||
583 GV->hasAvailableExternallyLinkage())
584 return true;
Jim Laskey78098112006-03-07 22:00:35 +0000585
586 if (!GV->hasAppendingLinkage()) return false;
587
588 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000589
Evan Cheng916d07c2007-06-04 20:39:18 +0000590 const TargetData *TD = TM.getTargetData();
591 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattnerf231c072009-03-09 05:52:15 +0000592 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000593 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000594 EmitAlignment(Align, 0);
595 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000596
597 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000598 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
599 StringRef Sym(".constructors_used");
600 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000601 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000602 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000603 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000604 }
605
Chris Lattnerf231c072009-03-09 05:52:15 +0000606 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000607 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000608 EmitAlignment(Align, 0);
609 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000610
611 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000612 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
613 StringRef Sym(".destructors_used");
614 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000615 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000616 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000617 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000618 }
619
620 return false;
621}
622
Chris Lattner33adcfb2009-08-22 21:43:10 +0000623/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesend2e51af2008-09-09 22:29:13 +0000624/// global in the specified llvm.used list for which emitUsedDirectiveFor
625/// is true, as being used with this directive.
Chris Lattnercb05af82006-09-26 03:38:18 +0000626void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Dan Gohmana119de82009-06-14 23:30:43 +0000627 // Should be an array of 'i8*'.
Chris Lattnercb05af82006-09-26 03:38:18 +0000628 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
629 if (InitList == 0) return;
630
631 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner16fe9902009-07-17 22:00:23 +0000632 const GlobalValue *GV =
633 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000634 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
635 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(GV),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000636 MCSA_NoDeadStrip);
Chris Lattnercb05af82006-09-26 03:38:18 +0000637 }
638}
639
Chris Lattnered138932005-12-13 06:32:10 +0000640/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
641/// function pointers, ignoring the init priority.
642void AsmPrinter::EmitXXStructorList(Constant *List) {
643 // Should be an array of '{ int, void ()* }' structs. The first value is the
644 // init priority, which we ignore.
645 if (!isa<ConstantArray>(List)) return;
646 ConstantArray *InitList = cast<ConstantArray>(List);
647 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
648 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
649 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000650
651 if (CS->getOperand(1)->isNullValue())
652 return; // Found a null terminator, exit printing.
653 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000654 EmitGlobalConstant(CS->getOperand(1));
655 }
656}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000657
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000658//===--------------------------------------------------------------------===//
659// Emission and print routines
660//
661
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000662/// EmitInt8 - Emit a byte directive and value.
663///
664void AsmPrinter::EmitInt8(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000665 OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000666}
667
668/// EmitInt16 - Emit a short directive and value.
669///
670void AsmPrinter::EmitInt16(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000671 OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000672}
673
674/// EmitInt32 - Emit a long directive and value.
675///
676void AsmPrinter::EmitInt32(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000677 OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000678}
679
680/// EmitInt64 - Emit a long long directive and value.
681///
682void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000683 OutStreamer.EmitIntValue(Value, 8, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000684}
685
Chris Lattner05f84532010-01-23 04:54:10 +0000686
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000687/// toOctal - Convert the low order bits of X into an octal digit.
688///
689static inline char toOctal(int X) {
690 return (X&7)+'0';
691}
692
693/// printStringChar - Print a char, escaped if necessary.
694///
David Greene71847812009-07-14 20:18:05 +0000695static void printStringChar(formatted_raw_ostream &O, unsigned char C) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000696 if (C == '"') {
697 O << "\\\"";
698 } else if (C == '\\') {
699 O << "\\\\";
Chris Lattnerbbfa2442009-01-22 23:38:45 +0000700 } else if (isprint((unsigned char)C)) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000701 O << C;
702 } else {
703 switch(C) {
704 case '\b': O << "\\b"; break;
705 case '\f': O << "\\f"; break;
706 case '\n': O << "\\n"; break;
707 case '\r': O << "\\r"; break;
708 case '\t': O << "\\t"; break;
709 default:
710 O << '\\';
711 O << toOctal(C >> 6);
712 O << toOctal(C >> 3);
713 O << toOctal(C >> 0);
714 break;
715 }
716 }
717}
718
Dan Gohman189f80d2007-09-24 20:58:13 +0000719/// EmitFile - Emit a .file directive.
Benjamin Kramer1efd4fd52010-01-17 07:46:39 +0000720void AsmPrinter::EmitFile(unsigned Number, StringRef Name) const {
Dan Gohman189f80d2007-09-24 20:58:13 +0000721 O << "\t.file\t" << Number << " \"";
Chris Lattnera118c2e2009-04-08 00:28:38 +0000722 for (unsigned i = 0, N = Name.size(); i < N; ++i)
723 printStringChar(O, Name[i]);
Dan Gohmand19a53b2008-06-30 22:03:41 +0000724 O << '\"';
Dan Gohman189f80d2007-09-24 20:58:13 +0000725}
726
727
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000728//===----------------------------------------------------------------------===//
729
Chris Lattner3a420532007-05-31 18:57:45 +0000730// EmitAlignment - Emit an alignment directive to the specified power of
731// two boundary. For example, if you pass in 3 here, you will get an 8
732// byte alignment. If a global value is specified, and if that global has
733// an explicit alignment requested, it will unconditionally override the
734// alignment request. However, if ForcedAlignBits is specified, this value
735// has final say: the ultimate alignment will be the max of ForcedAlignBits
736// and the alignment computed with NumBits and the global.
737//
738// The algorithm is:
739// Align = NumBits;
740// if (GV && GV->hasalignment) Align = GV->getalignment();
741// Align = std::max(Align, ForcedAlignBits);
742//
743void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng05548eb2008-02-29 19:36:59 +0000744 unsigned ForcedAlignBits,
745 bool UseFillExpr) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000746 if (GV && GV->getAlignment())
Chris Lattner3a420532007-05-31 18:57:45 +0000747 NumBits = Log2_32(GV->getAlignment());
748 NumBits = std::max(NumBits, ForcedAlignBits);
749
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000750 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner663c2d22009-08-19 06:12:02 +0000751
752 unsigned FillValue = 0;
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000753 if (getCurrentSection()->getKind().isText())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000754 FillValue = MAI->getTextAlignFillValue();
Chris Lattner663c2d22009-08-19 06:12:02 +0000755
756 OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
Chris Lattnerbfddc202004-08-17 19:14:29 +0000757}
David Greenea5bb59f2009-08-05 21:00:52 +0000758
Chris Lattner52492ac2010-01-23 06:17:14 +0000759/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
760///
761static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
762 MCContext &Ctx = AP.OutContext;
763
764 if (CV->isNullValue() || isa<UndefValue>(CV))
765 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000766
Chris Lattner52492ac2010-01-23 06:17:14 +0000767 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
768 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000769
Chris Lattner52492ac2010-01-23 06:17:14 +0000770 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
771 return MCSymbolRefExpr::Create(AP.GetGlobalValueSymbol(GV), Ctx);
772 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
773 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000774
775 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
776 if (CE == 0) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000777 llvm_unreachable("Unknown constant value to lower!");
778 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000779 }
780
781 switch (CE->getOpcode()) {
782 case Instruction::ZExt:
783 case Instruction::SExt:
784 case Instruction::FPTrunc:
785 case Instruction::FPExt:
786 case Instruction::UIToFP:
787 case Instruction::SIToFP:
788 case Instruction::FPToUI:
789 case Instruction::FPToSI:
Chris Lattner52492ac2010-01-23 06:17:14 +0000790 default: llvm_unreachable("FIXME: Don't support this constant cast expr");
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000791 case Instruction::GetElementPtr: {
Chris Lattner52492ac2010-01-23 06:17:14 +0000792 const TargetData &TD = *AP.TM.getTargetData();
793 // Generate a symbolic expression for the byte address
794 const Constant *PtrVal = CE->getOperand(0);
795 SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
796 int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0],
797 IdxVec.size());
798
799 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000800 if (Offset == 0)
Chris Lattner52492ac2010-01-23 06:17:14 +0000801 return Base;
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000802
803 // Truncate/sext the offset to the pointer size.
Chris Lattner52492ac2010-01-23 06:17:14 +0000804 if (TD.getPointerSizeInBits() != 64) {
805 int SExtAmount = 64-TD.getPointerSizeInBits();
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000806 Offset = (Offset << SExtAmount) >> SExtAmount;
807 }
808
Chris Lattner52492ac2010-01-23 06:17:14 +0000809 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
810 Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000811 }
812
813 case Instruction::Trunc:
814 // We emit the value and depend on the assembler to truncate the generated
815 // expression properly. This is important for differences between
816 // blockaddress labels. Since the two labels are in the same function, it
817 // is reasonable to treat their delta as a 32-bit value.
Chris Lattner52492ac2010-01-23 06:17:14 +0000818 // FALL THROUGH.
819 case Instruction::BitCast:
820 return LowerConstant(CE->getOperand(0), AP);
821
822 case Instruction::IntToPtr: {
823 const TargetData &TD = *AP.TM.getTargetData();
824 // Handle casts to pointers by changing them into casts to the appropriate
825 // integer type. This promotes constant folding and simplifies this code.
826 Constant *Op = CE->getOperand(0);
827 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
828 false/*ZExt*/);
829 return LowerConstant(Op, AP);
830 }
831
832 case Instruction::PtrToInt: {
833 const TargetData &TD = *AP.TM.getTargetData();
834 // Support only foldable casts to/from pointers that can be eliminated by
835 // changing the pointer to the appropriately sized integer type.
836 Constant *Op = CE->getOperand(0);
837 const Type *Ty = CE->getType();
838
839 const MCExpr *OpExpr = LowerConstant(Op, AP);
840
841 // We can emit the pointer value into this slot if the slot is an
842 // integer slot equal to the size of the pointer.
843 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
844 return OpExpr;
845
846 // Otherwise the pointer is smaller than the resultant integer, mask off
847 // the high bits so we are sure to get a proper truncation if the input is
848 // a constant expr.
849 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
850 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
851 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
852 }
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000853
854 case Instruction::Add:
855 case Instruction::Sub:
856 case Instruction::And:
857 case Instruction::Or:
Chris Lattner52492ac2010-01-23 06:17:14 +0000858 case Instruction::Xor: {
859 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
860 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000861 switch (CE->getOpcode()) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000862 default: llvm_unreachable("Unknown binary operator constant cast expr");
863 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
864 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
865 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
866 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
867 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000868 }
Chris Lattner52492ac2010-01-23 06:17:14 +0000869 }
Chris Lattnera80ba712004-08-16 23:15:22 +0000870 }
871}
Chris Lattner1b7e2352004-08-17 06:36:49 +0000872
Chris Lattner91093ec2010-01-19 19:10:44 +0000873static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
874 AsmPrinter &AP) {
Chris Lattner05f84532010-01-23 04:54:10 +0000875 if (AddrSpace != 0 || !CA->isString()) {
876 // Not a string. Print the values in successive locations
Chris Lattner91093ec2010-01-19 19:10:44 +0000877 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
878 AP.EmitGlobalConstant(CA->getOperand(i), AddrSpace);
Chris Lattner05f84532010-01-23 04:54:10 +0000879 return;
Dan Gohman00d448a2008-12-22 21:14:27 +0000880 }
Chris Lattner05f84532010-01-23 04:54:10 +0000881
882 // Otherwise, it can be emitted as .ascii.
883 SmallVector<char, 128> TmpVec;
884 TmpVec.reserve(CA->getNumOperands());
885 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
886 TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
887
888 AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000889}
890
Chris Lattner91093ec2010-01-19 19:10:44 +0000891static void EmitGlobalConstantVector(const ConstantVector *CV,
892 unsigned AddrSpace, AsmPrinter &AP) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000893 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
Chris Lattner91093ec2010-01-19 19:10:44 +0000894 AP.EmitGlobalConstant(CV->getOperand(i), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000895}
896
Chris Lattner91093ec2010-01-19 19:10:44 +0000897static void EmitGlobalConstantStruct(const ConstantStruct *CS,
898 unsigned AddrSpace, AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000899 // Print the fields in successive locations. Pad to align if needed!
Chris Lattner91093ec2010-01-19 19:10:44 +0000900 const TargetData *TD = AP.TM.getTargetData();
901 unsigned Size = TD->getTypeAllocSize(CS->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +0000902 const StructLayout *Layout = TD->getStructLayout(CS->getType());
Chris Lattner91093ec2010-01-19 19:10:44 +0000903 uint64_t SizeSoFar = 0;
904 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000905 const Constant *Field = CS->getOperand(i);
Dan Gohman00d448a2008-12-22 21:14:27 +0000906
907 // Check if padding is needed and insert one or more 0s.
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000908 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +0000909 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
910 - Layout->getElementOffset(i)) - FieldSize;
911 SizeSoFar += FieldSize + PadSize;
Dan Gohman00d448a2008-12-22 21:14:27 +0000912
913 // Now print the actual field value.
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000914 AP.EmitGlobalConstant(Field, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000915
916 // Insert padding - this may include padding to increase the size of the
917 // current field up to the ABI size (if the struct is not packed) as well
918 // as padding to ensure that the next field starts at the right offset.
Chris Lattner2dd245c2010-01-20 07:11:32 +0000919 AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000920 }
Chris Lattner2dd245c2010-01-20 07:11:32 +0000921 assert(SizeSoFar == Layout->getSizeInBytes() &&
Dan Gohman00d448a2008-12-22 21:14:27 +0000922 "Layout of constant struct may be incorrect!");
923}
924
Chris Lattner2dd245c2010-01-20 07:11:32 +0000925static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
926 AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000927 // FP Constants are printed as integer constants to avoid losing
Chris Lattner9ceff942010-01-20 06:53:37 +0000928 // precision.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000929 if (CFP->getType()->isDoubleTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000930 if (AP.VerboseAsm) {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000931 double Val = CFP->getValueAPF().convertToDouble();
932 AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
Chris Lattner09ce6742010-01-19 22:16:33 +0000933 }
934
Chris Lattner2dd245c2010-01-20 07:11:32 +0000935 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
936 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000937 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000938 }
939
940 if (CFP->getType()->isFloatTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000941 if (AP.VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000942 float Val = CFP->getValueAPF().convertToFloat();
943 AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
Dan Gohmana12e9d72009-08-12 18:32:22 +0000944 }
Chris Lattner2dd245c2010-01-20 07:11:32 +0000945 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
946 AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000947 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000948 }
949
950 if (CFP->getType()->isX86_FP80Ty()) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000951 // all long double variants are printed as hex
952 // api needed to prevent premature destruction
Chris Lattner09ce6742010-01-19 22:16:33 +0000953 APInt API = CFP->getValueAPF().bitcastToAPInt();
954 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +0000955 if (AP.VerboseAsm) {
Chris Lattner72b5ebc2010-01-19 22:11:05 +0000956 // Convert to double so we can print the approximate val as a comment.
957 APFloat DoubleVal = CFP->getValueAPF();
958 bool ignored;
959 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
960 &ignored);
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000961 AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
962 << DoubleVal.convertToDouble() << '\n';
Chris Lattner72b5ebc2010-01-19 22:11:05 +0000963 }
964
Chris Lattner2dd245c2010-01-20 07:11:32 +0000965 if (AP.TM.getTargetData()->isBigEndian()) {
966 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
967 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner72b5ebc2010-01-19 22:11:05 +0000968 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000969 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
970 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000971 }
Chris Lattner9ceff942010-01-20 06:53:37 +0000972
973 // Emit the tail padding for the long double.
Chris Lattner2dd245c2010-01-20 07:11:32 +0000974 const TargetData &TD = *AP.TM.getTargetData();
975 AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
976 TD.getTypeStoreSize(CFP->getType()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000977 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000978 }
979
Chris Lattner09ce6742010-01-19 22:16:33 +0000980 assert(CFP->getType()->isPPC_FP128Ty() &&
981 "Floating point constant type not handled");
982 // All long double variants are printed as hex api needed to prevent
983 // premature destruction.
984 APInt API = CFP->getValueAPF().bitcastToAPInt();
985 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +0000986 if (AP.TM.getTargetData()->isBigEndian()) {
987 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
988 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
Chris Lattner9ceff942010-01-20 06:53:37 +0000989 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000990 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
991 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner09ce6742010-01-19 22:16:33 +0000992 }
Dan Gohman00d448a2008-12-22 21:14:27 +0000993}
994
Chris Lattner2dd245c2010-01-20 07:11:32 +0000995static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
996 unsigned AddrSpace, AsmPrinter &AP) {
997 const TargetData *TD = AP.TM.getTargetData();
Dan Gohman00d448a2008-12-22 21:14:27 +0000998 unsigned BitWidth = CI->getBitWidth();
Chris Lattner38c2b0a2010-01-13 04:39:46 +0000999 assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
Dan Gohman00d448a2008-12-22 21:14:27 +00001000
1001 // We don't expect assemblers to support integer data directives
1002 // for more than 64 bits, so we emit the data in at most 64-bit
1003 // quantities at a time.
1004 const uint64_t *RawData = CI->getValue().getRawData();
1005 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001006 uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1007 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001008 }
1009}
1010
Chris Lattner25045bd2005-11-21 07:51:36 +00001011/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001012void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Chris Lattner043c4e52010-01-20 07:19:19 +00001013 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001014 uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
Chris Lattner6449abf2010-01-19 21:51:22 +00001015 return OutStreamer.EmitZeros(Size, AddrSpace);
Chris Lattner2dd245c2010-01-20 07:11:32 +00001016 }
1017
1018 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1019 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1020 switch (Size) {
1021 case 1:
1022 case 2:
1023 case 4:
1024 case 8:
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001025 if (VerboseAsm)
1026 OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001027 OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1028 return;
1029 default:
1030 EmitGlobalConstantLargeInt(CI, AddrSpace, *this);
1031 return;
1032 }
1033 }
Chris Lattner3cc3a002010-01-13 04:34:19 +00001034
Chris Lattner91093ec2010-01-19 19:10:44 +00001035 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1036 return EmitGlobalConstantArray(CVA, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001037
Chris Lattner91093ec2010-01-19 19:10:44 +00001038 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1039 return EmitGlobalConstantStruct(CVS, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001040
Chris Lattner91093ec2010-01-19 19:10:44 +00001041 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
Chris Lattner2dd245c2010-01-20 07:11:32 +00001042 return EmitGlobalConstantFP(CFP, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001043
Chris Lattner91093ec2010-01-19 19:10:44 +00001044 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1045 return EmitGlobalConstantVector(V, AddrSpace, *this);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001046
Chris Lattnerb0bedd62010-01-20 17:57:50 +00001047 if (isa<ConstantPointerNull>(CV)) {
1048 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1049 OutStreamer.EmitIntValue(0, Size, AddrSpace);
1050 return;
1051 }
1052
Chris Lattner52492ac2010-01-23 06:17:14 +00001053 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it
1054 // thread the streamer with EmitValue.
1055 OutStreamer.EmitValue(LowerConstant(CV, *this),
1056 TM.getTargetData()->getTypeAllocSize(CV->getType()),
1057 AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001058}
Chris Lattner0264d1a2006-01-27 02:10:10 +00001059
Chris Lattnerfad86b02008-08-17 07:19:36 +00001060void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001061 // Target doesn't support this yet!
Torok Edwinc23197a2009-07-14 16:55:14 +00001062 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Evan Chengd6594ae2006-09-12 21:00:35 +00001063}
1064
Chris Lattner3ce9b672006-09-26 23:59:50 +00001065/// PrintSpecial - Print information related to the specified machine instr
1066/// that is independent of the operand, and may be independent of the instr
1067/// itself. This can be useful for portably encoding the comment character
1068/// or other bits of target-specific knowledge into the asmstrings. The
1069/// syntax used is ${:comment}. Targets can override this to add support
1070/// for their own strange codes.
Chris Lattner3e0cc262009-03-10 05:37:13 +00001071void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001072 if (!strcmp(Code, "private")) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001073 O << MAI->getPrivateGlobalPrefix();
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001074 } else if (!strcmp(Code, "comment")) {
Evan Chengf1c0ae92009-03-24 00:17:40 +00001075 if (VerboseAsm)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001076 O << MAI->getCommentString();
Chris Lattner3ce9b672006-09-26 23:59:50 +00001077 } else if (!strcmp(Code, "uid")) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001078 // Comparing the address of MI isn't sufficient, because machineinstrs may
1079 // be allocated to the same address across functions.
1080 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1081
Owen Andersonbd58edf2009-06-24 22:28:12 +00001082 // If this is a new LastFn instruction, bump the counter.
1083 if (LastMI != MI || LastFn != ThisF) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001084 ++Counter;
1085 LastMI = MI;
Owen Andersonbd58edf2009-06-24 22:28:12 +00001086 LastFn = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001087 }
Chris Lattner3ce9b672006-09-26 23:59:50 +00001088 O << Counter;
1089 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001090 std::string msg;
1091 raw_string_ostream Msg(msg);
1092 Msg << "Unknown special formatter '" << Code
Bill Wendlinge8156192006-12-07 01:30:32 +00001093 << "' for machine instr: " << *MI;
Torok Edwin7d696d82009-07-11 13:10:19 +00001094 llvm_report_error(Msg.str());
Chris Lattner3ce9b672006-09-26 23:59:50 +00001095 }
1096}
1097
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001098/// processDebugLoc - Processes the debug information of each machine
1099/// instruction's DebugLoc.
Devang Patelaf0e2722009-10-06 02:19:11 +00001100void AsmPrinter::processDebugLoc(const MachineInstr *MI,
1101 bool BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001102 if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1103 || !DW->ShouldEmitDwarfDebug())
Chris Lattnerd2503292009-08-05 04:09:18 +00001104 return;
Devang Patelb0fdedb2009-09-30 23:12:50 +00001105 DebugLoc DL = MI->getDebugLoc();
Devang Patel53bb5c92009-11-10 23:06:00 +00001106 if (DL.isUnknown())
1107 return;
Devang Patel6b61f582010-01-16 06:09:35 +00001108 DILocation CurDLT = MF->getDILocation(DL);
1109 if (CurDLT.getScope().isNull())
Devang Patel53bb5c92009-11-10 23:06:00 +00001110 return;
1111
Chris Lattner043c4e52010-01-20 07:19:19 +00001112 if (!BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001113 // After printing instruction
1114 DW->EndScope(MI);
Chris Lattner043c4e52010-01-20 07:19:19 +00001115 } else if (CurDLT.getNode() != PrevDLT) {
1116 unsigned L = DW->RecordSourceLine(CurDLT.getLineNumber(),
1117 CurDLT.getColumnNumber(),
1118 CurDLT.getScope().getNode());
1119 printLabel(L);
1120 O << '\n';
1121 DW->BeginScope(MI, L);
1122 PrevDLT = CurDLT.getNode();
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001123 }
1124}
Chris Lattner3ce9b672006-09-26 23:59:50 +00001125
Devang Patel53bb5c92009-11-10 23:06:00 +00001126
Chris Lattner0264d1a2006-01-27 02:10:10 +00001127/// printInlineAsm - This method formats and prints the specified machine
1128/// instruction that is an inline asm.
1129void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001130 unsigned NumOperands = MI->getNumOperands();
1131
1132 // Count the number of register definitions.
1133 unsigned NumDefs = 0;
Dan Gohmand735b802008-10-03 15:45:36 +00001134 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Chris Lattner67942f52006-09-05 20:02:51 +00001135 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001136 assert(NumDefs != NumOperands-1 && "No asm string?");
1137
Dan Gohmand735b802008-10-03 15:45:36 +00001138 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +00001139
1140 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001141 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +00001142
Dan Gohman40c57862009-11-06 00:04:54 +00001143 O << '\t';
1144
Dale Johannesenba2a0b92008-01-29 02:21:21 +00001145 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1146 // These are useful to see where empty asm's wound up.
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001147 if (AsmStr[0] == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001148 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1149 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001150 return;
1151 }
1152
Chris Lattner33adcfb2009-08-22 21:43:10 +00001153 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001154
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001155 // The variant of the current asmprinter.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001156 int AsmPrinterVariant = MAI->getAssemblerDialect();
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001157
Chris Lattner66099132006-02-01 22:41:11 +00001158 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1159 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +00001160
Chris Lattner66099132006-02-01 22:41:11 +00001161 while (*LastEmitted) {
1162 switch (*LastEmitted) {
1163 default: {
1164 // Not a special case, emit the string section literally.
1165 const char *LiteralEnd = LastEmitted+1;
1166 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +00001167 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +00001168 ++LiteralEnd;
1169 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1170 O.write(LastEmitted, LiteralEnd-LastEmitted);
1171 LastEmitted = LiteralEnd;
1172 break;
1173 }
Chris Lattner1c059972006-05-05 21:47:05 +00001174 case '\n':
1175 ++LastEmitted; // Consume newline character.
Dan Gohmand19a53b2008-06-30 22:03:41 +00001176 O << '\n'; // Indent code with newline.
Chris Lattner1c059972006-05-05 21:47:05 +00001177 break;
Chris Lattner66099132006-02-01 22:41:11 +00001178 case '$': {
1179 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001180 bool Done = true;
1181
1182 // Handle escapes.
1183 switch (*LastEmitted) {
1184 default: Done = false; break;
1185 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +00001186 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1187 O << '$';
1188 ++LastEmitted; // Consume second '$' character.
1189 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001190 case '(': // $( -> same as GCC's { character.
1191 ++LastEmitted; // Consume '(' character.
1192 if (CurVariant != -1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001193 llvm_report_error("Nested variants found in inline asm string: '"
1194 + std::string(AsmStr) + "'");
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001195 }
1196 CurVariant = 0; // We're in the first variant now.
1197 break;
1198 case '|':
1199 ++LastEmitted; // consume '|' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001200 if (CurVariant == -1)
1201 O << '|'; // this is gcc's behavior for | outside a variant
1202 else
1203 ++CurVariant; // We're in the next variant.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001204 break;
1205 case ')': // $) -> same as GCC's } char.
1206 ++LastEmitted; // consume ')' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001207 if (CurVariant == -1)
1208 O << '}'; // this is gcc's behavior for } outside a variant
1209 else
1210 CurVariant = -1;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001211 break;
Chris Lattner66099132006-02-01 22:41:11 +00001212 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001213 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +00001214
1215 bool HasCurlyBraces = false;
1216 if (*LastEmitted == '{') { // ${variable}
1217 ++LastEmitted; // Consume '{' character.
1218 HasCurlyBraces = true;
1219 }
1220
Chris Lattner3e0cc262009-03-10 05:37:13 +00001221 // If we have ${:foo}, then this is not a real operand reference, it is a
1222 // "magic" string reference, just like in .td files. Arrange to call
1223 // PrintSpecial.
1224 if (HasCurlyBraces && *LastEmitted == ':') {
1225 ++LastEmitted;
1226 const char *StrStart = LastEmitted;
1227 const char *StrEnd = strchr(StrStart, '}');
1228 if (StrEnd == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001229 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1230 + std::string(AsmStr) + "'");
Chris Lattner3e0cc262009-03-10 05:37:13 +00001231 }
1232
1233 std::string Val(StrStart, StrEnd);
1234 PrintSpecial(MI, Val.c_str());
1235 LastEmitted = StrEnd+1;
1236 break;
1237 }
1238
Chris Lattner66099132006-02-01 22:41:11 +00001239 const char *IDStart = LastEmitted;
1240 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +00001241 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +00001242 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1243 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001244 llvm_report_error("Bad $ operand number in inline asm string: '"
1245 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001246 }
1247 LastEmitted = IDEnd;
1248
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001249 char Modifier[2] = { 0, 0 };
1250
Chris Lattner66099132006-02-01 22:41:11 +00001251 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001252 // If we have curly braces, check for a modifier character. This
1253 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1254 if (*LastEmitted == ':') {
1255 ++LastEmitted; // Consume ':' character.
1256 if (*LastEmitted == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001257 llvm_report_error("Bad ${:} expression in inline asm string: '"
1258 + std::string(AsmStr) + "'");
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001259 }
1260
1261 Modifier[0] = *LastEmitted;
1262 ++LastEmitted; // Consume modifier character.
1263 }
1264
Chris Lattner66099132006-02-01 22:41:11 +00001265 if (*LastEmitted != '}') {
Torok Edwin7d696d82009-07-11 13:10:19 +00001266 llvm_report_error("Bad ${} expression in inline asm string: '"
1267 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001268 }
1269 ++LastEmitted; // Consume '}' character.
1270 }
1271
1272 if ((unsigned)Val >= NumOperands-1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001273 llvm_report_error("Invalid $ operand number in inline asm string: '"
1274 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001275 }
1276
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001277 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001278 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001279 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1280 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001281
1282 bool Error = false;
1283
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001284 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001285 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001286 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner9e330492007-12-30 20:50:28 +00001287 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng697cbbf2009-03-20 18:03:34 +00001288 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001289 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001290
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001291 if (OpNo >= MI->getNumOperands()) {
1292 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001293 } else {
Chris Lattner9e330492007-12-30 20:50:28 +00001294 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001295 ++OpNo; // Skip over the ID number.
1296
Chris Lattner10b318b2010-01-17 21:43:43 +00001297 if (Modifier[0] == 'l') // labels are target independent
1298 O << *GetMBBSymbol(MI->getOperand(OpNo).getMBB()->getNumber());
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001299 else {
1300 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen86b49f82008-09-24 01:07:17 +00001301 if ((OpFlags & 7) == 4) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001302 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1303 Modifier[0] ? Modifier : 0);
1304 } else {
1305 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1306 Modifier[0] ? Modifier : 0);
1307 }
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001308 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001309 }
1310 if (Error) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001311 std::string msg;
1312 raw_string_ostream Msg(msg);
Chris Lattner10b318b2010-01-17 21:43:43 +00001313 Msg << "Invalid operand found in inline asm: '" << AsmStr << "'\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00001314 MI->print(Msg);
1315 llvm_report_error(Msg.str());
Chris Lattner66099132006-02-01 22:41:11 +00001316 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001317 }
Chris Lattner66099132006-02-01 22:41:11 +00001318 break;
1319 }
Chris Lattner66099132006-02-01 22:41:11 +00001320 }
1321 }
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001322 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
Chris Lattner66099132006-02-01 22:41:11 +00001323}
1324
Evan Chengda47e6e2008-03-15 00:03:38 +00001325/// printImplicitDef - This method prints the specified machine instruction
1326/// that is an implicit def.
1327void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001328 if (!VerboseAsm) return;
1329 O.PadToColumn(MAI->getCommentColumn());
1330 O << MAI->getCommentString() << " implicit-def: "
Chris Lattnerf806c232009-09-13 19:48:37 +00001331 << TRI->getName(MI->getOperand(0).getReg());
Evan Chengda47e6e2008-03-15 00:03:38 +00001332}
1333
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001334void AsmPrinter::printKill(const MachineInstr *MI) const {
1335 if (!VerboseAsm) return;
1336 O.PadToColumn(MAI->getCommentColumn());
1337 O << MAI->getCommentString() << " kill:";
1338 for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1339 const MachineOperand &op = MI->getOperand(n);
1340 assert(op.isReg() && "KILL instruction must have only register operands");
1341 O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1342 }
1343}
1344
Jim Laskey1ee29252007-01-26 14:34:52 +00001345/// printLabel - This method prints a local label used by debug and
1346/// exception handling tables.
1347void AsmPrinter::printLabel(const MachineInstr *MI) const {
Dan Gohman528bc022008-07-01 00:16:26 +00001348 printLabel(MI->getOperand(0).getImm());
Jim Laskey1ee29252007-01-26 14:34:52 +00001349}
1350
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001351void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001352 O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001353}
1354
Chris Lattner66099132006-02-01 22:41:11 +00001355/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1356/// instruction, using the specified assembler variant. Targets should
Dale Johannesencf0b7662010-01-14 21:50:17 +00001357/// override this to format as appropriate.
Chris Lattner66099132006-02-01 22:41:11 +00001358bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001359 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001360 // Target doesn't support this yet!
1361 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001362}
Chris Lattnerdd260332006-02-24 20:21:58 +00001363
1364bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1365 unsigned AsmVariant,
1366 const char *ExtraCode) {
1367 // Target doesn't support this yet!
1368 return true;
1369}
Nate Begeman37efe672006-04-22 18:53:45 +00001370
Dan Gohman29cbade2009-11-20 23:18:13 +00001371MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA,
1372 const char *Suffix) const {
1373 return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock(), Suffix);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001374}
1375
1376MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
Dan Gohman29cbade2009-11-20 23:18:13 +00001377 const BasicBlock *BB,
1378 const char *Suffix) const {
Dan Gohman8c2b5252009-10-30 01:27:03 +00001379 assert(BB->hasName() &&
1380 "Address of anonymous basic block not supported yet!");
1381
Dan Gohman568a3be2009-11-05 23:14:35 +00001382 // This code must use the function name itself, and not the function number,
1383 // since it must be possible to generate the label name from within other
1384 // functions.
Chris Lattner2f8cc262010-01-13 07:30:49 +00001385 SmallString<60> FnName;
1386 Mang->getNameWithPrefix(FnName, F, false);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001387
Chris Lattner2f8cc262010-01-13 07:30:49 +00001388 // FIXME: THIS IS BROKEN IF THE LLVM BASIC BLOCK DOESN'T HAVE A NAME!
Chris Lattner48130352010-01-13 06:38:18 +00001389 SmallString<60> NameResult;
Chris Lattner2f8cc262010-01-13 07:30:49 +00001390 Mang->getNameWithPrefix(NameResult,
1391 StringRef("BA") + Twine((unsigned)FnName.size()) +
1392 "_" + FnName.str() + "_" + BB->getName() + Suffix,
1393 Mangler::Private);
Dan Gohman568a3be2009-11-05 23:14:35 +00001394
Chris Lattner48130352010-01-13 06:38:18 +00001395 return OutContext.GetOrCreateSymbol(NameResult.str());
Dan Gohman8c2b5252009-10-30 01:27:03 +00001396}
1397
Chris Lattner7cb384d2009-09-12 23:02:08 +00001398MCSymbol *AsmPrinter::GetMBBSymbol(unsigned MBBID) const {
1399 SmallString<60> Name;
1400 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "BB"
1401 << getFunctionNumber() << '_' << MBBID;
Chris Lattner39248682010-01-23 05:19:23 +00001402 return OutContext.GetOrCreateSymbol(Name.str());
1403}
1404
1405/// GetCPISymbol - Return the symbol for the specified constant pool entry.
1406MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
1407 SmallString<60> Name;
1408 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "CPI"
1409 << getFunctionNumber() << '_' << CPID;
1410 return OutContext.GetOrCreateSymbol(Name.str());
1411}
1412
1413/// GetJTISymbol - Return the symbol for the specified jump table entry.
1414MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
1415 const char *Prefix = isLinkerPrivate ? MAI->getLinkerPrivateGlobalPrefix() :
1416 MAI->getPrivateGlobalPrefix();
1417 SmallString<60> Name;
1418 raw_svector_ostream(Name) << Prefix << "JTI" << getFunctionNumber() << '_'
1419 << JTID;
Chris Lattner7cb384d2009-09-12 23:02:08 +00001420 return OutContext.GetOrCreateSymbol(Name.str());
1421}
1422
Chris Lattner6b04ede2010-01-15 23:18:17 +00001423/// GetGlobalValueSymbol - Return the MCSymbol for the specified global
1424/// value.
1425MCSymbol *AsmPrinter::GetGlobalValueSymbol(const GlobalValue *GV) const {
1426 SmallString<60> NameStr;
1427 Mang->getNameWithPrefix(NameStr, GV, false);
1428 return OutContext.GetOrCreateSymbol(NameStr.str());
1429}
1430
Chris Lattner7a2ba942010-01-16 18:37:32 +00001431/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
Chris Lattnerd588b972010-01-15 23:25:11 +00001432/// global value name as its base, with the specified suffix, and where the
Chris Lattner7a2ba942010-01-16 18:37:32 +00001433/// symbol is forced to have private linkage if ForcePrivate is true.
1434MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
1435 StringRef Suffix,
1436 bool ForcePrivate) const {
Chris Lattnerd588b972010-01-15 23:25:11 +00001437 SmallString<60> NameStr;
Chris Lattner7a2ba942010-01-16 18:37:32 +00001438 Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
Chris Lattnerd588b972010-01-15 23:25:11 +00001439 NameStr.append(Suffix.begin(), Suffix.end());
1440 return OutContext.GetOrCreateSymbol(NameStr.str());
1441}
1442
Chris Lattner6b04ede2010-01-15 23:18:17 +00001443/// GetExternalSymbolSymbol - Return the MCSymbol for the specified
1444/// ExternalSymbol.
1445MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
1446 SmallString<60> NameStr;
1447 Mang->getNameWithPrefix(NameStr, Sym);
1448 return OutContext.GetOrCreateSymbol(NameStr.str());
1449}
1450
Chris Lattner7cb384d2009-09-12 23:02:08 +00001451
Chris Lattner523a5082010-01-22 21:50:41 +00001452
1453/// PrintParentLoopComment - Print comments about parent loops of this one.
1454static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1455 unsigned FunctionNumber) {
1456 if (Loop == 0) return;
1457 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
1458 OS.indent(Loop->getLoopDepth()*2)
1459 << "Parent Loop BB" << FunctionNumber << "_"
1460 << Loop->getHeader()->getNumber()
1461 << " Depth=" << Loop->getLoopDepth() << '\n';
1462}
1463
1464
1465/// PrintChildLoopComment - Print comments about child loops within
1466/// the loop for this basic block, with nesting.
1467static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1468 unsigned FunctionNumber) {
1469 // Add child loop information
1470 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
1471 OS.indent((*CL)->getLoopDepth()*2)
1472 << "Child Loop BB" << FunctionNumber << "_"
1473 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
1474 << '\n';
1475 PrintChildLoopComment(OS, *CL, FunctionNumber);
1476 }
1477}
1478
1479/// EmitComments - Pretty-print comments for basic blocks.
1480static void PrintBasicBlockLoopComments(const MachineBasicBlock &MBB,
1481 const MachineLoopInfo *LI,
1482 const AsmPrinter &AP) {
1483 // Add loop depth information
1484 const MachineLoop *Loop = LI->getLoopFor(&MBB);
1485 if (Loop == 0) return;
1486
1487 MachineBasicBlock *Header = Loop->getHeader();
1488 assert(Header && "No header for loop");
1489
1490 // If this block is not a loop header, just print out what is the loop header
1491 // and return.
1492 if (Header != &MBB) {
1493 AP.OutStreamer.AddComment(" in Loop: Header=BB" +
1494 Twine(AP.getFunctionNumber())+"_" +
1495 Twine(Loop->getHeader()->getNumber())+
1496 " Depth="+Twine(Loop->getLoopDepth()));
1497 return;
1498 }
1499
1500 // Otherwise, it is a loop header. Print out information about child and
1501 // parent loops.
1502 raw_ostream &OS = AP.OutStreamer.GetCommentOS();
1503
1504 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
1505
1506 OS << "=>";
1507 OS.indent(Loop->getLoopDepth()*2-2);
1508
1509 OS << "This ";
1510 if (Loop->empty())
1511 OS << "Inner ";
1512 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
1513
1514 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
1515}
1516
1517
Chris Lattner70a54c02009-09-13 18:25:37 +00001518/// EmitBasicBlockStart - This method prints the label for the specified
1519/// MachineBasicBlock, an alignment (if present) and a comment describing
1520/// it if appropriate.
Chris Lattner662316c2009-09-14 03:15:54 +00001521void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
Dan Gohmanb1cac332009-10-30 01:34:35 +00001522 // Emit an alignment directive for this block, if needed.
Chris Lattner70a54c02009-09-13 18:25:37 +00001523 if (unsigned Align = MBB->getAlignment())
1524 EmitAlignment(Log2_32(Align));
Evan Chengfb8075d2008-02-28 00:43:03 +00001525
Dan Gohmanb1cac332009-10-30 01:34:35 +00001526 // If the block has its address taken, emit a special label to satisfy
1527 // references to the block. This is done so that we don't need to
1528 // remember the number of this label, and so that we can make
1529 // forward references to labels without knowing what their numbers
1530 // will be.
Dan Gohman8c2b5252009-10-30 01:27:03 +00001531 if (MBB->hasAddressTaken()) {
Chris Lattner213168b2010-01-20 07:24:05 +00001532 const BasicBlock *BB = MBB->getBasicBlock();
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001533 if (VerboseAsm)
1534 OutStreamer.AddComment("Address Taken");
Chris Lattner213168b2010-01-20 07:24:05 +00001535 OutStreamer.EmitLabel(GetBlockAddressSymbol(BB->getParent(), BB));
Dan Gohman8c2b5252009-10-30 01:27:03 +00001536 }
1537
Dan Gohmanb1cac332009-10-30 01:34:35 +00001538 // Print the main label for the block.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001539 if (MBB->pred_empty() || MBB->isOnlyReachableByFallthrough()) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001540 if (VerboseAsm) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +00001541 // NOTE: Want this comment at start of line.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001542 O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001543 if (const BasicBlock *BB = MBB->getBasicBlock())
1544 if (BB->hasName())
1545 OutStreamer.AddComment("%" + BB->getName());
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001546
Chris Lattner523a5082010-01-22 21:50:41 +00001547 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001548 OutStreamer.AddBlankLine();
1549 }
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001550 } else {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001551 if (VerboseAsm) {
1552 if (const BasicBlock *BB = MBB->getBasicBlock())
1553 if (BB->hasName())
1554 OutStreamer.AddComment("%" + BB->getName());
Chris Lattner523a5082010-01-22 21:50:41 +00001555 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001556 }
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001557
Chris Lattner213168b2010-01-20 07:24:05 +00001558 OutStreamer.EmitLabel(GetMBBSymbol(MBB->getNumber()));
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001559 }
Nate Begeman37efe672006-04-22 18:53:45 +00001560}
Nate Begeman52a51e382006-08-12 21:29:52 +00001561
Evan Chengcc415862007-11-09 01:32:10 +00001562/// printPICJumpTableSetLabel - This method prints a set label for the
1563/// specified MachineBasicBlock for a jumptable entry.
1564void AsmPrinter::printPICJumpTableSetLabel(unsigned uid,
1565 const MachineBasicBlock *MBB) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001566 if (!MAI->getSetDirective())
Nate Begeman52a51e382006-08-12 21:29:52 +00001567 return;
1568
Chris Lattner33adcfb2009-08-22 21:43:10 +00001569 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
Chris Lattner10b318b2010-01-17 21:43:43 +00001570 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ','
1571 << *GetMBBSymbol(MBB->getNumber())
Chris Lattner39248682010-01-23 05:19:23 +00001572 << '-' << *GetJTISymbol(uid) << '\n';
Nate Begeman52a51e382006-08-12 21:29:52 +00001573}
Evan Chengd6594ae2006-09-12 21:00:35 +00001574
Evan Chengcc415862007-11-09 01:32:10 +00001575void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
1576 const MachineBasicBlock *MBB) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001577 if (!MAI->getSetDirective())
Evan Cheng41349c12006-11-01 09:23:08 +00001578 return;
1579
Chris Lattner33adcfb2009-08-22 21:43:10 +00001580 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
Evan Cheng347d39f2007-10-14 05:57:21 +00001581 << getFunctionNumber() << '_' << uid << '_' << uid2
Chris Lattner10b318b2010-01-17 21:43:43 +00001582 << "_set_" << MBB->getNumber() << ','
1583 << *GetMBBSymbol(MBB->getNumber())
1584 << '-' << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Evan Cheng347d39f2007-10-14 05:57:21 +00001585 << '_' << uid << '_' << uid2 << '\n';
Evan Cheng41349c12006-11-01 09:23:08 +00001586}
1587
Chris Lattner152a29b2010-01-23 06:53:23 +00001588void AsmPrinter::printVisibility(MCSymbol *Sym, unsigned Visibility) const {
1589 MCSymbolAttr Attr = MCSA_Invalid;
1590
1591 switch (Visibility) {
1592 default: break;
1593 case GlobalValue::HiddenVisibility:
1594 Attr = MAI->getHiddenVisibilityAttr();
1595 break;
1596 case GlobalValue::ProtectedVisibility:
1597 Attr = MAI->getProtectedVisibilityAttr();
1598 break;
Chris Lattner53d4d782010-01-15 23:38:51 +00001599 }
Chris Lattner152a29b2010-01-23 06:53:23 +00001600
1601 if (Attr != MCSA_Invalid)
1602 OutStreamer.EmitSymbolAttribute(Sym, Attr);
Chris Lattner53d4d782010-01-15 23:38:51 +00001603}
1604
Anton Korobeynikov7751ad92008-11-22 16:15:34 +00001605void AsmPrinter::printOffset(int64_t Offset) const {
1606 if (Offset > 0)
1607 O << '+' << Offset;
1608 else if (Offset < 0)
1609 O << Offset;
1610}
1611
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001612GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1613 if (!S->usesMetadata())
Gordon Henriksenc317a602008-08-17 12:08:44 +00001614 return 0;
1615
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001616 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001617 if (GCPI != GCMetadataPrinters.end())
1618 return GCPI->second;
1619
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001620 const char *Name = S->getName().c_str();
Gordon Henriksenc317a602008-08-17 12:08:44 +00001621
1622 for (GCMetadataPrinterRegistry::iterator
1623 I = GCMetadataPrinterRegistry::begin(),
1624 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1625 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001626 GCMetadataPrinter *GMP = I->instantiate();
1627 GMP->S = S;
1628 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1629 return GMP;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001630 }
1631
Chris Lattner52492ac2010-01-23 06:17:14 +00001632 llvm_report_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
1633 return 0;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001634}
David Greene014700c2009-07-13 20:25:48 +00001635
1636/// EmitComments - Pretty-print comments for instructions
Chris Lattner5f51cd02009-08-07 23:42:01 +00001637void AsmPrinter::EmitComments(const MachineInstr &MI) const {
David Greene1924aab2009-11-13 21:34:57 +00001638 if (!VerboseAsm)
1639 return;
David Greene3ac1ab82009-07-16 22:24:20 +00001640
David Greene1924aab2009-11-13 21:34:57 +00001641 bool Newline = false;
1642
1643 if (!MI.getDebugLoc().isUnknown()) {
Devang Patel6b61f582010-01-16 06:09:35 +00001644 DILocation DLT = MF->getDILocation(MI.getDebugLoc());
David Greene1924aab2009-11-13 21:34:57 +00001645
1646 // Print source line info.
1647 O.PadToColumn(MAI->getCommentColumn());
Dan Gohman3b9bc042009-12-05 00:23:29 +00001648 O << MAI->getCommentString() << ' ';
Devang Patel6b61f582010-01-16 06:09:35 +00001649 DIScope Scope = DLT.getScope();
Dan Gohman3b9bc042009-12-05 00:23:29 +00001650 // Omit the directory, because it's likely to be long and uninteresting.
1651 if (!Scope.isNull())
1652 O << Scope.getFilename();
1653 else
1654 O << "<unknown>";
Devang Patel6b61f582010-01-16 06:09:35 +00001655 O << ':' << DLT.getLineNumber();
1656 if (DLT.getColumnNumber() != 0)
1657 O << ':' << DLT.getColumnNumber();
David Greene1924aab2009-11-13 21:34:57 +00001658 Newline = true;
David Greene3ac1ab82009-07-16 22:24:20 +00001659 }
David Greene1924aab2009-11-13 21:34:57 +00001660
David Greeneddff9412009-11-16 15:12:23 +00001661 // Check for spills and reloads
1662 int FI;
1663
1664 const MachineFrameInfo *FrameInfo =
1665 MI.getParent()->getParent()->getFrameInfo();
1666
1667 // We assume a single instruction only has a spill or reload, not
1668 // both.
David Greenef7ea2a52009-12-04 22:46:04 +00001669 const MachineMemOperand *MMO;
David Greeneddff9412009-11-16 15:12:23 +00001670 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
1671 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001672 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001673 if (Newline) O << '\n';
1674 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001675 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Reload";
David Greeneddff9412009-11-16 15:12:23 +00001676 Newline = true;
1677 }
1678 }
David Greenef7ea2a52009-12-04 22:46:04 +00001679 else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001680 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1681 if (Newline) O << '\n';
1682 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001683 O << MAI->getCommentString() << ' '
1684 << MMO->getSize() << "-byte Folded Reload";
David Greeneddff9412009-11-16 15:12:23 +00001685 Newline = true;
1686 }
1687 }
1688 else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
1689 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001690 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001691 if (Newline) O << '\n';
1692 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001693 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Spill";
David Greeneddff9412009-11-16 15:12:23 +00001694 Newline = true;
1695 }
1696 }
David Greenef7ea2a52009-12-04 22:46:04 +00001697 else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001698 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1699 if (Newline) O << '\n';
1700 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001701 O << MAI->getCommentString() << ' '
1702 << MMO->getSize() << "-byte Folded Spill";
David Greeneddff9412009-11-16 15:12:23 +00001703 Newline = true;
1704 }
1705 }
1706
1707 // Check for spill-induced copies
1708 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1709 if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
1710 SrcSubIdx, DstSubIdx)) {
1711 if (MI.getAsmPrinterFlag(ReloadReuse)) {
1712 if (Newline) O << '\n';
1713 O.PadToColumn(MAI->getCommentColumn());
1714 O << MAI->getCommentString() << " Reload Reuse";
David Greeneddff9412009-11-16 15:12:23 +00001715 }
1716 }
David Greene014700c2009-07-13 20:25:48 +00001717}
1718