blob: 50e88773e8b645bb37e032347fe10f5e923705b3 [file] [log] [blame]
Chris Lattnera80ba712004-08-16 23:15:22 +00001//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnera80ba712004-08-16 23:15:22 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the AsmPrinter class.
11//
12//===----------------------------------------------------------------------===//
13
Evan Cheng932f0222006-03-03 02:04:29 +000014#include "llvm/CodeGen/AsmPrinter.h"
Evan Cheng246ae0d2006-03-01 22:18:09 +000015#include "llvm/Assembly/Writer.h"
Nate Begeman8cfa57b2005-12-06 06:18:55 +000016#include "llvm/DerivedTypes.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000017#include "llvm/Constants.h"
Chris Lattner450de392005-11-10 18:36:17 +000018#include "llvm/Module.h"
Chris Lattner45111d12010-01-16 21:57:06 +000019#include "llvm/CodeGen/DwarfWriter.h"
Gordon Henriksen5eca0752008-08-17 18:44:35 +000020#include "llvm/CodeGen/GCMetadataPrinter.h"
Chris Lattner3b4fd322005-11-21 08:25:09 +000021#include "llvm/CodeGen/MachineConstantPool.h"
David Greene1924aab2009-11-13 21:34:57 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
David Greenefe37ab32009-08-18 19:22:55 +000023#include "llvm/CodeGen/MachineFunction.h"
Nate Begeman37efe672006-04-22 18:53:45 +000024#include "llvm/CodeGen/MachineJumpTableInfo.h"
David Greeneb71d1b22009-08-10 16:38:07 +000025#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000026#include "llvm/CodeGen/MachineModuleInfo.h"
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +000027#include "llvm/Analysis/DebugInfo.h"
Chris Lattner2b2954f2009-07-27 21:28:04 +000028#include "llvm/MC/MCContext.h"
Chris Lattner52492ac2010-01-23 06:17:14 +000029#include "llvm/MC/MCExpr.h"
David Greene3ac1ab82009-07-16 22:24:20 +000030#include "llvm/MC/MCInst.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000031#include "llvm/MC/MCSection.h"
32#include "llvm/MC/MCStreamer.h"
Chris Lattner7cb384d2009-09-12 23:02:08 +000033#include "llvm/MC/MCSymbol.h"
Evan Cheng42bf74b2009-03-25 01:47:28 +000034#include "llvm/Support/CommandLine.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000035#include "llvm/Support/ErrorHandling.h"
Chris Lattner0fd90fd2010-01-22 19:52:01 +000036#include "llvm/Support/Format.h"
David Greene014700c2009-07-13 20:25:48 +000037#include "llvm/Support/FormattedStream.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattner45111d12010-01-16 21:57:06 +000039#include "llvm/Target/Mangler.h"
Owen Anderson07000c62006-05-12 06:33:49 +000040#include "llvm/Target/TargetData.h"
David Greene1924aab2009-11-13 21:34:57 +000041#include "llvm/Target/TargetInstrInfo.h"
Chris Lattner0336fdb2006-10-06 22:50:56 +000042#include "llvm/Target/TargetLowering.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000043#include "llvm/Target/TargetLoweringObjectFile.h"
Evan Cheng6547e402008-07-01 23:18:29 +000044#include "llvm/Target/TargetOptions.h"
Evan Chengda47e6e2008-03-15 00:03:38 +000045#include "llvm/Target/TargetRegisterInfo.h"
Evan Chengcc415862007-11-09 01:32:10 +000046#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerfad86b02008-08-17 07:19:36 +000047#include "llvm/ADT/SmallString.h"
Chris Lattner66099132006-02-01 22:41:11 +000048#include <cerrno>
Chris Lattnera80ba712004-08-16 23:15:22 +000049using namespace llvm;
50
Evan Cheng42bf74b2009-03-25 01:47:28 +000051static cl::opt<cl::boolOrDefault>
52AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
53 cl::init(cl::BOU_UNSET));
54
Chris Lattner07404412010-01-22 07:06:15 +000055static bool getVerboseAsm(bool VDef) {
56 switch (AsmVerbose) {
57 default:
58 case cl::BOU_UNSET: return VDef;
59 case cl::BOU_TRUE: return true;
60 case cl::BOU_FALSE: return false;
61 }
62}
63
Devang Patel19974732007-05-03 01:11:54 +000064char AsmPrinter::ID = 0;
David Greene71847812009-07-14 20:18:05 +000065AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +000066 const MCAsmInfo *T, bool VDef)
Chris Lattnerb84822f2010-01-26 04:35:26 +000067 : MachineFunctionPass(&ID), O(o),
Chris Lattner33adcfb2009-08-22 21:43:10 +000068 TM(tm), MAI(T), TRI(tm.getRegisterInfo()),
Chris Lattner2b2954f2009-07-27 21:28:04 +000069
70 OutContext(*new MCContext()),
Chris Lattner90edac02009-09-14 03:02:37 +000071 // FIXME: Pass instprinter to streamer.
Chris Lattner16582022010-01-20 06:39:07 +000072 OutStreamer(*createAsmStreamer(OutContext, O, *T,
Chris Lattner07404412010-01-22 07:06:15 +000073 TM.getTargetData()->isLittleEndian(),
74 getVerboseAsm(VDef), 0)),
Chris Lattner2b2954f2009-07-27 21:28:04 +000075
Devang Patel6b61f582010-01-16 06:09:35 +000076 LastMI(0), LastFn(0), Counter(~0U), PrevDLT(NULL) {
Chris Lattner0de1fc42009-06-24 19:09:55 +000077 DW = 0; MMI = 0;
Chris Lattner07404412010-01-22 07:06:15 +000078 VerboseAsm = getVerboseAsm(VDef);
Evan Cheng42bf74b2009-03-25 01:47:28 +000079}
Chris Lattnered138932005-12-13 06:32:10 +000080
Gordon Henriksenc317a602008-08-17 12:08:44 +000081AsmPrinter::~AsmPrinter() {
82 for (gcp_iterator I = GCMetadataPrinters.begin(),
83 E = GCMetadataPrinters.end(); I != E; ++I)
84 delete I->second;
Chris Lattner2b2954f2009-07-27 21:28:04 +000085
86 delete &OutStreamer;
87 delete &OutContext;
Gordon Henriksenc317a602008-08-17 12:08:44 +000088}
Chris Lattnered138932005-12-13 06:32:10 +000089
Chris Lattnerb84822f2010-01-26 04:35:26 +000090/// getFunctionNumber - Return a unique ID for the current function.
91///
92unsigned AsmPrinter::getFunctionNumber() const {
93 return MF->getFunctionNumber();
94}
95
Chris Lattner38c39882009-08-03 19:12:26 +000096TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
Chris Lattnerf0144122009-07-28 03:13:23 +000097 return TM.getTargetLowering()->getObjFileLowering();
98}
99
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000100/// getCurrentSection() - Return the current section we are emitting to.
101const MCSection *AsmPrinter::getCurrentSection() const {
102 return OutStreamer.getCurrentSection();
103}
104
105
Gordon Henriksence224772008-01-07 01:30:38 +0000106void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +0000107 AU.setPreservesAll();
Gordon Henriksence224772008-01-07 01:30:38 +0000108 MachineFunctionPass::getAnalysisUsage(AU);
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000109 AU.addRequired<GCModuleInfo>();
David Greenefe37ab32009-08-18 19:22:55 +0000110 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000111 AU.addRequired<MachineLoopInfo>();
Gordon Henriksence224772008-01-07 01:30:38 +0000112}
113
Chris Lattnera80ba712004-08-16 23:15:22 +0000114bool AsmPrinter::doInitialization(Module &M) {
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000115 // Initialize TargetLoweringObjectFile.
116 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
117 .Initialize(OutContext, TM);
118
Chris Lattnerc0dba722010-01-17 18:22:35 +0000119 Mang = new Mangler(*MAI);
Chris Lattner2c1b1592006-01-23 23:47:53 +0000120
Bob Wilson812209a2009-09-30 22:06:26 +0000121 // Allow the target to emit any magic that it wants at the start of the file.
122 EmitStartOfAsmFile(M);
Rafael Espindola952b8392008-12-03 11:01:37 +0000123
Chris Lattnera6594fc2010-01-25 18:58:59 +0000124 // Very minimal debug info. It is ignored if we emit actual debug info. If we
125 // don't, this at least helps the user find where a global came from.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000126 if (MAI->hasSingleParameterDotFile()) {
Chris Lattnera6594fc2010-01-25 18:58:59 +0000127 // .file "foo.c"
128 OutStreamer.EmitFileDirective(M.getModuleIdentifier());
Rafael Espindola952b8392008-12-03 11:01:37 +0000129 }
130
Bob Wilson812209a2009-09-30 22:06:26 +0000131 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
132 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000133 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
134 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000135 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000136
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000137 if (!M.getModuleInlineAsm().empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000138 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000139 << M.getModuleInlineAsm()
Chris Lattner33adcfb2009-08-22 21:43:10 +0000140 << '\n' << MAI->getCommentString()
Jim Laskey563321a2006-09-06 18:34:40 +0000141 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000142
Chris Lattnerb55e0682009-09-24 05:44:53 +0000143 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
144 if (MMI)
145 MMI->AnalyzeModule(M);
146 DW = getAnalysisIfAvailable<DwarfWriter>();
Sanjiv Gupta9a501cf2009-11-14 07:22:25 +0000147 if (DW)
Chris Lattnerb55e0682009-09-24 05:44:53 +0000148 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel14a55d92009-06-19 21:54:26 +0000149
Chris Lattnera80ba712004-08-16 23:15:22 +0000150 return false;
151}
152
Chris Lattner48d64ba2010-01-19 04:39:15 +0000153/// EmitGlobalVariable - Emit the specified global variable to the .s file.
154void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
155 if (!GV->hasInitializer()) // External globals require no code.
156 return;
157
158 // Check to see if this is a special global used by LLVM, if so, emit it.
159 if (EmitSpecialLLVMGlobal(GV))
160 return;
Chris Lattner74bfe212010-01-19 05:38:33 +0000161
162 MCSymbol *GVSym = GetGlobalValueSymbol(GV);
163 printVisibility(GVSym, GV->getVisibility());
164
Chris Lattnera800f7c2010-01-25 18:33:40 +0000165 if (MAI->hasDotTypeDotSizeDirective())
166 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
Chris Lattner48d64ba2010-01-19 04:39:15 +0000167
Chris Lattner74bfe212010-01-19 05:38:33 +0000168 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
169
170 const TargetData *TD = TM.getTargetData();
171 unsigned Size = TD->getTypeAllocSize(GV->getType()->getElementType());
172 unsigned AlignLog = TD->getPreferredAlignmentLog(GV);
173
Chris Lattner9744d612010-01-19 05:51:42 +0000174 // Handle common and BSS local symbols (.lcomm).
175 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000176 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
177
Chris Lattner74bfe212010-01-19 05:38:33 +0000178 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000179 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
180 /*PrintType=*/false, GV->getParent());
181 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000182 }
Chris Lattner814819f2010-01-19 06:25:51 +0000183
184 // Handle common symbols.
Chris Lattner9744d612010-01-19 05:51:42 +0000185 if (GVKind.isCommon()) {
186 // .comm _foo, 42, 4
Chris Lattner4ed54382010-01-19 06:01:04 +0000187 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner814819f2010-01-19 06:25:51 +0000188 return;
Chris Lattner9744d612010-01-19 05:51:42 +0000189 }
Chris Lattner814819f2010-01-19 06:25:51 +0000190
191 // Handle local BSS symbols.
192 if (MAI->hasMachoZeroFillDirective()) {
193 const MCSection *TheSection =
194 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
195 // .zerofill __DATA, __bss, _foo, 400, 5
196 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
197 return;
198 }
199
Chris Lattner9eb158d2010-01-23 07:47:02 +0000200 if (MAI->hasLCOMMDirective()) {
Chris Lattner814819f2010-01-19 06:25:51 +0000201 // .lcomm _foo, 42
Chris Lattner9eb158d2010-01-23 07:47:02 +0000202 OutStreamer.EmitLocalCommonSymbol(GVSym, Size);
Chris Lattner814819f2010-01-19 06:25:51 +0000203 return;
204 }
205
206 // .local _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000207 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
Chris Lattner814819f2010-01-19 06:25:51 +0000208 // .comm _foo, 42, 4
209 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner74bfe212010-01-19 05:38:33 +0000210 return;
211 }
212
213 const MCSection *TheSection =
214 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
215
216 // Handle the zerofill directive on darwin, which is a special form of BSS
217 // emission.
218 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
219 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000220 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000221 // .zerofill __DATA, __common, _foo, 400, 5
222 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
223 return;
224 }
225
226 OutStreamer.SwitchSection(TheSection);
227
228 // TODO: Factor into an 'emit linkage' thing that is shared with function
229 // bodies.
230 switch (GV->getLinkage()) {
231 case GlobalValue::CommonLinkage:
232 case GlobalValue::LinkOnceAnyLinkage:
233 case GlobalValue::LinkOnceODRLinkage:
234 case GlobalValue::WeakAnyLinkage:
235 case GlobalValue::WeakODRLinkage:
236 case GlobalValue::LinkerPrivateLinkage:
Chris Lattner4c8c6682010-01-19 06:41:24 +0000237 if (MAI->getWeakDefDirective() != 0) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000238 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000239 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000240 // .weak_definition _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000241 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
Chris Lattner74bfe212010-01-19 05:38:33 +0000242 } else if (const char *LinkOnce = MAI->getLinkOnceDirective()) {
243 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000244 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000245 // FIXME: linkonce should be a section attribute, handled by COFF Section
246 // assignment.
247 // http://sourceware.org/binutils/docs-2.20/as/Linkonce.html#Linkonce
Chris Lattner74bfe212010-01-19 05:38:33 +0000248 // .linkonce same_size
249 O << LinkOnce;
Chris Lattner4c8c6682010-01-19 06:41:24 +0000250 } else {
251 // .weak _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000252 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
Chris Lattner4c8c6682010-01-19 06:41:24 +0000253 }
Chris Lattner74bfe212010-01-19 05:38:33 +0000254 break;
255 case GlobalValue::DLLExportLinkage:
256 case GlobalValue::AppendingLinkage:
257 // FIXME: appending linkage variables should go into a section of
258 // their name or something. For now, just emit them as external.
259 case GlobalValue::ExternalLinkage:
260 // If external or appending, declare as a global symbol.
261 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000262 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000263 break;
264 case GlobalValue::PrivateLinkage:
265 case GlobalValue::InternalLinkage:
266 break;
267 default:
268 llvm_unreachable("Unknown linkage type!");
269 }
270
271 EmitAlignment(AlignLog, GV);
Chris Lattner74bfe212010-01-19 05:38:33 +0000272 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000273 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
274 /*PrintType=*/false, GV->getParent());
275 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000276 }
Chris Lattner4c8c6682010-01-19 06:41:24 +0000277 OutStreamer.EmitLabel(GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000278
279 EmitGlobalConstant(GV->getInitializer());
280
281 if (MAI->hasDotTypeDotSizeDirective())
Chris Lattner1947f242010-01-25 07:53:05 +0000282 // .size foo, 42
Chris Lattner99328ad2010-01-25 07:52:13 +0000283 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000284
285 OutStreamer.AddBlankLine();
Chris Lattner48d64ba2010-01-19 04:39:15 +0000286}
287
288
Chris Lattnera80ba712004-08-16 23:15:22 +0000289bool AsmPrinter::doFinalization(Module &M) {
Chris Lattner40bbebd2009-07-21 18:38:57 +0000290 // Emit global variables.
291 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
292 I != E; ++I)
Chris Lattner48d64ba2010-01-19 04:39:15 +0000293 EmitGlobalVariable(I);
Chris Lattner40bbebd2009-07-21 18:38:57 +0000294
Chris Lattner1f522fe2009-06-24 18:54:37 +0000295 // Emit final debug information.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000296 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattner1f522fe2009-06-24 18:54:37 +0000297 DW->EndModule();
298
Chris Lattner0a7befa2009-06-24 18:52:01 +0000299 // If the target wants to know about weak references, print them all.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000300 if (MAI->getWeakRefDirective()) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000301 // FIXME: This is not lazy, it would be nice to only print weak references
302 // to stuff that is actually used. Note that doing so would require targets
303 // to notice uses in operands (due to constant exprs etc). This should
304 // happen with the MC stuff eventually.
Rafael Espindola15404d02006-12-18 03:37:18 +0000305
Chris Lattner0a7befa2009-06-24 18:52:01 +0000306 // Print out module-level global variables here.
307 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
308 I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000309 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000310 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000311 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000312 }
313
Chris Lattnerc6fdced2009-08-03 23:10:34 +0000314 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000315 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000316 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000317 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000318 }
Rafael Espindola15404d02006-12-18 03:37:18 +0000319 }
320
Chris Lattnercee63322010-01-26 20:40:54 +0000321 if (MAI->hasSetDirective()) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000322 OutStreamer.AddBlankLine();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000323 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattner0a7befa2009-06-24 18:52:01 +0000324 I != E; ++I) {
Chris Lattner5c40e692010-01-16 01:17:26 +0000325 MCSymbol *Name = GetGlobalValueSymbol(I);
Anton Korobeynikov325be7c2007-09-06 17:21:48 +0000326
327 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattner5c40e692010-01-16 01:17:26 +0000328 MCSymbol *Target = GetGlobalValueSymbol(GV);
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000329
Chris Lattner10b318b2010-01-17 21:43:43 +0000330 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000331 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
Chris Lattner10b318b2010-01-17 21:43:43 +0000332 else if (I->hasWeakLinkage())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000333 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
Chris Lattner10b318b2010-01-17 21:43:43 +0000334 else
Chris Lattner10595492010-01-16 01:37:14 +0000335 assert(I->hasLocalLinkage() && "Invalid alias linkage");
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000336
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000337 printVisibility(Name, I->getVisibility());
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000338
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000339 // Emit the directives as assignments aka .set:
340 OutStreamer.EmitAssignment(Name,
341 MCSymbolRefExpr::Create(Target, OutContext));
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000342 }
343 }
344
Duncan Sands1465d612009-01-28 13:14:17 +0000345 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000346 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
347 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
348 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000349 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000350
Dan Gohmana779a982008-05-05 00:28:39 +0000351 // If we don't have any trampolines, then we don't require stack memory
352 // to be executable. Some targets have a directive to declare this.
Chris Lattner0a7befa2009-06-24 18:52:01 +0000353 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana779a982008-05-05 00:28:39 +0000354 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattnerf9f93e42010-01-23 07:21:06 +0000355 if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
356 OutStreamer.SwitchSection(S);
Chris Lattnerbd23d5f2009-09-18 20:17:03 +0000357
358 // Allow the target to emit any magic that it wants at the end of the file,
359 // after everything else has gone out.
360 EmitEndOfAsmFile(M);
361
Chris Lattnera80ba712004-08-16 23:15:22 +0000362 delete Mang; Mang = 0;
Chris Lattner0de1fc42009-06-24 19:09:55 +0000363 DW = 0; MMI = 0;
Chris Lattner2b2954f2009-07-27 21:28:04 +0000364
365 OutStreamer.Finish();
Chris Lattnera80ba712004-08-16 23:15:22 +0000366 return false;
367}
368
Chris Lattner25045bd2005-11-21 07:51:36 +0000369void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnerb84822f2010-01-26 04:35:26 +0000370 this->MF = &MF;
Chris Lattner412c3a52010-01-16 01:24:10 +0000371 // Get the function symbol.
Chris Lattnerd1947ed2010-01-15 23:55:16 +0000372 CurrentFnSym = GetGlobalValueSymbol(MF.getFunction());
David Greeneb71d1b22009-08-10 16:38:07 +0000373
Chris Lattner25d812b2009-09-16 00:35:39 +0000374 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000375 LI = &getAnalysis<MachineLoopInfo>();
Chris Lattnera80ba712004-08-16 23:15:22 +0000376}
377
Evan Cheng1606e8e2009-03-13 07:51:59 +0000378namespace {
379 // SectionCPs - Keep track the alignment, constpool entries per Section.
380 struct SectionCPs {
Chris Lattnera87dea42009-07-31 18:48:30 +0000381 const MCSection *S;
Evan Cheng1606e8e2009-03-13 07:51:59 +0000382 unsigned Alignment;
383 SmallVector<unsigned, 4> CPEs;
Douglas Gregorcabdd742009-12-19 07:05:23 +0000384 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
Evan Cheng1606e8e2009-03-13 07:51:59 +0000385 };
386}
387
Chris Lattner3b4fd322005-11-21 08:25:09 +0000388/// EmitConstantPool - Print to the current output stream assembly
389/// representations of the constants in the constant pool MCP. This is
390/// used to print out constants which have been "spilled to memory" by
391/// the code generator.
392///
393void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000394 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000395 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000396
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000397 // Calculate sections for constant pool entries. We collect entries to go into
398 // the same section together to reduce amount of section switch statements.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000399 SmallVector<SectionCPs, 4> CPSections;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000400 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner298414e2009-07-22 00:28:43 +0000401 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng1606e8e2009-03-13 07:51:59 +0000402 unsigned Align = CPE.getAlignment();
Chris Lattner5c2f7892009-07-26 06:26:55 +0000403
404 SectionKind Kind;
405 switch (CPE.getRelocationInfo()) {
406 default: llvm_unreachable("Unknown section kind");
Chris Lattner27981192009-08-01 23:57:16 +0000407 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000408 case 1:
Chris Lattner27981192009-08-01 23:57:16 +0000409 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattner4c509222009-07-26 07:00:12 +0000410 break;
Chris Lattner5c2f7892009-07-26 06:26:55 +0000411 case 0:
Chris Lattner4c509222009-07-26 07:00:12 +0000412 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000413 case 4: Kind = SectionKind::getMergeableConst4(); break;
414 case 8: Kind = SectionKind::getMergeableConst8(); break;
415 case 16: Kind = SectionKind::getMergeableConst16();break;
416 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000417 }
Chris Lattner5c2f7892009-07-26 06:26:55 +0000418 }
419
Chris Lattner83d77fa2009-08-01 23:46:12 +0000420 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner298414e2009-07-22 00:28:43 +0000421
Evan Cheng1606e8e2009-03-13 07:51:59 +0000422 // The number of sections are small, just do a linear search from the
423 // last section to the first.
424 bool Found = false;
425 unsigned SecIdx = CPSections.size();
426 while (SecIdx != 0) {
427 if (CPSections[--SecIdx].S == S) {
428 Found = true;
429 break;
430 }
431 }
432 if (!Found) {
433 SecIdx = CPSections.size();
434 CPSections.push_back(SectionCPs(S, Align));
435 }
436
437 if (Align > CPSections[SecIdx].Alignment)
438 CPSections[SecIdx].Alignment = Align;
439 CPSections[SecIdx].CPEs.push_back(i);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000440 }
441
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000442 // Now print stuff into the calculated sections.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000443 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000444 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000445 EmitAlignment(Log2_32(CPSections[i].Alignment));
Evan Cheng2d2cec12006-06-29 00:26:09 +0000446
Evan Cheng1606e8e2009-03-13 07:51:59 +0000447 unsigned Offset = 0;
448 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
449 unsigned CPI = CPSections[i].CPEs[j];
450 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000451
Chris Lattner3029f922006-02-09 04:46:04 +0000452 // Emit inter-object padding for alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000453 unsigned AlignMask = CPE.getAlignment() - 1;
454 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
Chris Lattneraaec2052010-01-19 19:46:13 +0000455 OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000456
457 const Type *Ty = CPE.getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000458 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000459
Chris Lattner39248682010-01-23 05:19:23 +0000460 // Emit the label with a comment on it.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000461 if (VerboseAsm) {
Chris Lattner39248682010-01-23 05:19:23 +0000462 OutStreamer.GetCommentOS() << "constant pool ";
463 WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(),
464 MF->getFunction()->getParent());
465 OutStreamer.GetCommentOS() << '\n';
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000466 }
Chris Lattner39248682010-01-23 05:19:23 +0000467 OutStreamer.EmitLabel(GetCPISymbol(CPI));
468
Evan Cheng1606e8e2009-03-13 07:51:59 +0000469 if (CPE.isMachineConstantPoolEntry())
470 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
471 else
472 EmitGlobalConstant(CPE.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000473 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000474 }
475}
476
Nate Begeman37efe672006-04-22 18:53:45 +0000477/// EmitJumpTableInfo - Print assembly representations of the jump tables used
478/// by the current function to the current output stream.
479///
Chris Lattner44e87252010-01-25 22:41:33 +0000480void AsmPrinter::EmitJumpTableInfo(MachineFunction &MF) {
481 MachineJumpTableInfo *MJTI = MF.getJumpTableInfo();
482 if (MJTI == 0) return;
Nate Begeman37efe672006-04-22 18:53:45 +0000483 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
484 if (JT.empty()) return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000485
Nate Begeman2f1ae882006-07-27 01:13:04 +0000486 // Pick the directive to use to print the jump table entries, and switch to
487 // the appropriate section.
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000488 const Function *F = MF.getFunction();
Evan Chengb13bafe2009-06-18 20:37:15 +0000489 bool JTInDiffSection = false;
Chris Lattnerf1214cb2010-01-26 06:53:37 +0000490 if (// In PIC mode, we need to emit the jump table to the same section as the
491 // function body itself, otherwise the label differences won't make sense.
492 // FIXME: Need a better predicate for this: what about custom entries?
493 MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 ||
494 // We should also do if the section name is NULL or function is declared
495 // in discardable section
496 // FIXME: this isn't the right predicate, should be based on the MCSection
497 // for the function.
498 F->isWeakForLinker()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000499 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang,
500 TM));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000501 } else {
Chris Lattner83d77fa2009-08-01 23:46:12 +0000502 // Otherwise, drop it in the readonly section.
503 const MCSection *ReadOnlySection =
Chris Lattner27981192009-08-01 23:57:16 +0000504 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000505 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengb13bafe2009-06-18 20:37:15 +0000506 JTInDiffSection = true;
Nate Begeman2f1ae882006-07-27 01:13:04 +0000507 }
Chris Lattner071c62f2010-01-25 23:26:13 +0000508
Chris Lattner071c62f2010-01-25 23:26:13 +0000509 EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getTargetData())));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000510
Chris Lattner3b131d72010-01-26 06:42:44 +0000511 for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
512 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000513
514 // If this jump table was deleted, ignore it.
515 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000516
Chris Lattnere35df922010-01-26 05:15:20 +0000517 // For the EK_LabelDifference32 entry, if the target supports .set, emit a
518 // .set directive for each unique entry. This reduces the number of
519 // relocations the assembler will generate for the jump table.
520 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
Chris Lattnercee63322010-01-26 20:40:54 +0000521 MAI->hasSetDirective()) {
Chris Lattner3b131d72010-01-26 06:42:44 +0000522 SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
523 const TargetLowering *TLI = TM.getTargetLowering();
524 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(&MF, JTI,
525 OutContext);
526 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
527 const MachineBasicBlock *MBB = JTBBs[ii];
528 if (!EmittedSets.insert(MBB)) continue;
529
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000530 // .set LJTSet, LBB32-base
531 const MCExpr *LHS =
532 MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
533 OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
534 MCBinaryExpr::CreateSub(LHS, Base, OutContext));
Chris Lattner3b131d72010-01-26 06:42:44 +0000535 }
536 }
Nate Begeman52a51e382006-08-12 21:29:52 +0000537
Chris Lattner7c301912009-09-13 19:02:16 +0000538 // On some targets (e.g. Darwin) we want to emit two consequtive labels
Chris Lattner393a8ee2007-01-18 01:12:56 +0000539 // before each jump table. The first label is never referenced, but tells
540 // the assembler and linker the extents of the jump table object. The
541 // second label is actually referenced by the code.
Chris Lattner39248682010-01-23 05:19:23 +0000542 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
Chris Lattnerbeeb93e2010-01-26 05:58:28 +0000543 // FIXME: This doesn't have to have any specific name, just any randomly
544 // named and numbered 'l' label would work. Simplify GetJTISymbol.
Chris Lattner3b131d72010-01-26 06:42:44 +0000545 OutStreamer.EmitLabel(GetJTISymbol(JTI, true));
Chris Lattner39248682010-01-23 05:19:23 +0000546
Chris Lattner3b131d72010-01-26 06:42:44 +0000547 OutStreamer.EmitLabel(GetJTISymbol(JTI));
Chris Lattner39248682010-01-23 05:19:23 +0000548
Chris Lattner6bf1def2010-01-26 05:10:10 +0000549 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Chris Lattner3b131d72010-01-26 06:42:44 +0000550 EmitJumpTableEntry(MJTI, JTBBs[ii], JTI);
Nate Begeman37efe672006-04-22 18:53:45 +0000551 }
552}
553
Chris Lattner6bf1def2010-01-26 05:10:10 +0000554/// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
555/// current stream.
556void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
557 const MachineBasicBlock *MBB,
558 unsigned UID) const {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000559 const MCExpr *Value = 0;
560 switch (MJTI->getEntryKind()) {
Chris Lattner85fe0782010-01-26 04:05:28 +0000561 case MachineJumpTableInfo::EK_Custom32:
Chris Lattner6bf1def2010-01-26 05:10:10 +0000562 Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
Chris Lattner85fe0782010-01-26 04:05:28 +0000563 OutContext);
564 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000565 case MachineJumpTableInfo::EK_BlockAddress:
566 // EK_BlockAddress - Each entry is a plain address of block, e.g.:
567 // .word LBB123
Chris Lattnerf71cb012010-01-26 04:55:51 +0000568 Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000569 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000570 case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
571 // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
572 // with a relocation as gp-relative, e.g.:
573 // .gprel32 LBB123
Chris Lattnerf71cb012010-01-26 04:55:51 +0000574 MCSymbol *MBBSym = MBB->getSymbol(OutContext);
Chris Lattner718fb592010-01-25 21:28:50 +0000575 OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
Chris Lattner78f485a2010-01-25 21:10:10 +0000576 return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000577 }
Chris Lattner85fe0782010-01-26 04:05:28 +0000578
Chris Lattnerff537ce2010-01-26 03:43:22 +0000579 case MachineJumpTableInfo::EK_LabelDifference32: {
580 // EK_LabelDifference32 - Each entry is the address of the block minus
581 // the address of the jump table. This is used for PIC jump tables where
582 // gprel32 is not supported. e.g.:
583 // .word LBB123 - LJTI1_2
584 // If the .set directive is supported, this is emitted as:
585 // .set L4_5_set_123, LBB123 - LJTI1_2
586 // .word L4_5_set_123
587
588 // If we have emitted set directives for the jump table entries, print
589 // them rather than the entries themselves. If we're emitting PIC, then
590 // emit the table entries as differences between two text section labels.
Chris Lattnercee63322010-01-26 20:40:54 +0000591 if (MAI->hasSetDirective()) {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000592 // If we used .set, reference the .set's symbol.
Chris Lattner6bf1def2010-01-26 05:10:10 +0000593 Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
Chris Lattnerff537ce2010-01-26 03:43:22 +0000594 OutContext);
595 break;
596 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000597 // Otherwise, use the difference as the jump table entry.
Chris Lattnerf71cb012010-01-26 04:55:51 +0000598 Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
Chris Lattner6bf1def2010-01-26 05:10:10 +0000599 const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000600 Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
601 break;
602 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000603 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000604
Chris Lattnerff537ce2010-01-26 03:43:22 +0000605 assert(Value && "Unknown entry kind!");
606
Chris Lattner071c62f2010-01-25 23:26:13 +0000607 unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData());
Chris Lattnerff537ce2010-01-26 03:43:22 +0000608 OutStreamer.EmitValue(Value, EntrySize, /*addrspace*/0);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000609}
610
611
Chris Lattnered138932005-12-13 06:32:10 +0000612/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
613/// special global used by LLVM. If so, emit it and return true, otherwise
614/// do nothing and return false.
615bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000616 if (GV->getName() == "llvm.used") {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000617 if (MAI->hasNoDeadStrip()) // No need to emit this at all.
Andrew Lenharthb753a9b2007-08-22 19:33:11 +0000618 EmitLLVMUsedList(GV->getInitializer());
619 return true;
620 }
621
Chris Lattner401e10c2009-07-20 06:14:25 +0000622 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000623 if (GV->getSection() == "llvm.metadata" ||
624 GV->hasAvailableExternallyLinkage())
625 return true;
Jim Laskey78098112006-03-07 22:00:35 +0000626
627 if (!GV->hasAppendingLinkage()) return false;
628
629 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000630
Evan Cheng916d07c2007-06-04 20:39:18 +0000631 const TargetData *TD = TM.getTargetData();
632 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattnerf231c072009-03-09 05:52:15 +0000633 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000634 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000635 EmitAlignment(Align, 0);
636 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000637
638 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000639 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
640 StringRef Sym(".constructors_used");
641 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000642 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000643 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000644 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000645 }
646
Chris Lattnerf231c072009-03-09 05:52:15 +0000647 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000648 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000649 EmitAlignment(Align, 0);
650 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000651
652 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000653 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
654 StringRef Sym(".destructors_used");
655 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000656 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000657 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000658 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000659 }
660
661 return false;
662}
663
Chris Lattner33adcfb2009-08-22 21:43:10 +0000664/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesend2e51af2008-09-09 22:29:13 +0000665/// global in the specified llvm.used list for which emitUsedDirectiveFor
666/// is true, as being used with this directive.
Chris Lattnercb05af82006-09-26 03:38:18 +0000667void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Dan Gohmana119de82009-06-14 23:30:43 +0000668 // Should be an array of 'i8*'.
Chris Lattnercb05af82006-09-26 03:38:18 +0000669 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
670 if (InitList == 0) return;
671
672 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner16fe9902009-07-17 22:00:23 +0000673 const GlobalValue *GV =
674 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000675 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
676 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(GV),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000677 MCSA_NoDeadStrip);
Chris Lattnercb05af82006-09-26 03:38:18 +0000678 }
679}
680
Chris Lattnered138932005-12-13 06:32:10 +0000681/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
682/// function pointers, ignoring the init priority.
683void AsmPrinter::EmitXXStructorList(Constant *List) {
684 // Should be an array of '{ int, void ()* }' structs. The first value is the
685 // init priority, which we ignore.
686 if (!isa<ConstantArray>(List)) return;
687 ConstantArray *InitList = cast<ConstantArray>(List);
688 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
689 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
690 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000691
692 if (CS->getOperand(1)->isNullValue())
693 return; // Found a null terminator, exit printing.
694 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000695 EmitGlobalConstant(CS->getOperand(1));
696 }
697}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000698
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000699//===--------------------------------------------------------------------===//
700// Emission and print routines
701//
702
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000703/// EmitInt8 - Emit a byte directive and value.
704///
705void AsmPrinter::EmitInt8(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000706 OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000707}
708
709/// EmitInt16 - Emit a short directive and value.
710///
711void AsmPrinter::EmitInt16(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000712 OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000713}
714
715/// EmitInt32 - Emit a long directive and value.
716///
717void AsmPrinter::EmitInt32(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000718 OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000719}
720
721/// EmitInt64 - Emit a long long directive and value.
722///
723void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000724 OutStreamer.EmitIntValue(Value, 8, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000725}
726
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000727//===----------------------------------------------------------------------===//
728
Chris Lattner3a420532007-05-31 18:57:45 +0000729// EmitAlignment - Emit an alignment directive to the specified power of
730// two boundary. For example, if you pass in 3 here, you will get an 8
731// byte alignment. If a global value is specified, and if that global has
732// an explicit alignment requested, it will unconditionally override the
733// alignment request. However, if ForcedAlignBits is specified, this value
734// has final say: the ultimate alignment will be the max of ForcedAlignBits
735// and the alignment computed with NumBits and the global.
736//
737// The algorithm is:
738// Align = NumBits;
739// if (GV && GV->hasalignment) Align = GV->getalignment();
740// Align = std::max(Align, ForcedAlignBits);
741//
742void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng05548eb2008-02-29 19:36:59 +0000743 unsigned ForcedAlignBits,
744 bool UseFillExpr) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000745 if (GV && GV->getAlignment())
Chris Lattner3a420532007-05-31 18:57:45 +0000746 NumBits = Log2_32(GV->getAlignment());
747 NumBits = std::max(NumBits, ForcedAlignBits);
748
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000749 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner663c2d22009-08-19 06:12:02 +0000750
751 unsigned FillValue = 0;
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000752 if (getCurrentSection()->getKind().isText())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000753 FillValue = MAI->getTextAlignFillValue();
Chris Lattner663c2d22009-08-19 06:12:02 +0000754
755 OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
Chris Lattnerbfddc202004-08-17 19:14:29 +0000756}
David Greenea5bb59f2009-08-05 21:00:52 +0000757
Chris Lattner52492ac2010-01-23 06:17:14 +0000758/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
759///
760static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
761 MCContext &Ctx = AP.OutContext;
762
763 if (CV->isNullValue() || isa<UndefValue>(CV))
764 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000765
Chris Lattner52492ac2010-01-23 06:17:14 +0000766 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
767 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000768
Chris Lattner52492ac2010-01-23 06:17:14 +0000769 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
770 return MCSymbolRefExpr::Create(AP.GetGlobalValueSymbol(GV), Ctx);
771 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
772 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000773
774 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
775 if (CE == 0) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000776 llvm_unreachable("Unknown constant value to lower!");
777 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000778 }
779
780 switch (CE->getOpcode()) {
781 case Instruction::ZExt:
782 case Instruction::SExt:
783 case Instruction::FPTrunc:
784 case Instruction::FPExt:
785 case Instruction::UIToFP:
786 case Instruction::SIToFP:
787 case Instruction::FPToUI:
788 case Instruction::FPToSI:
Chris Lattner52492ac2010-01-23 06:17:14 +0000789 default: llvm_unreachable("FIXME: Don't support this constant cast expr");
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000790 case Instruction::GetElementPtr: {
Chris Lattner52492ac2010-01-23 06:17:14 +0000791 const TargetData &TD = *AP.TM.getTargetData();
792 // Generate a symbolic expression for the byte address
793 const Constant *PtrVal = CE->getOperand(0);
794 SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
795 int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0],
796 IdxVec.size());
797
798 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000799 if (Offset == 0)
Chris Lattner52492ac2010-01-23 06:17:14 +0000800 return Base;
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000801
802 // Truncate/sext the offset to the pointer size.
Chris Lattner52492ac2010-01-23 06:17:14 +0000803 if (TD.getPointerSizeInBits() != 64) {
804 int SExtAmount = 64-TD.getPointerSizeInBits();
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000805 Offset = (Offset << SExtAmount) >> SExtAmount;
806 }
807
Chris Lattner52492ac2010-01-23 06:17:14 +0000808 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
809 Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000810 }
811
812 case Instruction::Trunc:
813 // We emit the value and depend on the assembler to truncate the generated
814 // expression properly. This is important for differences between
815 // blockaddress labels. Since the two labels are in the same function, it
816 // is reasonable to treat their delta as a 32-bit value.
Chris Lattner52492ac2010-01-23 06:17:14 +0000817 // FALL THROUGH.
818 case Instruction::BitCast:
819 return LowerConstant(CE->getOperand(0), AP);
820
821 case Instruction::IntToPtr: {
822 const TargetData &TD = *AP.TM.getTargetData();
823 // Handle casts to pointers by changing them into casts to the appropriate
824 // integer type. This promotes constant folding and simplifies this code.
825 Constant *Op = CE->getOperand(0);
826 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
827 false/*ZExt*/);
828 return LowerConstant(Op, AP);
829 }
830
831 case Instruction::PtrToInt: {
832 const TargetData &TD = *AP.TM.getTargetData();
833 // Support only foldable casts to/from pointers that can be eliminated by
834 // changing the pointer to the appropriately sized integer type.
835 Constant *Op = CE->getOperand(0);
836 const Type *Ty = CE->getType();
837
838 const MCExpr *OpExpr = LowerConstant(Op, AP);
839
840 // We can emit the pointer value into this slot if the slot is an
841 // integer slot equal to the size of the pointer.
842 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
843 return OpExpr;
844
845 // Otherwise the pointer is smaller than the resultant integer, mask off
846 // the high bits so we are sure to get a proper truncation if the input is
847 // a constant expr.
848 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
849 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
850 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
851 }
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000852
853 case Instruction::Add:
854 case Instruction::Sub:
855 case Instruction::And:
856 case Instruction::Or:
Chris Lattner52492ac2010-01-23 06:17:14 +0000857 case Instruction::Xor: {
858 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
859 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000860 switch (CE->getOpcode()) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000861 default: llvm_unreachable("Unknown binary operator constant cast expr");
862 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
863 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
864 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
865 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
866 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000867 }
Chris Lattner52492ac2010-01-23 06:17:14 +0000868 }
Chris Lattnera80ba712004-08-16 23:15:22 +0000869 }
870}
Chris Lattner1b7e2352004-08-17 06:36:49 +0000871
Chris Lattner91093ec2010-01-19 19:10:44 +0000872static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
873 AsmPrinter &AP) {
Chris Lattner05f84532010-01-23 04:54:10 +0000874 if (AddrSpace != 0 || !CA->isString()) {
875 // Not a string. Print the values in successive locations
Chris Lattner91093ec2010-01-19 19:10:44 +0000876 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
877 AP.EmitGlobalConstant(CA->getOperand(i), AddrSpace);
Chris Lattner05f84532010-01-23 04:54:10 +0000878 return;
Dan Gohman00d448a2008-12-22 21:14:27 +0000879 }
Chris Lattner05f84532010-01-23 04:54:10 +0000880
881 // Otherwise, it can be emitted as .ascii.
882 SmallVector<char, 128> TmpVec;
883 TmpVec.reserve(CA->getNumOperands());
884 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
885 TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
886
887 AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000888}
889
Chris Lattner91093ec2010-01-19 19:10:44 +0000890static void EmitGlobalConstantVector(const ConstantVector *CV,
891 unsigned AddrSpace, AsmPrinter &AP) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000892 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
Chris Lattner91093ec2010-01-19 19:10:44 +0000893 AP.EmitGlobalConstant(CV->getOperand(i), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000894}
895
Chris Lattner91093ec2010-01-19 19:10:44 +0000896static void EmitGlobalConstantStruct(const ConstantStruct *CS,
897 unsigned AddrSpace, AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000898 // Print the fields in successive locations. Pad to align if needed!
Chris Lattner91093ec2010-01-19 19:10:44 +0000899 const TargetData *TD = AP.TM.getTargetData();
900 unsigned Size = TD->getTypeAllocSize(CS->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +0000901 const StructLayout *Layout = TD->getStructLayout(CS->getType());
Chris Lattner91093ec2010-01-19 19:10:44 +0000902 uint64_t SizeSoFar = 0;
903 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000904 const Constant *Field = CS->getOperand(i);
Dan Gohman00d448a2008-12-22 21:14:27 +0000905
906 // Check if padding is needed and insert one or more 0s.
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000907 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +0000908 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
909 - Layout->getElementOffset(i)) - FieldSize;
910 SizeSoFar += FieldSize + PadSize;
Dan Gohman00d448a2008-12-22 21:14:27 +0000911
912 // Now print the actual field value.
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000913 AP.EmitGlobalConstant(Field, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000914
915 // Insert padding - this may include padding to increase the size of the
916 // current field up to the ABI size (if the struct is not packed) as well
917 // as padding to ensure that the next field starts at the right offset.
Chris Lattner2dd245c2010-01-20 07:11:32 +0000918 AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000919 }
Chris Lattner2dd245c2010-01-20 07:11:32 +0000920 assert(SizeSoFar == Layout->getSizeInBytes() &&
Dan Gohman00d448a2008-12-22 21:14:27 +0000921 "Layout of constant struct may be incorrect!");
922}
923
Chris Lattner2dd245c2010-01-20 07:11:32 +0000924static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
925 AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000926 // FP Constants are printed as integer constants to avoid losing
Chris Lattner9ceff942010-01-20 06:53:37 +0000927 // precision.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000928 if (CFP->getType()->isDoubleTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000929 if (AP.VerboseAsm) {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000930 double Val = CFP->getValueAPF().convertToDouble();
931 AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
Chris Lattner09ce6742010-01-19 22:16:33 +0000932 }
933
Chris Lattner2dd245c2010-01-20 07:11:32 +0000934 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
935 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000936 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000937 }
938
939 if (CFP->getType()->isFloatTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000940 if (AP.VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000941 float Val = CFP->getValueAPF().convertToFloat();
942 AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
Dan Gohmana12e9d72009-08-12 18:32:22 +0000943 }
Chris Lattner2dd245c2010-01-20 07:11:32 +0000944 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
945 AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000946 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000947 }
948
949 if (CFP->getType()->isX86_FP80Ty()) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000950 // all long double variants are printed as hex
951 // api needed to prevent premature destruction
Chris Lattner09ce6742010-01-19 22:16:33 +0000952 APInt API = CFP->getValueAPF().bitcastToAPInt();
953 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +0000954 if (AP.VerboseAsm) {
Chris Lattner72b5ebc2010-01-19 22:11:05 +0000955 // Convert to double so we can print the approximate val as a comment.
956 APFloat DoubleVal = CFP->getValueAPF();
957 bool ignored;
958 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
959 &ignored);
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000960 AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
961 << DoubleVal.convertToDouble() << '\n';
Chris Lattner72b5ebc2010-01-19 22:11:05 +0000962 }
963
Chris Lattner2dd245c2010-01-20 07:11:32 +0000964 if (AP.TM.getTargetData()->isBigEndian()) {
965 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
966 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner72b5ebc2010-01-19 22:11:05 +0000967 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000968 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
969 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000970 }
Chris Lattner9ceff942010-01-20 06:53:37 +0000971
972 // Emit the tail padding for the long double.
Chris Lattner2dd245c2010-01-20 07:11:32 +0000973 const TargetData &TD = *AP.TM.getTargetData();
974 AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
975 TD.getTypeStoreSize(CFP->getType()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000976 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000977 }
978
Chris Lattner09ce6742010-01-19 22:16:33 +0000979 assert(CFP->getType()->isPPC_FP128Ty() &&
980 "Floating point constant type not handled");
981 // All long double variants are printed as hex api needed to prevent
982 // premature destruction.
983 APInt API = CFP->getValueAPF().bitcastToAPInt();
984 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +0000985 if (AP.TM.getTargetData()->isBigEndian()) {
986 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
987 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
Chris Lattner9ceff942010-01-20 06:53:37 +0000988 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +0000989 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
990 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner09ce6742010-01-19 22:16:33 +0000991 }
Dan Gohman00d448a2008-12-22 21:14:27 +0000992}
993
Chris Lattner2dd245c2010-01-20 07:11:32 +0000994static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
995 unsigned AddrSpace, AsmPrinter &AP) {
996 const TargetData *TD = AP.TM.getTargetData();
Dan Gohman00d448a2008-12-22 21:14:27 +0000997 unsigned BitWidth = CI->getBitWidth();
Chris Lattner38c2b0a2010-01-13 04:39:46 +0000998 assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
Dan Gohman00d448a2008-12-22 21:14:27 +0000999
1000 // We don't expect assemblers to support integer data directives
1001 // for more than 64 bits, so we emit the data in at most 64-bit
1002 // quantities at a time.
1003 const uint64_t *RawData = CI->getValue().getRawData();
1004 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001005 uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1006 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001007 }
1008}
1009
Chris Lattner25045bd2005-11-21 07:51:36 +00001010/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001011void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Chris Lattner043c4e52010-01-20 07:19:19 +00001012 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001013 uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
Chris Lattner6449abf2010-01-19 21:51:22 +00001014 return OutStreamer.EmitZeros(Size, AddrSpace);
Chris Lattner2dd245c2010-01-20 07:11:32 +00001015 }
1016
1017 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1018 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1019 switch (Size) {
1020 case 1:
1021 case 2:
1022 case 4:
1023 case 8:
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001024 if (VerboseAsm)
1025 OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001026 OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1027 return;
1028 default:
1029 EmitGlobalConstantLargeInt(CI, AddrSpace, *this);
1030 return;
1031 }
1032 }
Chris Lattner3cc3a002010-01-13 04:34:19 +00001033
Chris Lattner91093ec2010-01-19 19:10:44 +00001034 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1035 return EmitGlobalConstantArray(CVA, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001036
Chris Lattner91093ec2010-01-19 19:10:44 +00001037 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1038 return EmitGlobalConstantStruct(CVS, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001039
Chris Lattner91093ec2010-01-19 19:10:44 +00001040 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
Chris Lattner2dd245c2010-01-20 07:11:32 +00001041 return EmitGlobalConstantFP(CFP, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001042
Chris Lattner91093ec2010-01-19 19:10:44 +00001043 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1044 return EmitGlobalConstantVector(V, AddrSpace, *this);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001045
Chris Lattnerb0bedd62010-01-20 17:57:50 +00001046 if (isa<ConstantPointerNull>(CV)) {
1047 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1048 OutStreamer.EmitIntValue(0, Size, AddrSpace);
1049 return;
1050 }
1051
Chris Lattner52492ac2010-01-23 06:17:14 +00001052 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it
1053 // thread the streamer with EmitValue.
1054 OutStreamer.EmitValue(LowerConstant(CV, *this),
1055 TM.getTargetData()->getTypeAllocSize(CV->getType()),
1056 AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001057}
Chris Lattner0264d1a2006-01-27 02:10:10 +00001058
Chris Lattnerfad86b02008-08-17 07:19:36 +00001059void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001060 // Target doesn't support this yet!
Torok Edwinc23197a2009-07-14 16:55:14 +00001061 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Evan Chengd6594ae2006-09-12 21:00:35 +00001062}
1063
Chris Lattner3ce9b672006-09-26 23:59:50 +00001064/// PrintSpecial - Print information related to the specified machine instr
1065/// that is independent of the operand, and may be independent of the instr
1066/// itself. This can be useful for portably encoding the comment character
1067/// or other bits of target-specific knowledge into the asmstrings. The
1068/// syntax used is ${:comment}. Targets can override this to add support
1069/// for their own strange codes.
Chris Lattner3e0cc262009-03-10 05:37:13 +00001070void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001071 if (!strcmp(Code, "private")) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001072 O << MAI->getPrivateGlobalPrefix();
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001073 } else if (!strcmp(Code, "comment")) {
Evan Chengf1c0ae92009-03-24 00:17:40 +00001074 if (VerboseAsm)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001075 O << MAI->getCommentString();
Chris Lattner3ce9b672006-09-26 23:59:50 +00001076 } else if (!strcmp(Code, "uid")) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001077 // Comparing the address of MI isn't sufficient, because machineinstrs may
1078 // be allocated to the same address across functions.
1079 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1080
Owen Andersonbd58edf2009-06-24 22:28:12 +00001081 // If this is a new LastFn instruction, bump the counter.
1082 if (LastMI != MI || LastFn != ThisF) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001083 ++Counter;
1084 LastMI = MI;
Owen Andersonbd58edf2009-06-24 22:28:12 +00001085 LastFn = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001086 }
Chris Lattner3ce9b672006-09-26 23:59:50 +00001087 O << Counter;
1088 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001089 std::string msg;
1090 raw_string_ostream Msg(msg);
1091 Msg << "Unknown special formatter '" << Code
Bill Wendlinge8156192006-12-07 01:30:32 +00001092 << "' for machine instr: " << *MI;
Torok Edwin7d696d82009-07-11 13:10:19 +00001093 llvm_report_error(Msg.str());
Chris Lattner3ce9b672006-09-26 23:59:50 +00001094 }
1095}
1096
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001097/// processDebugLoc - Processes the debug information of each machine
1098/// instruction's DebugLoc.
Devang Patelaf0e2722009-10-06 02:19:11 +00001099void AsmPrinter::processDebugLoc(const MachineInstr *MI,
1100 bool BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001101 if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1102 || !DW->ShouldEmitDwarfDebug())
Chris Lattnerd2503292009-08-05 04:09:18 +00001103 return;
Devang Patelb0fdedb2009-09-30 23:12:50 +00001104 DebugLoc DL = MI->getDebugLoc();
Devang Patel53bb5c92009-11-10 23:06:00 +00001105 if (DL.isUnknown())
1106 return;
Devang Patel6b61f582010-01-16 06:09:35 +00001107 DILocation CurDLT = MF->getDILocation(DL);
1108 if (CurDLT.getScope().isNull())
Devang Patel53bb5c92009-11-10 23:06:00 +00001109 return;
1110
Chris Lattner043c4e52010-01-20 07:19:19 +00001111 if (!BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001112 // After printing instruction
1113 DW->EndScope(MI);
Chris Lattner043c4e52010-01-20 07:19:19 +00001114 } else if (CurDLT.getNode() != PrevDLT) {
1115 unsigned L = DW->RecordSourceLine(CurDLT.getLineNumber(),
1116 CurDLT.getColumnNumber(),
1117 CurDLT.getScope().getNode());
1118 printLabel(L);
1119 O << '\n';
1120 DW->BeginScope(MI, L);
1121 PrevDLT = CurDLT.getNode();
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001122 }
1123}
Chris Lattner3ce9b672006-09-26 23:59:50 +00001124
Devang Patel53bb5c92009-11-10 23:06:00 +00001125
Chris Lattner0264d1a2006-01-27 02:10:10 +00001126/// printInlineAsm - This method formats and prints the specified machine
1127/// instruction that is an inline asm.
1128void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001129 unsigned NumOperands = MI->getNumOperands();
1130
1131 // Count the number of register definitions.
1132 unsigned NumDefs = 0;
Dan Gohmand735b802008-10-03 15:45:36 +00001133 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Chris Lattner67942f52006-09-05 20:02:51 +00001134 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001135 assert(NumDefs != NumOperands-1 && "No asm string?");
1136
Dan Gohmand735b802008-10-03 15:45:36 +00001137 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +00001138
1139 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001140 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +00001141
Dan Gohman40c57862009-11-06 00:04:54 +00001142 O << '\t';
1143
Dale Johannesenba2a0b92008-01-29 02:21:21 +00001144 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1145 // These are useful to see where empty asm's wound up.
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001146 if (AsmStr[0] == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001147 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1148 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001149 return;
1150 }
1151
Chris Lattner33adcfb2009-08-22 21:43:10 +00001152 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001153
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001154 // The variant of the current asmprinter.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001155 int AsmPrinterVariant = MAI->getAssemblerDialect();
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001156
Chris Lattner66099132006-02-01 22:41:11 +00001157 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1158 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +00001159
Chris Lattner66099132006-02-01 22:41:11 +00001160 while (*LastEmitted) {
1161 switch (*LastEmitted) {
1162 default: {
1163 // Not a special case, emit the string section literally.
1164 const char *LiteralEnd = LastEmitted+1;
1165 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +00001166 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +00001167 ++LiteralEnd;
1168 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1169 O.write(LastEmitted, LiteralEnd-LastEmitted);
1170 LastEmitted = LiteralEnd;
1171 break;
1172 }
Chris Lattner1c059972006-05-05 21:47:05 +00001173 case '\n':
1174 ++LastEmitted; // Consume newline character.
Dan Gohmand19a53b2008-06-30 22:03:41 +00001175 O << '\n'; // Indent code with newline.
Chris Lattner1c059972006-05-05 21:47:05 +00001176 break;
Chris Lattner66099132006-02-01 22:41:11 +00001177 case '$': {
1178 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001179 bool Done = true;
1180
1181 // Handle escapes.
1182 switch (*LastEmitted) {
1183 default: Done = false; break;
1184 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +00001185 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1186 O << '$';
1187 ++LastEmitted; // Consume second '$' character.
1188 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001189 case '(': // $( -> same as GCC's { character.
1190 ++LastEmitted; // Consume '(' character.
1191 if (CurVariant != -1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001192 llvm_report_error("Nested variants found in inline asm string: '"
1193 + std::string(AsmStr) + "'");
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001194 }
1195 CurVariant = 0; // We're in the first variant now.
1196 break;
1197 case '|':
1198 ++LastEmitted; // consume '|' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001199 if (CurVariant == -1)
1200 O << '|'; // this is gcc's behavior for | outside a variant
1201 else
1202 ++CurVariant; // We're in the next variant.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001203 break;
1204 case ')': // $) -> same as GCC's } char.
1205 ++LastEmitted; // consume ')' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001206 if (CurVariant == -1)
1207 O << '}'; // this is gcc's behavior for } outside a variant
1208 else
1209 CurVariant = -1;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001210 break;
Chris Lattner66099132006-02-01 22:41:11 +00001211 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001212 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +00001213
1214 bool HasCurlyBraces = false;
1215 if (*LastEmitted == '{') { // ${variable}
1216 ++LastEmitted; // Consume '{' character.
1217 HasCurlyBraces = true;
1218 }
1219
Chris Lattner3e0cc262009-03-10 05:37:13 +00001220 // If we have ${:foo}, then this is not a real operand reference, it is a
1221 // "magic" string reference, just like in .td files. Arrange to call
1222 // PrintSpecial.
1223 if (HasCurlyBraces && *LastEmitted == ':') {
1224 ++LastEmitted;
1225 const char *StrStart = LastEmitted;
1226 const char *StrEnd = strchr(StrStart, '}');
1227 if (StrEnd == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001228 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1229 + std::string(AsmStr) + "'");
Chris Lattner3e0cc262009-03-10 05:37:13 +00001230 }
1231
1232 std::string Val(StrStart, StrEnd);
1233 PrintSpecial(MI, Val.c_str());
1234 LastEmitted = StrEnd+1;
1235 break;
1236 }
1237
Chris Lattner66099132006-02-01 22:41:11 +00001238 const char *IDStart = LastEmitted;
1239 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +00001240 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +00001241 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1242 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001243 llvm_report_error("Bad $ operand number in inline asm string: '"
1244 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001245 }
1246 LastEmitted = IDEnd;
1247
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001248 char Modifier[2] = { 0, 0 };
1249
Chris Lattner66099132006-02-01 22:41:11 +00001250 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001251 // If we have curly braces, check for a modifier character. This
1252 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1253 if (*LastEmitted == ':') {
1254 ++LastEmitted; // Consume ':' character.
1255 if (*LastEmitted == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001256 llvm_report_error("Bad ${:} expression in inline asm string: '"
1257 + std::string(AsmStr) + "'");
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001258 }
1259
1260 Modifier[0] = *LastEmitted;
1261 ++LastEmitted; // Consume modifier character.
1262 }
1263
Chris Lattner66099132006-02-01 22:41:11 +00001264 if (*LastEmitted != '}') {
Torok Edwin7d696d82009-07-11 13:10:19 +00001265 llvm_report_error("Bad ${} expression in inline asm string: '"
1266 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001267 }
1268 ++LastEmitted; // Consume '}' character.
1269 }
1270
1271 if ((unsigned)Val >= NumOperands-1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001272 llvm_report_error("Invalid $ operand number in inline asm string: '"
1273 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001274 }
1275
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001276 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001277 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001278 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1279 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001280
1281 bool Error = false;
1282
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001283 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001284 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001285 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner9e330492007-12-30 20:50:28 +00001286 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng697cbbf2009-03-20 18:03:34 +00001287 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001288 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001289
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001290 if (OpNo >= MI->getNumOperands()) {
1291 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001292 } else {
Chris Lattner9e330492007-12-30 20:50:28 +00001293 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001294 ++OpNo; // Skip over the ID number.
1295
Chris Lattner10b318b2010-01-17 21:43:43 +00001296 if (Modifier[0] == 'l') // labels are target independent
Chris Lattnerf71cb012010-01-26 04:55:51 +00001297 O << *MI->getOperand(OpNo).getMBB()->getSymbol(OutContext);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001298 else {
1299 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen86b49f82008-09-24 01:07:17 +00001300 if ((OpFlags & 7) == 4) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001301 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1302 Modifier[0] ? Modifier : 0);
1303 } else {
1304 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1305 Modifier[0] ? Modifier : 0);
1306 }
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001307 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001308 }
1309 if (Error) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001310 std::string msg;
1311 raw_string_ostream Msg(msg);
Chris Lattner10b318b2010-01-17 21:43:43 +00001312 Msg << "Invalid operand found in inline asm: '" << AsmStr << "'\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00001313 MI->print(Msg);
1314 llvm_report_error(Msg.str());
Chris Lattner66099132006-02-01 22:41:11 +00001315 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001316 }
Chris Lattner66099132006-02-01 22:41:11 +00001317 break;
1318 }
Chris Lattner66099132006-02-01 22:41:11 +00001319 }
1320 }
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001321 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
Chris Lattner66099132006-02-01 22:41:11 +00001322}
1323
Evan Chengda47e6e2008-03-15 00:03:38 +00001324/// printImplicitDef - This method prints the specified machine instruction
1325/// that is an implicit def.
1326void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001327 if (!VerboseAsm) return;
1328 O.PadToColumn(MAI->getCommentColumn());
1329 O << MAI->getCommentString() << " implicit-def: "
Chris Lattnerf806c232009-09-13 19:48:37 +00001330 << TRI->getName(MI->getOperand(0).getReg());
Evan Chengda47e6e2008-03-15 00:03:38 +00001331}
1332
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001333void AsmPrinter::printKill(const MachineInstr *MI) const {
1334 if (!VerboseAsm) return;
1335 O.PadToColumn(MAI->getCommentColumn());
1336 O << MAI->getCommentString() << " kill:";
1337 for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1338 const MachineOperand &op = MI->getOperand(n);
1339 assert(op.isReg() && "KILL instruction must have only register operands");
1340 O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1341 }
1342}
1343
Jim Laskey1ee29252007-01-26 14:34:52 +00001344/// printLabel - This method prints a local label used by debug and
1345/// exception handling tables.
1346void AsmPrinter::printLabel(const MachineInstr *MI) const {
Dan Gohman528bc022008-07-01 00:16:26 +00001347 printLabel(MI->getOperand(0).getImm());
Jim Laskey1ee29252007-01-26 14:34:52 +00001348}
1349
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001350void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001351 O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001352}
1353
Chris Lattner66099132006-02-01 22:41:11 +00001354/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1355/// instruction, using the specified assembler variant. Targets should
Dale Johannesencf0b7662010-01-14 21:50:17 +00001356/// override this to format as appropriate.
Chris Lattner66099132006-02-01 22:41:11 +00001357bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001358 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001359 // Target doesn't support this yet!
1360 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001361}
Chris Lattnerdd260332006-02-24 20:21:58 +00001362
1363bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1364 unsigned AsmVariant,
1365 const char *ExtraCode) {
1366 // Target doesn't support this yet!
1367 return true;
1368}
Nate Begeman37efe672006-04-22 18:53:45 +00001369
Dan Gohman29cbade2009-11-20 23:18:13 +00001370MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA,
1371 const char *Suffix) const {
1372 return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock(), Suffix);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001373}
1374
1375MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
Dan Gohman29cbade2009-11-20 23:18:13 +00001376 const BasicBlock *BB,
1377 const char *Suffix) const {
Dan Gohman8c2b5252009-10-30 01:27:03 +00001378 assert(BB->hasName() &&
1379 "Address of anonymous basic block not supported yet!");
1380
Dan Gohman568a3be2009-11-05 23:14:35 +00001381 // This code must use the function name itself, and not the function number,
1382 // since it must be possible to generate the label name from within other
1383 // functions.
Chris Lattner2f8cc262010-01-13 07:30:49 +00001384 SmallString<60> FnName;
1385 Mang->getNameWithPrefix(FnName, F, false);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001386
Chris Lattner2f8cc262010-01-13 07:30:49 +00001387 // FIXME: THIS IS BROKEN IF THE LLVM BASIC BLOCK DOESN'T HAVE A NAME!
Chris Lattner48130352010-01-13 06:38:18 +00001388 SmallString<60> NameResult;
Chris Lattner2f8cc262010-01-13 07:30:49 +00001389 Mang->getNameWithPrefix(NameResult,
1390 StringRef("BA") + Twine((unsigned)FnName.size()) +
1391 "_" + FnName.str() + "_" + BB->getName() + Suffix,
1392 Mangler::Private);
Dan Gohman568a3be2009-11-05 23:14:35 +00001393
Chris Lattner48130352010-01-13 06:38:18 +00001394 return OutContext.GetOrCreateSymbol(NameResult.str());
Dan Gohman8c2b5252009-10-30 01:27:03 +00001395}
1396
Chris Lattner39248682010-01-23 05:19:23 +00001397/// GetCPISymbol - Return the symbol for the specified constant pool entry.
1398MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
1399 SmallString<60> Name;
1400 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "CPI"
1401 << getFunctionNumber() << '_' << CPID;
1402 return OutContext.GetOrCreateSymbol(Name.str());
1403}
1404
1405/// GetJTISymbol - Return the symbol for the specified jump table entry.
1406MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
Chris Lattner589c6f62010-01-26 06:28:43 +00001407 return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
Chris Lattner7cb384d2009-09-12 23:02:08 +00001408}
1409
Chris Lattner798d1252010-01-25 21:17:10 +00001410/// GetJTSetSymbol - Return the symbol for the specified jump table .set
1411/// FIXME: privatize to AsmPrinter.
1412MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
1413 SmallString<60> Name;
1414 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix()
1415 << getFunctionNumber() << '_' << UID << "_set_" << MBBID;
1416 return OutContext.GetOrCreateSymbol(Name.str());
1417}
1418
Chris Lattner6b04ede2010-01-15 23:18:17 +00001419/// GetGlobalValueSymbol - Return the MCSymbol for the specified global
1420/// value.
1421MCSymbol *AsmPrinter::GetGlobalValueSymbol(const GlobalValue *GV) const {
1422 SmallString<60> NameStr;
1423 Mang->getNameWithPrefix(NameStr, GV, false);
1424 return OutContext.GetOrCreateSymbol(NameStr.str());
1425}
1426
Chris Lattner7a2ba942010-01-16 18:37:32 +00001427/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
Chris Lattnerd588b972010-01-15 23:25:11 +00001428/// global value name as its base, with the specified suffix, and where the
Chris Lattner7a2ba942010-01-16 18:37:32 +00001429/// symbol is forced to have private linkage if ForcePrivate is true.
1430MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
1431 StringRef Suffix,
1432 bool ForcePrivate) const {
Chris Lattnerd588b972010-01-15 23:25:11 +00001433 SmallString<60> NameStr;
Chris Lattner7a2ba942010-01-16 18:37:32 +00001434 Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
Chris Lattnerd588b972010-01-15 23:25:11 +00001435 NameStr.append(Suffix.begin(), Suffix.end());
1436 return OutContext.GetOrCreateSymbol(NameStr.str());
1437}
1438
Chris Lattner6b04ede2010-01-15 23:18:17 +00001439/// GetExternalSymbolSymbol - Return the MCSymbol for the specified
1440/// ExternalSymbol.
1441MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
1442 SmallString<60> NameStr;
1443 Mang->getNameWithPrefix(NameStr, Sym);
1444 return OutContext.GetOrCreateSymbol(NameStr.str());
1445}
1446
Chris Lattner7cb384d2009-09-12 23:02:08 +00001447
Chris Lattner523a5082010-01-22 21:50:41 +00001448
1449/// PrintParentLoopComment - Print comments about parent loops of this one.
1450static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1451 unsigned FunctionNumber) {
1452 if (Loop == 0) return;
1453 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
1454 OS.indent(Loop->getLoopDepth()*2)
1455 << "Parent Loop BB" << FunctionNumber << "_"
1456 << Loop->getHeader()->getNumber()
1457 << " Depth=" << Loop->getLoopDepth() << '\n';
1458}
1459
1460
1461/// PrintChildLoopComment - Print comments about child loops within
1462/// the loop for this basic block, with nesting.
1463static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1464 unsigned FunctionNumber) {
1465 // Add child loop information
1466 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
1467 OS.indent((*CL)->getLoopDepth()*2)
1468 << "Child Loop BB" << FunctionNumber << "_"
1469 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
1470 << '\n';
1471 PrintChildLoopComment(OS, *CL, FunctionNumber);
1472 }
1473}
1474
1475/// EmitComments - Pretty-print comments for basic blocks.
1476static void PrintBasicBlockLoopComments(const MachineBasicBlock &MBB,
1477 const MachineLoopInfo *LI,
1478 const AsmPrinter &AP) {
1479 // Add loop depth information
1480 const MachineLoop *Loop = LI->getLoopFor(&MBB);
1481 if (Loop == 0) return;
1482
1483 MachineBasicBlock *Header = Loop->getHeader();
1484 assert(Header && "No header for loop");
1485
1486 // If this block is not a loop header, just print out what is the loop header
1487 // and return.
1488 if (Header != &MBB) {
1489 AP.OutStreamer.AddComment(" in Loop: Header=BB" +
1490 Twine(AP.getFunctionNumber())+"_" +
1491 Twine(Loop->getHeader()->getNumber())+
1492 " Depth="+Twine(Loop->getLoopDepth()));
1493 return;
1494 }
1495
1496 // Otherwise, it is a loop header. Print out information about child and
1497 // parent loops.
1498 raw_ostream &OS = AP.OutStreamer.GetCommentOS();
1499
1500 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
1501
1502 OS << "=>";
1503 OS.indent(Loop->getLoopDepth()*2-2);
1504
1505 OS << "This ";
1506 if (Loop->empty())
1507 OS << "Inner ";
1508 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
1509
1510 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
1511}
1512
1513
Chris Lattner70a54c02009-09-13 18:25:37 +00001514/// EmitBasicBlockStart - This method prints the label for the specified
1515/// MachineBasicBlock, an alignment (if present) and a comment describing
1516/// it if appropriate.
Chris Lattner662316c2009-09-14 03:15:54 +00001517void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
Dan Gohmanb1cac332009-10-30 01:34:35 +00001518 // Emit an alignment directive for this block, if needed.
Chris Lattner70a54c02009-09-13 18:25:37 +00001519 if (unsigned Align = MBB->getAlignment())
1520 EmitAlignment(Log2_32(Align));
Evan Chengfb8075d2008-02-28 00:43:03 +00001521
Dan Gohmanb1cac332009-10-30 01:34:35 +00001522 // If the block has its address taken, emit a special label to satisfy
1523 // references to the block. This is done so that we don't need to
1524 // remember the number of this label, and so that we can make
1525 // forward references to labels without knowing what their numbers
1526 // will be.
Dan Gohman8c2b5252009-10-30 01:27:03 +00001527 if (MBB->hasAddressTaken()) {
Chris Lattner213168b2010-01-20 07:24:05 +00001528 const BasicBlock *BB = MBB->getBasicBlock();
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001529 if (VerboseAsm)
1530 OutStreamer.AddComment("Address Taken");
Chris Lattner213168b2010-01-20 07:24:05 +00001531 OutStreamer.EmitLabel(GetBlockAddressSymbol(BB->getParent(), BB));
Dan Gohman8c2b5252009-10-30 01:27:03 +00001532 }
1533
Dan Gohmanb1cac332009-10-30 01:34:35 +00001534 // Print the main label for the block.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001535 if (MBB->pred_empty() || MBB->isOnlyReachableByFallthrough()) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001536 if (VerboseAsm) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +00001537 // NOTE: Want this comment at start of line.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001538 O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001539 if (const BasicBlock *BB = MBB->getBasicBlock())
1540 if (BB->hasName())
1541 OutStreamer.AddComment("%" + BB->getName());
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001542
Chris Lattner523a5082010-01-22 21:50:41 +00001543 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001544 OutStreamer.AddBlankLine();
1545 }
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001546 } else {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001547 if (VerboseAsm) {
1548 if (const BasicBlock *BB = MBB->getBasicBlock())
1549 if (BB->hasName())
1550 OutStreamer.AddComment("%" + BB->getName());
Chris Lattner523a5082010-01-22 21:50:41 +00001551 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001552 }
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001553
Chris Lattnerf71cb012010-01-26 04:55:51 +00001554 OutStreamer.EmitLabel(MBB->getSymbol(OutContext));
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001555 }
Nate Begeman37efe672006-04-22 18:53:45 +00001556}
Nate Begeman52a51e382006-08-12 21:29:52 +00001557
Chris Lattner152a29b2010-01-23 06:53:23 +00001558void AsmPrinter::printVisibility(MCSymbol *Sym, unsigned Visibility) const {
1559 MCSymbolAttr Attr = MCSA_Invalid;
1560
1561 switch (Visibility) {
1562 default: break;
1563 case GlobalValue::HiddenVisibility:
1564 Attr = MAI->getHiddenVisibilityAttr();
1565 break;
1566 case GlobalValue::ProtectedVisibility:
1567 Attr = MAI->getProtectedVisibilityAttr();
1568 break;
Chris Lattner53d4d782010-01-15 23:38:51 +00001569 }
Chris Lattner152a29b2010-01-23 06:53:23 +00001570
1571 if (Attr != MCSA_Invalid)
1572 OutStreamer.EmitSymbolAttribute(Sym, Attr);
Chris Lattner53d4d782010-01-15 23:38:51 +00001573}
1574
Anton Korobeynikov7751ad92008-11-22 16:15:34 +00001575void AsmPrinter::printOffset(int64_t Offset) const {
1576 if (Offset > 0)
1577 O << '+' << Offset;
1578 else if (Offset < 0)
1579 O << Offset;
1580}
1581
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001582GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1583 if (!S->usesMetadata())
Gordon Henriksenc317a602008-08-17 12:08:44 +00001584 return 0;
1585
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001586 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001587 if (GCPI != GCMetadataPrinters.end())
1588 return GCPI->second;
1589
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001590 const char *Name = S->getName().c_str();
Gordon Henriksenc317a602008-08-17 12:08:44 +00001591
1592 for (GCMetadataPrinterRegistry::iterator
1593 I = GCMetadataPrinterRegistry::begin(),
1594 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1595 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001596 GCMetadataPrinter *GMP = I->instantiate();
1597 GMP->S = S;
1598 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1599 return GMP;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001600 }
1601
Chris Lattner52492ac2010-01-23 06:17:14 +00001602 llvm_report_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
1603 return 0;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001604}
David Greene014700c2009-07-13 20:25:48 +00001605
1606/// EmitComments - Pretty-print comments for instructions
Chris Lattner5f51cd02009-08-07 23:42:01 +00001607void AsmPrinter::EmitComments(const MachineInstr &MI) const {
David Greene1924aab2009-11-13 21:34:57 +00001608 if (!VerboseAsm)
1609 return;
David Greene3ac1ab82009-07-16 22:24:20 +00001610
David Greene1924aab2009-11-13 21:34:57 +00001611 bool Newline = false;
1612
1613 if (!MI.getDebugLoc().isUnknown()) {
Devang Patel6b61f582010-01-16 06:09:35 +00001614 DILocation DLT = MF->getDILocation(MI.getDebugLoc());
David Greene1924aab2009-11-13 21:34:57 +00001615
1616 // Print source line info.
1617 O.PadToColumn(MAI->getCommentColumn());
Dan Gohman3b9bc042009-12-05 00:23:29 +00001618 O << MAI->getCommentString() << ' ';
Devang Patel6b61f582010-01-16 06:09:35 +00001619 DIScope Scope = DLT.getScope();
Dan Gohman3b9bc042009-12-05 00:23:29 +00001620 // Omit the directory, because it's likely to be long and uninteresting.
1621 if (!Scope.isNull())
1622 O << Scope.getFilename();
1623 else
1624 O << "<unknown>";
Devang Patel6b61f582010-01-16 06:09:35 +00001625 O << ':' << DLT.getLineNumber();
1626 if (DLT.getColumnNumber() != 0)
1627 O << ':' << DLT.getColumnNumber();
David Greene1924aab2009-11-13 21:34:57 +00001628 Newline = true;
David Greene3ac1ab82009-07-16 22:24:20 +00001629 }
David Greene1924aab2009-11-13 21:34:57 +00001630
David Greeneddff9412009-11-16 15:12:23 +00001631 // Check for spills and reloads
1632 int FI;
1633
1634 const MachineFrameInfo *FrameInfo =
1635 MI.getParent()->getParent()->getFrameInfo();
1636
1637 // We assume a single instruction only has a spill or reload, not
1638 // both.
David Greenef7ea2a52009-12-04 22:46:04 +00001639 const MachineMemOperand *MMO;
David Greeneddff9412009-11-16 15:12:23 +00001640 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
1641 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001642 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001643 if (Newline) O << '\n';
1644 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001645 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Reload";
David Greeneddff9412009-11-16 15:12:23 +00001646 Newline = true;
1647 }
1648 }
David Greenef7ea2a52009-12-04 22:46:04 +00001649 else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001650 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1651 if (Newline) O << '\n';
1652 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001653 O << MAI->getCommentString() << ' '
1654 << MMO->getSize() << "-byte Folded Reload";
David Greeneddff9412009-11-16 15:12:23 +00001655 Newline = true;
1656 }
1657 }
1658 else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
1659 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001660 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001661 if (Newline) O << '\n';
1662 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001663 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Spill";
David Greeneddff9412009-11-16 15:12:23 +00001664 Newline = true;
1665 }
1666 }
David Greenef7ea2a52009-12-04 22:46:04 +00001667 else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001668 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1669 if (Newline) O << '\n';
1670 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001671 O << MAI->getCommentString() << ' '
1672 << MMO->getSize() << "-byte Folded Spill";
David Greeneddff9412009-11-16 15:12:23 +00001673 Newline = true;
1674 }
1675 }
1676
1677 // Check for spill-induced copies
1678 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1679 if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
1680 SrcSubIdx, DstSubIdx)) {
1681 if (MI.getAsmPrinterFlag(ReloadReuse)) {
1682 if (Newline) O << '\n';
1683 O.PadToColumn(MAI->getCommentColumn());
1684 O << MAI->getCommentString() << " Reload Reuse";
David Greeneddff9412009-11-16 15:12:23 +00001685 }
1686 }
David Greene014700c2009-07-13 20:25:48 +00001687}
1688