blob: 0a283931edaf35e5981e59a8b12b06ae5f3f3f12 [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"
Dan Gohman618f1772010-02-08 22:02:38 +000028#include "llvm/Analysis/ConstantFolding.h"
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +000029#include "llvm/Analysis/DebugInfo.h"
Chris Lattner2b2954f2009-07-27 21:28:04 +000030#include "llvm/MC/MCContext.h"
Chris Lattner52492ac2010-01-23 06:17:14 +000031#include "llvm/MC/MCExpr.h"
David Greene3ac1ab82009-07-16 22:24:20 +000032#include "llvm/MC/MCInst.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000033#include "llvm/MC/MCSection.h"
34#include "llvm/MC/MCStreamer.h"
Chris Lattner7cb384d2009-09-12 23:02:08 +000035#include "llvm/MC/MCSymbol.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000036#include "llvm/MC/MCAsmInfo.h"
Chris Lattner45111d12010-01-16 21:57:06 +000037#include "llvm/Target/Mangler.h"
Owen Anderson07000c62006-05-12 06:33:49 +000038#include "llvm/Target/TargetData.h"
David Greene1924aab2009-11-13 21:34:57 +000039#include "llvm/Target/TargetInstrInfo.h"
Chris Lattner0336fdb2006-10-06 22:50:56 +000040#include "llvm/Target/TargetLowering.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000041#include "llvm/Target/TargetLoweringObjectFile.h"
Evan Cheng6547e402008-07-01 23:18:29 +000042#include "llvm/Target/TargetOptions.h"
Evan Chengda47e6e2008-03-15 00:03:38 +000043#include "llvm/Target/TargetRegisterInfo.h"
Evan Chengcc415862007-11-09 01:32:10 +000044#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerfad86b02008-08-17 07:19:36 +000045#include "llvm/ADT/SmallString.h"
Chris Lattner14c38ec2010-01-28 01:02:27 +000046#include "llvm/ADT/Statistic.h"
47#include "llvm/Support/CommandLine.h"
48#include "llvm/Support/Debug.h"
49#include "llvm/Support/ErrorHandling.h"
50#include "llvm/Support/Format.h"
51#include "llvm/Support/FormattedStream.h"
Chris Lattner66099132006-02-01 22:41:11 +000052#include <cerrno>
Chris Lattnera80ba712004-08-16 23:15:22 +000053using namespace llvm;
54
Chris Lattner14c38ec2010-01-28 01:02:27 +000055STATISTIC(EmittedInsts, "Number of machine instrs printed");
56
Devang Patel19974732007-05-03 01:11:54 +000057char AsmPrinter::ID = 0;
David Greene71847812009-07-14 20:18:05 +000058AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
Chris Lattner56591ab2010-02-02 23:37:42 +000059 MCContext &Ctx, MCStreamer &Streamer,
60 const MCAsmInfo *T)
Chris Lattnerb84822f2010-01-26 04:35:26 +000061 : MachineFunctionPass(&ID), O(o),
Chris Lattner33adcfb2009-08-22 21:43:10 +000062 TM(tm), MAI(T), TRI(tm.getRegisterInfo()),
Chris Lattner56591ab2010-02-02 23:37:42 +000063 OutContext(Ctx), OutStreamer(Streamer),
Chris Lattner0d50c762010-03-08 23:58:37 +000064 LastMI(0), LastFn(0), Counter(~0U), SetCounter(0), PrevDLT(NULL) {
Chris Lattner0de1fc42009-06-24 19:09:55 +000065 DW = 0; MMI = 0;
Chris Lattner56591ab2010-02-02 23:37:42 +000066 VerboseAsm = Streamer.isVerboseAsm();
Evan Cheng42bf74b2009-03-25 01:47:28 +000067}
Chris Lattnered138932005-12-13 06:32:10 +000068
Gordon Henriksenc317a602008-08-17 12:08:44 +000069AsmPrinter::~AsmPrinter() {
70 for (gcp_iterator I = GCMetadataPrinters.begin(),
71 E = GCMetadataPrinters.end(); I != E; ++I)
72 delete I->second;
Chris Lattner2b2954f2009-07-27 21:28:04 +000073
74 delete &OutStreamer;
75 delete &OutContext;
Gordon Henriksenc317a602008-08-17 12:08:44 +000076}
Chris Lattnered138932005-12-13 06:32:10 +000077
Chris Lattnerb84822f2010-01-26 04:35:26 +000078/// getFunctionNumber - Return a unique ID for the current function.
79///
80unsigned AsmPrinter::getFunctionNumber() const {
81 return MF->getFunctionNumber();
82}
83
Chris Lattner38c39882009-08-03 19:12:26 +000084TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
Chris Lattnerf0144122009-07-28 03:13:23 +000085 return TM.getTargetLowering()->getObjFileLowering();
86}
87
Chris Lattnerdabf07c2009-08-18 06:15:16 +000088/// getCurrentSection() - Return the current section we are emitting to.
89const MCSection *AsmPrinter::getCurrentSection() const {
90 return OutStreamer.getCurrentSection();
91}
92
93
Gordon Henriksence224772008-01-07 01:30:38 +000094void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000095 AU.setPreservesAll();
Gordon Henriksence224772008-01-07 01:30:38 +000096 MachineFunctionPass::getAnalysisUsage(AU);
Gordon Henriksen5eca0752008-08-17 18:44:35 +000097 AU.addRequired<GCModuleInfo>();
David Greenefe37ab32009-08-18 19:22:55 +000098 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +000099 AU.addRequired<MachineLoopInfo>();
Gordon Henriksence224772008-01-07 01:30:38 +0000100}
101
Chris Lattnera80ba712004-08-16 23:15:22 +0000102bool AsmPrinter::doInitialization(Module &M) {
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000103 // Initialize TargetLoweringObjectFile.
104 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
105 .Initialize(OutContext, TM);
106
Chris Lattner5ef31a02010-03-12 18:44:54 +0000107 Mang = new Mangler(OutContext);
Chris Lattner2c1b1592006-01-23 23:47:53 +0000108
Bob Wilson812209a2009-09-30 22:06:26 +0000109 // Allow the target to emit any magic that it wants at the start of the file.
110 EmitStartOfAsmFile(M);
Rafael Espindola952b8392008-12-03 11:01:37 +0000111
Chris Lattnera6594fc2010-01-25 18:58:59 +0000112 // Very minimal debug info. It is ignored if we emit actual debug info. If we
113 // don't, this at least helps the user find where a global came from.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000114 if (MAI->hasSingleParameterDotFile()) {
Chris Lattnera6594fc2010-01-25 18:58:59 +0000115 // .file "foo.c"
116 OutStreamer.EmitFileDirective(M.getModuleIdentifier());
Rafael Espindola952b8392008-12-03 11:01:37 +0000117 }
118
Bob Wilson812209a2009-09-30 22:06:26 +0000119 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
120 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000121 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
122 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000123 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000124
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000125 if (!M.getModuleInlineAsm().empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000126 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000127 << M.getModuleInlineAsm()
Chris Lattner33adcfb2009-08-22 21:43:10 +0000128 << '\n' << MAI->getCommentString()
Jim Laskey563321a2006-09-06 18:34:40 +0000129 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000130
Chris Lattnerb55e0682009-09-24 05:44:53 +0000131 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
132 if (MMI)
133 MMI->AnalyzeModule(M);
134 DW = getAnalysisIfAvailable<DwarfWriter>();
Sanjiv Gupta9a501cf2009-11-14 07:22:25 +0000135 if (DW)
Chris Lattnerb55e0682009-09-24 05:44:53 +0000136 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel14a55d92009-06-19 21:54:26 +0000137
Chris Lattnera80ba712004-08-16 23:15:22 +0000138 return false;
139}
140
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000141void AsmPrinter::EmitLinkage(unsigned Linkage, MCSymbol *GVSym) const {
Chris Lattnera3e88832010-01-26 23:47:12 +0000142 switch ((GlobalValue::LinkageTypes)Linkage) {
143 case GlobalValue::CommonLinkage:
144 case GlobalValue::LinkOnceAnyLinkage:
145 case GlobalValue::LinkOnceODRLinkage:
146 case GlobalValue::WeakAnyLinkage:
147 case GlobalValue::WeakODRLinkage:
148 case GlobalValue::LinkerPrivateLinkage:
149 if (MAI->getWeakDefDirective() != 0) {
150 // .globl _foo
151 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
152 // .weak_definition _foo
153 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
154 } else if (const char *LinkOnce = MAI->getLinkOnceDirective()) {
155 // .globl _foo
156 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
157 // FIXME: linkonce should be a section attribute, handled by COFF Section
158 // assignment.
159 // http://sourceware.org/binutils/docs-2.20/as/Linkonce.html#Linkonce
Chris Lattner111a3192010-01-26 23:51:52 +0000160 // .linkonce discard
161 // FIXME: It would be nice to use .linkonce samesize for non-common
162 // globals.
Chris Lattnera3e88832010-01-26 23:47:12 +0000163 O << LinkOnce;
164 } else {
165 // .weak _foo
166 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
167 }
168 break;
169 case GlobalValue::DLLExportLinkage:
170 case GlobalValue::AppendingLinkage:
171 // FIXME: appending linkage variables should go into a section of
172 // their name or something. For now, just emit them as external.
173 case GlobalValue::ExternalLinkage:
174 // If external or appending, declare as a global symbol.
175 // .globl _foo
176 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
177 break;
178 case GlobalValue::PrivateLinkage:
179 case GlobalValue::InternalLinkage:
180 break;
181 default:
182 llvm_unreachable("Unknown linkage type!");
183 }
184}
185
186
Chris Lattner48d64ba2010-01-19 04:39:15 +0000187/// EmitGlobalVariable - Emit the specified global variable to the .s file.
188void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
189 if (!GV->hasInitializer()) // External globals require no code.
190 return;
191
192 // Check to see if this is a special global used by LLVM, if so, emit it.
193 if (EmitSpecialLLVMGlobal(GV))
194 return;
Chris Lattner74bfe212010-01-19 05:38:33 +0000195
196 MCSymbol *GVSym = GetGlobalValueSymbol(GV);
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000197 EmitVisibility(GVSym, GV->getVisibility());
Chris Lattner74bfe212010-01-19 05:38:33 +0000198
Chris Lattnera800f7c2010-01-25 18:33:40 +0000199 if (MAI->hasDotTypeDotSizeDirective())
200 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
Chris Lattner48d64ba2010-01-19 04:39:15 +0000201
Chris Lattner74bfe212010-01-19 05:38:33 +0000202 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
203
204 const TargetData *TD = TM.getTargetData();
205 unsigned Size = TD->getTypeAllocSize(GV->getType()->getElementType());
206 unsigned AlignLog = TD->getPreferredAlignmentLog(GV);
207
Chris Lattner9744d612010-01-19 05:51:42 +0000208 // Handle common and BSS local symbols (.lcomm).
209 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000210 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
211
Chris Lattner74bfe212010-01-19 05:38:33 +0000212 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000213 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
214 /*PrintType=*/false, GV->getParent());
215 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000216 }
Chris Lattner814819f2010-01-19 06:25:51 +0000217
218 // Handle common symbols.
Chris Lattner9744d612010-01-19 05:51:42 +0000219 if (GVKind.isCommon()) {
220 // .comm _foo, 42, 4
Chris Lattner4ed54382010-01-19 06:01:04 +0000221 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner814819f2010-01-19 06:25:51 +0000222 return;
Chris Lattner9744d612010-01-19 05:51:42 +0000223 }
Chris Lattner814819f2010-01-19 06:25:51 +0000224
225 // Handle local BSS symbols.
226 if (MAI->hasMachoZeroFillDirective()) {
227 const MCSection *TheSection =
228 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
229 // .zerofill __DATA, __bss, _foo, 400, 5
230 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
231 return;
232 }
233
Chris Lattner9eb158d2010-01-23 07:47:02 +0000234 if (MAI->hasLCOMMDirective()) {
Chris Lattner814819f2010-01-19 06:25:51 +0000235 // .lcomm _foo, 42
Chris Lattner9eb158d2010-01-23 07:47:02 +0000236 OutStreamer.EmitLocalCommonSymbol(GVSym, Size);
Chris Lattner814819f2010-01-19 06:25:51 +0000237 return;
238 }
239
240 // .local _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000241 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
Chris Lattner814819f2010-01-19 06:25:51 +0000242 // .comm _foo, 42, 4
243 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner74bfe212010-01-19 05:38:33 +0000244 return;
245 }
246
247 const MCSection *TheSection =
248 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
249
250 // Handle the zerofill directive on darwin, which is a special form of BSS
251 // emission.
252 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
253 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000254 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000255 // .zerofill __DATA, __common, _foo, 400, 5
256 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
257 return;
258 }
259
260 OutStreamer.SwitchSection(TheSection);
261
Chris Lattnera3e88832010-01-26 23:47:12 +0000262 EmitLinkage(GV->getLinkage(), GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000263 EmitAlignment(AlignLog, GV);
Chris Lattnera3e88832010-01-26 23:47:12 +0000264
Chris Lattner74bfe212010-01-19 05:38:33 +0000265 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000266 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
267 /*PrintType=*/false, GV->getParent());
268 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000269 }
Chris Lattner4c8c6682010-01-19 06:41:24 +0000270 OutStreamer.EmitLabel(GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000271
272 EmitGlobalConstant(GV->getInitializer());
273
274 if (MAI->hasDotTypeDotSizeDirective())
Chris Lattner1947f242010-01-25 07:53:05 +0000275 // .size foo, 42
Chris Lattner99328ad2010-01-25 07:52:13 +0000276 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000277
278 OutStreamer.AddBlankLine();
Chris Lattner48d64ba2010-01-19 04:39:15 +0000279}
280
Chris Lattnerb11caed2010-01-26 23:18:44 +0000281/// EmitFunctionHeader - This method emits the header for the current
282/// function.
283void AsmPrinter::EmitFunctionHeader() {
284 // Print out constants referenced by the function
Chris Lattnera2406192010-01-28 00:19:24 +0000285 EmitConstantPool();
Chris Lattnerb11caed2010-01-26 23:18:44 +0000286
287 // Print the 'header' of function.
Chris Lattnerb11caed2010-01-26 23:18:44 +0000288 const Function *F = MF->getFunction();
289
290 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000291 EmitVisibility(CurrentFnSym, F->getVisibility());
Chris Lattnerb11caed2010-01-26 23:18:44 +0000292
Chris Lattner111a3192010-01-26 23:51:52 +0000293 EmitLinkage(F->getLinkage(), CurrentFnSym);
Chris Lattnerb406a812010-01-26 23:41:48 +0000294 EmitAlignment(MF->getAlignment(), F);
295
Chris Lattnerb11caed2010-01-26 23:18:44 +0000296 if (MAI->hasDotTypeDotSizeDirective())
297 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
298
Chris Lattnerb11caed2010-01-26 23:18:44 +0000299 if (VerboseAsm) {
Chris Lattner9bc20ab2010-01-26 23:53:39 +0000300 WriteAsOperand(OutStreamer.GetCommentOS(), F,
301 /*PrintType=*/false, F->getParent());
302 OutStreamer.GetCommentOS() << '\n';
Chris Lattnerb11caed2010-01-26 23:18:44 +0000303 }
Chris Lattnerb11caed2010-01-26 23:18:44 +0000304
Dan Gohmanf451cb82010-02-10 16:03:48 +0000305 // Emit the CurrentFnSym. This is a virtual function to allow targets to
Chris Lattner2cf72512010-01-27 07:21:55 +0000306 // do their wild and crazy things as required.
307 EmitFunctionEntryLabel();
308
Chris Lattnerb11caed2010-01-26 23:18:44 +0000309 // Add some workaround for linkonce linkage on Cygwin\MinGW.
310 if (MAI->getLinkOnceDirective() != 0 &&
311 (F->hasLinkOnceLinkage() || F->hasWeakLinkage()))
Chris Lattner9bc20ab2010-01-26 23:53:39 +0000312 // FIXME: What is this?
Chris Lattnerb11caed2010-01-26 23:18:44 +0000313 O << "Lllvm$workaround$fake$stub$" << *CurrentFnSym << ":\n";
314
315 // Emit pre-function debug and/or EH information.
316 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
317 DW->BeginFunction(MF);
318}
319
Chris Lattner2cf72512010-01-27 07:21:55 +0000320/// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the
321/// function. This can be overridden by targets as required to do custom stuff.
322void AsmPrinter::EmitFunctionEntryLabel() {
323 OutStreamer.EmitLabel(CurrentFnSym);
324}
Chris Lattnerb11caed2010-01-26 23:18:44 +0000325
Chris Lattner48d64ba2010-01-19 04:39:15 +0000326
Chris Lattner47529c92010-02-10 00:47:53 +0000327/// EmitComments - Pretty-print comments for instructions.
328static void EmitComments(const MachineInstr &MI, raw_ostream &CommentOS) {
329 const MachineFunction *MF = MI.getParent()->getParent();
330 const TargetMachine &TM = MF->getTarget();
331
332 if (!MI.getDebugLoc().isUnknown()) {
333 DILocation DLT = MF->getDILocation(MI.getDebugLoc());
334
335 // Print source line info.
336 DIScope Scope = DLT.getScope();
337 // Omit the directory, because it's likely to be long and uninteresting.
Devang Patel3c91b052010-03-08 20:52:55 +0000338 if (Scope.Verify())
Chris Lattner47529c92010-02-10 00:47:53 +0000339 CommentOS << Scope.getFilename();
340 else
341 CommentOS << "<unknown>";
342 CommentOS << ':' << DLT.getLineNumber();
343 if (DLT.getColumnNumber() != 0)
344 CommentOS << ':' << DLT.getColumnNumber();
345 CommentOS << '\n';
346 }
347
348 // Check for spills and reloads
349 int FI;
350
351 const MachineFrameInfo *FrameInfo = MF->getFrameInfo();
352
353 // We assume a single instruction only has a spill or reload, not
354 // both.
355 const MachineMemOperand *MMO;
356 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
357 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
358 MMO = *MI.memoperands_begin();
359 CommentOS << MMO->getSize() << "-byte Reload\n";
360 }
361 } else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
362 if (FrameInfo->isSpillSlotObjectIndex(FI))
363 CommentOS << MMO->getSize() << "-byte Folded Reload\n";
364 } else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
365 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
366 MMO = *MI.memoperands_begin();
367 CommentOS << MMO->getSize() << "-byte Spill\n";
368 }
369 } else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
370 if (FrameInfo->isSpillSlotObjectIndex(FI))
371 CommentOS << MMO->getSize() << "-byte Folded Spill\n";
372 }
373
374 // Check for spill-induced copies
375 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
376 if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
377 SrcSubIdx, DstSubIdx)) {
Chris Lattner45282ae2010-02-10 01:23:18 +0000378 if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse))
Chris Lattner47529c92010-02-10 00:47:53 +0000379 CommentOS << " Reload Reuse\n";
380 }
381}
382
383
384
Chris Lattner14c38ec2010-01-28 01:02:27 +0000385/// EmitFunctionBody - This method emits the body and trailer for a
386/// function.
387void AsmPrinter::EmitFunctionBody() {
Chris Lattneredfe7762010-01-28 01:58:58 +0000388 // Emit target-specific gunk before the function body.
389 EmitFunctionBodyStart();
390
Chris Lattner14c38ec2010-01-28 01:02:27 +0000391 // Print out code for the function.
392 bool HasAnyRealCode = false;
393 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
394 I != E; ++I) {
395 // Print a label for the basic block.
396 EmitBasicBlockStart(I);
397 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
398 II != IE; ++II) {
399 // Print the assembly for the instruction.
400 if (!II->isLabel())
401 HasAnyRealCode = true;
402
403 ++EmittedInsts;
404
405 // FIXME: Clean up processDebugLoc.
406 processDebugLoc(II, true);
407
Chris Lattner47529c92010-02-10 00:47:53 +0000408 if (VerboseAsm)
409 EmitComments(*II, OutStreamer.GetCommentOS());
410
Chris Lattner0d883e32010-02-03 01:00:52 +0000411 switch (II->getOpcode()) {
Chris Lattner518bb532010-02-09 19:54:29 +0000412 case TargetOpcode::DBG_LABEL:
413 case TargetOpcode::EH_LABEL:
414 case TargetOpcode::GC_LABEL:
Chris Lattnerf64159c842010-02-03 01:46:05 +0000415 printLabelInst(II);
Chris Lattner0d883e32010-02-03 01:00:52 +0000416 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000417 case TargetOpcode::INLINEASM:
Chris Lattner0d883e32010-02-03 01:00:52 +0000418 printInlineAsm(II);
419 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000420 case TargetOpcode::IMPLICIT_DEF:
Chris Lattner0d883e32010-02-03 01:00:52 +0000421 printImplicitDef(II);
422 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000423 case TargetOpcode::KILL:
Chris Lattner0d883e32010-02-03 01:00:52 +0000424 printKill(II);
425 break;
426 default:
427 EmitInstruction(II);
428 break;
429 }
Chris Lattner14c38ec2010-01-28 01:02:27 +0000430
431 // FIXME: Clean up processDebugLoc.
432 processDebugLoc(II, false);
433 }
434 }
435
436 // If the function is empty and the object file uses .subsections_via_symbols,
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000437 // then we need to emit *something* to the function body to prevent the
438 // labels from collapsing together. Just emit a 0 byte.
Chris Lattner10e7c602010-01-28 01:06:32 +0000439 if (MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode)
440 OutStreamer.EmitIntValue(0, 1, 0/*addrspace*/);
Chris Lattner14c38ec2010-01-28 01:02:27 +0000441
Chris Lattneredfe7762010-01-28 01:58:58 +0000442 // Emit target-specific gunk after the function body.
443 EmitFunctionBodyEnd();
444
Chris Lattner14c38ec2010-01-28 01:02:27 +0000445 if (MAI->hasDotTypeDotSizeDirective())
446 O << "\t.size\t" << *CurrentFnSym << ", .-" << *CurrentFnSym << '\n';
447
448 // Emit post-function debug information.
449 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
450 DW->EndFunction(MF);
451
452 // Print out jump tables referenced by the function.
453 EmitJumpTableInfo();
Chris Lattnerd26a80f2010-02-03 01:49:49 +0000454
455 OutStreamer.AddBlankLine();
Chris Lattner14c38ec2010-01-28 01:02:27 +0000456}
457
458
Chris Lattnera80ba712004-08-16 23:15:22 +0000459bool AsmPrinter::doFinalization(Module &M) {
Chris Lattner40bbebd2009-07-21 18:38:57 +0000460 // Emit global variables.
461 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
462 I != E; ++I)
Chris Lattner48d64ba2010-01-19 04:39:15 +0000463 EmitGlobalVariable(I);
Chris Lattner40bbebd2009-07-21 18:38:57 +0000464
Chris Lattner1f522fe2009-06-24 18:54:37 +0000465 // Emit final debug information.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000466 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattner1f522fe2009-06-24 18:54:37 +0000467 DW->EndModule();
468
Chris Lattner0a7befa2009-06-24 18:52:01 +0000469 // If the target wants to know about weak references, print them all.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000470 if (MAI->getWeakRefDirective()) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000471 // FIXME: This is not lazy, it would be nice to only print weak references
472 // to stuff that is actually used. Note that doing so would require targets
473 // to notice uses in operands (due to constant exprs etc). This should
474 // happen with the MC stuff eventually.
Rafael Espindola15404d02006-12-18 03:37:18 +0000475
Chris Lattner0a7befa2009-06-24 18:52:01 +0000476 // Print out module-level global variables here.
477 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
478 I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000479 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000480 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000481 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000482 }
483
Chris Lattnerc6fdced2009-08-03 23:10:34 +0000484 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000485 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner39248682010-01-23 05:19:23 +0000486 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000487 MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000488 }
Rafael Espindola15404d02006-12-18 03:37:18 +0000489 }
490
Chris Lattnercee63322010-01-26 20:40:54 +0000491 if (MAI->hasSetDirective()) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000492 OutStreamer.AddBlankLine();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000493 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattner0a7befa2009-06-24 18:52:01 +0000494 I != E; ++I) {
Chris Lattner5c40e692010-01-16 01:17:26 +0000495 MCSymbol *Name = GetGlobalValueSymbol(I);
Anton Korobeynikov325be7c2007-09-06 17:21:48 +0000496
497 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattner5c40e692010-01-16 01:17:26 +0000498 MCSymbol *Target = GetGlobalValueSymbol(GV);
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000499
Chris Lattner10b318b2010-01-17 21:43:43 +0000500 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000501 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
Chris Lattner10b318b2010-01-17 21:43:43 +0000502 else if (I->hasWeakLinkage())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000503 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
Chris Lattner10b318b2010-01-17 21:43:43 +0000504 else
Chris Lattner10595492010-01-16 01:37:14 +0000505 assert(I->hasLocalLinkage() && "Invalid alias linkage");
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000506
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000507 EmitVisibility(Name, I->getVisibility());
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000508
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000509 // Emit the directives as assignments aka .set:
510 OutStreamer.EmitAssignment(Name,
511 MCSymbolRefExpr::Create(Target, OutContext));
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000512 }
513 }
514
Duncan Sands1465d612009-01-28 13:14:17 +0000515 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000516 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
517 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
518 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000519 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000520
Dan Gohmana779a982008-05-05 00:28:39 +0000521 // If we don't have any trampolines, then we don't require stack memory
522 // to be executable. Some targets have a directive to declare this.
Chris Lattner0a7befa2009-06-24 18:52:01 +0000523 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana779a982008-05-05 00:28:39 +0000524 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattnerf9f93e42010-01-23 07:21:06 +0000525 if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
526 OutStreamer.SwitchSection(S);
Chris Lattnerbd23d5f2009-09-18 20:17:03 +0000527
528 // Allow the target to emit any magic that it wants at the end of the file,
529 // after everything else has gone out.
530 EmitEndOfAsmFile(M);
531
Chris Lattnera80ba712004-08-16 23:15:22 +0000532 delete Mang; Mang = 0;
Chris Lattner0de1fc42009-06-24 19:09:55 +0000533 DW = 0; MMI = 0;
Chris Lattner2b2954f2009-07-27 21:28:04 +0000534
535 OutStreamer.Finish();
Chris Lattnera80ba712004-08-16 23:15:22 +0000536 return false;
537}
538
Chris Lattner25045bd2005-11-21 07:51:36 +0000539void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnerb84822f2010-01-26 04:35:26 +0000540 this->MF = &MF;
Chris Lattner412c3a52010-01-16 01:24:10 +0000541 // Get the function symbol.
Chris Lattnerd1947ed2010-01-15 23:55:16 +0000542 CurrentFnSym = GetGlobalValueSymbol(MF.getFunction());
David Greeneb71d1b22009-08-10 16:38:07 +0000543
Chris Lattner25d812b2009-09-16 00:35:39 +0000544 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000545 LI = &getAnalysis<MachineLoopInfo>();
Chris Lattnera80ba712004-08-16 23:15:22 +0000546}
547
Evan Cheng1606e8e2009-03-13 07:51:59 +0000548namespace {
549 // SectionCPs - Keep track the alignment, constpool entries per Section.
550 struct SectionCPs {
Chris Lattnera87dea42009-07-31 18:48:30 +0000551 const MCSection *S;
Evan Cheng1606e8e2009-03-13 07:51:59 +0000552 unsigned Alignment;
553 SmallVector<unsigned, 4> CPEs;
Douglas Gregorcabdd742009-12-19 07:05:23 +0000554 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
Evan Cheng1606e8e2009-03-13 07:51:59 +0000555 };
556}
557
Chris Lattner3b4fd322005-11-21 08:25:09 +0000558/// EmitConstantPool - Print to the current output stream assembly
559/// representations of the constants in the constant pool MCP. This is
560/// used to print out constants which have been "spilled to memory" by
561/// the code generator.
562///
Chris Lattnera2406192010-01-28 00:19:24 +0000563void AsmPrinter::EmitConstantPool() {
564 const MachineConstantPool *MCP = MF->getConstantPool();
Chris Lattnerfa77d432006-02-09 04:22:52 +0000565 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000566 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000567
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000568 // Calculate sections for constant pool entries. We collect entries to go into
569 // the same section together to reduce amount of section switch statements.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000570 SmallVector<SectionCPs, 4> CPSections;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000571 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner298414e2009-07-22 00:28:43 +0000572 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng1606e8e2009-03-13 07:51:59 +0000573 unsigned Align = CPE.getAlignment();
Chris Lattner5c2f7892009-07-26 06:26:55 +0000574
575 SectionKind Kind;
576 switch (CPE.getRelocationInfo()) {
577 default: llvm_unreachable("Unknown section kind");
Chris Lattner27981192009-08-01 23:57:16 +0000578 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000579 case 1:
Chris Lattner27981192009-08-01 23:57:16 +0000580 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattner4c509222009-07-26 07:00:12 +0000581 break;
Chris Lattner5c2f7892009-07-26 06:26:55 +0000582 case 0:
Chris Lattner4c509222009-07-26 07:00:12 +0000583 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000584 case 4: Kind = SectionKind::getMergeableConst4(); break;
585 case 8: Kind = SectionKind::getMergeableConst8(); break;
586 case 16: Kind = SectionKind::getMergeableConst16();break;
587 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000588 }
Chris Lattner5c2f7892009-07-26 06:26:55 +0000589 }
590
Chris Lattner83d77fa2009-08-01 23:46:12 +0000591 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner298414e2009-07-22 00:28:43 +0000592
Evan Cheng1606e8e2009-03-13 07:51:59 +0000593 // The number of sections are small, just do a linear search from the
594 // last section to the first.
595 bool Found = false;
596 unsigned SecIdx = CPSections.size();
597 while (SecIdx != 0) {
598 if (CPSections[--SecIdx].S == S) {
599 Found = true;
600 break;
601 }
602 }
603 if (!Found) {
604 SecIdx = CPSections.size();
605 CPSections.push_back(SectionCPs(S, Align));
606 }
607
608 if (Align > CPSections[SecIdx].Alignment)
609 CPSections[SecIdx].Alignment = Align;
610 CPSections[SecIdx].CPEs.push_back(i);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000611 }
612
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000613 // Now print stuff into the calculated sections.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000614 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000615 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000616 EmitAlignment(Log2_32(CPSections[i].Alignment));
Evan Cheng2d2cec12006-06-29 00:26:09 +0000617
Evan Cheng1606e8e2009-03-13 07:51:59 +0000618 unsigned Offset = 0;
619 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
620 unsigned CPI = CPSections[i].CPEs[j];
621 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000622
Chris Lattner3029f922006-02-09 04:46:04 +0000623 // Emit inter-object padding for alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000624 unsigned AlignMask = CPE.getAlignment() - 1;
625 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
Chris Lattneraaec2052010-01-19 19:46:13 +0000626 OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000627
628 const Type *Ty = CPE.getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000629 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000630
Chris Lattner39248682010-01-23 05:19:23 +0000631 // Emit the label with a comment on it.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000632 if (VerboseAsm) {
Chris Lattner39248682010-01-23 05:19:23 +0000633 OutStreamer.GetCommentOS() << "constant pool ";
634 WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(),
635 MF->getFunction()->getParent());
636 OutStreamer.GetCommentOS() << '\n';
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000637 }
Chris Lattner39248682010-01-23 05:19:23 +0000638 OutStreamer.EmitLabel(GetCPISymbol(CPI));
639
Evan Cheng1606e8e2009-03-13 07:51:59 +0000640 if (CPE.isMachineConstantPoolEntry())
641 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
642 else
643 EmitGlobalConstant(CPE.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000644 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000645 }
646}
647
Nate Begeman37efe672006-04-22 18:53:45 +0000648/// EmitJumpTableInfo - Print assembly representations of the jump tables used
649/// by the current function to the current output stream.
650///
Chris Lattner14c38ec2010-01-28 01:02:27 +0000651void AsmPrinter::EmitJumpTableInfo() {
652 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
Chris Lattner44e87252010-01-25 22:41:33 +0000653 if (MJTI == 0) return;
Richard Osborne95da6052010-03-11 14:58:16 +0000654 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return;
Nate Begeman37efe672006-04-22 18:53:45 +0000655 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
656 if (JT.empty()) return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000657
Nate Begeman2f1ae882006-07-27 01:13:04 +0000658 // Pick the directive to use to print the jump table entries, and switch to
659 // the appropriate section.
Chris Lattner14c38ec2010-01-28 01:02:27 +0000660 const Function *F = MF->getFunction();
Evan Chengb13bafe2009-06-18 20:37:15 +0000661 bool JTInDiffSection = false;
Chris Lattnerf1214cb2010-01-26 06:53:37 +0000662 if (// In PIC mode, we need to emit the jump table to the same section as the
663 // function body itself, otherwise the label differences won't make sense.
664 // FIXME: Need a better predicate for this: what about custom entries?
665 MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 ||
666 // We should also do if the section name is NULL or function is declared
667 // in discardable section
668 // FIXME: this isn't the right predicate, should be based on the MCSection
669 // for the function.
670 F->isWeakForLinker()) {
Chris Lattner14c38ec2010-01-28 01:02:27 +0000671 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F,Mang,TM));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000672 } else {
Chris Lattner83d77fa2009-08-01 23:46:12 +0000673 // Otherwise, drop it in the readonly section.
674 const MCSection *ReadOnlySection =
Chris Lattner27981192009-08-01 23:57:16 +0000675 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000676 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengb13bafe2009-06-18 20:37:15 +0000677 JTInDiffSection = true;
Nate Begeman2f1ae882006-07-27 01:13:04 +0000678 }
Chris Lattner071c62f2010-01-25 23:26:13 +0000679
Chris Lattner071c62f2010-01-25 23:26:13 +0000680 EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getTargetData())));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000681
Chris Lattner3b131d72010-01-26 06:42:44 +0000682 for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
683 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000684
685 // If this jump table was deleted, ignore it.
686 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000687
Chris Lattnere35df922010-01-26 05:15:20 +0000688 // For the EK_LabelDifference32 entry, if the target supports .set, emit a
689 // .set directive for each unique entry. This reduces the number of
690 // relocations the assembler will generate for the jump table.
691 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
Chris Lattnercee63322010-01-26 20:40:54 +0000692 MAI->hasSetDirective()) {
Chris Lattner3b131d72010-01-26 06:42:44 +0000693 SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
694 const TargetLowering *TLI = TM.getTargetLowering();
Chris Lattner14c38ec2010-01-28 01:02:27 +0000695 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext);
Chris Lattner3b131d72010-01-26 06:42:44 +0000696 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
697 const MachineBasicBlock *MBB = JTBBs[ii];
698 if (!EmittedSets.insert(MBB)) continue;
699
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000700 // .set LJTSet, LBB32-base
701 const MCExpr *LHS =
702 MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
703 OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
704 MCBinaryExpr::CreateSub(LHS, Base, OutContext));
Chris Lattner3b131d72010-01-26 06:42:44 +0000705 }
706 }
Nate Begeman52a51e382006-08-12 21:29:52 +0000707
Chris Lattner7c301912009-09-13 19:02:16 +0000708 // On some targets (e.g. Darwin) we want to emit two consequtive labels
Chris Lattner393a8ee2007-01-18 01:12:56 +0000709 // before each jump table. The first label is never referenced, but tells
710 // the assembler and linker the extents of the jump table object. The
711 // second label is actually referenced by the code.
Chris Lattner39248682010-01-23 05:19:23 +0000712 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
Chris Lattnerbeeb93e2010-01-26 05:58:28 +0000713 // FIXME: This doesn't have to have any specific name, just any randomly
714 // named and numbered 'l' label would work. Simplify GetJTISymbol.
Chris Lattner3b131d72010-01-26 06:42:44 +0000715 OutStreamer.EmitLabel(GetJTISymbol(JTI, true));
Chris Lattner39248682010-01-23 05:19:23 +0000716
Chris Lattner3b131d72010-01-26 06:42:44 +0000717 OutStreamer.EmitLabel(GetJTISymbol(JTI));
Chris Lattner39248682010-01-23 05:19:23 +0000718
Chris Lattner6bf1def2010-01-26 05:10:10 +0000719 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Chris Lattner3b131d72010-01-26 06:42:44 +0000720 EmitJumpTableEntry(MJTI, JTBBs[ii], JTI);
Nate Begeman37efe672006-04-22 18:53:45 +0000721 }
722}
723
Chris Lattner6bf1def2010-01-26 05:10:10 +0000724/// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
725/// current stream.
726void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
727 const MachineBasicBlock *MBB,
728 unsigned UID) const {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000729 const MCExpr *Value = 0;
730 switch (MJTI->getEntryKind()) {
Richard Osborne95da6052010-03-11 14:58:16 +0000731 case MachineJumpTableInfo::EK_Inline:
732 llvm_unreachable("Cannot emit EK_Inline jump table entry"); break;
Chris Lattner85fe0782010-01-26 04:05:28 +0000733 case MachineJumpTableInfo::EK_Custom32:
Chris Lattner6bf1def2010-01-26 05:10:10 +0000734 Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
Chris Lattner85fe0782010-01-26 04:05:28 +0000735 OutContext);
736 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000737 case MachineJumpTableInfo::EK_BlockAddress:
738 // EK_BlockAddress - Each entry is a plain address of block, e.g.:
739 // .word LBB123
Chris Lattnerf71cb012010-01-26 04:55:51 +0000740 Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000741 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000742 case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
743 // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
744 // with a relocation as gp-relative, e.g.:
745 // .gprel32 LBB123
Chris Lattnerf71cb012010-01-26 04:55:51 +0000746 MCSymbol *MBBSym = MBB->getSymbol(OutContext);
Chris Lattner718fb592010-01-25 21:28:50 +0000747 OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
Chris Lattner78f485a2010-01-25 21:10:10 +0000748 return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000749 }
Chris Lattner85fe0782010-01-26 04:05:28 +0000750
Chris Lattnerff537ce2010-01-26 03:43:22 +0000751 case MachineJumpTableInfo::EK_LabelDifference32: {
752 // EK_LabelDifference32 - Each entry is the address of the block minus
753 // the address of the jump table. This is used for PIC jump tables where
754 // gprel32 is not supported. e.g.:
755 // .word LBB123 - LJTI1_2
756 // If the .set directive is supported, this is emitted as:
757 // .set L4_5_set_123, LBB123 - LJTI1_2
758 // .word L4_5_set_123
759
760 // If we have emitted set directives for the jump table entries, print
761 // them rather than the entries themselves. If we're emitting PIC, then
762 // emit the table entries as differences between two text section labels.
Chris Lattnercee63322010-01-26 20:40:54 +0000763 if (MAI->hasSetDirective()) {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000764 // If we used .set, reference the .set's symbol.
Chris Lattner6bf1def2010-01-26 05:10:10 +0000765 Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
Chris Lattnerff537ce2010-01-26 03:43:22 +0000766 OutContext);
767 break;
768 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000769 // Otherwise, use the difference as the jump table entry.
Chris Lattnerf71cb012010-01-26 04:55:51 +0000770 Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
Chris Lattner6bf1def2010-01-26 05:10:10 +0000771 const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000772 Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
773 break;
774 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000775 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000776
Chris Lattnerff537ce2010-01-26 03:43:22 +0000777 assert(Value && "Unknown entry kind!");
778
Chris Lattner071c62f2010-01-25 23:26:13 +0000779 unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData());
Chris Lattnerff537ce2010-01-26 03:43:22 +0000780 OutStreamer.EmitValue(Value, EntrySize, /*addrspace*/0);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000781}
782
783
Chris Lattnered138932005-12-13 06:32:10 +0000784/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
785/// special global used by LLVM. If so, emit it and return true, otherwise
786/// do nothing and return false.
787bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000788 if (GV->getName() == "llvm.used") {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000789 if (MAI->hasNoDeadStrip()) // No need to emit this at all.
Andrew Lenharthb753a9b2007-08-22 19:33:11 +0000790 EmitLLVMUsedList(GV->getInitializer());
791 return true;
792 }
793
Chris Lattner401e10c2009-07-20 06:14:25 +0000794 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000795 if (GV->getSection() == "llvm.metadata" ||
796 GV->hasAvailableExternallyLinkage())
797 return true;
Jim Laskey78098112006-03-07 22:00:35 +0000798
799 if (!GV->hasAppendingLinkage()) return false;
800
801 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000802
Evan Cheng916d07c2007-06-04 20:39:18 +0000803 const TargetData *TD = TM.getTargetData();
804 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattnerf231c072009-03-09 05:52:15 +0000805 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000806 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000807 EmitAlignment(Align, 0);
808 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000809
810 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000811 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
812 StringRef Sym(".constructors_used");
813 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000814 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000815 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000816 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000817 }
818
Chris Lattnerf231c072009-03-09 05:52:15 +0000819 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000820 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000821 EmitAlignment(Align, 0);
822 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000823
824 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000825 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
826 StringRef Sym(".destructors_used");
827 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000828 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000829 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000830 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000831 }
832
833 return false;
834}
835
Chris Lattner33adcfb2009-08-22 21:43:10 +0000836/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesend2e51af2008-09-09 22:29:13 +0000837/// global in the specified llvm.used list for which emitUsedDirectiveFor
838/// is true, as being used with this directive.
Chris Lattnercb05af82006-09-26 03:38:18 +0000839void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Dan Gohmana119de82009-06-14 23:30:43 +0000840 // Should be an array of 'i8*'.
Chris Lattnercb05af82006-09-26 03:38:18 +0000841 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
842 if (InitList == 0) return;
843
844 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner16fe9902009-07-17 22:00:23 +0000845 const GlobalValue *GV =
846 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000847 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
848 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(GV),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000849 MCSA_NoDeadStrip);
Chris Lattnercb05af82006-09-26 03:38:18 +0000850 }
851}
852
Chris Lattnered138932005-12-13 06:32:10 +0000853/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
854/// function pointers, ignoring the init priority.
855void AsmPrinter::EmitXXStructorList(Constant *List) {
856 // Should be an array of '{ int, void ()* }' structs. The first value is the
857 // init priority, which we ignore.
858 if (!isa<ConstantArray>(List)) return;
859 ConstantArray *InitList = cast<ConstantArray>(List);
860 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
861 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
862 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000863
864 if (CS->getOperand(1)->isNullValue())
865 return; // Found a null terminator, exit printing.
866 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000867 EmitGlobalConstant(CS->getOperand(1));
868 }
869}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000870
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000871//===--------------------------------------------------------------------===//
872// Emission and print routines
873//
874
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000875/// EmitInt8 - Emit a byte directive and value.
876///
877void AsmPrinter::EmitInt8(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000878 OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000879}
880
881/// EmitInt16 - Emit a short directive and value.
882///
883void AsmPrinter::EmitInt16(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000884 OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000885}
886
887/// EmitInt32 - Emit a long directive and value.
888///
889void AsmPrinter::EmitInt32(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000890 OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000891}
892
893/// EmitInt64 - Emit a long long directive and value.
894///
895void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000896 OutStreamer.EmitIntValue(Value, 8, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000897}
898
Chris Lattner0d50c762010-03-08 23:58:37 +0000899/// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size
900/// in bytes of the directive is specified by Size and Hi/Lo specify the
901/// labels. This implicitly uses .set if it is available.
902void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo,
903 unsigned Size) const {
904 // Get the Hi-Lo expression.
905 const MCExpr *Diff =
906 MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(Hi, OutContext),
907 MCSymbolRefExpr::Create(Lo, OutContext),
908 OutContext);
909
910 if (!MAI->hasSetDirective()) {
911 OutStreamer.EmitValue(Diff, Size, 0/*AddrSpace*/);
912 return;
913 }
914
915 // Otherwise, emit with .set (aka assignment).
916 MCSymbol *SetLabel =
Chris Lattner98cdab52010-03-10 02:25:11 +0000917 OutContext.GetOrCreateTemporarySymbol(Twine(MAI->getPrivateGlobalPrefix()) +
918 "set" + Twine(SetCounter++));
Chris Lattner0d50c762010-03-08 23:58:37 +0000919 OutStreamer.EmitAssignment(SetLabel, Diff);
Chris Lattner6cde3e62010-03-09 00:39:24 +0000920 OutStreamer.EmitSymbolValue(SetLabel, Size, 0/*AddrSpace*/);
Chris Lattner0d50c762010-03-08 23:58:37 +0000921}
922
923
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000924//===----------------------------------------------------------------------===//
925
Chris Lattner3a420532007-05-31 18:57:45 +0000926// EmitAlignment - Emit an alignment directive to the specified power of
927// two boundary. For example, if you pass in 3 here, you will get an 8
928// byte alignment. If a global value is specified, and if that global has
929// an explicit alignment requested, it will unconditionally override the
930// alignment request. However, if ForcedAlignBits is specified, this value
931// has final say: the ultimate alignment will be the max of ForcedAlignBits
932// and the alignment computed with NumBits and the global.
933//
934// The algorithm is:
935// Align = NumBits;
936// if (GV && GV->hasalignment) Align = GV->getalignment();
937// Align = std::max(Align, ForcedAlignBits);
938//
939void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng05548eb2008-02-29 19:36:59 +0000940 unsigned ForcedAlignBits,
941 bool UseFillExpr) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000942 if (GV && GV->getAlignment())
Chris Lattner3a420532007-05-31 18:57:45 +0000943 NumBits = Log2_32(GV->getAlignment());
944 NumBits = std::max(NumBits, ForcedAlignBits);
945
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000946 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner663c2d22009-08-19 06:12:02 +0000947
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000948 if (getCurrentSection()->getKind().isText())
Chris Lattner2cce3712010-02-23 18:46:22 +0000949 OutStreamer.EmitCodeAlignment(1 << NumBits);
950 else
951 OutStreamer.EmitValueToAlignment(1 << NumBits, 0, 1, 0);
Chris Lattnerbfddc202004-08-17 19:14:29 +0000952}
David Greenea5bb59f2009-08-05 21:00:52 +0000953
Chris Lattner52492ac2010-01-23 06:17:14 +0000954/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
955///
956static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
957 MCContext &Ctx = AP.OutContext;
958
959 if (CV->isNullValue() || isa<UndefValue>(CV))
960 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000961
Chris Lattner52492ac2010-01-23 06:17:14 +0000962 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
963 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000964
Chris Lattner52492ac2010-01-23 06:17:14 +0000965 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
966 return MCSymbolRefExpr::Create(AP.GetGlobalValueSymbol(GV), Ctx);
967 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
968 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000969
970 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
971 if (CE == 0) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000972 llvm_unreachable("Unknown constant value to lower!");
973 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000974 }
975
976 switch (CE->getOpcode()) {
Dan Gohman618f1772010-02-08 22:02:38 +0000977 default:
978 // If the code isn't optimized, there may be outstanding folding
979 // opportunities. Attempt to fold the expression using TargetData as a
980 // last resort before giving up.
Dan Gohman54e72ec2010-02-08 22:19:11 +0000981 if (Constant *C =
982 ConstantFoldConstantExpression(CE, AP.TM.getTargetData()))
983 if (C != CE)
984 return LowerConstant(C, AP);
Dan Gohman618f1772010-02-08 22:02:38 +0000985#ifndef NDEBUG
986 CE->dump();
987#endif
988 llvm_unreachable("FIXME: Don't support this constant expr");
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000989 case Instruction::GetElementPtr: {
Chris Lattner52492ac2010-01-23 06:17:14 +0000990 const TargetData &TD = *AP.TM.getTargetData();
991 // Generate a symbolic expression for the byte address
992 const Constant *PtrVal = CE->getOperand(0);
993 SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
994 int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0],
995 IdxVec.size());
996
997 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000998 if (Offset == 0)
Chris Lattner52492ac2010-01-23 06:17:14 +0000999 return Base;
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001000
1001 // Truncate/sext the offset to the pointer size.
Chris Lattner52492ac2010-01-23 06:17:14 +00001002 if (TD.getPointerSizeInBits() != 64) {
1003 int SExtAmount = 64-TD.getPointerSizeInBits();
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001004 Offset = (Offset << SExtAmount) >> SExtAmount;
1005 }
1006
Chris Lattner52492ac2010-01-23 06:17:14 +00001007 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
1008 Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001009 }
1010
1011 case Instruction::Trunc:
1012 // We emit the value and depend on the assembler to truncate the generated
1013 // expression properly. This is important for differences between
1014 // blockaddress labels. Since the two labels are in the same function, it
1015 // is reasonable to treat their delta as a 32-bit value.
Chris Lattner52492ac2010-01-23 06:17:14 +00001016 // FALL THROUGH.
1017 case Instruction::BitCast:
1018 return LowerConstant(CE->getOperand(0), AP);
1019
1020 case Instruction::IntToPtr: {
1021 const TargetData &TD = *AP.TM.getTargetData();
1022 // Handle casts to pointers by changing them into casts to the appropriate
1023 // integer type. This promotes constant folding and simplifies this code.
1024 Constant *Op = CE->getOperand(0);
1025 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
1026 false/*ZExt*/);
1027 return LowerConstant(Op, AP);
1028 }
1029
1030 case Instruction::PtrToInt: {
1031 const TargetData &TD = *AP.TM.getTargetData();
1032 // Support only foldable casts to/from pointers that can be eliminated by
1033 // changing the pointer to the appropriately sized integer type.
1034 Constant *Op = CE->getOperand(0);
1035 const Type *Ty = CE->getType();
1036
1037 const MCExpr *OpExpr = LowerConstant(Op, AP);
1038
1039 // We can emit the pointer value into this slot if the slot is an
1040 // integer slot equal to the size of the pointer.
1041 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
1042 return OpExpr;
1043
1044 // Otherwise the pointer is smaller than the resultant integer, mask off
1045 // the high bits so we are sure to get a proper truncation if the input is
1046 // a constant expr.
1047 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
1048 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
1049 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
1050 }
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001051
Dan Gohman5938a3e2010-02-09 00:02:37 +00001052 // The MC library also has a right-shift operator, but it isn't consistently
1053 // signed or unsigned between different targets.
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001054 case Instruction::Add:
1055 case Instruction::Sub:
Dan Gohman5938a3e2010-02-09 00:02:37 +00001056 case Instruction::Mul:
1057 case Instruction::SDiv:
1058 case Instruction::SRem:
1059 case Instruction::Shl:
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001060 case Instruction::And:
1061 case Instruction::Or:
Chris Lattner52492ac2010-01-23 06:17:14 +00001062 case Instruction::Xor: {
1063 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
1064 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001065 switch (CE->getOpcode()) {
Chris Lattner52492ac2010-01-23 06:17:14 +00001066 default: llvm_unreachable("Unknown binary operator constant cast expr");
1067 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
1068 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
Dan Gohman5938a3e2010-02-09 00:02:37 +00001069 case Instruction::Mul: return MCBinaryExpr::CreateMul(LHS, RHS, Ctx);
1070 case Instruction::SDiv: return MCBinaryExpr::CreateDiv(LHS, RHS, Ctx);
1071 case Instruction::SRem: return MCBinaryExpr::CreateMod(LHS, RHS, Ctx);
1072 case Instruction::Shl: return MCBinaryExpr::CreateShl(LHS, RHS, Ctx);
Chris Lattner52492ac2010-01-23 06:17:14 +00001073 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
1074 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
1075 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001076 }
Chris Lattner52492ac2010-01-23 06:17:14 +00001077 }
Chris Lattnera80ba712004-08-16 23:15:22 +00001078 }
1079}
Chris Lattner1b7e2352004-08-17 06:36:49 +00001080
Chris Lattner91093ec2010-01-19 19:10:44 +00001081static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
1082 AsmPrinter &AP) {
Chris Lattner05f84532010-01-23 04:54:10 +00001083 if (AddrSpace != 0 || !CA->isString()) {
1084 // Not a string. Print the values in successive locations
Chris Lattner91093ec2010-01-19 19:10:44 +00001085 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1086 AP.EmitGlobalConstant(CA->getOperand(i), AddrSpace);
Chris Lattner05f84532010-01-23 04:54:10 +00001087 return;
Dan Gohman00d448a2008-12-22 21:14:27 +00001088 }
Chris Lattner05f84532010-01-23 04:54:10 +00001089
1090 // Otherwise, it can be emitted as .ascii.
1091 SmallVector<char, 128> TmpVec;
1092 TmpVec.reserve(CA->getNumOperands());
1093 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1094 TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
1095
1096 AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001097}
1098
Chris Lattner91093ec2010-01-19 19:10:44 +00001099static void EmitGlobalConstantVector(const ConstantVector *CV,
1100 unsigned AddrSpace, AsmPrinter &AP) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001101 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
Chris Lattner91093ec2010-01-19 19:10:44 +00001102 AP.EmitGlobalConstant(CV->getOperand(i), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001103}
1104
Chris Lattner91093ec2010-01-19 19:10:44 +00001105static void EmitGlobalConstantStruct(const ConstantStruct *CS,
1106 unsigned AddrSpace, AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001107 // Print the fields in successive locations. Pad to align if needed!
Chris Lattner91093ec2010-01-19 19:10:44 +00001108 const TargetData *TD = AP.TM.getTargetData();
1109 unsigned Size = TD->getTypeAllocSize(CS->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001110 const StructLayout *Layout = TD->getStructLayout(CS->getType());
Chris Lattner91093ec2010-01-19 19:10:44 +00001111 uint64_t SizeSoFar = 0;
1112 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001113 const Constant *Field = CS->getOperand(i);
Dan Gohman00d448a2008-12-22 21:14:27 +00001114
1115 // Check if padding is needed and insert one or more 0s.
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001116 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001117 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
1118 - Layout->getElementOffset(i)) - FieldSize;
1119 SizeSoFar += FieldSize + PadSize;
Dan Gohman00d448a2008-12-22 21:14:27 +00001120
1121 // Now print the actual field value.
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001122 AP.EmitGlobalConstant(Field, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001123
1124 // Insert padding - this may include padding to increase the size of the
1125 // current field up to the ABI size (if the struct is not packed) as well
1126 // as padding to ensure that the next field starts at the right offset.
Chris Lattner2dd245c2010-01-20 07:11:32 +00001127 AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001128 }
Chris Lattner2dd245c2010-01-20 07:11:32 +00001129 assert(SizeSoFar == Layout->getSizeInBytes() &&
Dan Gohman00d448a2008-12-22 21:14:27 +00001130 "Layout of constant struct may be incorrect!");
1131}
1132
Chris Lattner2dd245c2010-01-20 07:11:32 +00001133static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
1134 AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001135 // FP Constants are printed as integer constants to avoid losing
Chris Lattner9ceff942010-01-20 06:53:37 +00001136 // precision.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001137 if (CFP->getType()->isDoubleTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001138 if (AP.VerboseAsm) {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +00001139 double Val = CFP->getValueAPF().convertToDouble();
1140 AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
Chris Lattner09ce6742010-01-19 22:16:33 +00001141 }
1142
Chris Lattner2dd245c2010-01-20 07:11:32 +00001143 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1144 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001145 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001146 }
1147
1148 if (CFP->getType()->isFloatTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001149 if (AP.VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001150 float Val = CFP->getValueAPF().convertToFloat();
1151 AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
Dan Gohmana12e9d72009-08-12 18:32:22 +00001152 }
Chris Lattner2dd245c2010-01-20 07:11:32 +00001153 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1154 AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001155 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001156 }
1157
1158 if (CFP->getType()->isX86_FP80Ty()) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001159 // all long double variants are printed as hex
1160 // api needed to prevent premature destruction
Chris Lattner09ce6742010-01-19 22:16:33 +00001161 APInt API = CFP->getValueAPF().bitcastToAPInt();
1162 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +00001163 if (AP.VerboseAsm) {
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001164 // Convert to double so we can print the approximate val as a comment.
1165 APFloat DoubleVal = CFP->getValueAPF();
1166 bool ignored;
1167 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
1168 &ignored);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001169 AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
1170 << DoubleVal.convertToDouble() << '\n';
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001171 }
1172
Chris Lattner2dd245c2010-01-20 07:11:32 +00001173 if (AP.TM.getTargetData()->isBigEndian()) {
1174 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
1175 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001176 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001177 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1178 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001179 }
Chris Lattner9ceff942010-01-20 06:53:37 +00001180
1181 // Emit the tail padding for the long double.
Chris Lattner2dd245c2010-01-20 07:11:32 +00001182 const TargetData &TD = *AP.TM.getTargetData();
1183 AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
1184 TD.getTypeStoreSize(CFP->getType()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001185 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001186 }
1187
Chris Lattner09ce6742010-01-19 22:16:33 +00001188 assert(CFP->getType()->isPPC_FP128Ty() &&
1189 "Floating point constant type not handled");
1190 // All long double variants are printed as hex api needed to prevent
1191 // premature destruction.
1192 APInt API = CFP->getValueAPF().bitcastToAPInt();
1193 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +00001194 if (AP.TM.getTargetData()->isBigEndian()) {
1195 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1196 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
Chris Lattner9ceff942010-01-20 06:53:37 +00001197 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001198 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
1199 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner09ce6742010-01-19 22:16:33 +00001200 }
Dan Gohman00d448a2008-12-22 21:14:27 +00001201}
1202
Chris Lattner2dd245c2010-01-20 07:11:32 +00001203static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
1204 unsigned AddrSpace, AsmPrinter &AP) {
1205 const TargetData *TD = AP.TM.getTargetData();
Dan Gohman00d448a2008-12-22 21:14:27 +00001206 unsigned BitWidth = CI->getBitWidth();
Chris Lattner38c2b0a2010-01-13 04:39:46 +00001207 assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
Dan Gohman00d448a2008-12-22 21:14:27 +00001208
1209 // We don't expect assemblers to support integer data directives
1210 // for more than 64 bits, so we emit the data in at most 64-bit
1211 // quantities at a time.
1212 const uint64_t *RawData = CI->getValue().getRawData();
1213 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001214 uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1215 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001216 }
1217}
1218
Chris Lattner25045bd2005-11-21 07:51:36 +00001219/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001220void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Chris Lattner043c4e52010-01-20 07:19:19 +00001221 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001222 uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
Bill Wendling744f5792010-02-05 00:17:02 +00001223 if (Size == 0) Size = 1; // An empty "_foo:" followed by a section is undef.
Chris Lattner6449abf2010-01-19 21:51:22 +00001224 return OutStreamer.EmitZeros(Size, AddrSpace);
Chris Lattner2dd245c2010-01-20 07:11:32 +00001225 }
1226
1227 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1228 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1229 switch (Size) {
1230 case 1:
1231 case 2:
1232 case 4:
1233 case 8:
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001234 if (VerboseAsm)
1235 OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001236 OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1237 return;
1238 default:
1239 EmitGlobalConstantLargeInt(CI, AddrSpace, *this);
1240 return;
1241 }
1242 }
Chris Lattner3cc3a002010-01-13 04:34:19 +00001243
Chris Lattner91093ec2010-01-19 19:10:44 +00001244 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1245 return EmitGlobalConstantArray(CVA, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001246
Chris Lattner91093ec2010-01-19 19:10:44 +00001247 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1248 return EmitGlobalConstantStruct(CVS, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001249
Chris Lattner91093ec2010-01-19 19:10:44 +00001250 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
Chris Lattner2dd245c2010-01-20 07:11:32 +00001251 return EmitGlobalConstantFP(CFP, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001252
Chris Lattner91093ec2010-01-19 19:10:44 +00001253 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1254 return EmitGlobalConstantVector(V, AddrSpace, *this);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001255
Chris Lattnerb0bedd62010-01-20 17:57:50 +00001256 if (isa<ConstantPointerNull>(CV)) {
1257 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1258 OutStreamer.EmitIntValue(0, Size, AddrSpace);
1259 return;
1260 }
1261
Chris Lattner52492ac2010-01-23 06:17:14 +00001262 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it
1263 // thread the streamer with EmitValue.
1264 OutStreamer.EmitValue(LowerConstant(CV, *this),
1265 TM.getTargetData()->getTypeAllocSize(CV->getType()),
1266 AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001267}
Chris Lattner0264d1a2006-01-27 02:10:10 +00001268
Chris Lattnerfad86b02008-08-17 07:19:36 +00001269void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001270 // Target doesn't support this yet!
Torok Edwinc23197a2009-07-14 16:55:14 +00001271 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Evan Chengd6594ae2006-09-12 21:00:35 +00001272}
1273
Chris Lattner3ce9b672006-09-26 23:59:50 +00001274/// PrintSpecial - Print information related to the specified machine instr
1275/// that is independent of the operand, and may be independent of the instr
1276/// itself. This can be useful for portably encoding the comment character
1277/// or other bits of target-specific knowledge into the asmstrings. The
1278/// syntax used is ${:comment}. Targets can override this to add support
1279/// for their own strange codes.
Chris Lattner3e0cc262009-03-10 05:37:13 +00001280void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001281 if (!strcmp(Code, "private")) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001282 O << MAI->getPrivateGlobalPrefix();
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001283 } else if (!strcmp(Code, "comment")) {
Evan Chengf1c0ae92009-03-24 00:17:40 +00001284 if (VerboseAsm)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001285 O << MAI->getCommentString();
Chris Lattner3ce9b672006-09-26 23:59:50 +00001286 } else if (!strcmp(Code, "uid")) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001287 // Comparing the address of MI isn't sufficient, because machineinstrs may
1288 // be allocated to the same address across functions.
1289 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1290
Owen Andersonbd58edf2009-06-24 22:28:12 +00001291 // If this is a new LastFn instruction, bump the counter.
1292 if (LastMI != MI || LastFn != ThisF) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001293 ++Counter;
1294 LastMI = MI;
Owen Andersonbd58edf2009-06-24 22:28:12 +00001295 LastFn = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001296 }
Chris Lattner3ce9b672006-09-26 23:59:50 +00001297 O << Counter;
1298 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001299 std::string msg;
1300 raw_string_ostream Msg(msg);
1301 Msg << "Unknown special formatter '" << Code
Bill Wendlinge8156192006-12-07 01:30:32 +00001302 << "' for machine instr: " << *MI;
Torok Edwin7d696d82009-07-11 13:10:19 +00001303 llvm_report_error(Msg.str());
Chris Lattner3ce9b672006-09-26 23:59:50 +00001304 }
1305}
1306
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001307/// processDebugLoc - Processes the debug information of each machine
1308/// instruction's DebugLoc.
Devang Patelaf0e2722009-10-06 02:19:11 +00001309void AsmPrinter::processDebugLoc(const MachineInstr *MI,
1310 bool BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001311 if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1312 || !DW->ShouldEmitDwarfDebug())
Chris Lattnerd2503292009-08-05 04:09:18 +00001313 return;
Devang Patelb0fdedb2009-09-30 23:12:50 +00001314 DebugLoc DL = MI->getDebugLoc();
Devang Patel53bb5c92009-11-10 23:06:00 +00001315 if (DL.isUnknown())
1316 return;
Devang Patel6b61f582010-01-16 06:09:35 +00001317 DILocation CurDLT = MF->getDILocation(DL);
Devang Patel3c91b052010-03-08 20:52:55 +00001318 if (!CurDLT.getScope().Verify())
Devang Patel53bb5c92009-11-10 23:06:00 +00001319 return;
1320
Chris Lattner043c4e52010-01-20 07:19:19 +00001321 if (!BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001322 // After printing instruction
1323 DW->EndScope(MI);
Chris Lattner043c4e52010-01-20 07:19:19 +00001324 } else if (CurDLT.getNode() != PrevDLT) {
Chris Lattnerc6087842010-03-09 04:54:43 +00001325 MCSymbol *L = DW->RecordSourceLine(CurDLT.getLineNumber(),
1326 CurDLT.getColumnNumber(),
1327 CurDLT.getScope().getNode());
Chris Lattner043c4e52010-01-20 07:19:19 +00001328 DW->BeginScope(MI, L);
1329 PrevDLT = CurDLT.getNode();
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001330 }
1331}
Chris Lattner3ce9b672006-09-26 23:59:50 +00001332
Devang Patel53bb5c92009-11-10 23:06:00 +00001333
Chris Lattner0264d1a2006-01-27 02:10:10 +00001334/// printInlineAsm - This method formats and prints the specified machine
1335/// instruction that is an inline asm.
1336void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001337 unsigned NumOperands = MI->getNumOperands();
1338
1339 // Count the number of register definitions.
1340 unsigned NumDefs = 0;
Dan Gohmand735b802008-10-03 15:45:36 +00001341 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Chris Lattner67942f52006-09-05 20:02:51 +00001342 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001343 assert(NumDefs != NumOperands-1 && "No asm string?");
1344
Dan Gohmand735b802008-10-03 15:45:36 +00001345 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +00001346
1347 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001348 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +00001349
Dan Gohman40c57862009-11-06 00:04:54 +00001350 O << '\t';
1351
Dale Johannesenba2a0b92008-01-29 02:21:21 +00001352 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1353 // These are useful to see where empty asm's wound up.
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001354 if (AsmStr[0] == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001355 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1356 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001357 return;
1358 }
1359
Chris Lattner33adcfb2009-08-22 21:43:10 +00001360 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001361
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001362 // The variant of the current asmprinter.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001363 int AsmPrinterVariant = MAI->getAssemblerDialect();
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001364
Chris Lattner66099132006-02-01 22:41:11 +00001365 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1366 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +00001367
Chris Lattner66099132006-02-01 22:41:11 +00001368 while (*LastEmitted) {
1369 switch (*LastEmitted) {
1370 default: {
1371 // Not a special case, emit the string section literally.
1372 const char *LiteralEnd = LastEmitted+1;
1373 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +00001374 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +00001375 ++LiteralEnd;
1376 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1377 O.write(LastEmitted, LiteralEnd-LastEmitted);
1378 LastEmitted = LiteralEnd;
1379 break;
1380 }
Chris Lattner1c059972006-05-05 21:47:05 +00001381 case '\n':
1382 ++LastEmitted; // Consume newline character.
Dan Gohmand19a53b2008-06-30 22:03:41 +00001383 O << '\n'; // Indent code with newline.
Chris Lattner1c059972006-05-05 21:47:05 +00001384 break;
Chris Lattner66099132006-02-01 22:41:11 +00001385 case '$': {
1386 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001387 bool Done = true;
1388
1389 // Handle escapes.
1390 switch (*LastEmitted) {
1391 default: Done = false; break;
1392 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +00001393 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1394 O << '$';
1395 ++LastEmitted; // Consume second '$' character.
1396 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001397 case '(': // $( -> same as GCC's { character.
1398 ++LastEmitted; // Consume '(' character.
1399 if (CurVariant != -1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001400 llvm_report_error("Nested variants found in inline asm string: '"
1401 + std::string(AsmStr) + "'");
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001402 }
1403 CurVariant = 0; // We're in the first variant now.
1404 break;
1405 case '|':
1406 ++LastEmitted; // consume '|' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001407 if (CurVariant == -1)
1408 O << '|'; // this is gcc's behavior for | outside a variant
1409 else
1410 ++CurVariant; // We're in the next variant.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001411 break;
1412 case ')': // $) -> same as GCC's } char.
1413 ++LastEmitted; // consume ')' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001414 if (CurVariant == -1)
1415 O << '}'; // this is gcc's behavior for } outside a variant
1416 else
1417 CurVariant = -1;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001418 break;
Chris Lattner66099132006-02-01 22:41:11 +00001419 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001420 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +00001421
1422 bool HasCurlyBraces = false;
1423 if (*LastEmitted == '{') { // ${variable}
1424 ++LastEmitted; // Consume '{' character.
1425 HasCurlyBraces = true;
1426 }
1427
Chris Lattner3e0cc262009-03-10 05:37:13 +00001428 // If we have ${:foo}, then this is not a real operand reference, it is a
1429 // "magic" string reference, just like in .td files. Arrange to call
1430 // PrintSpecial.
1431 if (HasCurlyBraces && *LastEmitted == ':') {
1432 ++LastEmitted;
1433 const char *StrStart = LastEmitted;
1434 const char *StrEnd = strchr(StrStart, '}');
1435 if (StrEnd == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001436 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1437 + std::string(AsmStr) + "'");
Chris Lattner3e0cc262009-03-10 05:37:13 +00001438 }
1439
1440 std::string Val(StrStart, StrEnd);
1441 PrintSpecial(MI, Val.c_str());
1442 LastEmitted = StrEnd+1;
1443 break;
1444 }
1445
Chris Lattner66099132006-02-01 22:41:11 +00001446 const char *IDStart = LastEmitted;
1447 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +00001448 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +00001449 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1450 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001451 llvm_report_error("Bad $ operand number in inline asm string: '"
1452 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001453 }
1454 LastEmitted = IDEnd;
1455
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001456 char Modifier[2] = { 0, 0 };
1457
Chris Lattner66099132006-02-01 22:41:11 +00001458 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001459 // If we have curly braces, check for a modifier character. This
1460 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1461 if (*LastEmitted == ':') {
1462 ++LastEmitted; // Consume ':' character.
1463 if (*LastEmitted == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001464 llvm_report_error("Bad ${:} expression in inline asm string: '"
1465 + std::string(AsmStr) + "'");
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001466 }
1467
1468 Modifier[0] = *LastEmitted;
1469 ++LastEmitted; // Consume modifier character.
1470 }
1471
Chris Lattner66099132006-02-01 22:41:11 +00001472 if (*LastEmitted != '}') {
Torok Edwin7d696d82009-07-11 13:10:19 +00001473 llvm_report_error("Bad ${} expression in inline asm string: '"
1474 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001475 }
1476 ++LastEmitted; // Consume '}' character.
1477 }
1478
1479 if ((unsigned)Val >= NumOperands-1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001480 llvm_report_error("Invalid $ operand number in inline asm string: '"
1481 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001482 }
1483
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001484 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001485 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001486 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1487 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001488
1489 bool Error = false;
1490
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001491 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001492 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001493 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner9e330492007-12-30 20:50:28 +00001494 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng697cbbf2009-03-20 18:03:34 +00001495 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001496 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001497
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001498 if (OpNo >= MI->getNumOperands()) {
1499 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001500 } else {
Chris Lattner9e330492007-12-30 20:50:28 +00001501 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001502 ++OpNo; // Skip over the ID number.
1503
Chris Lattner10b318b2010-01-17 21:43:43 +00001504 if (Modifier[0] == 'l') // labels are target independent
Chris Lattnerf71cb012010-01-26 04:55:51 +00001505 O << *MI->getOperand(OpNo).getMBB()->getSymbol(OutContext);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001506 else {
1507 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen86b49f82008-09-24 01:07:17 +00001508 if ((OpFlags & 7) == 4) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001509 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1510 Modifier[0] ? Modifier : 0);
1511 } else {
1512 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1513 Modifier[0] ? Modifier : 0);
1514 }
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001515 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001516 }
1517 if (Error) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001518 std::string msg;
1519 raw_string_ostream Msg(msg);
Chris Lattner10b318b2010-01-17 21:43:43 +00001520 Msg << "Invalid operand found in inline asm: '" << AsmStr << "'\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00001521 MI->print(Msg);
1522 llvm_report_error(Msg.str());
Chris Lattner66099132006-02-01 22:41:11 +00001523 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001524 }
Chris Lattner66099132006-02-01 22:41:11 +00001525 break;
1526 }
Chris Lattner66099132006-02-01 22:41:11 +00001527 }
1528 }
Chris Lattner8e089a92010-02-10 00:36:00 +00001529 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
1530 OutStreamer.AddBlankLine();
Chris Lattner66099132006-02-01 22:41:11 +00001531}
1532
Evan Chengda47e6e2008-03-15 00:03:38 +00001533/// printImplicitDef - This method prints the specified machine instruction
1534/// that is an implicit def.
1535void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001536 if (!VerboseAsm) return;
1537 O.PadToColumn(MAI->getCommentColumn());
1538 O << MAI->getCommentString() << " implicit-def: "
Chris Lattner8e089a92010-02-10 00:36:00 +00001539 << TRI->getName(MI->getOperand(0).getReg());
1540 OutStreamer.AddBlankLine();
Evan Chengda47e6e2008-03-15 00:03:38 +00001541}
1542
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001543void AsmPrinter::printKill(const MachineInstr *MI) const {
1544 if (!VerboseAsm) return;
1545 O.PadToColumn(MAI->getCommentColumn());
1546 O << MAI->getCommentString() << " kill:";
1547 for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1548 const MachineOperand &op = MI->getOperand(n);
1549 assert(op.isReg() && "KILL instruction must have only register operands");
1550 O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1551 }
Chris Lattner8e089a92010-02-10 00:36:00 +00001552 OutStreamer.AddBlankLine();
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001553}
1554
Jim Laskey1ee29252007-01-26 14:34:52 +00001555/// printLabel - This method prints a local label used by debug and
1556/// exception handling tables.
Chris Lattnerf64159c842010-02-03 01:46:05 +00001557void AsmPrinter::printLabelInst(const MachineInstr *MI) const {
Chris Lattnerb2cc1a32010-03-09 01:02:30 +00001558 MCSymbol *Sym =
Chris Lattner98cdab52010-03-10 02:25:11 +00001559 OutContext.GetOrCreateTemporarySymbol(Twine(MAI->getPrivateGlobalPrefix()) +
Chris Lattnerb2cc1a32010-03-09 01:02:30 +00001560 "label" + Twine(MI->getOperand(0).getImm()));
1561 OutStreamer.EmitLabel(Sym);
Jim Laskey1ee29252007-01-26 14:34:52 +00001562}
1563
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001564void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattnerb2cc1a32010-03-09 01:02:30 +00001565 MCSymbol *Sym =
Chris Lattner98cdab52010-03-10 02:25:11 +00001566 OutContext.GetOrCreateTemporarySymbol(Twine(MAI->getPrivateGlobalPrefix()) +
1567 "label" + Twine(Id));
Chris Lattnerb2cc1a32010-03-09 01:02:30 +00001568 OutStreamer.EmitLabel(Sym);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001569}
1570
Chris Lattner66099132006-02-01 22:41:11 +00001571/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1572/// instruction, using the specified assembler variant. Targets should
Dale Johannesencf0b7662010-01-14 21:50:17 +00001573/// override this to format as appropriate.
Chris Lattner66099132006-02-01 22:41:11 +00001574bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001575 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001576 // Target doesn't support this yet!
1577 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001578}
Chris Lattnerdd260332006-02-24 20:21:58 +00001579
1580bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1581 unsigned AsmVariant,
1582 const char *ExtraCode) {
1583 // Target doesn't support this yet!
1584 return true;
1585}
Nate Begeman37efe672006-04-22 18:53:45 +00001586
Chris Lattner95175542010-02-08 23:10:08 +00001587MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const {
1588 return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock());
Dan Gohman8c2b5252009-10-30 01:27:03 +00001589}
1590
1591MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
Chris Lattner95175542010-02-08 23:10:08 +00001592 const BasicBlock *BB) const {
Dan Gohman8c2b5252009-10-30 01:27:03 +00001593 assert(BB->hasName() &&
1594 "Address of anonymous basic block not supported yet!");
1595
Dan Gohman568a3be2009-11-05 23:14:35 +00001596 // This code must use the function name itself, and not the function number,
1597 // since it must be possible to generate the label name from within other
1598 // functions.
Chris Lattner2f8cc262010-01-13 07:30:49 +00001599 SmallString<60> FnName;
1600 Mang->getNameWithPrefix(FnName, F, false);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001601
Chris Lattner2f8cc262010-01-13 07:30:49 +00001602 // FIXME: THIS IS BROKEN IF THE LLVM BASIC BLOCK DOESN'T HAVE A NAME!
Chris Lattner48130352010-01-13 06:38:18 +00001603 SmallString<60> NameResult;
Chris Lattner2f8cc262010-01-13 07:30:49 +00001604 Mang->getNameWithPrefix(NameResult,
1605 StringRef("BA") + Twine((unsigned)FnName.size()) +
Chris Lattner95175542010-02-08 23:10:08 +00001606 "_" + FnName.str() + "_" + BB->getName(),
Chris Lattner2f8cc262010-01-13 07:30:49 +00001607 Mangler::Private);
Dan Gohman568a3be2009-11-05 23:14:35 +00001608
Chris Lattner98cdab52010-03-10 02:25:11 +00001609 return OutContext.GetOrCreateTemporarySymbol(NameResult.str());
Dan Gohman8c2b5252009-10-30 01:27:03 +00001610}
1611
Chris Lattner39248682010-01-23 05:19:23 +00001612/// GetCPISymbol - Return the symbol for the specified constant pool entry.
1613MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
Chris Lattner98cdab52010-03-10 02:25:11 +00001614 return OutContext.GetOrCreateTemporarySymbol
1615 (Twine(MAI->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber())
1616 + "_" + Twine(CPID));
Chris Lattner39248682010-01-23 05:19:23 +00001617}
1618
1619/// GetJTISymbol - Return the symbol for the specified jump table entry.
1620MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
Chris Lattner589c6f62010-01-26 06:28:43 +00001621 return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
Chris Lattner7cb384d2009-09-12 23:02:08 +00001622}
1623
Chris Lattner798d1252010-01-25 21:17:10 +00001624/// GetJTSetSymbol - Return the symbol for the specified jump table .set
1625/// FIXME: privatize to AsmPrinter.
1626MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
Chris Lattner98cdab52010-03-10 02:25:11 +00001627 return OutContext.GetOrCreateTemporarySymbol
1628 (Twine(MAI->getPrivateGlobalPrefix()) + Twine(getFunctionNumber()) + "_" +
1629 Twine(UID) + "_set_" + Twine(MBBID));
Chris Lattner798d1252010-01-25 21:17:10 +00001630}
1631
Chris Lattner6b04ede2010-01-15 23:18:17 +00001632/// GetGlobalValueSymbol - Return the MCSymbol for the specified global
1633/// value.
1634MCSymbol *AsmPrinter::GetGlobalValueSymbol(const GlobalValue *GV) const {
Chris Lattner73ff5642010-03-12 18:55:20 +00001635 return Mang->getSymbol(GV);
Chris Lattner6b04ede2010-01-15 23:18:17 +00001636}
1637
Chris Lattner7a2ba942010-01-16 18:37:32 +00001638/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
Chris Lattnerd588b972010-01-15 23:25:11 +00001639/// global value name as its base, with the specified suffix, and where the
Chris Lattner7a2ba942010-01-16 18:37:32 +00001640/// symbol is forced to have private linkage if ForcePrivate is true.
1641MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
1642 StringRef Suffix,
1643 bool ForcePrivate) const {
Chris Lattnerd588b972010-01-15 23:25:11 +00001644 SmallString<60> NameStr;
Chris Lattner7a2ba942010-01-16 18:37:32 +00001645 Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
Chris Lattnerd588b972010-01-15 23:25:11 +00001646 NameStr.append(Suffix.begin(), Suffix.end());
Chris Lattner98cdab52010-03-10 02:25:11 +00001647 if (!GV->hasPrivateLinkage() && !ForcePrivate)
1648 return OutContext.GetOrCreateSymbol(NameStr.str());
1649 return OutContext.GetOrCreateTemporarySymbol(NameStr.str());
Chris Lattnerd588b972010-01-15 23:25:11 +00001650}
1651
Chris Lattner6b04ede2010-01-15 23:18:17 +00001652/// GetExternalSymbolSymbol - Return the MCSymbol for the specified
1653/// ExternalSymbol.
1654MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
1655 SmallString<60> NameStr;
1656 Mang->getNameWithPrefix(NameStr, Sym);
1657 return OutContext.GetOrCreateSymbol(NameStr.str());
1658}
1659
Chris Lattner7cb384d2009-09-12 23:02:08 +00001660
Chris Lattner523a5082010-01-22 21:50:41 +00001661
1662/// PrintParentLoopComment - Print comments about parent loops of this one.
1663static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1664 unsigned FunctionNumber) {
1665 if (Loop == 0) return;
1666 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
1667 OS.indent(Loop->getLoopDepth()*2)
1668 << "Parent Loop BB" << FunctionNumber << "_"
1669 << Loop->getHeader()->getNumber()
1670 << " Depth=" << Loop->getLoopDepth() << '\n';
1671}
1672
1673
1674/// PrintChildLoopComment - Print comments about child loops within
1675/// the loop for this basic block, with nesting.
1676static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1677 unsigned FunctionNumber) {
1678 // Add child loop information
1679 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
1680 OS.indent((*CL)->getLoopDepth()*2)
1681 << "Child Loop BB" << FunctionNumber << "_"
1682 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
1683 << '\n';
1684 PrintChildLoopComment(OS, *CL, FunctionNumber);
1685 }
1686}
1687
Chris Lattnerd1ff72b2010-02-03 01:09:55 +00001688/// PrintBasicBlockLoopComments - Pretty-print comments for basic blocks.
Chris Lattner523a5082010-01-22 21:50:41 +00001689static void PrintBasicBlockLoopComments(const MachineBasicBlock &MBB,
1690 const MachineLoopInfo *LI,
1691 const AsmPrinter &AP) {
1692 // Add loop depth information
1693 const MachineLoop *Loop = LI->getLoopFor(&MBB);
1694 if (Loop == 0) return;
1695
1696 MachineBasicBlock *Header = Loop->getHeader();
1697 assert(Header && "No header for loop");
1698
1699 // If this block is not a loop header, just print out what is the loop header
1700 // and return.
1701 if (Header != &MBB) {
1702 AP.OutStreamer.AddComment(" in Loop: Header=BB" +
1703 Twine(AP.getFunctionNumber())+"_" +
1704 Twine(Loop->getHeader()->getNumber())+
1705 " Depth="+Twine(Loop->getLoopDepth()));
1706 return;
1707 }
1708
1709 // Otherwise, it is a loop header. Print out information about child and
1710 // parent loops.
1711 raw_ostream &OS = AP.OutStreamer.GetCommentOS();
1712
1713 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
1714
1715 OS << "=>";
1716 OS.indent(Loop->getLoopDepth()*2-2);
1717
1718 OS << "This ";
1719 if (Loop->empty())
1720 OS << "Inner ";
1721 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
1722
1723 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
1724}
1725
1726
Chris Lattner70a54c02009-09-13 18:25:37 +00001727/// EmitBasicBlockStart - This method prints the label for the specified
1728/// MachineBasicBlock, an alignment (if present) and a comment describing
1729/// it if appropriate.
Chris Lattner662316c2009-09-14 03:15:54 +00001730void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
Dan Gohmanb1cac332009-10-30 01:34:35 +00001731 // Emit an alignment directive for this block, if needed.
Chris Lattner70a54c02009-09-13 18:25:37 +00001732 if (unsigned Align = MBB->getAlignment())
1733 EmitAlignment(Log2_32(Align));
Evan Chengfb8075d2008-02-28 00:43:03 +00001734
Dan Gohmanb1cac332009-10-30 01:34:35 +00001735 // If the block has its address taken, emit a special label to satisfy
1736 // references to the block. This is done so that we don't need to
1737 // remember the number of this label, and so that we can make
1738 // forward references to labels without knowing what their numbers
1739 // will be.
Dan Gohman8c2b5252009-10-30 01:27:03 +00001740 if (MBB->hasAddressTaken()) {
Chris Lattner213168b2010-01-20 07:24:05 +00001741 const BasicBlock *BB = MBB->getBasicBlock();
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001742 if (VerboseAsm)
1743 OutStreamer.AddComment("Address Taken");
Chris Lattner213168b2010-01-20 07:24:05 +00001744 OutStreamer.EmitLabel(GetBlockAddressSymbol(BB->getParent(), BB));
Dan Gohman8c2b5252009-10-30 01:27:03 +00001745 }
1746
Dan Gohmanb1cac332009-10-30 01:34:35 +00001747 // Print the main label for the block.
Chris Lattner0a3f3992010-02-17 18:52:56 +00001748 if (MBB->pred_empty() || isBlockOnlyReachableByFallthrough(MBB)) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001749 if (VerboseAsm) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +00001750 // NOTE: Want this comment at start of line.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001751 O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001752 if (const BasicBlock *BB = MBB->getBasicBlock())
1753 if (BB->hasName())
1754 OutStreamer.AddComment("%" + BB->getName());
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001755
Chris Lattner523a5082010-01-22 21:50:41 +00001756 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001757 OutStreamer.AddBlankLine();
1758 }
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001759 } else {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001760 if (VerboseAsm) {
1761 if (const BasicBlock *BB = MBB->getBasicBlock())
1762 if (BB->hasName())
1763 OutStreamer.AddComment("%" + BB->getName());
Chris Lattner523a5082010-01-22 21:50:41 +00001764 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001765 }
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001766
Chris Lattnerf71cb012010-01-26 04:55:51 +00001767 OutStreamer.EmitLabel(MBB->getSymbol(OutContext));
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001768 }
Nate Begeman37efe672006-04-22 18:53:45 +00001769}
Nate Begeman52a51e382006-08-12 21:29:52 +00001770
Chris Lattnerbe9dfce2010-01-28 00:05:10 +00001771void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility) const {
Chris Lattner152a29b2010-01-23 06:53:23 +00001772 MCSymbolAttr Attr = MCSA_Invalid;
1773
1774 switch (Visibility) {
1775 default: break;
1776 case GlobalValue::HiddenVisibility:
1777 Attr = MAI->getHiddenVisibilityAttr();
1778 break;
1779 case GlobalValue::ProtectedVisibility:
1780 Attr = MAI->getProtectedVisibilityAttr();
1781 break;
Chris Lattner53d4d782010-01-15 23:38:51 +00001782 }
Chris Lattner152a29b2010-01-23 06:53:23 +00001783
1784 if (Attr != MCSA_Invalid)
1785 OutStreamer.EmitSymbolAttribute(Sym, Attr);
Chris Lattner53d4d782010-01-15 23:38:51 +00001786}
1787
Anton Korobeynikov7751ad92008-11-22 16:15:34 +00001788void AsmPrinter::printOffset(int64_t Offset) const {
1789 if (Offset > 0)
1790 O << '+' << Offset;
1791 else if (Offset < 0)
1792 O << Offset;
1793}
1794
Chris Lattner0a3f3992010-02-17 18:52:56 +00001795/// isBlockOnlyReachableByFallthough - Return true if the basic block has
1796/// exactly one predecessor and the control transfer mechanism between
1797/// the predecessor and this block is a fall-through.
1798bool AsmPrinter::isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB)
1799 const {
1800 // If this is a landing pad, it isn't a fall through. If it has no preds,
1801 // then nothing falls through to it.
1802 if (MBB->isLandingPad() || MBB->pred_empty())
1803 return false;
1804
1805 // If there isn't exactly one predecessor, it can't be a fall through.
1806 MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(), PI2 = PI;
1807 ++PI2;
1808 if (PI2 != MBB->pred_end())
1809 return false;
1810
1811 // The predecessor has to be immediately before this block.
1812 const MachineBasicBlock *Pred = *PI;
1813
1814 if (!Pred->isLayoutSuccessor(MBB))
1815 return false;
1816
1817 // If the block is completely empty, then it definitely does fall through.
1818 if (Pred->empty())
1819 return true;
1820
1821 // Otherwise, check the last instruction.
1822 const MachineInstr &LastInst = Pred->back();
1823 return !LastInst.getDesc().isBarrier();
1824}
1825
1826
1827
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001828GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1829 if (!S->usesMetadata())
Gordon Henriksenc317a602008-08-17 12:08:44 +00001830 return 0;
1831
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001832 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001833 if (GCPI != GCMetadataPrinters.end())
1834 return GCPI->second;
1835
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001836 const char *Name = S->getName().c_str();
Gordon Henriksenc317a602008-08-17 12:08:44 +00001837
1838 for (GCMetadataPrinterRegistry::iterator
1839 I = GCMetadataPrinterRegistry::begin(),
1840 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1841 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001842 GCMetadataPrinter *GMP = I->instantiate();
1843 GMP->S = S;
1844 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1845 return GMP;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001846 }
1847
Chris Lattner52492ac2010-01-23 06:17:14 +00001848 llvm_report_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
1849 return 0;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001850}
David Greene014700c2009-07-13 20:25:48 +00001851