blob: 745696cc87907d604c94c9d3ff913071d0fe95a4 [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 Lattner90edac02009-09-14 03:02:37 +000059 // FIXME: Pass instprinter to streamer.
60 OutStreamer(*createAsmStreamer(OutContext, O, *T, 0)),
Chris Lattner2b2954f2009-07-27 21:28:04 +000061
Chris Lattner290c2f52009-08-03 23:20:21 +000062 LastMI(0), LastFn(0), Counter(~0U),
Owen Andersona8dbf362009-06-25 16:55:32 +000063 PrevDLT(0, ~0U, ~0U) {
Chris Lattner0de1fc42009-06-24 19:09:55 +000064 DW = 0; MMI = 0;
Evan Cheng42bf74b2009-03-25 01:47:28 +000065 switch (AsmVerbose) {
66 case cl::BOU_UNSET: VerboseAsm = VDef; break;
67 case cl::BOU_TRUE: VerboseAsm = true; break;
68 case cl::BOU_FALSE: VerboseAsm = false; break;
69 }
70}
Chris Lattnered138932005-12-13 06:32:10 +000071
Gordon Henriksenc317a602008-08-17 12:08:44 +000072AsmPrinter::~AsmPrinter() {
73 for (gcp_iterator I = GCMetadataPrinters.begin(),
74 E = GCMetadataPrinters.end(); I != E; ++I)
75 delete I->second;
Chris Lattner2b2954f2009-07-27 21:28:04 +000076
77 delete &OutStreamer;
78 delete &OutContext;
Gordon Henriksenc317a602008-08-17 12:08:44 +000079}
Chris Lattnered138932005-12-13 06:32:10 +000080
Chris Lattner38c39882009-08-03 19:12:26 +000081TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
Chris Lattnerf0144122009-07-28 03:13:23 +000082 return TM.getTargetLowering()->getObjFileLowering();
83}
84
Chris Lattnerdabf07c2009-08-18 06:15:16 +000085/// getCurrentSection() - Return the current section we are emitting to.
86const MCSection *AsmPrinter::getCurrentSection() const {
87 return OutStreamer.getCurrentSection();
88}
89
90
Gordon Henriksence224772008-01-07 01:30:38 +000091void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +000092 AU.setPreservesAll();
Gordon Henriksence224772008-01-07 01:30:38 +000093 MachineFunctionPass::getAnalysisUsage(AU);
Gordon Henriksen5eca0752008-08-17 18:44:35 +000094 AU.addRequired<GCModuleInfo>();
David Greenefe37ab32009-08-18 19:22:55 +000095 if (VerboseAsm)
David Greeneb71d1b22009-08-10 16:38:07 +000096 AU.addRequired<MachineLoopInfo>();
Gordon Henriksence224772008-01-07 01:30:38 +000097}
98
Chris Lattnera80ba712004-08-16 23:15:22 +000099bool AsmPrinter::doInitialization(Module &M) {
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000100 // Initialize TargetLoweringObjectFile.
101 const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
102 .Initialize(OutContext, TM);
103
Chris Lattner33adcfb2009-08-22 21:43:10 +0000104 Mang = new Mangler(M, MAI->getGlobalPrefix(), MAI->getPrivateGlobalPrefix(),
105 MAI->getLinkerPrivateGlobalPrefix());
Chris Lattner2c1b1592006-01-23 23:47:53 +0000106
Chris Lattner33adcfb2009-08-22 21:43:10 +0000107 if (MAI->doesAllowQuotesInName())
Chris Lattnera93ca922009-06-18 23:41:35 +0000108 Mang->setUseQuotes(true);
109
Duncan Sands1465d612009-01-28 13:14:17 +0000110 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000111 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
Rafael Espindola952b8392008-12-03 11:01:37 +0000112
Chris Lattner33adcfb2009-08-22 21:43:10 +0000113 if (MAI->hasSingleParameterDotFile()) {
Rafael Espindola952b8392008-12-03 11:01:37 +0000114 /* Very minimal debug info. It is ignored if we emit actual
115 debug info. If we don't, this at helps the user find where
116 a function came from. */
117 O << "\t.file\t\"" << M.getModuleIdentifier() << "\"\n";
118 }
119
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000120 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
121 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000122 MP->beginAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000123
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000124 if (!M.getModuleInlineAsm().empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000125 O << MAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +0000126 << M.getModuleInlineAsm()
Chris Lattner33adcfb2009-08-22 21:43:10 +0000127 << '\n' << MAI->getCommentString()
Jim Laskey563321a2006-09-06 18:34:40 +0000128 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000129
Chris Lattner33adcfb2009-08-22 21:43:10 +0000130 if (MAI->doesSupportDebugInformation() ||
131 MAI->doesSupportExceptionHandling()) {
Chris Lattner0de1fc42009-06-24 19:09:55 +0000132 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
133 if (MMI)
Devang Patel14a55d92009-06-19 21:54:26 +0000134 MMI->AnalyzeModule(M);
Chris Lattner0de1fc42009-06-24 19:09:55 +0000135 DW = getAnalysisIfAvailable<DwarfWriter>();
136 if (DW)
Chris Lattner33adcfb2009-08-22 21:43:10 +0000137 DW->BeginModule(&M, MMI, O, this, MAI);
Devang Patel14a55d92009-06-19 21:54:26 +0000138 }
139
Chris Lattnera80ba712004-08-16 23:15:22 +0000140 return false;
141}
142
143bool AsmPrinter::doFinalization(Module &M) {
Chris Lattner40bbebd2009-07-21 18:38:57 +0000144 // Emit global variables.
145 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
146 I != E; ++I)
147 PrintGlobalVariable(I);
148
Chris Lattner1f522fe2009-06-24 18:54:37 +0000149 // Emit final debug information.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000150 if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
Chris Lattner1f522fe2009-06-24 18:54:37 +0000151 DW->EndModule();
152
Chris Lattner0a7befa2009-06-24 18:52:01 +0000153 // If the target wants to know about weak references, print them all.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000154 if (MAI->getWeakRefDirective()) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000155 // FIXME: This is not lazy, it would be nice to only print weak references
156 // to stuff that is actually used. Note that doing so would require targets
157 // to notice uses in operands (due to constant exprs etc). This should
158 // happen with the MC stuff eventually.
Rafael Espindola15404d02006-12-18 03:37:18 +0000159
Chris Lattner0a7befa2009-06-24 18:52:01 +0000160 // Print out module-level global variables here.
161 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
162 I != E; ++I) {
163 if (I->hasExternalWeakLinkage())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000164 O << MAI->getWeakRefDirective() << Mang->getMangledName(I) << '\n';
Chris Lattner0a7befa2009-06-24 18:52:01 +0000165 }
166
Chris Lattnerc6fdced2009-08-03 23:10:34 +0000167 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner0a7befa2009-06-24 18:52:01 +0000168 if (I->hasExternalWeakLinkage())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000169 O << MAI->getWeakRefDirective() << Mang->getMangledName(I) << '\n';
Chris Lattner0a7befa2009-06-24 18:52:01 +0000170 }
Rafael Espindola15404d02006-12-18 03:37:18 +0000171 }
172
Chris Lattner33adcfb2009-08-22 21:43:10 +0000173 if (MAI->getSetDirective()) {
Dan Gohmand19a53b2008-06-30 22:03:41 +0000174 O << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000175 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
Chris Lattner0a7befa2009-06-24 18:52:01 +0000176 I != E; ++I) {
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000177 std::string Name = Mang->getMangledName(I);
Anton Korobeynikov325be7c2007-09-06 17:21:48 +0000178
179 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000180 std::string Target = Mang->getMangledName(GV);
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000181
Chris Lattner33adcfb2009-08-22 21:43:10 +0000182 if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
Dan Gohmand19a53b2008-06-30 22:03:41 +0000183 O << "\t.globl\t" << Name << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000184 else if (I->hasWeakLinkage())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000185 O << MAI->getWeakRefDirective() << Name << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000186 else if (!I->hasLocalLinkage())
Torok Edwinc23197a2009-07-14 16:55:14 +0000187 llvm_unreachable("Invalid alias linkage");
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000188
Anton Korobeynikov541af7f2008-09-24 22:21:04 +0000189 printVisibility(Name, I->getVisibility());
Anton Korobeynikov22c9e652008-03-11 21:41:14 +0000190
Chris Lattner33adcfb2009-08-22 21:43:10 +0000191 O << MAI->getSetDirective() << ' ' << Name << ", " << Target << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +0000192 }
193 }
194
Duncan Sands1465d612009-01-28 13:14:17 +0000195 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000196 assert(MI && "AsmPrinter didn't require GCModuleInfo?");
197 for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
198 if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
Chris Lattner33adcfb2009-08-22 21:43:10 +0000199 MP->finishAssembly(O, *this, *MAI);
Gordon Henriksence224772008-01-07 01:30:38 +0000200
Dan Gohmana779a982008-05-05 00:28:39 +0000201 // If we don't have any trampolines, then we don't require stack memory
202 // to be executable. Some targets have a directive to declare this.
Chris Lattner0a7befa2009-06-24 18:52:01 +0000203 Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
Dan Gohmana779a982008-05-05 00:28:39 +0000204 if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000205 if (MAI->getNonexecutableStackDirective())
206 O << MAI->getNonexecutableStackDirective() << '\n';
Dan Gohmana779a982008-05-05 00:28:39 +0000207
Chris Lattnera80ba712004-08-16 23:15:22 +0000208 delete Mang; Mang = 0;
Chris Lattner0de1fc42009-06-24 19:09:55 +0000209 DW = 0; MMI = 0;
Chris Lattner2b2954f2009-07-27 21:28:04 +0000210
211 OutStreamer.Finish();
Chris Lattnera80ba712004-08-16 23:15:22 +0000212 return false;
213}
214
Chris Lattnere2cf37b2009-07-17 20:46:40 +0000215std::string
216AsmPrinter::getCurrentFunctionEHName(const MachineFunction *MF) const {
Bill Wendling6e198962007-09-18 01:47:22 +0000217 assert(MF && "No machine function?");
Chris Lattnere2cf37b2009-07-17 20:46:40 +0000218 return Mang->getMangledName(MF->getFunction(), ".eh",
Chris Lattner33adcfb2009-08-22 21:43:10 +0000219 MAI->is_EHSymbolPrivate());
Bill Wendling6e198962007-09-18 01:47:22 +0000220}
221
Chris Lattner25045bd2005-11-21 07:51:36 +0000222void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnera80ba712004-08-16 23:15:22 +0000223 // What's my mangled name?
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000224 CurrentFnName = Mang->getMangledName(MF.getFunction());
Evan Cheng347d39f2007-10-14 05:57:21 +0000225 IncrementFunctionNumber();
David Greeneb71d1b22009-08-10 16:38:07 +0000226
David Greenefe37ab32009-08-18 19:22:55 +0000227 if (VerboseAsm) {
David Greeneb71d1b22009-08-10 16:38:07 +0000228 LI = &getAnalysis<MachineLoopInfo>();
229 }
Chris Lattnera80ba712004-08-16 23:15:22 +0000230}
231
Evan Cheng1606e8e2009-03-13 07:51:59 +0000232namespace {
233 // SectionCPs - Keep track the alignment, constpool entries per Section.
234 struct SectionCPs {
Chris Lattnera87dea42009-07-31 18:48:30 +0000235 const MCSection *S;
Evan Cheng1606e8e2009-03-13 07:51:59 +0000236 unsigned Alignment;
237 SmallVector<unsigned, 4> CPEs;
Chris Lattnera87dea42009-07-31 18:48:30 +0000238 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {};
Evan Cheng1606e8e2009-03-13 07:51:59 +0000239 };
240}
241
Chris Lattner3b4fd322005-11-21 08:25:09 +0000242/// EmitConstantPool - Print to the current output stream assembly
243/// representations of the constants in the constant pool MCP. This is
244/// used to print out constants which have been "spilled to memory" by
245/// the code generator.
246///
247void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000248 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000249 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000250
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000251 // Calculate sections for constant pool entries. We collect entries to go into
252 // the same section together to reduce amount of section switch statements.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000253 SmallVector<SectionCPs, 4> CPSections;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000254 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Chris Lattner298414e2009-07-22 00:28:43 +0000255 const MachineConstantPoolEntry &CPE = CP[i];
Evan Cheng1606e8e2009-03-13 07:51:59 +0000256 unsigned Align = CPE.getAlignment();
Chris Lattner5c2f7892009-07-26 06:26:55 +0000257
258 SectionKind Kind;
259 switch (CPE.getRelocationInfo()) {
260 default: llvm_unreachable("Unknown section kind");
Chris Lattner27981192009-08-01 23:57:16 +0000261 case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000262 case 1:
Chris Lattner27981192009-08-01 23:57:16 +0000263 Kind = SectionKind::getReadOnlyWithRelLocal();
Chris Lattner4c509222009-07-26 07:00:12 +0000264 break;
Chris Lattner5c2f7892009-07-26 06:26:55 +0000265 case 0:
Chris Lattner4c509222009-07-26 07:00:12 +0000266 switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000267 case 4: Kind = SectionKind::getMergeableConst4(); break;
268 case 8: Kind = SectionKind::getMergeableConst8(); break;
269 case 16: Kind = SectionKind::getMergeableConst16();break;
270 default: Kind = SectionKind::getMergeableConst(); break;
Chris Lattner4c509222009-07-26 07:00:12 +0000271 }
Chris Lattner5c2f7892009-07-26 06:26:55 +0000272 }
273
Chris Lattner83d77fa2009-08-01 23:46:12 +0000274 const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
Chris Lattner298414e2009-07-22 00:28:43 +0000275
Evan Cheng1606e8e2009-03-13 07:51:59 +0000276 // The number of sections are small, just do a linear search from the
277 // last section to the first.
278 bool Found = false;
279 unsigned SecIdx = CPSections.size();
280 while (SecIdx != 0) {
281 if (CPSections[--SecIdx].S == S) {
282 Found = true;
283 break;
284 }
285 }
286 if (!Found) {
287 SecIdx = CPSections.size();
288 CPSections.push_back(SectionCPs(S, Align));
289 }
290
291 if (Align > CPSections[SecIdx].Alignment)
292 CPSections[SecIdx].Alignment = Align;
293 CPSections[SecIdx].CPEs.push_back(i);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000294 }
295
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000296 // Now print stuff into the calculated sections.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000297 for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000298 OutStreamer.SwitchSection(CPSections[i].S);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000299 EmitAlignment(Log2_32(CPSections[i].Alignment));
Evan Cheng2d2cec12006-06-29 00:26:09 +0000300
Evan Cheng1606e8e2009-03-13 07:51:59 +0000301 unsigned Offset = 0;
302 for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
303 unsigned CPI = CPSections[i].CPEs[j];
304 MachineConstantPoolEntry CPE = CP[CPI];
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000305
Chris Lattner3029f922006-02-09 04:46:04 +0000306 // Emit inter-object padding for alignment.
Evan Cheng1606e8e2009-03-13 07:51:59 +0000307 unsigned AlignMask = CPE.getAlignment() - 1;
308 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
309 EmitZeros(NewOffset - Offset);
310
311 const Type *Ty = CPE.getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000312 Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
Evan Cheng1606e8e2009-03-13 07:51:59 +0000313
Chris Lattner33adcfb2009-08-22 21:43:10 +0000314 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
Dan Gohmana12e9d72009-08-12 18:32:22 +0000315 << CPI << ':';
Evan Cheng1606e8e2009-03-13 07:51:59 +0000316 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000317 O.PadToColumn(MAI->getCommentColumn());
318 O << MAI->getCommentString() << " constant ";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000319 WriteTypeSymbolic(O, CPE.getType(), MF->getFunction()->getParent());
Anton Korobeynikov088ae832008-09-24 22:17:59 +0000320 }
Evan Cheng1606e8e2009-03-13 07:51:59 +0000321 O << '\n';
322 if (CPE.isMachineConstantPoolEntry())
323 EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
324 else
325 EmitGlobalConstant(CPE.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000326 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000327 }
328}
329
Nate Begeman37efe672006-04-22 18:53:45 +0000330/// EmitJumpTableInfo - Print assembly representations of the jump tables used
331/// by the current function to the current output stream.
332///
Chris Lattner1da31ee2006-10-05 03:01:21 +0000333void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
334 MachineFunction &MF) {
Nate Begeman37efe672006-04-22 18:53:45 +0000335 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
336 if (JT.empty()) return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000337
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000338 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
Nate Begeman4d9bbdc2006-07-27 16:46:58 +0000339
Nate Begeman2f1ae882006-07-27 01:13:04 +0000340 // Pick the directive to use to print the jump table entries, and switch to
341 // the appropriate section.
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000342 TargetLowering *LoweringInfo = TM.getTargetLowering();
Anton Korobeynikov24287dd2006-12-19 21:04:20 +0000343
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000344 const Function *F = MF.getFunction();
Evan Chengb13bafe2009-06-18 20:37:15 +0000345 bool JTInDiffSection = false;
Chris Lattner83d77fa2009-08-01 23:46:12 +0000346 if (F->isWeakForLinker() ||
347 (IsPic && !LoweringInfo->usesGlobalOffsetTable())) {
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000348 // In PIC mode, we need to emit the jump table to the same section as the
349 // function body itself, otherwise the label differences won't make sense.
Anton Korobeynikove87f52d2008-07-09 13:27:16 +0000350 // We should also do if the section name is NULL or function is declared in
351 // discardable section.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000352 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang,
353 TM));
Nate Begeman2f1ae882006-07-27 01:13:04 +0000354 } else {
Chris Lattner83d77fa2009-08-01 23:46:12 +0000355 // Otherwise, drop it in the readonly section.
356 const MCSection *ReadOnlySection =
Chris Lattner27981192009-08-01 23:57:16 +0000357 getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000358 OutStreamer.SwitchSection(ReadOnlySection);
Evan Chengb13bafe2009-06-18 20:37:15 +0000359 JTInDiffSection = true;
Nate Begeman2f1ae882006-07-27 01:13:04 +0000360 }
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000361
362 EmitAlignment(Log2_32(MJTI->getAlignment()));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000363
Nate Begeman37efe672006-04-22 18:53:45 +0000364 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
Nate Begeman52a51e382006-08-12 21:29:52 +0000365 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000366
367 // If this jump table was deleted, ignore it.
368 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000369
370 // For PIC codegen, if possible we want to use the SetDirective to reduce
371 // the number of relocations the assembler will generate for the jump table.
372 // Set directives are all printed before the jump table itself.
Evan Chengcc415862007-11-09 01:32:10 +0000373 SmallPtrSet<MachineBasicBlock*, 16> EmittedSets;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000374 if (MAI->getSetDirective() && IsPic)
Nate Begeman52a51e382006-08-12 21:29:52 +0000375 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
Evan Chengcc415862007-11-09 01:32:10 +0000376 if (EmittedSets.insert(JTBBs[ii]))
377 printPICJumpTableSetLabel(i, JTBBs[ii]);
Nate Begeman52a51e382006-08-12 21:29:52 +0000378
Chris Lattner7c301912009-09-13 19:02:16 +0000379 // On some targets (e.g. Darwin) we want to emit two consequtive labels
Chris Lattner393a8ee2007-01-18 01:12:56 +0000380 // before each jump table. The first label is never referenced, but tells
381 // the assembler and linker the extents of the jump table object. The
382 // second label is actually referenced by the code.
Chris Lattner7c301912009-09-13 19:02:16 +0000383 if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0]) {
384 O << MAI->getLinkerPrivateGlobalPrefix()
385 << "JTI" << getFunctionNumber() << '_' << i << ":\n";
Evan Chengb13bafe2009-06-18 20:37:15 +0000386 }
Chris Lattner393a8ee2007-01-18 01:12:56 +0000387
Chris Lattner33adcfb2009-08-22 21:43:10 +0000388 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Evan Cheng347d39f2007-10-14 05:57:21 +0000389 << '_' << i << ":\n";
Nate Begeman52a51e382006-08-12 21:29:52 +0000390
Nate Begeman37efe672006-04-22 18:53:45 +0000391 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000392 printPICJumpTableEntry(MJTI, JTBBs[ii], i);
Nate Begeman37efe672006-04-22 18:53:45 +0000393 O << '\n';
394 }
395 }
396}
397
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000398void AsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
399 const MachineBasicBlock *MBB,
400 unsigned uid) const {
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000401 bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000402
403 // Use JumpTableDirective otherwise honor the entry size from the jump table
404 // info.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000405 const char *JTEntryDirective = MAI->getJumpTableDirective(isPIC);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000406 bool HadJTEntryDirective = JTEntryDirective != NULL;
407 if (!HadJTEntryDirective) {
408 JTEntryDirective = MJTI->getEntrySize() == 4 ?
Chris Lattner33adcfb2009-08-22 21:43:10 +0000409 MAI->getData32bitsDirective() : MAI->getData64bitsDirective();
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000410 }
411
412 O << JTEntryDirective << ' ';
413
414 // If we have emitted set directives for the jump table entries, print
415 // them rather than the entries themselves. If we're emitting PIC, then
416 // emit the table entries as differences between two text section labels.
417 // If we're emitting non-PIC code, then emit the entries as direct
418 // references to the target basic blocks.
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000419 if (!isPIC) {
Chris Lattner325d3dc2009-09-13 17:14:04 +0000420 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
Chris Lattner33adcfb2009-08-22 21:43:10 +0000421 } else if (MAI->getSetDirective()) {
422 O << MAI->getPrivateGlobalPrefix() << getFunctionNumber()
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000423 << '_' << uid << "_set_" << MBB->getNumber();
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000424 } else {
Chris Lattner325d3dc2009-09-13 17:14:04 +0000425 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000426 // If the arch uses custom Jump Table directives, don't calc relative to
427 // JT
428 if (!HadJTEntryDirective)
Chris Lattner33adcfb2009-08-22 21:43:10 +0000429 O << '-' << MAI->getPrivateGlobalPrefix() << "JTI"
Chris Lattnerb3ac6e42009-08-11 20:29:57 +0000430 << getFunctionNumber() << '_' << uid;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000431 }
432}
433
434
Chris Lattnered138932005-12-13 06:32:10 +0000435/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
436/// special global used by LLVM. If so, emit it and return true, otherwise
437/// do nothing and return false.
438bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000439 if (GV->getName() == "llvm.used") {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000440 if (MAI->getUsedDirective() != 0) // No need to emit this at all.
Andrew Lenharthb753a9b2007-08-22 19:33:11 +0000441 EmitLLVMUsedList(GV->getInitializer());
442 return true;
443 }
444
Chris Lattner401e10c2009-07-20 06:14:25 +0000445 // Ignore debug and non-emitted data. This handles llvm.compiler.used.
Chris Lattner266c7bb2009-04-13 05:44:34 +0000446 if (GV->getSection() == "llvm.metadata" ||
447 GV->hasAvailableExternallyLinkage())
448 return true;
Jim Laskey78098112006-03-07 22:00:35 +0000449
450 if (!GV->hasAppendingLinkage()) return false;
451
452 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000453
Evan Cheng916d07c2007-06-04 20:39:18 +0000454 const TargetData *TD = TM.getTargetData();
455 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattnerf231c072009-03-09 05:52:15 +0000456 if (GV->getName() == "llvm.global_ctors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000457 OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000458 EmitAlignment(Align, 0);
459 EmitXXStructorList(GV->getInitializer());
460 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000461 }
462
Chris Lattnerf231c072009-03-09 05:52:15 +0000463 if (GV->getName() == "llvm.global_dtors") {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000464 OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
Chris Lattnerea3a9ff2009-03-09 08:18:48 +0000465 EmitAlignment(Align, 0);
466 EmitXXStructorList(GV->getInitializer());
467 return true;
Chris Lattnered138932005-12-13 06:32:10 +0000468 }
469
470 return false;
471}
472
Chris Lattner33adcfb2009-08-22 21:43:10 +0000473/// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
Dale Johannesend2e51af2008-09-09 22:29:13 +0000474/// global in the specified llvm.used list for which emitUsedDirectiveFor
475/// is true, as being used with this directive.
Chris Lattnercb05af82006-09-26 03:38:18 +0000476void AsmPrinter::EmitLLVMUsedList(Constant *List) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000477 const char *Directive = MAI->getUsedDirective();
Chris Lattnercb05af82006-09-26 03:38:18 +0000478
Dan Gohmana119de82009-06-14 23:30:43 +0000479 // Should be an array of 'i8*'.
Chris Lattnercb05af82006-09-26 03:38:18 +0000480 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
481 if (InitList == 0) return;
482
483 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
Chris Lattner16fe9902009-07-17 22:00:23 +0000484 const GlobalValue *GV =
485 dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
Chris Lattner26630c12009-07-31 20:52:39 +0000486 if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang)) {
Dale Johannesen61e60932008-09-03 20:34:58 +0000487 O << Directive;
488 EmitConstantValueOnly(InitList->getOperand(i));
489 O << '\n';
490 }
Chris Lattnercb05af82006-09-26 03:38:18 +0000491 }
492}
493
Chris Lattnered138932005-12-13 06:32:10 +0000494/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
495/// function pointers, ignoring the init priority.
496void AsmPrinter::EmitXXStructorList(Constant *List) {
497 // Should be an array of '{ int, void ()* }' structs. The first value is the
498 // init priority, which we ignore.
499 if (!isa<ConstantArray>(List)) return;
500 ConstantArray *InitList = cast<ConstantArray>(List);
501 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
502 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
503 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000504
505 if (CS->getOperand(1)->isNullValue())
506 return; // Found a null terminator, exit printing.
507 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000508 EmitGlobalConstant(CS->getOperand(1));
509 }
510}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000511
Jim Laskeya1a19f82006-10-17 13:41:07 +0000512/// getGlobalLinkName - Returns the asm/link name of of the specified
513/// global variable. Should be overridden by each target asm printer to
514/// generate the appropriate value.
Bill Wendling7d16e852009-04-10 00:12:49 +0000515const std::string &AsmPrinter::getGlobalLinkName(const GlobalVariable *GV,
516 std::string &LinkName) const {
Chris Lattnerbfd1e502009-09-15 23:11:32 +0000517 LinkName += Mang->getMangledName(GV);
Jim Laskey99e41ee2006-10-17 17:17:24 +0000518 return LinkName;
Jim Laskeya1a19f82006-10-17 13:41:07 +0000519}
520
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000521/// EmitExternalGlobal - Emit the external reference to a global variable.
522/// Should be overridden if an indirect reference should be used.
523void AsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling7d16e852009-04-10 00:12:49 +0000524 std::string GLN;
525 O << getGlobalLinkName(GV, GLN);
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000526}
527
528
529
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000530//===----------------------------------------------------------------------===//
531/// LEB 128 number encoding.
532
533/// PrintULEB128 - Print a series of hexidecimal values (separated by commas)
534/// representing an unsigned leb128 value.
535void AsmPrinter::PrintULEB128(unsigned Value) const {
Chris Lattnera64f4632008-11-10 04:35:24 +0000536 char Buffer[20];
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000537 do {
Chris Lattnera64f4632008-11-10 04:35:24 +0000538 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000539 Value >>= 7;
540 if (Value) Byte |= 0x80;
Chris Lattnera64f4632008-11-10 04:35:24 +0000541 O << "0x" << utohex_buffer(Byte, Buffer+20);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000542 if (Value) O << ", ";
543 } while (Value);
544}
545
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000546/// PrintSLEB128 - Print a series of hexidecimal values (separated by commas)
547/// representing a signed leb128 value.
548void AsmPrinter::PrintSLEB128(int Value) const {
549 int Sign = Value >> (8 * sizeof(Value) - 1);
550 bool IsMore;
Chris Lattnera64f4632008-11-10 04:35:24 +0000551 char Buffer[20];
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000552
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000553 do {
Chris Lattnera64f4632008-11-10 04:35:24 +0000554 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000555 Value >>= 7;
556 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
557 if (IsMore) Byte |= 0x80;
Chris Lattnera64f4632008-11-10 04:35:24 +0000558 O << "0x" << utohex_buffer(Byte, Buffer+20);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000559 if (IsMore) O << ", ";
560 } while (IsMore);
561}
562
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000563//===--------------------------------------------------------------------===//
564// Emission and print routines
565//
566
567/// PrintHex - Print a value as a hexidecimal value.
568///
569void AsmPrinter::PrintHex(int Value) const {
Chris Lattnerc6a13462008-11-10 04:30:26 +0000570 char Buffer[20];
Chris Lattnerc6a13462008-11-10 04:30:26 +0000571 O << "0x" << utohex_buffer(static_cast<unsigned>(Value), Buffer+20);
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000572}
573
574/// EOL - Print a newline character to asm stream. If a comment is present
575/// then it will be printed first. Comments should not contain '\n'.
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000576void AsmPrinter::EOL() const {
Dan Gohmand19a53b2008-06-30 22:03:41 +0000577 O << '\n';
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000578}
Owen Anderson25995092008-07-01 21:16:27 +0000579
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000580void AsmPrinter::EOL(const std::string &Comment) const {
Evan Cheng6547e402008-07-01 23:18:29 +0000581 if (VerboseAsm && !Comment.empty()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000582 O.PadToColumn(MAI->getCommentColumn());
583 O << MAI->getCommentString()
Dan Gohmand19a53b2008-06-30 22:03:41 +0000584 << ' '
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000585 << Comment;
586 }
Dan Gohmand19a53b2008-06-30 22:03:41 +0000587 O << '\n';
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000588}
589
Owen Anderson25995092008-07-01 21:16:27 +0000590void AsmPrinter::EOL(const char* Comment) const {
Evan Cheng6547e402008-07-01 23:18:29 +0000591 if (VerboseAsm && *Comment) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000592 O.PadToColumn(MAI->getCommentColumn());
593 O << MAI->getCommentString()
Owen Anderson25995092008-07-01 21:16:27 +0000594 << ' '
595 << Comment;
596 }
597 O << '\n';
598}
599
Bill Wendlingb5abecd2009-08-29 12:17:53 +0000600static const char *DecodeDWARFEncoding(unsigned Encoding) {
601 switch (Encoding) {
602 case dwarf::DW_EH_PE_absptr:
603 return "absptr";
604 case dwarf::DW_EH_PE_omit:
605 return "omit";
606 case dwarf::DW_EH_PE_pcrel:
607 return "pcrel";
Bill Wendling0734d352009-09-09 21:26:19 +0000608 case dwarf::DW_EH_PE_udata4:
609 return "udata4";
610 case dwarf::DW_EH_PE_udata8:
611 return "udata8";
612 case dwarf::DW_EH_PE_sdata4:
613 return "sdata4";
614 case dwarf::DW_EH_PE_sdata8:
615 return "sdata8";
Bill Wendlingb5abecd2009-08-29 12:17:53 +0000616 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata4:
617 return "pcrel udata4";
618 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4:
619 return "pcrel sdata4";
620 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata8:
621 return "pcrel udata8";
622 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata8:
623 return "pcrel sdata8";
624 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata4:
625 return "indirect pcrel udata4";
626 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata4:
627 return "indirect pcrel sdata4";
628 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata8:
629 return "indirect pcrel udata8";
630 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata8:
631 return "indirect pcrel sdata8";
632 }
633
634 return 0;
635}
636
Bill Wendlingb5abecd2009-08-29 12:17:53 +0000637void AsmPrinter::EOL(const char *Comment, unsigned Encoding) const {
638 if (VerboseAsm && *Comment) {
639 O.PadToColumn(MAI->getCommentColumn());
640 O << MAI->getCommentString()
641 << ' '
642 << Comment;
643
644 if (const char *EncStr = DecodeDWARFEncoding(Encoding))
645 O << " (" << EncStr << ')';
646 }
647 O << '\n';
648}
649
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000650/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
651/// unsigned leb128 value.
652void AsmPrinter::EmitULEB128Bytes(unsigned Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000653 if (MAI->hasLEB128()) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000654 O << "\t.uleb128\t"
655 << Value;
656 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000657 O << MAI->getData8bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000658 PrintULEB128(Value);
659 }
660}
661
662/// EmitSLEB128Bytes - print an assembler byte data directive to compose a
663/// signed leb128 value.
664void AsmPrinter::EmitSLEB128Bytes(int Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000665 if (MAI->hasLEB128()) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000666 O << "\t.sleb128\t"
667 << Value;
668 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000669 O << MAI->getData8bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000670 PrintSLEB128(Value);
671 }
672}
673
674/// EmitInt8 - Emit a byte directive and value.
675///
676void AsmPrinter::EmitInt8(int Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000677 O << MAI->getData8bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000678 PrintHex(Value & 0xFF);
679}
680
681/// EmitInt16 - Emit a short directive and value.
682///
683void AsmPrinter::EmitInt16(int Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000684 O << MAI->getData16bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000685 PrintHex(Value & 0xFFFF);
686}
687
688/// EmitInt32 - Emit a long directive and value.
689///
690void AsmPrinter::EmitInt32(int Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000691 O << MAI->getData32bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000692 PrintHex(Value);
693}
694
695/// EmitInt64 - Emit a long long directive and value.
696///
697void AsmPrinter::EmitInt64(uint64_t Value) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000698 if (MAI->getData64bitsDirective()) {
699 O << MAI->getData64bitsDirective();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000700 PrintHex(Value);
701 } else {
702 if (TM.getTargetData()->isBigEndian()) {
Dan Gohmand19a53b2008-06-30 22:03:41 +0000703 EmitInt32(unsigned(Value >> 32)); O << '\n';
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000704 EmitInt32(unsigned(Value));
705 } else {
Dan Gohmand19a53b2008-06-30 22:03:41 +0000706 EmitInt32(unsigned(Value)); O << '\n';
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000707 EmitInt32(unsigned(Value >> 32));
708 }
709 }
710}
711
712/// toOctal - Convert the low order bits of X into an octal digit.
713///
714static inline char toOctal(int X) {
715 return (X&7)+'0';
716}
717
718/// printStringChar - Print a char, escaped if necessary.
719///
David Greene71847812009-07-14 20:18:05 +0000720static void printStringChar(formatted_raw_ostream &O, unsigned char C) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000721 if (C == '"') {
722 O << "\\\"";
723 } else if (C == '\\') {
724 O << "\\\\";
Chris Lattnerbbfa2442009-01-22 23:38:45 +0000725 } else if (isprint((unsigned char)C)) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000726 O << C;
727 } else {
728 switch(C) {
729 case '\b': O << "\\b"; break;
730 case '\f': O << "\\f"; break;
731 case '\n': O << "\\n"; break;
732 case '\r': O << "\\r"; break;
733 case '\t': O << "\\t"; break;
734 default:
735 O << '\\';
736 O << toOctal(C >> 6);
737 O << toOctal(C >> 3);
738 O << toOctal(C >> 0);
739 break;
740 }
741 }
742}
743
744/// EmitString - Emit a string with quotes and a null terminator.
745/// Special characters are emitted properly.
746/// \literal (Eg. '\t') \endliteral
747void AsmPrinter::EmitString(const std::string &String) const {
Bill Wendlingf34be822009-04-09 23:51:31 +0000748 EmitString(String.c_str(), String.size());
749}
750
751void AsmPrinter::EmitString(const char *String, unsigned Size) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000752 const char* AscizDirective = MAI->getAscizDirective();
Anton Korobeynikovfb269cf2007-03-06 19:25:02 +0000753 if (AscizDirective)
754 O << AscizDirective;
755 else
Chris Lattner33adcfb2009-08-22 21:43:10 +0000756 O << MAI->getAsciiDirective();
Dan Gohmand19a53b2008-06-30 22:03:41 +0000757 O << '\"';
Bill Wendlingf34be822009-04-09 23:51:31 +0000758 for (unsigned i = 0; i < Size; ++i)
Chris Lattnera118c2e2009-04-08 00:28:38 +0000759 printStringChar(O, String[i]);
Anton Korobeynikovfb269cf2007-03-06 19:25:02 +0000760 if (AscizDirective)
Dan Gohmand19a53b2008-06-30 22:03:41 +0000761 O << '\"';
Anton Korobeynikovfb269cf2007-03-06 19:25:02 +0000762 else
763 O << "\\0\"";
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000764}
765
766
Dan Gohman189f80d2007-09-24 20:58:13 +0000767/// EmitFile - Emit a .file directive.
768void AsmPrinter::EmitFile(unsigned Number, const std::string &Name) const {
769 O << "\t.file\t" << Number << " \"";
Chris Lattnera118c2e2009-04-08 00:28:38 +0000770 for (unsigned i = 0, N = Name.size(); i < N; ++i)
771 printStringChar(O, Name[i]);
Dan Gohmand19a53b2008-06-30 22:03:41 +0000772 O << '\"';
Dan Gohman189f80d2007-09-24 20:58:13 +0000773}
774
775
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000776//===----------------------------------------------------------------------===//
777
Chris Lattner3a420532007-05-31 18:57:45 +0000778// EmitAlignment - Emit an alignment directive to the specified power of
779// two boundary. For example, if you pass in 3 here, you will get an 8
780// byte alignment. If a global value is specified, and if that global has
781// an explicit alignment requested, it will unconditionally override the
782// alignment request. However, if ForcedAlignBits is specified, this value
783// has final say: the ultimate alignment will be the max of ForcedAlignBits
784// and the alignment computed with NumBits and the global.
785//
786// The algorithm is:
787// Align = NumBits;
788// if (GV && GV->hasalignment) Align = GV->getalignment();
789// Align = std::max(Align, ForcedAlignBits);
790//
791void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng05548eb2008-02-29 19:36:59 +0000792 unsigned ForcedAlignBits,
793 bool UseFillExpr) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000794 if (GV && GV->getAlignment())
Chris Lattner3a420532007-05-31 18:57:45 +0000795 NumBits = Log2_32(GV->getAlignment());
796 NumBits = std::max(NumBits, ForcedAlignBits);
797
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000798 if (NumBits == 0) return; // No need to emit alignment.
Chris Lattner663c2d22009-08-19 06:12:02 +0000799
800 unsigned FillValue = 0;
Chris Lattnerdabf07c2009-08-18 06:15:16 +0000801 if (getCurrentSection()->getKind().isText())
Chris Lattner33adcfb2009-08-22 21:43:10 +0000802 FillValue = MAI->getTextAlignFillValue();
Chris Lattner663c2d22009-08-19 06:12:02 +0000803
804 OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
Chris Lattnerbfddc202004-08-17 19:14:29 +0000805}
David Greenea5bb59f2009-08-05 21:00:52 +0000806
Chris Lattner25045bd2005-11-21 07:51:36 +0000807/// EmitZeros - Emit a block of zeros.
Chris Lattner7d057a32004-08-17 21:38:40 +0000808///
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +0000809void AsmPrinter::EmitZeros(uint64_t NumZeros, unsigned AddrSpace) const {
Chris Lattner7d057a32004-08-17 21:38:40 +0000810 if (NumZeros) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000811 if (MAI->getZeroDirective()) {
812 O << MAI->getZeroDirective() << NumZeros;
813 if (MAI->getZeroDirectiveSuffix())
814 O << MAI->getZeroDirectiveSuffix();
Dan Gohmand19a53b2008-06-30 22:03:41 +0000815 O << '\n';
Jeff Cohenc6a057b2006-05-02 03:46:13 +0000816 } else {
Chris Lattner7d057a32004-08-17 21:38:40 +0000817 for (; NumZeros; --NumZeros)
Chris Lattner33adcfb2009-08-22 21:43:10 +0000818 O << MAI->getData8bitsDirective(AddrSpace) << "0\n";
Chris Lattner7d057a32004-08-17 21:38:40 +0000819 }
820 }
821}
822
Chris Lattnera80ba712004-08-16 23:15:22 +0000823// Print out the specified constant, without a storage class. Only the
824// constants valid in constant expressions can occur here.
Chris Lattner25045bd2005-11-21 07:51:36 +0000825void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000826 if (CV->isNullValue() || isa<UndefValue>(CV))
Dan Gohmand19a53b2008-06-30 22:03:41 +0000827 O << '0';
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000828 else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Scott Michel4315eee2008-06-03 06:18:19 +0000829 O << CI->getZExtValue();
Reid Spencerb83eb642006-10-20 07:07:24 +0000830 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Duraid Madina855a5192005-04-02 12:21:51 +0000831 // This is a constant address for a global variable or function. Use the
Chris Lattnerbfd1e502009-09-15 23:11:32 +0000832 // name of the variable or function as the address value.
833 O << Mang->getMangledName(GV);
Duraid Madina855a5192005-04-02 12:21:51 +0000834 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Owen Andersona69571c2006-05-03 01:29:57 +0000835 const TargetData *TD = TM.getTargetData();
Anton Korobeynikov13b7d3d2007-02-04 23:27:42 +0000836 unsigned Opcode = CE->getOpcode();
837 switch (Opcode) {
Chris Lattnerc19ee612009-08-01 22:25:12 +0000838 case Instruction::Trunc:
839 case Instruction::ZExt:
840 case Instruction::SExt:
841 case Instruction::FPTrunc:
842 case Instruction::FPExt:
843 case Instruction::UIToFP:
844 case Instruction::SIToFP:
845 case Instruction::FPToUI:
846 case Instruction::FPToSI:
847 llvm_unreachable("FIXME: Don't support this constant cast expr");
Chris Lattnera80ba712004-08-16 23:15:22 +0000848 case Instruction::GetElementPtr: {
849 // generate a symbolic expression for the byte address
850 const Constant *ptrVal = CE->getOperand(0);
Chris Lattner7f6b9d22007-02-10 20:31:59 +0000851 SmallVector<Value*, 8> idxVec(CE->op_begin()+1, CE->op_end());
852 if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), &idxVec[0],
853 idxVec.size())) {
Chris Lattner4798bbe2009-02-05 06:55:21 +0000854 // Truncate/sext the offset to the pointer size.
855 if (TD->getPointerSizeInBits() != 64) {
856 int SExtAmount = 64-TD->getPointerSizeInBits();
857 Offset = (Offset << SExtAmount) >> SExtAmount;
858 }
859
Chris Lattner27e19212005-02-14 21:40:26 +0000860 if (Offset)
Dan Gohmand19a53b2008-06-30 22:03:41 +0000861 O << '(';
Chris Lattner25045bd2005-11-21 07:51:36 +0000862 EmitConstantValueOnly(ptrVal);
Chris Lattner27e19212005-02-14 21:40:26 +0000863 if (Offset > 0)
864 O << ") + " << Offset;
865 else if (Offset < 0)
866 O << ") - " << -Offset;
Chris Lattnera80ba712004-08-16 23:15:22 +0000867 } else {
Chris Lattner25045bd2005-11-21 07:51:36 +0000868 EmitConstantValueOnly(ptrVal);
Chris Lattnera80ba712004-08-16 23:15:22 +0000869 }
870 break;
871 }
Chris Lattnercb0a6812006-12-12 05:14:13 +0000872 case Instruction::BitCast:
873 return EmitConstantValueOnly(CE->getOperand(0));
874
Chris Lattnerddc94012006-12-12 05:18:19 +0000875 case Instruction::IntToPtr: {
876 // Handle casts to pointers by changing them into casts to the appropriate
877 // integer type. This promotes constant folding and simplifies this code.
878 Constant *Op = CE->getOperand(0);
Owen Anderson1d0be152009-08-13 21:58:54 +0000879 Op = ConstantExpr::getIntegerCast(Op, TD->getIntPtrType(CV->getContext()),
880 false/*ZExt*/);
Chris Lattnerddc94012006-12-12 05:18:19 +0000881 return EmitConstantValueOnly(Op);
882 }
883
884
885 case Instruction::PtrToInt: {
Chris Lattner4a6bd332006-07-29 01:57:19 +0000886 // Support only foldable casts to/from pointers that can be eliminated by
887 // changing the pointer to the appropriately sized integer type.
Chris Lattnera80ba712004-08-16 23:15:22 +0000888 Constant *Op = CE->getOperand(0);
Chris Lattnerddc94012006-12-12 05:18:19 +0000889 const Type *Ty = CE->getType();
Chris Lattnera80ba712004-08-16 23:15:22 +0000890
Chris Lattnerddc94012006-12-12 05:18:19 +0000891 // We can emit the pointer value into this slot if the slot is an
892 // integer slot greater or equal to the size of the pointer.
Chris Lattnerc19ee612009-08-01 22:25:12 +0000893 if (TD->getTypeAllocSize(Ty) == TD->getTypeAllocSize(Op->getType()))
Chris Lattner4a6bd332006-07-29 01:57:19 +0000894 return EmitConstantValueOnly(Op);
Nick Lewyckyd6227382008-08-08 06:34:07 +0000895
896 O << "((";
Chris Lattner25045bd2005-11-21 07:51:36 +0000897 EmitConstantValueOnly(Op);
Chris Lattnerc19ee612009-08-01 22:25:12 +0000898 APInt ptrMask =
899 APInt::getAllOnesValue(TD->getTypeAllocSizeInBits(Op->getType()));
Chris Lattnerfad86b02008-08-17 07:19:36 +0000900
901 SmallString<40> S;
902 ptrMask.toStringUnsigned(S);
Daniel Dunbardddfd342009-08-19 20:07:03 +0000903 O << ") & " << S.str() << ')';
Chris Lattnera80ba712004-08-16 23:15:22 +0000904 break;
905 }
906 case Instruction::Add:
Anton Korobeynikov13b7d3d2007-02-04 23:27:42 +0000907 case Instruction::Sub:
Anton Korobeynikovfeb88932007-12-18 20:53:41 +0000908 case Instruction::And:
909 case Instruction::Or:
910 case Instruction::Xor:
Dan Gohmand19a53b2008-06-30 22:03:41 +0000911 O << '(';
Chris Lattner25045bd2005-11-21 07:51:36 +0000912 EmitConstantValueOnly(CE->getOperand(0));
Dan Gohmand19a53b2008-06-30 22:03:41 +0000913 O << ')';
Anton Korobeynikovfeb88932007-12-18 20:53:41 +0000914 switch (Opcode) {
915 case Instruction::Add:
916 O << " + ";
917 break;
918 case Instruction::Sub:
919 O << " - ";
920 break;
921 case Instruction::And:
922 O << " & ";
923 break;
924 case Instruction::Or:
925 O << " | ";
926 break;
927 case Instruction::Xor:
928 O << " ^ ";
929 break;
930 default:
931 break;
932 }
Dan Gohmand19a53b2008-06-30 22:03:41 +0000933 O << '(';
Chris Lattner25045bd2005-11-21 07:51:36 +0000934 EmitConstantValueOnly(CE->getOperand(1));
Dan Gohmand19a53b2008-06-30 22:03:41 +0000935 O << ')';
Chris Lattnera80ba712004-08-16 23:15:22 +0000936 break;
937 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000938 llvm_unreachable("Unsupported operator!");
Chris Lattnera80ba712004-08-16 23:15:22 +0000939 }
940 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000941 llvm_unreachable("Unknown constant value!");
Chris Lattnera80ba712004-08-16 23:15:22 +0000942 }
943}
Chris Lattner1b7e2352004-08-17 06:36:49 +0000944
Chris Lattner2980cef2005-11-10 18:06:33 +0000945/// printAsCString - Print the specified array as a C compatible string, only if
Chris Lattner1b7e2352004-08-17 06:36:49 +0000946/// the predicate isString is true.
947///
David Greene71847812009-07-14 20:18:05 +0000948static void printAsCString(formatted_raw_ostream &O, const ConstantArray *CVA,
Chris Lattner2980cef2005-11-10 18:06:33 +0000949 unsigned LastElt) {
Chris Lattner1b7e2352004-08-17 06:36:49 +0000950 assert(CVA->isString() && "Array is not string compatible!");
951
Dan Gohmand19a53b2008-06-30 22:03:41 +0000952 O << '\"';
Chris Lattner2980cef2005-11-10 18:06:33 +0000953 for (unsigned i = 0; i != LastElt; ++i) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000954 unsigned char C =
Reid Spencerb83eb642006-10-20 07:07:24 +0000955 (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getZExtValue();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000956 printStringChar(O, C);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000957 }
Dan Gohmand19a53b2008-06-30 22:03:41 +0000958 O << '\"';
Chris Lattner1b7e2352004-08-17 06:36:49 +0000959}
960
Jeff Cohenc884db42006-05-02 01:16:28 +0000961/// EmitString - Emit a zero-byte-terminated string constant.
962///
963void AsmPrinter::EmitString(const ConstantArray *CVA) const {
964 unsigned NumElts = CVA->getNumOperands();
Chris Lattner33adcfb2009-08-22 21:43:10 +0000965 if (MAI->getAscizDirective() && NumElts &&
Reid Spencerb83eb642006-10-20 07:07:24 +0000966 cast<ConstantInt>(CVA->getOperand(NumElts-1))->getZExtValue() == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000967 O << MAI->getAscizDirective();
Jeff Cohenc884db42006-05-02 01:16:28 +0000968 printAsCString(O, CVA, NumElts-1);
969 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000970 O << MAI->getAsciiDirective();
Jeff Cohenc884db42006-05-02 01:16:28 +0000971 printAsCString(O, CVA, NumElts);
972 }
Dan Gohmand19a53b2008-06-30 22:03:41 +0000973 O << '\n';
Jeff Cohenc884db42006-05-02 01:16:28 +0000974}
975
Sanjiv Guptad3d96572009-04-28 16:34:20 +0000976void AsmPrinter::EmitGlobalConstantArray(const ConstantArray *CVA,
977 unsigned AddrSpace) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000978 if (CVA->isString()) {
979 EmitString(CVA);
980 } else { // Not a string. Print the values in successive locations
981 for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
Sanjiv Guptad3d96572009-04-28 16:34:20 +0000982 EmitGlobalConstant(CVA->getOperand(i), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +0000983 }
984}
985
986void AsmPrinter::EmitGlobalConstantVector(const ConstantVector *CP) {
987 const VectorType *PTy = CP->getType();
988
989 for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
990 EmitGlobalConstant(CP->getOperand(I));
991}
992
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +0000993void AsmPrinter::EmitGlobalConstantStruct(const ConstantStruct *CVS,
994 unsigned AddrSpace) {
Dan Gohman00d448a2008-12-22 21:14:27 +0000995 // Print the fields in successive locations. Pad to align if needed!
996 const TargetData *TD = TM.getTargetData();
Duncan Sands777d2302009-05-09 07:06:46 +0000997 unsigned Size = TD->getTypeAllocSize(CVS->getType());
Dan Gohman00d448a2008-12-22 21:14:27 +0000998 const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
999 uint64_t sizeSoFar = 0;
1000 for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
1001 const Constant* field = CVS->getOperand(i);
1002
1003 // Check if padding is needed and insert one or more 0s.
Duncan Sands777d2302009-05-09 07:06:46 +00001004 uint64_t fieldSize = TD->getTypeAllocSize(field->getType());
Dan Gohman00d448a2008-12-22 21:14:27 +00001005 uint64_t padSize = ((i == e-1 ? Size : cvsLayout->getElementOffset(i+1))
1006 - cvsLayout->getElementOffset(i)) - fieldSize;
1007 sizeSoFar += fieldSize + padSize;
1008
1009 // Now print the actual field value.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001010 EmitGlobalConstant(field, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001011
1012 // Insert padding - this may include padding to increase the size of the
1013 // current field up to the ABI size (if the struct is not packed) as well
1014 // as padding to ensure that the next field starts at the right offset.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001015 EmitZeros(padSize, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001016 }
1017 assert(sizeSoFar == cvsLayout->getSizeInBytes() &&
1018 "Layout of constant struct may be incorrect!");
1019}
1020
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001021void AsmPrinter::EmitGlobalConstantFP(const ConstantFP *CFP,
1022 unsigned AddrSpace) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001023 // FP Constants are printed as integer constants to avoid losing
1024 // precision...
Owen Anderson1d0be152009-08-13 21:58:54 +00001025 LLVMContext &Context = CFP->getContext();
Dan Gohman00d448a2008-12-22 21:14:27 +00001026 const TargetData *TD = TM.getTargetData();
Owen Anderson1d0be152009-08-13 21:58:54 +00001027 if (CFP->getType() == Type::getDoubleTy(Context)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001028 double Val = CFP->getValueAPF().convertToDouble(); // for comment only
1029 uint64_t i = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Chris Lattner33adcfb2009-08-22 21:43:10 +00001030 if (MAI->getData64bitsDirective(AddrSpace)) {
1031 O << MAI->getData64bitsDirective(AddrSpace) << i;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001032 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001033 O.PadToColumn(MAI->getCommentColumn());
1034 O << MAI->getCommentString() << " double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001035 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001036 O << '\n';
1037 } else if (TD->isBigEndian()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001038 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001039 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001040 O.PadToColumn(MAI->getCommentColumn());
1041 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001042 << " most significant word of double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001043 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001044 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001045 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001046 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001047 O.PadToColumn(MAI->getCommentColumn());
1048 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001049 << " least significant word of double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001050 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001051 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001052 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001053 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001054 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001055 O.PadToColumn(MAI->getCommentColumn());
1056 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001057 << " least significant word of double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001058 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001059 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001060 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001061 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001062 O.PadToColumn(MAI->getCommentColumn());
1063 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001064 << " most significant word of double " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001065 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001066 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001067 }
1068 return;
Owen Anderson1d0be152009-08-13 21:58:54 +00001069 } else if (CFP->getType() == Type::getFloatTy(Context)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001070 float Val = CFP->getValueAPF().convertToFloat(); // for comment only
Chris Lattner33adcfb2009-08-22 21:43:10 +00001071 O << MAI->getData32bitsDirective(AddrSpace)
Evan Chengf1c0ae92009-03-24 00:17:40 +00001072 << CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Dan Gohmana12e9d72009-08-12 18:32:22 +00001073 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001074 O.PadToColumn(MAI->getCommentColumn());
1075 O << MAI->getCommentString() << " float " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001076 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001077 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001078 return;
Owen Anderson1d0be152009-08-13 21:58:54 +00001079 } else if (CFP->getType() == Type::getX86_FP80Ty(Context)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001080 // all long double variants are printed as hex
1081 // api needed to prevent premature destruction
1082 APInt api = CFP->getValueAPF().bitcastToAPInt();
1083 const uint64_t *p = api.getRawData();
1084 // Convert to double so we can print the approximate val as a comment.
1085 APFloat DoubleVal = CFP->getValueAPF();
1086 bool ignored;
1087 DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
1088 &ignored);
1089 if (TD->isBigEndian()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001090 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[1]);
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()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001094 << " most significant halfword of x86_fp80 ~"
Evan Chengf1c0ae92009-03-24 00:17:40 +00001095 << DoubleVal.convertToDouble();
Dan Gohmana12e9d72009-08-12 18:32:22 +00001096 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001097 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001098 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 48);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001099 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001100 O.PadToColumn(MAI->getCommentColumn());
1101 O << MAI->getCommentString() << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001102 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001103 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001104 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001105 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001106 O.PadToColumn(MAI->getCommentColumn());
1107 O << MAI->getCommentString() << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001108 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001109 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001110 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 16);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001111 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001112 O.PadToColumn(MAI->getCommentColumn());
1113 O << MAI->getCommentString() << " next halfword";
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]);
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()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001120 << " least significant halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001121 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001122 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001123 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001124 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001125 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001126 O.PadToColumn(MAI->getCommentColumn());
1127 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001128 << " least significant halfword of x86_fp80 ~"
Evan Chengf1c0ae92009-03-24 00:17:40 +00001129 << DoubleVal.convertToDouble();
Dan Gohmana12e9d72009-08-12 18:32:22 +00001130 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001131 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001132 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 16);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001133 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001134 O.PadToColumn(MAI->getCommentColumn());
1135 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001136 << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001137 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001138 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001139 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001140 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001141 O.PadToColumn(MAI->getCommentColumn());
1142 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001143 << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001144 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001145 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001146 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 48);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001147 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001148 O.PadToColumn(MAI->getCommentColumn());
1149 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001150 << " next halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001151 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001152 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001153 O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[1]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001154 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001155 O.PadToColumn(MAI->getCommentColumn());
1156 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001157 << " most significant halfword";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001158 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001159 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001160 }
Owen Anderson1d0be152009-08-13 21:58:54 +00001161 EmitZeros(TD->getTypeAllocSize(Type::getX86_FP80Ty(Context)) -
1162 TD->getTypeStoreSize(Type::getX86_FP80Ty(Context)), AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001163 return;
Owen Anderson1d0be152009-08-13 21:58:54 +00001164 } else if (CFP->getType() == Type::getPPC_FP128Ty(Context)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001165 // all long double variants are printed as hex
1166 // api needed to prevent premature destruction
1167 APInt api = CFP->getValueAPF().bitcastToAPInt();
1168 const uint64_t *p = api.getRawData();
1169 if (TD->isBigEndian()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001170 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001171 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001172 O.PadToColumn(MAI->getCommentColumn());
1173 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001174 << " most significant word of ppc_fp128";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001175 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001176 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001177 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001178 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001179 O.PadToColumn(MAI->getCommentColumn());
1180 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001181 << " next word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001182 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001183 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001184 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001185 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001186 O.PadToColumn(MAI->getCommentColumn());
1187 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001188 << " next word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001189 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001190 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001191 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001192 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001193 O.PadToColumn(MAI->getCommentColumn());
1194 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001195 << " least significant word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001196 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001197 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001198 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001199 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001200 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001201 O.PadToColumn(MAI->getCommentColumn());
1202 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001203 << " least significant word of ppc_fp128";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001204 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001205 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001206 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001207 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001208 O.PadToColumn(MAI->getCommentColumn());
1209 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001210 << " next word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001211 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001212 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001213 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0]);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001214 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001215 O.PadToColumn(MAI->getCommentColumn());
1216 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001217 << " next word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001218 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001219 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001220 O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0] >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001221 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001222 O.PadToColumn(MAI->getCommentColumn());
1223 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001224 << " most significant word";
Dan Gohmana12e9d72009-08-12 18:32:22 +00001225 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001226 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001227 }
1228 return;
Torok Edwinc23197a2009-07-14 16:55:14 +00001229 } else llvm_unreachable("Floating point constant type not handled");
Dan Gohman00d448a2008-12-22 21:14:27 +00001230}
1231
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001232void AsmPrinter::EmitGlobalConstantLargeInt(const ConstantInt *CI,
1233 unsigned AddrSpace) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001234 const TargetData *TD = TM.getTargetData();
1235 unsigned BitWidth = CI->getBitWidth();
1236 assert(isPowerOf2_32(BitWidth) &&
1237 "Non-power-of-2-sized integers not handled!");
1238
1239 // We don't expect assemblers to support integer data directives
1240 // for more than 64 bits, so we emit the data in at most 64-bit
1241 // quantities at a time.
1242 const uint64_t *RawData = CI->getValue().getRawData();
1243 for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
1244 uint64_t Val;
1245 if (TD->isBigEndian())
1246 Val = RawData[e - i - 1];
1247 else
1248 Val = RawData[i];
1249
Chris Lattner33adcfb2009-08-22 21:43:10 +00001250 if (MAI->getData64bitsDirective(AddrSpace))
1251 O << MAI->getData64bitsDirective(AddrSpace) << Val << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001252 else if (TD->isBigEndian()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001253 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001254 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001255 O.PadToColumn(MAI->getCommentColumn());
1256 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001257 << " most significant half of i64 " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001258 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001259 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001260 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001261 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001262 O.PadToColumn(MAI->getCommentColumn());
1263 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001264 << " least significant half of i64 " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001265 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001266 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001267 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001268 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001269 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001270 O.PadToColumn(MAI->getCommentColumn());
1271 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001272 << " least significant half of i64 " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001273 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001274 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001275 O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val >> 32);
Dan Gohmana12e9d72009-08-12 18:32:22 +00001276 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001277 O.PadToColumn(MAI->getCommentColumn());
1278 O << MAI->getCommentString()
Dan Gohmancf20ac42009-08-13 01:36:44 +00001279 << " most significant half of i64 " << Val;
Dan Gohmana12e9d72009-08-12 18:32:22 +00001280 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001281 O << '\n';
Dan Gohman00d448a2008-12-22 21:14:27 +00001282 }
1283 }
1284}
1285
Chris Lattner25045bd2005-11-21 07:51:36 +00001286/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001287void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
Owen Andersona69571c2006-05-03 01:29:57 +00001288 const TargetData *TD = TM.getTargetData();
Dan Gohman00d448a2008-12-22 21:14:27 +00001289 const Type *type = CV->getType();
Duncan Sands777d2302009-05-09 07:06:46 +00001290 unsigned Size = TD->getTypeAllocSize(type);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001291
Chris Lattnerbd1d3822004-10-16 18:19:26 +00001292 if (CV->isNullValue() || isa<UndefValue>(CV)) {
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001293 EmitZeros(Size, AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001294 return;
1295 } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
Sanjiv Guptad3d96572009-04-28 16:34:20 +00001296 EmitGlobalConstantArray(CVA , AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001297 return;
1298 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001299 EmitGlobalConstantStruct(CVS, AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001300 return;
1301 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001302 EmitGlobalConstantFP(CFP, AddrSpace);
Dan Gohman00d448a2008-12-22 21:14:27 +00001303 return;
1304 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1305 // Small integers are handled below; large integers are handled here.
1306 if (Size > 4) {
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001307 EmitGlobalConstantLargeInt(CI, AddrSpace);
Chris Lattner1b7e2352004-08-17 06:36:49 +00001308 return;
1309 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00001310 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
Dan Gohman00d448a2008-12-22 21:14:27 +00001311 EmitGlobalConstantVector(CP);
Nate Begeman8cfa57b2005-12-06 06:18:55 +00001312 return;
Chris Lattner1b7e2352004-08-17 06:36:49 +00001313 }
1314
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001315 printDataDirective(type, AddrSpace);
Chris Lattner25045bd2005-11-21 07:51:36 +00001316 EmitConstantValueOnly(CV);
Evan Chengf1c0ae92009-03-24 00:17:40 +00001317 if (VerboseAsm) {
1318 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1319 SmallString<40> S;
1320 CI->getValue().toStringUnsigned(S, 16);
Chris Lattner33adcfb2009-08-22 21:43:10 +00001321 O.PadToColumn(MAI->getCommentColumn());
1322 O << MAI->getCommentString() << " 0x" << S.str();
Evan Chengf1c0ae92009-03-24 00:17:40 +00001323 }
Scott Micheleefc8452008-06-03 15:39:51 +00001324 }
Dan Gohmand19a53b2008-06-30 22:03:41 +00001325 O << '\n';
Chris Lattner1b7e2352004-08-17 06:36:49 +00001326}
Chris Lattner0264d1a2006-01-27 02:10:10 +00001327
Chris Lattnerfad86b02008-08-17 07:19:36 +00001328void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001329 // Target doesn't support this yet!
Torok Edwinc23197a2009-07-14 16:55:14 +00001330 llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
Evan Chengd6594ae2006-09-12 21:00:35 +00001331}
1332
Chris Lattner3ce9b672006-09-26 23:59:50 +00001333/// PrintSpecial - Print information related to the specified machine instr
1334/// that is independent of the operand, and may be independent of the instr
1335/// itself. This can be useful for portably encoding the comment character
1336/// or other bits of target-specific knowledge into the asmstrings. The
1337/// syntax used is ${:comment}. Targets can override this to add support
1338/// for their own strange codes.
Chris Lattner3e0cc262009-03-10 05:37:13 +00001339void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001340 if (!strcmp(Code, "private")) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001341 O << MAI->getPrivateGlobalPrefix();
Chris Lattnerbae02cf2006-09-27 00:06:07 +00001342 } else if (!strcmp(Code, "comment")) {
Evan Chengf1c0ae92009-03-24 00:17:40 +00001343 if (VerboseAsm)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001344 O << MAI->getCommentString();
Chris Lattner3ce9b672006-09-26 23:59:50 +00001345 } else if (!strcmp(Code, "uid")) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001346 // Comparing the address of MI isn't sufficient, because machineinstrs may
1347 // be allocated to the same address across functions.
1348 const Function *ThisF = MI->getParent()->getParent()->getFunction();
1349
Owen Andersonbd58edf2009-06-24 22:28:12 +00001350 // If this is a new LastFn instruction, bump the counter.
1351 if (LastMI != MI || LastFn != ThisF) {
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001352 ++Counter;
1353 LastMI = MI;
Owen Andersonbd58edf2009-06-24 22:28:12 +00001354 LastFn = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +00001355 }
Chris Lattner3ce9b672006-09-26 23:59:50 +00001356 O << Counter;
1357 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +00001358 std::string msg;
1359 raw_string_ostream Msg(msg);
1360 Msg << "Unknown special formatter '" << Code
Bill Wendlinge8156192006-12-07 01:30:32 +00001361 << "' for machine instr: " << *MI;
Torok Edwin7d696d82009-07-11 13:10:19 +00001362 llvm_report_error(Msg.str());
Chris Lattner3ce9b672006-09-26 23:59:50 +00001363 }
1364}
1365
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001366/// processDebugLoc - Processes the debug information of each machine
1367/// instruction's DebugLoc.
1368void AsmPrinter::processDebugLoc(DebugLoc DL) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001369 if (!MAI || !DW)
Chris Lattnerd2503292009-08-05 04:09:18 +00001370 return;
1371
Chris Lattner33adcfb2009-08-22 21:43:10 +00001372 if (MAI->doesSupportDebugInformation() && DW->ShouldEmitDwarfDebug()) {
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001373 if (!DL.isUnknown()) {
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001374 DebugLocTuple CurDLT = MF->getDebugLocTuple(DL);
1375
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001376 if (CurDLT.CompileUnit != 0 && PrevDLT != CurDLT) {
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001377 printLabel(DW->RecordSourceLine(CurDLT.Line, CurDLT.Col,
1378 DICompileUnit(CurDLT.CompileUnit)));
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001379 O << '\n';
1380 }
Argyrios Kyrtzidiscd762402009-05-07 13:55:51 +00001381
1382 PrevDLT = CurDLT;
1383 }
1384 }
1385}
Chris Lattner3ce9b672006-09-26 23:59:50 +00001386
Chris Lattner0264d1a2006-01-27 02:10:10 +00001387/// printInlineAsm - This method formats and prints the specified machine
1388/// instruction that is an inline asm.
1389void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001390 unsigned NumOperands = MI->getNumOperands();
1391
1392 // Count the number of register definitions.
1393 unsigned NumDefs = 0;
Dan Gohmand735b802008-10-03 15:45:36 +00001394 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
Chris Lattner67942f52006-09-05 20:02:51 +00001395 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001396 assert(NumDefs != NumOperands-1 && "No asm string?");
1397
Dan Gohmand735b802008-10-03 15:45:36 +00001398 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +00001399
1400 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +00001401 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +00001402
Dale Johannesenba2a0b92008-01-29 02:21:21 +00001403 // If this asmstr is empty, just print the #APP/#NOAPP markers.
1404 // These are useful to see where empty asm's wound up.
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001405 if (AsmStr[0] == 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001406 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1407 O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001408 return;
1409 }
1410
Chris Lattner33adcfb2009-08-22 21:43:10 +00001411 O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +00001412
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001413 // The variant of the current asmprinter.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001414 int AsmPrinterVariant = MAI->getAssemblerDialect();
Bill Wendlingeb9a42c2007-01-16 03:42:04 +00001415
Chris Lattner66099132006-02-01 22:41:11 +00001416 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1417 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +00001418
Chris Lattner66099132006-02-01 22:41:11 +00001419 while (*LastEmitted) {
1420 switch (*LastEmitted) {
1421 default: {
1422 // Not a special case, emit the string section literally.
1423 const char *LiteralEnd = LastEmitted+1;
1424 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +00001425 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +00001426 ++LiteralEnd;
1427 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1428 O.write(LastEmitted, LiteralEnd-LastEmitted);
1429 LastEmitted = LiteralEnd;
1430 break;
1431 }
Chris Lattner1c059972006-05-05 21:47:05 +00001432 case '\n':
1433 ++LastEmitted; // Consume newline character.
Dan Gohmand19a53b2008-06-30 22:03:41 +00001434 O << '\n'; // Indent code with newline.
Chris Lattner1c059972006-05-05 21:47:05 +00001435 break;
Chris Lattner66099132006-02-01 22:41:11 +00001436 case '$': {
1437 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001438 bool Done = true;
1439
1440 // Handle escapes.
1441 switch (*LastEmitted) {
1442 default: Done = false; break;
1443 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +00001444 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1445 O << '$';
1446 ++LastEmitted; // Consume second '$' character.
1447 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001448 case '(': // $( -> same as GCC's { character.
1449 ++LastEmitted; // Consume '(' character.
1450 if (CurVariant != -1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001451 llvm_report_error("Nested variants found in inline asm string: '"
1452 + std::string(AsmStr) + "'");
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001453 }
1454 CurVariant = 0; // We're in the first variant now.
1455 break;
1456 case '|':
1457 ++LastEmitted; // consume '|' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001458 if (CurVariant == -1)
1459 O << '|'; // this is gcc's behavior for | outside a variant
1460 else
1461 ++CurVariant; // We're in the next variant.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001462 break;
1463 case ')': // $) -> same as GCC's } char.
1464 ++LastEmitted; // consume ')' character.
Dale Johannesen8b1e0542008-10-10 21:04:42 +00001465 if (CurVariant == -1)
1466 O << '}'; // this is gcc's behavior for } outside a variant
1467 else
1468 CurVariant = -1;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001469 break;
Chris Lattner66099132006-02-01 22:41:11 +00001470 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +00001471 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +00001472
1473 bool HasCurlyBraces = false;
1474 if (*LastEmitted == '{') { // ${variable}
1475 ++LastEmitted; // Consume '{' character.
1476 HasCurlyBraces = true;
1477 }
1478
Chris Lattner3e0cc262009-03-10 05:37:13 +00001479 // If we have ${:foo}, then this is not a real operand reference, it is a
1480 // "magic" string reference, just like in .td files. Arrange to call
1481 // PrintSpecial.
1482 if (HasCurlyBraces && *LastEmitted == ':') {
1483 ++LastEmitted;
1484 const char *StrStart = LastEmitted;
1485 const char *StrEnd = strchr(StrStart, '}');
1486 if (StrEnd == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001487 llvm_report_error("Unterminated ${:foo} operand in inline asm string: '"
1488 + std::string(AsmStr) + "'");
Chris Lattner3e0cc262009-03-10 05:37:13 +00001489 }
1490
1491 std::string Val(StrStart, StrEnd);
1492 PrintSpecial(MI, Val.c_str());
1493 LastEmitted = StrEnd+1;
1494 break;
1495 }
1496
Chris Lattner66099132006-02-01 22:41:11 +00001497 const char *IDStart = LastEmitted;
1498 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +00001499 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +00001500 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1501 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001502 llvm_report_error("Bad $ operand number in inline asm string: '"
1503 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001504 }
1505 LastEmitted = IDEnd;
1506
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001507 char Modifier[2] = { 0, 0 };
1508
Chris Lattner66099132006-02-01 22:41:11 +00001509 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001510 // If we have curly braces, check for a modifier character. This
1511 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1512 if (*LastEmitted == ':') {
1513 ++LastEmitted; // Consume ':' character.
1514 if (*LastEmitted == 0) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001515 llvm_report_error("Bad ${:} expression in inline asm string: '"
1516 + std::string(AsmStr) + "'");
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001517 }
1518
1519 Modifier[0] = *LastEmitted;
1520 ++LastEmitted; // Consume modifier character.
1521 }
1522
Chris Lattner66099132006-02-01 22:41:11 +00001523 if (*LastEmitted != '}') {
Torok Edwin7d696d82009-07-11 13:10:19 +00001524 llvm_report_error("Bad ${} expression in inline asm string: '"
1525 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001526 }
1527 ++LastEmitted; // Consume '}' character.
1528 }
1529
1530 if ((unsigned)Val >= NumOperands-1) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001531 llvm_report_error("Invalid $ operand number in inline asm string: '"
1532 + std::string(AsmStr) + "'");
Chris Lattner66099132006-02-01 22:41:11 +00001533 }
1534
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001535 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001536 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001537 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1538 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001539
1540 bool Error = false;
1541
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001542 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001543 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001544 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner9e330492007-12-30 20:50:28 +00001545 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Evan Cheng697cbbf2009-03-20 18:03:34 +00001546 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001547 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001548
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001549 if (OpNo >= MI->getNumOperands()) {
1550 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001551 } else {
Chris Lattner9e330492007-12-30 20:50:28 +00001552 unsigned OpFlags = MI->getOperand(OpNo).getImm();
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001553 ++OpNo; // Skip over the ID number.
1554
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001555 if (Modifier[0]=='l') // labels are target independent
Chris Lattner325d3dc2009-09-13 17:14:04 +00001556 GetMBBSymbol(MI->getOperand(OpNo).getMBB()
1557 ->getNumber())->print(O, MAI);
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001558 else {
1559 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
Dale Johannesen86b49f82008-09-24 01:07:17 +00001560 if ((OpFlags & 7) == 4) {
Dale Johanneseneb57ea72007-11-05 21:20:28 +00001561 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1562 Modifier[0] ? Modifier : 0);
1563 } else {
1564 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1565 Modifier[0] ? Modifier : 0);
1566 }
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001567 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001568 }
1569 if (Error) {
Torok Edwin7d696d82009-07-11 13:10:19 +00001570 std::string msg;
1571 raw_string_ostream Msg(msg);
1572 Msg << "Invalid operand found in inline asm: '"
Bill Wendlinge8156192006-12-07 01:30:32 +00001573 << AsmStr << "'\n";
Torok Edwin7d696d82009-07-11 13:10:19 +00001574 MI->print(Msg);
1575 llvm_report_error(Msg.str());
Chris Lattner66099132006-02-01 22:41:11 +00001576 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001577 }
Chris Lattner66099132006-02-01 22:41:11 +00001578 break;
1579 }
Chris Lattner66099132006-02-01 22:41:11 +00001580 }
1581 }
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001582 O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
Chris Lattner66099132006-02-01 22:41:11 +00001583}
1584
Evan Chengda47e6e2008-03-15 00:03:38 +00001585/// printImplicitDef - This method prints the specified machine instruction
1586/// that is an implicit def.
1587void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001588 if (!VerboseAsm) return;
1589 O.PadToColumn(MAI->getCommentColumn());
1590 O << MAI->getCommentString() << " implicit-def: "
Chris Lattnerf806c232009-09-13 19:48:37 +00001591 << TRI->getName(MI->getOperand(0).getReg());
Evan Chengda47e6e2008-03-15 00:03:38 +00001592}
1593
Jim Laskey1ee29252007-01-26 14:34:52 +00001594/// printLabel - This method prints a local label used by debug and
1595/// exception handling tables.
1596void AsmPrinter::printLabel(const MachineInstr *MI) const {
Dan Gohman528bc022008-07-01 00:16:26 +00001597 printLabel(MI->getOperand(0).getImm());
Jim Laskey1ee29252007-01-26 14:34:52 +00001598}
1599
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001600void AsmPrinter::printLabel(unsigned Id) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001601 O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
Evan Cheng1b08bbc2008-02-01 09:10:45 +00001602}
1603
Chris Lattner66099132006-02-01 22:41:11 +00001604/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1605/// instruction, using the specified assembler variant. Targets should
1606/// overried this to format as appropriate.
1607bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001608 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001609 // Target doesn't support this yet!
1610 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001611}
Chris Lattnerdd260332006-02-24 20:21:58 +00001612
1613bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1614 unsigned AsmVariant,
1615 const char *ExtraCode) {
1616 // Target doesn't support this yet!
1617 return true;
1618}
Nate Begeman37efe672006-04-22 18:53:45 +00001619
Chris Lattner7cb384d2009-09-12 23:02:08 +00001620MCSymbol *AsmPrinter::GetMBBSymbol(unsigned MBBID) const {
1621 SmallString<60> Name;
1622 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "BB"
1623 << getFunctionNumber() << '_' << MBBID;
1624
1625 return OutContext.GetOrCreateSymbol(Name.str());
1626}
1627
1628
Chris Lattner70a54c02009-09-13 18:25:37 +00001629/// EmitBasicBlockStart - This method prints the label for the specified
1630/// MachineBasicBlock, an alignment (if present) and a comment describing
1631/// it if appropriate.
Chris Lattner662316c2009-09-14 03:15:54 +00001632void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
Chris Lattner70a54c02009-09-13 18:25:37 +00001633 if (unsigned Align = MBB->getAlignment())
1634 EmitAlignment(Log2_32(Align));
Evan Chengfb8075d2008-02-28 00:43:03 +00001635
Chris Lattner7cb384d2009-09-12 23:02:08 +00001636 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
Chris Lattner662316c2009-09-14 03:15:54 +00001637 O << ':';
Chris Lattner70a54c02009-09-13 18:25:37 +00001638
1639 if (VerboseAsm) {
Dan Gohmane45da0d2009-08-12 18:47:05 +00001640 if (const BasicBlock *BB = MBB->getBasicBlock())
1641 if (BB->hasName()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001642 O.PadToColumn(MAI->getCommentColumn());
1643 O << MAI->getCommentString() << ' ';
Dan Gohman46d50562009-08-12 20:56:56 +00001644 WriteAsOperand(O, BB, /*PrintType=*/false);
Dan Gohmane45da0d2009-08-12 18:47:05 +00001645 }
David Greeneb71d1b22009-08-10 16:38:07 +00001646
Chris Lattner70a54c02009-09-13 18:25:37 +00001647 EmitComments(*MBB);
David Greeneb71d1b22009-08-10 16:38:07 +00001648 }
Nate Begeman37efe672006-04-22 18:53:45 +00001649}
Nate Begeman52a51e382006-08-12 21:29:52 +00001650
Evan Chengcc415862007-11-09 01:32:10 +00001651/// printPICJumpTableSetLabel - This method prints a set label for the
1652/// specified MachineBasicBlock for a jumptable entry.
1653void AsmPrinter::printPICJumpTableSetLabel(unsigned uid,
1654 const MachineBasicBlock *MBB) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001655 if (!MAI->getSetDirective())
Nate Begeman52a51e382006-08-12 21:29:52 +00001656 return;
1657
Chris Lattner33adcfb2009-08-22 21:43:10 +00001658 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
Evan Cheng347d39f2007-10-14 05:57:21 +00001659 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Chris Lattner325d3dc2009-09-13 17:14:04 +00001660 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
Chris Lattner33adcfb2009-08-22 21:43:10 +00001661 O << '-' << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Evan Cheng347d39f2007-10-14 05:57:21 +00001662 << '_' << uid << '\n';
Nate Begeman52a51e382006-08-12 21:29:52 +00001663}
Evan Chengd6594ae2006-09-12 21:00:35 +00001664
Evan Chengcc415862007-11-09 01:32:10 +00001665void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
1666 const MachineBasicBlock *MBB) const {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001667 if (!MAI->getSetDirective())
Evan Cheng41349c12006-11-01 09:23:08 +00001668 return;
1669
Chris Lattner33adcfb2009-08-22 21:43:10 +00001670 O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
Evan Cheng347d39f2007-10-14 05:57:21 +00001671 << getFunctionNumber() << '_' << uid << '_' << uid2
1672 << "_set_" << MBB->getNumber() << ',';
Chris Lattner325d3dc2009-09-13 17:14:04 +00001673 GetMBBSymbol(MBB->getNumber())->print(O, MAI);
Chris Lattner33adcfb2009-08-22 21:43:10 +00001674 O << '-' << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Evan Cheng347d39f2007-10-14 05:57:21 +00001675 << '_' << uid << '_' << uid2 << '\n';
Evan Cheng41349c12006-11-01 09:23:08 +00001676}
1677
Evan Chengd6594ae2006-09-12 21:00:35 +00001678/// printDataDirective - This method prints the asm directive for the
1679/// specified type.
Sanjiv Guptac8d7bc82009-01-30 04:25:10 +00001680void AsmPrinter::printDataDirective(const Type *type, unsigned AddrSpace) {
Evan Chengd6594ae2006-09-12 21:00:35 +00001681 const TargetData *TD = TM.getTargetData();
1682 switch (type->getTypeID()) {
Chris Lattnerf1cfea22009-07-15 04:42:49 +00001683 case Type::FloatTyID: case Type::DoubleTyID:
1684 case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID:
1685 assert(0 && "Should have already output floating point constant.");
1686 default:
1687 assert(0 && "Can't handle printing this type of thing");
Reid Spencera54b7cb2007-01-12 07:05:14 +00001688 case Type::IntegerTyID: {
1689 unsigned BitWidth = cast<IntegerType>(type)->getBitWidth();
1690 if (BitWidth <= 8)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001691 O << MAI->getData8bitsDirective(AddrSpace);
Reid Spencera54b7cb2007-01-12 07:05:14 +00001692 else if (BitWidth <= 16)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001693 O << MAI->getData16bitsDirective(AddrSpace);
Reid Spencera54b7cb2007-01-12 07:05:14 +00001694 else if (BitWidth <= 32)
Chris Lattner33adcfb2009-08-22 21:43:10 +00001695 O << MAI->getData32bitsDirective(AddrSpace);
Reid Spencera54b7cb2007-01-12 07:05:14 +00001696 else if (BitWidth <= 64) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001697 assert(MAI->getData64bitsDirective(AddrSpace) &&
Reid Spencera54b7cb2007-01-12 07:05:14 +00001698 "Target cannot handle 64-bit constant exprs!");
Chris Lattner33adcfb2009-08-22 21:43:10 +00001699 O << MAI->getData64bitsDirective(AddrSpace);
Dan Gohman82f94f12008-09-08 16:40:13 +00001700 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00001701 llvm_unreachable("Target cannot handle given data directive width!");
Reid Spencera54b7cb2007-01-12 07:05:14 +00001702 }
Evan Chengd6594ae2006-09-12 21:00:35 +00001703 break;
Reid Spencera54b7cb2007-01-12 07:05:14 +00001704 }
Evan Chengd6594ae2006-09-12 21:00:35 +00001705 case Type::PointerTyID:
1706 if (TD->getPointerSize() == 8) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001707 assert(MAI->getData64bitsDirective(AddrSpace) &&
Evan Chengd6594ae2006-09-12 21:00:35 +00001708 "Target cannot handle 64-bit pointer exprs!");
Chris Lattner33adcfb2009-08-22 21:43:10 +00001709 O << MAI->getData64bitsDirective(AddrSpace);
Sanjiv Guptafcc6f152009-01-22 10:14:21 +00001710 } else if (TD->getPointerSize() == 2) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001711 O << MAI->getData16bitsDirective(AddrSpace);
Sanjiv Guptafcc6f152009-01-22 10:14:21 +00001712 } else if (TD->getPointerSize() == 1) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001713 O << MAI->getData8bitsDirective(AddrSpace);
Reid Spencera54b7cb2007-01-12 07:05:14 +00001714 } else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001715 O << MAI->getData32bitsDirective(AddrSpace);
Evan Chengd6594ae2006-09-12 21:00:35 +00001716 }
Evan Chengd6594ae2006-09-12 21:00:35 +00001717 break;
Evan Chengd6594ae2006-09-12 21:00:35 +00001718 }
1719}
Dale Johannesen4c3a5f82007-02-16 01:54:53 +00001720
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +00001721void AsmPrinter::printVisibility(const std::string& Name,
1722 unsigned Visibility) const {
1723 if (Visibility == GlobalValue::HiddenVisibility) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001724 if (const char *Directive = MAI->getHiddenDirective())
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +00001725 O << Directive << Name << '\n';
1726 } else if (Visibility == GlobalValue::ProtectedVisibility) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001727 if (const char *Directive = MAI->getProtectedDirective())
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +00001728 O << Directive << Name << '\n';
1729 }
1730}
Gordon Henriksenc317a602008-08-17 12:08:44 +00001731
Anton Korobeynikov7751ad92008-11-22 16:15:34 +00001732void AsmPrinter::printOffset(int64_t Offset) const {
1733 if (Offset > 0)
1734 O << '+' << Offset;
1735 else if (Offset < 0)
1736 O << Offset;
1737}
1738
Daniel Dunbar575327b2009-08-14 03:43:57 +00001739void AsmPrinter::printMCInst(const MCInst *MI) {
1740 llvm_unreachable("MCInst printing unavailable on this target!");
1741}
1742
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001743GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1744 if (!S->usesMetadata())
Gordon Henriksenc317a602008-08-17 12:08:44 +00001745 return 0;
1746
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001747 gcp_iterator GCPI = GCMetadataPrinters.find(S);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001748 if (GCPI != GCMetadataPrinters.end())
1749 return GCPI->second;
1750
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001751 const char *Name = S->getName().c_str();
Gordon Henriksenc317a602008-08-17 12:08:44 +00001752
1753 for (GCMetadataPrinterRegistry::iterator
1754 I = GCMetadataPrinterRegistry::begin(),
1755 E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1756 if (strcmp(Name, I->getName()) == 0) {
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001757 GCMetadataPrinter *GMP = I->instantiate();
1758 GMP->S = S;
1759 GCMetadataPrinters.insert(std::make_pair(S, GMP));
1760 return GMP;
Gordon Henriksenc317a602008-08-17 12:08:44 +00001761 }
1762
Chris Lattner103289e2009-08-23 07:19:13 +00001763 errs() << "no GCMetadataPrinter registered for GC: " << Name << "\n";
Torok Edwinc23197a2009-07-14 16:55:14 +00001764 llvm_unreachable(0);
Gordon Henriksenc317a602008-08-17 12:08:44 +00001765}
David Greene014700c2009-07-13 20:25:48 +00001766
1767/// EmitComments - Pretty-print comments for instructions
Chris Lattner5f51cd02009-08-07 23:42:01 +00001768void AsmPrinter::EmitComments(const MachineInstr &MI) const {
Chris Lattnerc5ea2632009-09-09 23:14:36 +00001769 assert(VerboseAsm && !MI.getDebugLoc().isUnknown());
Chris Lattner5f51cd02009-08-07 23:42:01 +00001770
1771 DebugLocTuple DLT = MF->getDebugLocTuple(MI.getDebugLoc());
David Greene3ac1ab82009-07-16 22:24:20 +00001772
Chris Lattner8f4b1ec2009-08-17 15:48:08 +00001773 // Print source line info.
Chris Lattner33adcfb2009-08-22 21:43:10 +00001774 O.PadToColumn(MAI->getCommentColumn());
1775 O << MAI->getCommentString() << " SrcLine ";
Devang Patele4b27562009-08-28 23:24:31 +00001776 if (DLT.CompileUnit) {
1777 std::string Str;
1778 DICompileUnit CU(DLT.CompileUnit);
1779 O << CU.getFilename(Str) << " ";
David Greene3ac1ab82009-07-16 22:24:20 +00001780 }
Chris Lattner5f51cd02009-08-07 23:42:01 +00001781 O << DLT.Line;
1782 if (DLT.Col != 0)
1783 O << ":" << DLT.Col;
David Greene014700c2009-07-13 20:25:48 +00001784}
1785
David Greenefe37ab32009-08-18 19:22:55 +00001786/// PrintChildLoopComment - Print comments about child loops within
1787/// the loop for this basic block, with nesting.
1788///
1789static void PrintChildLoopComment(formatted_raw_ostream &O,
1790 const MachineLoop *loop,
Chris Lattner33adcfb2009-08-22 21:43:10 +00001791 const MCAsmInfo *MAI,
David Greenefe37ab32009-08-18 19:22:55 +00001792 int FunctionNumber) {
1793 // Add child loop information
1794 for(MachineLoop::iterator cl = loop->begin(),
1795 clend = loop->end();
1796 cl != clend;
1797 ++cl) {
1798 MachineBasicBlock *Header = (*cl)->getHeader();
1799 assert(Header && "No header for loop");
1800
1801 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001802 O.PadToColumn(MAI->getCommentColumn());
David Greenefe37ab32009-08-18 19:22:55 +00001803
Chris Lattner33adcfb2009-08-22 21:43:10 +00001804 O << MAI->getCommentString();
Chris Lattnerc281de12009-08-23 00:51:00 +00001805 O.indent(((*cl)->getLoopDepth()-1)*2)
David Greenefe37ab32009-08-18 19:22:55 +00001806 << " Child Loop BB" << FunctionNumber << "_"
1807 << Header->getNumber() << " Depth " << (*cl)->getLoopDepth();
1808
Chris Lattner33adcfb2009-08-22 21:43:10 +00001809 PrintChildLoopComment(O, *cl, MAI, FunctionNumber);
David Greenefe37ab32009-08-18 19:22:55 +00001810 }
1811}
1812
David Greeneb71d1b22009-08-10 16:38:07 +00001813/// EmitComments - Pretty-print comments for basic blocks
1814void AsmPrinter::EmitComments(const MachineBasicBlock &MBB) const
1815{
David Greenefe37ab32009-08-18 19:22:55 +00001816 if (VerboseAsm) {
David Greeneb71d1b22009-08-10 16:38:07 +00001817 // Add loop depth information
1818 const MachineLoop *loop = LI->getLoopFor(&MBB);
1819
1820 if (loop) {
1821 // Print a newline after bb# annotation.
1822 O << "\n";
Chris Lattner33adcfb2009-08-22 21:43:10 +00001823 O.PadToColumn(MAI->getCommentColumn());
1824 O << MAI->getCommentString() << " Loop Depth " << loop->getLoopDepth()
David Greeneb71d1b22009-08-10 16:38:07 +00001825 << '\n';
1826
Chris Lattner33adcfb2009-08-22 21:43:10 +00001827 O.PadToColumn(MAI->getCommentColumn());
David Greeneb71d1b22009-08-10 16:38:07 +00001828
1829 MachineBasicBlock *Header = loop->getHeader();
1830 assert(Header && "No header for loop");
1831
1832 if (Header == &MBB) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001833 O << MAI->getCommentString() << " Loop Header";
1834 PrintChildLoopComment(O, loop, MAI, getFunctionNumber());
David Greeneb71d1b22009-08-10 16:38:07 +00001835 }
1836 else {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001837 O << MAI->getCommentString() << " Loop Header is BB"
David Greeneb71d1b22009-08-10 16:38:07 +00001838 << getFunctionNumber() << "_" << loop->getHeader()->getNumber();
1839 }
1840
1841 if (loop->empty()) {
1842 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001843 O.PadToColumn(MAI->getCommentColumn());
1844 O << MAI->getCommentString() << " Inner Loop";
David Greeneb71d1b22009-08-10 16:38:07 +00001845 }
1846
1847 // Add parent loop information
1848 for (const MachineLoop *CurLoop = loop->getParentLoop();
1849 CurLoop;
1850 CurLoop = CurLoop->getParentLoop()) {
1851 MachineBasicBlock *Header = CurLoop->getHeader();
1852 assert(Header && "No header for loop");
1853
1854 O << '\n';
Chris Lattner33adcfb2009-08-22 21:43:10 +00001855 O.PadToColumn(MAI->getCommentColumn());
1856 O << MAI->getCommentString();
Chris Lattnerc281de12009-08-23 00:51:00 +00001857 O.indent((CurLoop->getLoopDepth()-1)*2)
David Greenefe37ab32009-08-18 19:22:55 +00001858 << " Inside Loop BB" << getFunctionNumber() << "_"
David Greeneb71d1b22009-08-10 16:38:07 +00001859 << Header->getNumber() << " Depth " << CurLoop->getLoopDepth();
1860 }
1861 }
1862 }
1863}