blob: f20560088232c49752f070c408c3a9d538d0e8e0 [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;
Chris Lattner11d53c12010-03-13 20:55:24 +000058
David Greene71847812009-07-14 20:18:05 +000059AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
Chris Lattner11d53c12010-03-13 20:55:24 +000060 MCStreamer &Streamer)
Chris Lattnerb84822f2010-01-26 04:35:26 +000061 : MachineFunctionPass(&ID), O(o),
Chris Lattner11d53c12010-03-13 20:55:24 +000062 TM(tm), MAI(tm.getMCAsmInfo()), TRI(tm.getRegisterInfo()),
63 OutContext(Streamer.getContext()),
64 OutStreamer(Streamer),
Chris Lattner0d50c762010-03-08 23:58:37 +000065 LastMI(0), LastFn(0), Counter(~0U), SetCounter(0), PrevDLT(NULL) {
Chris Lattner0de1fc42009-06-24 19:09:55 +000066 DW = 0; MMI = 0;
Chris Lattner56591ab2010-02-02 23:37:42 +000067 VerboseAsm = Streamer.isVerboseAsm();
Evan Cheng42bf74b2009-03-25 01:47:28 +000068}
Chris Lattnered138932005-12-13 06:32:10 +000069
Gordon Henriksenc317a602008-08-17 12:08:44 +000070AsmPrinter::~AsmPrinter() {
71 for (gcp_iterator I = GCMetadataPrinters.begin(),
72 E = GCMetadataPrinters.end(); I != E; ++I)
73 delete I->second;
Chris Lattner2b2954f2009-07-27 21:28:04 +000074
75 delete &OutStreamer;
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);
Chris Lattner11d53c12010-03-13 20:55:24 +000097 AU.addRequired<MachineModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +000098 AU.addRequired<GCModuleInfo>();
David Greenefe37ab32009-08-18 19:22:55 +000099 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000100 AU.addRequired<MachineLoopInfo>();
Gordon Henriksence224772008-01-07 01:30:38 +0000101}
102
Chris Lattnera80ba712004-08-16 23:15:22 +0000103bool AsmPrinter::doInitialization(Module &M) {
Chris Lattner11d53c12010-03-13 20:55:24 +0000104 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
105 MMI->AnalyzeModule(M);
106
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000107 // Initialize TargetLoweringObjectFile.
108 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
109 .Initialize(OutContext, TM);
110
Chris Lattnerb87c3052010-03-12 20:47:28 +0000111 Mang = new Mangler(OutContext, *TM.getTargetData());
Chris Lattner2c1b1592006-01-23 23:47:53 +0000112
Bob Wilson812209a2009-09-30 22:06:26 +0000113 // Allow the target to emit any magic that it wants at the start of the file.
114 EmitStartOfAsmFile(M);
Rafael Espindola952b8392008-12-03 11:01:37 +0000115
Chris Lattnera6594fc2010-01-25 18:58:59 +0000116 // Very minimal debug info. It is ignored if we emit actual debug info. If we
117 // don't, this at least helps the user find where a global came from.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000118 if (MAI->hasSingleParameterDotFile()) {
Chris Lattnera6594fc2010-01-25 18:58:59 +0000119 // .file "foo.c"
120 OutStreamer.EmitFileDirective(M.getModuleIdentifier());
Rafael Espindola952b8392008-12-03 11:01:37 +0000121 }
122
Bob Wilson812209a2009-09-30 22:06:26 +0000123 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
124 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000125 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
126 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000127 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000128
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000129 if (!M.getModuleInlineAsm().empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000130 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000131 << M.getModuleInlineAsm()
Chris Lattner33adcfb2009-08-22 21:43:10 +0000132 << '\n' << MAI->getCommentString()
Jim Laskey563321a2006-09-06 18:34:40 +0000133 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000134
Chris Lattnerb55e0682009-09-24 05:44:53 +0000135 DW = getAnalysisIfAvailable<DwarfWriter>();
Sanjiv Gupta9a501cf2009-11-14 07:22:25 +0000136 if (DW)
Chris Lattnerb55e0682009-09-24 05:44:53 +0000137 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel14a55d92009-06-19 21:54:26 +0000138
Chris Lattnera80ba712004-08-16 23:15:22 +0000139 return false;
140}
141
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000142void AsmPrinter::EmitLinkage(unsigned Linkage, MCSymbol *GVSym) const {
Chris Lattnera3e88832010-01-26 23:47:12 +0000143 switch ((GlobalValue::LinkageTypes)Linkage) {
144 case GlobalValue::CommonLinkage:
145 case GlobalValue::LinkOnceAnyLinkage:
146 case GlobalValue::LinkOnceODRLinkage:
147 case GlobalValue::WeakAnyLinkage:
148 case GlobalValue::WeakODRLinkage:
149 case GlobalValue::LinkerPrivateLinkage:
150 if (MAI->getWeakDefDirective() != 0) {
151 // .globl _foo
152 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
153 // .weak_definition _foo
154 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
155 } else if (const char *LinkOnce = MAI->getLinkOnceDirective()) {
156 // .globl _foo
157 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
158 // FIXME: linkonce should be a section attribute, handled by COFF Section
159 // assignment.
160 // http://sourceware.org/binutils/docs-2.20/as/Linkonce.html#Linkonce
Chris Lattner111a3192010-01-26 23:51:52 +0000161 // .linkonce discard
162 // FIXME: It would be nice to use .linkonce samesize for non-common
163 // globals.
Chris Lattnera3e88832010-01-26 23:47:12 +0000164 O << LinkOnce;
165 } else {
166 // .weak _foo
167 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
168 }
169 break;
170 case GlobalValue::DLLExportLinkage:
171 case GlobalValue::AppendingLinkage:
172 // FIXME: appending linkage variables should go into a section of
173 // their name or something. For now, just emit them as external.
174 case GlobalValue::ExternalLinkage:
175 // If external or appending, declare as a global symbol.
176 // .globl _foo
177 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
178 break;
179 case GlobalValue::PrivateLinkage:
180 case GlobalValue::InternalLinkage:
181 break;
182 default:
183 llvm_unreachable("Unknown linkage type!");
184 }
185}
186
187
Chris Lattner48d64ba2010-01-19 04:39:15 +0000188/// EmitGlobalVariable - Emit the specified global variable to the .s file.
189void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
190 if (!GV->hasInitializer()) // External globals require no code.
191 return;
192
193 // Check to see if this is a special global used by LLVM, if so, emit it.
194 if (EmitSpecialLLVMGlobal(GV))
195 return;
Chris Lattner74bfe212010-01-19 05:38:33 +0000196
Chris Lattnerdeb0cba2010-03-12 21:09:07 +0000197 MCSymbol *GVSym = Mang->getSymbol(GV);
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000198 EmitVisibility(GVSym, GV->getVisibility());
Chris Lattner74bfe212010-01-19 05:38:33 +0000199
Chris Lattnera800f7c2010-01-25 18:33:40 +0000200 if (MAI->hasDotTypeDotSizeDirective())
201 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
Chris Lattner48d64ba2010-01-19 04:39:15 +0000202
Chris Lattner74bfe212010-01-19 05:38:33 +0000203 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
204
205 const TargetData *TD = TM.getTargetData();
206 unsigned Size = TD->getTypeAllocSize(GV->getType()->getElementType());
207 unsigned AlignLog = TD->getPreferredAlignmentLog(GV);
208
Chris Lattner9744d612010-01-19 05:51:42 +0000209 // Handle common and BSS local symbols (.lcomm).
210 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
Chris Lattner74bfe212010-01-19 05:38:33 +0000211 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
212
Chris Lattner74bfe212010-01-19 05:38:33 +0000213 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000214 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
215 /*PrintType=*/false, GV->getParent());
216 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000217 }
Chris Lattner814819f2010-01-19 06:25:51 +0000218
219 // Handle common symbols.
Chris Lattner9744d612010-01-19 05:51:42 +0000220 if (GVKind.isCommon()) {
221 // .comm _foo, 42, 4
Chris Lattner4ed54382010-01-19 06:01:04 +0000222 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner814819f2010-01-19 06:25:51 +0000223 return;
Chris Lattner9744d612010-01-19 05:51:42 +0000224 }
Chris Lattner814819f2010-01-19 06:25:51 +0000225
226 // Handle local BSS symbols.
227 if (MAI->hasMachoZeroFillDirective()) {
228 const MCSection *TheSection =
229 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
230 // .zerofill __DATA, __bss, _foo, 400, 5
231 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
232 return;
233 }
234
Chris Lattner9eb158d2010-01-23 07:47:02 +0000235 if (MAI->hasLCOMMDirective()) {
Chris Lattner814819f2010-01-19 06:25:51 +0000236 // .lcomm _foo, 42
Chris Lattner9eb158d2010-01-23 07:47:02 +0000237 OutStreamer.EmitLocalCommonSymbol(GVSym, Size);
Chris Lattner814819f2010-01-19 06:25:51 +0000238 return;
239 }
240
241 // .local _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000242 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
Chris Lattner814819f2010-01-19 06:25:51 +0000243 // .comm _foo, 42, 4
244 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner74bfe212010-01-19 05:38:33 +0000245 return;
246 }
247
248 const MCSection *TheSection =
249 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
250
251 // Handle the zerofill directive on darwin, which is a special form of BSS
252 // emission.
253 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
254 // .globl _foo
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000255 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner74bfe212010-01-19 05:38:33 +0000256 // .zerofill __DATA, __common, _foo, 400, 5
257 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
258 return;
259 }
260
261 OutStreamer.SwitchSection(TheSection);
262
Chris Lattnera3e88832010-01-26 23:47:12 +0000263 EmitLinkage(GV->getLinkage(), GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000264 EmitAlignment(AlignLog, GV);
Chris Lattnera3e88832010-01-26 23:47:12 +0000265
Chris Lattner74bfe212010-01-19 05:38:33 +0000266 if (VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000267 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
268 /*PrintType=*/false, GV->getParent());
269 OutStreamer.GetCommentOS() << '\n';
Chris Lattner74bfe212010-01-19 05:38:33 +0000270 }
Chris Lattner4c8c6682010-01-19 06:41:24 +0000271 OutStreamer.EmitLabel(GVSym);
Chris Lattner74bfe212010-01-19 05:38:33 +0000272
273 EmitGlobalConstant(GV->getInitializer());
274
275 if (MAI->hasDotTypeDotSizeDirective())
Chris Lattner1947f242010-01-25 07:53:05 +0000276 // .size foo, 42
Chris Lattner99328ad2010-01-25 07:52:13 +0000277 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000278
279 OutStreamer.AddBlankLine();
Chris Lattner48d64ba2010-01-19 04:39:15 +0000280}
281
Chris Lattnerb11caed2010-01-26 23:18:44 +0000282/// EmitFunctionHeader - This method emits the header for the current
283/// function.
284void AsmPrinter::EmitFunctionHeader() {
285 // Print out constants referenced by the function
Chris Lattnera2406192010-01-28 00:19:24 +0000286 EmitConstantPool();
Chris Lattnerb11caed2010-01-26 23:18:44 +0000287
288 // Print the 'header' of function.
Chris Lattnerb11caed2010-01-26 23:18:44 +0000289 const Function *F = MF->getFunction();
290
291 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000292 EmitVisibility(CurrentFnSym, F->getVisibility());
Chris Lattnerb11caed2010-01-26 23:18:44 +0000293
Chris Lattner111a3192010-01-26 23:51:52 +0000294 EmitLinkage(F->getLinkage(), CurrentFnSym);
Chris Lattnerb406a812010-01-26 23:41:48 +0000295 EmitAlignment(MF->getAlignment(), F);
296
Chris Lattnerb11caed2010-01-26 23:18:44 +0000297 if (MAI->hasDotTypeDotSizeDirective())
298 OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
299
Chris Lattnerb11caed2010-01-26 23:18:44 +0000300 if (VerboseAsm) {
Chris Lattner9bc20ab2010-01-26 23:53:39 +0000301 WriteAsOperand(OutStreamer.GetCommentOS(), F,
302 /*PrintType=*/false, F->getParent());
303 OutStreamer.GetCommentOS() << '\n';
Chris Lattnerb11caed2010-01-26 23:18:44 +0000304 }
Chris Lattnerb11caed2010-01-26 23:18:44 +0000305
Dan Gohmanf451cb82010-02-10 16:03:48 +0000306 // Emit the CurrentFnSym. This is a virtual function to allow targets to
Chris Lattner2cf72512010-01-27 07:21:55 +0000307 // do their wild and crazy things as required.
308 EmitFunctionEntryLabel();
309
Chris Lattnerb11caed2010-01-26 23:18:44 +0000310 // Add some workaround for linkonce linkage on Cygwin\MinGW.
311 if (MAI->getLinkOnceDirective() != 0 &&
312 (F->hasLinkOnceLinkage() || F->hasWeakLinkage()))
Chris Lattner9bc20ab2010-01-26 23:53:39 +0000313 // FIXME: What is this?
Chris Lattnerb11caed2010-01-26 23:18:44 +0000314 O << "Lllvm$workaround$fake$stub$" << *CurrentFnSym << ":\n";
315
316 // Emit pre-function debug and/or EH information.
317 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
318 DW->BeginFunction(MF);
319}
320
Chris Lattner2cf72512010-01-27 07:21:55 +0000321/// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the
322/// function. This can be overridden by targets as required to do custom stuff.
323void AsmPrinter::EmitFunctionEntryLabel() {
324 OutStreamer.EmitLabel(CurrentFnSym);
325}
Chris Lattnerb11caed2010-01-26 23:18:44 +0000326
Chris Lattner48d64ba2010-01-19 04:39:15 +0000327
Chris Lattner47529c92010-02-10 00:47:53 +0000328/// EmitComments - Pretty-print comments for instructions.
329static void EmitComments(const MachineInstr &MI, raw_ostream &CommentOS) {
330 const MachineFunction *MF = MI.getParent()->getParent();
331 const TargetMachine &TM = MF->getTarget();
332
333 if (!MI.getDebugLoc().isUnknown()) {
334 DILocation DLT = MF->getDILocation(MI.getDebugLoc());
335
336 // Print source line info.
337 DIScope Scope = DLT.getScope();
338 // Omit the directory, because it's likely to be long and uninteresting.
Devang Patel3c91b052010-03-08 20:52:55 +0000339 if (Scope.Verify())
Chris Lattner47529c92010-02-10 00:47:53 +0000340 CommentOS << Scope.getFilename();
341 else
342 CommentOS << "<unknown>";
343 CommentOS << ':' << DLT.getLineNumber();
344 if (DLT.getColumnNumber() != 0)
345 CommentOS << ':' << DLT.getColumnNumber();
346 CommentOS << '\n';
347 }
348
349 // Check for spills and reloads
350 int FI;
351
352 const MachineFrameInfo *FrameInfo = MF->getFrameInfo();
353
354 // We assume a single instruction only has a spill or reload, not
355 // both.
356 const MachineMemOperand *MMO;
357 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
358 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
359 MMO = *MI.memoperands_begin();
360 CommentOS << MMO->getSize() << "-byte Reload\n";
361 }
362 } else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
363 if (FrameInfo->isSpillSlotObjectIndex(FI))
364 CommentOS << MMO->getSize() << "-byte Folded Reload\n";
365 } else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
366 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
367 MMO = *MI.memoperands_begin();
368 CommentOS << MMO->getSize() << "-byte Spill\n";
369 }
370 } else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
371 if (FrameInfo->isSpillSlotObjectIndex(FI))
372 CommentOS << MMO->getSize() << "-byte Folded Spill\n";
373 }
374
375 // Check for spill-induced copies
376 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
377 if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
378 SrcSubIdx, DstSubIdx)) {
Chris Lattner45282ae2010-02-10 01:23:18 +0000379 if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse))
Chris Lattner47529c92010-02-10 00:47:53 +0000380 CommentOS << " Reload Reuse\n";
381 }
382}
383
384
385
Chris Lattner14c38ec2010-01-28 01:02:27 +0000386/// EmitFunctionBody - This method emits the body and trailer for a
387/// function.
388void AsmPrinter::EmitFunctionBody() {
Chris Lattneredfe7762010-01-28 01:58:58 +0000389 // Emit target-specific gunk before the function body.
390 EmitFunctionBodyStart();
391
Chris Lattner14c38ec2010-01-28 01:02:27 +0000392 // Print out code for the function.
393 bool HasAnyRealCode = false;
394 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
395 I != E; ++I) {
396 // Print a label for the basic block.
397 EmitBasicBlockStart(I);
398 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
399 II != IE; ++II) {
400 // Print the assembly for the instruction.
401 if (!II->isLabel())
402 HasAnyRealCode = true;
403
404 ++EmittedInsts;
405
406 // FIXME: Clean up processDebugLoc.
407 processDebugLoc(II, true);
408
Chris Lattner47529c92010-02-10 00:47:53 +0000409 if (VerboseAsm)
410 EmitComments(*II, OutStreamer.GetCommentOS());
411
Chris Lattner0d883e32010-02-03 01:00:52 +0000412 switch (II->getOpcode()) {
Chris Lattner518bb532010-02-09 19:54:29 +0000413 case TargetOpcode::DBG_LABEL:
414 case TargetOpcode::EH_LABEL:
415 case TargetOpcode::GC_LABEL:
Chris Lattnerf64159c842010-02-03 01:46:05 +0000416 printLabelInst(II);
Chris Lattner0d883e32010-02-03 01:00:52 +0000417 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000418 case TargetOpcode::INLINEASM:
Chris Lattner0d883e32010-02-03 01:00:52 +0000419 printInlineAsm(II);
420 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000421 case TargetOpcode::IMPLICIT_DEF:
Chris Lattner0d883e32010-02-03 01:00:52 +0000422 printImplicitDef(II);
423 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000424 case TargetOpcode::KILL:
Chris Lattner0d883e32010-02-03 01:00:52 +0000425 printKill(II);
426 break;
427 default:
428 EmitInstruction(II);
429 break;
430 }
Chris Lattner14c38ec2010-01-28 01:02:27 +0000431
432 // FIXME: Clean up processDebugLoc.
433 processDebugLoc(II, false);
434 }
435 }
436
437 // If the function is empty and the object file uses .subsections_via_symbols,
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000438 // then we need to emit *something* to the function body to prevent the
439 // labels from collapsing together. Just emit a 0 byte.
Chris Lattner10e7c602010-01-28 01:06:32 +0000440 if (MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode)
441 OutStreamer.EmitIntValue(0, 1, 0/*addrspace*/);
Chris Lattner14c38ec2010-01-28 01:02:27 +0000442
Chris Lattneredfe7762010-01-28 01:58:58 +0000443 // Emit target-specific gunk after the function body.
444 EmitFunctionBodyEnd();
445
Chris Lattner14c38ec2010-01-28 01:02:27 +0000446 if (MAI->hasDotTypeDotSizeDirective())
447 O << "\t.size\t" << *CurrentFnSym << ", .-" << *CurrentFnSym << '\n';
448
449 // Emit post-function debug information.
450 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
451 DW->EndFunction(MF);
452
453 // Print out jump tables referenced by the function.
454 EmitJumpTableInfo();
Chris Lattnerd26a80f2010-02-03 01:49:49 +0000455
456 OutStreamer.AddBlankLine();
Chris Lattner14c38ec2010-01-28 01:02:27 +0000457}
458
459
Chris Lattnera80ba712004-08-16 23:15:22 +0000460bool AsmPrinter::doFinalization(Module &M) {
Chris Lattner40bbebd2009-07-21 18:38:57 +0000461 // Emit global variables.
462 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
463 I != E; ++I)
Chris Lattner48d64ba2010-01-19 04:39:15 +0000464 EmitGlobalVariable(I);
Chris Lattner40bbebd2009-07-21 18:38:57 +0000465
Chris Lattner1f522fe2009-06-24 18:54:37 +0000466 // Emit final debug information.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000467 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattner1f522fe2009-06-24 18:54:37 +0000468 DW->EndModule();
469
Chris Lattner0a7befa2009-06-24 18:52:01 +0000470 // If the target wants to know about weak references, print them all.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000471 if (MAI->getWeakRefDirective()) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000472 // FIXME: This is not lazy, it would be nice to only print weak references
473 // to stuff that is actually used. Note that doing so would require targets
474 // to notice uses in operands (due to constant exprs etc). This should
475 // happen with the MC stuff eventually.
Rafael Espindola15404d02006-12-18 03:37:18 +0000476
Chris Lattner0a7befa2009-06-24 18:52:01 +0000477 // Print out module-level global variables here.
478 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
479 I != E; ++I) {
Chris Lattner08ce3b42010-01-16 18:17:26 +0000480 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattnerdeb0cba2010-03-12 21:09:07 +0000481 OutStreamer.EmitSymbolAttribute(Mang->getSymbol(I), 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 Lattnerdeb0cba2010-03-12 21:09:07 +0000486 OutStreamer.EmitSymbolAttribute(Mang->getSymbol(I), MCSA_WeakReference);
Chris Lattner0a7befa2009-06-24 18:52:01 +0000487 }
Rafael Espindola15404d02006-12-18 03:37:18 +0000488 }
489
Chris Lattnercee63322010-01-26 20:40:54 +0000490 if (MAI->hasSetDirective()) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000491 OutStreamer.AddBlankLine();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000492 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattner0a7befa2009-06-24 18:52:01 +0000493 I != E; ++I) {
Chris Lattnerdeb0cba2010-03-12 21:09:07 +0000494 MCSymbol *Name = Mang->getSymbol(I);
Anton Korobeynikov325be7c2007-09-06 17:21:48 +0000495
496 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattnerdeb0cba2010-03-12 21:09:07 +0000497 MCSymbol *Target = Mang->getSymbol(GV);
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000498
Chris Lattner10b318b2010-01-17 21:43:43 +0000499 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000500 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
Chris Lattner10b318b2010-01-17 21:43:43 +0000501 else if (I->hasWeakLinkage())
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000502 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
Chris Lattner10b318b2010-01-17 21:43:43 +0000503 else
Chris Lattner10595492010-01-16 01:37:14 +0000504 assert(I->hasLocalLinkage() && "Invalid alias linkage");
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000505
Chris Lattnerbe9dfce2010-01-28 00:05:10 +0000506 EmitVisibility(Name, I->getVisibility());
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000507
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000508 // Emit the directives as assignments aka .set:
509 OutStreamer.EmitAssignment(Name,
510 MCSymbolRefExpr::Create(Target, OutContext));
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000511 }
512 }
513
Duncan Sands1465d612009-01-28 13:14:17 +0000514 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000515 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
516 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
517 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000518 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000519
Dan Gohmana779a982008-05-05 00:28:39 +0000520 // If we don't have any trampolines, then we don't require stack memory
521 // to be executable. Some targets have a directive to declare this.
Chris Lattner0a7befa2009-06-24 18:52:01 +0000522 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana779a982008-05-05 00:28:39 +0000523 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattnerf9f93e42010-01-23 07:21:06 +0000524 if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
525 OutStreamer.SwitchSection(S);
Chris Lattnerbd23d5f2009-09-18 20:17:03 +0000526
527 // Allow the target to emit any magic that it wants at the end of the file,
528 // after everything else has gone out.
529 EmitEndOfAsmFile(M);
530
Chris Lattnera80ba712004-08-16 23:15:22 +0000531 delete Mang; Mang = 0;
Chris Lattner0de1fc42009-06-24 19:09:55 +0000532 DW = 0; MMI = 0;
Chris Lattner2b2954f2009-07-27 21:28:04 +0000533
534 OutStreamer.Finish();
Chris Lattnera80ba712004-08-16 23:15:22 +0000535 return false;
536}
537
Chris Lattner25045bd2005-11-21 07:51:36 +0000538void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnerb84822f2010-01-26 04:35:26 +0000539 this->MF = &MF;
Chris Lattner412c3a52010-01-16 01:24:10 +0000540 // Get the function symbol.
Chris Lattnerdeb0cba2010-03-12 21:09:07 +0000541 CurrentFnSym = Mang->getSymbol(MF.getFunction());
David Greeneb71d1b22009-08-10 16:38:07 +0000542
Chris Lattner25d812b2009-09-16 00:35:39 +0000543 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +0000544 LI = &getAnalysis<MachineLoopInfo>();
Chris Lattnera80ba712004-08-16 23:15:22 +0000545}
546
Evan Cheng1606e8e2009-03-13 07:51:59 +0000547namespace {
548 // SectionCPs - Keep track the alignment, constpool entries per Section.
549 struct SectionCPs {
Chris Lattnera87dea42009-07-31 18:48:30 +0000550 const MCSection *S;
Evan Cheng1606e8e2009-03-13 07:51:59 +0000551 unsigned Alignment;
552 SmallVector<unsigned, 4> CPEs;
Douglas Gregorcabdd742009-12-19 07:05:23 +0000553 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
Evan Cheng1606e8e2009-03-13 07:51:59 +0000554 };
555}
556
Chris Lattner3b4fd322005-11-21 08:25:09 +0000557/// EmitConstantPool - Print to the current output stream assembly
558/// representations of the constants in the constant pool MCP. This is
559/// used to print out constants which have been "spilled to memory" by
560/// the code generator.
561///
Chris Lattnera2406192010-01-28 00:19:24 +0000562void AsmPrinter::EmitConstantPool() {
563 const MachineConstantPool *MCP = MF->getConstantPool();
Chris Lattnerfa77d432006-02-09 04:22:52 +0000564 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000565 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000566
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000567 // Calculate sections for constant pool entries. We collect entries to go into
568 // the same section together to reduce amount of section switch statements.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000569 SmallVector<SectionCPs, 4> CPSections;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000570 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner298414e2009-07-22 00:28:43 +0000571 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng1606e8e2009-03-13 07:51:59 +0000572 unsigned Align = CPE.getAlignment();
Chris Lattner5c2f7892009-07-26 06:26:55 +0000573
574 SectionKind Kind;
575 switch (CPE.getRelocationInfo()) {
576 default: llvm_unreachable("Unknown section kind");
Chris Lattner27981192009-08-01 23:57:16 +0000577 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000578 case 1:
Chris Lattner27981192009-08-01 23:57:16 +0000579 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattner4c509222009-07-26 07:00:12 +0000580 break;
Chris Lattner5c2f7892009-07-26 06:26:55 +0000581 case 0:
Chris Lattner4c509222009-07-26 07:00:12 +0000582 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000583 case 4: Kind = SectionKind::getMergeableConst4(); break;
584 case 8: Kind = SectionKind::getMergeableConst8(); break;
585 case 16: Kind = SectionKind::getMergeableConst16();break;
586 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000587 }
Chris Lattner5c2f7892009-07-26 06:26:55 +0000588 }
589
Chris Lattner83d77fa2009-08-01 23:46:12 +0000590 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner298414e2009-07-22 00:28:43 +0000591
Evan Cheng1606e8e2009-03-13 07:51:59 +0000592 // The number of sections are small, just do a linear search from the
593 // last section to the first.
594 bool Found = false;
595 unsigned SecIdx = CPSections.size();
596 while (SecIdx != 0) {
597 if (CPSections[--SecIdx].S == S) {
598 Found = true;
599 break;
600 }
601 }
602 if (!Found) {
603 SecIdx = CPSections.size();
604 CPSections.push_back(SectionCPs(S, Align));
605 }
606
607 if (Align > CPSections[SecIdx].Alignment)
608 CPSections[SecIdx].Alignment = Align;
609 CPSections[SecIdx].CPEs.push_back(i);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000610 }
611
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000612 // Now print stuff into the calculated sections.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000613 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000614 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000615 EmitAlignment(Log2_32(CPSections[i].Alignment));
Evan Cheng2d2cec12006-06-29 00:26:09 +0000616
Evan Cheng1606e8e2009-03-13 07:51:59 +0000617 unsigned Offset = 0;
618 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
619 unsigned CPI = CPSections[i].CPEs[j];
620 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000621
Chris Lattner3029f922006-02-09 04:46:04 +0000622 // Emit inter-object padding for alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000623 unsigned AlignMask = CPE.getAlignment() - 1;
624 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
Chris Lattneraaec2052010-01-19 19:46:13 +0000625 OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000626
627 const Type *Ty = CPE.getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000628 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000629
Chris Lattner39248682010-01-23 05:19:23 +0000630 // Emit the label with a comment on it.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000631 if (VerboseAsm) {
Chris Lattner39248682010-01-23 05:19:23 +0000632 OutStreamer.GetCommentOS() << "constant pool ";
633 WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(),
634 MF->getFunction()->getParent());
635 OutStreamer.GetCommentOS() << '\n';
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000636 }
Chris Lattner39248682010-01-23 05:19:23 +0000637 OutStreamer.EmitLabel(GetCPISymbol(CPI));
638
Evan Cheng1606e8e2009-03-13 07:51:59 +0000639 if (CPE.isMachineConstantPoolEntry())
640 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
641 else
642 EmitGlobalConstant(CPE.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000643 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000644 }
645}
646
Nate Begeman37efe672006-04-22 18:53:45 +0000647/// EmitJumpTableInfo - Print assembly representations of the jump tables used
648/// by the current function to the current output stream.
649///
Chris Lattner14c38ec2010-01-28 01:02:27 +0000650void AsmPrinter::EmitJumpTableInfo() {
651 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
Chris Lattner44e87252010-01-25 22:41:33 +0000652 if (MJTI == 0) return;
Richard Osborne95da6052010-03-11 14:58:16 +0000653 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return;
Nate Begeman37efe672006-04-22 18:53:45 +0000654 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
655 if (JT.empty()) return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000656
Nate Begeman2f1ae882006-07-27 01:13:04 +0000657 // Pick the directive to use to print the jump table entries, and switch to
658 // the appropriate section.
Chris Lattner14c38ec2010-01-28 01:02:27 +0000659 const Function *F = MF->getFunction();
Evan Chengb13bafe2009-06-18 20:37:15 +0000660 bool JTInDiffSection = false;
Chris Lattnerf1214cb2010-01-26 06:53:37 +0000661 if (// In PIC mode, we need to emit the jump table to the same section as the
662 // function body itself, otherwise the label differences won't make sense.
663 // FIXME: Need a better predicate for this: what about custom entries?
664 MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 ||
665 // We should also do if the section name is NULL or function is declared
666 // in discardable section
667 // FIXME: this isn't the right predicate, should be based on the MCSection
668 // for the function.
669 F->isWeakForLinker()) {
Chris Lattner14c38ec2010-01-28 01:02:27 +0000670 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F,Mang,TM));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000671 } else {
Chris Lattner83d77fa2009-08-01 23:46:12 +0000672 // Otherwise, drop it in the readonly section.
673 const MCSection *ReadOnlySection =
Chris Lattner27981192009-08-01 23:57:16 +0000674 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000675 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengb13bafe2009-06-18 20:37:15 +0000676 JTInDiffSection = true;
Nate Begeman2f1ae882006-07-27 01:13:04 +0000677 }
Chris Lattner071c62f2010-01-25 23:26:13 +0000678
Chris Lattner071c62f2010-01-25 23:26:13 +0000679 EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getTargetData())));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000680
Chris Lattner3b131d72010-01-26 06:42:44 +0000681 for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
682 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000683
684 // If this jump table was deleted, ignore it.
685 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000686
Chris Lattnere35df922010-01-26 05:15:20 +0000687 // For the EK_LabelDifference32 entry, if the target supports .set, emit a
688 // .set directive for each unique entry. This reduces the number of
689 // relocations the assembler will generate for the jump table.
690 if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
Chris Lattnercee63322010-01-26 20:40:54 +0000691 MAI->hasSetDirective()) {
Chris Lattner3b131d72010-01-26 06:42:44 +0000692 SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
693 const TargetLowering *TLI = TM.getTargetLowering();
Chris Lattner14c38ec2010-01-28 01:02:27 +0000694 const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext);
Chris Lattner3b131d72010-01-26 06:42:44 +0000695 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
696 const MachineBasicBlock *MBB = JTBBs[ii];
697 if (!EmittedSets.insert(MBB)) continue;
698
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000699 // .set LJTSet, LBB32-base
700 const MCExpr *LHS =
Chris Lattner1b2eb0e2010-03-13 21:04:28 +0000701 MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
Chris Lattnerc618c8a2010-01-26 21:53:08 +0000702 OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
703 MCBinaryExpr::CreateSub(LHS, Base, OutContext));
Chris Lattner3b131d72010-01-26 06:42:44 +0000704 }
705 }
Nate Begeman52a51e382006-08-12 21:29:52 +0000706
Chris Lattner7c301912009-09-13 19:02:16 +0000707 // On some targets (e.g. Darwin) we want to emit two consequtive labels
Chris Lattner393a8ee2007-01-18 01:12:56 +0000708 // before each jump table. The first label is never referenced, but tells
709 // the assembler and linker the extents of the jump table object. The
710 // second label is actually referenced by the code.
Chris Lattner39248682010-01-23 05:19:23 +0000711 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
Chris Lattnerbeeb93e2010-01-26 05:58:28 +0000712 // FIXME: This doesn't have to have any specific name, just any randomly
713 // named and numbered 'l' label would work. Simplify GetJTISymbol.
Chris Lattner3b131d72010-01-26 06:42:44 +0000714 OutStreamer.EmitLabel(GetJTISymbol(JTI, true));
Chris Lattner39248682010-01-23 05:19:23 +0000715
Chris Lattner3b131d72010-01-26 06:42:44 +0000716 OutStreamer.EmitLabel(GetJTISymbol(JTI));
Chris Lattner39248682010-01-23 05:19:23 +0000717
Chris Lattner6bf1def2010-01-26 05:10:10 +0000718 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Chris Lattner3b131d72010-01-26 06:42:44 +0000719 EmitJumpTableEntry(MJTI, JTBBs[ii], JTI);
Nate Begeman37efe672006-04-22 18:53:45 +0000720 }
721}
722
Chris Lattner6bf1def2010-01-26 05:10:10 +0000723/// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
724/// current stream.
725void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
726 const MachineBasicBlock *MBB,
727 unsigned UID) const {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000728 const MCExpr *Value = 0;
729 switch (MJTI->getEntryKind()) {
Richard Osborne95da6052010-03-11 14:58:16 +0000730 case MachineJumpTableInfo::EK_Inline:
731 llvm_unreachable("Cannot emit EK_Inline jump table entry"); break;
Chris Lattner85fe0782010-01-26 04:05:28 +0000732 case MachineJumpTableInfo::EK_Custom32:
Chris Lattner6bf1def2010-01-26 05:10:10 +0000733 Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
Chris Lattner85fe0782010-01-26 04:05:28 +0000734 OutContext);
735 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000736 case MachineJumpTableInfo::EK_BlockAddress:
737 // EK_BlockAddress - Each entry is a plain address of block, e.g.:
738 // .word LBB123
Chris Lattner1b2eb0e2010-03-13 21:04:28 +0000739 Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000740 break;
Chris Lattnerff537ce2010-01-26 03:43:22 +0000741 case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
742 // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
743 // with a relocation as gp-relative, e.g.:
744 // .gprel32 LBB123
Chris Lattner1b2eb0e2010-03-13 21:04:28 +0000745 MCSymbol *MBBSym = MBB->getSymbol();
Chris Lattner718fb592010-01-25 21:28:50 +0000746 OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
Chris Lattner78f485a2010-01-25 21:10:10 +0000747 return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000748 }
Chris Lattner85fe0782010-01-26 04:05:28 +0000749
Chris Lattnerff537ce2010-01-26 03:43:22 +0000750 case MachineJumpTableInfo::EK_LabelDifference32: {
751 // EK_LabelDifference32 - Each entry is the address of the block minus
752 // the address of the jump table. This is used for PIC jump tables where
753 // gprel32 is not supported. e.g.:
754 // .word LBB123 - LJTI1_2
755 // If the .set directive is supported, this is emitted as:
756 // .set L4_5_set_123, LBB123 - LJTI1_2
757 // .word L4_5_set_123
758
759 // If we have emitted set directives for the jump table entries, print
760 // them rather than the entries themselves. If we're emitting PIC, then
761 // emit the table entries as differences between two text section labels.
Chris Lattnercee63322010-01-26 20:40:54 +0000762 if (MAI->hasSetDirective()) {
Chris Lattnerff537ce2010-01-26 03:43:22 +0000763 // If we used .set, reference the .set's symbol.
Chris Lattner6bf1def2010-01-26 05:10:10 +0000764 Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
Chris Lattnerff537ce2010-01-26 03:43:22 +0000765 OutContext);
766 break;
767 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000768 // Otherwise, use the difference as the jump table entry.
Chris Lattner1b2eb0e2010-03-13 21:04:28 +0000769 Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
Chris Lattner6bf1def2010-01-26 05:10:10 +0000770 const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
Chris Lattnerff537ce2010-01-26 03:43:22 +0000771 Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
772 break;
773 }
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000774 }
Chris Lattner1aca2492010-01-25 21:22:22 +0000775
Chris Lattnerff537ce2010-01-26 03:43:22 +0000776 assert(Value && "Unknown entry kind!");
777
Chris Lattner071c62f2010-01-25 23:26:13 +0000778 unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData());
Chris Lattnerff537ce2010-01-26 03:43:22 +0000779 OutStreamer.EmitValue(Value, EntrySize, /*addrspace*/0);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000780}
781
782
Chris Lattnered138932005-12-13 06:32:10 +0000783/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
784/// special global used by LLVM. If so, emit it and return true, otherwise
785/// do nothing and return false.
786bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000787 if (GV->getName() == "llvm.used") {
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000788 if (MAI->hasNoDeadStrip()) // No need to emit this at all.
Andrew Lenharthb753a9b2007-08-22 19:33:11 +0000789 EmitLLVMUsedList(GV->getInitializer());
790 return true;
791 }
792
Chris Lattner401e10c2009-07-20 06:14:25 +0000793 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000794 if (GV->getSection() == "llvm.metadata" ||
795 GV->hasAvailableExternallyLinkage())
796 return true;
Jim Laskey78098112006-03-07 22:00:35 +0000797
798 if (!GV->hasAppendingLinkage()) return false;
799
800 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000801
Evan Cheng916d07c2007-06-04 20:39:18 +0000802 const TargetData *TD = TM.getTargetData();
803 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattnerf231c072009-03-09 05:52:15 +0000804 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000805 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000806 EmitAlignment(Align, 0);
807 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000808
809 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000810 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
811 StringRef Sym(".constructors_used");
812 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000813 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000814 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000815 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000816 }
817
Chris Lattnerf231c072009-03-09 05:52:15 +0000818 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000819 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000820 EmitAlignment(Align, 0);
821 EmitXXStructorList(GV->getInitializer());
Chris Lattner71eae712010-01-19 04:34:02 +0000822
823 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000824 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
825 StringRef Sym(".destructors_used");
826 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000827 MCSA_Reference);
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000828 }
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000829 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000830 }
831
832 return false;
833}
834
Chris Lattner33adcfb2009-08-22 21:43:10 +0000835/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesend2e51af2008-09-09 22:29:13 +0000836/// global in the specified llvm.used list for which emitUsedDirectiveFor
837/// is true, as being used with this directive.
Chris Lattnercb05af82006-09-26 03:38:18 +0000838void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Dan Gohmana119de82009-06-14 23:30:43 +0000839 // Should be an array of 'i8*'.
Chris Lattnercb05af82006-09-26 03:38:18 +0000840 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
841 if (InitList == 0) return;
842
843 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner16fe9902009-07-17 22:00:23 +0000844 const GlobalValue *GV =
845 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000846 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
Chris Lattnerdeb0cba2010-03-12 21:09:07 +0000847 OutStreamer.EmitSymbolAttribute(Mang->getSymbol(GV), MCSA_NoDeadStrip);
Chris Lattnercb05af82006-09-26 03:38:18 +0000848 }
849}
850
Chris Lattnered138932005-12-13 06:32:10 +0000851/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
852/// function pointers, ignoring the init priority.
853void AsmPrinter::EmitXXStructorList(Constant *List) {
854 // Should be an array of '{ int, void ()* }' structs. The first value is the
855 // init priority, which we ignore.
856 if (!isa<ConstantArray>(List)) return;
857 ConstantArray *InitList = cast<ConstantArray>(List);
858 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
859 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
860 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000861
862 if (CS->getOperand(1)->isNullValue())
863 return; // Found a null terminator, exit printing.
864 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000865 EmitGlobalConstant(CS->getOperand(1));
866 }
867}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000868
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000869//===--------------------------------------------------------------------===//
870// Emission and print routines
871//
872
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000873/// EmitInt8 - Emit a byte directive and value.
874///
875void AsmPrinter::EmitInt8(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000876 OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000877}
878
879/// EmitInt16 - Emit a short directive and value.
880///
881void AsmPrinter::EmitInt16(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000882 OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000883}
884
885/// EmitInt32 - Emit a long directive and value.
886///
887void AsmPrinter::EmitInt32(int Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000888 OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000889}
890
891/// EmitInt64 - Emit a long long directive and value.
892///
893void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000894 OutStreamer.EmitIntValue(Value, 8, 0/*addrspace*/);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000895}
896
Chris Lattner0d50c762010-03-08 23:58:37 +0000897/// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size
898/// in bytes of the directive is specified by Size and Hi/Lo specify the
899/// labels. This implicitly uses .set if it is available.
900void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo,
901 unsigned Size) const {
902 // Get the Hi-Lo expression.
903 const MCExpr *Diff =
904 MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(Hi, OutContext),
905 MCSymbolRefExpr::Create(Lo, OutContext),
906 OutContext);
907
908 if (!MAI->hasSetDirective()) {
909 OutStreamer.EmitValue(Diff, Size, 0/*AddrSpace*/);
910 return;
911 }
912
913 // Otherwise, emit with .set (aka assignment).
914 MCSymbol *SetLabel =
Chris Lattner98cdab52010-03-10 02:25:11 +0000915 OutContext.GetOrCreateTemporarySymbol(Twine(MAI->getPrivateGlobalPrefix()) +
916 "set" + Twine(SetCounter++));
Chris Lattner0d50c762010-03-08 23:58:37 +0000917 OutStreamer.EmitAssignment(SetLabel, Diff);
Chris Lattner6cde3e62010-03-09 00:39:24 +0000918 OutStreamer.EmitSymbolValue(SetLabel, Size, 0/*AddrSpace*/);
Chris Lattner0d50c762010-03-08 23:58:37 +0000919}
920
921
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000922//===----------------------------------------------------------------------===//
923
Chris Lattner3a420532007-05-31 18:57:45 +0000924// EmitAlignment - Emit an alignment directive to the specified power of
925// two boundary. For example, if you pass in 3 here, you will get an 8
926// byte alignment. If a global value is specified, and if that global has
927// an explicit alignment requested, it will unconditionally override the
928// alignment request. However, if ForcedAlignBits is specified, this value
929// has final say: the ultimate alignment will be the max of ForcedAlignBits
930// and the alignment computed with NumBits and the global.
931//
932// The algorithm is:
933// Align = NumBits;
934// if (GV && GV->hasalignment) Align = GV->getalignment();
935// Align = std::max(Align, ForcedAlignBits);
936//
937void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng05548eb2008-02-29 19:36:59 +0000938 unsigned ForcedAlignBits,
939 bool UseFillExpr) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000940 if (GV && GV->getAlignment())
Chris Lattner3a420532007-05-31 18:57:45 +0000941 NumBits = Log2_32(GV->getAlignment());
942 NumBits = std::max(NumBits, ForcedAlignBits);
943
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000944 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner663c2d22009-08-19 06:12:02 +0000945
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000946 if (getCurrentSection()->getKind().isText())
Chris Lattner2cce3712010-02-23 18:46:22 +0000947 OutStreamer.EmitCodeAlignment(1 << NumBits);
948 else
949 OutStreamer.EmitValueToAlignment(1 << NumBits, 0, 1, 0);
Chris Lattnerbfddc202004-08-17 19:14:29 +0000950}
David Greenea5bb59f2009-08-05 21:00:52 +0000951
Chris Lattner52492ac2010-01-23 06:17:14 +0000952/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
953///
954static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
955 MCContext &Ctx = AP.OutContext;
956
957 if (CV->isNullValue() || isa<UndefValue>(CV))
958 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000959
Chris Lattner52492ac2010-01-23 06:17:14 +0000960 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
961 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000962
Chris Lattner52492ac2010-01-23 06:17:14 +0000963 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
Chris Lattnerdeb0cba2010-03-12 21:09:07 +0000964 return MCSymbolRefExpr::Create(AP.Mang->getSymbol(GV), Ctx);
Chris Lattner52492ac2010-01-23 06:17:14 +0000965 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
966 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000967
968 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
969 if (CE == 0) {
Chris Lattner52492ac2010-01-23 06:17:14 +0000970 llvm_unreachable("Unknown constant value to lower!");
971 return MCConstantExpr::Create(0, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000972 }
973
974 switch (CE->getOpcode()) {
Dan Gohman618f1772010-02-08 22:02:38 +0000975 default:
976 // If the code isn't optimized, there may be outstanding folding
977 // opportunities. Attempt to fold the expression using TargetData as a
978 // last resort before giving up.
Dan Gohman54e72ec2010-02-08 22:19:11 +0000979 if (Constant *C =
980 ConstantFoldConstantExpression(CE, AP.TM.getTargetData()))
981 if (C != CE)
982 return LowerConstant(C, AP);
Dan Gohman618f1772010-02-08 22:02:38 +0000983#ifndef NDEBUG
984 CE->dump();
985#endif
986 llvm_unreachable("FIXME: Don't support this constant expr");
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000987 case Instruction::GetElementPtr: {
Chris Lattner52492ac2010-01-23 06:17:14 +0000988 const TargetData &TD = *AP.TM.getTargetData();
989 // Generate a symbolic expression for the byte address
990 const Constant *PtrVal = CE->getOperand(0);
991 SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
992 int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0],
993 IdxVec.size());
994
995 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000996 if (Offset == 0)
Chris Lattner52492ac2010-01-23 06:17:14 +0000997 return Base;
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +0000998
999 // Truncate/sext the offset to the pointer size.
Chris Lattner52492ac2010-01-23 06:17:14 +00001000 if (TD.getPointerSizeInBits() != 64) {
1001 int SExtAmount = 64-TD.getPointerSizeInBits();
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001002 Offset = (Offset << SExtAmount) >> SExtAmount;
1003 }
1004
Chris Lattner52492ac2010-01-23 06:17:14 +00001005 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
1006 Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001007 }
1008
1009 case Instruction::Trunc:
1010 // We emit the value and depend on the assembler to truncate the generated
1011 // expression properly. This is important for differences between
1012 // blockaddress labels. Since the two labels are in the same function, it
1013 // is reasonable to treat their delta as a 32-bit value.
Chris Lattner52492ac2010-01-23 06:17:14 +00001014 // FALL THROUGH.
1015 case Instruction::BitCast:
1016 return LowerConstant(CE->getOperand(0), AP);
1017
1018 case Instruction::IntToPtr: {
1019 const TargetData &TD = *AP.TM.getTargetData();
1020 // Handle casts to pointers by changing them into casts to the appropriate
1021 // integer type. This promotes constant folding and simplifies this code.
1022 Constant *Op = CE->getOperand(0);
1023 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
1024 false/*ZExt*/);
1025 return LowerConstant(Op, AP);
1026 }
1027
1028 case Instruction::PtrToInt: {
1029 const TargetData &TD = *AP.TM.getTargetData();
1030 // Support only foldable casts to/from pointers that can be eliminated by
1031 // changing the pointer to the appropriately sized integer type.
1032 Constant *Op = CE->getOperand(0);
1033 const Type *Ty = CE->getType();
1034
1035 const MCExpr *OpExpr = LowerConstant(Op, AP);
1036
1037 // We can emit the pointer value into this slot if the slot is an
1038 // integer slot equal to the size of the pointer.
1039 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
1040 return OpExpr;
1041
1042 // Otherwise the pointer is smaller than the resultant integer, mask off
1043 // the high bits so we are sure to get a proper truncation if the input is
1044 // a constant expr.
1045 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
1046 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
1047 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
1048 }
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001049
Dan Gohman5938a3e2010-02-09 00:02:37 +00001050 // The MC library also has a right-shift operator, but it isn't consistently
1051 // signed or unsigned between different targets.
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001052 case Instruction::Add:
1053 case Instruction::Sub:
Dan Gohman5938a3e2010-02-09 00:02:37 +00001054 case Instruction::Mul:
1055 case Instruction::SDiv:
1056 case Instruction::SRem:
1057 case Instruction::Shl:
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001058 case Instruction::And:
1059 case Instruction::Or:
Chris Lattner52492ac2010-01-23 06:17:14 +00001060 case Instruction::Xor: {
1061 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
1062 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001063 switch (CE->getOpcode()) {
Chris Lattner52492ac2010-01-23 06:17:14 +00001064 default: llvm_unreachable("Unknown binary operator constant cast expr");
1065 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
1066 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
Dan Gohman5938a3e2010-02-09 00:02:37 +00001067 case Instruction::Mul: return MCBinaryExpr::CreateMul(LHS, RHS, Ctx);
1068 case Instruction::SDiv: return MCBinaryExpr::CreateDiv(LHS, RHS, Ctx);
1069 case Instruction::SRem: return MCBinaryExpr::CreateMod(LHS, RHS, Ctx);
1070 case Instruction::Shl: return MCBinaryExpr::CreateShl(LHS, RHS, Ctx);
Chris Lattner52492ac2010-01-23 06:17:14 +00001071 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
1072 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
1073 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
Chris Lattnerfe0e7ed2010-01-13 04:29:19 +00001074 }
Chris Lattner52492ac2010-01-23 06:17:14 +00001075 }
Chris Lattnera80ba712004-08-16 23:15:22 +00001076 }
1077}
Chris Lattner1b7e2352004-08-17 06:36:49 +00001078
Chris Lattner91093ec2010-01-19 19:10:44 +00001079static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
1080 AsmPrinter &AP) {
Chris Lattner05f84532010-01-23 04:54:10 +00001081 if (AddrSpace != 0 || !CA->isString()) {
1082 // Not a string. Print the values in successive locations
Chris Lattner91093ec2010-01-19 19:10:44 +00001083 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1084 AP.EmitGlobalConstant(CA->getOperand(i), AddrSpace);
Chris Lattner05f84532010-01-23 04:54:10 +00001085 return;
Dan Gohman00d448a2008-12-22 21:14:27 +00001086 }
Chris Lattner05f84532010-01-23 04:54:10 +00001087
1088 // Otherwise, it can be emitted as .ascii.
1089 SmallVector<char, 128> TmpVec;
1090 TmpVec.reserve(CA->getNumOperands());
1091 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1092 TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
1093
1094 AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001095}
1096
Chris Lattner91093ec2010-01-19 19:10:44 +00001097static void EmitGlobalConstantVector(const ConstantVector *CV,
1098 unsigned AddrSpace, AsmPrinter &AP) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001099 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
Chris Lattner91093ec2010-01-19 19:10:44 +00001100 AP.EmitGlobalConstant(CV->getOperand(i), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001101}
1102
Chris Lattner91093ec2010-01-19 19:10:44 +00001103static void EmitGlobalConstantStruct(const ConstantStruct *CS,
1104 unsigned AddrSpace, AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001105 // Print the fields in successive locations. Pad to align if needed!
Chris Lattner91093ec2010-01-19 19:10:44 +00001106 const TargetData *TD = AP.TM.getTargetData();
1107 unsigned Size = TD->getTypeAllocSize(CS->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001108 const StructLayout *Layout = TD->getStructLayout(CS->getType());
Chris Lattner91093ec2010-01-19 19:10:44 +00001109 uint64_t SizeSoFar = 0;
1110 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001111 const Constant *Field = CS->getOperand(i);
Dan Gohman00d448a2008-12-22 21:14:27 +00001112
1113 // Check if padding is needed and insert one or more 0s.
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001114 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001115 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
1116 - Layout->getElementOffset(i)) - FieldSize;
1117 SizeSoFar += FieldSize + PadSize;
Dan Gohman00d448a2008-12-22 21:14:27 +00001118
1119 // Now print the actual field value.
Chris Lattnerbcb83e52010-01-20 07:41:15 +00001120 AP.EmitGlobalConstant(Field, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001121
1122 // Insert padding - this may include padding to increase the size of the
1123 // current field up to the ABI size (if the struct is not packed) as well
1124 // as padding to ensure that the next field starts at the right offset.
Chris Lattner2dd245c2010-01-20 07:11:32 +00001125 AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001126 }
Chris Lattner2dd245c2010-01-20 07:11:32 +00001127 assert(SizeSoFar == Layout->getSizeInBytes() &&
Dan Gohman00d448a2008-12-22 21:14:27 +00001128 "Layout of constant struct may be incorrect!");
1129}
1130
Chris Lattner2dd245c2010-01-20 07:11:32 +00001131static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
1132 AsmPrinter &AP) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001133 // FP Constants are printed as integer constants to avoid losing
Chris Lattner9ceff942010-01-20 06:53:37 +00001134 // precision.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001135 if (CFP->getType()->isDoubleTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001136 if (AP.VerboseAsm) {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +00001137 double Val = CFP->getValueAPF().convertToDouble();
1138 AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
Chris Lattner09ce6742010-01-19 22:16:33 +00001139 }
1140
Chris Lattner2dd245c2010-01-20 07:11:32 +00001141 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1142 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001143 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001144 }
1145
1146 if (CFP->getType()->isFloatTy()) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001147 if (AP.VerboseAsm) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001148 float Val = CFP->getValueAPF().convertToFloat();
1149 AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
Dan Gohmana12e9d72009-08-12 18:32:22 +00001150 }
Chris Lattner2dd245c2010-01-20 07:11:32 +00001151 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1152 AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001153 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001154 }
1155
1156 if (CFP->getType()->isX86_FP80Ty()) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001157 // all long double variants are printed as hex
1158 // api needed to prevent premature destruction
Chris Lattner09ce6742010-01-19 22:16:33 +00001159 APInt API = CFP->getValueAPF().bitcastToAPInt();
1160 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +00001161 if (AP.VerboseAsm) {
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001162 // Convert to double so we can print the approximate val as a comment.
1163 APFloat DoubleVal = CFP->getValueAPF();
1164 bool ignored;
1165 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
1166 &ignored);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001167 AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
1168 << DoubleVal.convertToDouble() << '\n';
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001169 }
1170
Chris Lattner2dd245c2010-01-20 07:11:32 +00001171 if (AP.TM.getTargetData()->isBigEndian()) {
1172 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
1173 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner72b5ebc2010-01-19 22:11:05 +00001174 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001175 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1176 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001177 }
Chris Lattner9ceff942010-01-20 06:53:37 +00001178
1179 // Emit the tail padding for the long double.
Chris Lattner2dd245c2010-01-20 07:11:32 +00001180 const TargetData &TD = *AP.TM.getTargetData();
1181 AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
1182 TD.getTypeStoreSize(CFP->getType()), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001183 return;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001184 }
1185
Chris Lattner09ce6742010-01-19 22:16:33 +00001186 assert(CFP->getType()->isPPC_FP128Ty() &&
1187 "Floating point constant type not handled");
1188 // All long double variants are printed as hex api needed to prevent
1189 // premature destruction.
1190 APInt API = CFP->getValueAPF().bitcastToAPInt();
1191 const uint64_t *p = API.getRawData();
Chris Lattner2dd245c2010-01-20 07:11:32 +00001192 if (AP.TM.getTargetData()->isBigEndian()) {
1193 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1194 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
Chris Lattner9ceff942010-01-20 06:53:37 +00001195 } else {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001196 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
1197 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner09ce6742010-01-19 22:16:33 +00001198 }
Dan Gohman00d448a2008-12-22 21:14:27 +00001199}
1200
Chris Lattner2dd245c2010-01-20 07:11:32 +00001201static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
1202 unsigned AddrSpace, AsmPrinter &AP) {
1203 const TargetData *TD = AP.TM.getTargetData();
Dan Gohman00d448a2008-12-22 21:14:27 +00001204 unsigned BitWidth = CI->getBitWidth();
Chris Lattner38c2b0a2010-01-13 04:39:46 +00001205 assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
Dan Gohman00d448a2008-12-22 21:14:27 +00001206
1207 // We don't expect assemblers to support integer data directives
1208 // for more than 64 bits, so we emit the data in at most 64-bit
1209 // quantities at a time.
1210 const uint64_t *RawData = CI->getValue().getRawData();
1211 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001212 uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1213 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001214 }
1215}
1216
Chris Lattner25045bd2005-11-21 07:51:36 +00001217/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001218void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Chris Lattner043c4e52010-01-20 07:19:19 +00001219 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
Chris Lattner2dd245c2010-01-20 07:11:32 +00001220 uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
Bill Wendling744f5792010-02-05 00:17:02 +00001221 if (Size == 0) Size = 1; // An empty "_foo:" followed by a section is undef.
Chris Lattner6449abf2010-01-19 21:51:22 +00001222 return OutStreamer.EmitZeros(Size, AddrSpace);
Chris Lattner2dd245c2010-01-20 07:11:32 +00001223 }
1224
1225 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1226 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1227 switch (Size) {
1228 case 1:
1229 case 2:
1230 case 4:
1231 case 8:
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001232 if (VerboseAsm)
1233 OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
Chris Lattner2dd245c2010-01-20 07:11:32 +00001234 OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1235 return;
1236 default:
1237 EmitGlobalConstantLargeInt(CI, AddrSpace, *this);
1238 return;
1239 }
1240 }
Chris Lattner3cc3a002010-01-13 04:34:19 +00001241
Chris Lattner91093ec2010-01-19 19:10:44 +00001242 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1243 return EmitGlobalConstantArray(CVA, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001244
Chris Lattner91093ec2010-01-19 19:10:44 +00001245 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1246 return EmitGlobalConstantStruct(CVS, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001247
Chris Lattner91093ec2010-01-19 19:10:44 +00001248 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
Chris Lattner2dd245c2010-01-20 07:11:32 +00001249 return EmitGlobalConstantFP(CFP, AddrSpace, *this);
Chris Lattner3cc3a002010-01-13 04:34:19 +00001250
Chris Lattner91093ec2010-01-19 19:10:44 +00001251 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1252 return EmitGlobalConstantVector(V, AddrSpace, *this);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001253
Chris Lattnerb0bedd62010-01-20 17:57:50 +00001254 if (isa<ConstantPointerNull>(CV)) {
1255 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1256 OutStreamer.EmitIntValue(0, Size, AddrSpace);
1257 return;
1258 }
1259
Chris Lattner52492ac2010-01-23 06:17:14 +00001260 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it
1261 // thread the streamer with EmitValue.
1262 OutStreamer.EmitValue(LowerConstant(CV, *this),
1263 TM.getTargetData()->getTypeAllocSize(CV->getType()),
1264 AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001265}
Chris Lattner0264d1a2006-01-27 02:10:10 +00001266
Chris Lattnerfad86b02008-08-17 07:19:36 +00001267void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001268 // Target doesn't support this yet!
Torok Edwinc23197a2009-07-14 16:55:14 +00001269 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Evan Chengd6594ae2006-09-12 21:00:35 +00001270}
1271
Chris Lattner3ce9b672006-09-26 23:59:50 +00001272/// PrintSpecial - Print information related to the specified machine instr
1273/// that is independent of the operand, and may be independent of the instr
1274/// itself. This can be useful for portably encoding the comment character
1275/// or other bits of target-specific knowledge into the asmstrings. The
1276/// syntax used is ${:comment}. Targets can override this to add support
1277/// for their own strange codes.
Chris Lattner3e0cc262009-03-10 05:37:13 +00001278void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001279 if (!strcmp(Code, "private")) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001280 O << MAI->getPrivateGlobalPrefix();
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001281 } else if (!strcmp(Code, "comment")) {
Evan Chengf1c0ae92009-03-24 00:17:40 +00001282 if (VerboseAsm)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001283 O << MAI->getCommentString();
Chris Lattner3ce9b672006-09-26 23:59:50 +00001284 } else if (!strcmp(Code, "uid")) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001285 // Comparing the address of MI isn't sufficient, because machineinstrs may
1286 // be allocated to the same address across functions.
1287 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1288
Owen Andersonbd58edf2009-06-24 22:28:12 +00001289 // If this is a new LastFn instruction, bump the counter.
1290 if (LastMI != MI || LastFn != ThisF) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001291 ++Counter;
1292 LastMI = MI;
Owen Andersonbd58edf2009-06-24 22:28:12 +00001293 LastFn = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001294 }
Chris Lattner3ce9b672006-09-26 23:59:50 +00001295 O << Counter;
1296 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001297 std::string msg;
1298 raw_string_ostream Msg(msg);
1299 Msg << "Unknown special formatter '" << Code
Bill Wendlinge8156192006-12-07 01:30:32 +00001300 << "' for machine instr: " << *MI;
Torok Edwin7d696d82009-07-11 13:10:19 +00001301 llvm_report_error(Msg.str());
Chris Lattner3ce9b672006-09-26 23:59:50 +00001302 }
1303}
1304
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001305/// processDebugLoc - Processes the debug information of each machine
1306/// instruction's DebugLoc.
Devang Patelaf0e2722009-10-06 02:19:11 +00001307void AsmPrinter::processDebugLoc(const MachineInstr *MI,
1308 bool BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001309 if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1310 || !DW->ShouldEmitDwarfDebug())
Chris Lattnerd2503292009-08-05 04:09:18 +00001311 return;
Devang Patelb0fdedb2009-09-30 23:12:50 +00001312 DebugLoc DL = MI->getDebugLoc();
Devang Patel53bb5c92009-11-10 23:06:00 +00001313 if (DL.isUnknown())
1314 return;
Devang Patel6b61f582010-01-16 06:09:35 +00001315 DILocation CurDLT = MF->getDILocation(DL);
Devang Patel3c91b052010-03-08 20:52:55 +00001316 if (!CurDLT.getScope().Verify())
Devang Patel53bb5c92009-11-10 23:06:00 +00001317 return;
1318
Chris Lattner043c4e52010-01-20 07:19:19 +00001319 if (!BeforePrintingInsn) {
Devang Patel53bb5c92009-11-10 23:06:00 +00001320 // After printing instruction
1321 DW->EndScope(MI);
Chris Lattner043c4e52010-01-20 07:19:19 +00001322 } else if (CurDLT.getNode() != PrevDLT) {
Chris Lattnerc6087842010-03-09 04:54:43 +00001323 MCSymbol *L = DW->RecordSourceLine(CurDLT.getLineNumber(),
1324 CurDLT.getColumnNumber(),
1325 CurDLT.getScope().getNode());
Chris Lattner043c4e52010-01-20 07:19:19 +00001326 DW->BeginScope(MI, L);
1327 PrevDLT = CurDLT.getNode();
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001328 }
1329}
Chris Lattner3ce9b672006-09-26 23:59:50 +00001330
Devang Patel53bb5c92009-11-10 23:06:00 +00001331
Chris Lattner0264d1a2006-01-27 02:10:10 +00001332/// printInlineAsm - This method formats and prints the specified machine
1333/// instruction that is an inline asm.
1334void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001335 unsigned NumOperands = MI->getNumOperands();
1336
1337 // Count the number of register definitions.
1338 unsigned NumDefs = 0;
Dan Gohmand735b802008-10-03 15:45:36 +00001339 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Chris Lattner67942f52006-09-05 20:02:51 +00001340 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001341 assert(NumDefs != NumOperands-1 && "No asm string?");
1342
Dan Gohmand735b802008-10-03 15:45:36 +00001343 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +00001344
1345 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001346 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +00001347
Dan Gohman40c57862009-11-06 00:04:54 +00001348 O << '\t';
1349
Dale Johannesenba2a0b92008-01-29 02:21:21 +00001350 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1351 // These are useful to see where empty asm's wound up.
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001352 if (AsmStr[0] == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001353 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1354 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001355 return;
1356 }
1357
Chris Lattner33adcfb2009-08-22 21:43:10 +00001358 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001359
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001360 // The variant of the current asmprinter.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001361 int AsmPrinterVariant = MAI->getAssemblerDialect();
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001362
Chris Lattner66099132006-02-01 22:41:11 +00001363 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1364 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +00001365
Chris Lattner66099132006-02-01 22:41:11 +00001366 while (*LastEmitted) {
1367 switch (*LastEmitted) {
1368 default: {
1369 // Not a special case, emit the string section literally.
1370 const char *LiteralEnd = LastEmitted+1;
1371 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +00001372 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +00001373 ++LiteralEnd;
1374 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1375 O.write(LastEmitted, LiteralEnd-LastEmitted);
1376 LastEmitted = LiteralEnd;
1377 break;
1378 }
Chris Lattner1c059972006-05-05 21:47:05 +00001379 case '\n':
1380 ++LastEmitted; // Consume newline character.
Dan Gohmand19a53b2008-06-30 22:03:41 +00001381 O << '\n'; // Indent code with newline.
Chris Lattner1c059972006-05-05 21:47:05 +00001382 break;
Chris Lattner66099132006-02-01 22:41:11 +00001383 case '$': {
1384 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001385 bool Done = true;
1386
1387 // Handle escapes.
1388 switch (*LastEmitted) {
1389 default: Done = false; break;
1390 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +00001391 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1392 O << '$';
1393 ++LastEmitted; // Consume second '$' character.
1394 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001395 case '(': // $( -> same as GCC's { character.
1396 ++LastEmitted; // Consume '(' character.
1397 if (CurVariant != -1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001398 llvm_report_error("Nested variants found in inline asm string: '"
1399 + std::string(AsmStr) + "'");
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001400 }
1401 CurVariant = 0; // We're in the first variant now.
1402 break;
1403 case '|':
1404 ++LastEmitted; // consume '|' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001405 if (CurVariant == -1)
1406 O << '|'; // this is gcc's behavior for | outside a variant
1407 else
1408 ++CurVariant; // We're in the next variant.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001409 break;
1410 case ')': // $) -> same as GCC's } char.
1411 ++LastEmitted; // consume ')' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001412 if (CurVariant == -1)
1413 O << '}'; // this is gcc's behavior for } outside a variant
1414 else
1415 CurVariant = -1;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001416 break;
Chris Lattner66099132006-02-01 22:41:11 +00001417 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001418 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +00001419
1420 bool HasCurlyBraces = false;
1421 if (*LastEmitted == '{') { // ${variable}
1422 ++LastEmitted; // Consume '{' character.
1423 HasCurlyBraces = true;
1424 }
1425
Chris Lattner3e0cc262009-03-10 05:37:13 +00001426 // If we have ${:foo}, then this is not a real operand reference, it is a
1427 // "magic" string reference, just like in .td files. Arrange to call
1428 // PrintSpecial.
1429 if (HasCurlyBraces && *LastEmitted == ':') {
1430 ++LastEmitted;
1431 const char *StrStart = LastEmitted;
1432 const char *StrEnd = strchr(StrStart, '}');
1433 if (StrEnd == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001434 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1435 + std::string(AsmStr) + "'");
Chris Lattner3e0cc262009-03-10 05:37:13 +00001436 }
1437
1438 std::string Val(StrStart, StrEnd);
1439 PrintSpecial(MI, Val.c_str());
1440 LastEmitted = StrEnd+1;
1441 break;
1442 }
1443
Chris Lattner66099132006-02-01 22:41:11 +00001444 const char *IDStart = LastEmitted;
1445 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +00001446 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +00001447 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1448 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001449 llvm_report_error("Bad $ operand number in inline asm string: '"
1450 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001451 }
1452 LastEmitted = IDEnd;
1453
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001454 char Modifier[2] = { 0, 0 };
1455
Chris Lattner66099132006-02-01 22:41:11 +00001456 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001457 // If we have curly braces, check for a modifier character. This
1458 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1459 if (*LastEmitted == ':') {
1460 ++LastEmitted; // Consume ':' character.
1461 if (*LastEmitted == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001462 llvm_report_error("Bad ${:} expression in inline asm string: '"
1463 + std::string(AsmStr) + "'");
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001464 }
1465
1466 Modifier[0] = *LastEmitted;
1467 ++LastEmitted; // Consume modifier character.
1468 }
1469
Chris Lattner66099132006-02-01 22:41:11 +00001470 if (*LastEmitted != '}') {
Torok Edwin7d696d82009-07-11 13:10:19 +00001471 llvm_report_error("Bad ${} expression in inline asm string: '"
1472 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001473 }
1474 ++LastEmitted; // Consume '}' character.
1475 }
1476
1477 if ((unsigned)Val >= NumOperands-1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001478 llvm_report_error("Invalid $ operand number in inline asm string: '"
1479 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001480 }
1481
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001482 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001483 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001484 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1485 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001486
1487 bool Error = false;
1488
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001489 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001490 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001491 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner9e330492007-12-30 20:50:28 +00001492 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng697cbbf2009-03-20 18:03:34 +00001493 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001494 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001495
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001496 if (OpNo >= MI->getNumOperands()) {
1497 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001498 } else {
Chris Lattner9e330492007-12-30 20:50:28 +00001499 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001500 ++OpNo; // Skip over the ID number.
1501
Chris Lattner10b318b2010-01-17 21:43:43 +00001502 if (Modifier[0] == 'l') // labels are target independent
Chris Lattner1b2eb0e2010-03-13 21:04:28 +00001503 O << *MI->getOperand(OpNo).getMBB()->getSymbol();
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001504 else {
1505 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen86b49f82008-09-24 01:07:17 +00001506 if ((OpFlags & 7) == 4) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001507 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1508 Modifier[0] ? Modifier : 0);
1509 } else {
1510 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1511 Modifier[0] ? Modifier : 0);
1512 }
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001513 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001514 }
1515 if (Error) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001516 std::string msg;
1517 raw_string_ostream Msg(msg);
Chris Lattner10b318b2010-01-17 21:43:43 +00001518 Msg << "Invalid operand found in inline asm: '" << AsmStr << "'\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00001519 MI->print(Msg);
1520 llvm_report_error(Msg.str());
Chris Lattner66099132006-02-01 22:41:11 +00001521 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001522 }
Chris Lattner66099132006-02-01 22:41:11 +00001523 break;
1524 }
Chris Lattner66099132006-02-01 22:41:11 +00001525 }
1526 }
Chris Lattner8e089a92010-02-10 00:36:00 +00001527 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
1528 OutStreamer.AddBlankLine();
Chris Lattner66099132006-02-01 22:41:11 +00001529}
1530
Evan Chengda47e6e2008-03-15 00:03:38 +00001531/// printImplicitDef - This method prints the specified machine instruction
1532/// that is an implicit def.
1533void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001534 if (!VerboseAsm) return;
1535 O.PadToColumn(MAI->getCommentColumn());
1536 O << MAI->getCommentString() << " implicit-def: "
Chris Lattner8e089a92010-02-10 00:36:00 +00001537 << TRI->getName(MI->getOperand(0).getReg());
1538 OutStreamer.AddBlankLine();
Evan Chengda47e6e2008-03-15 00:03:38 +00001539}
1540
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001541void AsmPrinter::printKill(const MachineInstr *MI) const {
1542 if (!VerboseAsm) return;
1543 O.PadToColumn(MAI->getCommentColumn());
1544 O << MAI->getCommentString() << " kill:";
1545 for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1546 const MachineOperand &op = MI->getOperand(n);
1547 assert(op.isReg() && "KILL instruction must have only register operands");
1548 O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1549 }
Chris Lattner8e089a92010-02-10 00:36:00 +00001550 OutStreamer.AddBlankLine();
Jakob Stoklund Olesenad682642009-11-04 19:24:37 +00001551}
1552
Jim Laskey1ee29252007-01-26 14:34:52 +00001553/// printLabel - This method prints a local label used by debug and
1554/// exception handling tables.
Chris Lattnerf64159c842010-02-03 01:46:05 +00001555void AsmPrinter::printLabelInst(const MachineInstr *MI) const {
Chris Lattner6ffccca2010-03-14 07:56:48 +00001556 OutStreamer.EmitLabel(MI->getOperand(0).getMCSymbol());
Jim Laskey1ee29252007-01-26 14:34:52 +00001557}
1558
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001559void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattnerb2cc1a32010-03-09 01:02:30 +00001560 MCSymbol *Sym =
Chris Lattner98cdab52010-03-10 02:25:11 +00001561 OutContext.GetOrCreateTemporarySymbol(Twine(MAI->getPrivateGlobalPrefix()) +
1562 "label" + Twine(Id));
Chris Lattnerb2cc1a32010-03-09 01:02:30 +00001563 OutStreamer.EmitLabel(Sym);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001564}
1565
Chris Lattner66099132006-02-01 22:41:11 +00001566/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1567/// instruction, using the specified assembler variant. Targets should
Dale Johannesencf0b7662010-01-14 21:50:17 +00001568/// override this to format as appropriate.
Chris Lattner66099132006-02-01 22:41:11 +00001569bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001570 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001571 // Target doesn't support this yet!
1572 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001573}
Chris Lattnerdd260332006-02-24 20:21:58 +00001574
1575bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1576 unsigned AsmVariant,
1577 const char *ExtraCode) {
1578 // Target doesn't support this yet!
1579 return true;
1580}
Nate Begeman37efe672006-04-22 18:53:45 +00001581
Chris Lattner95175542010-02-08 23:10:08 +00001582MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const {
1583 return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock());
Dan Gohman8c2b5252009-10-30 01:27:03 +00001584}
1585
1586MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
Chris Lattner95175542010-02-08 23:10:08 +00001587 const BasicBlock *BB) const {
Dan Gohman8c2b5252009-10-30 01:27:03 +00001588 assert(BB->hasName() &&
1589 "Address of anonymous basic block not supported yet!");
1590
Dan Gohman568a3be2009-11-05 23:14:35 +00001591 // This code must use the function name itself, and not the function number,
1592 // since it must be possible to generate the label name from within other
1593 // functions.
Chris Lattner2f8cc262010-01-13 07:30:49 +00001594 SmallString<60> FnName;
1595 Mang->getNameWithPrefix(FnName, F, false);
Dan Gohman8c2b5252009-10-30 01:27:03 +00001596
Chris Lattner2f8cc262010-01-13 07:30:49 +00001597 // FIXME: THIS IS BROKEN IF THE LLVM BASIC BLOCK DOESN'T HAVE A NAME!
Chris Lattner48130352010-01-13 06:38:18 +00001598 SmallString<60> NameResult;
Chris Lattner2f8cc262010-01-13 07:30:49 +00001599 Mang->getNameWithPrefix(NameResult,
1600 StringRef("BA") + Twine((unsigned)FnName.size()) +
Chris Lattner95175542010-02-08 23:10:08 +00001601 "_" + FnName.str() + "_" + BB->getName(),
Chris Lattner2f8cc262010-01-13 07:30:49 +00001602 Mangler::Private);
Dan Gohman568a3be2009-11-05 23:14:35 +00001603
Chris Lattner98cdab52010-03-10 02:25:11 +00001604 return OutContext.GetOrCreateTemporarySymbol(NameResult.str());
Dan Gohman8c2b5252009-10-30 01:27:03 +00001605}
1606
Chris Lattner39248682010-01-23 05:19:23 +00001607/// GetCPISymbol - Return the symbol for the specified constant pool entry.
1608MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
Chris Lattner98cdab52010-03-10 02:25:11 +00001609 return OutContext.GetOrCreateTemporarySymbol
1610 (Twine(MAI->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber())
1611 + "_" + Twine(CPID));
Chris Lattner39248682010-01-23 05:19:23 +00001612}
1613
1614/// GetJTISymbol - Return the symbol for the specified jump table entry.
1615MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
Chris Lattner589c6f62010-01-26 06:28:43 +00001616 return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
Chris Lattner7cb384d2009-09-12 23:02:08 +00001617}
1618
Chris Lattner798d1252010-01-25 21:17:10 +00001619/// GetJTSetSymbol - Return the symbol for the specified jump table .set
1620/// FIXME: privatize to AsmPrinter.
1621MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
Chris Lattner98cdab52010-03-10 02:25:11 +00001622 return OutContext.GetOrCreateTemporarySymbol
1623 (Twine(MAI->getPrivateGlobalPrefix()) + Twine(getFunctionNumber()) + "_" +
1624 Twine(UID) + "_set_" + Twine(MBBID));
Chris Lattner798d1252010-01-25 21:17:10 +00001625}
1626
Chris Lattner7a2ba942010-01-16 18:37:32 +00001627/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
Chris Lattnerd588b972010-01-15 23:25:11 +00001628/// global value name as its base, with the specified suffix, and where the
Chris Lattner7a2ba942010-01-16 18:37:32 +00001629/// symbol is forced to have private linkage if ForcePrivate is true.
1630MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
1631 StringRef Suffix,
1632 bool ForcePrivate) const {
Chris Lattnerd588b972010-01-15 23:25:11 +00001633 SmallString<60> NameStr;
Chris Lattner7a2ba942010-01-16 18:37:32 +00001634 Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
Chris Lattnerd588b972010-01-15 23:25:11 +00001635 NameStr.append(Suffix.begin(), Suffix.end());
Chris Lattner98cdab52010-03-10 02:25:11 +00001636 if (!GV->hasPrivateLinkage() && !ForcePrivate)
1637 return OutContext.GetOrCreateSymbol(NameStr.str());
1638 return OutContext.GetOrCreateTemporarySymbol(NameStr.str());
Chris Lattnerd588b972010-01-15 23:25:11 +00001639}
1640
Chris Lattner6b04ede2010-01-15 23:18:17 +00001641/// GetExternalSymbolSymbol - Return the MCSymbol for the specified
1642/// ExternalSymbol.
1643MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
1644 SmallString<60> NameStr;
1645 Mang->getNameWithPrefix(NameStr, Sym);
1646 return OutContext.GetOrCreateSymbol(NameStr.str());
1647}
1648
Chris Lattner7cb384d2009-09-12 23:02:08 +00001649
Chris Lattner523a5082010-01-22 21:50:41 +00001650
1651/// PrintParentLoopComment - Print comments about parent loops of this one.
1652static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1653 unsigned FunctionNumber) {
1654 if (Loop == 0) return;
1655 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
1656 OS.indent(Loop->getLoopDepth()*2)
1657 << "Parent Loop BB" << FunctionNumber << "_"
1658 << Loop->getHeader()->getNumber()
1659 << " Depth=" << Loop->getLoopDepth() << '\n';
1660}
1661
1662
1663/// PrintChildLoopComment - Print comments about child loops within
1664/// the loop for this basic block, with nesting.
1665static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1666 unsigned FunctionNumber) {
1667 // Add child loop information
1668 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
1669 OS.indent((*CL)->getLoopDepth()*2)
1670 << "Child Loop BB" << FunctionNumber << "_"
1671 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
1672 << '\n';
1673 PrintChildLoopComment(OS, *CL, FunctionNumber);
1674 }
1675}
1676
Chris Lattnerd1ff72b2010-02-03 01:09:55 +00001677/// PrintBasicBlockLoopComments - Pretty-print comments for basic blocks.
Chris Lattner523a5082010-01-22 21:50:41 +00001678static void PrintBasicBlockLoopComments(const MachineBasicBlock &MBB,
1679 const MachineLoopInfo *LI,
1680 const AsmPrinter &AP) {
1681 // Add loop depth information
1682 const MachineLoop *Loop = LI->getLoopFor(&MBB);
1683 if (Loop == 0) return;
1684
1685 MachineBasicBlock *Header = Loop->getHeader();
1686 assert(Header && "No header for loop");
1687
1688 // If this block is not a loop header, just print out what is the loop header
1689 // and return.
1690 if (Header != &MBB) {
1691 AP.OutStreamer.AddComment(" in Loop: Header=BB" +
1692 Twine(AP.getFunctionNumber())+"_" +
1693 Twine(Loop->getHeader()->getNumber())+
1694 " Depth="+Twine(Loop->getLoopDepth()));
1695 return;
1696 }
1697
1698 // Otherwise, it is a loop header. Print out information about child and
1699 // parent loops.
1700 raw_ostream &OS = AP.OutStreamer.GetCommentOS();
1701
1702 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
1703
1704 OS << "=>";
1705 OS.indent(Loop->getLoopDepth()*2-2);
1706
1707 OS << "This ";
1708 if (Loop->empty())
1709 OS << "Inner ";
1710 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
1711
1712 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
1713}
1714
1715
Chris Lattner70a54c02009-09-13 18:25:37 +00001716/// EmitBasicBlockStart - This method prints the label for the specified
1717/// MachineBasicBlock, an alignment (if present) and a comment describing
1718/// it if appropriate.
Chris Lattner662316c2009-09-14 03:15:54 +00001719void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
Dan Gohmanb1cac332009-10-30 01:34:35 +00001720 // Emit an alignment directive for this block, if needed.
Chris Lattner70a54c02009-09-13 18:25:37 +00001721 if (unsigned Align = MBB->getAlignment())
1722 EmitAlignment(Log2_32(Align));
Evan Chengfb8075d2008-02-28 00:43:03 +00001723
Dan Gohmanb1cac332009-10-30 01:34:35 +00001724 // If the block has its address taken, emit a special label to satisfy
1725 // references to the block. This is done so that we don't need to
1726 // remember the number of this label, and so that we can make
1727 // forward references to labels without knowing what their numbers
1728 // will be.
Dan Gohman8c2b5252009-10-30 01:27:03 +00001729 if (MBB->hasAddressTaken()) {
Chris Lattner213168b2010-01-20 07:24:05 +00001730 const BasicBlock *BB = MBB->getBasicBlock();
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001731 if (VerboseAsm)
1732 OutStreamer.AddComment("Address Taken");
Chris Lattner213168b2010-01-20 07:24:05 +00001733 OutStreamer.EmitLabel(GetBlockAddressSymbol(BB->getParent(), BB));
Dan Gohman8c2b5252009-10-30 01:27:03 +00001734 }
1735
Dan Gohmanb1cac332009-10-30 01:34:35 +00001736 // Print the main label for the block.
Chris Lattner0a3f3992010-02-17 18:52:56 +00001737 if (MBB->pred_empty() || isBlockOnlyReachableByFallthrough(MBB)) {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001738 if (VerboseAsm) {
Chris Lattner3a9be0e2010-01-23 05:51:36 +00001739 // NOTE: Want this comment at start of line.
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001740 O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001741 if (const BasicBlock *BB = MBB->getBasicBlock())
1742 if (BB->hasName())
1743 OutStreamer.AddComment("%" + BB->getName());
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001744
Chris Lattner523a5082010-01-22 21:50:41 +00001745 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001746 OutStreamer.AddBlankLine();
1747 }
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001748 } else {
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001749 if (VerboseAsm) {
1750 if (const BasicBlock *BB = MBB->getBasicBlock())
1751 if (BB->hasName())
1752 OutStreamer.AddComment("%" + BB->getName());
Chris Lattner523a5082010-01-22 21:50:41 +00001753 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattner0fd90fd2010-01-22 19:52:01 +00001754 }
Chris Lattnerd8d0aee2010-01-22 21:00:45 +00001755
Chris Lattner1b2eb0e2010-03-13 21:04:28 +00001756 OutStreamer.EmitLabel(MBB->getSymbol());
Dan Gohmane3cc3f32009-10-06 17:38:38 +00001757 }
Nate Begeman37efe672006-04-22 18:53:45 +00001758}
Nate Begeman52a51e382006-08-12 21:29:52 +00001759
Chris Lattnerbe9dfce2010-01-28 00:05:10 +00001760void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility) const {
Chris Lattner152a29b2010-01-23 06:53:23 +00001761 MCSymbolAttr Attr = MCSA_Invalid;
1762
1763 switch (Visibility) {
1764 default: break;
1765 case GlobalValue::HiddenVisibility:
1766 Attr = MAI->getHiddenVisibilityAttr();
1767 break;
1768 case GlobalValue::ProtectedVisibility:
1769 Attr = MAI->getProtectedVisibilityAttr();
1770 break;
Chris Lattner53d4d782010-01-15 23:38:51 +00001771 }
Chris Lattner152a29b2010-01-23 06:53:23 +00001772
1773 if (Attr != MCSA_Invalid)
1774 OutStreamer.EmitSymbolAttribute(Sym, Attr);
Chris Lattner53d4d782010-01-15 23:38:51 +00001775}
1776
Anton Korobeynikov7751ad92008-11-22 16:15:34 +00001777void AsmPrinter::printOffset(int64_t Offset) const {
1778 if (Offset > 0)
1779 O << '+' << Offset;
1780 else if (Offset < 0)
1781 O << Offset;
1782}
1783
Chris Lattner0a3f3992010-02-17 18:52:56 +00001784/// isBlockOnlyReachableByFallthough - Return true if the basic block has
1785/// exactly one predecessor and the control transfer mechanism between
1786/// the predecessor and this block is a fall-through.
1787bool AsmPrinter::isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB)
1788 const {
1789 // If this is a landing pad, it isn't a fall through. If it has no preds,
1790 // then nothing falls through to it.
1791 if (MBB->isLandingPad() || MBB->pred_empty())
1792 return false;
1793
1794 // If there isn't exactly one predecessor, it can't be a fall through.
1795 MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(), PI2 = PI;
1796 ++PI2;
1797 if (PI2 != MBB->pred_end())
1798 return false;
1799
1800 // The predecessor has to be immediately before this block.
1801 const MachineBasicBlock *Pred = *PI;
1802
1803 if (!Pred->isLayoutSuccessor(MBB))
1804 return false;
1805
1806 // If the block is completely empty, then it definitely does fall through.
1807 if (Pred->empty())
1808 return true;
1809
1810 // Otherwise, check the last instruction.
1811 const MachineInstr &LastInst = Pred->back();
1812 return !LastInst.getDesc().isBarrier();
1813}
1814
1815
1816
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001817GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1818 if (!S->usesMetadata())
Gordon Henriksenc317a602008-08-17 12:08:44 +00001819 return 0;
1820
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001821 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001822 if (GCPI != GCMetadataPrinters.end())
1823 return GCPI->second;
1824
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001825 const char *Name = S->getName().c_str();
Gordon Henriksenc317a602008-08-17 12:08:44 +00001826
1827 for (GCMetadataPrinterRegistry::iterator
1828 I = GCMetadataPrinterRegistry::begin(),
1829 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1830 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001831 GCMetadataPrinter *GMP = I->instantiate();
1832 GMP->S = S;
1833 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1834 return GMP;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001835 }
1836
Chris Lattner52492ac2010-01-23 06:17:14 +00001837 llvm_report_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
1838 return 0;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001839}
David Greene014700c2009-07-13 20:25:48 +00001840