blob: ecf18dad6b3060c5f77ecc8b4acb0d1fe3f6e1e0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the AsmPrinter class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/AsmPrinter.h"
15#include "llvm/Assembly/Writer.h"
16#include "llvm/DerivedTypes.h"
17#include "llvm/Constants.h"
18#include "llvm/Module.h"
Chris Lattner31a54742010-01-16 21:57:06 +000019#include "llvm/CodeGen/DwarfWriter.h"
Gordon Henriksen1aed5992008-08-17 18:44:35 +000020#include "llvm/CodeGen/GCMetadataPrinter.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/CodeGen/MachineConstantPool.h"
David Greeneca9b04b2009-11-13 21:34:57 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
David Greene066ed6a2009-08-18 19:22:55 +000023#include "llvm/CodeGen/MachineFunction.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/CodeGen/MachineJumpTableInfo.h"
David Greenee52fd872009-08-10 16:38:07 +000025#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000026#include "llvm/CodeGen/MachineModuleInfo.h"
Argiris Kirtzidis3f997f82009-05-07 13:55:51 +000027#include "llvm/Analysis/DebugInfo.h"
Chris Lattner1eb0ad02009-07-27 21:28:04 +000028#include "llvm/MC/MCContext.h"
Chris Lattner54bfda72010-01-23 06:17:14 +000029#include "llvm/MC/MCExpr.h"
David Greene4a37a692009-07-16 22:24:20 +000030#include "llvm/MC/MCInst.h"
Chris Lattnere6ad12f2009-07-31 18:48:30 +000031#include "llvm/MC/MCSection.h"
32#include "llvm/MC/MCStreamer.h"
Chris Lattner08c97082009-09-12 23:02:08 +000033#include "llvm/MC/MCSymbol.h"
Evan Cheng42ceb472009-03-25 01:47:28 +000034#include "llvm/Support/CommandLine.h"
Edwin Törökced9ff82009-07-11 13:10:19 +000035#include "llvm/Support/ErrorHandling.h"
Chris Lattnerc006e1c2010-01-22 19:52:01 +000036#include "llvm/Support/Format.h"
David Greene63486122009-07-13 20:25:48 +000037#include "llvm/Support/FormattedStream.h"
Chris Lattner621c44d2009-08-22 20:48:53 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattner31a54742010-01-16 21:57:06 +000039#include "llvm/Target/Mangler.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include "llvm/Target/TargetData.h"
David Greeneca9b04b2009-11-13 21:34:57 +000041#include "llvm/Target/TargetInstrInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042#include "llvm/Target/TargetLowering.h"
Chris Lattnerc4c40a92009-07-28 03:13:23 +000043#include "llvm/Target/TargetLoweringObjectFile.h"
Evan Cheng0eeed442008-07-01 23:18:29 +000044#include "llvm/Target/TargetOptions.h"
Evan Cheng3c0eda52008-03-15 00:03:38 +000045#include "llvm/Target/TargetRegisterInfo.h"
Evan Cheng6fb06762007-11-09 01:32:10 +000046#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner89b36582008-08-17 07:19:36 +000047#include "llvm/ADT/SmallString.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048#include <cerrno>
49using namespace llvm;
50
Evan Cheng42ceb472009-03-25 01:47:28 +000051static cl::opt<cl::boolOrDefault>
52AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
53 cl::init(cl::BOU_UNSET));
54
Chris Lattner1ab24612010-01-22 07:06:15 +000055static bool getVerboseAsm(bool VDef) {
56 switch (AsmVerbose) {
57 default:
58 case cl::BOU_UNSET: return VDef;
59 case cl::BOU_TRUE: return true;
60 case cl::BOU_FALSE: return false;
61 }
62}
63
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064char AsmPrinter::ID = 0;
David Greene302008d2009-07-14 20:18:05 +000065AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
Chris Lattner621c44d2009-08-22 20:48:53 +000066 const MCAsmInfo *T, bool VDef)
Daniel Dunbarb10d2222009-07-01 01:48:54 +000067 : MachineFunctionPass(&ID), FunctionNumber(0), O(o),
Chris Lattnera5ef4d32009-08-22 21:43:10 +000068 TM(tm), MAI(T), TRI(tm.getRegisterInfo()),
Chris Lattner1eb0ad02009-07-27 21:28:04 +000069
70 OutContext(*new MCContext()),
Chris Lattnera835afd2009-09-14 03:02:37 +000071 // FIXME: Pass instprinter to streamer.
Chris Lattner92c78e82010-01-20 06:39:07 +000072 OutStreamer(*createAsmStreamer(OutContext, O, *T,
Chris Lattner1ab24612010-01-22 07:06:15 +000073 TM.getTargetData()->isLittleEndian(),
74 getVerboseAsm(VDef), 0)),
Chris Lattner1eb0ad02009-07-27 21:28:04 +000075
Devang Patel042945f2010-01-16 06:09:35 +000076 LastMI(0), LastFn(0), Counter(~0U), PrevDLT(NULL) {
Chris Lattner2424eac2009-06-24 19:09:55 +000077 DW = 0; MMI = 0;
Chris Lattner1ab24612010-01-22 07:06:15 +000078 VerboseAsm = getVerboseAsm(VDef);
Evan Cheng42ceb472009-03-25 01:47:28 +000079}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080
Gordon Henriksen3385c9b2008-08-17 12:08:44 +000081AsmPrinter::~AsmPrinter() {
82 for (gcp_iterator I = GCMetadataPrinters.begin(),
83 E = GCMetadataPrinters.end(); I != E; ++I)
84 delete I->second;
Chris Lattner1eb0ad02009-07-27 21:28:04 +000085
86 delete &OutStreamer;
87 delete &OutContext;
Gordon Henriksen3385c9b2008-08-17 12:08:44 +000088}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089
Chris Lattner75bdd292009-08-03 19:12:26 +000090TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
Chris Lattnerc4c40a92009-07-28 03:13:23 +000091 return TM.getTargetLowering()->getObjFileLowering();
92}
93
Chris Lattnerd69d8ad2009-08-18 06:15:16 +000094/// getCurrentSection() - Return the current section we are emitting to.
95const MCSection *AsmPrinter::getCurrentSection() const {
96 return OutStreamer.getCurrentSection();
97}
98
99
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000100void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohmanecb436f2009-07-31 23:37:33 +0000101 AU.setPreservesAll();
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000102 MachineFunctionPass::getAnalysisUsage(AU);
Gordon Henriksen1aed5992008-08-17 18:44:35 +0000103 AU.addRequired<GCModuleInfo>();
David Greene066ed6a2009-08-18 19:22:55 +0000104 if (VerboseAsm)
David Greenee52fd872009-08-10 16:38:07 +0000105 AU.addRequired<MachineLoopInfo>();
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000106}
107
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108bool AsmPrinter::doInitialization(Module &M) {
Chris Lattner01316272009-07-31 17:42:42 +0000109 // Initialize TargetLoweringObjectFile.
110 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
111 .Initialize(OutContext, TM);
112
Chris Lattner63ab9bb2010-01-17 18:22:35 +0000113 Mang = new Mangler(*MAI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000114
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000115 // Allow the target to emit any magic that it wants at the start of the file.
116 EmitStartOfAsmFile(M);
Rafael Espindola5cf2e552008-12-03 11:01:37 +0000117
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000118 if (MAI->hasSingleParameterDotFile()) {
Chris Lattner77e356c2010-01-23 05:19:23 +0000119 // Very minimal debug info. It is ignored if we emit actual
120 // debug info. If we don't, this at least helps the user find where
121 // a function came from.
Rafael Espindola5cf2e552008-12-03 11:01:37 +0000122 O << "\t.file\t\"" << M.getModuleIdentifier() << "\"\n";
123 }
124
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000125 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
126 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Gordon Henriksen1aed5992008-08-17 18:44:35 +0000127 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
128 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000129 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000130
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131 if (!M.getModuleInlineAsm().empty())
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000132 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 << M.getModuleInlineAsm()
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000134 << '\n' << MAI->getCommentString()
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 << " End of file scope inline assembly\n";
136
Chris Lattnerc73e8eb2009-09-24 05:44:53 +0000137 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
138 if (MMI)
139 MMI->AnalyzeModule(M);
140 DW = getAnalysisIfAvailable<DwarfWriter>();
Sanjiv Gupta5461b522009-11-14 07:22:25 +0000141 if (DW)
Chris Lattnerc73e8eb2009-09-24 05:44:53 +0000142 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel1a454842009-06-19 21:54:26 +0000143
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000144 return false;
145}
146
Chris Lattnerd9609472010-01-19 04:39:15 +0000147/// EmitGlobalVariable - Emit the specified global variable to the .s file.
148void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
149 if (!GV->hasInitializer()) // External globals require no code.
150 return;
151
152 // Check to see if this is a special global used by LLVM, if so, emit it.
153 if (EmitSpecialLLVMGlobal(GV))
154 return;
Chris Lattner410c9472010-01-19 05:38:33 +0000155
156 MCSymbol *GVSym = GetGlobalValueSymbol(GV);
157 printVisibility(GVSym, GV->getVisibility());
158
159 if (MAI->hasDotTypeDotSizeDirective()) {
160 O << "\t.type\t" << *GVSym;
161 if (MAI->getCommentString()[0] != '@')
162 O << ",@object\n";
163 else
164 O << ",%object\n";
165 }
Chris Lattnerd9609472010-01-19 04:39:15 +0000166
Chris Lattner410c9472010-01-19 05:38:33 +0000167 SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
168
169 const TargetData *TD = TM.getTargetData();
170 unsigned Size = TD->getTypeAllocSize(GV->getType()->getElementType());
171 unsigned AlignLog = TD->getPreferredAlignmentLog(GV);
172
Chris Lattnerfdcdb2c2010-01-19 05:51:42 +0000173 // Handle common and BSS local symbols (.lcomm).
174 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
Chris Lattner410c9472010-01-19 05:38:33 +0000175 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
176
Chris Lattner410c9472010-01-19 05:38:33 +0000177 if (VerboseAsm) {
Chris Lattnerc006e1c2010-01-22 19:52:01 +0000178 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
179 /*PrintType=*/false, GV->getParent());
180 OutStreamer.GetCommentOS() << '\n';
Chris Lattner410c9472010-01-19 05:38:33 +0000181 }
Chris Lattnerf26c7792010-01-19 06:25:51 +0000182
183 // Handle common symbols.
Chris Lattnerfdcdb2c2010-01-19 05:51:42 +0000184 if (GVKind.isCommon()) {
185 // .comm _foo, 42, 4
Chris Lattnerecf1cdc2010-01-19 06:01:04 +0000186 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattnerf26c7792010-01-19 06:25:51 +0000187 return;
Chris Lattnerfdcdb2c2010-01-19 05:51:42 +0000188 }
Chris Lattnerf26c7792010-01-19 06:25:51 +0000189
190 // Handle local BSS symbols.
191 if (MAI->hasMachoZeroFillDirective()) {
192 const MCSection *TheSection =
193 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
194 // .zerofill __DATA, __bss, _foo, 400, 5
195 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
196 return;
197 }
198
Chris Lattnerd70deeb2010-01-23 07:47:02 +0000199 if (MAI->hasLCOMMDirective()) {
Chris Lattnerf26c7792010-01-19 06:25:51 +0000200 // .lcomm _foo, 42
Chris Lattnerd70deeb2010-01-23 07:47:02 +0000201 OutStreamer.EmitLocalCommonSymbol(GVSym, Size);
Chris Lattnerf26c7792010-01-19 06:25:51 +0000202 return;
203 }
204
205 // .local _foo
Chris Lattner2d7c8142010-01-23 06:39:22 +0000206 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
Chris Lattnerf26c7792010-01-19 06:25:51 +0000207 // .comm _foo, 42, 4
208 OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
Chris Lattner410c9472010-01-19 05:38:33 +0000209 return;
210 }
211
212 const MCSection *TheSection =
213 getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
214
215 // Handle the zerofill directive on darwin, which is a special form of BSS
216 // emission.
217 if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
218 // .globl _foo
Chris Lattner2d7c8142010-01-23 06:39:22 +0000219 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner410c9472010-01-19 05:38:33 +0000220 // .zerofill __DATA, __common, _foo, 400, 5
221 OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
222 return;
223 }
224
225 OutStreamer.SwitchSection(TheSection);
226
227 // TODO: Factor into an 'emit linkage' thing that is shared with function
228 // bodies.
229 switch (GV->getLinkage()) {
230 case GlobalValue::CommonLinkage:
231 case GlobalValue::LinkOnceAnyLinkage:
232 case GlobalValue::LinkOnceODRLinkage:
233 case GlobalValue::WeakAnyLinkage:
234 case GlobalValue::WeakODRLinkage:
235 case GlobalValue::LinkerPrivateLinkage:
Chris Lattner8c2d16d2010-01-19 06:41:24 +0000236 if (MAI->getWeakDefDirective() != 0) {
Chris Lattner410c9472010-01-19 05:38:33 +0000237 // .globl _foo
Chris Lattner2d7c8142010-01-23 06:39:22 +0000238 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner410c9472010-01-19 05:38:33 +0000239 // .weak_definition _foo
Chris Lattner2d7c8142010-01-23 06:39:22 +0000240 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
Chris Lattner410c9472010-01-19 05:38:33 +0000241 } else if (const char *LinkOnce = MAI->getLinkOnceDirective()) {
242 // .globl _foo
Chris Lattner2d7c8142010-01-23 06:39:22 +0000243 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner410c9472010-01-19 05:38:33 +0000244 // .linkonce same_size
245 O << LinkOnce;
Chris Lattner8c2d16d2010-01-19 06:41:24 +0000246 } else {
247 // .weak _foo
Chris Lattner2d7c8142010-01-23 06:39:22 +0000248 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
Chris Lattner8c2d16d2010-01-19 06:41:24 +0000249 }
Chris Lattner410c9472010-01-19 05:38:33 +0000250 break;
251 case GlobalValue::DLLExportLinkage:
252 case GlobalValue::AppendingLinkage:
253 // FIXME: appending linkage variables should go into a section of
254 // their name or something. For now, just emit them as external.
255 case GlobalValue::ExternalLinkage:
256 // If external or appending, declare as a global symbol.
257 // .globl _foo
Chris Lattner2d7c8142010-01-23 06:39:22 +0000258 OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
Chris Lattner410c9472010-01-19 05:38:33 +0000259 break;
260 case GlobalValue::PrivateLinkage:
261 case GlobalValue::InternalLinkage:
262 break;
263 default:
264 llvm_unreachable("Unknown linkage type!");
265 }
266
267 EmitAlignment(AlignLog, GV);
Chris Lattner410c9472010-01-19 05:38:33 +0000268 if (VerboseAsm) {
Chris Lattnerc006e1c2010-01-22 19:52:01 +0000269 WriteAsOperand(OutStreamer.GetCommentOS(), GV,
270 /*PrintType=*/false, GV->getParent());
271 OutStreamer.GetCommentOS() << '\n';
Chris Lattner410c9472010-01-19 05:38:33 +0000272 }
Chris Lattner8c2d16d2010-01-19 06:41:24 +0000273 OutStreamer.EmitLabel(GVSym);
Chris Lattner410c9472010-01-19 05:38:33 +0000274
275 EmitGlobalConstant(GV->getInitializer());
276
277 if (MAI->hasDotTypeDotSizeDirective())
Chris Lattner53ee5d82010-01-25 07:53:05 +0000278 // .size foo, 42
Chris Lattnere13c8ac2010-01-25 07:52:13 +0000279 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
Chris Lattnerc006e1c2010-01-22 19:52:01 +0000280
281 OutStreamer.AddBlankLine();
Chris Lattnerd9609472010-01-19 04:39:15 +0000282}
283
284
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285bool AsmPrinter::doFinalization(Module &M) {
Chris Lattnerae982212009-07-21 18:38:57 +0000286 // Emit global variables.
287 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
288 I != E; ++I)
Chris Lattnerd9609472010-01-19 04:39:15 +0000289 EmitGlobalVariable(I);
Chris Lattnerae982212009-07-21 18:38:57 +0000290
Chris Lattnere1225cc2009-06-24 18:54:37 +0000291 // Emit final debug information.
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000292 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattnere1225cc2009-06-24 18:54:37 +0000293 DW->EndModule();
294
Chris Lattnerdb191f02009-06-24 18:52:01 +0000295 // If the target wants to know about weak references, print them all.
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000296 if (MAI->getWeakRefDirective()) {
Chris Lattnerdb191f02009-06-24 18:52:01 +0000297 // FIXME: This is not lazy, it would be nice to only print weak references
298 // to stuff that is actually used. Note that doing so would require targets
299 // to notice uses in operands (due to constant exprs etc). This should
300 // happen with the MC stuff eventually.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301
Chris Lattnerdb191f02009-06-24 18:52:01 +0000302 // Print out module-level global variables here.
303 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
304 I != E; ++I) {
Chris Lattnercbfe4062010-01-16 18:17:26 +0000305 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner77e356c2010-01-23 05:19:23 +0000306 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattner2d7c8142010-01-23 06:39:22 +0000307 MCSA_WeakReference);
Chris Lattnerdb191f02009-06-24 18:52:01 +0000308 }
309
Chris Lattner0f98c332009-08-03 23:10:34 +0000310 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattnercbfe4062010-01-16 18:17:26 +0000311 if (!I->hasExternalWeakLinkage()) continue;
Chris Lattner77e356c2010-01-23 05:19:23 +0000312 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
Chris Lattner2d7c8142010-01-23 06:39:22 +0000313 MCSA_WeakReference);
Chris Lattnerdb191f02009-06-24 18:52:01 +0000314 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315 }
316
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000317 if (MAI->getSetDirective()) {
Chris Lattnerd7b6c9c2010-01-23 05:51:36 +0000318 OutStreamer.AddBlankLine();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000319 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattnerdb191f02009-06-24 18:52:01 +0000320 I != E; ++I) {
Chris Lattnerc0c8d7d2010-01-16 01:17:26 +0000321 MCSymbol *Name = GetGlobalValueSymbol(I);
Anton Korobeynikov6d2c5062007-09-06 17:21:48 +0000322
323 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattnerc0c8d7d2010-01-16 01:17:26 +0000324 MCSymbol *Target = GetGlobalValueSymbol(GV);
Anton Korobeynikovb191f5c2008-09-24 22:21:04 +0000325
Chris Lattnerce409842010-01-17 21:43:43 +0000326 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Chris Lattner2d7c8142010-01-23 06:39:22 +0000327 OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
Chris Lattnerce409842010-01-17 21:43:43 +0000328 else if (I->hasWeakLinkage())
Chris Lattner2d7c8142010-01-23 06:39:22 +0000329 OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
Chris Lattnerce409842010-01-17 21:43:43 +0000330 else
Chris Lattner1ff31942010-01-16 01:37:14 +0000331 assert(I->hasLocalLinkage() && "Invalid alias linkage");
Anton Korobeynikova6f01832008-03-11 21:41:14 +0000332
Anton Korobeynikovb191f5c2008-09-24 22:21:04 +0000333 printVisibility(Name, I->getVisibility());
Anton Korobeynikova6f01832008-03-11 21:41:14 +0000334
Chris Lattnerce409842010-01-17 21:43:43 +0000335 O << MAI->getSetDirective() << ' ' << *Name << ", " << *Target << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000336 }
337 }
338
Duncan Sands4e0d6a72009-01-28 13:14:17 +0000339 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen1aed5992008-08-17 18:44:35 +0000340 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
341 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
342 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000343 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksendf87fdc2008-01-07 01:30:38 +0000344
Dan Gohmana65530a2008-05-05 00:28:39 +0000345 // If we don't have any trampolines, then we don't require stack memory
346 // to be executable. Some targets have a directive to declare this.
Chris Lattnerdb191f02009-06-24 18:52:01 +0000347 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana65530a2008-05-05 00:28:39 +0000348 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattner2dc6ddd2010-01-23 07:21:06 +0000349 if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
350 OutStreamer.SwitchSection(S);
Chris Lattnerb6113072009-09-18 20:17:03 +0000351
352 // Allow the target to emit any magic that it wants at the end of the file,
353 // after everything else has gone out.
354 EmitEndOfAsmFile(M);
355
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356 delete Mang; Mang = 0;
Chris Lattner2424eac2009-06-24 19:09:55 +0000357 DW = 0; MMI = 0;
Chris Lattner1eb0ad02009-07-27 21:28:04 +0000358
359 OutStreamer.Finish();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 return false;
361}
362
363void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnerac5a6ad2010-01-16 01:24:10 +0000364 // Get the function symbol.
Chris Lattner8d656d92010-01-15 23:55:16 +0000365 CurrentFnSym = GetGlobalValueSymbol(MF.getFunction());
Evan Cheng477013c2007-10-14 05:57:21 +0000366 IncrementFunctionNumber();
David Greenee52fd872009-08-10 16:38:07 +0000367
Chris Lattner57c76b52009-09-16 00:35:39 +0000368 if (VerboseAsm)
David Greenee52fd872009-08-10 16:38:07 +0000369 LI = &getAnalysis<MachineLoopInfo>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370}
371
Evan Cheng68c18682009-03-13 07:51:59 +0000372namespace {
373 // SectionCPs - Keep track the alignment, constpool entries per Section.
374 struct SectionCPs {
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000375 const MCSection *S;
Evan Cheng68c18682009-03-13 07:51:59 +0000376 unsigned Alignment;
377 SmallVector<unsigned, 4> CPEs;
Douglas Gregor8cb41382009-12-19 07:05:23 +0000378 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
Evan Cheng68c18682009-03-13 07:51:59 +0000379 };
380}
381
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382/// EmitConstantPool - Print to the current output stream assembly
383/// representations of the constants in the constant pool MCP. This is
384/// used to print out constants which have been "spilled to memory" by
385/// the code generator.
386///
387void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
388 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
389 if (CP.empty()) return;
390
Anton Korobeynikovb866b252008-09-24 22:17:59 +0000391 // Calculate sections for constant pool entries. We collect entries to go into
392 // the same section together to reduce amount of section switch statements.
Evan Cheng68c18682009-03-13 07:51:59 +0000393 SmallVector<SectionCPs, 4> CPSections;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner680c6f62009-07-22 00:28:43 +0000395 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng68c18682009-03-13 07:51:59 +0000396 unsigned Align = CPE.getAlignment();
Chris Lattnerfc60ba12009-07-26 06:26:55 +0000397
398 SectionKind Kind;
399 switch (CPE.getRelocationInfo()) {
400 default: llvm_unreachable("Unknown section kind");
Chris Lattnera9453412009-08-01 23:57:16 +0000401 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattnered0c6762009-07-26 07:00:12 +0000402 case 1:
Chris Lattnera9453412009-08-01 23:57:16 +0000403 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattnered0c6762009-07-26 07:00:12 +0000404 break;
Chris Lattnerfc60ba12009-07-26 06:26:55 +0000405 case 0:
Chris Lattnered0c6762009-07-26 07:00:12 +0000406 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattnera9453412009-08-01 23:57:16 +0000407 case 4: Kind = SectionKind::getMergeableConst4(); break;
408 case 8: Kind = SectionKind::getMergeableConst8(); break;
409 case 16: Kind = SectionKind::getMergeableConst16();break;
410 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattnered0c6762009-07-26 07:00:12 +0000411 }
Chris Lattnerfc60ba12009-07-26 06:26:55 +0000412 }
413
Chris Lattnerd7f8c0a2009-08-01 23:46:12 +0000414 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner680c6f62009-07-22 00:28:43 +0000415
Evan Cheng68c18682009-03-13 07:51:59 +0000416 // The number of sections are small, just do a linear search from the
417 // last section to the first.
418 bool Found = false;
419 unsigned SecIdx = CPSections.size();
420 while (SecIdx != 0) {
421 if (CPSections[--SecIdx].S == S) {
422 Found = true;
423 break;
424 }
425 }
426 if (!Found) {
427 SecIdx = CPSections.size();
428 CPSections.push_back(SectionCPs(S, Align));
429 }
430
431 if (Align > CPSections[SecIdx].Alignment)
432 CPSections[SecIdx].Alignment = Align;
433 CPSections[SecIdx].CPEs.push_back(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434 }
435
Anton Korobeynikovb866b252008-09-24 22:17:59 +0000436 // Now print stuff into the calculated sections.
Evan Cheng68c18682009-03-13 07:51:59 +0000437 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner73266f92009-08-19 05:49:37 +0000438 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng68c18682009-03-13 07:51:59 +0000439 EmitAlignment(Log2_32(CPSections[i].Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440
Evan Cheng68c18682009-03-13 07:51:59 +0000441 unsigned Offset = 0;
442 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
443 unsigned CPI = CPSections[i].CPEs[j];
444 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikovb866b252008-09-24 22:17:59 +0000445
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446 // Emit inter-object padding for alignment.
Evan Cheng68c18682009-03-13 07:51:59 +0000447 unsigned AlignMask = CPE.getAlignment() - 1;
448 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
Chris Lattnera71dc602010-01-19 19:46:13 +0000449 OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
Evan Cheng68c18682009-03-13 07:51:59 +0000450
451 const Type *Ty = CPE.getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000452 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng68c18682009-03-13 07:51:59 +0000453
Chris Lattner77e356c2010-01-23 05:19:23 +0000454 // Emit the label with a comment on it.
Evan Cheng68c18682009-03-13 07:51:59 +0000455 if (VerboseAsm) {
Chris Lattner77e356c2010-01-23 05:19:23 +0000456 OutStreamer.GetCommentOS() << "constant pool ";
457 WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(),
458 MF->getFunction()->getParent());
459 OutStreamer.GetCommentOS() << '\n';
Anton Korobeynikovb866b252008-09-24 22:17:59 +0000460 }
Chris Lattner77e356c2010-01-23 05:19:23 +0000461 OutStreamer.EmitLabel(GetCPISymbol(CPI));
462
Evan Cheng68c18682009-03-13 07:51:59 +0000463 if (CPE.isMachineConstantPoolEntry())
464 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
465 else
466 EmitGlobalConstant(CPE.Val.ConstVal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 }
468 }
469}
470
471/// EmitJumpTableInfo - Print assembly representations of the jump tables used
472/// by the current function to the current output stream.
473///
474void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
475 MachineFunction &MF) {
476 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
477 if (JT.empty()) return;
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000478
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
480
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 // Pick the directive to use to print the jump table entries, and switch to
482 // the appropriate section.
483 TargetLowering *LoweringInfo = TM.getTargetLowering();
484
Anton Korobeynikov7f3fa2c2008-07-09 13:27:16 +0000485 const Function *F = MF.getFunction();
Evan Chengccca6f72009-06-18 20:37:15 +0000486 bool JTInDiffSection = false;
Chris Lattnerd7f8c0a2009-08-01 23:46:12 +0000487 if (F->isWeakForLinker() ||
488 (IsPic && !LoweringInfo->usesGlobalOffsetTable())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 // In PIC mode, we need to emit the jump table to the same section as the
490 // function body itself, otherwise the label differences won't make sense.
Anton Korobeynikov7f3fa2c2008-07-09 13:27:16 +0000491 // We should also do if the section name is NULL or function is declared in
492 // discardable section.
Chris Lattner73266f92009-08-19 05:49:37 +0000493 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang,
494 TM));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495 } else {
Chris Lattnerd7f8c0a2009-08-01 23:46:12 +0000496 // Otherwise, drop it in the readonly section.
497 const MCSection *ReadOnlySection =
Chris Lattnera9453412009-08-01 23:57:16 +0000498 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner73266f92009-08-19 05:49:37 +0000499 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengccca6f72009-06-18 20:37:15 +0000500 JTInDiffSection = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000501 }
502
503 EmitAlignment(Log2_32(MJTI->getAlignment()));
504
505 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
506 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
507
508 // If this jump table was deleted, ignore it.
509 if (JTBBs.empty()) continue;
510
511 // For PIC codegen, if possible we want to use the SetDirective to reduce
512 // the number of relocations the assembler will generate for the jump table.
513 // Set directives are all printed before the jump table itself.
Evan Cheng6fb06762007-11-09 01:32:10 +0000514 SmallPtrSet<MachineBasicBlock*, 16> EmittedSets;
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000515 if (MAI->getSetDirective() && IsPic)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Evan Cheng6fb06762007-11-09 01:32:10 +0000517 if (EmittedSets.insert(JTBBs[ii]))
518 printPICJumpTableSetLabel(i, JTBBs[ii]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519
Chris Lattner149495f2009-09-13 19:02:16 +0000520 // On some targets (e.g. Darwin) we want to emit two consequtive labels
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000521 // before each jump table. The first label is never referenced, but tells
522 // the assembler and linker the extents of the jump table object. The
523 // second label is actually referenced by the code.
Chris Lattner77e356c2010-01-23 05:19:23 +0000524 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
525 OutStreamer.EmitLabel(GetJTISymbol(i, true));
526
527 OutStreamer.EmitLabel(GetJTISymbol(i));
528
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000530 printPICJumpTableEntry(MJTI, JTBBs[ii], i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531 O << '\n';
532 }
533 }
534}
535
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000536void AsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
537 const MachineBasicBlock *MBB,
538 unsigned uid) const {
Chris Lattner3fb451e2009-08-11 20:29:57 +0000539 bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000540
541 // Use JumpTableDirective otherwise honor the entry size from the jump table
542 // info.
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000543 const char *JTEntryDirective = MAI->getJumpTableDirective(isPIC);
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000544 bool HadJTEntryDirective = JTEntryDirective != NULL;
545 if (!HadJTEntryDirective) {
546 JTEntryDirective = MJTI->getEntrySize() == 4 ?
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000547 MAI->getData32bitsDirective() : MAI->getData64bitsDirective();
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000548 }
549
550 O << JTEntryDirective << ' ';
551
552 // If we have emitted set directives for the jump table entries, print
553 // them rather than the entries themselves. If we're emitting PIC, then
554 // emit the table entries as differences between two text section labels.
555 // If we're emitting non-PIC code, then emit the entries as direct
556 // references to the target basic blocks.
Chris Lattner3fb451e2009-08-11 20:29:57 +0000557 if (!isPIC) {
Chris Lattnerce409842010-01-17 21:43:43 +0000558 O << *GetMBBSymbol(MBB->getNumber());
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000559 } else if (MAI->getSetDirective()) {
560 O << MAI->getPrivateGlobalPrefix() << getFunctionNumber()
Chris Lattner3fb451e2009-08-11 20:29:57 +0000561 << '_' << uid << "_set_" << MBB->getNumber();
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000562 } else {
Chris Lattnerce409842010-01-17 21:43:43 +0000563 O << *GetMBBSymbol(MBB->getNumber());
Chris Lattner3fb451e2009-08-11 20:29:57 +0000564 // If the arch uses custom Jump Table directives, don't calc relative to
Chris Lattnerd7b6c9c2010-01-23 05:51:36 +0000565 // JT.
Chris Lattner3fb451e2009-08-11 20:29:57 +0000566 if (!HadJTEntryDirective)
Chris Lattner77e356c2010-01-23 05:19:23 +0000567 O << '-' << *GetJTISymbol(uid);
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000568 }
569}
570
571
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
573/// special global used by LLVM. If so, emit it and return true, otherwise
574/// do nothing and return false.
575bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbare03513b2009-07-25 23:55:21 +0000576 if (GV->getName() == "llvm.used") {
Chris Lattnerd7b6c9c2010-01-23 05:51:36 +0000577 if (MAI->hasNoDeadStrip()) // No need to emit this at all.
Andrew Lenharth61d35f52007-08-22 19:33:11 +0000578 EmitLLVMUsedList(GV->getInitializer());
579 return true;
580 }
581
Chris Lattner1e0e0d12009-07-20 06:14:25 +0000582 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner68433442009-04-13 05:44:34 +0000583 if (GV->getSection() == "llvm.metadata" ||
584 GV->hasAvailableExternallyLinkage())
585 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586
587 if (!GV->hasAppendingLinkage()) return false;
588
589 assert(GV->hasInitializer() && "Not a special LLVM global!");
590
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000591 const TargetData *TD = TM.getTargetData();
592 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattner0c433e92009-03-09 05:52:15 +0000593 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner73266f92009-08-19 05:49:37 +0000594 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattner1e0e4892009-03-09 08:18:48 +0000595 EmitAlignment(Align, 0);
596 EmitXXStructorList(GV->getInitializer());
Chris Lattner2f2fe052010-01-19 04:34:02 +0000597
598 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattnerd7b6c9c2010-01-23 05:51:36 +0000599 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
600 StringRef Sym(".constructors_used");
601 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattner2d7c8142010-01-23 06:39:22 +0000602 MCSA_Reference);
Chris Lattnerd7b6c9c2010-01-23 05:51:36 +0000603 }
Chris Lattner1e0e4892009-03-09 08:18:48 +0000604 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605 }
606
Chris Lattner0c433e92009-03-09 05:52:15 +0000607 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner73266f92009-08-19 05:49:37 +0000608 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattner1e0e4892009-03-09 08:18:48 +0000609 EmitAlignment(Align, 0);
610 EmitXXStructorList(GV->getInitializer());
Chris Lattner2f2fe052010-01-19 04:34:02 +0000611
612 if (TM.getRelocationModel() == Reloc::Static &&
Chris Lattnerd7b6c9c2010-01-23 05:51:36 +0000613 MAI->hasStaticCtorDtorReferenceInStaticMode()) {
614 StringRef Sym(".destructors_used");
615 OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
Chris Lattner2d7c8142010-01-23 06:39:22 +0000616 MCSA_Reference);
Chris Lattnerd7b6c9c2010-01-23 05:51:36 +0000617 }
Chris Lattner1e0e4892009-03-09 08:18:48 +0000618 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 }
620
621 return false;
622}
623
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000624/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesen60567622008-09-09 22:29:13 +0000625/// global in the specified llvm.used list for which emitUsedDirectiveFor
626/// is true, as being used with this directive.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Dan Gohman9e1657f2009-06-14 23:30:43 +0000628 // Should be an array of 'i8*'.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
630 if (InitList == 0) return;
631
632 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner3f621b32009-07-17 22:00:23 +0000633 const GlobalValue *GV =
634 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattnerd7b6c9c2010-01-23 05:51:36 +0000635 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
636 OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(GV),
Chris Lattner2d7c8142010-01-23 06:39:22 +0000637 MCSA_NoDeadStrip);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638 }
639}
640
641/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
642/// function pointers, ignoring the init priority.
643void AsmPrinter::EmitXXStructorList(Constant *List) {
644 // Should be an array of '{ int, void ()* }' structs. The first value is the
645 // init priority, which we ignore.
646 if (!isa<ConstantArray>(List)) return;
647 ConstantArray *InitList = cast<ConstantArray>(List);
648 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
649 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
650 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
651
652 if (CS->getOperand(1)->isNullValue())
653 return; // Found a null terminator, exit printing.
654 // Emit the function pointer.
655 EmitGlobalConstant(CS->getOperand(1));
656 }
657}
658
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000659//===--------------------------------------------------------------------===//
660// Emission and print routines
661//
662
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663/// EmitInt8 - Emit a byte directive and value.
664///
665void AsmPrinter::EmitInt8(int Value) const {
Chris Lattnera39bf4e2010-01-20 06:45:39 +0000666 OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667}
668
669/// EmitInt16 - Emit a short directive and value.
670///
671void AsmPrinter::EmitInt16(int Value) const {
Chris Lattnera39bf4e2010-01-20 06:45:39 +0000672 OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673}
674
675/// EmitInt32 - Emit a long directive and value.
676///
677void AsmPrinter::EmitInt32(int Value) const {
Chris Lattnera39bf4e2010-01-20 06:45:39 +0000678 OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679}
680
681/// EmitInt64 - Emit a long long directive and value.
682///
683void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattnera39bf4e2010-01-20 06:45:39 +0000684 OutStreamer.EmitIntValue(Value, 8, 0/*addrspace*/);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000685}
686
Chris Lattnera68112c2010-01-23 04:54:10 +0000687
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688/// toOctal - Convert the low order bits of X into an octal digit.
689///
690static inline char toOctal(int X) {
691 return (X&7)+'0';
692}
693
694/// printStringChar - Print a char, escaped if necessary.
695///
David Greene302008d2009-07-14 20:18:05 +0000696static void printStringChar(formatted_raw_ostream &O, unsigned char C) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697 if (C == '"') {
698 O << "\\\"";
699 } else if (C == '\\') {
700 O << "\\\\";
Chris Lattner07ec1462009-01-22 23:38:45 +0000701 } else if (isprint((unsigned char)C)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 O << C;
703 } else {
704 switch(C) {
705 case '\b': O << "\\b"; break;
706 case '\f': O << "\\f"; break;
707 case '\n': O << "\\n"; break;
708 case '\r': O << "\\r"; break;
709 case '\t': O << "\\t"; break;
710 default:
711 O << '\\';
712 O << toOctal(C >> 6);
713 O << toOctal(C >> 3);
714 O << toOctal(C >> 0);
715 break;
716 }
717 }
718}
719
Dan Gohmane7ba1be2007-09-24 20:58:13 +0000720/// EmitFile - Emit a .file directive.
Benjamin Kramer0ad2db92010-01-17 07:46:39 +0000721void AsmPrinter::EmitFile(unsigned Number, StringRef Name) const {
Dan Gohmane7ba1be2007-09-24 20:58:13 +0000722 O << "\t.file\t" << Number << " \"";
Chris Lattnere2d4bf72009-04-08 00:28:38 +0000723 for (unsigned i = 0, N = Name.size(); i < N; ++i)
724 printStringChar(O, Name[i]);
Dan Gohman12ebe3f2008-06-30 22:03:41 +0000725 O << '\"';
Dan Gohmane7ba1be2007-09-24 20:58:13 +0000726}
727
728
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000729//===----------------------------------------------------------------------===//
730
731// EmitAlignment - Emit an alignment directive to the specified power of
732// two boundary. For example, if you pass in 3 here, you will get an 8
733// byte alignment. If a global value is specified, and if that global has
734// an explicit alignment requested, it will unconditionally override the
735// alignment request. However, if ForcedAlignBits is specified, this value
736// has final say: the ultimate alignment will be the max of ForcedAlignBits
737// and the alignment computed with NumBits and the global.
738//
739// The algorithm is:
740// Align = NumBits;
741// if (GV && GV->hasalignment) Align = GV->getalignment();
742// Align = std::max(Align, ForcedAlignBits);
743//
744void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng7e7d1942008-02-29 19:36:59 +0000745 unsigned ForcedAlignBits,
746 bool UseFillExpr) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000747 if (GV && GV->getAlignment())
748 NumBits = Log2_32(GV->getAlignment());
749 NumBits = std::max(NumBits, ForcedAlignBits);
750
751 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner4891d142009-08-19 06:12:02 +0000752
753 unsigned FillValue = 0;
Chris Lattnerd69d8ad2009-08-18 06:15:16 +0000754 if (getCurrentSection()->getKind().isText())
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000755 FillValue = MAI->getTextAlignFillValue();
Chris Lattner4891d142009-08-19 06:12:02 +0000756
757 OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758}
David Greenecdc2de32009-08-05 21:00:52 +0000759
Chris Lattner54bfda72010-01-23 06:17:14 +0000760/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
761///
762static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
763 MCContext &Ctx = AP.OutContext;
764
765 if (CV->isNullValue() || isa<UndefValue>(CV))
766 return MCConstantExpr::Create(0, Ctx);
Chris Lattner458c8772010-01-13 04:29:19 +0000767
Chris Lattner54bfda72010-01-23 06:17:14 +0000768 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
769 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
Chris Lattner458c8772010-01-13 04:29:19 +0000770
Chris Lattner54bfda72010-01-23 06:17:14 +0000771 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
772 return MCSymbolRefExpr::Create(AP.GetGlobalValueSymbol(GV), Ctx);
773 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
774 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
Chris Lattner458c8772010-01-13 04:29:19 +0000775
776 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
777 if (CE == 0) {
Chris Lattner54bfda72010-01-23 06:17:14 +0000778 llvm_unreachable("Unknown constant value to lower!");
779 return MCConstantExpr::Create(0, Ctx);
Chris Lattner458c8772010-01-13 04:29:19 +0000780 }
781
782 switch (CE->getOpcode()) {
783 case Instruction::ZExt:
784 case Instruction::SExt:
785 case Instruction::FPTrunc:
786 case Instruction::FPExt:
787 case Instruction::UIToFP:
788 case Instruction::SIToFP:
789 case Instruction::FPToUI:
790 case Instruction::FPToSI:
Chris Lattner54bfda72010-01-23 06:17:14 +0000791 default: llvm_unreachable("FIXME: Don't support this constant cast expr");
Chris Lattner458c8772010-01-13 04:29:19 +0000792 case Instruction::GetElementPtr: {
Chris Lattner54bfda72010-01-23 06:17:14 +0000793 const TargetData &TD = *AP.TM.getTargetData();
794 // Generate a symbolic expression for the byte address
795 const Constant *PtrVal = CE->getOperand(0);
796 SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
797 int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0],
798 IdxVec.size());
799
800 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
Chris Lattner458c8772010-01-13 04:29:19 +0000801 if (Offset == 0)
Chris Lattner54bfda72010-01-23 06:17:14 +0000802 return Base;
Chris Lattner458c8772010-01-13 04:29:19 +0000803
804 // Truncate/sext the offset to the pointer size.
Chris Lattner54bfda72010-01-23 06:17:14 +0000805 if (TD.getPointerSizeInBits() != 64) {
806 int SExtAmount = 64-TD.getPointerSizeInBits();
Chris Lattner458c8772010-01-13 04:29:19 +0000807 Offset = (Offset << SExtAmount) >> SExtAmount;
808 }
809
Chris Lattner54bfda72010-01-23 06:17:14 +0000810 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
811 Ctx);
Chris Lattner458c8772010-01-13 04:29:19 +0000812 }
813
814 case Instruction::Trunc:
815 // We emit the value and depend on the assembler to truncate the generated
816 // expression properly. This is important for differences between
817 // blockaddress labels. Since the two labels are in the same function, it
818 // is reasonable to treat their delta as a 32-bit value.
Chris Lattner54bfda72010-01-23 06:17:14 +0000819 // FALL THROUGH.
820 case Instruction::BitCast:
821 return LowerConstant(CE->getOperand(0), AP);
822
823 case Instruction::IntToPtr: {
824 const TargetData &TD = *AP.TM.getTargetData();
825 // Handle casts to pointers by changing them into casts to the appropriate
826 // integer type. This promotes constant folding and simplifies this code.
827 Constant *Op = CE->getOperand(0);
828 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
829 false/*ZExt*/);
830 return LowerConstant(Op, AP);
831 }
832
833 case Instruction::PtrToInt: {
834 const TargetData &TD = *AP.TM.getTargetData();
835 // Support only foldable casts to/from pointers that can be eliminated by
836 // changing the pointer to the appropriately sized integer type.
837 Constant *Op = CE->getOperand(0);
838 const Type *Ty = CE->getType();
839
840 const MCExpr *OpExpr = LowerConstant(Op, AP);
841
842 // We can emit the pointer value into this slot if the slot is an
843 // integer slot equal to the size of the pointer.
844 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
845 return OpExpr;
846
847 // Otherwise the pointer is smaller than the resultant integer, mask off
848 // the high bits so we are sure to get a proper truncation if the input is
849 // a constant expr.
850 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
851 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
852 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
853 }
Chris Lattner458c8772010-01-13 04:29:19 +0000854
855 case Instruction::Add:
856 case Instruction::Sub:
857 case Instruction::And:
858 case Instruction::Or:
Chris Lattner54bfda72010-01-23 06:17:14 +0000859 case Instruction::Xor: {
860 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
861 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
Chris Lattner458c8772010-01-13 04:29:19 +0000862 switch (CE->getOpcode()) {
Chris Lattner54bfda72010-01-23 06:17:14 +0000863 default: llvm_unreachable("Unknown binary operator constant cast expr");
864 case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
865 case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
866 case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
867 case Instruction::Or: return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
868 case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
Chris Lattner458c8772010-01-13 04:29:19 +0000869 }
Chris Lattner54bfda72010-01-23 06:17:14 +0000870 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 }
872}
873
Chris Lattnere72333d2010-01-19 19:10:44 +0000874static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
875 AsmPrinter &AP) {
Chris Lattnera68112c2010-01-23 04:54:10 +0000876 if (AddrSpace != 0 || !CA->isString()) {
877 // Not a string. Print the values in successive locations
Chris Lattnere72333d2010-01-19 19:10:44 +0000878 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
879 AP.EmitGlobalConstant(CA->getOperand(i), AddrSpace);
Chris Lattnera68112c2010-01-23 04:54:10 +0000880 return;
Dan Gohmane78b0c72008-12-22 21:14:27 +0000881 }
Chris Lattnera68112c2010-01-23 04:54:10 +0000882
883 // Otherwise, it can be emitted as .ascii.
884 SmallVector<char, 128> TmpVec;
885 TmpVec.reserve(CA->getNumOperands());
886 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
887 TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
888
889 AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
Dan Gohmane78b0c72008-12-22 21:14:27 +0000890}
891
Chris Lattnere72333d2010-01-19 19:10:44 +0000892static void EmitGlobalConstantVector(const ConstantVector *CV,
893 unsigned AddrSpace, AsmPrinter &AP) {
Chris Lattnerd3544672010-01-20 07:41:15 +0000894 for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
Chris Lattnere72333d2010-01-19 19:10:44 +0000895 AP.EmitGlobalConstant(CV->getOperand(i), AddrSpace);
Dan Gohmane78b0c72008-12-22 21:14:27 +0000896}
897
Chris Lattnere72333d2010-01-19 19:10:44 +0000898static void EmitGlobalConstantStruct(const ConstantStruct *CS,
899 unsigned AddrSpace, AsmPrinter &AP) {
Dan Gohmane78b0c72008-12-22 21:14:27 +0000900 // Print the fields in successive locations. Pad to align if needed!
Chris Lattnere72333d2010-01-19 19:10:44 +0000901 const TargetData *TD = AP.TM.getTargetData();
902 unsigned Size = TD->getTypeAllocSize(CS->getType());
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000903 const StructLayout *Layout = TD->getStructLayout(CS->getType());
Chris Lattnere72333d2010-01-19 19:10:44 +0000904 uint64_t SizeSoFar = 0;
905 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
Chris Lattnerd3544672010-01-20 07:41:15 +0000906 const Constant *Field = CS->getOperand(i);
Dan Gohmane78b0c72008-12-22 21:14:27 +0000907
908 // Check if padding is needed and insert one or more 0s.
Chris Lattnerd3544672010-01-20 07:41:15 +0000909 uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000910 uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
911 - Layout->getElementOffset(i)) - FieldSize;
912 SizeSoFar += FieldSize + PadSize;
Dan Gohmane78b0c72008-12-22 21:14:27 +0000913
914 // Now print the actual field value.
Chris Lattnerd3544672010-01-20 07:41:15 +0000915 AP.EmitGlobalConstant(Field, AddrSpace);
Dan Gohmane78b0c72008-12-22 21:14:27 +0000916
917 // Insert padding - this may include padding to increase the size of the
918 // current field up to the ABI size (if the struct is not packed) as well
919 // as padding to ensure that the next field starts at the right offset.
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000920 AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
Dan Gohmane78b0c72008-12-22 21:14:27 +0000921 }
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000922 assert(SizeSoFar == Layout->getSizeInBytes() &&
Dan Gohmane78b0c72008-12-22 21:14:27 +0000923 "Layout of constant struct may be incorrect!");
924}
925
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000926static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
927 AsmPrinter &AP) {
Dan Gohmane78b0c72008-12-22 21:14:27 +0000928 // FP Constants are printed as integer constants to avoid losing
Chris Lattner41fd4b12010-01-20 06:53:37 +0000929 // precision.
Chris Lattner82cdc062009-10-05 05:54:46 +0000930 if (CFP->getType()->isDoubleTy()) {
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000931 if (AP.VerboseAsm) {
Chris Lattner49d74392010-01-22 19:17:48 +0000932 double Val = CFP->getValueAPF().convertToDouble();
933 AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
Chris Lattner4e789282010-01-19 22:16:33 +0000934 }
935
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000936 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
937 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohmane78b0c72008-12-22 21:14:27 +0000938 return;
Chris Lattner82cdc062009-10-05 05:54:46 +0000939 }
940
941 if (CFP->getType()->isFloatTy()) {
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000942 if (AP.VerboseAsm) {
Chris Lattnerc006e1c2010-01-22 19:52:01 +0000943 float Val = CFP->getValueAPF().convertToFloat();
944 AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
Dan Gohman87581eb2009-08-12 18:32:22 +0000945 }
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000946 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
947 AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
Dan Gohmane78b0c72008-12-22 21:14:27 +0000948 return;
Chris Lattner82cdc062009-10-05 05:54:46 +0000949 }
950
951 if (CFP->getType()->isX86_FP80Ty()) {
Dan Gohmane78b0c72008-12-22 21:14:27 +0000952 // all long double variants are printed as hex
953 // api needed to prevent premature destruction
Chris Lattner4e789282010-01-19 22:16:33 +0000954 APInt API = CFP->getValueAPF().bitcastToAPInt();
955 const uint64_t *p = API.getRawData();
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000956 if (AP.VerboseAsm) {
Chris Lattner84382d22010-01-19 22:11:05 +0000957 // Convert to double so we can print the approximate val as a comment.
958 APFloat DoubleVal = CFP->getValueAPF();
959 bool ignored;
960 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
961 &ignored);
Chris Lattnerc006e1c2010-01-22 19:52:01 +0000962 AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
963 << DoubleVal.convertToDouble() << '\n';
Chris Lattner84382d22010-01-19 22:11:05 +0000964 }
965
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000966 if (AP.TM.getTargetData()->isBigEndian()) {
967 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
968 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner84382d22010-01-19 22:11:05 +0000969 } else {
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000970 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
971 AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
Dan Gohmane78b0c72008-12-22 21:14:27 +0000972 }
Chris Lattner41fd4b12010-01-20 06:53:37 +0000973
974 // Emit the tail padding for the long double.
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000975 const TargetData &TD = *AP.TM.getTargetData();
976 AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
977 TD.getTypeStoreSize(CFP->getType()), AddrSpace);
Dan Gohmane78b0c72008-12-22 21:14:27 +0000978 return;
Chris Lattner82cdc062009-10-05 05:54:46 +0000979 }
980
Chris Lattner4e789282010-01-19 22:16:33 +0000981 assert(CFP->getType()->isPPC_FP128Ty() &&
982 "Floating point constant type not handled");
983 // All long double variants are printed as hex api needed to prevent
984 // premature destruction.
985 APInt API = CFP->getValueAPF().bitcastToAPInt();
986 const uint64_t *p = API.getRawData();
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000987 if (AP.TM.getTargetData()->isBigEndian()) {
988 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
989 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
Chris Lattner41fd4b12010-01-20 06:53:37 +0000990 } else {
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000991 AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
992 AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
Chris Lattner4e789282010-01-19 22:16:33 +0000993 }
Dan Gohmane78b0c72008-12-22 21:14:27 +0000994}
995
Chris Lattnerf2fc2762010-01-20 07:11:32 +0000996static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
997 unsigned AddrSpace, AsmPrinter &AP) {
998 const TargetData *TD = AP.TM.getTargetData();
Dan Gohmane78b0c72008-12-22 21:14:27 +0000999 unsigned BitWidth = CI->getBitWidth();
Chris Lattner50340312010-01-13 04:39:46 +00001000 assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
Dan Gohmane78b0c72008-12-22 21:14:27 +00001001
1002 // We don't expect assemblers to support integer data directives
1003 // for more than 64 bits, so we emit the data in at most 64-bit
1004 // quantities at a time.
1005 const uint64_t *RawData = CI->getValue().getRawData();
1006 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
Chris Lattnerf2fc2762010-01-20 07:11:32 +00001007 uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1008 AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
Dan Gohmane78b0c72008-12-22 21:14:27 +00001009 }
1010}
1011
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptadc2943d2009-01-30 04:25:10 +00001013void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Chris Lattnere795ca52010-01-20 07:19:19 +00001014 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
Chris Lattnerf2fc2762010-01-20 07:11:32 +00001015 uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
Chris Lattner030176b2010-01-19 21:51:22 +00001016 return OutStreamer.EmitZeros(Size, AddrSpace);
Chris Lattnerf2fc2762010-01-20 07:11:32 +00001017 }
1018
1019 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1020 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1021 switch (Size) {
1022 case 1:
1023 case 2:
1024 case 4:
1025 case 8:
Chris Lattnerc006e1c2010-01-22 19:52:01 +00001026 if (VerboseAsm)
1027 OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
Chris Lattnerf2fc2762010-01-20 07:11:32 +00001028 OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1029 return;
1030 default:
1031 EmitGlobalConstantLargeInt(CI, AddrSpace, *this);
1032 return;
1033 }
1034 }
Chris Lattner9d767d82010-01-13 04:34:19 +00001035
Chris Lattnere72333d2010-01-19 19:10:44 +00001036 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1037 return EmitGlobalConstantArray(CVA, AddrSpace, *this);
Chris Lattner9d767d82010-01-13 04:34:19 +00001038
Chris Lattnere72333d2010-01-19 19:10:44 +00001039 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1040 return EmitGlobalConstantStruct(CVS, AddrSpace, *this);
Chris Lattner9d767d82010-01-13 04:34:19 +00001041
Chris Lattnere72333d2010-01-19 19:10:44 +00001042 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
Chris Lattnerf2fc2762010-01-20 07:11:32 +00001043 return EmitGlobalConstantFP(CFP, AddrSpace, *this);
Chris Lattner9d767d82010-01-13 04:34:19 +00001044
Chris Lattnere72333d2010-01-19 19:10:44 +00001045 if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1046 return EmitGlobalConstantVector(V, AddrSpace, *this);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047
Chris Lattner4fb5a132010-01-20 17:57:50 +00001048 if (isa<ConstantPointerNull>(CV)) {
1049 unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1050 OutStreamer.EmitIntValue(0, Size, AddrSpace);
1051 return;
1052 }
1053
Chris Lattner54bfda72010-01-23 06:17:14 +00001054 // Otherwise, it must be a ConstantExpr. Lower it to an MCExpr, then emit it
1055 // thread the streamer with EmitValue.
1056 OutStreamer.EmitValue(LowerConstant(CV, *this),
1057 TM.getTargetData()->getTypeAllocSize(CV->getType()),
1058 AddrSpace);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059}
1060
Chris Lattner89b36582008-08-17 07:19:36 +00001061void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062 // Target doesn't support this yet!
Edwin Törökbd448e32009-07-14 16:55:14 +00001063 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001064}
1065
1066/// PrintSpecial - Print information related to the specified machine instr
1067/// that is independent of the operand, and may be independent of the instr
1068/// itself. This can be useful for portably encoding the comment character
1069/// or other bits of target-specific knowledge into the asmstrings. The
1070/// syntax used is ${:comment}. Targets can override this to add support
1071/// for their own strange codes.
Chris Lattner6af48032009-03-10 05:37:13 +00001072void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073 if (!strcmp(Code, "private")) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001074 O << MAI->getPrivateGlobalPrefix();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075 } else if (!strcmp(Code, "comment")) {
Evan Cheng11db8142009-03-24 00:17:40 +00001076 if (VerboseAsm)
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001077 O << MAI->getCommentString();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 } else if (!strcmp(Code, "uid")) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 // Comparing the address of MI isn't sufficient, because machineinstrs may
1080 // be allocated to the same address across functions.
1081 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1082
Owen Andersonda3388b2009-06-24 22:28:12 +00001083 // If this is a new LastFn instruction, bump the counter.
1084 if (LastMI != MI || LastFn != ThisF) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 ++Counter;
1086 LastMI = MI;
Owen Andersonda3388b2009-06-24 22:28:12 +00001087 LastFn = ThisF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088 }
1089 O << Counter;
1090 } else {
Edwin Törökced9ff82009-07-11 13:10:19 +00001091 std::string msg;
1092 raw_string_ostream Msg(msg);
1093 Msg << "Unknown special formatter '" << Code
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001094 << "' for machine instr: " << *MI;
Edwin Törökced9ff82009-07-11 13:10:19 +00001095 llvm_report_error(Msg.str());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096 }
1097}
1098
Argiris Kirtzidis3f997f82009-05-07 13:55:51 +00001099/// processDebugLoc - Processes the debug information of each machine
1100/// instruction's DebugLoc.
Devang Patel5450fc12009-10-06 02:19:11 +00001101void AsmPrinter::processDebugLoc(const MachineInstr *MI,
1102 bool BeforePrintingInsn) {
Devang Patel90a0fe32009-11-10 23:06:00 +00001103 if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1104 || !DW->ShouldEmitDwarfDebug())
Chris Lattner693cfcc2009-08-05 04:09:18 +00001105 return;
Devang Patel86049dc2009-09-30 23:12:50 +00001106 DebugLoc DL = MI->getDebugLoc();
Devang Patel90a0fe32009-11-10 23:06:00 +00001107 if (DL.isUnknown())
1108 return;
Devang Patel042945f2010-01-16 06:09:35 +00001109 DILocation CurDLT = MF->getDILocation(DL);
1110 if (CurDLT.getScope().isNull())
Devang Patel90a0fe32009-11-10 23:06:00 +00001111 return;
1112
Chris Lattnere795ca52010-01-20 07:19:19 +00001113 if (!BeforePrintingInsn) {
Devang Patel90a0fe32009-11-10 23:06:00 +00001114 // After printing instruction
1115 DW->EndScope(MI);
Chris Lattnere795ca52010-01-20 07:19:19 +00001116 } else if (CurDLT.getNode() != PrevDLT) {
1117 unsigned L = DW->RecordSourceLine(CurDLT.getLineNumber(),
1118 CurDLT.getColumnNumber(),
1119 CurDLT.getScope().getNode());
1120 printLabel(L);
1121 O << '\n';
1122 DW->BeginScope(MI, L);
1123 PrevDLT = CurDLT.getNode();
Argiris Kirtzidis3f997f82009-05-07 13:55:51 +00001124 }
1125}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126
Devang Patel90a0fe32009-11-10 23:06:00 +00001127
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128/// printInlineAsm - This method formats and prints the specified machine
1129/// instruction that is an inline asm.
1130void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
1131 unsigned NumOperands = MI->getNumOperands();
1132
1133 // Count the number of register definitions.
1134 unsigned NumDefs = 0;
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00001135 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001136 ++NumDefs)
1137 assert(NumDefs != NumOperands-1 && "No asm string?");
1138
Dan Gohmanb9f4fa72008-10-03 15:45:36 +00001139 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001140
1141 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
1142 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
1143
Dan Gohmanbbc43962009-11-06 00:04:54 +00001144 O << '\t';
1145
Dale Johannesene99fc902008-01-29 02:21:21 +00001146 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1147 // These are useful to see where empty asm's wound up.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001148 if (AsmStr[0] == 0) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001149 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1150 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001151 return;
1152 }
1153
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001154 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001155
1156 // The variant of the current asmprinter.
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001157 int AsmPrinterVariant = MAI->getAssemblerDialect();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001158
1159 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1160 const char *LastEmitted = AsmStr; // One past the last character emitted.
1161
1162 while (*LastEmitted) {
1163 switch (*LastEmitted) {
1164 default: {
1165 // Not a special case, emit the string section literally.
1166 const char *LiteralEnd = LastEmitted+1;
1167 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
1168 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
1169 ++LiteralEnd;
1170 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1171 O.write(LastEmitted, LiteralEnd-LastEmitted);
1172 LastEmitted = LiteralEnd;
1173 break;
1174 }
1175 case '\n':
1176 ++LastEmitted; // Consume newline character.
Dan Gohman12ebe3f2008-06-30 22:03:41 +00001177 O << '\n'; // Indent code with newline.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001178 break;
1179 case '$': {
1180 ++LastEmitted; // Consume '$' character.
1181 bool Done = true;
1182
1183 // Handle escapes.
1184 switch (*LastEmitted) {
1185 default: Done = false; break;
1186 case '$': // $$ -> $
1187 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1188 O << '$';
1189 ++LastEmitted; // Consume second '$' character.
1190 break;
1191 case '(': // $( -> same as GCC's { character.
1192 ++LastEmitted; // Consume '(' character.
1193 if (CurVariant != -1) {
Edwin Törökced9ff82009-07-11 13:10:19 +00001194 llvm_report_error("Nested variants found in inline asm string: '"
1195 + std::string(AsmStr) + "'");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001196 }
1197 CurVariant = 0; // We're in the first variant now.
1198 break;
1199 case '|':
1200 ++LastEmitted; // consume '|' character.
Dale Johannesen8b0e1172008-10-10 21:04:42 +00001201 if (CurVariant == -1)
1202 O << '|'; // this is gcc's behavior for | outside a variant
1203 else
1204 ++CurVariant; // We're in the next variant.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001205 break;
1206 case ')': // $) -> same as GCC's } char.
1207 ++LastEmitted; // consume ')' character.
Dale Johannesen8b0e1172008-10-10 21:04:42 +00001208 if (CurVariant == -1)
1209 O << '}'; // this is gcc's behavior for } outside a variant
1210 else
1211 CurVariant = -1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001212 break;
1213 }
1214 if (Done) break;
1215
1216 bool HasCurlyBraces = false;
1217 if (*LastEmitted == '{') { // ${variable}
1218 ++LastEmitted; // Consume '{' character.
1219 HasCurlyBraces = true;
1220 }
1221
Chris Lattner6af48032009-03-10 05:37:13 +00001222 // If we have ${:foo}, then this is not a real operand reference, it is a
1223 // "magic" string reference, just like in .td files. Arrange to call
1224 // PrintSpecial.
1225 if (HasCurlyBraces && *LastEmitted == ':') {
1226 ++LastEmitted;
1227 const char *StrStart = LastEmitted;
1228 const char *StrEnd = strchr(StrStart, '}');
1229 if (StrEnd == 0) {
Edwin Törökced9ff82009-07-11 13:10:19 +00001230 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1231 + std::string(AsmStr) + "'");
Chris Lattner6af48032009-03-10 05:37:13 +00001232 }
1233
1234 std::string Val(StrStart, StrEnd);
1235 PrintSpecial(MI, Val.c_str());
1236 LastEmitted = StrEnd+1;
1237 break;
1238 }
1239
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001240 const char *IDStart = LastEmitted;
1241 char *IDEnd;
1242 errno = 0;
1243 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1244 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Edwin Törökced9ff82009-07-11 13:10:19 +00001245 llvm_report_error("Bad $ operand number in inline asm string: '"
1246 + std::string(AsmStr) + "'");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001247 }
1248 LastEmitted = IDEnd;
1249
1250 char Modifier[2] = { 0, 0 };
1251
1252 if (HasCurlyBraces) {
1253 // If we have curly braces, check for a modifier character. This
1254 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1255 if (*LastEmitted == ':') {
1256 ++LastEmitted; // Consume ':' character.
1257 if (*LastEmitted == 0) {
Edwin Törökced9ff82009-07-11 13:10:19 +00001258 llvm_report_error("Bad ${:} expression in inline asm string: '"
1259 + std::string(AsmStr) + "'");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001260 }
1261
1262 Modifier[0] = *LastEmitted;
1263 ++LastEmitted; // Consume modifier character.
1264 }
1265
1266 if (*LastEmitted != '}') {
Edwin Törökced9ff82009-07-11 13:10:19 +00001267 llvm_report_error("Bad ${} expression in inline asm string: '"
1268 + std::string(AsmStr) + "'");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001269 }
1270 ++LastEmitted; // Consume '}' character.
1271 }
1272
1273 if ((unsigned)Val >= NumOperands-1) {
Edwin Törökced9ff82009-07-11 13:10:19 +00001274 llvm_report_error("Invalid $ operand number in inline asm string: '"
1275 + std::string(AsmStr) + "'");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001276 }
1277
1278 // Okay, we finally have a value number. Ask the target to print this
1279 // operand!
1280 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1281 unsigned OpNo = 1;
1282
1283 bool Error = false;
1284
1285 // Scan to find the machine operand number for the operand.
1286 for (; Val; --Val) {
1287 if (OpNo >= MI->getNumOperands()) break;
Chris Lattnerda4cff12007-12-30 20:50:28 +00001288 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng92167402009-03-20 18:03:34 +00001289 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001290 }
1291
1292 if (OpNo >= MI->getNumOperands()) {
1293 Error = true;
1294 } else {
Chris Lattnerda4cff12007-12-30 20:50:28 +00001295 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296 ++OpNo; // Skip over the ID number.
1297
Chris Lattnerce409842010-01-17 21:43:43 +00001298 if (Modifier[0] == 'l') // labels are target independent
1299 O << *GetMBBSymbol(MI->getOperand(OpNo).getMBB()->getNumber());
Dale Johannesencfb19e62007-11-05 21:20:28 +00001300 else {
1301 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen94464072008-09-24 01:07:17 +00001302 if ((OpFlags & 7) == 4) {
Dale Johannesencfb19e62007-11-05 21:20:28 +00001303 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1304 Modifier[0] ? Modifier : 0);
1305 } else {
1306 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1307 Modifier[0] ? Modifier : 0);
1308 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001309 }
1310 }
1311 if (Error) {
Edwin Törökced9ff82009-07-11 13:10:19 +00001312 std::string msg;
1313 raw_string_ostream Msg(msg);
Chris Lattnerce409842010-01-17 21:43:43 +00001314 Msg << "Invalid operand found in inline asm: '" << AsmStr << "'\n";
Edwin Törökced9ff82009-07-11 13:10:19 +00001315 MI->print(Msg);
1316 llvm_report_error(Msg.str());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001317 }
1318 }
1319 break;
1320 }
1321 }
1322 }
Chris Lattner32d4cc72009-09-09 23:14:36 +00001323 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001324}
1325
Evan Cheng3c0eda52008-03-15 00:03:38 +00001326/// printImplicitDef - This method prints the specified machine instruction
1327/// that is an implicit def.
1328void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattner32d4cc72009-09-09 23:14:36 +00001329 if (!VerboseAsm) return;
1330 O.PadToColumn(MAI->getCommentColumn());
1331 O << MAI->getCommentString() << " implicit-def: "
Chris Lattner28f7e352009-09-13 19:48:37 +00001332 << TRI->getName(MI->getOperand(0).getReg());
Evan Cheng3c0eda52008-03-15 00:03:38 +00001333}
1334
Jakob Stoklund Olesen7f251672009-11-04 19:24:37 +00001335void AsmPrinter::printKill(const MachineInstr *MI) const {
1336 if (!VerboseAsm) return;
1337 O.PadToColumn(MAI->getCommentColumn());
1338 O << MAI->getCommentString() << " kill:";
1339 for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1340 const MachineOperand &op = MI->getOperand(n);
1341 assert(op.isReg() && "KILL instruction must have only register operands");
1342 O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1343 }
1344}
1345
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001346/// printLabel - This method prints a local label used by debug and
1347/// exception handling tables.
1348void AsmPrinter::printLabel(const MachineInstr *MI) const {
Dan Gohman7d546402008-07-01 00:16:26 +00001349 printLabel(MI->getOperand(0).getImm());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001350}
1351
Evan Chenga53c40a2008-02-01 09:10:45 +00001352void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattner32d4cc72009-09-09 23:14:36 +00001353 O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
Evan Chenga53c40a2008-02-01 09:10:45 +00001354}
1355
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001356/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1357/// instruction, using the specified assembler variant. Targets should
Dale Johannesenc90c30b2010-01-14 21:50:17 +00001358/// override this to format as appropriate.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001359bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
1360 unsigned AsmVariant, const char *ExtraCode) {
1361 // Target doesn't support this yet!
1362 return true;
1363}
1364
1365bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1366 unsigned AsmVariant,
1367 const char *ExtraCode) {
1368 // Target doesn't support this yet!
1369 return true;
1370}
1371
Dan Gohman885793b2009-11-20 23:18:13 +00001372MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA,
1373 const char *Suffix) const {
1374 return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock(), Suffix);
Dan Gohman91057512009-10-30 01:27:03 +00001375}
1376
1377MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
Dan Gohman885793b2009-11-20 23:18:13 +00001378 const BasicBlock *BB,
1379 const char *Suffix) const {
Dan Gohman91057512009-10-30 01:27:03 +00001380 assert(BB->hasName() &&
1381 "Address of anonymous basic block not supported yet!");
1382
Dan Gohmanff592ec2009-11-05 23:14:35 +00001383 // This code must use the function name itself, and not the function number,
1384 // since it must be possible to generate the label name from within other
1385 // functions.
Chris Lattner6be13f32010-01-13 07:30:49 +00001386 SmallString<60> FnName;
1387 Mang->getNameWithPrefix(FnName, F, false);
Dan Gohman91057512009-10-30 01:27:03 +00001388
Chris Lattner6be13f32010-01-13 07:30:49 +00001389 // FIXME: THIS IS BROKEN IF THE LLVM BASIC BLOCK DOESN'T HAVE A NAME!
Chris Lattnera38b2872010-01-13 06:38:18 +00001390 SmallString<60> NameResult;
Chris Lattner6be13f32010-01-13 07:30:49 +00001391 Mang->getNameWithPrefix(NameResult,
1392 StringRef("BA") + Twine((unsigned)FnName.size()) +
1393 "_" + FnName.str() + "_" + BB->getName() + Suffix,
1394 Mangler::Private);
Dan Gohmanff592ec2009-11-05 23:14:35 +00001395
Chris Lattnera38b2872010-01-13 06:38:18 +00001396 return OutContext.GetOrCreateSymbol(NameResult.str());
Dan Gohman91057512009-10-30 01:27:03 +00001397}
1398
Chris Lattner08c97082009-09-12 23:02:08 +00001399MCSymbol *AsmPrinter::GetMBBSymbol(unsigned MBBID) const {
1400 SmallString<60> Name;
1401 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "BB"
1402 << getFunctionNumber() << '_' << MBBID;
Chris Lattner77e356c2010-01-23 05:19:23 +00001403 return OutContext.GetOrCreateSymbol(Name.str());
1404}
1405
1406/// GetCPISymbol - Return the symbol for the specified constant pool entry.
1407MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
1408 SmallString<60> Name;
1409 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "CPI"
1410 << getFunctionNumber() << '_' << CPID;
1411 return OutContext.GetOrCreateSymbol(Name.str());
1412}
1413
1414/// GetJTISymbol - Return the symbol for the specified jump table entry.
1415MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
1416 const char *Prefix = isLinkerPrivate ? MAI->getLinkerPrivateGlobalPrefix() :
1417 MAI->getPrivateGlobalPrefix();
1418 SmallString<60> Name;
1419 raw_svector_ostream(Name) << Prefix << "JTI" << getFunctionNumber() << '_'
1420 << JTID;
Chris Lattner08c97082009-09-12 23:02:08 +00001421 return OutContext.GetOrCreateSymbol(Name.str());
1422}
1423
Chris Lattner2eb781d2010-01-15 23:18:17 +00001424/// GetGlobalValueSymbol - Return the MCSymbol for the specified global
1425/// value.
1426MCSymbol *AsmPrinter::GetGlobalValueSymbol(const GlobalValue *GV) const {
1427 SmallString<60> NameStr;
1428 Mang->getNameWithPrefix(NameStr, GV, false);
1429 return OutContext.GetOrCreateSymbol(NameStr.str());
1430}
1431
Chris Lattnera6f2a102010-01-16 18:37:32 +00001432/// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
Chris Lattnerf7871d12010-01-15 23:25:11 +00001433/// global value name as its base, with the specified suffix, and where the
Chris Lattnera6f2a102010-01-16 18:37:32 +00001434/// symbol is forced to have private linkage if ForcePrivate is true.
1435MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
1436 StringRef Suffix,
1437 bool ForcePrivate) const {
Chris Lattnerf7871d12010-01-15 23:25:11 +00001438 SmallString<60> NameStr;
Chris Lattnera6f2a102010-01-16 18:37:32 +00001439 Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
Chris Lattnerf7871d12010-01-15 23:25:11 +00001440 NameStr.append(Suffix.begin(), Suffix.end());
1441 return OutContext.GetOrCreateSymbol(NameStr.str());
1442}
1443
Chris Lattner2eb781d2010-01-15 23:18:17 +00001444/// GetExternalSymbolSymbol - Return the MCSymbol for the specified
1445/// ExternalSymbol.
1446MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
1447 SmallString<60> NameStr;
1448 Mang->getNameWithPrefix(NameStr, Sym);
1449 return OutContext.GetOrCreateSymbol(NameStr.str());
1450}
1451
Chris Lattner08c97082009-09-12 23:02:08 +00001452
Chris Lattner5abc72c2010-01-22 21:50:41 +00001453
1454/// PrintParentLoopComment - Print comments about parent loops of this one.
1455static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1456 unsigned FunctionNumber) {
1457 if (Loop == 0) return;
1458 PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
1459 OS.indent(Loop->getLoopDepth()*2)
1460 << "Parent Loop BB" << FunctionNumber << "_"
1461 << Loop->getHeader()->getNumber()
1462 << " Depth=" << Loop->getLoopDepth() << '\n';
1463}
1464
1465
1466/// PrintChildLoopComment - Print comments about child loops within
1467/// the loop for this basic block, with nesting.
1468static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1469 unsigned FunctionNumber) {
1470 // Add child loop information
1471 for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
1472 OS.indent((*CL)->getLoopDepth()*2)
1473 << "Child Loop BB" << FunctionNumber << "_"
1474 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
1475 << '\n';
1476 PrintChildLoopComment(OS, *CL, FunctionNumber);
1477 }
1478}
1479
1480/// EmitComments - Pretty-print comments for basic blocks.
1481static void PrintBasicBlockLoopComments(const MachineBasicBlock &MBB,
1482 const MachineLoopInfo *LI,
1483 const AsmPrinter &AP) {
1484 // Add loop depth information
1485 const MachineLoop *Loop = LI->getLoopFor(&MBB);
1486 if (Loop == 0) return;
1487
1488 MachineBasicBlock *Header = Loop->getHeader();
1489 assert(Header && "No header for loop");
1490
1491 // If this block is not a loop header, just print out what is the loop header
1492 // and return.
1493 if (Header != &MBB) {
1494 AP.OutStreamer.AddComment(" in Loop: Header=BB" +
1495 Twine(AP.getFunctionNumber())+"_" +
1496 Twine(Loop->getHeader()->getNumber())+
1497 " Depth="+Twine(Loop->getLoopDepth()));
1498 return;
1499 }
1500
1501 // Otherwise, it is a loop header. Print out information about child and
1502 // parent loops.
1503 raw_ostream &OS = AP.OutStreamer.GetCommentOS();
1504
1505 PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
1506
1507 OS << "=>";
1508 OS.indent(Loop->getLoopDepth()*2-2);
1509
1510 OS << "This ";
1511 if (Loop->empty())
1512 OS << "Inner ";
1513 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
1514
1515 PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
1516}
1517
1518
Chris Lattner2faa4ef2009-09-13 18:25:37 +00001519/// EmitBasicBlockStart - This method prints the label for the specified
1520/// MachineBasicBlock, an alignment (if present) and a comment describing
1521/// it if appropriate.
Chris Lattnerda5fb6d2009-09-14 03:15:54 +00001522void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
Dan Gohman65e3b3e2009-10-30 01:34:35 +00001523 // Emit an alignment directive for this block, if needed.
Chris Lattner2faa4ef2009-09-13 18:25:37 +00001524 if (unsigned Align = MBB->getAlignment())
1525 EmitAlignment(Log2_32(Align));
Evan Cheng45c1edb2008-02-28 00:43:03 +00001526
Dan Gohman65e3b3e2009-10-30 01:34:35 +00001527 // If the block has its address taken, emit a special label to satisfy
1528 // references to the block. This is done so that we don't need to
1529 // remember the number of this label, and so that we can make
1530 // forward references to labels without knowing what their numbers
1531 // will be.
Dan Gohman91057512009-10-30 01:27:03 +00001532 if (MBB->hasAddressTaken()) {
Chris Lattner8bae1052010-01-20 07:24:05 +00001533 const BasicBlock *BB = MBB->getBasicBlock();
Chris Lattnerc006e1c2010-01-22 19:52:01 +00001534 if (VerboseAsm)
1535 OutStreamer.AddComment("Address Taken");
Chris Lattner8bae1052010-01-20 07:24:05 +00001536 OutStreamer.EmitLabel(GetBlockAddressSymbol(BB->getParent(), BB));
Dan Gohman91057512009-10-30 01:27:03 +00001537 }
1538
Dan Gohman65e3b3e2009-10-30 01:34:35 +00001539 // Print the main label for the block.
Dan Gohman5fda4342009-10-06 17:38:38 +00001540 if (MBB->pred_empty() || MBB->isOnlyReachableByFallthrough()) {
Chris Lattnerc006e1c2010-01-22 19:52:01 +00001541 if (VerboseAsm) {
Chris Lattnerd7b6c9c2010-01-23 05:51:36 +00001542 // NOTE: Want this comment at start of line.
Dan Gohman5fda4342009-10-06 17:38:38 +00001543 O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
Chris Lattnerc006e1c2010-01-22 19:52:01 +00001544 if (const BasicBlock *BB = MBB->getBasicBlock())
1545 if (BB->hasName())
1546 OutStreamer.AddComment("%" + BB->getName());
Chris Lattner82be51c2010-01-22 21:00:45 +00001547
Chris Lattner5abc72c2010-01-22 21:50:41 +00001548 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattnerc006e1c2010-01-22 19:52:01 +00001549 OutStreamer.AddBlankLine();
1550 }
Dan Gohman5fda4342009-10-06 17:38:38 +00001551 } else {
Chris Lattnerc006e1c2010-01-22 19:52:01 +00001552 if (VerboseAsm) {
1553 if (const BasicBlock *BB = MBB->getBasicBlock())
1554 if (BB->hasName())
1555 OutStreamer.AddComment("%" + BB->getName());
Chris Lattner5abc72c2010-01-22 21:50:41 +00001556 PrintBasicBlockLoopComments(*MBB, LI, *this);
Chris Lattnerc006e1c2010-01-22 19:52:01 +00001557 }
Chris Lattner82be51c2010-01-22 21:00:45 +00001558
Chris Lattner8bae1052010-01-20 07:24:05 +00001559 OutStreamer.EmitLabel(GetMBBSymbol(MBB->getNumber()));
Dan Gohman5fda4342009-10-06 17:38:38 +00001560 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001561}
1562
Evan Cheng6fb06762007-11-09 01:32:10 +00001563/// printPICJumpTableSetLabel - This method prints a set label for the
1564/// specified MachineBasicBlock for a jumptable entry.
1565void AsmPrinter::printPICJumpTableSetLabel(unsigned uid,
1566 const MachineBasicBlock *MBB) const {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001567 if (!MAI->getSetDirective())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001568 return;
1569
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001570 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
Chris Lattnerce409842010-01-17 21:43:43 +00001571 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ','
1572 << *GetMBBSymbol(MBB->getNumber())
Chris Lattner77e356c2010-01-23 05:19:23 +00001573 << '-' << *GetJTISymbol(uid) << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001574}
1575
Evan Cheng6fb06762007-11-09 01:32:10 +00001576void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
1577 const MachineBasicBlock *MBB) const {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001578 if (!MAI->getSetDirective())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001579 return;
1580
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001581 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
Evan Cheng477013c2007-10-14 05:57:21 +00001582 << getFunctionNumber() << '_' << uid << '_' << uid2
Chris Lattnerce409842010-01-17 21:43:43 +00001583 << "_set_" << MBB->getNumber() << ','
1584 << *GetMBBSymbol(MBB->getNumber())
1585 << '-' << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Evan Cheng477013c2007-10-14 05:57:21 +00001586 << '_' << uid << '_' << uid2 << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001587}
1588
Chris Lattner10bcc6b2010-01-23 06:53:23 +00001589void AsmPrinter::printVisibility(MCSymbol *Sym, unsigned Visibility) const {
1590 MCSymbolAttr Attr = MCSA_Invalid;
1591
1592 switch (Visibility) {
1593 default: break;
1594 case GlobalValue::HiddenVisibility:
1595 Attr = MAI->getHiddenVisibilityAttr();
1596 break;
1597 case GlobalValue::ProtectedVisibility:
1598 Attr = MAI->getProtectedVisibilityAttr();
1599 break;
Chris Lattner67cce682010-01-15 23:38:51 +00001600 }
Chris Lattner10bcc6b2010-01-23 06:53:23 +00001601
1602 if (Attr != MCSA_Invalid)
1603 OutStreamer.EmitSymbolAttribute(Sym, Attr);
Chris Lattner67cce682010-01-15 23:38:51 +00001604}
1605
Anton Korobeynikov440f23d2008-11-22 16:15:34 +00001606void AsmPrinter::printOffset(int64_t Offset) const {
1607 if (Offset > 0)
1608 O << '+' << Offset;
1609 else if (Offset < 0)
1610 O << Offset;
1611}
1612
Gordon Henriksen1aed5992008-08-17 18:44:35 +00001613GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1614 if (!S->usesMetadata())
Gordon Henriksen3385c9b2008-08-17 12:08:44 +00001615 return 0;
1616
Gordon Henriksen1aed5992008-08-17 18:44:35 +00001617 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksen3385c9b2008-08-17 12:08:44 +00001618 if (GCPI != GCMetadataPrinters.end())
1619 return GCPI->second;
1620
Gordon Henriksen1aed5992008-08-17 18:44:35 +00001621 const char *Name = S->getName().c_str();
Gordon Henriksen3385c9b2008-08-17 12:08:44 +00001622
1623 for (GCMetadataPrinterRegistry::iterator
1624 I = GCMetadataPrinterRegistry::begin(),
1625 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1626 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen1aed5992008-08-17 18:44:35 +00001627 GCMetadataPrinter *GMP = I->instantiate();
1628 GMP->S = S;
1629 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1630 return GMP;
Gordon Henriksen3385c9b2008-08-17 12:08:44 +00001631 }
1632
Chris Lattner54bfda72010-01-23 06:17:14 +00001633 llvm_report_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
1634 return 0;
Gordon Henriksen3385c9b2008-08-17 12:08:44 +00001635}
David Greene63486122009-07-13 20:25:48 +00001636
1637/// EmitComments - Pretty-print comments for instructions
Chris Lattnerfdbeb812009-08-07 23:42:01 +00001638void AsmPrinter::EmitComments(const MachineInstr &MI) const {
David Greeneca9b04b2009-11-13 21:34:57 +00001639 if (!VerboseAsm)
1640 return;
David Greene4a37a692009-07-16 22:24:20 +00001641
David Greeneca9b04b2009-11-13 21:34:57 +00001642 bool Newline = false;
1643
1644 if (!MI.getDebugLoc().isUnknown()) {
Devang Patel042945f2010-01-16 06:09:35 +00001645 DILocation DLT = MF->getDILocation(MI.getDebugLoc());
David Greeneca9b04b2009-11-13 21:34:57 +00001646
1647 // Print source line info.
1648 O.PadToColumn(MAI->getCommentColumn());
Dan Gohman4698bab2009-12-05 00:23:29 +00001649 O << MAI->getCommentString() << ' ';
Devang Patel042945f2010-01-16 06:09:35 +00001650 DIScope Scope = DLT.getScope();
Dan Gohman4698bab2009-12-05 00:23:29 +00001651 // Omit the directory, because it's likely to be long and uninteresting.
1652 if (!Scope.isNull())
1653 O << Scope.getFilename();
1654 else
1655 O << "<unknown>";
Devang Patel042945f2010-01-16 06:09:35 +00001656 O << ':' << DLT.getLineNumber();
1657 if (DLT.getColumnNumber() != 0)
1658 O << ':' << DLT.getColumnNumber();
David Greeneca9b04b2009-11-13 21:34:57 +00001659 Newline = true;
David Greene4a37a692009-07-16 22:24:20 +00001660 }
David Greeneca9b04b2009-11-13 21:34:57 +00001661
David Greene2e7b9932009-11-16 15:12:23 +00001662 // Check for spills and reloads
1663 int FI;
1664
1665 const MachineFrameInfo *FrameInfo =
1666 MI.getParent()->getParent()->getFrameInfo();
1667
1668 // We assume a single instruction only has a spill or reload, not
1669 // both.
David Greene11a046f12009-12-04 22:46:04 +00001670 const MachineMemOperand *MMO;
David Greene2e7b9932009-11-16 15:12:23 +00001671 if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
1672 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greene11a046f12009-12-04 22:46:04 +00001673 MMO = *MI.memoperands_begin();
David Greene2e7b9932009-11-16 15:12:23 +00001674 if (Newline) O << '\n';
1675 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmane26680b2009-12-04 23:19:55 +00001676 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Reload";
David Greene2e7b9932009-11-16 15:12:23 +00001677 Newline = true;
1678 }
1679 }
David Greene11a046f12009-12-04 22:46:04 +00001680 else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
David Greene2e7b9932009-11-16 15:12:23 +00001681 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1682 if (Newline) O << '\n';
1683 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmane26680b2009-12-04 23:19:55 +00001684 O << MAI->getCommentString() << ' '
1685 << MMO->getSize() << "-byte Folded Reload";
David Greene2e7b9932009-11-16 15:12:23 +00001686 Newline = true;
1687 }
1688 }
1689 else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
1690 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
David Greene11a046f12009-12-04 22:46:04 +00001691 MMO = *MI.memoperands_begin();
David Greene2e7b9932009-11-16 15:12:23 +00001692 if (Newline) O << '\n';
1693 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmane26680b2009-12-04 23:19:55 +00001694 O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Spill";
David Greene2e7b9932009-11-16 15:12:23 +00001695 Newline = true;
1696 }
1697 }
David Greene11a046f12009-12-04 22:46:04 +00001698 else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
David Greene2e7b9932009-11-16 15:12:23 +00001699 if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1700 if (Newline) O << '\n';
1701 O.PadToColumn(MAI->getCommentColumn());
Dan Gohmane26680b2009-12-04 23:19:55 +00001702 O << MAI->getCommentString() << ' '
1703 << MMO->getSize() << "-byte Folded Spill";
David Greene2e7b9932009-11-16 15:12:23 +00001704 Newline = true;
1705 }
1706 }
1707
1708 // Check for spill-induced copies
1709 unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1710 if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
1711 SrcSubIdx, DstSubIdx)) {
1712 if (MI.getAsmPrinterFlag(ReloadReuse)) {
1713 if (Newline) O << '\n';
1714 O.PadToColumn(MAI->getCommentColumn());
1715 O << MAI->getCommentString() << " Reload Reuse";
David Greene2e7b9932009-11-16 15:12:23 +00001716 }
1717 }
David Greene63486122009-07-13 20:25:48 +00001718}
1719