blob: c6339ebfc4ddd3fb06351925194cc12e9ae49672 [file] [log] [blame]
Chris Lattnera80ba712004-08-16 23:15:22 +00001//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnera80ba712004-08-16 23:15:22 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the AsmPrinter class.
11//
12//===----------------------------------------------------------------------===//
13
Evan Cheng932f0222006-03-03 02:04:29 +000014#include "llvm/CodeGen/AsmPrinter.h"
Evan Cheng246ae0d2006-03-01 22:18:09 +000015#include "llvm/Assembly/Writer.h"
Nate Begeman8cfa57b2005-12-06 06:18:55 +000016#include "llvm/DerivedTypes.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000017#include "llvm/Constants.h"
Chris Lattner450de392005-11-10 18:36:17 +000018#include "llvm/Module.h"
Gordon Henriksen5eca0752008-08-17 18:44:35 +000019#include "llvm/CodeGen/GCMetadataPrinter.h"
Chris Lattner3b4fd322005-11-21 08:25:09 +000020#include "llvm/CodeGen/MachineConstantPool.h"
David Greenefe37ab32009-08-18 19:22:55 +000021#include "llvm/CodeGen/MachineFunction.h"
Nate Begeman37efe672006-04-22 18:53:45 +000022#include "llvm/CodeGen/MachineJumpTableInfo.h"
David Greeneb71d1b22009-08-10 16:38:07 +000023#include "llvm/CodeGen/MachineLoopInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000024#include "llvm/CodeGen/MachineModuleInfo.h"
Devang Patelc48c5502009-01-13 21:44:10 +000025#include "llvm/CodeGen/DwarfWriter.h"
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +000026#include "llvm/Analysis/DebugInfo.h"
Chris Lattner2b2954f2009-07-27 21:28:04 +000027#include "llvm/MC/MCContext.h"
David Greene3ac1ab82009-07-16 22:24:20 +000028#include "llvm/MC/MCInst.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000029#include "llvm/MC/MCSection.h"
30#include "llvm/MC/MCStreamer.h"
Chris Lattner7cb384d2009-09-12 23:02:08 +000031#include "llvm/MC/MCSymbol.h"
Evan Cheng42bf74b2009-03-25 01:47:28 +000032#include "llvm/Support/CommandLine.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000033#include "llvm/Support/ErrorHandling.h"
David Greene014700c2009-07-13 20:25:48 +000034#include "llvm/Support/FormattedStream.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000035#include "llvm/Support/Mangler.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000036#include "llvm/MC/MCAsmInfo.h"
Owen Anderson07000c62006-05-12 06:33:49 +000037#include "llvm/Target/TargetData.h"
Chris Lattner0336fdb2006-10-06 22:50:56 +000038#include "llvm/Target/TargetLowering.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000039#include "llvm/Target/TargetLoweringObjectFile.h"
Evan Cheng6547e402008-07-01 23:18:29 +000040#include "llvm/Target/TargetOptions.h"
Evan Chengda47e6e2008-03-15 00:03:38 +000041#include "llvm/Target/TargetRegisterInfo.h"
Evan Chengcc415862007-11-09 01:32:10 +000042#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerfad86b02008-08-17 07:19:36 +000043#include "llvm/ADT/SmallString.h"
Owen Andersoncb371882008-08-21 00:14:44 +000044#include "llvm/ADT/StringExtras.h"
Chris Lattner66099132006-02-01 22:41:11 +000045#include <cerrno>
Chris Lattnera80ba712004-08-16 23:15:22 +000046using namespace llvm;
47
Evan Cheng42bf74b2009-03-25 01:47:28 +000048static cl::opt<cl::boolOrDefault>
49AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
50 cl::init(cl::BOU_UNSET));
51
Devang Patel19974732007-05-03 01:11:54 +000052char AsmPrinter::ID = 0;
David Greene71847812009-07-14 20:18:05 +000053AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +000054 const MCAsmInfo *T, bool VDef)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000055 : MachineFunctionPass(&ID), FunctionNumber(0), O(o),
Chris Lattner33adcfb2009-08-22 21:43:10 +000056 TM(tm), MAI(T), TRI(tm.getRegisterInfo()),
Chris Lattner2b2954f2009-07-27 21:28:04 +000057
58 OutContext(*new MCContext()),
Chris Lattnerf3ce0092009-08-17 04:23:44 +000059 OutStreamer(*createAsmStreamer(OutContext, O, *T, this)),
Chris Lattner2b2954f2009-07-27 21:28:04 +000060
Chris Lattner290c2f52009-08-03 23:20:21 +000061 LastMI(0), LastFn(0), Counter(~0U),
Owen Andersona8dbf362009-06-25 16:55:32 +000062 PrevDLT(0, ~0U, ~0U) {
Chris Lattner0de1fc42009-06-24 19:09:55 +000063 DW = 0; MMI = 0;
Evan Cheng42bf74b2009-03-25 01:47:28 +000064 switch (AsmVerbose) {
65 case cl::BOU_UNSET: VerboseAsm = VDef; break;
66 case cl::BOU_TRUE: VerboseAsm = true; break;
67 case cl::BOU_FALSE: VerboseAsm = false; break;
68 }
69}
Chris Lattnered138932005-12-13 06:32:10 +000070
Gordon Henriksenc317a602008-08-17 12:08:44 +000071AsmPrinter::~AsmPrinter() {
72 for (gcp_iterator I = GCMetadataPrinters.begin(),
73 E = GCMetadataPrinters.end(); I != E; ++I)
74 delete I->second;
Chris Lattner2b2954f2009-07-27 21:28:04 +000075
76 delete &OutStreamer;
77 delete &OutContext;
Gordon Henriksenc317a602008-08-17 12:08:44 +000078}
Chris Lattnered138932005-12-13 06:32:10 +000079
Chris Lattner38c39882009-08-03 19:12:26 +000080TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
Chris Lattnerf0144122009-07-28 03:13:23 +000081 return TM.getTargetLowering()->getObjFileLowering();
82}
83
Chris Lattnerdabf07c2009-08-18 06:15:16 +000084/// getCurrentSection() - Return the current section we are emitting to.
85const MCSection *AsmPrinter::getCurrentSection() const {
86 return OutStreamer.getCurrentSection();
87}
88
89
Gordon Henriksence224772008-01-07 01:30:38 +000090void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000091 AU.setPreservesAll();
Gordon Henriksence224772008-01-07 01:30:38 +000092 MachineFunctionPass::getAnalysisUsage(AU);
Gordon Henriksen5eca0752008-08-17 18:44:35 +000093 AU.addRequired<GCModuleInfo>();
David Greenefe37ab32009-08-18 19:22:55 +000094 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +000095 AU.addRequired<MachineLoopInfo>();
Gordon Henriksence224772008-01-07 01:30:38 +000096}
97
Chris Lattnera80ba712004-08-16 23:15:22 +000098bool AsmPrinter::doInitialization(Module &M) {
Chris Lattnerf26e03b2009-07-31 17:42:42 +000099 // Initialize TargetLoweringObjectFile.
100 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
101 .Initialize(OutContext, TM);
102
Chris Lattner33adcfb2009-08-22 21:43:10 +0000103 Mang = new Mangler(M, MAI->getGlobalPrefix(), MAI->getPrivateGlobalPrefix(),
104 MAI->getLinkerPrivateGlobalPrefix());
Chris Lattner2c1b1592006-01-23 23:47:53 +0000105
Chris Lattner33adcfb2009-08-22 21:43:10 +0000106 if (MAI->doesAllowQuotesInName())
Chris Lattnera93ca922009-06-18 23:41:35 +0000107 Mang->setUseQuotes(true);
108
Duncan Sands1465d612009-01-28 13:14:17 +0000109 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000110 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Rafael Espindola952b8392008-12-03 11:01:37 +0000111
Chris Lattner33adcfb2009-08-22 21:43:10 +0000112 if (MAI->hasSingleParameterDotFile()) {
Rafael Espindola952b8392008-12-03 11:01:37 +0000113 /* Very minimal debug info. It is ignored if we emit actual
114 debug info. If we don't, this at helps the user find where
115 a function came from. */
116 O << "\t.file\t\"" << M.getModuleIdentifier() << "\"\n";
117 }
118
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000119 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
120 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000121 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000122
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000123 if (!M.getModuleInlineAsm().empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000124 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000125 << M.getModuleInlineAsm()
Chris Lattner33adcfb2009-08-22 21:43:10 +0000126 << '\n' << MAI->getCommentString()
Jim Laskey563321a2006-09-06 18:34:40 +0000127 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000128
Chris Lattner33adcfb2009-08-22 21:43:10 +0000129 if (MAI->doesSupportDebugInformation() ||
130 MAI->doesSupportExceptionHandling()) {
Chris Lattner0de1fc42009-06-24 19:09:55 +0000131 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
132 if (MMI)
Devang Patel14a55d92009-06-19 21:54:26 +0000133 MMI->AnalyzeModule(M);
Chris Lattner0de1fc42009-06-24 19:09:55 +0000134 DW = getAnalysisIfAvailable<DwarfWriter>();
135 if (DW)
Chris Lattner33adcfb2009-08-22 21:43:10 +0000136 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel14a55d92009-06-19 21:54:26 +0000137 }
138
Chris Lattnera80ba712004-08-16 23:15:22 +0000139 return false;
140}
141
142bool AsmPrinter::doFinalization(Module &M) {
Chris Lattner40bbebd2009-07-21 18:38:57 +0000143 // Emit global variables.
144 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
145 I != E; ++I)
146 PrintGlobalVariable(I);
147
Chris Lattner1f522fe2009-06-24 18:54:37 +0000148 // Emit final debug information.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000149 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattner1f522fe2009-06-24 18:54:37 +0000150 DW->EndModule();
151
Chris Lattner0a7befa2009-06-24 18:52:01 +0000152 // If the target wants to know about weak references, print them all.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000153 if (MAI->getWeakRefDirective()) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000154 // FIXME: This is not lazy, it would be nice to only print weak references
155 // to stuff that is actually used. Note that doing so would require targets
156 // to notice uses in operands (due to constant exprs etc). This should
157 // happen with the MC stuff eventually.
Rafael Espindola15404d02006-12-18 03:37:18 +0000158
Chris Lattner0a7befa2009-06-24 18:52:01 +0000159 // Print out module-level global variables here.
160 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
161 I != E; ++I) {
162 if (I->hasExternalWeakLinkage())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000163 O << MAI->getWeakRefDirective() << Mang->getMangledName(I) << '\n';
Chris Lattner0a7befa2009-06-24 18:52:01 +0000164 }
165
Chris Lattnerc6fdced2009-08-03 23:10:34 +0000166 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000167 if (I->hasExternalWeakLinkage())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000168 O << MAI->getWeakRefDirective() << Mang->getMangledName(I) << '\n';
Chris Lattner0a7befa2009-06-24 18:52:01 +0000169 }
Rafael Espindola15404d02006-12-18 03:37:18 +0000170 }
171
Chris Lattner33adcfb2009-08-22 21:43:10 +0000172 if (MAI->getSetDirective()) {
Dan Gohmand19a53b2008-06-30 22:03:41 +0000173 O << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000174 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattner0a7befa2009-06-24 18:52:01 +0000175 I != E; ++I) {
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000176 std::string Name = Mang->getMangledName(I);
Anton Korobeynikov325be7c2007-09-06 17:21:48 +0000177
178 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000179 std::string Target = Mang->getMangledName(GV);
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000180
Chris Lattner33adcfb2009-08-22 21:43:10 +0000181 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Dan Gohmand19a53b2008-06-30 22:03:41 +0000182 O << "\t.globl\t" << Name << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000183 else if (I->hasWeakLinkage())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000184 O << MAI->getWeakRefDirective() << Name << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000185 else if (!I->hasLocalLinkage())
Torok Edwinc23197a2009-07-14 16:55:14 +0000186 llvm_unreachable("Invalid alias linkage");
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000187
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000188 printVisibility(Name, I->getVisibility());
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000189
Chris Lattner33adcfb2009-08-22 21:43:10 +0000190 O << MAI->getSetDirective() << ' ' << Name << ", " << Target << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000191 }
192 }
193
Duncan Sands1465d612009-01-28 13:14:17 +0000194 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000195 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
196 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
197 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000198 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000199
Dan Gohmana779a982008-05-05 00:28:39 +0000200 // If we don't have any trampolines, then we don't require stack memory
201 // to be executable. Some targets have a directive to declare this.
Chris Lattner0a7befa2009-06-24 18:52:01 +0000202 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana779a982008-05-05 00:28:39 +0000203 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000204 if (MAI->getNonexecutableStackDirective())
205 O << MAI->getNonexecutableStackDirective() << '\n';
Dan Gohmana779a982008-05-05 00:28:39 +0000206
Chris Lattnera80ba712004-08-16 23:15:22 +0000207 delete Mang; Mang = 0;
Chris Lattner0de1fc42009-06-24 19:09:55 +0000208 DW = 0; MMI = 0;
Chris Lattner2b2954f2009-07-27 21:28:04 +0000209
210 OutStreamer.Finish();
Chris Lattnera80ba712004-08-16 23:15:22 +0000211 return false;
212}
213
Chris Lattnere2cf37b2009-07-17 20:46:40 +0000214std::string
215AsmPrinter::getCurrentFunctionEHName(const MachineFunction *MF) const {
Bill Wendling6e198962007-09-18 01:47:22 +0000216 assert(MF && "No machine function?");
Chris Lattnere2cf37b2009-07-17 20:46:40 +0000217 return Mang->getMangledName(MF->getFunction(), ".eh",
Chris Lattner33adcfb2009-08-22 21:43:10 +0000218 MAI->is_EHSymbolPrivate());
Bill Wendling6e198962007-09-18 01:47:22 +0000219}
220
Chris Lattner25045bd2005-11-21 07:51:36 +0000221void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnera80ba712004-08-16 23:15:22 +0000222 // What's my mangled name?
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000223 CurrentFnName = Mang->getMangledName(MF.getFunction());
Evan Cheng347d39f2007-10-14 05:57:21 +0000224 IncrementFunctionNumber();
David Greeneb71d1b22009-08-10 16:38:07 +0000225
David Greenefe37ab32009-08-18 19:22:55 +0000226 if (VerboseAsm) {
David Greeneb71d1b22009-08-10 16:38:07 +0000227 LI = &getAnalysis<MachineLoopInfo>();
228 }
Chris Lattnera80ba712004-08-16 23:15:22 +0000229}
230
Evan Cheng1606e8e2009-03-13 07:51:59 +0000231namespace {
232 // SectionCPs - Keep track the alignment, constpool entries per Section.
233 struct SectionCPs {
Chris Lattnera87dea42009-07-31 18:48:30 +0000234 const MCSection *S;
Evan Cheng1606e8e2009-03-13 07:51:59 +0000235 unsigned Alignment;
236 SmallVector<unsigned, 4> CPEs;
Chris Lattnera87dea42009-07-31 18:48:30 +0000237 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {};
Evan Cheng1606e8e2009-03-13 07:51:59 +0000238 };
239}
240
Chris Lattner3b4fd322005-11-21 08:25:09 +0000241/// EmitConstantPool - Print to the current output stream assembly
242/// representations of the constants in the constant pool MCP. This is
243/// used to print out constants which have been "spilled to memory" by
244/// the code generator.
245///
246void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000247 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000248 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000249
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000250 // Calculate sections for constant pool entries. We collect entries to go into
251 // the same section together to reduce amount of section switch statements.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000252 SmallVector<SectionCPs, 4> CPSections;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000253 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner298414e2009-07-22 00:28:43 +0000254 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng1606e8e2009-03-13 07:51:59 +0000255 unsigned Align = CPE.getAlignment();
Chris Lattner5c2f7892009-07-26 06:26:55 +0000256
257 SectionKind Kind;
258 switch (CPE.getRelocationInfo()) {
259 default: llvm_unreachable("Unknown section kind");
Chris Lattner27981192009-08-01 23:57:16 +0000260 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000261 case 1:
Chris Lattner27981192009-08-01 23:57:16 +0000262 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattner4c509222009-07-26 07:00:12 +0000263 break;
Chris Lattner5c2f7892009-07-26 06:26:55 +0000264 case 0:
Chris Lattner4c509222009-07-26 07:00:12 +0000265 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000266 case 4: Kind = SectionKind::getMergeableConst4(); break;
267 case 8: Kind = SectionKind::getMergeableConst8(); break;
268 case 16: Kind = SectionKind::getMergeableConst16();break;
269 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000270 }
Chris Lattner5c2f7892009-07-26 06:26:55 +0000271 }
272
Chris Lattner83d77fa2009-08-01 23:46:12 +0000273 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner298414e2009-07-22 00:28:43 +0000274
Evan Cheng1606e8e2009-03-13 07:51:59 +0000275 // The number of sections are small, just do a linear search from the
276 // last section to the first.
277 bool Found = false;
278 unsigned SecIdx = CPSections.size();
279 while (SecIdx != 0) {
280 if (CPSections[--SecIdx].S == S) {
281 Found = true;
282 break;
283 }
284 }
285 if (!Found) {
286 SecIdx = CPSections.size();
287 CPSections.push_back(SectionCPs(S, Align));
288 }
289
290 if (Align > CPSections[SecIdx].Alignment)
291 CPSections[SecIdx].Alignment = Align;
292 CPSections[SecIdx].CPEs.push_back(i);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000293 }
294
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000295 // Now print stuff into the calculated sections.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000296 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000297 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000298 EmitAlignment(Log2_32(CPSections[i].Alignment));
Evan Cheng2d2cec12006-06-29 00:26:09 +0000299
Evan Cheng1606e8e2009-03-13 07:51:59 +0000300 unsigned Offset = 0;
301 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
302 unsigned CPI = CPSections[i].CPEs[j];
303 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000304
Chris Lattner3029f922006-02-09 04:46:04 +0000305 // Emit inter-object padding for alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000306 unsigned AlignMask = CPE.getAlignment() - 1;
307 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
308 EmitZeros(NewOffset - Offset);
309
310 const Type *Ty = CPE.getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000311 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000312
Chris Lattner33adcfb2009-08-22 21:43:10 +0000313 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
Dan Gohmana12e9d72009-08-12 18:32:22 +0000314 << CPI << ':';
Evan Cheng1606e8e2009-03-13 07:51:59 +0000315 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000316 O.PadToColumn(MAI->getCommentColumn());
317 O << MAI->getCommentString() << " constant ";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000318 WriteTypeSymbolic(O, CPE.getType(), MF->getFunction()->getParent());
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000319 }
Evan Cheng1606e8e2009-03-13 07:51:59 +0000320 O << '\n';
321 if (CPE.isMachineConstantPoolEntry())
322 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
323 else
324 EmitGlobalConstant(CPE.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000325 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000326 }
327}
328
Nate Begeman37efe672006-04-22 18:53:45 +0000329/// EmitJumpTableInfo - Print assembly representations of the jump tables used
330/// by the current function to the current output stream.
331///
Chris Lattner1da31ee2006-10-05 03:01:21 +0000332void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
333 MachineFunction &MF) {
Nate Begeman37efe672006-04-22 18:53:45 +0000334 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
335 if (JT.empty()) return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000336
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000337 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
Nate Begeman4d9bbdc2006-07-27 16:46:58 +0000338
Nate Begeman2f1ae882006-07-27 01:13:04 +0000339 // Pick the directive to use to print the jump table entries, and switch to
340 // the appropriate section.
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000341 TargetLowering *LoweringInfo = TM.getTargetLowering();
Anton Korobeynikov24287dd2006-12-19 21:04:20 +0000342
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000343 const Function *F = MF.getFunction();
Evan Chengb13bafe2009-06-18 20:37:15 +0000344 bool JTInDiffSection = false;
Chris Lattner83d77fa2009-08-01 23:46:12 +0000345 if (F->isWeakForLinker() ||
346 (IsPic && !LoweringInfo->usesGlobalOffsetTable())) {
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000347 // In PIC mode, we need to emit the jump table to the same section as the
348 // function body itself, otherwise the label differences won't make sense.
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000349 // We should also do if the section name is NULL or function is declared in
350 // discardable section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000351 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang,
352 TM));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000353 } else {
Chris Lattner83d77fa2009-08-01 23:46:12 +0000354 // Otherwise, drop it in the readonly section.
355 const MCSection *ReadOnlySection =
Chris Lattner27981192009-08-01 23:57:16 +0000356 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000357 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengb13bafe2009-06-18 20:37:15 +0000358 JTInDiffSection = true;
Nate Begeman2f1ae882006-07-27 01:13:04 +0000359 }
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000360
361 EmitAlignment(Log2_32(MJTI->getAlignment()));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000362
Nate Begeman37efe672006-04-22 18:53:45 +0000363 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
Nate Begeman52a51e382006-08-12 21:29:52 +0000364 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000365
366 // If this jump table was deleted, ignore it.
367 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000368
369 // For PIC codegen, if possible we want to use the SetDirective to reduce
370 // the number of relocations the assembler will generate for the jump table.
371 // Set directives are all printed before the jump table itself.
Evan Chengcc415862007-11-09 01:32:10 +0000372 SmallPtrSet<MachineBasicBlock*, 16> EmittedSets;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000373 if (MAI->getSetDirective() && IsPic)
Nate Begeman52a51e382006-08-12 21:29:52 +0000374 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Evan Chengcc415862007-11-09 01:32:10 +0000375 if (EmittedSets.insert(JTBBs[ii]))
376 printPICJumpTableSetLabel(i, JTBBs[ii]);
Nate Begeman52a51e382006-08-12 21:29:52 +0000377
Chris Lattner393a8ee2007-01-18 01:12:56 +0000378 // On some targets (e.g. darwin) we want to emit two consequtive labels
379 // before each jump table. The first label is never referenced, but tells
380 // the assembler and linker the extents of the jump table object. The
381 // second label is actually referenced by the code.
Evan Chengb13bafe2009-06-18 20:37:15 +0000382 if (JTInDiffSection) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000383 if (const char *JTLabelPrefix = MAI->getJumpTableSpecialLabelPrefix())
Evan Chengb13bafe2009-06-18 20:37:15 +0000384 O << JTLabelPrefix << "JTI" << getFunctionNumber() << '_' << i << ":\n";
385 }
Chris Lattner393a8ee2007-01-18 01:12:56 +0000386
Chris Lattner33adcfb2009-08-22 21:43:10 +0000387 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Evan Cheng347d39f2007-10-14 05:57:21 +0000388 << '_' << i << ":\n";
Nate Begeman52a51e382006-08-12 21:29:52 +0000389
Nate Begeman37efe672006-04-22 18:53:45 +0000390 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000391 printPICJumpTableEntry(MJTI, JTBBs[ii], i);
Nate Begeman37efe672006-04-22 18:53:45 +0000392 O << '\n';
393 }
394 }
395}
396
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000397void AsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
398 const MachineBasicBlock *MBB,
399 unsigned uid) const {
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000400 bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000401
402 // Use JumpTableDirective otherwise honor the entry size from the jump table
403 // info.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000404 const char *JTEntryDirective = MAI->getJumpTableDirective(isPIC);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000405 bool HadJTEntryDirective = JTEntryDirective != NULL;
406 if (!HadJTEntryDirective) {
407 JTEntryDirective = MJTI->getEntrySize() == 4 ?
Chris Lattner33adcfb2009-08-22 21:43:10 +0000408 MAI->getData32bitsDirective() : MAI->getData64bitsDirective();
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000409 }
410
411 O << JTEntryDirective << ' ';
412
413 // If we have emitted set directives for the jump table entries, print
414 // them rather than the entries themselves. If we're emitting PIC, then
415 // emit the table entries as differences between two text section labels.
416 // If we're emitting non-PIC code, then emit the entries as direct
417 // references to the target basic blocks.
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000418 if (!isPIC) {
Chris Lattner325d3dc2009-09-13 17:14:04 +0000419 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
Chris Lattner33adcfb2009-08-22 21:43:10 +0000420 } else if (MAI->getSetDirective()) {
421 O << MAI->getPrivateGlobalPrefix() << getFunctionNumber()
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000422 << '_' << uid << "_set_" << MBB->getNumber();
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000423 } else {
Chris Lattner325d3dc2009-09-13 17:14:04 +0000424 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000425 // If the arch uses custom Jump Table directives, don't calc relative to
426 // JT
427 if (!HadJTEntryDirective)
Chris Lattner33adcfb2009-08-22 21:43:10 +0000428 O << '-' << MAI->getPrivateGlobalPrefix() << "JTI"
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000429 << getFunctionNumber() << '_' << uid;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000430 }
431}
432
433
Chris Lattnered138932005-12-13 06:32:10 +0000434/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
435/// special global used by LLVM. If so, emit it and return true, otherwise
436/// do nothing and return false.
437bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000438 if (GV->getName() == "llvm.used") {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000439 if (MAI->getUsedDirective() != 0) // No need to emit this at all.
Andrew Lenharthb753a9b2007-08-22 19:33:11 +0000440 EmitLLVMUsedList(GV->getInitializer());
441 return true;
442 }
443
Chris Lattner401e10c2009-07-20 06:14:25 +0000444 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000445 if (GV->getSection() == "llvm.metadata" ||
446 GV->hasAvailableExternallyLinkage())
447 return true;
Jim Laskey78098112006-03-07 22:00:35 +0000448
449 if (!GV->hasAppendingLinkage()) return false;
450
451 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000452
Evan Cheng916d07c2007-06-04 20:39:18 +0000453 const TargetData *TD = TM.getTargetData();
454 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattnerf231c072009-03-09 05:52:15 +0000455 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000456 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000457 EmitAlignment(Align, 0);
458 EmitXXStructorList(GV->getInitializer());
459 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000460 }
461
Chris Lattnerf231c072009-03-09 05:52:15 +0000462 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000463 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000464 EmitAlignment(Align, 0);
465 EmitXXStructorList(GV->getInitializer());
466 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000467 }
468
469 return false;
470}
471
Chris Lattner33adcfb2009-08-22 21:43:10 +0000472/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesend2e51af2008-09-09 22:29:13 +0000473/// global in the specified llvm.used list for which emitUsedDirectiveFor
474/// is true, as being used with this directive.
Chris Lattnercb05af82006-09-26 03:38:18 +0000475void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000476 const char *Directive = MAI->getUsedDirective();
Chris Lattnercb05af82006-09-26 03:38:18 +0000477
Dan Gohmana119de82009-06-14 23:30:43 +0000478 // Should be an array of 'i8*'.
Chris Lattnercb05af82006-09-26 03:38:18 +0000479 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
480 if (InitList == 0) return;
481
482 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner16fe9902009-07-17 22:00:23 +0000483 const GlobalValue *GV =
484 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattner26630c12009-07-31 20:52:39 +0000485 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang)) {
Dale Johannesen61e60932008-09-03 20:34:58 +0000486 O << Directive;
487 EmitConstantValueOnly(InitList->getOperand(i));
488 O << '\n';
489 }
Chris Lattnercb05af82006-09-26 03:38:18 +0000490 }
491}
492
Chris Lattnered138932005-12-13 06:32:10 +0000493/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
494/// function pointers, ignoring the init priority.
495void AsmPrinter::EmitXXStructorList(Constant *List) {
496 // Should be an array of '{ int, void ()* }' structs. The first value is the
497 // init priority, which we ignore.
498 if (!isa<ConstantArray>(List)) return;
499 ConstantArray *InitList = cast<ConstantArray>(List);
500 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
501 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
502 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000503
504 if (CS->getOperand(1)->isNullValue())
505 return; // Found a null terminator, exit printing.
506 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000507 EmitGlobalConstant(CS->getOperand(1));
508 }
509}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000510
Jim Laskeya1a19f82006-10-17 13:41:07 +0000511/// getGlobalLinkName - Returns the asm/link name of of the specified
512/// global variable. Should be overridden by each target asm printer to
513/// generate the appropriate value.
Bill Wendling7d16e852009-04-10 00:12:49 +0000514const std::string &AsmPrinter::getGlobalLinkName(const GlobalVariable *GV,
515 std::string &LinkName) const {
Jim Laskey03742482006-11-20 20:29:06 +0000516 if (isa<Function>(GV)) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000517 LinkName += MAI->getFunctionAddrPrefix();
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000518 LinkName += Mang->getMangledName(GV);
Chris Lattner33adcfb2009-08-22 21:43:10 +0000519 LinkName += MAI->getFunctionAddrSuffix();
Jim Laskey03742482006-11-20 20:29:06 +0000520 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000521 LinkName += MAI->getGlobalVarAddrPrefix();
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000522 LinkName += Mang->getMangledName(GV);
Chris Lattner33adcfb2009-08-22 21:43:10 +0000523 LinkName += MAI->getGlobalVarAddrSuffix();
Jim Laskey03742482006-11-20 20:29:06 +0000524 }
525
Jim Laskey99e41ee2006-10-17 17:17:24 +0000526 return LinkName;
Jim Laskeya1a19f82006-10-17 13:41:07 +0000527}
528
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000529/// EmitExternalGlobal - Emit the external reference to a global variable.
530/// Should be overridden if an indirect reference should be used.
531void AsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling7d16e852009-04-10 00:12:49 +0000532 std::string GLN;
533 O << getGlobalLinkName(GV, GLN);
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000534}
535
536
537
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000538//===----------------------------------------------------------------------===//
539/// LEB 128 number encoding.
540
541/// PrintULEB128 - Print a series of hexidecimal values (separated by commas)
542/// representing an unsigned leb128 value.
543void AsmPrinter::PrintULEB128(unsigned Value) const {
Chris Lattnera64f4632008-11-10 04:35:24 +0000544 char Buffer[20];
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000545 do {
Chris Lattnera64f4632008-11-10 04:35:24 +0000546 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000547 Value >>= 7;
548 if (Value) Byte |= 0x80;
Chris Lattnera64f4632008-11-10 04:35:24 +0000549 O << "0x" << utohex_buffer(Byte, Buffer+20);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000550 if (Value) O << ", ";
551 } while (Value);
552}
553
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000554/// PrintSLEB128 - Print a series of hexidecimal values (separated by commas)
555/// representing a signed leb128 value.
556void AsmPrinter::PrintSLEB128(int Value) const {
557 int Sign = Value >> (8 * sizeof(Value) - 1);
558 bool IsMore;
Chris Lattnera64f4632008-11-10 04:35:24 +0000559 char Buffer[20];
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000560
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000561 do {
Chris Lattnera64f4632008-11-10 04:35:24 +0000562 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000563 Value >>= 7;
564 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
565 if (IsMore) Byte |= 0x80;
Chris Lattnera64f4632008-11-10 04:35:24 +0000566 O << "0x" << utohex_buffer(Byte, Buffer+20);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000567 if (IsMore) O << ", ";
568 } while (IsMore);
569}
570
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000571//===--------------------------------------------------------------------===//
572// Emission and print routines
573//
574
575/// PrintHex - Print a value as a hexidecimal value.
576///
577void AsmPrinter::PrintHex(int Value) const {
Chris Lattnerc6a13462008-11-10 04:30:26 +0000578 char Buffer[20];
Chris Lattnerc6a13462008-11-10 04:30:26 +0000579 O << "0x" << utohex_buffer(static_cast<unsigned>(Value), Buffer+20);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000580}
581
582/// EOL - Print a newline character to asm stream. If a comment is present
583/// then it will be printed first. Comments should not contain '\n'.
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000584void AsmPrinter::EOL() const {
Dan Gohmand19a53b2008-06-30 22:03:41 +0000585 O << '\n';
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000586}
Owen Anderson25995092008-07-01 21:16:27 +0000587
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000588void AsmPrinter::EOL(const std::string &Comment) const {
Evan Cheng6547e402008-07-01 23:18:29 +0000589 if (VerboseAsm && !Comment.empty()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000590 O.PadToColumn(MAI->getCommentColumn());
591 O << MAI->getCommentString()
Dan Gohmand19a53b2008-06-30 22:03:41 +0000592 << ' '
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000593 << Comment;
594 }
Dan Gohmand19a53b2008-06-30 22:03:41 +0000595 O << '\n';
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000596}
597
Owen Anderson25995092008-07-01 21:16:27 +0000598void AsmPrinter::EOL(const char* Comment) const {
Evan Cheng6547e402008-07-01 23:18:29 +0000599 if (VerboseAsm && *Comment) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000600 O.PadToColumn(MAI->getCommentColumn());
601 O << MAI->getCommentString()
Owen Anderson25995092008-07-01 21:16:27 +0000602 << ' '
603 << Comment;
604 }
605 O << '\n';
606}
607
Bill Wendlingb5abecd2009-08-29 12:17:53 +0000608static const char *DecodeDWARFEncoding(unsigned Encoding) {
609 switch (Encoding) {
610 case dwarf::DW_EH_PE_absptr:
611 return "absptr";
612 case dwarf::DW_EH_PE_omit:
613 return "omit";
614 case dwarf::DW_EH_PE_pcrel:
615 return "pcrel";
Bill Wendling0734d352009-09-09 21:26:19 +0000616 case dwarf::DW_EH_PE_udata4:
617 return "udata4";
618 case dwarf::DW_EH_PE_udata8:
619 return "udata8";
620 case dwarf::DW_EH_PE_sdata4:
621 return "sdata4";
622 case dwarf::DW_EH_PE_sdata8:
623 return "sdata8";
Bill Wendlingb5abecd2009-08-29 12:17:53 +0000624 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata4:
625 return "pcrel udata4";
626 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4:
627 return "pcrel sdata4";
628 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata8:
629 return "pcrel udata8";
630 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata8:
631 return "pcrel sdata8";
632 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata4:
633 return "indirect pcrel udata4";
634 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata4:
635 return "indirect pcrel sdata4";
636 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata8:
637 return "indirect pcrel udata8";
638 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata8:
639 return "indirect pcrel sdata8";
640 }
641
642 return 0;
643}
644
Bill Wendlingb5abecd2009-08-29 12:17:53 +0000645void AsmPrinter::EOL(const char *Comment, unsigned Encoding) const {
646 if (VerboseAsm && *Comment) {
647 O.PadToColumn(MAI->getCommentColumn());
648 O << MAI->getCommentString()
649 << ' '
650 << Comment;
651
652 if (const char *EncStr = DecodeDWARFEncoding(Encoding))
653 O << " (" << EncStr << ')';
654 }
655 O << '\n';
656}
657
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000658/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
659/// unsigned leb128 value.
660void AsmPrinter::EmitULEB128Bytes(unsigned Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000661 if (MAI->hasLEB128()) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000662 O << "\t.uleb128\t"
663 << Value;
664 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000665 O << MAI->getData8bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000666 PrintULEB128(Value);
667 }
668}
669
670/// EmitSLEB128Bytes - print an assembler byte data directive to compose a
671/// signed leb128 value.
672void AsmPrinter::EmitSLEB128Bytes(int Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000673 if (MAI->hasLEB128()) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000674 O << "\t.sleb128\t"
675 << Value;
676 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000677 O << MAI->getData8bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000678 PrintSLEB128(Value);
679 }
680}
681
682/// EmitInt8 - Emit a byte directive and value.
683///
684void AsmPrinter::EmitInt8(int Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000685 O << MAI->getData8bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000686 PrintHex(Value & 0xFF);
687}
688
689/// EmitInt16 - Emit a short directive and value.
690///
691void AsmPrinter::EmitInt16(int Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000692 O << MAI->getData16bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000693 PrintHex(Value & 0xFFFF);
694}
695
696/// EmitInt32 - Emit a long directive and value.
697///
698void AsmPrinter::EmitInt32(int Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000699 O << MAI->getData32bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000700 PrintHex(Value);
701}
702
703/// EmitInt64 - Emit a long long directive and value.
704///
705void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000706 if (MAI->getData64bitsDirective()) {
707 O << MAI->getData64bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000708 PrintHex(Value);
709 } else {
710 if (TM.getTargetData()->isBigEndian()) {
Dan Gohmand19a53b2008-06-30 22:03:41 +0000711 EmitInt32(unsigned(Value >> 32)); O << '\n';
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000712 EmitInt32(unsigned(Value));
713 } else {
Dan Gohmand19a53b2008-06-30 22:03:41 +0000714 EmitInt32(unsigned(Value)); O << '\n';
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000715 EmitInt32(unsigned(Value >> 32));
716 }
717 }
718}
719
720/// toOctal - Convert the low order bits of X into an octal digit.
721///
722static inline char toOctal(int X) {
723 return (X&7)+'0';
724}
725
726/// printStringChar - Print a char, escaped if necessary.
727///
David Greene71847812009-07-14 20:18:05 +0000728static void printStringChar(formatted_raw_ostream &O, unsigned char C) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000729 if (C == '"') {
730 O << "\\\"";
731 } else if (C == '\\') {
732 O << "\\\\";
Chris Lattnerbbfa2442009-01-22 23:38:45 +0000733 } else if (isprint((unsigned char)C)) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000734 O << C;
735 } else {
736 switch(C) {
737 case '\b': O << "\\b"; break;
738 case '\f': O << "\\f"; break;
739 case '\n': O << "\\n"; break;
740 case '\r': O << "\\r"; break;
741 case '\t': O << "\\t"; break;
742 default:
743 O << '\\';
744 O << toOctal(C >> 6);
745 O << toOctal(C >> 3);
746 O << toOctal(C >> 0);
747 break;
748 }
749 }
750}
751
752/// EmitString - Emit a string with quotes and a null terminator.
753/// Special characters are emitted properly.
754/// \literal (Eg. '\t') \endliteral
755void AsmPrinter::EmitString(const std::string &String) const {
Bill Wendlingf34be822009-04-09 23:51:31 +0000756 EmitString(String.c_str(), String.size());
757}
758
759void AsmPrinter::EmitString(const char *String, unsigned Size) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000760 const char* AscizDirective = MAI->getAscizDirective();
Anton Korobeynikovfb269cf2007-03-06 19:25:02 +0000761 if (AscizDirective)
762 O << AscizDirective;
763 else
Chris Lattner33adcfb2009-08-22 21:43:10 +0000764 O << MAI->getAsciiDirective();
Dan Gohmand19a53b2008-06-30 22:03:41 +0000765 O << '\"';
Bill Wendlingf34be822009-04-09 23:51:31 +0000766 for (unsigned i = 0; i < Size; ++i)
Chris Lattnera118c2e2009-04-08 00:28:38 +0000767 printStringChar(O, String[i]);
Anton Korobeynikovfb269cf2007-03-06 19:25:02 +0000768 if (AscizDirective)
Dan Gohmand19a53b2008-06-30 22:03:41 +0000769 O << '\"';
Anton Korobeynikovfb269cf2007-03-06 19:25:02 +0000770 else
771 O << "\\0\"";
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000772}
773
774
Dan Gohman189f80d2007-09-24 20:58:13 +0000775/// EmitFile - Emit a .file directive.
776void AsmPrinter::EmitFile(unsigned Number, const std::string &Name) const {
777 O << "\t.file\t" << Number << " \"";
Chris Lattnera118c2e2009-04-08 00:28:38 +0000778 for (unsigned i = 0, N = Name.size(); i < N; ++i)
779 printStringChar(O, Name[i]);
Dan Gohmand19a53b2008-06-30 22:03:41 +0000780 O << '\"';
Dan Gohman189f80d2007-09-24 20:58:13 +0000781}
782
783
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000784//===----------------------------------------------------------------------===//
785
Chris Lattner3a420532007-05-31 18:57:45 +0000786// EmitAlignment - Emit an alignment directive to the specified power of
787// two boundary. For example, if you pass in 3 here, you will get an 8
788// byte alignment. If a global value is specified, and if that global has
789// an explicit alignment requested, it will unconditionally override the
790// alignment request. However, if ForcedAlignBits is specified, this value
791// has final say: the ultimate alignment will be the max of ForcedAlignBits
792// and the alignment computed with NumBits and the global.
793//
794// The algorithm is:
795// Align = NumBits;
796// if (GV && GV->hasalignment) Align = GV->getalignment();
797// Align = std::max(Align, ForcedAlignBits);
798//
799void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng05548eb2008-02-29 19:36:59 +0000800 unsigned ForcedAlignBits,
801 bool UseFillExpr) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000802 if (GV && GV->getAlignment())
Chris Lattner3a420532007-05-31 18:57:45 +0000803 NumBits = Log2_32(GV->getAlignment());
804 NumBits = std::max(NumBits, ForcedAlignBits);
805
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000806 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner663c2d22009-08-19 06:12:02 +0000807
808 unsigned FillValue = 0;
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000809 if (getCurrentSection()->getKind().isText())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000810 FillValue = MAI->getTextAlignFillValue();
Chris Lattner663c2d22009-08-19 06:12:02 +0000811
812 OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
Chris Lattnerbfddc202004-08-17 19:14:29 +0000813}
David Greenea5bb59f2009-08-05 21:00:52 +0000814
Chris Lattner25045bd2005-11-21 07:51:36 +0000815/// EmitZeros - Emit a block of zeros.
Chris Lattner7d057a32004-08-17 21:38:40 +0000816///
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +0000817void AsmPrinter::EmitZeros(uint64_t NumZeros, unsigned AddrSpace) const {
Chris Lattner7d057a32004-08-17 21:38:40 +0000818 if (NumZeros) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000819 if (MAI->getZeroDirective()) {
820 O << MAI->getZeroDirective() << NumZeros;
821 if (MAI->getZeroDirectiveSuffix())
822 O << MAI->getZeroDirectiveSuffix();
Dan Gohmand19a53b2008-06-30 22:03:41 +0000823 O << '\n';
Jeff Cohenc6a057b2006-05-02 03:46:13 +0000824 } else {
Chris Lattner7d057a32004-08-17 21:38:40 +0000825 for (; NumZeros; --NumZeros)
Chris Lattner33adcfb2009-08-22 21:43:10 +0000826 O << MAI->getData8bitsDirective(AddrSpace) << "0\n";
Chris Lattner7d057a32004-08-17 21:38:40 +0000827 }
828 }
829}
830
Chris Lattnera80ba712004-08-16 23:15:22 +0000831// Print out the specified constant, without a storage class. Only the
832// constants valid in constant expressions can occur here.
Chris Lattner25045bd2005-11-21 07:51:36 +0000833void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000834 if (CV->isNullValue() || isa<UndefValue>(CV))
Dan Gohmand19a53b2008-06-30 22:03:41 +0000835 O << '0';
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000836 else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Scott Michel4315eee2008-06-03 06:18:19 +0000837 O << CI->getZExtValue();
Reid Spencerb83eb642006-10-20 07:07:24 +0000838 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Duraid Madina855a5192005-04-02 12:21:51 +0000839 // This is a constant address for a global variable or function. Use the
840 // name of the variable or function as the address value, possibly
841 // decorating it with GlobalVarAddrPrefix/Suffix or
842 // FunctionAddrPrefix/Suffix (these all default to "" )
Jim Laskey563321a2006-09-06 18:34:40 +0000843 if (isa<Function>(GV)) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000844 O << MAI->getFunctionAddrPrefix()
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000845 << Mang->getMangledName(GV)
Chris Lattner33adcfb2009-08-22 21:43:10 +0000846 << MAI->getFunctionAddrSuffix();
Jim Laskey563321a2006-09-06 18:34:40 +0000847 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000848 O << MAI->getGlobalVarAddrPrefix()
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000849 << Mang->getMangledName(GV)
Chris Lattner33adcfb2009-08-22 21:43:10 +0000850 << MAI->getGlobalVarAddrSuffix();
Jim Laskey563321a2006-09-06 18:34:40 +0000851 }
Duraid Madina855a5192005-04-02 12:21:51 +0000852 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Owen Andersona69571c2006-05-03 01:29:57 +0000853 const TargetData *TD = TM.getTargetData();
Anton Korobeynikov13b7d3d2007-02-04 23:27:42 +0000854 unsigned Opcode = CE->getOpcode();
855 switch (Opcode) {
Chris Lattnerc19ee612009-08-01 22:25:12 +0000856 case Instruction::Trunc:
857 case Instruction::ZExt:
858 case Instruction::SExt:
859 case Instruction::FPTrunc:
860 case Instruction::FPExt:
861 case Instruction::UIToFP:
862 case Instruction::SIToFP:
863 case Instruction::FPToUI:
864 case Instruction::FPToSI:
865 llvm_unreachable("FIXME: Don't support this constant cast expr");
Chris Lattnera80ba712004-08-16 23:15:22 +0000866 case Instruction::GetElementPtr: {
867 // generate a symbolic expression for the byte address
868 const Constant *ptrVal = CE->getOperand(0);
Chris Lattner7f6b9d22007-02-10 20:31:59 +0000869 SmallVector<Value*, 8> idxVec(CE->op_begin()+1, CE->op_end());
870 if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), &idxVec[0],
871 idxVec.size())) {
Chris Lattner4798bbe2009-02-05 06:55:21 +0000872 // Truncate/sext the offset to the pointer size.
873 if (TD->getPointerSizeInBits() != 64) {
874 int SExtAmount = 64-TD->getPointerSizeInBits();
875 Offset = (Offset << SExtAmount) >> SExtAmount;
876 }
877
Chris Lattner27e19212005-02-14 21:40:26 +0000878 if (Offset)
Dan Gohmand19a53b2008-06-30 22:03:41 +0000879 O << '(';
Chris Lattner25045bd2005-11-21 07:51:36 +0000880 EmitConstantValueOnly(ptrVal);
Chris Lattner27e19212005-02-14 21:40:26 +0000881 if (Offset > 0)
882 O << ") + " << Offset;
883 else if (Offset < 0)
884 O << ") - " << -Offset;
Chris Lattnera80ba712004-08-16 23:15:22 +0000885 } else {
Chris Lattner25045bd2005-11-21 07:51:36 +0000886 EmitConstantValueOnly(ptrVal);
Chris Lattnera80ba712004-08-16 23:15:22 +0000887 }
888 break;
889 }
Chris Lattnercb0a6812006-12-12 05:14:13 +0000890 case Instruction::BitCast:
891 return EmitConstantValueOnly(CE->getOperand(0));
892
Chris Lattnerddc94012006-12-12 05:18:19 +0000893 case Instruction::IntToPtr: {
894 // Handle casts to pointers by changing them into casts to the appropriate
895 // integer type. This promotes constant folding and simplifies this code.
896 Constant *Op = CE->getOperand(0);
Owen Anderson1d0be152009-08-13 21:58:54 +0000897 Op = ConstantExpr::getIntegerCast(Op, TD->getIntPtrType(CV->getContext()),
898 false/*ZExt*/);
Chris Lattnerddc94012006-12-12 05:18:19 +0000899 return EmitConstantValueOnly(Op);
900 }
901
902
903 case Instruction::PtrToInt: {
Chris Lattner4a6bd332006-07-29 01:57:19 +0000904 // Support only foldable casts to/from pointers that can be eliminated by
905 // changing the pointer to the appropriately sized integer type.
Chris Lattnera80ba712004-08-16 23:15:22 +0000906 Constant *Op = CE->getOperand(0);
Chris Lattnerddc94012006-12-12 05:18:19 +0000907 const Type *Ty = CE->getType();
Chris Lattnera80ba712004-08-16 23:15:22 +0000908
Chris Lattnerddc94012006-12-12 05:18:19 +0000909 // We can emit the pointer value into this slot if the slot is an
910 // integer slot greater or equal to the size of the pointer.
Chris Lattnerc19ee612009-08-01 22:25:12 +0000911 if (TD->getTypeAllocSize(Ty) == TD->getTypeAllocSize(Op->getType()))
Chris Lattner4a6bd332006-07-29 01:57:19 +0000912 return EmitConstantValueOnly(Op);
Nick Lewyckyd6227382008-08-08 06:34:07 +0000913
914 O << "((";
Chris Lattner25045bd2005-11-21 07:51:36 +0000915 EmitConstantValueOnly(Op);
Chris Lattnerc19ee612009-08-01 22:25:12 +0000916 APInt ptrMask =
917 APInt::getAllOnesValue(TD->getTypeAllocSizeInBits(Op->getType()));
Chris Lattnerfad86b02008-08-17 07:19:36 +0000918
919 SmallString<40> S;
920 ptrMask.toStringUnsigned(S);
Daniel Dunbardddfd342009-08-19 20:07:03 +0000921 O << ") & " << S.str() << ')';
Chris Lattnera80ba712004-08-16 23:15:22 +0000922 break;
923 }
924 case Instruction::Add:
Anton Korobeynikov13b7d3d2007-02-04 23:27:42 +0000925 case Instruction::Sub:
Anton Korobeynikovfeb88932007-12-18 20:53:41 +0000926 case Instruction::And:
927 case Instruction::Or:
928 case Instruction::Xor:
Dan Gohmand19a53b2008-06-30 22:03:41 +0000929 O << '(';
Chris Lattner25045bd2005-11-21 07:51:36 +0000930 EmitConstantValueOnly(CE->getOperand(0));
Dan Gohmand19a53b2008-06-30 22:03:41 +0000931 O << ')';
Anton Korobeynikovfeb88932007-12-18 20:53:41 +0000932 switch (Opcode) {
933 case Instruction::Add:
934 O << " + ";
935 break;
936 case Instruction::Sub:
937 O << " - ";
938 break;
939 case Instruction::And:
940 O << " & ";
941 break;
942 case Instruction::Or:
943 O << " | ";
944 break;
945 case Instruction::Xor:
946 O << " ^ ";
947 break;
948 default:
949 break;
950 }
Dan Gohmand19a53b2008-06-30 22:03:41 +0000951 O << '(';
Chris Lattner25045bd2005-11-21 07:51:36 +0000952 EmitConstantValueOnly(CE->getOperand(1));
Dan Gohmand19a53b2008-06-30 22:03:41 +0000953 O << ')';
Chris Lattnera80ba712004-08-16 23:15:22 +0000954 break;
955 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000956 llvm_unreachable("Unsupported operator!");
Chris Lattnera80ba712004-08-16 23:15:22 +0000957 }
958 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000959 llvm_unreachable("Unknown constant value!");
Chris Lattnera80ba712004-08-16 23:15:22 +0000960 }
961}
Chris Lattner1b7e2352004-08-17 06:36:49 +0000962
Chris Lattner2980cef2005-11-10 18:06:33 +0000963/// printAsCString - Print the specified array as a C compatible string, only if
Chris Lattner1b7e2352004-08-17 06:36:49 +0000964/// the predicate isString is true.
965///
David Greene71847812009-07-14 20:18:05 +0000966static void printAsCString(formatted_raw_ostream &O, const ConstantArray *CVA,
Chris Lattner2980cef2005-11-10 18:06:33 +0000967 unsigned LastElt) {
Chris Lattner1b7e2352004-08-17 06:36:49 +0000968 assert(CVA->isString() && "Array is not string compatible!");
969
Dan Gohmand19a53b2008-06-30 22:03:41 +0000970 O << '\"';
Chris Lattner2980cef2005-11-10 18:06:33 +0000971 for (unsigned i = 0; i != LastElt; ++i) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000972 unsigned char C =
Reid Spencerb83eb642006-10-20 07:07:24 +0000973 (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getZExtValue();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000974 printStringChar(O, C);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000975 }
Dan Gohmand19a53b2008-06-30 22:03:41 +0000976 O << '\"';
Chris Lattner1b7e2352004-08-17 06:36:49 +0000977}
978
Jeff Cohenc884db42006-05-02 01:16:28 +0000979/// EmitString - Emit a zero-byte-terminated string constant.
980///
981void AsmPrinter::EmitString(const ConstantArray *CVA) const {
982 unsigned NumElts = CVA->getNumOperands();
Chris Lattner33adcfb2009-08-22 21:43:10 +0000983 if (MAI->getAscizDirective() && NumElts &&
Reid Spencerb83eb642006-10-20 07:07:24 +0000984 cast<ConstantInt>(CVA->getOperand(NumElts-1))->getZExtValue() == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000985 O << MAI->getAscizDirective();
Jeff Cohenc884db42006-05-02 01:16:28 +0000986 printAsCString(O, CVA, NumElts-1);
987 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000988 O << MAI->getAsciiDirective();
Jeff Cohenc884db42006-05-02 01:16:28 +0000989 printAsCString(O, CVA, NumElts);
990 }
Dan Gohmand19a53b2008-06-30 22:03:41 +0000991 O << '\n';
Jeff Cohenc884db42006-05-02 01:16:28 +0000992}
993
Sanjiv Guptad3d96572009-04-28 16:34:20 +0000994void AsmPrinter::EmitGlobalConstantArray(const ConstantArray *CVA,
995 unsigned AddrSpace) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000996 if (CVA->isString()) {
997 EmitString(CVA);
998 } else { // Not a string. Print the values in successive locations
999 for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
Sanjiv Guptad3d96572009-04-28 16:34:20 +00001000 EmitGlobalConstant(CVA->getOperand(i), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001001 }
1002}
1003
1004void AsmPrinter::EmitGlobalConstantVector(const ConstantVector *CP) {
1005 const VectorType *PTy = CP->getType();
1006
1007 for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
1008 EmitGlobalConstant(CP->getOperand(I));
1009}
1010
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001011void AsmPrinter::EmitGlobalConstantStruct(const ConstantStruct *CVS,
1012 unsigned AddrSpace) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001013 // Print the fields in successive locations. Pad to align if needed!
1014 const TargetData *TD = TM.getTargetData();
Duncan Sands777d2302009-05-09 07:06:46 +00001015 unsigned Size = TD->getTypeAllocSize(CVS->getType());
Dan Gohman00d448a2008-12-22 21:14:27 +00001016 const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
1017 uint64_t sizeSoFar = 0;
1018 for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
1019 const Constant* field = CVS->getOperand(i);
1020
1021 // Check if padding is needed and insert one or more 0s.
Duncan Sands777d2302009-05-09 07:06:46 +00001022 uint64_t fieldSize = TD->getTypeAllocSize(field->getType());
Dan Gohman00d448a2008-12-22 21:14:27 +00001023 uint64_t padSize = ((i == e-1 ? Size : cvsLayout->getElementOffset(i+1))
1024 - cvsLayout->getElementOffset(i)) - fieldSize;
1025 sizeSoFar += fieldSize + padSize;
1026
1027 // Now print the actual field value.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001028 EmitGlobalConstant(field, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001029
1030 // Insert padding - this may include padding to increase the size of the
1031 // current field up to the ABI size (if the struct is not packed) as well
1032 // as padding to ensure that the next field starts at the right offset.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001033 EmitZeros(padSize, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001034 }
1035 assert(sizeSoFar == cvsLayout->getSizeInBytes() &&
1036 "Layout of constant struct may be incorrect!");
1037}
1038
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001039void AsmPrinter::EmitGlobalConstantFP(const ConstantFP *CFP,
1040 unsigned AddrSpace) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001041 // FP Constants are printed as integer constants to avoid losing
1042 // precision...
Owen Anderson1d0be152009-08-13 21:58:54 +00001043 LLVMContext &Context = CFP->getContext();
Dan Gohman00d448a2008-12-22 21:14:27 +00001044 const TargetData *TD = TM.getTargetData();
Owen Anderson1d0be152009-08-13 21:58:54 +00001045 if (CFP->getType() == Type::getDoubleTy(Context)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001046 double Val = CFP->getValueAPF().convertToDouble(); // for comment only
1047 uint64_t i = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Chris Lattner33adcfb2009-08-22 21:43:10 +00001048 if (MAI->getData64bitsDirective(AddrSpace)) {
1049 O << MAI->getData64bitsDirective(AddrSpace) << i;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001050 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001051 O.PadToColumn(MAI->getCommentColumn());
1052 O << MAI->getCommentString() << " double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001053 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001054 O << '\n';
1055 } else if (TD->isBigEndian()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001056 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001057 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001058 O.PadToColumn(MAI->getCommentColumn());
1059 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001060 << " most significant word of double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001061 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001062 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001063 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001064 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001065 O.PadToColumn(MAI->getCommentColumn());
1066 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001067 << " least significant word of double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001068 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001069 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001070 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001071 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001072 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001073 O.PadToColumn(MAI->getCommentColumn());
1074 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001075 << " least significant word of double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001076 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001077 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001078 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001079 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001080 O.PadToColumn(MAI->getCommentColumn());
1081 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001082 << " most significant word of double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001083 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001084 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001085 }
1086 return;
Owen Anderson1d0be152009-08-13 21:58:54 +00001087 } else if (CFP->getType() == Type::getFloatTy(Context)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001088 float Val = CFP->getValueAPF().convertToFloat(); // for comment only
Chris Lattner33adcfb2009-08-22 21:43:10 +00001089 O << MAI->getData32bitsDirective(AddrSpace)
Evan Chengf1c0ae92009-03-24 00:17:40 +00001090 << CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Dan Gohmana12e9d72009-08-12 18:32:22 +00001091 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001092 O.PadToColumn(MAI->getCommentColumn());
1093 O << MAI->getCommentString() << " float " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001094 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001095 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001096 return;
Owen Anderson1d0be152009-08-13 21:58:54 +00001097 } else if (CFP->getType() == Type::getX86_FP80Ty(Context)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001098 // all long double variants are printed as hex
1099 // api needed to prevent premature destruction
1100 APInt api = CFP->getValueAPF().bitcastToAPInt();
1101 const uint64_t *p = api.getRawData();
1102 // Convert to double so we can print the approximate val as a comment.
1103 APFloat DoubleVal = CFP->getValueAPF();
1104 bool ignored;
1105 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
1106 &ignored);
1107 if (TD->isBigEndian()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001108 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[1]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001109 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001110 O.PadToColumn(MAI->getCommentColumn());
1111 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001112 << " most significant halfword of x86_fp80 ~"
Evan Chengf1c0ae92009-03-24 00:17:40 +00001113 << DoubleVal.convertToDouble();
Dan Gohmana12e9d72009-08-12 18:32:22 +00001114 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001115 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001116 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 48);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001117 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001118 O.PadToColumn(MAI->getCommentColumn());
1119 O << MAI->getCommentString() << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001120 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001121 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001122 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001123 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001124 O.PadToColumn(MAI->getCommentColumn());
1125 O << MAI->getCommentString() << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001126 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001127 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001128 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 16);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001129 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001130 O.PadToColumn(MAI->getCommentColumn());
1131 O << MAI->getCommentString() << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001132 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001133 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001134 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001135 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001136 O.PadToColumn(MAI->getCommentColumn());
1137 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001138 << " least significant halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001139 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001140 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001141 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001142 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001143 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001144 O.PadToColumn(MAI->getCommentColumn());
1145 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001146 << " least significant halfword of x86_fp80 ~"
Evan Chengf1c0ae92009-03-24 00:17:40 +00001147 << DoubleVal.convertToDouble();
Dan Gohmana12e9d72009-08-12 18:32:22 +00001148 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001149 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001150 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 16);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001151 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001152 O.PadToColumn(MAI->getCommentColumn());
1153 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001154 << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001155 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001156 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001157 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001158 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001159 O.PadToColumn(MAI->getCommentColumn());
1160 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001161 << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001162 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001163 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001164 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 48);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001165 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001166 O.PadToColumn(MAI->getCommentColumn());
1167 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001168 << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001169 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001170 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001171 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[1]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001172 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001173 O.PadToColumn(MAI->getCommentColumn());
1174 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001175 << " most significant halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001176 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001177 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001178 }
Owen Anderson1d0be152009-08-13 21:58:54 +00001179 EmitZeros(TD->getTypeAllocSize(Type::getX86_FP80Ty(Context)) -
1180 TD->getTypeStoreSize(Type::getX86_FP80Ty(Context)), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001181 return;
Owen Anderson1d0be152009-08-13 21:58:54 +00001182 } else if (CFP->getType() == Type::getPPC_FP128Ty(Context)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001183 // all long double variants are printed as hex
1184 // api needed to prevent premature destruction
1185 APInt api = CFP->getValueAPF().bitcastToAPInt();
1186 const uint64_t *p = api.getRawData();
1187 if (TD->isBigEndian()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001188 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001189 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001190 O.PadToColumn(MAI->getCommentColumn());
1191 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001192 << " most significant word of ppc_fp128";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001193 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001194 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001195 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001196 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001197 O.PadToColumn(MAI->getCommentColumn());
1198 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001199 << " next word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001200 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001201 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001202 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001203 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001204 O.PadToColumn(MAI->getCommentColumn());
1205 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001206 << " next word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001207 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001208 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001209 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001210 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001211 O.PadToColumn(MAI->getCommentColumn());
1212 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001213 << " least significant word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001214 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001215 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001216 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001217 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001218 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001219 O.PadToColumn(MAI->getCommentColumn());
1220 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001221 << " least significant word of ppc_fp128";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001222 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001223 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001224 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001225 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001226 O.PadToColumn(MAI->getCommentColumn());
1227 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001228 << " next word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001229 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001230 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001231 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001232 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001233 O.PadToColumn(MAI->getCommentColumn());
1234 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001235 << " next word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001236 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001237 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001238 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001239 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001240 O.PadToColumn(MAI->getCommentColumn());
1241 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001242 << " most significant word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001243 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001244 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001245 }
1246 return;
Torok Edwinc23197a2009-07-14 16:55:14 +00001247 } else llvm_unreachable("Floating point constant type not handled");
Dan Gohman00d448a2008-12-22 21:14:27 +00001248}
1249
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001250void AsmPrinter::EmitGlobalConstantLargeInt(const ConstantInt *CI,
1251 unsigned AddrSpace) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001252 const TargetData *TD = TM.getTargetData();
1253 unsigned BitWidth = CI->getBitWidth();
1254 assert(isPowerOf2_32(BitWidth) &&
1255 "Non-power-of-2-sized integers not handled!");
1256
1257 // We don't expect assemblers to support integer data directives
1258 // for more than 64 bits, so we emit the data in at most 64-bit
1259 // quantities at a time.
1260 const uint64_t *RawData = CI->getValue().getRawData();
1261 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
1262 uint64_t Val;
1263 if (TD->isBigEndian())
1264 Val = RawData[e - i - 1];
1265 else
1266 Val = RawData[i];
1267
Chris Lattner33adcfb2009-08-22 21:43:10 +00001268 if (MAI->getData64bitsDirective(AddrSpace))
1269 O << MAI->getData64bitsDirective(AddrSpace) << Val << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001270 else if (TD->isBigEndian()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001271 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001272 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001273 O.PadToColumn(MAI->getCommentColumn());
1274 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001275 << " most significant half of i64 " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001276 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001277 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001278 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001279 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001280 O.PadToColumn(MAI->getCommentColumn());
1281 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001282 << " least significant half of i64 " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001283 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001284 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001285 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001286 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001287 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001288 O.PadToColumn(MAI->getCommentColumn());
1289 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001290 << " least significant half of i64 " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001291 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001292 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001293 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001294 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001295 O.PadToColumn(MAI->getCommentColumn());
1296 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001297 << " most significant half of i64 " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001298 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001299 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001300 }
1301 }
1302}
1303
Chris Lattner25045bd2005-11-21 07:51:36 +00001304/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001305void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Owen Andersona69571c2006-05-03 01:29:57 +00001306 const TargetData *TD = TM.getTargetData();
Dan Gohman00d448a2008-12-22 21:14:27 +00001307 const Type *type = CV->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00001308 unsigned Size = TD->getTypeAllocSize(type);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001309
Chris Lattnerbd1d3822004-10-16 18:19:26 +00001310 if (CV->isNullValue() || isa<UndefValue>(CV)) {
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001311 EmitZeros(Size, AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001312 return;
1313 } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
Sanjiv Guptad3d96572009-04-28 16:34:20 +00001314 EmitGlobalConstantArray(CVA , AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001315 return;
1316 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001317 EmitGlobalConstantStruct(CVS, AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001318 return;
1319 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001320 EmitGlobalConstantFP(CFP, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001321 return;
1322 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1323 // Small integers are handled below; large integers are handled here.
1324 if (Size > 4) {
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001325 EmitGlobalConstantLargeInt(CI, AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001326 return;
1327 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00001328 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001329 EmitGlobalConstantVector(CP);
Nate Begeman8cfa57b2005-12-06 06:18:55 +00001330 return;
Chris Lattner1b7e2352004-08-17 06:36:49 +00001331 }
1332
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001333 printDataDirective(type, AddrSpace);
Chris Lattner25045bd2005-11-21 07:51:36 +00001334 EmitConstantValueOnly(CV);
Evan Chengf1c0ae92009-03-24 00:17:40 +00001335 if (VerboseAsm) {
1336 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1337 SmallString<40> S;
1338 CI->getValue().toStringUnsigned(S, 16);
Chris Lattner33adcfb2009-08-22 21:43:10 +00001339 O.PadToColumn(MAI->getCommentColumn());
1340 O << MAI->getCommentString() << " 0x" << S.str();
Evan Chengf1c0ae92009-03-24 00:17:40 +00001341 }
Scott Micheleefc8452008-06-03 15:39:51 +00001342 }
Dan Gohmand19a53b2008-06-30 22:03:41 +00001343 O << '\n';
Chris Lattner1b7e2352004-08-17 06:36:49 +00001344}
Chris Lattner0264d1a2006-01-27 02:10:10 +00001345
Chris Lattnerfad86b02008-08-17 07:19:36 +00001346void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001347 // Target doesn't support this yet!
Torok Edwinc23197a2009-07-14 16:55:14 +00001348 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Evan Chengd6594ae2006-09-12 21:00:35 +00001349}
1350
Chris Lattner3ce9b672006-09-26 23:59:50 +00001351/// PrintSpecial - Print information related to the specified machine instr
1352/// that is independent of the operand, and may be independent of the instr
1353/// itself. This can be useful for portably encoding the comment character
1354/// or other bits of target-specific knowledge into the asmstrings. The
1355/// syntax used is ${:comment}. Targets can override this to add support
1356/// for their own strange codes.
Chris Lattner3e0cc262009-03-10 05:37:13 +00001357void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001358 if (!strcmp(Code, "private")) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001359 O << MAI->getPrivateGlobalPrefix();
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001360 } else if (!strcmp(Code, "comment")) {
Evan Chengf1c0ae92009-03-24 00:17:40 +00001361 if (VerboseAsm)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001362 O << MAI->getCommentString();
Chris Lattner3ce9b672006-09-26 23:59:50 +00001363 } else if (!strcmp(Code, "uid")) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001364 // Comparing the address of MI isn't sufficient, because machineinstrs may
1365 // be allocated to the same address across functions.
1366 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1367
Owen Andersonbd58edf2009-06-24 22:28:12 +00001368 // If this is a new LastFn instruction, bump the counter.
1369 if (LastMI != MI || LastFn != ThisF) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001370 ++Counter;
1371 LastMI = MI;
Owen Andersonbd58edf2009-06-24 22:28:12 +00001372 LastFn = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001373 }
Chris Lattner3ce9b672006-09-26 23:59:50 +00001374 O << Counter;
1375 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001376 std::string msg;
1377 raw_string_ostream Msg(msg);
1378 Msg << "Unknown special formatter '" << Code
Bill Wendlinge8156192006-12-07 01:30:32 +00001379 << "' for machine instr: " << *MI;
Torok Edwin7d696d82009-07-11 13:10:19 +00001380 llvm_report_error(Msg.str());
Chris Lattner3ce9b672006-09-26 23:59:50 +00001381 }
1382}
1383
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001384/// processDebugLoc - Processes the debug information of each machine
1385/// instruction's DebugLoc.
1386void AsmPrinter::processDebugLoc(DebugLoc DL) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001387 if (!MAI || !DW)
Chris Lattnerd2503292009-08-05 04:09:18 +00001388 return;
1389
Chris Lattner33adcfb2009-08-22 21:43:10 +00001390 if (MAI->doesSupportDebugInformation() && DW->ShouldEmitDwarfDebug()) {
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001391 if (!DL.isUnknown()) {
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001392 DebugLocTuple CurDLT = MF->getDebugLocTuple(DL);
1393
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001394 if (CurDLT.CompileUnit != 0 && PrevDLT != CurDLT) {
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001395 printLabel(DW->RecordSourceLine(CurDLT.Line, CurDLT.Col,
1396 DICompileUnit(CurDLT.CompileUnit)));
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001397 O << '\n';
1398 }
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001399
1400 PrevDLT = CurDLT;
1401 }
1402 }
1403}
Chris Lattner3ce9b672006-09-26 23:59:50 +00001404
Chris Lattner0264d1a2006-01-27 02:10:10 +00001405/// printInlineAsm - This method formats and prints the specified machine
1406/// instruction that is an inline asm.
1407void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001408 unsigned NumOperands = MI->getNumOperands();
1409
1410 // Count the number of register definitions.
1411 unsigned NumDefs = 0;
Dan Gohmand735b802008-10-03 15:45:36 +00001412 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Chris Lattner67942f52006-09-05 20:02:51 +00001413 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001414 assert(NumDefs != NumOperands-1 && "No asm string?");
1415
Dan Gohmand735b802008-10-03 15:45:36 +00001416 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +00001417
1418 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001419 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +00001420
Dale Johannesenba2a0b92008-01-29 02:21:21 +00001421 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1422 // These are useful to see where empty asm's wound up.
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001423 if (AsmStr[0] == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001424 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1425 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001426 return;
1427 }
1428
Chris Lattner33adcfb2009-08-22 21:43:10 +00001429 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001430
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001431 // The variant of the current asmprinter.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001432 int AsmPrinterVariant = MAI->getAssemblerDialect();
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001433
Chris Lattner66099132006-02-01 22:41:11 +00001434 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1435 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +00001436
Chris Lattner66099132006-02-01 22:41:11 +00001437 while (*LastEmitted) {
1438 switch (*LastEmitted) {
1439 default: {
1440 // Not a special case, emit the string section literally.
1441 const char *LiteralEnd = LastEmitted+1;
1442 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +00001443 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +00001444 ++LiteralEnd;
1445 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1446 O.write(LastEmitted, LiteralEnd-LastEmitted);
1447 LastEmitted = LiteralEnd;
1448 break;
1449 }
Chris Lattner1c059972006-05-05 21:47:05 +00001450 case '\n':
1451 ++LastEmitted; // Consume newline character.
Dan Gohmand19a53b2008-06-30 22:03:41 +00001452 O << '\n'; // Indent code with newline.
Chris Lattner1c059972006-05-05 21:47:05 +00001453 break;
Chris Lattner66099132006-02-01 22:41:11 +00001454 case '$': {
1455 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001456 bool Done = true;
1457
1458 // Handle escapes.
1459 switch (*LastEmitted) {
1460 default: Done = false; break;
1461 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +00001462 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1463 O << '$';
1464 ++LastEmitted; // Consume second '$' character.
1465 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001466 case '(': // $( -> same as GCC's { character.
1467 ++LastEmitted; // Consume '(' character.
1468 if (CurVariant != -1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001469 llvm_report_error("Nested variants found in inline asm string: '"
1470 + std::string(AsmStr) + "'");
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001471 }
1472 CurVariant = 0; // We're in the first variant now.
1473 break;
1474 case '|':
1475 ++LastEmitted; // consume '|' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001476 if (CurVariant == -1)
1477 O << '|'; // this is gcc's behavior for | outside a variant
1478 else
1479 ++CurVariant; // We're in the next variant.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001480 break;
1481 case ')': // $) -> same as GCC's } char.
1482 ++LastEmitted; // consume ')' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001483 if (CurVariant == -1)
1484 O << '}'; // this is gcc's behavior for } outside a variant
1485 else
1486 CurVariant = -1;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001487 break;
Chris Lattner66099132006-02-01 22:41:11 +00001488 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001489 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +00001490
1491 bool HasCurlyBraces = false;
1492 if (*LastEmitted == '{') { // ${variable}
1493 ++LastEmitted; // Consume '{' character.
1494 HasCurlyBraces = true;
1495 }
1496
Chris Lattner3e0cc262009-03-10 05:37:13 +00001497 // If we have ${:foo}, then this is not a real operand reference, it is a
1498 // "magic" string reference, just like in .td files. Arrange to call
1499 // PrintSpecial.
1500 if (HasCurlyBraces && *LastEmitted == ':') {
1501 ++LastEmitted;
1502 const char *StrStart = LastEmitted;
1503 const char *StrEnd = strchr(StrStart, '}');
1504 if (StrEnd == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001505 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1506 + std::string(AsmStr) + "'");
Chris Lattner3e0cc262009-03-10 05:37:13 +00001507 }
1508
1509 std::string Val(StrStart, StrEnd);
1510 PrintSpecial(MI, Val.c_str());
1511 LastEmitted = StrEnd+1;
1512 break;
1513 }
1514
Chris Lattner66099132006-02-01 22:41:11 +00001515 const char *IDStart = LastEmitted;
1516 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +00001517 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +00001518 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1519 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001520 llvm_report_error("Bad $ operand number in inline asm string: '"
1521 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001522 }
1523 LastEmitted = IDEnd;
1524
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001525 char Modifier[2] = { 0, 0 };
1526
Chris Lattner66099132006-02-01 22:41:11 +00001527 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001528 // If we have curly braces, check for a modifier character. This
1529 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1530 if (*LastEmitted == ':') {
1531 ++LastEmitted; // Consume ':' character.
1532 if (*LastEmitted == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001533 llvm_report_error("Bad ${:} expression in inline asm string: '"
1534 + std::string(AsmStr) + "'");
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001535 }
1536
1537 Modifier[0] = *LastEmitted;
1538 ++LastEmitted; // Consume modifier character.
1539 }
1540
Chris Lattner66099132006-02-01 22:41:11 +00001541 if (*LastEmitted != '}') {
Torok Edwin7d696d82009-07-11 13:10:19 +00001542 llvm_report_error("Bad ${} expression in inline asm string: '"
1543 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001544 }
1545 ++LastEmitted; // Consume '}' character.
1546 }
1547
1548 if ((unsigned)Val >= NumOperands-1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001549 llvm_report_error("Invalid $ operand number in inline asm string: '"
1550 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001551 }
1552
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001553 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001554 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001555 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1556 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001557
1558 bool Error = false;
1559
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001560 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001561 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001562 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner9e330492007-12-30 20:50:28 +00001563 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng697cbbf2009-03-20 18:03:34 +00001564 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001565 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001566
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001567 if (OpNo >= MI->getNumOperands()) {
1568 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001569 } else {
Chris Lattner9e330492007-12-30 20:50:28 +00001570 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001571 ++OpNo; // Skip over the ID number.
1572
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001573 if (Modifier[0]=='l') // labels are target independent
Chris Lattner325d3dc2009-09-13 17:14:04 +00001574 GetMBBSymbol(MI->getOperand(OpNo).getMBB()
1575 ->getNumber())->print(O, MAI);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001576 else {
1577 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen86b49f82008-09-24 01:07:17 +00001578 if ((OpFlags & 7) == 4) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001579 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1580 Modifier[0] ? Modifier : 0);
1581 } else {
1582 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1583 Modifier[0] ? Modifier : 0);
1584 }
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001585 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001586 }
1587 if (Error) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001588 std::string msg;
1589 raw_string_ostream Msg(msg);
1590 Msg << "Invalid operand found in inline asm: '"
Bill Wendlinge8156192006-12-07 01:30:32 +00001591 << AsmStr << "'\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00001592 MI->print(Msg);
1593 llvm_report_error(Msg.str());
Chris Lattner66099132006-02-01 22:41:11 +00001594 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001595 }
Chris Lattner66099132006-02-01 22:41:11 +00001596 break;
1597 }
Chris Lattner66099132006-02-01 22:41:11 +00001598 }
1599 }
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001600 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
Chris Lattner66099132006-02-01 22:41:11 +00001601}
1602
Evan Chengda47e6e2008-03-15 00:03:38 +00001603/// printImplicitDef - This method prints the specified machine instruction
1604/// that is an implicit def.
1605void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001606 if (!VerboseAsm) return;
1607 O.PadToColumn(MAI->getCommentColumn());
1608 O << MAI->getCommentString() << " implicit-def: "
1609 << TRI->getAsmName(MI->getOperand(0).getReg());
Evan Chengda47e6e2008-03-15 00:03:38 +00001610}
1611
Jim Laskey1ee29252007-01-26 14:34:52 +00001612/// printLabel - This method prints a local label used by debug and
1613/// exception handling tables.
1614void AsmPrinter::printLabel(const MachineInstr *MI) const {
Dan Gohman528bc022008-07-01 00:16:26 +00001615 printLabel(MI->getOperand(0).getImm());
Jim Laskey1ee29252007-01-26 14:34:52 +00001616}
1617
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001618void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001619 O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001620}
1621
Chris Lattner66099132006-02-01 22:41:11 +00001622/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1623/// instruction, using the specified assembler variant. Targets should
1624/// overried this to format as appropriate.
1625bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001626 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001627 // Target doesn't support this yet!
1628 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001629}
Chris Lattnerdd260332006-02-24 20:21:58 +00001630
1631bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1632 unsigned AsmVariant,
1633 const char *ExtraCode) {
1634 // Target doesn't support this yet!
1635 return true;
1636}
Nate Begeman37efe672006-04-22 18:53:45 +00001637
Chris Lattner7cb384d2009-09-12 23:02:08 +00001638MCSymbol *AsmPrinter::GetMBBSymbol(unsigned MBBID) const {
1639 SmallString<60> Name;
1640 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "BB"
1641 << getFunctionNumber() << '_' << MBBID;
1642
1643 return OutContext.GetOrCreateSymbol(Name.str());
1644}
1645
1646
Chris Lattner70a54c02009-09-13 18:25:37 +00001647/// EmitBasicBlockStart - This method prints the label for the specified
1648/// MachineBasicBlock, an alignment (if present) and a comment describing
1649/// it if appropriate.
1650void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB,
1651 bool PrintColon) const {
1652 if (unsigned Align = MBB->getAlignment())
1653 EmitAlignment(Log2_32(Align));
Evan Chengfb8075d2008-02-28 00:43:03 +00001654
Chris Lattner7cb384d2009-09-12 23:02:08 +00001655 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
1656
Chris Lattner70a54c02009-09-13 18:25:37 +00001657 if (PrintColon)
Nate Begemancdf38c42006-05-02 05:37:32 +00001658 O << ':';
Chris Lattner70a54c02009-09-13 18:25:37 +00001659
1660 if (VerboseAsm) {
Dan Gohmane45da0d2009-08-12 18:47:05 +00001661 if (const BasicBlock *BB = MBB->getBasicBlock())
1662 if (BB->hasName()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001663 O.PadToColumn(MAI->getCommentColumn());
1664 O << MAI->getCommentString() << ' ';
Dan Gohman46d50562009-08-12 20:56:56 +00001665 WriteAsOperand(O, BB, /*PrintType=*/false);
Dan Gohmane45da0d2009-08-12 18:47:05 +00001666 }
David Greeneb71d1b22009-08-10 16:38:07 +00001667
Chris Lattner70a54c02009-09-13 18:25:37 +00001668 EmitComments(*MBB);
David Greeneb71d1b22009-08-10 16:38:07 +00001669 }
Nate Begeman37efe672006-04-22 18:53:45 +00001670}
Nate Begeman52a51e382006-08-12 21:29:52 +00001671
Evan Chengcc415862007-11-09 01:32:10 +00001672/// printPICJumpTableSetLabel - This method prints a set label for the
1673/// specified MachineBasicBlock for a jumptable entry.
1674void AsmPrinter::printPICJumpTableSetLabel(unsigned uid,
1675 const MachineBasicBlock *MBB) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001676 if (!MAI->getSetDirective())
Nate Begeman52a51e382006-08-12 21:29:52 +00001677 return;
1678
Chris Lattner33adcfb2009-08-22 21:43:10 +00001679 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
Evan Cheng347d39f2007-10-14 05:57:21 +00001680 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Chris Lattner325d3dc2009-09-13 17:14:04 +00001681 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
Chris Lattner33adcfb2009-08-22 21:43:10 +00001682 O << '-' << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Evan Cheng347d39f2007-10-14 05:57:21 +00001683 << '_' << uid << '\n';
Nate Begeman52a51e382006-08-12 21:29:52 +00001684}
Evan Chengd6594ae2006-09-12 21:00:35 +00001685
Evan Chengcc415862007-11-09 01:32:10 +00001686void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
1687 const MachineBasicBlock *MBB) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001688 if (!MAI->getSetDirective())
Evan Cheng41349c12006-11-01 09:23:08 +00001689 return;
1690
Chris Lattner33adcfb2009-08-22 21:43:10 +00001691 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
Evan Cheng347d39f2007-10-14 05:57:21 +00001692 << getFunctionNumber() << '_' << uid << '_' << uid2
1693 << "_set_" << MBB->getNumber() << ',';
Chris Lattner325d3dc2009-09-13 17:14:04 +00001694 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
Chris Lattner33adcfb2009-08-22 21:43:10 +00001695 O << '-' << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Evan Cheng347d39f2007-10-14 05:57:21 +00001696 << '_' << uid << '_' << uid2 << '\n';
Evan Cheng41349c12006-11-01 09:23:08 +00001697}
1698
Evan Chengd6594ae2006-09-12 21:00:35 +00001699/// printDataDirective - This method prints the asm directive for the
1700/// specified type.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001701void AsmPrinter::printDataDirective(const Type *type, unsigned AddrSpace) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001702 const TargetData *TD = TM.getTargetData();
1703 switch (type->getTypeID()) {
Chris Lattnerf1cfea22009-07-15 04:42:49 +00001704 case Type::FloatTyID: case Type::DoubleTyID:
1705 case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID:
1706 assert(0 && "Should have already output floating point constant.");
1707 default:
1708 assert(0 && "Can't handle printing this type of thing");
Reid Spencera54b7cb2007-01-12 07:05:14 +00001709 case Type::IntegerTyID: {
1710 unsigned BitWidth = cast<IntegerType>(type)->getBitWidth();
1711 if (BitWidth <= 8)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001712 O << MAI->getData8bitsDirective(AddrSpace);
Reid Spencera54b7cb2007-01-12 07:05:14 +00001713 else if (BitWidth <= 16)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001714 O << MAI->getData16bitsDirective(AddrSpace);
Reid Spencera54b7cb2007-01-12 07:05:14 +00001715 else if (BitWidth <= 32)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001716 O << MAI->getData32bitsDirective(AddrSpace);
Reid Spencera54b7cb2007-01-12 07:05:14 +00001717 else if (BitWidth <= 64) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001718 assert(MAI->getData64bitsDirective(AddrSpace) &&
Reid Spencera54b7cb2007-01-12 07:05:14 +00001719 "Target cannot handle 64-bit constant exprs!");
Chris Lattner33adcfb2009-08-22 21:43:10 +00001720 O << MAI->getData64bitsDirective(AddrSpace);
Dan Gohman82f94f12008-09-08 16:40:13 +00001721 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00001722 llvm_unreachable("Target cannot handle given data directive width!");
Reid Spencera54b7cb2007-01-12 07:05:14 +00001723 }
Evan Chengd6594ae2006-09-12 21:00:35 +00001724 break;
Reid Spencera54b7cb2007-01-12 07:05:14 +00001725 }
Evan Chengd6594ae2006-09-12 21:00:35 +00001726 case Type::PointerTyID:
1727 if (TD->getPointerSize() == 8) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001728 assert(MAI->getData64bitsDirective(AddrSpace) &&
Evan Chengd6594ae2006-09-12 21:00:35 +00001729 "Target cannot handle 64-bit pointer exprs!");
Chris Lattner33adcfb2009-08-22 21:43:10 +00001730 O << MAI->getData64bitsDirective(AddrSpace);
Sanjiv Guptafcc6f152009-01-22 10:14:21 +00001731 } else if (TD->getPointerSize() == 2) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001732 O << MAI->getData16bitsDirective(AddrSpace);
Sanjiv Guptafcc6f152009-01-22 10:14:21 +00001733 } else if (TD->getPointerSize() == 1) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001734 O << MAI->getData8bitsDirective(AddrSpace);
Reid Spencera54b7cb2007-01-12 07:05:14 +00001735 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001736 O << MAI->getData32bitsDirective(AddrSpace);
Evan Chengd6594ae2006-09-12 21:00:35 +00001737 }
Evan Chengd6594ae2006-09-12 21:00:35 +00001738 break;
Evan Chengd6594ae2006-09-12 21:00:35 +00001739 }
1740}
Dale Johannesen4c3a5f82007-02-16 01:54:53 +00001741
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +00001742void AsmPrinter::printVisibility(const std::string& Name,
1743 unsigned Visibility) const {
1744 if (Visibility == GlobalValue::HiddenVisibility) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001745 if (const char *Directive = MAI->getHiddenDirective())
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +00001746 O << Directive << Name << '\n';
1747 } else if (Visibility == GlobalValue::ProtectedVisibility) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001748 if (const char *Directive = MAI->getProtectedDirective())
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +00001749 O << Directive << Name << '\n';
1750 }
1751}
Gordon Henriksenc317a602008-08-17 12:08:44 +00001752
Anton Korobeynikov7751ad92008-11-22 16:15:34 +00001753void AsmPrinter::printOffset(int64_t Offset) const {
1754 if (Offset > 0)
1755 O << '+' << Offset;
1756 else if (Offset < 0)
1757 O << Offset;
1758}
1759
Daniel Dunbar575327b2009-08-14 03:43:57 +00001760void AsmPrinter::printMCInst(const MCInst *MI) {
1761 llvm_unreachable("MCInst printing unavailable on this target!");
1762}
1763
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001764GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1765 if (!S->usesMetadata())
Gordon Henriksenc317a602008-08-17 12:08:44 +00001766 return 0;
1767
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001768 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001769 if (GCPI != GCMetadataPrinters.end())
1770 return GCPI->second;
1771
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001772 const char *Name = S->getName().c_str();
Gordon Henriksenc317a602008-08-17 12:08:44 +00001773
1774 for (GCMetadataPrinterRegistry::iterator
1775 I = GCMetadataPrinterRegistry::begin(),
1776 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1777 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001778 GCMetadataPrinter *GMP = I->instantiate();
1779 GMP->S = S;
1780 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1781 return GMP;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001782 }
1783
Chris Lattner103289e2009-08-23 07:19:13 +00001784 errs() << "no GCMetadataPrinter registered for GC: " << Name << "\n";
Torok Edwinc23197a2009-07-14 16:55:14 +00001785 llvm_unreachable(0);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001786}
David Greene014700c2009-07-13 20:25:48 +00001787
1788/// EmitComments - Pretty-print comments for instructions
Chris Lattner5f51cd02009-08-07 23:42:01 +00001789void AsmPrinter::EmitComments(const MachineInstr &MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001790 assert(VerboseAsm && !MI.getDebugLoc().isUnknown());
Chris Lattner5f51cd02009-08-07 23:42:01 +00001791
1792 DebugLocTuple DLT = MF->getDebugLocTuple(MI.getDebugLoc());
David Greene3ac1ab82009-07-16 22:24:20 +00001793
Chris Lattner8f4b1ec2009-08-17 15:48:08 +00001794 // Print source line info.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001795 O.PadToColumn(MAI->getCommentColumn());
1796 O << MAI->getCommentString() << " SrcLine ";
Devang Patele4b27562009-08-28 23:24:31 +00001797 if (DLT.CompileUnit) {
1798 std::string Str;
1799 DICompileUnit CU(DLT.CompileUnit);
1800 O << CU.getFilename(Str) << " ";
David Greene3ac1ab82009-07-16 22:24:20 +00001801 }
Chris Lattner5f51cd02009-08-07 23:42:01 +00001802 O << DLT.Line;
1803 if (DLT.Col != 0)
1804 O << ":" << DLT.Col;
David Greene014700c2009-07-13 20:25:48 +00001805}
1806
David Greenefe37ab32009-08-18 19:22:55 +00001807/// PrintChildLoopComment - Print comments about child loops within
1808/// the loop for this basic block, with nesting.
1809///
1810static void PrintChildLoopComment(formatted_raw_ostream &O,
1811 const MachineLoop *loop,
Chris Lattner33adcfb2009-08-22 21:43:10 +00001812 const MCAsmInfo *MAI,
David Greenefe37ab32009-08-18 19:22:55 +00001813 int FunctionNumber) {
1814 // Add child loop information
1815 for(MachineLoop::iterator cl = loop->begin(),
1816 clend = loop->end();
1817 cl != clend;
1818 ++cl) {
1819 MachineBasicBlock *Header = (*cl)->getHeader();
1820 assert(Header && "No header for loop");
1821
1822 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001823 O.PadToColumn(MAI->getCommentColumn());
David Greenefe37ab32009-08-18 19:22:55 +00001824
Chris Lattner33adcfb2009-08-22 21:43:10 +00001825 O << MAI->getCommentString();
Chris Lattnerc281de12009-08-23 00:51:00 +00001826 O.indent(((*cl)->getLoopDepth()-1)*2)
David Greenefe37ab32009-08-18 19:22:55 +00001827 << " Child Loop BB" << FunctionNumber << "_"
1828 << Header->getNumber() << " Depth " << (*cl)->getLoopDepth();
1829
Chris Lattner33adcfb2009-08-22 21:43:10 +00001830 PrintChildLoopComment(O, *cl, MAI, FunctionNumber);
David Greenefe37ab32009-08-18 19:22:55 +00001831 }
1832}
1833
David Greeneb71d1b22009-08-10 16:38:07 +00001834/// EmitComments - Pretty-print comments for basic blocks
1835void AsmPrinter::EmitComments(const MachineBasicBlock &MBB) const
1836{
David Greenefe37ab32009-08-18 19:22:55 +00001837 if (VerboseAsm) {
David Greeneb71d1b22009-08-10 16:38:07 +00001838 // Add loop depth information
1839 const MachineLoop *loop = LI->getLoopFor(&MBB);
1840
1841 if (loop) {
1842 // Print a newline after bb# annotation.
1843 O << "\n";
Chris Lattner33adcfb2009-08-22 21:43:10 +00001844 O.PadToColumn(MAI->getCommentColumn());
1845 O << MAI->getCommentString() << " Loop Depth " << loop->getLoopDepth()
David Greeneb71d1b22009-08-10 16:38:07 +00001846 << '\n';
1847
Chris Lattner33adcfb2009-08-22 21:43:10 +00001848 O.PadToColumn(MAI->getCommentColumn());
David Greeneb71d1b22009-08-10 16:38:07 +00001849
1850 MachineBasicBlock *Header = loop->getHeader();
1851 assert(Header && "No header for loop");
1852
1853 if (Header == &MBB) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001854 O << MAI->getCommentString() << " Loop Header";
1855 PrintChildLoopComment(O, loop, MAI, getFunctionNumber());
David Greeneb71d1b22009-08-10 16:38:07 +00001856 }
1857 else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001858 O << MAI->getCommentString() << " Loop Header is BB"
David Greeneb71d1b22009-08-10 16:38:07 +00001859 << getFunctionNumber() << "_" << loop->getHeader()->getNumber();
1860 }
1861
1862 if (loop->empty()) {
1863 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001864 O.PadToColumn(MAI->getCommentColumn());
1865 O << MAI->getCommentString() << " Inner Loop";
David Greeneb71d1b22009-08-10 16:38:07 +00001866 }
1867
1868 // Add parent loop information
1869 for (const MachineLoop *CurLoop = loop->getParentLoop();
1870 CurLoop;
1871 CurLoop = CurLoop->getParentLoop()) {
1872 MachineBasicBlock *Header = CurLoop->getHeader();
1873 assert(Header && "No header for loop");
1874
1875 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001876 O.PadToColumn(MAI->getCommentColumn());
1877 O << MAI->getCommentString();
Chris Lattnerc281de12009-08-23 00:51:00 +00001878 O.indent((CurLoop->getLoopDepth()-1)*2)
David Greenefe37ab32009-08-18 19:22:55 +00001879 << " Inside Loop BB" << getFunctionNumber() << "_"
David Greeneb71d1b22009-08-10 16:38:07 +00001880 << Header->getNumber() << " Depth " << CurLoop->getLoopDepth();
1881 }
1882 }
1883 }
1884}