blob: 9844571f96ec4996764d8a5f4c8f84c2c1b75c67 [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
Chris Lattner14c38ec2010-01-28 01:02:27 +000014#define DEBUG_TYPE "asm-printer"
Evan Cheng932f0222006-03-03 02:04:29 +000015#include "llvm/CodeGen/AsmPrinter.h"
Evan Cheng246ae0d2006-03-01 22:18:09 +000016#include "llvm/Assembly/Writer.h"
Nate Begeman8cfa57b2005-12-06 06:18:55 +000017#include "llvm/DerivedTypes.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000018#include "llvm/Constants.h"
Chris Lattner450de392005-11-10 18:36:17 +000019#include "llvm/Module.h"
Chris Lattner45111d12010-01-16 21:57:06 +000020#include "llvm/CodeGen/DwarfWriter.h"
Gordon Henriksen5eca0752008-08-17 18:44:35 +000021#include "llvm/CodeGen/GCMetadataPrinter.h"
Chris Lattner3b4fd322005-11-21 08:25:09 +000022#include "llvm/CodeGen/MachineConstantPool.h"
David Greene1924aab2009-11-13 21:34:57 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
David Greenefe37ab32009-08-18 19:22:55 +000024#include "llvm/CodeGen/MachineFunction.h"
Nate Begeman37efe672006-04-22 18:53:45 +000025#include "llvm/CodeGen/MachineJumpTableInfo.h"
David Greeneb71d1b22009-08-10 16:38:07 +000026#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000027#include "llvm/CodeGen/MachineModuleInfo.h"
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +000028#include "llvm/Analysis/DebugInfo.h"
Chris Lattner2b2954f2009-07-27 21:28:04 +000029#include "llvm/MC/MCContext.h"
Chris Lattner52492ac2010-01-23 06:17:14 +000030#include "llvm/MC/MCExpr.h"
David Greene3ac1ab82009-07-16 22:24:20 +000031#include "llvm/MC/MCInst.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000032#include "llvm/MC/MCSection.h"
33#include "llvm/MC/MCStreamer.h"
Chris Lattner7cb384d2009-09-12 23:02:08 +000034#include "llvm/MC/MCSymbol.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000035#include "llvm/MC/MCAsmInfo.h"
Chris Lattner45111d12010-01-16 21:57:06 +000036#include "llvm/Target/Mangler.h"
Owen Anderson07000c62006-05-12 06:33:49 +000037#include "llvm/Target/TargetData.h"
David Greene1924aab2009-11-13 21:34:57 +000038#include "llvm/Target/TargetInstrInfo.h"
Chris Lattner0336fdb2006-10-06 22:50:56 +000039#include "llvm/Target/TargetLowering.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000040#include "llvm/Target/TargetLoweringObjectFile.h"
Evan Cheng6547e402008-07-01 23:18:29 +000041#include "llvm/Target/TargetOptions.h"
Evan Chengda47e6e2008-03-15 00:03:38 +000042#include "llvm/Target/TargetRegisterInfo.h"
Evan Chengcc415862007-11-09 01:32:10 +000043#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerfad86b02008-08-17 07:19:36 +000044#include "llvm/ADT/SmallString.h"
Chris Lattner14c38ec2010-01-28 01:02:27 +000045#include "llvm/ADT/Statistic.h"
46#include "llvm/Support/CommandLine.h"
47#include "llvm/Support/Debug.h"
48#include "llvm/Support/ErrorHandling.h"
49#include "llvm/Support/Format.h"
50#include "llvm/Support/FormattedStream.h"
Chris Lattner66099132006-02-01 22:41:11 +000051#include <cerrno>
Chris Lattnera80ba712004-08-16 23:15:22 +000052using namespace llvm;
53
Chris Lattner14c38ec2010-01-28 01:02:27 +000054STATISTIC(EmittedInsts, "Number of machine instrs printed");
55
Devang Patel19974732007-05-03 01:11:54 +000056char AsmPrinter::ID = 0;
David Greene71847812009-07-14 20:18:05 +000057AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
Chris Lattner56591ab2010-02-02 23:37:42 +000058 MCContext &Ctx, MCStreamer &Streamer,
59 const MCAsmInfo *T)
Chris Lattnerb84822f2010-01-26 04:35:26 +000060 : MachineFunctionPass(&ID), O(o),
Chris Lattner33adcfb2009-08-22 21:43:10 +000061 TM(tm), MAI(T), TRI(tm.getRegisterInfo()),
Chris Lattner56591ab2010-02-02 23:37:42 +000062 OutContext(Ctx), OutStreamer(Streamer),
Devang Patel6b61f582010-01-16 06:09:35 +000063 LastMI(0), LastFn(0), Counter(~0U), PrevDLT(NULL) {
Chris Lattner0de1fc42009-06-24 19:09:55 +000064 DW = 0; MMI = 0;
Chris Lattner56591ab2010-02-02 23:37:42 +000065 VerboseAsm = Streamer.isVerboseAsm();
Evan Cheng42bf74b2009-03-25 01:47:28 +000066}
Chris Lattnered138932005-12-13 06:32:10 +000067
Gordon Henriksenc317a602008-08-17 12:08:44 +000068AsmPrinter::~AsmPrinter() {
69 for (gcp_iterator I = GCMetadataPrinters.begin(),
70 E = GCMetadataPrinters.end(); I != E; ++I)
71 delete I->second;
Chris Lattner2b2954f2009-07-27 21:28:04 +000072
73 delete &OutStreamer;
74 delete &OutContext;
Gordon Henriksenc317a602008-08-17 12:08:44 +000075}
Chris Lattnered138932005-12-13 06:32:10 +000076
Chris Lattnerb84822f2010-01-26 04:35:26 +000077/// getFunctionNumber - Return a unique ID for the current function.
78///
79unsigned AsmPrinter::getFunctionNumber() const {
80 return MF->getFunctionNumber();
81}
82
Chris Lattner38c39882009-08-03 19:12:26 +000083TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
Chris Lattnerf0144122009-07-28 03:13:23 +000084 return TM.getTargetLowering()->getObjFileLowering();
85}
86
Chris Lattnerdabf07c2009-08-18 06:15:16 +000087/// getCurrentSection() - Return the current section we are emitting to.
88const MCSection *AsmPrinter::getCurrentSection() const {
89 return OutStreamer.getCurrentSection();
90}
91
92
Gordon Henriksence224772008-01-07 01:30:38 +000093void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000094 AU.setPreservesAll();
Gordon Henriksence224772008-01-07 01:30:38 +000095 MachineFunctionPass::getAnalysisUsage(AU);
Gordon Henriksen5eca0752008-08-17 18:44:35 +000096 AU.addRequired<GCModuleInfo>();
David Greenefe37ab32009-08-18 19:22:55 +000097 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +000098 AU.addRequired<MachineLoopInfo>();
Gordon Henriksence224772008-01-07 01:30:38 +000099}
100
Chris Lattnera80ba712004-08-16 23:15:22 +0000101bool AsmPrinter::doInitialization(Module &M) {
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000102 // Initialize TargetLoweringObjectFile.
103 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
104 .Initialize(OutContext, TM);
105
Chris Lattnerc0dba722010-01-17 18:22:35 +0000106 Mang = new Mangler(*MAI);
Chris Lattner2c1b1592006-01-23 23:47:53 +0000107
Bob Wilson812209a2009-09-30 22:06:26 +0000108 // Allow the target to emit any magic that it wants at the start of the file.
109 EmitStartOfAsmFile(M);
Rafael Espindola952b8392008-12-03 11:01:37 +0000110
Chris Lattnera6594fc2010-01-25 18:58:59 +0000111 // Very minimal debug info. It is ignored if we emit actual debug info. If we
112 // don't, this at least helps the user find where a global came from.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000113 if (MAI->hasSingleParameterDotFile()) {
Chris Lattnera6594fc2010-01-25 18:58:59 +0000114 // .file "foo.c"
115 OutStreamer.EmitFileDirective(M.getModuleIdentifier());
Rafael Espindola952b8392008-12-03 11:01:37 +0000116 }
117
Bob Wilson812209a2009-09-30 22:06:26 +0000118 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
119 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000120 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
121 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000122 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000123
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000124 if (!M.getModuleInlineAsm().empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000125 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000126 << M.getModuleInlineAsm()
Chris Lattner33adcfb2009-08-22 21:43:10 +0000127 << '\n' << MAI->getCommentString()
Jim Laskey563321a2006-09-06 18:34:40 +0000128 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000129
Chris Lattnerb55e0682009-09-24 05:44:53 +0000130 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
131 if (MMI)
132 MMI->AnalyzeModule(M);
133 DW = getAnalysisIfAvailable<DwarfWriter>();
Sanjiv Gupta9a501cf2009-11-14 07:22:25 +0000134 if (DW)
Chris Lattnerb55e0682009-09-24 05:44:53 +0000135 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel14a55d92009-06-19 21:54:26 +0000136
Chris Lattnera80ba712004-08-16 23:15:22 +0000137 return false;
138}
139
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000140void AsmPrinter::EmitLinkage(unsigned Linkage, MCSymbol *GVSym) const {
Chris Lattnera3e88832010-01-26 23:47:12 +0000141 switch ((GlobalValue::LinkageTypes)Linkage) {
142 case GlobalValue::CommonLinkage:
143 case GlobalValue::LinkOnceAnyLinkage:
144 case GlobalValue::LinkOnceODRLinkage:
145 case GlobalValue::WeakAnyLinkage:
146 case GlobalValue::WeakODRLinkage:
147 case GlobalValue::LinkerPrivateLinkage:
148 if (MAI->getWeakDefDirective() != 0) {
149 // .globl _foo
150 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
151 // .weak_definition _foo
152 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
153 } else if (const char *LinkOnce = MAI->getLinkOnceDirective()) {
154 // .globl _foo
155 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
156 // FIXME: linkonce should be a section attribute, handled by COFF Section
157 // assignment.
158 // http://sourceware.org/binutils/docs-2.20/as/Linkonce.html#Linkonce
Chris Lattner111a3192010-01-26 23:51:52 +0000159 // .linkonce discard
160 // FIXME: It would be nice to use .linkonce samesize for non-common
161 // globals.
Chris Lattnera3e88832010-01-26 23:47:12 +0000162 O << LinkOnce;
163 } else {
164 // .weak _foo
165 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
166 }
167 break;
168 case GlobalValue::DLLExportLinkage:
169 case GlobalValue::AppendingLinkage:
170 // FIXME: appending linkage variables should go into a section of
171 // their name or something. For now, just emit them as external.
172 case GlobalValue::ExternalLinkage:
173 // If external or appending, declare as a global symbol.
174 // .globl _foo
175 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
176 break;
177 case GlobalValue::PrivateLinkage:
178 case GlobalValue::InternalLinkage:
179 break;
180 default:
181 llvm_unreachable("Unknown linkage type!");
182 }
183}
184
185
Chris Lattner48d64ba2010-01-19 04:39:15 +0000186/// EmitGlobalVariable - Emit the specified global variable to the .s file.
187void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
188 if (!GV->hasInitializer()) // External globals require no code.
189 return;
190
191 // Check to see if this is a special global used by LLVM, if so, emit it.
192 if (EmitSpecialLLVMGlobal(GV))
193 return;
Chris Lattner74bfe212010-01-19 05:38:33 +0000194
195 MCSymbol *GVSym = GetGlobalValueSymbol(GV);
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000196 EmitVisibility(GVSym, GV->getVisibility());
Chris Lattner74bfe212010-01-19 05:38:33 +0000197
Chris Lattnera800f7c2010-01-25 18:33:40 +0000198 if (MAI->hasDotTypeDotSizeDirective())
199 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
Chris Lattner48d64ba2010-01-19 04:39:15 +0000200
Chris Lattner74bfe212010-01-19 05:38:33 +0000201 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
202
203 const TargetData *TD = TM.getTargetData();
204 unsigned Size = TD->getTypeAllocSize(GV->getType()->getElementType());
205 unsigned AlignLog = TD->getPreferredAlignmentLog(GV);
206
Chris Lattner9744d612010-01-19 05:51:42 +0000207 // Handle common and BSS local symbols (.lcomm).
208 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000209 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
210
Chris Lattner74bfe212010-01-19 05:38:33 +0000211 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000212 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
213 /*PrintType=*/false, GV->getParent());
214 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000215 }
Chris Lattner814819f2010-01-19 06:25:51 +0000216
217 // Handle common symbols.
Chris Lattner9744d612010-01-19 05:51:42 +0000218 if (GVKind.isCommon()) {
219 // .comm _foo, 42, 4
Chris Lattner4ed54382010-01-19 06:01:04 +0000220 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner814819f2010-01-19 06:25:51 +0000221 return;
Chris Lattner9744d612010-01-19 05:51:42 +0000222 }
Chris Lattner814819f2010-01-19 06:25:51 +0000223
224 // Handle local BSS symbols.
225 if (MAI->hasMachoZeroFillDirective()) {
226 const MCSection *TheSection =
227 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
228 // .zerofill __DATA, __bss, _foo, 400, 5
229 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
230 return;
231 }
232
Chris Lattner9eb158d2010-01-23 07:47:02 +0000233 if (MAI->hasLCOMMDirective()) {
Chris Lattner814819f2010-01-19 06:25:51 +0000234 // .lcomm _foo, 42
Chris Lattner9eb158d2010-01-23 07:47:02 +0000235 OutStreamer.EmitLocalCommonSymbol(GVSym, Size);
Chris Lattner814819f2010-01-19 06:25:51 +0000236 return;
237 }
238
239 // .local _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000240 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
Chris Lattner814819f2010-01-19 06:25:51 +0000241 // .comm _foo, 42, 4
242 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner74bfe212010-01-19 05:38:33 +0000243 return;
244 }
245
246 const MCSection *TheSection =
247 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
248
249 // Handle the zerofill directive on darwin, which is a special form of BSS
250 // emission.
251 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
252 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000253 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000254 // .zerofill __DATA, __common, _foo, 400, 5
255 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
256 return;
257 }
258
259 OutStreamer.SwitchSection(TheSection);
260
Chris Lattnera3e88832010-01-26 23:47:12 +0000261 EmitLinkage(GV->getLinkage(), GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000262 EmitAlignment(AlignLog, GV);
Chris Lattnera3e88832010-01-26 23:47:12 +0000263
Chris Lattner74bfe212010-01-19 05:38:33 +0000264 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000265 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
266 /*PrintType=*/false, GV->getParent());
267 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000268 }
Chris Lattner4c8c6682010-01-19 06:41:24 +0000269 OutStreamer.EmitLabel(GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000270
271 EmitGlobalConstant(GV->getInitializer());
272
273 if (MAI->hasDotTypeDotSizeDirective())
Chris Lattner1947f242010-01-25 07:53:05 +0000274 // .size foo, 42
Chris Lattner99328ad2010-01-25 07:52:13 +0000275 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000276
277 OutStreamer.AddBlankLine();
Chris Lattner48d64ba2010-01-19 04:39:15 +0000278}
279
Chris Lattnerb11caed2010-01-26 23:18:44 +0000280/// EmitFunctionHeader - This method emits the header for the current
281/// function.
282void AsmPrinter::EmitFunctionHeader() {
283 // Print out constants referenced by the function
Chris Lattnera2406192010-01-28 00:19:24 +0000284 EmitConstantPool();
Chris Lattnerb11caed2010-01-26 23:18:44 +0000285
286 // Print the 'header' of function.
Chris Lattnerb11caed2010-01-26 23:18:44 +0000287 const Function *F = MF->getFunction();
288
289 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000290 EmitVisibility(CurrentFnSym, F->getVisibility());
Chris Lattnerb11caed2010-01-26 23:18:44 +0000291
Chris Lattner111a3192010-01-26 23:51:52 +0000292 EmitLinkage(F->getLinkage(), CurrentFnSym);
Chris Lattnerb406a812010-01-26 23:41:48 +0000293 EmitAlignment(MF->getAlignment(), F);
294
Chris Lattnerb11caed2010-01-26 23:18:44 +0000295 if (MAI->hasDotTypeDotSizeDirective())
296 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
297
Chris Lattnerb11caed2010-01-26 23:18:44 +0000298 if (VerboseAsm) {
Chris Lattner9bc20ab2010-01-26 23:53:39 +0000299 WriteAsOperand(OutStreamer.GetCommentOS(), F,
300 /*PrintType=*/false, F->getParent());
301 OutStreamer.GetCommentOS() << '\n';
Chris Lattnerb11caed2010-01-26 23:18:44 +0000302 }
Chris Lattnerb11caed2010-01-26 23:18:44 +0000303
Chris Lattner2cf72512010-01-27 07:21:55 +0000304 // Emit the CurrentFnSym. This is is a virtual function to allow targets to
305 // do their wild and crazy things as required.
306 EmitFunctionEntryLabel();
307
Chris Lattnerb11caed2010-01-26 23:18:44 +0000308 // Add some workaround for linkonce linkage on Cygwin\MinGW.
309 if (MAI->getLinkOnceDirective() != 0 &&
310 (F->hasLinkOnceLinkage() || F->hasWeakLinkage()))
Chris Lattner9bc20ab2010-01-26 23:53:39 +0000311 // FIXME: What is this?
Chris Lattnerb11caed2010-01-26 23:18:44 +0000312 O << "Lllvm$workaround$fake$stub$" << *CurrentFnSym << ":\n";
313
314 // Emit pre-function debug and/or EH information.
315 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
316 DW->BeginFunction(MF);
317}
318
Chris Lattner2cf72512010-01-27 07:21:55 +0000319/// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the
320/// function. This can be overridden by targets as required to do custom stuff.
321void AsmPrinter::EmitFunctionEntryLabel() {
322 OutStreamer.EmitLabel(CurrentFnSym);
323}
Chris Lattnerb11caed2010-01-26 23:18:44 +0000324
Chris Lattner48d64ba2010-01-19 04:39:15 +0000325
Chris Lattner14c38ec2010-01-28 01:02:27 +0000326/// EmitFunctionBody - This method emits the body and trailer for a
327/// function.
328void AsmPrinter::EmitFunctionBody() {
Chris Lattneredfe7762010-01-28 01:58:58 +0000329 // Emit target-specific gunk before the function body.
330 EmitFunctionBodyStart();
331
Chris Lattner14c38ec2010-01-28 01:02:27 +0000332 // Print out code for the function.
333 bool HasAnyRealCode = false;
334 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
335 I != E; ++I) {
336 // Print a label for the basic block.
337 EmitBasicBlockStart(I);
338 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
339 II != IE; ++II) {
340 // Print the assembly for the instruction.
341 if (!II->isLabel())
342 HasAnyRealCode = true;
343
344 ++EmittedInsts;
345
346 // FIXME: Clean up processDebugLoc.
347 processDebugLoc(II, true);
348
Chris Lattner0d883e32010-02-03 01:00:52 +0000349 switch (II->getOpcode()) {
350 case TargetInstrInfo::DBG_LABEL:
351 case TargetInstrInfo::EH_LABEL:
352 case TargetInstrInfo::GC_LABEL:
Chris Lattnerf64159c842010-02-03 01:46:05 +0000353 printLabelInst(II);
Chris Lattner0d883e32010-02-03 01:00:52 +0000354 break;
355 case TargetInstrInfo::INLINEASM:
356 printInlineAsm(II);
357 break;
358 case TargetInstrInfo::IMPLICIT_DEF:
359 printImplicitDef(II);
360 break;
361 case TargetInstrInfo::KILL:
362 printKill(II);
363 break;
364 default:
365 EmitInstruction(II);
366 break;
367 }
Chris Lattner14c38ec2010-01-28 01:02:27 +0000368 if (VerboseAsm)
369 EmitComments(*II);
Chris Lattner14c38ec2010-01-28 01:02:27 +0000370
371 // FIXME: Clean up processDebugLoc.
372 processDebugLoc(II, false);
373 }
374 }
375
376 // If the function is empty and the object file uses .subsections_via_symbols,
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000377 // then we need to emit *something* to the function body to prevent the
378 // labels from collapsing together. Just emit a 0 byte.
Chris Lattner10e7c602010-01-28 01:06:32 +0000379 if (MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode)
380 OutStreamer.EmitIntValue(0, 1, 0/*addrspace*/);
Chris Lattner14c38ec2010-01-28 01:02:27 +0000381
Chris Lattneredfe7762010-01-28 01:58:58 +0000382 // Emit target-specific gunk after the function body.
383 EmitFunctionBodyEnd();
384
Chris Lattner14c38ec2010-01-28 01:02:27 +0000385 if (MAI->hasDotTypeDotSizeDirective())
386 O << "\t.size\t" << *CurrentFnSym << ", .-" << *CurrentFnSym << '\n';
387
388 // Emit post-function debug information.
389 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
390 DW->EndFunction(MF);
391
392 // Print out jump tables referenced by the function.
393 EmitJumpTableInfo();
394}
395
396
Chris Lattnera80ba712004-08-16 23:15:22 +0000397bool AsmPrinter::doFinalization(Module &M) {
Chris Lattner40bbebd2009-07-21 18:38:57 +0000398 // Emit global variables.
399 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
400 I != E; ++I)
Chris Lattner48d64ba2010-01-19 04:39:15 +0000401 EmitGlobalVariable(I);
Chris Lattner40bbebd2009-07-21 18:38:57 +0000402
Chris Lattner1f522fe2009-06-24 18:54:37 +0000403 // Emit final debug information.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000404 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattner1f522fe2009-06-24 18:54:37 +0000405 DW->EndModule();
406
Chris Lattner0a7befa2009-06-24 18:52:01 +0000407 // If the target wants to know about weak references, print them all.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000408 if (MAI->getWeakRefDirective()) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000409 // FIXME: This is not lazy, it would be nice to only print weak references
410 // to stuff that is actually used. Note that doing so would require targets
411 // to notice uses in operands (due to constant exprs etc). This should
412 // happen with the MC stuff eventually.
Rafael Espindola15404d02006-12-18 03:37:18 +0000413
Chris Lattner0a7befa2009-06-24 18:52:01 +0000414 // Print out module-level global variables here.
415 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
416 I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000417 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000418 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000419 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000420 }
421
Chris Lattnerc6fdced2009-08-03 23:10:34 +0000422 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000423 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000424 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000425 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000426 }
Rafael Espindola15404d02006-12-18 03:37:18 +0000427 }
428
Chris Lattnercee63322010-01-26 20:40:54 +0000429 if (MAI->hasSetDirective()) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000430 OutStreamer.AddBlankLine();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000431 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattner0a7befa2009-06-24 18:52:01 +0000432 I != E; ++I) {
Chris Lattner5c40e692010-01-16 01:17:26 +0000433 MCSymbol *Name = GetGlobalValueSymbol(I);
Anton Korobeynikov325be7c2007-09-06 17:21:48 +0000434
435 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattner5c40e692010-01-16 01:17:26 +0000436 MCSymbol *Target = GetGlobalValueSymbol(GV);
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000437
Chris Lattner10b318b2010-01-17 21:43:43 +0000438 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000439 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
Chris Lattner10b318b2010-01-17 21:43:43 +0000440 else if (I->hasWeakLinkage())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000441 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
Chris Lattner10b318b2010-01-17 21:43:43 +0000442 else
Chris Lattner10595492010-01-16 01:37:14 +0000443 assert(I->hasLocalLinkage() && "Invalid alias linkage");
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000444
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000445 EmitVisibility(Name, I->getVisibility());
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000446
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000447 // Emit the directives as assignments aka .set:
448 OutStreamer.EmitAssignment(Name,
449 MCSymbolRefExpr::Create(Target, OutContext));
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000450 }
451 }
452
Duncan Sands1465d612009-01-28 13:14:17 +0000453 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000454 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
455 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
456 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000457 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000458
Dan Gohmana779a982008-05-05 00:28:39 +0000459 // If we don't have any trampolines, then we don't require stack memory
460 // to be executable. Some targets have a directive to declare this.
Chris Lattner0a7befa2009-06-24 18:52:01 +0000461 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana779a982008-05-05 00:28:39 +0000462 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattnerf9f93e42010-01-23 07:21:06 +0000463 if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
464 OutStreamer.SwitchSection(S);
Chris Lattnerbd23d5f2009-09-18 20:17:03 +0000465
466 // Allow the target to emit any magic that it wants at the end of the file,
467 // after everything else has gone out.
468 EmitEndOfAsmFile(M);
469
Chris Lattnera80ba712004-08-16 23:15:22 +0000470 delete Mang; Mang = 0;
Chris Lattner0de1fc42009-06-24 19:09:55 +0000471 DW = 0; MMI = 0;
Chris Lattner2b2954f2009-07-27 21:28:04 +0000472
473 OutStreamer.Finish();
Chris Lattnera80ba712004-08-16 23:15:22 +0000474 return false;
475}
476
Chris Lattner25045bd2005-11-21 07:51:36 +0000477void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnerb84822f2010-01-26 04:35:26 +0000478 this->MF = &MF;
Chris Lattner412c3a52010-01-16 01:24:10 +0000479 // Get the function symbol.
Chris Lattnerd1947ed2010-01-15 23:55:16 +0000480 CurrentFnSym = GetGlobalValueSymbol(MF.getFunction());
David Greeneb71d1b22009-08-10 16:38:07 +0000481
Chris Lattner25d812b2009-09-16 00:35:39 +0000482 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000483 LI = &getAnalysis<MachineLoopInfo>();
Chris Lattnera80ba712004-08-16 23:15:22 +0000484}
485
Evan Cheng1606e8e2009-03-13 07:51:59 +0000486namespace {
487 // SectionCPs - Keep track the alignment, constpool entries per Section.
488 struct SectionCPs {
Chris Lattnera87dea42009-07-31 18:48:30 +0000489 const MCSection *S;
Evan Cheng1606e8e2009-03-13 07:51:59 +0000490 unsigned Alignment;
491 SmallVector<unsigned, 4> CPEs;
Douglas Gregorcabdd742009-12-19 07:05:23 +0000492 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
Evan Cheng1606e8e2009-03-13 07:51:59 +0000493 };
494}
495
Chris Lattner3b4fd322005-11-21 08:25:09 +0000496/// EmitConstantPool - Print to the current output stream assembly
497/// representations of the constants in the constant pool MCP. This is
498/// used to print out constants which have been "spilled to memory" by
499/// the code generator.
500///
Chris Lattnera2406192010-01-28 00:19:24 +0000501void AsmPrinter::EmitConstantPool() {
502 const MachineConstantPool *MCP = MF->getConstantPool();
Chris Lattnerfa77d432006-02-09 04:22:52 +0000503 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000504 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000505
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000506 // Calculate sections for constant pool entries. We collect entries to go into
507 // the same section together to reduce amount of section switch statements.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000508 SmallVector<SectionCPs, 4> CPSections;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000509 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner298414e2009-07-22 00:28:43 +0000510 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng1606e8e2009-03-13 07:51:59 +0000511 unsigned Align = CPE.getAlignment();
Chris Lattner5c2f7892009-07-26 06:26:55 +0000512
513 SectionKind Kind;
514 switch (CPE.getRelocationInfo()) {
515 default: llvm_unreachable("Unknown section kind");
Chris Lattner27981192009-08-01 23:57:16 +0000516 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000517 case 1:
Chris Lattner27981192009-08-01 23:57:16 +0000518 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattner4c509222009-07-26 07:00:12 +0000519 break;
Chris Lattner5c2f7892009-07-26 06:26:55 +0000520 case 0:
Chris Lattner4c509222009-07-26 07:00:12 +0000521 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000522 case 4: Kind = SectionKind::getMergeableConst4(); break;
523 case 8: Kind = SectionKind::getMergeableConst8(); break;
524 case 16: Kind = SectionKind::getMergeableConst16();break;
525 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000526 }
Chris Lattner5c2f7892009-07-26 06:26:55 +0000527 }
528
Chris Lattner83d77fa2009-08-01 23:46:12 +0000529 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner298414e2009-07-22 00:28:43 +0000530
Evan Cheng1606e8e2009-03-13 07:51:59 +0000531 // The number of sections are small, just do a linear search from the
532 // last section to the first.
533 bool Found = false;
534 unsigned SecIdx = CPSections.size();
535 while (SecIdx != 0) {
536 if (CPSections[--SecIdx].S == S) {
537 Found = true;
538 break;
539 }
540 }
541 if (!Found) {
542 SecIdx = CPSections.size();
543 CPSections.push_back(SectionCPs(S, Align));
544 }
545
546 if (Align > CPSections[SecIdx].Alignment)
547 CPSections[SecIdx].Alignment = Align;
548 CPSections[SecIdx].CPEs.push_back(i);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000549 }
550
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000551 // Now print stuff into the calculated sections.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000552 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000553 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000554 EmitAlignment(Log2_32(CPSections[i].Alignment));
Evan Cheng2d2cec12006-06-29 00:26:09 +0000555
Evan Cheng1606e8e2009-03-13 07:51:59 +0000556 unsigned Offset = 0;
557 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
558 unsigned CPI = CPSections[i].CPEs[j];
559 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000560
Chris Lattner3029f922006-02-09 04:46:04 +0000561 // Emit inter-object padding for alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000562 unsigned AlignMask = CPE.getAlignment() - 1;
563 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
Chris Lattneraaec2052010-01-19 19:46:13 +0000564 OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000565
566 const Type *Ty = CPE.getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000567 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000568
Chris Lattner39248682010-01-23 05:19:23 +0000569 // Emit the label with a comment on it.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000570 if (VerboseAsm) {
Chris Lattner39248682010-01-23 05:19:23 +0000571 OutStreamer.GetCommentOS() << "constant pool ";
572 WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(),
573 MF->getFunction()->getParent());
574 OutStreamer.GetCommentOS() << '\n';
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000575 }
Chris Lattner39248682010-01-23 05:19:23 +0000576 OutStreamer.EmitLabel(GetCPISymbol(CPI));
577
Evan Cheng1606e8e2009-03-13 07:51:59 +0000578 if (CPE.isMachineConstantPoolEntry())
579 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
580 else
581 EmitGlobalConstant(CPE.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000582 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000583 }
584}
585
Nate Begeman37efe672006-04-22 18:53:45 +0000586/// EmitJumpTableInfo - Print assembly representations of the jump tables used
587/// by the current function to the current output stream.
588///
Chris Lattner14c38ec2010-01-28 01:02:27 +0000589void AsmPrinter::EmitJumpTableInfo() {
590 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
Chris Lattner44e87252010-01-25 22:41:33 +0000591 if (MJTI == 0) return;
Nate Begeman37efe672006-04-22 18:53:45 +0000592 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
593 if (JT.empty()) return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000594
Nate Begeman2f1ae882006-07-27 01:13:04 +0000595 // Pick the directive to use to print the jump table entries, and switch to
596 // the appropriate section.
Chris Lattner14c38ec2010-01-28 01:02:27 +0000597 const Function *F = MF->getFunction();
Evan Chengb13bafe2009-06-18 20:37:15 +0000598 bool JTInDiffSection = false;
Chris Lattnerf1214cb2010-01-26 06:53:37 +0000599 if (// In PIC mode, we need to emit the jump table to the same section as the
600 // function body itself, otherwise the label differences won't make sense.
601 // FIXME: Need a better predicate for this: what about custom entries?
602 MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 ||
603 // We should also do if the section name is NULL or function is declared
604 // in discardable section
605 // FIXME: this isn't the right predicate, should be based on the MCSection
606 // for the function.
607 F->isWeakForLinker()) {
Chris Lattner14c38ec2010-01-28 01:02:27 +0000608 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F,Mang,TM));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000609 } else {
Chris Lattner83d77fa2009-08-01 23:46:12 +0000610 // Otherwise, drop it in the readonly section.
611 const MCSection *ReadOnlySection =
Chris Lattner27981192009-08-01 23:57:16 +0000612 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000613 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengb13bafe2009-06-18 20:37:15 +0000614 JTInDiffSection = true;
Nate Begeman2f1ae882006-07-27 01:13:04 +0000615 }
Chris Lattner071c62f2010-01-25 23:26:13 +0000616
Chris Lattner071c62f2010-01-25 23:26:13 +0000617 EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getTargetData())));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000618
Chris Lattner3b131d72010-01-26 06:42:44 +0000619 for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
620 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000621
622 // If this jump table was deleted, ignore it.
623 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000624
Chris Lattnere35df922010-01-26 05:15:20 +0000625 // For the EK_LabelDifference32 entry, if the target supports .set, emit a
626 // .set directive for each unique entry. This reduces the number of
627 // relocations the assembler will generate for the jump table.
628 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
Chris Lattnercee63322010-01-26 20:40:54 +0000629 MAI->hasSetDirective()) {
Chris Lattner3b131d72010-01-26 06:42:44 +0000630 SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
631 const TargetLowering *TLI = TM.getTargetLowering();
Chris Lattner14c38ec2010-01-28 01:02:27 +0000632 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext);
Chris Lattner3b131d72010-01-26 06:42:44 +0000633 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
634 const MachineBasicBlock *MBB = JTBBs[ii];
635 if (!EmittedSets.insert(MBB)) continue;
636
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000637 // .set LJTSet, LBB32-base
638 const MCExpr *LHS =
639 MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
640 OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
641 MCBinaryExpr::CreateSub(LHS, Base, OutContext));
Chris Lattner3b131d72010-01-26 06:42:44 +0000642 }
643 }
Nate Begeman52a51e382006-08-12 21:29:52 +0000644
Chris Lattner7c301912009-09-13 19:02:16 +0000645 // On some targets (e.g. Darwin) we want to emit two consequtive labels
Chris Lattner393a8ee2007-01-18 01:12:56 +0000646 // before each jump table. The first label is never referenced, but tells
647 // the assembler and linker the extents of the jump table object. The
648 // second label is actually referenced by the code.
Chris Lattner39248682010-01-23 05:19:23 +0000649 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
Chris Lattnerbeeb93e2010-01-26 05:58:28 +0000650 // FIXME: This doesn't have to have any specific name, just any randomly
651 // named and numbered 'l' label would work. Simplify GetJTISymbol.
Chris Lattner3b131d72010-01-26 06:42:44 +0000652 OutStreamer.EmitLabel(GetJTISymbol(JTI, true));
Chris Lattner39248682010-01-23 05:19:23 +0000653
Chris Lattner3b131d72010-01-26 06:42:44 +0000654 OutStreamer.EmitLabel(GetJTISymbol(JTI));
Chris Lattner39248682010-01-23 05:19:23 +0000655
Chris Lattner6bf1def2010-01-26 05:10:10 +0000656 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Chris Lattner3b131d72010-01-26 06:42:44 +0000657 EmitJumpTableEntry(MJTI, JTBBs[ii], JTI);
Nate Begeman37efe672006-04-22 18:53:45 +0000658 }
659}
660
Chris Lattner6bf1def2010-01-26 05:10:10 +0000661/// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
662/// current stream.
663void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
664 const MachineBasicBlock *MBB,
665 unsigned UID) const {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000666 const MCExpr *Value = 0;
667 switch (MJTI->getEntryKind()) {
Chris Lattner85fe0782010-01-26 04:05:28 +0000668 case MachineJumpTableInfo::EK_Custom32:
Chris Lattner6bf1def2010-01-26 05:10:10 +0000669 Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
Chris Lattner85fe0782010-01-26 04:05:28 +0000670 OutContext);
671 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000672 case MachineJumpTableInfo::EK_BlockAddress:
673 // EK_BlockAddress - Each entry is a plain address of block, e.g.:
674 // .word LBB123
Chris Lattnerf71cb012010-01-26 04:55:51 +0000675 Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000676 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000677 case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
678 // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
679 // with a relocation as gp-relative, e.g.:
680 // .gprel32 LBB123
Chris Lattnerf71cb012010-01-26 04:55:51 +0000681 MCSymbol *MBBSym = MBB->getSymbol(OutContext);
Chris Lattner718fb592010-01-25 21:28:50 +0000682 OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
Chris Lattner78f485a2010-01-25 21:10:10 +0000683 return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000684 }
Chris Lattner85fe0782010-01-26 04:05:28 +0000685
Chris Lattnerff537ce2010-01-26 03:43:22 +0000686 case MachineJumpTableInfo::EK_LabelDifference32: {
687 // EK_LabelDifference32 - Each entry is the address of the block minus
688 // the address of the jump table. This is used for PIC jump tables where
689 // gprel32 is not supported. e.g.:
690 // .word LBB123 - LJTI1_2
691 // If the .set directive is supported, this is emitted as:
692 // .set L4_5_set_123, LBB123 - LJTI1_2
693 // .word L4_5_set_123
694
695 // If we have emitted set directives for the jump table entries, print
696 // them rather than the entries themselves. If we're emitting PIC, then
697 // emit the table entries as differences between two text section labels.
Chris Lattnercee63322010-01-26 20:40:54 +0000698 if (MAI->hasSetDirective()) {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000699 // If we used .set, reference the .set's symbol.
Chris Lattner6bf1def2010-01-26 05:10:10 +0000700 Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
Chris Lattnerff537ce2010-01-26 03:43:22 +0000701 OutContext);
702 break;
703 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000704 // Otherwise, use the difference as the jump table entry.
Chris Lattnerf71cb012010-01-26 04:55:51 +0000705 Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
Chris Lattner6bf1def2010-01-26 05:10:10 +0000706 const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000707 Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
708 break;
709 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000710 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000711
Chris Lattnerff537ce2010-01-26 03:43:22 +0000712 assert(Value && "Unknown entry kind!");
713
Chris Lattner071c62f2010-01-25 23:26:13 +0000714 unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData());
Chris Lattnerff537ce2010-01-26 03:43:22 +0000715 OutStreamer.EmitValue(Value, EntrySize, /*addrspace*/0);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000716}
717
718
Chris Lattnered138932005-12-13 06:32:10 +0000719/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
720/// special global used by LLVM. If so, emit it and return true, otherwise
721/// do nothing and return false.
722bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000723 if (GV->getName() == "llvm.used") {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000724 if (MAI->hasNoDeadStrip()) // No need to emit this at all.
Andrew Lenharthb753a9b2007-08-22 19:33:11 +0000725 EmitLLVMUsedList(GV->getInitializer());
726 return true;
727 }
728
Chris Lattner401e10c2009-07-20 06:14:25 +0000729 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000730 if (GV->getSection() == "llvm.metadata" ||
731 GV->hasAvailableExternallyLinkage())
732 return true;
Jim Laskey78098112006-03-07 22:00:35 +0000733
734 if (!GV->hasAppendingLinkage()) return false;
735
736 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000737
Evan Cheng916d07c2007-06-04 20:39:18 +0000738 const TargetData *TD = TM.getTargetData();
739 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattnerf231c072009-03-09 05:52:15 +0000740 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000741 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000742 EmitAlignment(Align, 0);
743 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000744
745 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000746 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
747 StringRef Sym(".constructors_used");
748 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000749 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000750 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000751 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000752 }
753
Chris Lattnerf231c072009-03-09 05:52:15 +0000754 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000755 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000756 EmitAlignment(Align, 0);
757 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000758
759 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000760 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
761 StringRef Sym(".destructors_used");
762 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000763 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000764 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000765 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000766 }
767
768 return false;
769}
770
Chris Lattner33adcfb2009-08-22 21:43:10 +0000771/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesend2e51af2008-09-09 22:29:13 +0000772/// global in the specified llvm.used list for which emitUsedDirectiveFor
773/// is true, as being used with this directive.
Chris Lattnercb05af82006-09-26 03:38:18 +0000774void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Dan Gohmana119de82009-06-14 23:30:43 +0000775 // Should be an array of 'i8*'.
Chris Lattnercb05af82006-09-26 03:38:18 +0000776 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
777 if (InitList == 0) return;
778
779 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner16fe9902009-07-17 22:00:23 +0000780 const GlobalValue *GV =
781 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000782 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
783 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(GV),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000784 MCSA_NoDeadStrip);
Chris Lattnercb05af82006-09-26 03:38:18 +0000785 }
786}
787
Chris Lattnered138932005-12-13 06:32:10 +0000788/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
789/// function pointers, ignoring the init priority.
790void AsmPrinter::EmitXXStructorList(Constant *List) {
791 // Should be an array of '{ int, void ()* }' structs. The first value is the
792 // init priority, which we ignore.
793 if (!isa<ConstantArray>(List)) return;
794 ConstantArray *InitList = cast<ConstantArray>(List);
795 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
796 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
797 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000798
799 if (CS->getOperand(1)->isNullValue())
800 return; // Found a null terminator, exit printing.
801 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000802 EmitGlobalConstant(CS->getOperand(1));
803 }
804}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000805
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000806//===--------------------------------------------------------------------===//
807// Emission and print routines
808//
809
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000810/// EmitInt8 - Emit a byte directive and value.
811///
812void AsmPrinter::EmitInt8(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000813 OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000814}
815
816/// EmitInt16 - Emit a short directive and value.
817///
818void AsmPrinter::EmitInt16(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000819 OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000820}
821
822/// EmitInt32 - Emit a long directive and value.
823///
824void AsmPrinter::EmitInt32(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000825 OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000826}
827
828/// EmitInt64 - Emit a long long directive and value.
829///
830void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000831 OutStreamer.EmitIntValue(Value, 8, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000832}
833
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000834//===----------------------------------------------------------------------===//
835
Chris Lattner3a420532007-05-31 18:57:45 +0000836// EmitAlignment - Emit an alignment directive to the specified power of
837// two boundary. For example, if you pass in 3 here, you will get an 8
838// byte alignment. If a global value is specified, and if that global has
839// an explicit alignment requested, it will unconditionally override the
840// alignment request. However, if ForcedAlignBits is specified, this value
841// has final say: the ultimate alignment will be the max of ForcedAlignBits
842// and the alignment computed with NumBits and the global.
843//
844// The algorithm is:
845// Align = NumBits;
846// if (GV && GV->hasalignment) Align = GV->getalignment();
847// Align = std::max(Align, ForcedAlignBits);
848//
849void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng05548eb2008-02-29 19:36:59 +0000850 unsigned ForcedAlignBits,
851 bool UseFillExpr) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000852 if (GV && GV->getAlignment())
Chris Lattner3a420532007-05-31 18:57:45 +0000853 NumBits = Log2_32(GV->getAlignment());
854 NumBits = std::max(NumBits, ForcedAlignBits);
855
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000856 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner663c2d22009-08-19 06:12:02 +0000857
858 unsigned FillValue = 0;
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000859 if (getCurrentSection()->getKind().isText())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000860 FillValue = MAI->getTextAlignFillValue();
Chris Lattner663c2d22009-08-19 06:12:02 +0000861
862 OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
Chris Lattnerbfddc202004-08-17 19:14:29 +0000863}
David Greenea5bb59f2009-08-05 21:00:52 +0000864
Chris Lattner52492ac2010-01-23 06:17:14 +0000865/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
866///
867static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
868 MCContext &Ctx = AP.OutContext;
869
870 if (CV->isNullValue() || isa<UndefValue>(CV))
871 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000872
Chris Lattner52492ac2010-01-23 06:17:14 +0000873 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
874 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000875
Chris Lattner52492ac2010-01-23 06:17:14 +0000876 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
877 return MCSymbolRefExpr::Create(AP.GetGlobalValueSymbol(GV), Ctx);
878 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
879 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000880
881 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
882 if (CE == 0) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000883 llvm_unreachable("Unknown constant value to lower!");
884 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000885 }
886
887 switch (CE->getOpcode()) {
888 case Instruction::ZExt:
889 case Instruction::SExt:
890 case Instruction::FPTrunc:
891 case Instruction::FPExt:
892 case Instruction::UIToFP:
893 case Instruction::SIToFP:
894 case Instruction::FPToUI:
895 case Instruction::FPToSI:
Chris Lattner52492ac2010-01-23 06:17:14 +0000896 default: llvm_unreachable("FIXME: Don't support this constant cast expr");
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000897 case Instruction::GetElementPtr: {
Chris Lattner52492ac2010-01-23 06:17:14 +0000898 const TargetData &TD = *AP.TM.getTargetData();
899 // Generate a symbolic expression for the byte address
900 const Constant *PtrVal = CE->getOperand(0);
901 SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
902 int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0],
903 IdxVec.size());
904
905 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000906 if (Offset == 0)
Chris Lattner52492ac2010-01-23 06:17:14 +0000907 return Base;
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000908
909 // Truncate/sext the offset to the pointer size.
Chris Lattner52492ac2010-01-23 06:17:14 +0000910 if (TD.getPointerSizeInBits() != 64) {
911 int SExtAmount = 64-TD.getPointerSizeInBits();
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000912 Offset = (Offset << SExtAmount) >> SExtAmount;
913 }
914
Chris Lattner52492ac2010-01-23 06:17:14 +0000915 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
916 Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000917 }
918
919 case Instruction::Trunc:
920 // We emit the value and depend on the assembler to truncate the generated
921 // expression properly. This is important for differences between
922 // blockaddress labels. Since the two labels are in the same function, it
923 // is reasonable to treat their delta as a 32-bit value.
Chris Lattner52492ac2010-01-23 06:17:14 +0000924 // FALL THROUGH.
925 case Instruction::BitCast:
926 return LowerConstant(CE->getOperand(0), AP);
927
928 case Instruction::IntToPtr: {
929 const TargetData &TD = *AP.TM.getTargetData();
930 // Handle casts to pointers by changing them into casts to the appropriate
931 // integer type. This promotes constant folding and simplifies this code.
932 Constant *Op = CE->getOperand(0);
933 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
934 false/*ZExt*/);
935 return LowerConstant(Op, AP);
936 }
937
938 case Instruction::PtrToInt: {
939 const TargetData &TD = *AP.TM.getTargetData();
940 // Support only foldable casts to/from pointers that can be eliminated by
941 // changing the pointer to the appropriately sized integer type.
942 Constant *Op = CE->getOperand(0);
943 const Type *Ty = CE->getType();
944
945 const MCExpr *OpExpr = LowerConstant(Op, AP);
946
947 // We can emit the pointer value into this slot if the slot is an
948 // integer slot equal to the size of the pointer.
949 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
950 return OpExpr;
951
952 // Otherwise the pointer is smaller than the resultant integer, mask off
953 // the high bits so we are sure to get a proper truncation if the input is
954 // a constant expr.
955 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
956 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
957 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
958 }
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000959
960 case Instruction::Add:
961 case Instruction::Sub:
962 case Instruction::And:
963 case Instruction::Or:
Chris Lattner52492ac2010-01-23 06:17:14 +0000964 case Instruction::Xor: {
965 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
966 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000967 switch (CE->getOpcode()) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000968 default: llvm_unreachable("Unknown binary operator constant cast expr");
969 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
970 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
971 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
972 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
973 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000974 }
Chris Lattner52492ac2010-01-23 06:17:14 +0000975 }
Chris Lattnera80ba712004-08-16 23:15:22 +0000976 }
977}
Chris Lattner1b7e2352004-08-17 06:36:49 +0000978
Chris Lattner91093ec2010-01-19 19:10:44 +0000979static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
980 AsmPrinter &AP) {
Chris Lattner05f84532010-01-23 04:54:10 +0000981 if (AddrSpace != 0 || !CA->isString()) {
982 // Not a string. Print the values in successive locations
Chris Lattner91093ec2010-01-19 19:10:44 +0000983 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
984 AP.EmitGlobalConstant(CA->getOperand(i), AddrSpace);
Chris Lattner05f84532010-01-23 04:54:10 +0000985 return;
Dan Gohman00d448a2008-12-22 21:14:27 +0000986 }
Chris Lattner05f84532010-01-23 04:54:10 +0000987
988 // Otherwise, it can be emitted as .ascii.
989 SmallVector<char, 128> TmpVec;
990 TmpVec.reserve(CA->getNumOperands());
991 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
992 TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
993
994 AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000995}
996
Chris Lattner91093ec2010-01-19 19:10:44 +0000997static void EmitGlobalConstantVector(const ConstantVector *CV,
998 unsigned AddrSpace, AsmPrinter &AP) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000999 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
Chris Lattner91093ec2010-01-19 19:10:44 +00001000 AP.EmitGlobalConstant(CV->getOperand(i), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001001}
1002
Chris Lattner91093ec2010-01-19 19:10:44 +00001003static void EmitGlobalConstantStruct(const ConstantStruct *CS,
1004 unsigned AddrSpace, AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001005 // Print the fields in successive locations. Pad to align if needed!
Chris Lattner91093ec2010-01-19 19:10:44 +00001006 const TargetData *TD = AP.TM.getTargetData();
1007 unsigned Size = TD->getTypeAllocSize(CS->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001008 const StructLayout *Layout = TD->getStructLayout(CS->getType());
Chris Lattner91093ec2010-01-19 19:10:44 +00001009 uint64_t SizeSoFar = 0;
1010 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001011 const Constant *Field = CS->getOperand(i);
Dan Gohman00d448a2008-12-22 21:14:27 +00001012
1013 // Check if padding is needed and insert one or more 0s.
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001014 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001015 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
1016 - Layout->getElementOffset(i)) - FieldSize;
1017 SizeSoFar += FieldSize + PadSize;
Dan Gohman00d448a2008-12-22 21:14:27 +00001018
1019 // Now print the actual field value.
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001020 AP.EmitGlobalConstant(Field, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001021
1022 // Insert padding - this may include padding to increase the size of the
1023 // current field up to the ABI size (if the struct is not packed) as well
1024 // as padding to ensure that the next field starts at the right offset.
Chris Lattner2dd245c2010-01-20 07:11:32 +00001025 AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001026 }
Chris Lattner2dd245c2010-01-20 07:11:32 +00001027 assert(SizeSoFar == Layout->getSizeInBytes() &&
Dan Gohman00d448a2008-12-22 21:14:27 +00001028 "Layout of constant struct may be incorrect!");
1029}
1030
Chris Lattner2dd245c2010-01-20 07:11:32 +00001031static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
1032 AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001033 // FP Constants are printed as integer constants to avoid losing
Chris Lattner9ceff942010-01-20 06:53:37 +00001034 // precision.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001035 if (CFP->getType()->isDoubleTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001036 if (AP.VerboseAsm) {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +00001037 double Val = CFP->getValueAPF().convertToDouble();
1038 AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
Chris Lattner09ce6742010-01-19 22:16:33 +00001039 }
1040
Chris Lattner2dd245c2010-01-20 07:11:32 +00001041 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1042 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001043 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001044 }
1045
1046 if (CFP->getType()->isFloatTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001047 if (AP.VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001048 float Val = CFP->getValueAPF().convertToFloat();
1049 AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
Dan Gohmana12e9d72009-08-12 18:32:22 +00001050 }
Chris Lattner2dd245c2010-01-20 07:11:32 +00001051 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1052 AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001053 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001054 }
1055
1056 if (CFP->getType()->isX86_FP80Ty()) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001057 // all long double variants are printed as hex
1058 // api needed to prevent premature destruction
Chris Lattner09ce6742010-01-19 22:16:33 +00001059 APInt API = CFP->getValueAPF().bitcastToAPInt();
1060 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +00001061 if (AP.VerboseAsm) {
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001062 // Convert to double so we can print the approximate val as a comment.
1063 APFloat DoubleVal = CFP->getValueAPF();
1064 bool ignored;
1065 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
1066 &ignored);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001067 AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
1068 << DoubleVal.convertToDouble() << '\n';
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001069 }
1070
Chris Lattner2dd245c2010-01-20 07:11:32 +00001071 if (AP.TM.getTargetData()->isBigEndian()) {
1072 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
1073 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001074 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001075 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1076 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001077 }
Chris Lattner9ceff942010-01-20 06:53:37 +00001078
1079 // Emit the tail padding for the long double.
Chris Lattner2dd245c2010-01-20 07:11:32 +00001080 const TargetData &TD = *AP.TM.getTargetData();
1081 AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
1082 TD.getTypeStoreSize(CFP->getType()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001083 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001084 }
1085
Chris Lattner09ce6742010-01-19 22:16:33 +00001086 assert(CFP->getType()->isPPC_FP128Ty() &&
1087 "Floating point constant type not handled");
1088 // All long double variants are printed as hex api needed to prevent
1089 // premature destruction.
1090 APInt API = CFP->getValueAPF().bitcastToAPInt();
1091 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +00001092 if (AP.TM.getTargetData()->isBigEndian()) {
1093 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1094 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
Chris Lattner9ceff942010-01-20 06:53:37 +00001095 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001096 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
1097 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner09ce6742010-01-19 22:16:33 +00001098 }
Dan Gohman00d448a2008-12-22 21:14:27 +00001099}
1100
Chris Lattner2dd245c2010-01-20 07:11:32 +00001101static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
1102 unsigned AddrSpace, AsmPrinter &AP) {
1103 const TargetData *TD = AP.TM.getTargetData();
Dan Gohman00d448a2008-12-22 21:14:27 +00001104 unsigned BitWidth = CI->getBitWidth();
Chris Lattner38c2b0a2010-01-13 04:39:46 +00001105 assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
Dan Gohman00d448a2008-12-22 21:14:27 +00001106
1107 // We don't expect assemblers to support integer data directives
1108 // for more than 64 bits, so we emit the data in at most 64-bit
1109 // quantities at a time.
1110 const uint64_t *RawData = CI->getValue().getRawData();
1111 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001112 uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1113 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001114 }
1115}
1116
Chris Lattner25045bd2005-11-21 07:51:36 +00001117/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001118void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Chris Lattner043c4e52010-01-20 07:19:19 +00001119 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001120 uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
Chris Lattner6449abf2010-01-19 21:51:22 +00001121 return OutStreamer.EmitZeros(Size, AddrSpace);
Chris Lattner2dd245c2010-01-20 07:11:32 +00001122 }
1123
1124 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1125 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1126 switch (Size) {
1127 case 1:
1128 case 2:
1129 case 4:
1130 case 8:
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001131 if (VerboseAsm)
1132 OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001133 OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1134 return;
1135 default:
1136 EmitGlobalConstantLargeInt(CI, AddrSpace, *this);
1137 return;
1138 }
1139 }
Chris Lattner3cc3a002010-01-13 04:34:19 +00001140
Chris Lattner91093ec2010-01-19 19:10:44 +00001141 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1142 return EmitGlobalConstantArray(CVA, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001143
Chris Lattner91093ec2010-01-19 19:10:44 +00001144 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1145 return EmitGlobalConstantStruct(CVS, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001146
Chris Lattner91093ec2010-01-19 19:10:44 +00001147 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
Chris Lattner2dd245c2010-01-20 07:11:32 +00001148 return EmitGlobalConstantFP(CFP, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001149
Chris Lattner91093ec2010-01-19 19:10:44 +00001150 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1151 return EmitGlobalConstantVector(V, AddrSpace, *this);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001152
Chris Lattnerb0bedd62010-01-20 17:57:50 +00001153 if (isa<ConstantPointerNull>(CV)) {
1154 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1155 OutStreamer.EmitIntValue(0, Size, AddrSpace);
1156 return;
1157 }
1158
Chris Lattner52492ac2010-01-23 06:17:14 +00001159 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it
1160 // thread the streamer with EmitValue.
1161 OutStreamer.EmitValue(LowerConstant(CV, *this),
1162 TM.getTargetData()->getTypeAllocSize(CV->getType()),
1163 AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001164}
Chris Lattner0264d1a2006-01-27 02:10:10 +00001165
Chris Lattnerfad86b02008-08-17 07:19:36 +00001166void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001167 // Target doesn't support this yet!
Torok Edwinc23197a2009-07-14 16:55:14 +00001168 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Evan Chengd6594ae2006-09-12 21:00:35 +00001169}
1170
Chris Lattner3ce9b672006-09-26 23:59:50 +00001171/// PrintSpecial - Print information related to the specified machine instr
1172/// that is independent of the operand, and may be independent of the instr
1173/// itself. This can be useful for portably encoding the comment character
1174/// or other bits of target-specific knowledge into the asmstrings. The
1175/// syntax used is ${:comment}. Targets can override this to add support
1176/// for their own strange codes.
Chris Lattner3e0cc262009-03-10 05:37:13 +00001177void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001178 if (!strcmp(Code, "private")) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001179 O << MAI->getPrivateGlobalPrefix();
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001180 } else if (!strcmp(Code, "comment")) {
Evan Chengf1c0ae92009-03-24 00:17:40 +00001181 if (VerboseAsm)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001182 O << MAI->getCommentString();
Chris Lattner3ce9b672006-09-26 23:59:50 +00001183 } else if (!strcmp(Code, "uid")) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001184 // Comparing the address of MI isn't sufficient, because machineinstrs may
1185 // be allocated to the same address across functions.
1186 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1187
Owen Andersonbd58edf2009-06-24 22:28:12 +00001188 // If this is a new LastFn instruction, bump the counter.
1189 if (LastMI != MI || LastFn != ThisF) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001190 ++Counter;
1191 LastMI = MI;
Owen Andersonbd58edf2009-06-24 22:28:12 +00001192 LastFn = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001193 }
Chris Lattner3ce9b672006-09-26 23:59:50 +00001194 O << Counter;
1195 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001196 std::string msg;
1197 raw_string_ostream Msg(msg);
1198 Msg << "Unknown special formatter '" << Code
Bill Wendlinge8156192006-12-07 01:30:32 +00001199 << "' for machine instr: " << *MI;
Torok Edwin7d696d82009-07-11 13:10:19 +00001200 llvm_report_error(Msg.str());
Chris Lattner3ce9b672006-09-26 23:59:50 +00001201 }
1202}
1203
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001204/// processDebugLoc - Processes the debug information of each machine
1205/// instruction's DebugLoc.
Devang Patelaf0e2722009-10-06 02:19:11 +00001206void AsmPrinter::processDebugLoc(const MachineInstr *MI,
1207 bool BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001208 if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1209 || !DW->ShouldEmitDwarfDebug())
Chris Lattnerd2503292009-08-05 04:09:18 +00001210 return;
Devang Patelb0fdedb2009-09-30 23:12:50 +00001211 DebugLoc DL = MI->getDebugLoc();
Devang Patel53bb5c92009-11-10 23:06:00 +00001212 if (DL.isUnknown())
1213 return;
Devang Patel6b61f582010-01-16 06:09:35 +00001214 DILocation CurDLT = MF->getDILocation(DL);
1215 if (CurDLT.getScope().isNull())
Devang Patel53bb5c92009-11-10 23:06:00 +00001216 return;
1217
Chris Lattner043c4e52010-01-20 07:19:19 +00001218 if (!BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001219 // After printing instruction
1220 DW->EndScope(MI);
Chris Lattner043c4e52010-01-20 07:19:19 +00001221 } else if (CurDLT.getNode() != PrevDLT) {
1222 unsigned L = DW->RecordSourceLine(CurDLT.getLineNumber(),
1223 CurDLT.getColumnNumber(),
1224 CurDLT.getScope().getNode());
1225 printLabel(L);
1226 O << '\n';
1227 DW->BeginScope(MI, L);
1228 PrevDLT = CurDLT.getNode();
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001229 }
1230}
Chris Lattner3ce9b672006-09-26 23:59:50 +00001231
Devang Patel53bb5c92009-11-10 23:06:00 +00001232
Chris Lattner0264d1a2006-01-27 02:10:10 +00001233/// printInlineAsm - This method formats and prints the specified machine
1234/// instruction that is an inline asm.
1235void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001236 unsigned NumOperands = MI->getNumOperands();
1237
1238 // Count the number of register definitions.
1239 unsigned NumDefs = 0;
Dan Gohmand735b802008-10-03 15:45:36 +00001240 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Chris Lattner67942f52006-09-05 20:02:51 +00001241 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001242 assert(NumDefs != NumOperands-1 && "No asm string?");
1243
Dan Gohmand735b802008-10-03 15:45:36 +00001244 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +00001245
1246 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001247 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +00001248
Dan Gohman40c57862009-11-06 00:04:54 +00001249 O << '\t';
1250
Dale Johannesenba2a0b92008-01-29 02:21:21 +00001251 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1252 // These are useful to see where empty asm's wound up.
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001253 if (AsmStr[0] == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001254 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1255 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001256 return;
1257 }
1258
Chris Lattner33adcfb2009-08-22 21:43:10 +00001259 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001260
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001261 // The variant of the current asmprinter.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001262 int AsmPrinterVariant = MAI->getAssemblerDialect();
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001263
Chris Lattner66099132006-02-01 22:41:11 +00001264 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1265 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +00001266
Chris Lattner66099132006-02-01 22:41:11 +00001267 while (*LastEmitted) {
1268 switch (*LastEmitted) {
1269 default: {
1270 // Not a special case, emit the string section literally.
1271 const char *LiteralEnd = LastEmitted+1;
1272 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +00001273 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +00001274 ++LiteralEnd;
1275 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1276 O.write(LastEmitted, LiteralEnd-LastEmitted);
1277 LastEmitted = LiteralEnd;
1278 break;
1279 }
Chris Lattner1c059972006-05-05 21:47:05 +00001280 case '\n':
1281 ++LastEmitted; // Consume newline character.
Dan Gohmand19a53b2008-06-30 22:03:41 +00001282 O << '\n'; // Indent code with newline.
Chris Lattner1c059972006-05-05 21:47:05 +00001283 break;
Chris Lattner66099132006-02-01 22:41:11 +00001284 case '$': {
1285 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001286 bool Done = true;
1287
1288 // Handle escapes.
1289 switch (*LastEmitted) {
1290 default: Done = false; break;
1291 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +00001292 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1293 O << '$';
1294 ++LastEmitted; // Consume second '$' character.
1295 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001296 case '(': // $( -> same as GCC's { character.
1297 ++LastEmitted; // Consume '(' character.
1298 if (CurVariant != -1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001299 llvm_report_error("Nested variants found in inline asm string: '"
1300 + std::string(AsmStr) + "'");
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001301 }
1302 CurVariant = 0; // We're in the first variant now.
1303 break;
1304 case '|':
1305 ++LastEmitted; // consume '|' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001306 if (CurVariant == -1)
1307 O << '|'; // this is gcc's behavior for | outside a variant
1308 else
1309 ++CurVariant; // We're in the next variant.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001310 break;
1311 case ')': // $) -> same as GCC's } char.
1312 ++LastEmitted; // consume ')' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001313 if (CurVariant == -1)
1314 O << '}'; // this is gcc's behavior for } outside a variant
1315 else
1316 CurVariant = -1;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001317 break;
Chris Lattner66099132006-02-01 22:41:11 +00001318 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001319 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +00001320
1321 bool HasCurlyBraces = false;
1322 if (*LastEmitted == '{') { // ${variable}
1323 ++LastEmitted; // Consume '{' character.
1324 HasCurlyBraces = true;
1325 }
1326
Chris Lattner3e0cc262009-03-10 05:37:13 +00001327 // If we have ${:foo}, then this is not a real operand reference, it is a
1328 // "magic" string reference, just like in .td files. Arrange to call
1329 // PrintSpecial.
1330 if (HasCurlyBraces && *LastEmitted == ':') {
1331 ++LastEmitted;
1332 const char *StrStart = LastEmitted;
1333 const char *StrEnd = strchr(StrStart, '}');
1334 if (StrEnd == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001335 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1336 + std::string(AsmStr) + "'");
Chris Lattner3e0cc262009-03-10 05:37:13 +00001337 }
1338
1339 std::string Val(StrStart, StrEnd);
1340 PrintSpecial(MI, Val.c_str());
1341 LastEmitted = StrEnd+1;
1342 break;
1343 }
1344
Chris Lattner66099132006-02-01 22:41:11 +00001345 const char *IDStart = LastEmitted;
1346 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +00001347 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +00001348 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1349 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001350 llvm_report_error("Bad $ operand number in inline asm string: '"
1351 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001352 }
1353 LastEmitted = IDEnd;
1354
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001355 char Modifier[2] = { 0, 0 };
1356
Chris Lattner66099132006-02-01 22:41:11 +00001357 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001358 // If we have curly braces, check for a modifier character. This
1359 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1360 if (*LastEmitted == ':') {
1361 ++LastEmitted; // Consume ':' character.
1362 if (*LastEmitted == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001363 llvm_report_error("Bad ${:} expression in inline asm string: '"
1364 + std::string(AsmStr) + "'");
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001365 }
1366
1367 Modifier[0] = *LastEmitted;
1368 ++LastEmitted; // Consume modifier character.
1369 }
1370
Chris Lattner66099132006-02-01 22:41:11 +00001371 if (*LastEmitted != '}') {
Torok Edwin7d696d82009-07-11 13:10:19 +00001372 llvm_report_error("Bad ${} expression in inline asm string: '"
1373 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001374 }
1375 ++LastEmitted; // Consume '}' character.
1376 }
1377
1378 if ((unsigned)Val >= NumOperands-1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001379 llvm_report_error("Invalid $ operand number in inline asm string: '"
1380 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001381 }
1382
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001383 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001384 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001385 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1386 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001387
1388 bool Error = false;
1389
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001390 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001391 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001392 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner9e330492007-12-30 20:50:28 +00001393 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng697cbbf2009-03-20 18:03:34 +00001394 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001395 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001396
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001397 if (OpNo >= MI->getNumOperands()) {
1398 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001399 } else {
Chris Lattner9e330492007-12-30 20:50:28 +00001400 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001401 ++OpNo; // Skip over the ID number.
1402
Chris Lattner10b318b2010-01-17 21:43:43 +00001403 if (Modifier[0] == 'l') // labels are target independent
Chris Lattnerf71cb012010-01-26 04:55:51 +00001404 O << *MI->getOperand(OpNo).getMBB()->getSymbol(OutContext);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001405 else {
1406 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen86b49f82008-09-24 01:07:17 +00001407 if ((OpFlags & 7) == 4) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001408 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1409 Modifier[0] ? Modifier : 0);
1410 } else {
1411 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1412 Modifier[0] ? Modifier : 0);
1413 }
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001414 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001415 }
1416 if (Error) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001417 std::string msg;
1418 raw_string_ostream Msg(msg);
Chris Lattner10b318b2010-01-17 21:43:43 +00001419 Msg << "Invalid operand found in inline asm: '" << AsmStr << "'\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00001420 MI->print(Msg);
1421 llvm_report_error(Msg.str());
Chris Lattner66099132006-02-01 22:41:11 +00001422 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001423 }
Chris Lattner66099132006-02-01 22:41:11 +00001424 break;
1425 }
Chris Lattner66099132006-02-01 22:41:11 +00001426 }
1427 }
Chris Lattnerf64159c842010-02-03 01:46:05 +00001428 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattner66099132006-02-01 22:41:11 +00001429}
1430
Evan Chengda47e6e2008-03-15 00:03:38 +00001431/// printImplicitDef - This method prints the specified machine instruction
1432/// that is an implicit def.
1433void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001434 if (!VerboseAsm) return;
1435 O.PadToColumn(MAI->getCommentColumn());
1436 O << MAI->getCommentString() << " implicit-def: "
Chris Lattnerf64159c842010-02-03 01:46:05 +00001437 << TRI->getName(MI->getOperand(0).getReg()) << '\n';
Evan Chengda47e6e2008-03-15 00:03:38 +00001438}
1439
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001440void AsmPrinter::printKill(const MachineInstr *MI) const {
1441 if (!VerboseAsm) return;
1442 O.PadToColumn(MAI->getCommentColumn());
1443 O << MAI->getCommentString() << " kill:";
1444 for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1445 const MachineOperand &op = MI->getOperand(n);
1446 assert(op.isReg() && "KILL instruction must have only register operands");
1447 O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1448 }
Chris Lattnerf64159c842010-02-03 01:46:05 +00001449 O << '\n';
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001450}
1451
Jim Laskey1ee29252007-01-26 14:34:52 +00001452/// printLabel - This method prints a local label used by debug and
1453/// exception handling tables.
Chris Lattnerf64159c842010-02-03 01:46:05 +00001454void AsmPrinter::printLabelInst(const MachineInstr *MI) const {
Dan Gohman528bc022008-07-01 00:16:26 +00001455 printLabel(MI->getOperand(0).getImm());
Chris Lattnerf64159c842010-02-03 01:46:05 +00001456 O << '\n';
Jim Laskey1ee29252007-01-26 14:34:52 +00001457}
1458
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001459void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001460 O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001461}
1462
Chris Lattner66099132006-02-01 22:41:11 +00001463/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1464/// instruction, using the specified assembler variant. Targets should
Dale Johannesencf0b7662010-01-14 21:50:17 +00001465/// override this to format as appropriate.
Chris Lattner66099132006-02-01 22:41:11 +00001466bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001467 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001468 // Target doesn't support this yet!
1469 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001470}
Chris Lattnerdd260332006-02-24 20:21:58 +00001471
1472bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1473 unsigned AsmVariant,
1474 const char *ExtraCode) {
1475 // Target doesn't support this yet!
1476 return true;
1477}
Nate Begeman37efe672006-04-22 18:53:45 +00001478
Dan Gohman29cbade2009-11-20 23:18:13 +00001479MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA,
1480 const char *Suffix) const {
1481 return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock(), Suffix);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001482}
1483
1484MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
Dan Gohman29cbade2009-11-20 23:18:13 +00001485 const BasicBlock *BB,
1486 const char *Suffix) const {
Dan Gohman8c2b5252009-10-30 01:27:03 +00001487 assert(BB->hasName() &&
1488 "Address of anonymous basic block not supported yet!");
1489
Dan Gohman568a3be2009-11-05 23:14:35 +00001490 // This code must use the function name itself, and not the function number,
1491 // since it must be possible to generate the label name from within other
1492 // functions.
Chris Lattner2f8cc262010-01-13 07:30:49 +00001493 SmallString<60> FnName;
1494 Mang->getNameWithPrefix(FnName, F, false);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001495
Chris Lattner2f8cc262010-01-13 07:30:49 +00001496 // FIXME: THIS IS BROKEN IF THE LLVM BASIC BLOCK DOESN'T HAVE A NAME!
Chris Lattner48130352010-01-13 06:38:18 +00001497 SmallString<60> NameResult;
Chris Lattner2f8cc262010-01-13 07:30:49 +00001498 Mang->getNameWithPrefix(NameResult,
1499 StringRef("BA") + Twine((unsigned)FnName.size()) +
1500 "_" + FnName.str() + "_" + BB->getName() + Suffix,
1501 Mangler::Private);
Dan Gohman568a3be2009-11-05 23:14:35 +00001502
Chris Lattner48130352010-01-13 06:38:18 +00001503 return OutContext.GetOrCreateSymbol(NameResult.str());
Dan Gohman8c2b5252009-10-30 01:27:03 +00001504}
1505
Chris Lattner39248682010-01-23 05:19:23 +00001506/// GetCPISymbol - Return the symbol for the specified constant pool entry.
1507MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
1508 SmallString<60> Name;
1509 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "CPI"
1510 << getFunctionNumber() << '_' << CPID;
1511 return OutContext.GetOrCreateSymbol(Name.str());
1512}
1513
1514/// GetJTISymbol - Return the symbol for the specified jump table entry.
1515MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
Chris Lattner589c6f62010-01-26 06:28:43 +00001516 return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
Chris Lattner7cb384d2009-09-12 23:02:08 +00001517}
1518
Chris Lattner798d1252010-01-25 21:17:10 +00001519/// GetJTSetSymbol - Return the symbol for the specified jump table .set
1520/// FIXME: privatize to AsmPrinter.
1521MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
1522 SmallString<60> Name;
1523 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix()
1524 << getFunctionNumber() << '_' << UID << "_set_" << MBBID;
1525 return OutContext.GetOrCreateSymbol(Name.str());
1526}
1527
Chris Lattner6b04ede2010-01-15 23:18:17 +00001528/// GetGlobalValueSymbol - Return the MCSymbol for the specified global
1529/// value.
1530MCSymbol *AsmPrinter::GetGlobalValueSymbol(const GlobalValue *GV) const {
1531 SmallString<60> NameStr;
1532 Mang->getNameWithPrefix(NameStr, GV, false);
1533 return OutContext.GetOrCreateSymbol(NameStr.str());
1534}
1535
Chris Lattner7a2ba942010-01-16 18:37:32 +00001536/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
Chris Lattnerd588b972010-01-15 23:25:11 +00001537/// global value name as its base, with the specified suffix, and where the
Chris Lattner7a2ba942010-01-16 18:37:32 +00001538/// symbol is forced to have private linkage if ForcePrivate is true.
1539MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
1540 StringRef Suffix,
1541 bool ForcePrivate) const {
Chris Lattnerd588b972010-01-15 23:25:11 +00001542 SmallString<60> NameStr;
Chris Lattner7a2ba942010-01-16 18:37:32 +00001543 Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
Chris Lattnerd588b972010-01-15 23:25:11 +00001544 NameStr.append(Suffix.begin(), Suffix.end());
1545 return OutContext.GetOrCreateSymbol(NameStr.str());
1546}
1547
Chris Lattner6b04ede2010-01-15 23:18:17 +00001548/// GetExternalSymbolSymbol - Return the MCSymbol for the specified
1549/// ExternalSymbol.
1550MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
1551 SmallString<60> NameStr;
1552 Mang->getNameWithPrefix(NameStr, Sym);
1553 return OutContext.GetOrCreateSymbol(NameStr.str());
1554}
1555
Chris Lattner7cb384d2009-09-12 23:02:08 +00001556
Chris Lattner523a5082010-01-22 21:50:41 +00001557
1558/// PrintParentLoopComment - Print comments about parent loops of this one.
1559static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1560 unsigned FunctionNumber) {
1561 if (Loop == 0) return;
1562 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
1563 OS.indent(Loop->getLoopDepth()*2)
1564 << "Parent Loop BB" << FunctionNumber << "_"
1565 << Loop->getHeader()->getNumber()
1566 << " Depth=" << Loop->getLoopDepth() << '\n';
1567}
1568
1569
1570/// PrintChildLoopComment - Print comments about child loops within
1571/// the loop for this basic block, with nesting.
1572static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1573 unsigned FunctionNumber) {
1574 // Add child loop information
1575 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
1576 OS.indent((*CL)->getLoopDepth()*2)
1577 << "Child Loop BB" << FunctionNumber << "_"
1578 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
1579 << '\n';
1580 PrintChildLoopComment(OS, *CL, FunctionNumber);
1581 }
1582}
1583
Chris Lattnerd1ff72b2010-02-03 01:09:55 +00001584/// PrintBasicBlockLoopComments - Pretty-print comments for basic blocks.
Chris Lattner523a5082010-01-22 21:50:41 +00001585static void PrintBasicBlockLoopComments(const MachineBasicBlock &MBB,
1586 const MachineLoopInfo *LI,
1587 const AsmPrinter &AP) {
1588 // Add loop depth information
1589 const MachineLoop *Loop = LI->getLoopFor(&MBB);
1590 if (Loop == 0) return;
1591
1592 MachineBasicBlock *Header = Loop->getHeader();
1593 assert(Header && "No header for loop");
1594
1595 // If this block is not a loop header, just print out what is the loop header
1596 // and return.
1597 if (Header != &MBB) {
1598 AP.OutStreamer.AddComment(" in Loop: Header=BB" +
1599 Twine(AP.getFunctionNumber())+"_" +
1600 Twine(Loop->getHeader()->getNumber())+
1601 " Depth="+Twine(Loop->getLoopDepth()));
1602 return;
1603 }
1604
1605 // Otherwise, it is a loop header. Print out information about child and
1606 // parent loops.
1607 raw_ostream &OS = AP.OutStreamer.GetCommentOS();
1608
1609 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
1610
1611 OS << "=>";
1612 OS.indent(Loop->getLoopDepth()*2-2);
1613
1614 OS << "This ";
1615 if (Loop->empty())
1616 OS << "Inner ";
1617 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
1618
1619 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
1620}
1621
1622
Chris Lattner70a54c02009-09-13 18:25:37 +00001623/// EmitBasicBlockStart - This method prints the label for the specified
1624/// MachineBasicBlock, an alignment (if present) and a comment describing
1625/// it if appropriate.
Chris Lattner662316c2009-09-14 03:15:54 +00001626void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
Dan Gohmanb1cac332009-10-30 01:34:35 +00001627 // Emit an alignment directive for this block, if needed.
Chris Lattner70a54c02009-09-13 18:25:37 +00001628 if (unsigned Align = MBB->getAlignment())
1629 EmitAlignment(Log2_32(Align));
Evan Chengfb8075d2008-02-28 00:43:03 +00001630
Dan Gohmanb1cac332009-10-30 01:34:35 +00001631 // If the block has its address taken, emit a special label to satisfy
1632 // references to the block. This is done so that we don't need to
1633 // remember the number of this label, and so that we can make
1634 // forward references to labels without knowing what their numbers
1635 // will be.
Dan Gohman8c2b5252009-10-30 01:27:03 +00001636 if (MBB->hasAddressTaken()) {
Chris Lattner213168b2010-01-20 07:24:05 +00001637 const BasicBlock *BB = MBB->getBasicBlock();
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001638 if (VerboseAsm)
1639 OutStreamer.AddComment("Address Taken");
Chris Lattner213168b2010-01-20 07:24:05 +00001640 OutStreamer.EmitLabel(GetBlockAddressSymbol(BB->getParent(), BB));
Dan Gohman8c2b5252009-10-30 01:27:03 +00001641 }
1642
Dan Gohmanb1cac332009-10-30 01:34:35 +00001643 // Print the main label for the block.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001644 if (MBB->pred_empty() || MBB->isOnlyReachableByFallthrough()) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001645 if (VerboseAsm) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +00001646 // NOTE: Want this comment at start of line.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001647 O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001648 if (const BasicBlock *BB = MBB->getBasicBlock())
1649 if (BB->hasName())
1650 OutStreamer.AddComment("%" + BB->getName());
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001651
Chris Lattner523a5082010-01-22 21:50:41 +00001652 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001653 OutStreamer.AddBlankLine();
1654 }
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001655 } else {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001656 if (VerboseAsm) {
1657 if (const BasicBlock *BB = MBB->getBasicBlock())
1658 if (BB->hasName())
1659 OutStreamer.AddComment("%" + BB->getName());
Chris Lattner523a5082010-01-22 21:50:41 +00001660 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001661 }
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001662
Chris Lattnerf71cb012010-01-26 04:55:51 +00001663 OutStreamer.EmitLabel(MBB->getSymbol(OutContext));
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001664 }
Nate Begeman37efe672006-04-22 18:53:45 +00001665}
Nate Begeman52a51e382006-08-12 21:29:52 +00001666
Chris Lattnerbe9dfce2010-01-28 00:05:10 +00001667void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility) const {
Chris Lattner152a29b2010-01-23 06:53:23 +00001668 MCSymbolAttr Attr = MCSA_Invalid;
1669
1670 switch (Visibility) {
1671 default: break;
1672 case GlobalValue::HiddenVisibility:
1673 Attr = MAI->getHiddenVisibilityAttr();
1674 break;
1675 case GlobalValue::ProtectedVisibility:
1676 Attr = MAI->getProtectedVisibilityAttr();
1677 break;
Chris Lattner53d4d782010-01-15 23:38:51 +00001678 }
Chris Lattner152a29b2010-01-23 06:53:23 +00001679
1680 if (Attr != MCSA_Invalid)
1681 OutStreamer.EmitSymbolAttribute(Sym, Attr);
Chris Lattner53d4d782010-01-15 23:38:51 +00001682}
1683
Anton Korobeynikov7751ad92008-11-22 16:15:34 +00001684void AsmPrinter::printOffset(int64_t Offset) const {
1685 if (Offset > 0)
1686 O << '+' << Offset;
1687 else if (Offset < 0)
1688 O << Offset;
1689}
1690
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001691GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1692 if (!S->usesMetadata())
Gordon Henriksenc317a602008-08-17 12:08:44 +00001693 return 0;
1694
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001695 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001696 if (GCPI != GCMetadataPrinters.end())
1697 return GCPI->second;
1698
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001699 const char *Name = S->getName().c_str();
Gordon Henriksenc317a602008-08-17 12:08:44 +00001700
1701 for (GCMetadataPrinterRegistry::iterator
1702 I = GCMetadataPrinterRegistry::begin(),
1703 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1704 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001705 GCMetadataPrinter *GMP = I->instantiate();
1706 GMP->S = S;
1707 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1708 return GMP;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001709 }
1710
Chris Lattner52492ac2010-01-23 06:17:14 +00001711 llvm_report_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
1712 return 0;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001713}
David Greene014700c2009-07-13 20:25:48 +00001714
1715/// EmitComments - Pretty-print comments for instructions
Chris Lattner5f51cd02009-08-07 23:42:01 +00001716void AsmPrinter::EmitComments(const MachineInstr &MI) const {
David Greene1924aab2009-11-13 21:34:57 +00001717 if (!VerboseAsm)
1718 return;
David Greene3ac1ab82009-07-16 22:24:20 +00001719
David Greene1924aab2009-11-13 21:34:57 +00001720 if (!MI.getDebugLoc().isUnknown()) {
Devang Patel6b61f582010-01-16 06:09:35 +00001721 DILocation DLT = MF->getDILocation(MI.getDebugLoc());
David Greene1924aab2009-11-13 21:34:57 +00001722
1723 // Print source line info.
1724 O.PadToColumn(MAI->getCommentColumn());
Dan Gohman3b9bc042009-12-05 00:23:29 +00001725 O << MAI->getCommentString() << ' ';
Devang Patel6b61f582010-01-16 06:09:35 +00001726 DIScope Scope = DLT.getScope();
Dan Gohman3b9bc042009-12-05 00:23:29 +00001727 // Omit the directory, because it's likely to be long and uninteresting.
1728 if (!Scope.isNull())
1729 O << Scope.getFilename();
1730 else
1731 O << "<unknown>";
Devang Patel6b61f582010-01-16 06:09:35 +00001732 O << ':' << DLT.getLineNumber();
1733 if (DLT.getColumnNumber() != 0)
1734 O << ':' << DLT.getColumnNumber();
Chris Lattnerd1ff72b2010-02-03 01:09:55 +00001735 O << '\n';
David Greene3ac1ab82009-07-16 22:24:20 +00001736 }
David Greene1924aab2009-11-13 21:34:57 +00001737
David Greeneddff9412009-11-16 15:12:23 +00001738 // Check for spills and reloads
1739 int FI;
1740
1741 const MachineFrameInfo *FrameInfo =
1742 MI.getParent()->getParent()->getFrameInfo();
1743
1744 // We assume a single instruction only has a spill or reload, not
1745 // both.
David Greenef7ea2a52009-12-04 22:46:04 +00001746 const MachineMemOperand *MMO;
David Greeneddff9412009-11-16 15:12:23 +00001747 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
1748 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001749 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001750 O.PadToColumn(MAI->getCommentColumn());
Chris Lattnerd1ff72b2010-02-03 01:09:55 +00001751 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Reload\n";
David Greeneddff9412009-11-16 15:12:23 +00001752 }
1753 }
David Greenef7ea2a52009-12-04 22:46:04 +00001754 else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001755 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001756 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001757 O << MAI->getCommentString() << ' '
Chris Lattnerd1ff72b2010-02-03 01:09:55 +00001758 << MMO->getSize() << "-byte Folded Reload\n";
David Greeneddff9412009-11-16 15:12:23 +00001759 }
1760 }
1761 else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
1762 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greenef7ea2a52009-12-04 22:46:04 +00001763 MMO = *MI.memoperands_begin();
David Greeneddff9412009-11-16 15:12:23 +00001764 O.PadToColumn(MAI->getCommentColumn());
Chris Lattnerd1ff72b2010-02-03 01:09:55 +00001765 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Spill\n";
David Greeneddff9412009-11-16 15:12:23 +00001766 }
1767 }
David Greenef7ea2a52009-12-04 22:46:04 +00001768 else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001769 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greeneddff9412009-11-16 15:12:23 +00001770 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmanfcafe442009-12-04 23:19:55 +00001771 O << MAI->getCommentString() << ' '
Chris Lattnerd1ff72b2010-02-03 01:09:55 +00001772 << MMO->getSize() << "-byte Folded Spill\n";
David Greeneddff9412009-11-16 15:12:23 +00001773 }
1774 }
1775
1776 // Check for spill-induced copies
1777 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1778 if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
1779 SrcSubIdx, DstSubIdx)) {
1780 if (MI.getAsmPrinterFlag(ReloadReuse)) {
David Greeneddff9412009-11-16 15:12:23 +00001781 O.PadToColumn(MAI->getCommentColumn());
Chris Lattnerd1ff72b2010-02-03 01:09:55 +00001782 O << MAI->getCommentString() << " Reload Reuse\n";
David Greeneddff9412009-11-16 15:12:23 +00001783 }
1784 }
David Greene014700c2009-07-13 20:25:48 +00001785}
1786