blob: 3d8dd75a161d76659ff3d06c6ce8e969387fccd6 [file] [log] [blame]
Chris Lattner6a8e0f52004-08-16 23:15:22 +00001//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the AsmPrinter class.
11//
12//===----------------------------------------------------------------------===//
13
Evan Cheng993e9cf2006-03-03 02:04:29 +000014#include "llvm/CodeGen/AsmPrinter.h"
Evan Cheng38d5e762006-03-01 22:18:09 +000015#include "llvm/Assembly/Writer.h"
Nate Begeman41b1cdc2005-12-06 06:18:55 +000016#include "llvm/DerivedTypes.h"
Chris Lattner6a8e0f52004-08-16 23:15:22 +000017#include "llvm/Constants.h"
Chris Lattnerc0a1eba2005-11-10 18:36:17 +000018#include "llvm/Module.h"
Chris Lattnerf2991ce2005-11-21 08:25:09 +000019#include "llvm/CodeGen/MachineConstantPool.h"
Nate Begeman4ca2ea52006-04-22 18:53:45 +000020#include "llvm/CodeGen/MachineJumpTableInfo.h"
Jim Laskey1c055e82007-01-25 15:12:02 +000021#include "llvm/Support/CommandLine.h"
Chris Lattner6a8e0f52004-08-16 23:15:22 +000022#include "llvm/Support/Mangler.h"
Jim Laskeyb74c6662005-08-17 19:34:49 +000023#include "llvm/Support/MathExtras.h"
Bill Wendling5c3966a2006-11-29 00:39:47 +000024#include "llvm/Support/Streams.h"
Jim Laskeya6211dc2006-09-06 18:34:40 +000025#include "llvm/Target/TargetAsmInfo.h"
Owen Anderson8c2c1e92006-05-12 06:33:49 +000026#include "llvm/Target/TargetData.h"
Chris Lattner90438232006-10-06 22:50:56 +000027#include "llvm/Target/TargetLowering.h"
Chris Lattner6a8e0f52004-08-16 23:15:22 +000028#include "llvm/Target/TargetMachine.h"
Chris Lattneraa23fa92006-02-01 22:41:11 +000029#include <cerrno>
Chris Lattner6a8e0f52004-08-16 23:15:22 +000030using namespace llvm;
31
Jim Laskey1c055e82007-01-25 15:12:02 +000032static cl::opt<bool>
33AsmVerbose("asm-verbose", cl::Hidden, cl::desc("Add comments to directives."));
34
Devang Patel8c78a0b2007-05-03 01:11:54 +000035char AsmPrinter::ID = 0;
Jim Laskey261779b2006-09-07 22:06:40 +000036AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm,
37 const TargetAsmInfo *T)
Devang Patel09f162c2007-05-01 21:15:47 +000038 : MachineFunctionPass((intptr_t)&ID), FunctionNumber(0), O(o), TM(tm), TAI(T)
Jim Laskeya6211dc2006-09-06 18:34:40 +000039{}
Chris Lattnerf0e9aef2005-12-13 06:32:10 +000040
Chris Lattnerdc822412006-10-05 02:42:47 +000041std::string AsmPrinter::getSectionForFunction(const Function &F) const {
42 return TAI->getTextSection();
43}
44
Chris Lattnerf0e9aef2005-12-13 06:32:10 +000045
Chris Lattner8488ba22006-05-09 04:59:56 +000046/// SwitchToTextSection - Switch to the specified text section of the executable
47/// if we are not already in it!
Chris Lattner2ea5c992005-11-21 07:06:27 +000048///
Chris Lattner8488ba22006-05-09 04:59:56 +000049void AsmPrinter::SwitchToTextSection(const char *NewSection,
50 const GlobalValue *GV) {
Chris Lattner2ea5c992005-11-21 07:06:27 +000051 std::string NS;
Chris Lattner8c2bfc02006-05-09 05:24:50 +000052 if (GV && GV->hasSection())
Jim Laskeya6211dc2006-09-06 18:34:40 +000053 NS = TAI->getSwitchToSectionDirective() + GV->getSection();
Chris Lattner8c2bfc02006-05-09 05:24:50 +000054 else
55 NS = NewSection;
56
57 // If we're already in this section, we're done.
58 if (CurrentSection == NS) return;
Jeff Cohen470f4312006-05-02 03:58:45 +000059
Chris Lattner4ebc6a22006-05-09 05:33:48 +000060 // Close the current section, if applicable.
Jim Laskeya6211dc2006-09-06 18:34:40 +000061 if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
62 O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
Jeff Cohen470f4312006-05-02 03:58:45 +000063
Chris Lattner4ebc6a22006-05-09 05:33:48 +000064 CurrentSection = NS;
65
66 if (!CurrentSection.empty())
Jim Laskeya6211dc2006-09-06 18:34:40 +000067 O << CurrentSection << TAI->getTextSectionStartSuffix() << '\n';
Chris Lattner2ea5c992005-11-21 07:06:27 +000068}
69
Nate Begeman78756502006-07-27 01:13:04 +000070/// SwitchToDataSection - Switch to the specified data section of the executable
Chris Lattner8488ba22006-05-09 04:59:56 +000071/// if we are not already in it!
72///
73void AsmPrinter::SwitchToDataSection(const char *NewSection,
74 const GlobalValue *GV) {
75 std::string NS;
Chris Lattner6341df82006-05-09 05:23:12 +000076 if (GV && GV->hasSection())
Jim Laskeya6211dc2006-09-06 18:34:40 +000077 NS = TAI->getSwitchToSectionDirective() + GV->getSection();
Chris Lattner6341df82006-05-09 05:23:12 +000078 else
79 NS = NewSection;
Chris Lattner8488ba22006-05-09 04:59:56 +000080
Chris Lattner6341df82006-05-09 05:23:12 +000081 // If we're already in this section, we're done.
82 if (CurrentSection == NS) return;
83
Chris Lattner4ebc6a22006-05-09 05:33:48 +000084 // Close the current section, if applicable.
Jim Laskeya6211dc2006-09-06 18:34:40 +000085 if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
86 O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
Chris Lattner4ebc6a22006-05-09 05:33:48 +000087
88 CurrentSection = NS;
Chris Lattner8488ba22006-05-09 04:59:56 +000089
Chris Lattner4ebc6a22006-05-09 05:33:48 +000090 if (!CurrentSection.empty())
Jim Laskeya6211dc2006-09-06 18:34:40 +000091 O << CurrentSection << TAI->getDataSectionStartSuffix() << '\n';
Chris Lattner8488ba22006-05-09 04:59:56 +000092}
93
94
Chris Lattner6a8e0f52004-08-16 23:15:22 +000095bool AsmPrinter::doInitialization(Module &M) {
Jim Laskeya6211dc2006-09-06 18:34:40 +000096 Mang = new Mangler(M, TAI->getGlobalPrefix());
Chris Lattnere3a79262006-01-23 23:47:53 +000097
Chris Lattner00fcdfe2006-01-24 04:16:34 +000098 if (!M.getModuleInlineAsm().empty())
Jim Laskeya6211dc2006-09-06 18:34:40 +000099 O << TAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner00fcdfe2006-01-24 04:16:34 +0000100 << M.getModuleInlineAsm()
Jim Laskeya6211dc2006-09-06 18:34:40 +0000101 << "\n" << TAI->getCommentString()
102 << " End of file scope inline assembly\n";
Chris Lattnere3a79262006-01-23 23:47:53 +0000103
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000104 SwitchToDataSection(""); // Reset back to no section.
Jim Laskey0bbdc552006-01-26 20:21:46 +0000105
Jim Laskeyc56315c2007-01-26 21:22:28 +0000106 if (MachineModuleInfo *MMI = getAnalysisToUpdate<MachineModuleInfo>()) {
107 MMI->AnalyzeModule(M);
Jim Laskey0bbdc552006-01-26 20:21:46 +0000108 }
109
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000110 return false;
111}
112
113bool AsmPrinter::doFinalization(Module &M) {
Rafael Espindolad7998d02006-12-18 03:37:18 +0000114 if (TAI->getWeakRefDirective()) {
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000115 if (!ExtWeakSymbols.empty())
Rafael Espindolad7998d02006-12-18 03:37:18 +0000116 SwitchToDataSection("");
117
118 for (std::set<const GlobalValue*>::iterator i = ExtWeakSymbols.begin(),
119 e = ExtWeakSymbols.end(); i != e; ++i) {
120 const GlobalValue *GV = *i;
121 std::string Name = Mang->getValueName(GV);
122 O << TAI->getWeakRefDirective() << Name << "\n";
123 }
124 }
125
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000126 if (TAI->getSetDirective()) {
Anton Korobeynikovb18f8f82007-04-28 13:45:00 +0000127 if (!M.alias_empty())
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000128 SwitchToTextSection(TAI->getTextSection());
129
130 O << "\n";
131 for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
132 I!=E; ++I) {
Anton Korobeynikovb18f8f82007-04-28 13:45:00 +0000133 std::string Name = Mang->getValueName(I);
134 std::string Target;
Anton Korobeynikova07765b2007-09-06 17:21:48 +0000135
136 const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
137 Target = Mang->getValueName(GV);
Anton Korobeynikovb18f8f82007-04-28 13:45:00 +0000138
Anton Korobeynikova07765b2007-09-06 17:21:48 +0000139 if (I->hasExternalLinkage() || !TAI->getWeakRefDirective())
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000140 O << "\t.globl\t" << Name << "\n";
141 else if (I->hasWeakLinkage())
142 O << TAI->getWeakRefDirective() << Name << "\n";
143 else if (!I->hasInternalLinkage())
144 assert(0 && "Invalid alias linkage");
145
146 O << TAI->getSetDirective() << Name << ", " << Target << "\n";
Anton Korobeynikova07765b2007-09-06 17:21:48 +0000147
148 // If the aliasee has external weak linkage it can be referenced only by
149 // alias itself. In this case it can be not in ExtWeakSymbols list. Emit
150 // weak reference in such case.
151 if (GV->hasExternalWeakLinkage())
152 if (TAI->getWeakRefDirective())
153 O << TAI->getWeakRefDirective() << Target << "\n";
154 else
155 O << "\t.globl\t" << Target << "\n";
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000156 }
157 }
158
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000159 delete Mang; Mang = 0;
160 return false;
161}
162
Chris Lattnerbb644e32005-11-21 07:51:36 +0000163void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000164 // What's my mangled name?
Chris Lattnerc0a1eba2005-11-10 18:36:17 +0000165 CurrentFnName = Mang->getValueName(MF.getFunction());
Chris Lattner08adbd132005-11-21 08:13:27 +0000166 IncrementFunctionNumber();
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000167}
168
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000169/// EmitConstantPool - Print to the current output stream assembly
170/// representations of the constants in the constant pool MCP. This is
171/// used to print out constants which have been "spilled to memory" by
172/// the code generator.
173///
174void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerba972642006-02-09 04:22:52 +0000175 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000176 if (CP.empty()) return;
Evan Chengec1d60b2006-06-29 00:26:09 +0000177
178 // Some targets require 4-, 8-, and 16- byte constant literals to be placed
179 // in special sections.
180 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > FourByteCPs;
181 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > EightByteCPs;
182 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > SixteenByteCPs;
183 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > OtherCPs;
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000184 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > TargetCPs;
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000185 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Evan Chengec1d60b2006-06-29 00:26:09 +0000186 MachineConstantPoolEntry CPE = CP[i];
Evan Cheng2ad050f2006-09-14 07:35:00 +0000187 const Type *Ty = CPE.getType();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000188 if (TAI->getFourByteConstantSection() &&
Evan Chengec1d60b2006-06-29 00:26:09 +0000189 TM.getTargetData()->getTypeSize(Ty) == 4)
190 FourByteCPs.push_back(std::make_pair(CPE, i));
Evan Cheng95b3dde2006-09-07 18:50:20 +0000191 else if (TAI->getEightByteConstantSection() &&
Evan Chengec1d60b2006-06-29 00:26:09 +0000192 TM.getTargetData()->getTypeSize(Ty) == 8)
193 EightByteCPs.push_back(std::make_pair(CPE, i));
Evan Cheng95b3dde2006-09-07 18:50:20 +0000194 else if (TAI->getSixteenByteConstantSection() &&
Evan Chengec1d60b2006-06-29 00:26:09 +0000195 TM.getTargetData()->getTypeSize(Ty) == 16)
196 SixteenByteCPs.push_back(std::make_pair(CPE, i));
197 else
198 OtherCPs.push_back(std::make_pair(CPE, i));
199 }
200
201 unsigned Alignment = MCP->getConstantPoolAlignment();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000202 EmitConstantPool(Alignment, TAI->getFourByteConstantSection(), FourByteCPs);
203 EmitConstantPool(Alignment, TAI->getEightByteConstantSection(), EightByteCPs);
204 EmitConstantPool(Alignment, TAI->getSixteenByteConstantSection(),
205 SixteenByteCPs);
206 EmitConstantPool(Alignment, TAI->getConstantPoolSection(), OtherCPs);
Evan Chengec1d60b2006-06-29 00:26:09 +0000207}
208
209void AsmPrinter::EmitConstantPool(unsigned Alignment, const char *Section,
210 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > &CP) {
211 if (CP.empty()) return;
212
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000213 SwitchToDataSection(Section);
Evan Chengec1d60b2006-06-29 00:26:09 +0000214 EmitAlignment(Alignment);
215 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000216 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
217 << CP[i].second << ":\t\t\t\t\t" << TAI->getCommentString() << " ";
Evan Cheng2ad050f2006-09-14 07:35:00 +0000218 WriteTypeSymbolic(O, CP[i].first.getType(), 0) << '\n';
219 if (CP[i].first.isMachineConstantPoolEntry())
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000220 EmitMachineConstantPoolValue(CP[i].first.Val.MachineCPVal);
Evan Cheng2ad050f2006-09-14 07:35:00 +0000221 else
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000222 EmitGlobalConstant(CP[i].first.Val.ConstVal);
Chris Lattnerf6190822006-02-09 04:46:04 +0000223 if (i != e-1) {
Evan Cheng2ad050f2006-09-14 07:35:00 +0000224 const Type *Ty = CP[i].first.getType();
Evan Chengec1d60b2006-06-29 00:26:09 +0000225 unsigned EntSize =
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000226 TM.getTargetData()->getTypeSize(Ty);
Evan Cheng2ad050f2006-09-14 07:35:00 +0000227 unsigned ValEnd = CP[i].first.getOffset() + EntSize;
Chris Lattnerf6190822006-02-09 04:46:04 +0000228 // Emit inter-object padding for alignment.
Evan Cheng2ad050f2006-09-14 07:35:00 +0000229 EmitZeros(CP[i+1].first.getOffset()-ValEnd);
Chris Lattnerf6190822006-02-09 04:46:04 +0000230 }
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000231 }
232}
233
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000234/// EmitJumpTableInfo - Print assembly representations of the jump tables used
235/// by the current function to the current output stream.
236///
Chris Lattnera6a570e2006-10-05 03:01:21 +0000237void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
238 MachineFunction &MF) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000239 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
240 if (JT.empty()) return;
Jim Laskey70323a82006-12-14 19:17:33 +0000241 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
Nate Begemanefc312a2006-07-27 16:46:58 +0000242
Jim Laskey70323a82006-12-14 19:17:33 +0000243 // Use JumpTableDirective otherwise honor the entry size from the jump table
244 // info.
Andrew Lenharth783a4a92006-09-24 19:45:58 +0000245 const char *JTEntryDirective = TAI->getJumpTableDirective();
Jim Laskey70323a82006-12-14 19:17:33 +0000246 bool HadJTEntryDirective = JTEntryDirective != NULL;
247 if (!HadJTEntryDirective) {
248 JTEntryDirective = MJTI->getEntrySize() == 4 ?
249 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
250 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000251
Nate Begeman78756502006-07-27 01:13:04 +0000252 // Pick the directive to use to print the jump table entries, and switch to
253 // the appropriate section.
Jim Laskey70323a82006-12-14 19:17:33 +0000254 TargetLowering *LoweringInfo = TM.getTargetLowering();
Anton Korobeynikov44ef9342006-12-19 21:04:20 +0000255
256 const char* JumpTableDataSection = TAI->getJumpTableDataSection();
257 if ((IsPic && !(LoweringInfo && LoweringInfo->usesGlobalOffsetTable())) ||
258 !JumpTableDataSection) {
Jim Laskey70323a82006-12-14 19:17:33 +0000259 // In PIC mode, we need to emit the jump table to the same section as the
260 // function body itself, otherwise the label differences won't make sense.
Anton Korobeynikov44ef9342006-12-19 21:04:20 +0000261 // We should also do if the section name is NULL.
Jim Laskey70323a82006-12-14 19:17:33 +0000262 const Function *F = MF.getFunction();
263 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Nate Begeman78756502006-07-27 01:13:04 +0000264 } else {
Anton Korobeynikov44ef9342006-12-19 21:04:20 +0000265 SwitchToDataSection(JumpTableDataSection);
Nate Begeman78756502006-07-27 01:13:04 +0000266 }
Jim Laskey70323a82006-12-14 19:17:33 +0000267
268 EmitAlignment(Log2_32(MJTI->getAlignment()));
Chris Lattnerfd5a8eb2006-07-15 01:34:12 +0000269
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000270 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
Nate Begeman984c1a42006-08-12 21:29:52 +0000271 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
Chris Lattner28bfe382006-10-28 18:10:06 +0000272
273 // If this jump table was deleted, ignore it.
274 if (JTBBs.empty()) continue;
Nate Begeman984c1a42006-08-12 21:29:52 +0000275
276 // For PIC codegen, if possible we want to use the SetDirective to reduce
277 // the number of relocations the assembler will generate for the jump table.
278 // Set directives are all printed before the jump table itself.
279 std::set<MachineBasicBlock*> EmittedSets;
Jim Laskey70323a82006-12-14 19:17:33 +0000280 if (TAI->getSetDirective() && IsPic)
Nate Begeman984c1a42006-08-12 21:29:52 +0000281 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
282 if (EmittedSets.insert(JTBBs[ii]).second)
283 printSetLabel(i, JTBBs[ii]);
284
Chris Lattner0ee2d462007-01-18 01:12:56 +0000285 // On some targets (e.g. darwin) we want to emit two consequtive labels
286 // before each jump table. The first label is never referenced, but tells
287 // the assembler and linker the extents of the jump table object. The
288 // second label is actually referenced by the code.
289 if (const char *JTLabelPrefix = TAI->getJumpTableSpecialLabelPrefix())
290 O << JTLabelPrefix << "JTI" << getFunctionNumber() << '_' << i << ":\n";
291
Jim Laskeya6211dc2006-09-06 18:34:40 +0000292 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
293 << '_' << i << ":\n";
Nate Begeman984c1a42006-08-12 21:29:52 +0000294
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000295 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
Nate Begemanefc312a2006-07-27 16:46:58 +0000296 O << JTEntryDirective << ' ';
Nate Begeman984c1a42006-08-12 21:29:52 +0000297 // If we have emitted set directives for the jump table entries, print
298 // them rather than the entries themselves. If we're emitting PIC, then
299 // emit the table entries as differences between two text section labels.
300 // If we're emitting non-PIC code, then emit the entries as direct
301 // references to the target basic blocks.
302 if (!EmittedSets.empty()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000303 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
304 << '_' << i << "_set_" << JTBBs[ii]->getNumber();
Jim Laskey70323a82006-12-14 19:17:33 +0000305 } else if (IsPic) {
Nate Begeman984c1a42006-08-12 21:29:52 +0000306 printBasicBlockLabel(JTBBs[ii], false, false);
Chris Lattner0ee2d462007-01-18 01:12:56 +0000307 // If the arch uses custom Jump Table directives, don't calc relative to
308 // JT
Jim Laskey70323a82006-12-14 19:17:33 +0000309 if (!HadJTEntryDirective)
310 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI"
311 << getFunctionNumber() << '_' << i;
Nate Begeman984c1a42006-08-12 21:29:52 +0000312 } else {
313 printBasicBlockLabel(JTBBs[ii], false, false);
Nate Begeman78756502006-07-27 01:13:04 +0000314 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000315 O << '\n';
316 }
317 }
318}
319
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000320/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
321/// special global used by LLVM. If so, emit it and return true, otherwise
322/// do nothing and return false.
323bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Andrew Lenharthbeb80a92007-08-22 19:33:11 +0000324 if (GV->getName() == "llvm.used") {
325 if (TAI->getUsedDirective() != 0) // No need to emit this at all.
326 EmitLLVMUsedList(GV->getInitializer());
327 return true;
328 }
329
Jim Laskey313570f2006-03-07 22:00:35 +0000330 // Ignore debug and non-emitted data.
331 if (GV->getSection() == "llvm.metadata") return true;
332
333 if (!GV->hasAppendingLinkage()) return false;
334
335 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000336
Evan Cheng53ce7de2007-06-04 20:39:18 +0000337 const TargetData *TD = TM.getTargetData();
338 unsigned Align = Log2_32(TD->getPointerPrefAlignment());
Chris Lattner3760e902006-01-12 19:17:23 +0000339 if (GV->getName() == "llvm.global_ctors" && GV->use_empty()) {
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000340 SwitchToDataSection(TAI->getStaticCtorsSection());
Evan Cheng53ce7de2007-06-04 20:39:18 +0000341 EmitAlignment(Align, 0);
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000342 EmitXXStructorList(GV->getInitializer());
343 return true;
344 }
345
Chris Lattner3760e902006-01-12 19:17:23 +0000346 if (GV->getName() == "llvm.global_dtors" && GV->use_empty()) {
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000347 SwitchToDataSection(TAI->getStaticDtorsSection());
Evan Cheng53ce7de2007-06-04 20:39:18 +0000348 EmitAlignment(Align, 0);
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000349 EmitXXStructorList(GV->getInitializer());
350 return true;
351 }
352
353 return false;
354}
355
Chris Lattner66af3902006-09-26 03:38:18 +0000356/// EmitLLVMUsedList - For targets that define a TAI::UsedDirective, mark each
357/// global in the specified llvm.used list as being used with this directive.
358void AsmPrinter::EmitLLVMUsedList(Constant *List) {
359 const char *Directive = TAI->getUsedDirective();
360
361 // Should be an array of 'sbyte*'.
362 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
363 if (InitList == 0) return;
364
365 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
366 O << Directive;
367 EmitConstantValueOnly(InitList->getOperand(i));
368 O << "\n";
369 }
370}
371
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000372/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
373/// function pointers, ignoring the init priority.
374void AsmPrinter::EmitXXStructorList(Constant *List) {
375 // Should be an array of '{ int, void ()* }' structs. The first value is the
376 // init priority, which we ignore.
377 if (!isa<ConstantArray>(List)) return;
378 ConstantArray *InitList = cast<ConstantArray>(List);
379 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
380 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
381 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner434ffe42005-12-21 01:17:37 +0000382
383 if (CS->getOperand(1)->isNullValue())
384 return; // Found a null terminator, exit printing.
385 // Emit the function pointer.
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000386 EmitGlobalConstant(CS->getOperand(1));
387 }
388}
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000389
Jim Laskey71262542006-10-17 13:41:07 +0000390/// getGlobalLinkName - Returns the asm/link name of of the specified
391/// global variable. Should be overridden by each target asm printer to
392/// generate the appropriate value.
Jim Laskeyd24b9132006-10-17 17:17:24 +0000393const std::string AsmPrinter::getGlobalLinkName(const GlobalVariable *GV) const{
394 std::string LinkName;
Jim Laskeyd7f53cd2006-11-20 20:29:06 +0000395
396 if (isa<Function>(GV)) {
397 LinkName += TAI->getFunctionAddrPrefix();
398 LinkName += Mang->getValueName(GV);
399 LinkName += TAI->getFunctionAddrSuffix();
400 } else {
401 LinkName += TAI->getGlobalVarAddrPrefix();
402 LinkName += Mang->getValueName(GV);
403 LinkName += TAI->getGlobalVarAddrSuffix();
404 }
405
Jim Laskeyd24b9132006-10-17 17:17:24 +0000406 return LinkName;
Jim Laskey71262542006-10-17 13:41:07 +0000407}
408
Jim Laskey18fc0972007-02-21 22:47:38 +0000409/// EmitExternalGlobal - Emit the external reference to a global variable.
410/// Should be overridden if an indirect reference should be used.
411void AsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
412 O << getGlobalLinkName(GV);
413}
414
415
416
Jim Laskey1c055e82007-01-25 15:12:02 +0000417//===----------------------------------------------------------------------===//
418/// LEB 128 number encoding.
419
420/// PrintULEB128 - Print a series of hexidecimal values (separated by commas)
421/// representing an unsigned leb128 value.
422void AsmPrinter::PrintULEB128(unsigned Value) const {
423 do {
424 unsigned Byte = Value & 0x7f;
425 Value >>= 7;
426 if (Value) Byte |= 0x80;
427 O << "0x" << std::hex << Byte << std::dec;
428 if (Value) O << ", ";
429 } while (Value);
430}
431
432/// SizeULEB128 - Compute the number of bytes required for an unsigned leb128
433/// value.
434unsigned AsmPrinter::SizeULEB128(unsigned Value) {
435 unsigned Size = 0;
436 do {
437 Value >>= 7;
438 Size += sizeof(int8_t);
439 } while (Value);
440 return Size;
441}
442
443/// PrintSLEB128 - Print a series of hexidecimal values (separated by commas)
444/// representing a signed leb128 value.
445void AsmPrinter::PrintSLEB128(int Value) const {
446 int Sign = Value >> (8 * sizeof(Value) - 1);
447 bool IsMore;
448
449 do {
450 unsigned Byte = Value & 0x7f;
451 Value >>= 7;
452 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
453 if (IsMore) Byte |= 0x80;
454 O << "0x" << std::hex << Byte << std::dec;
455 if (IsMore) O << ", ";
456 } while (IsMore);
457}
458
459/// SizeSLEB128 - Compute the number of bytes required for a signed leb128
460/// value.
461unsigned AsmPrinter::SizeSLEB128(int Value) {
462 unsigned Size = 0;
463 int Sign = Value >> (8 * sizeof(Value) - 1);
464 bool IsMore;
465
466 do {
467 unsigned Byte = Value & 0x7f;
468 Value >>= 7;
469 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
470 Size += sizeof(int8_t);
471 } while (IsMore);
472 return Size;
473}
474
475//===--------------------------------------------------------------------===//
476// Emission and print routines
477//
478
479/// PrintHex - Print a value as a hexidecimal value.
480///
481void AsmPrinter::PrintHex(int Value) const {
482 O << "0x" << std::hex << Value << std::dec;
483}
484
485/// EOL - Print a newline character to asm stream. If a comment is present
486/// then it will be printed first. Comments should not contain '\n'.
Jim Laskey18fc0972007-02-21 22:47:38 +0000487void AsmPrinter::EOL() const {
488 O << "\n";
489}
Jim Laskey1c055e82007-01-25 15:12:02 +0000490void AsmPrinter::EOL(const std::string &Comment) const {
491 if (AsmVerbose && !Comment.empty()) {
492 O << "\t"
493 << TAI->getCommentString()
494 << " "
495 << Comment;
496 }
497 O << "\n";
498}
499
500/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
501/// unsigned leb128 value.
502void AsmPrinter::EmitULEB128Bytes(unsigned Value) const {
503 if (TAI->hasLEB128()) {
504 O << "\t.uleb128\t"
505 << Value;
506 } else {
507 O << TAI->getData8bitsDirective();
508 PrintULEB128(Value);
509 }
510}
511
512/// EmitSLEB128Bytes - print an assembler byte data directive to compose a
513/// signed leb128 value.
514void AsmPrinter::EmitSLEB128Bytes(int Value) const {
515 if (TAI->hasLEB128()) {
516 O << "\t.sleb128\t"
517 << Value;
518 } else {
519 O << TAI->getData8bitsDirective();
520 PrintSLEB128(Value);
521 }
522}
523
524/// EmitInt8 - Emit a byte directive and value.
525///
526void AsmPrinter::EmitInt8(int Value) const {
527 O << TAI->getData8bitsDirective();
528 PrintHex(Value & 0xFF);
529}
530
531/// EmitInt16 - Emit a short directive and value.
532///
533void AsmPrinter::EmitInt16(int Value) const {
534 O << TAI->getData16bitsDirective();
535 PrintHex(Value & 0xFFFF);
536}
537
538/// EmitInt32 - Emit a long directive and value.
539///
540void AsmPrinter::EmitInt32(int Value) const {
541 O << TAI->getData32bitsDirective();
542 PrintHex(Value);
543}
544
545/// EmitInt64 - Emit a long long directive and value.
546///
547void AsmPrinter::EmitInt64(uint64_t Value) const {
548 if (TAI->getData64bitsDirective()) {
549 O << TAI->getData64bitsDirective();
550 PrintHex(Value);
551 } else {
552 if (TM.getTargetData()->isBigEndian()) {
553 EmitInt32(unsigned(Value >> 32)); O << "\n";
554 EmitInt32(unsigned(Value));
555 } else {
556 EmitInt32(unsigned(Value)); O << "\n";
557 EmitInt32(unsigned(Value >> 32));
558 }
559 }
560}
561
562/// toOctal - Convert the low order bits of X into an octal digit.
563///
564static inline char toOctal(int X) {
565 return (X&7)+'0';
566}
567
568/// printStringChar - Print a char, escaped if necessary.
569///
570static void printStringChar(std::ostream &O, unsigned char C) {
571 if (C == '"') {
572 O << "\\\"";
573 } else if (C == '\\') {
574 O << "\\\\";
575 } else if (isprint(C)) {
576 O << C;
577 } else {
578 switch(C) {
579 case '\b': O << "\\b"; break;
580 case '\f': O << "\\f"; break;
581 case '\n': O << "\\n"; break;
582 case '\r': O << "\\r"; break;
583 case '\t': O << "\\t"; break;
584 default:
585 O << '\\';
586 O << toOctal(C >> 6);
587 O << toOctal(C >> 3);
588 O << toOctal(C >> 0);
589 break;
590 }
591 }
592}
593
594/// EmitString - Emit a string with quotes and a null terminator.
595/// Special characters are emitted properly.
596/// \literal (Eg. '\t') \endliteral
597void AsmPrinter::EmitString(const std::string &String) const {
Anton Korobeynikov6c5e0ad2007-03-06 19:25:02 +0000598 const char* AscizDirective = TAI->getAscizDirective();
599 if (AscizDirective)
600 O << AscizDirective;
601 else
602 O << TAI->getAsciiDirective();
603 O << "\"";
Jim Laskey1c055e82007-01-25 15:12:02 +0000604 for (unsigned i = 0, N = String.size(); i < N; ++i) {
605 unsigned char C = String[i];
606 printStringChar(O, C);
607 }
Anton Korobeynikov6c5e0ad2007-03-06 19:25:02 +0000608 if (AscizDirective)
609 O << "\"";
610 else
611 O << "\\0\"";
Jim Laskey1c055e82007-01-25 15:12:02 +0000612}
613
614
615//===----------------------------------------------------------------------===//
616
Chris Lattner3e3ff302007-05-31 18:57:45 +0000617// EmitAlignment - Emit an alignment directive to the specified power of
618// two boundary. For example, if you pass in 3 here, you will get an 8
619// byte alignment. If a global value is specified, and if that global has
620// an explicit alignment requested, it will unconditionally override the
621// alignment request. However, if ForcedAlignBits is specified, this value
622// has final say: the ultimate alignment will be the max of ForcedAlignBits
623// and the alignment computed with NumBits and the global.
624//
625// The algorithm is:
626// Align = NumBits;
627// if (GV && GV->hasalignment) Align = GV->getalignment();
628// Align = std::max(Align, ForcedAlignBits);
629//
630void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
Evan Cheng86eb3fd2007-07-25 23:35:07 +0000631 unsigned ForcedAlignBits, bool UseFillExpr,
632 unsigned FillValue) const {
Dale Johannesen8653d292007-04-23 23:33:31 +0000633 if (GV && GV->getAlignment())
Chris Lattner3e3ff302007-05-31 18:57:45 +0000634 NumBits = Log2_32(GV->getAlignment());
635 NumBits = std::max(NumBits, ForcedAlignBits);
636
Chris Lattner747960d2005-11-10 18:09:27 +0000637 if (NumBits == 0) return; // No need to emit alignment.
Jim Laskeya6211dc2006-09-06 18:34:40 +0000638 if (TAI->getAlignmentIsInBytes()) NumBits = 1 << NumBits;
Evan Cheng86eb3fd2007-07-25 23:35:07 +0000639 O << TAI->getAlignDirective() << NumBits;
640 if (UseFillExpr) O << ",0x" << std::hex << FillValue << std::dec;
641 O << "\n";
Chris Lattner1d35c162004-08-17 19:14:29 +0000642}
643
Jim Laskey18fc0972007-02-21 22:47:38 +0000644
Chris Lattnerbb644e32005-11-21 07:51:36 +0000645/// EmitZeros - Emit a block of zeros.
Chris Lattnerea751992004-08-17 21:38:40 +0000646///
Chris Lattnerbb644e32005-11-21 07:51:36 +0000647void AsmPrinter::EmitZeros(uint64_t NumZeros) const {
Chris Lattnerea751992004-08-17 21:38:40 +0000648 if (NumZeros) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000649 if (TAI->getZeroDirective()) {
650 O << TAI->getZeroDirective() << NumZeros;
651 if (TAI->getZeroDirectiveSuffix())
652 O << TAI->getZeroDirectiveSuffix();
Jeff Cohenf34ddb12006-05-02 03:46:13 +0000653 O << "\n";
654 } else {
Chris Lattnerea751992004-08-17 21:38:40 +0000655 for (; NumZeros; --NumZeros)
Jim Laskeya6211dc2006-09-06 18:34:40 +0000656 O << TAI->getData8bitsDirective() << "0\n";
Chris Lattnerea751992004-08-17 21:38:40 +0000657 }
658 }
659}
660
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000661// Print out the specified constant, without a storage class. Only the
662// constants valid in constant expressions can occur here.
Chris Lattnerbb644e32005-11-21 07:51:36 +0000663void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
Chris Lattner61753bf2004-10-16 18:19:26 +0000664 if (CV->isNullValue() || isa<UndefValue>(CV))
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000665 O << "0";
Zhou Sheng75b871f2007-01-11 12:24:14 +0000666 else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Chris Lattner7f6fac42007-01-12 18:15:09 +0000667 O << CI->getZExtValue();
Reid Spencere0fc4df2006-10-20 07:07:24 +0000668 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Duraid Madina73a316d2005-04-02 12:21:51 +0000669 // This is a constant address for a global variable or function. Use the
670 // name of the variable or function as the address value, possibly
671 // decorating it with GlobalVarAddrPrefix/Suffix or
672 // FunctionAddrPrefix/Suffix (these all default to "" )
Jim Laskeya6211dc2006-09-06 18:34:40 +0000673 if (isa<Function>(GV)) {
674 O << TAI->getFunctionAddrPrefix()
675 << Mang->getValueName(GV)
676 << TAI->getFunctionAddrSuffix();
677 } else {
678 O << TAI->getGlobalVarAddrPrefix()
679 << Mang->getValueName(GV)
680 << TAI->getGlobalVarAddrSuffix();
681 }
Duraid Madina73a316d2005-04-02 12:21:51 +0000682 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000683 const TargetData *TD = TM.getTargetData();
Anton Korobeynikov465c0252007-02-04 23:27:42 +0000684 unsigned Opcode = CE->getOpcode();
685 switch (Opcode) {
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000686 case Instruction::GetElementPtr: {
687 // generate a symbolic expression for the byte address
688 const Constant *ptrVal = CE->getOperand(0);
Chris Lattner83dfca82007-02-10 20:31:59 +0000689 SmallVector<Value*, 8> idxVec(CE->op_begin()+1, CE->op_end());
690 if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), &idxVec[0],
691 idxVec.size())) {
Chris Lattner145569b2005-02-14 21:40:26 +0000692 if (Offset)
693 O << "(";
Chris Lattnerbb644e32005-11-21 07:51:36 +0000694 EmitConstantValueOnly(ptrVal);
Chris Lattner145569b2005-02-14 21:40:26 +0000695 if (Offset > 0)
696 O << ") + " << Offset;
697 else if (Offset < 0)
698 O << ") - " << -Offset;
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000699 } else {
Chris Lattnerbb644e32005-11-21 07:51:36 +0000700 EmitConstantValueOnly(ptrVal);
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000701 }
702 break;
703 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000704 case Instruction::Trunc:
705 case Instruction::ZExt:
706 case Instruction::SExt:
707 case Instruction::FPTrunc:
708 case Instruction::FPExt:
709 case Instruction::UIToFP:
710 case Instruction::SIToFP:
711 case Instruction::FPToUI:
712 case Instruction::FPToSI:
713 assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
714 break;
Chris Lattnerb9e41f52006-12-12 05:14:13 +0000715 case Instruction::BitCast:
716 return EmitConstantValueOnly(CE->getOperand(0));
717
Chris Lattner0c537da2006-12-12 05:18:19 +0000718 case Instruction::IntToPtr: {
719 // Handle casts to pointers by changing them into casts to the appropriate
720 // integer type. This promotes constant folding and simplifies this code.
721 Constant *Op = CE->getOperand(0);
722 Op = ConstantExpr::getIntegerCast(Op, TD->getIntPtrType(), false/*ZExt*/);
723 return EmitConstantValueOnly(Op);
724 }
725
726
727 case Instruction::PtrToInt: {
Chris Lattner85492422006-07-29 01:57:19 +0000728 // Support only foldable casts to/from pointers that can be eliminated by
729 // changing the pointer to the appropriately sized integer type.
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000730 Constant *Op = CE->getOperand(0);
Chris Lattner0c537da2006-12-12 05:18:19 +0000731 const Type *Ty = CE->getType();
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000732
Chris Lattner0c537da2006-12-12 05:18:19 +0000733 // We can emit the pointer value into this slot if the slot is an
734 // integer slot greater or equal to the size of the pointer.
Chris Lattner03c49532007-01-15 02:27:26 +0000735 if (Ty->isInteger() &&
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000736 TD->getTypeSize(Ty) >= TD->getTypeSize(Op->getType()))
Chris Lattner85492422006-07-29 01:57:19 +0000737 return EmitConstantValueOnly(Op);
Chris Lattner85492422006-07-29 01:57:19 +0000738
739 assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
Chris Lattnerbb644e32005-11-21 07:51:36 +0000740 EmitConstantValueOnly(Op);
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000741 break;
742 }
743 case Instruction::Add:
Anton Korobeynikov465c0252007-02-04 23:27:42 +0000744 case Instruction::Sub:
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000745 O << "(";
Chris Lattnerbb644e32005-11-21 07:51:36 +0000746 EmitConstantValueOnly(CE->getOperand(0));
Anton Korobeynikov465c0252007-02-04 23:27:42 +0000747 O << (Opcode==Instruction::Add ? ") + (" : ") - (");
Chris Lattnerbb644e32005-11-21 07:51:36 +0000748 EmitConstantValueOnly(CE->getOperand(1));
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000749 O << ")";
750 break;
751 default:
752 assert(0 && "Unsupported operator!");
753 }
754 } else {
755 assert(0 && "Unknown constant value!");
756 }
757}
Chris Lattner8452a1f2004-08-17 06:36:49 +0000758
Chris Lattner55a6d902005-11-10 18:06:33 +0000759/// printAsCString - Print the specified array as a C compatible string, only if
Chris Lattner8452a1f2004-08-17 06:36:49 +0000760/// the predicate isString is true.
761///
Chris Lattner55a6d902005-11-10 18:06:33 +0000762static void printAsCString(std::ostream &O, const ConstantArray *CVA,
763 unsigned LastElt) {
Chris Lattner8452a1f2004-08-17 06:36:49 +0000764 assert(CVA->isString() && "Array is not string compatible!");
765
766 O << "\"";
Chris Lattner55a6d902005-11-10 18:06:33 +0000767 for (unsigned i = 0; i != LastElt; ++i) {
Misha Brukman835702a2005-04-21 22:36:52 +0000768 unsigned char C =
Reid Spencere0fc4df2006-10-20 07:07:24 +0000769 (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getZExtValue();
Jim Laskey1c055e82007-01-25 15:12:02 +0000770 printStringChar(O, C);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000771 }
772 O << "\"";
773}
774
Jeff Cohen24a62a92006-05-02 01:16:28 +0000775/// EmitString - Emit a zero-byte-terminated string constant.
776///
777void AsmPrinter::EmitString(const ConstantArray *CVA) const {
778 unsigned NumElts = CVA->getNumOperands();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000779 if (TAI->getAscizDirective() && NumElts &&
Reid Spencere0fc4df2006-10-20 07:07:24 +0000780 cast<ConstantInt>(CVA->getOperand(NumElts-1))->getZExtValue() == 0) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000781 O << TAI->getAscizDirective();
Jeff Cohen24a62a92006-05-02 01:16:28 +0000782 printAsCString(O, CVA, NumElts-1);
783 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000784 O << TAI->getAsciiDirective();
Jeff Cohen24a62a92006-05-02 01:16:28 +0000785 printAsCString(O, CVA, NumElts);
786 }
787 O << "\n";
788}
789
Chris Lattnerbb644e32005-11-21 07:51:36 +0000790/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Chris Lattner8452a1f2004-08-17 06:36:49 +0000791///
Chris Lattnerbb644e32005-11-21 07:51:36 +0000792void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000793 const TargetData *TD = TM.getTargetData();
Chris Lattner8452a1f2004-08-17 06:36:49 +0000794
Chris Lattner61753bf2004-10-16 18:19:26 +0000795 if (CV->isNullValue() || isa<UndefValue>(CV)) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000796 EmitZeros(TD->getTypeSize(CV->getType()));
Chris Lattner8452a1f2004-08-17 06:36:49 +0000797 return;
798 } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
799 if (CVA->isString()) {
Jeff Cohen24a62a92006-05-02 01:16:28 +0000800 EmitString(CVA);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000801 } else { // Not a string. Print the values in successive locations
802 for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
Chris Lattnerbb644e32005-11-21 07:51:36 +0000803 EmitGlobalConstant(CVA->getOperand(i));
Chris Lattner8452a1f2004-08-17 06:36:49 +0000804 }
805 return;
806 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
807 // Print the fields in successive locations. Pad to align if needed!
Owen Anderson20a631f2006-05-03 01:29:57 +0000808 const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
Chris Lattner0b955fd2005-01-08 19:59:10 +0000809 uint64_t sizeSoFar = 0;
Chris Lattner8452a1f2004-08-17 06:36:49 +0000810 for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
811 const Constant* field = CVS->getOperand(i);
812
813 // Check if padding is needed and insert one or more 0s.
Owen Anderson20a631f2006-05-03 01:29:57 +0000814 uint64_t fieldSize = TD->getTypeSize(field->getType());
Chris Lattnerb84892d2007-02-10 19:59:22 +0000815 uint64_t padSize = ((i == e-1? cvsLayout->getSizeInBytes()
Chris Lattnerc473d8e2007-02-10 19:55:17 +0000816 : cvsLayout->getElementOffset(i+1))
817 - cvsLayout->getElementOffset(i)) - fieldSize;
Chris Lattner8452a1f2004-08-17 06:36:49 +0000818 sizeSoFar += fieldSize + padSize;
819
820 // Now print the actual field value
Chris Lattnerbb644e32005-11-21 07:51:36 +0000821 EmitGlobalConstant(field);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000822
823 // Insert the field padding unless it's zero bytes...
Chris Lattnerbb644e32005-11-21 07:51:36 +0000824 EmitZeros(padSize);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000825 }
Chris Lattnerb84892d2007-02-10 19:59:22 +0000826 assert(sizeSoFar == cvsLayout->getSizeInBytes() &&
Chris Lattner8452a1f2004-08-17 06:36:49 +0000827 "Layout of constant struct may be incorrect!");
828 return;
829 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
830 // FP Constants are printed as integer constants to avoid losing
831 // precision...
Chris Lattner8452a1f2004-08-17 06:36:49 +0000832 if (CFP->getType() == Type::DoubleTy) {
Dale Johannesen245dceb2007-09-11 18:32:33 +0000833 double Val = CFP->getValueAPF().convertToDouble(); // for comment only
Dale Johannesen028084e2007-09-12 03:30:33 +0000834 uint64_t i = CFP->getValueAPF().convertToAPInt().getZExtValue();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000835 if (TAI->getData64bitsDirective())
Dale Johannesen245dceb2007-09-11 18:32:33 +0000836 O << TAI->getData64bitsDirective() << i << "\t"
Jim Laskeya6211dc2006-09-06 18:34:40 +0000837 << TAI->getCommentString() << " double value: " << Val << "\n";
Owen Anderson20a631f2006-05-03 01:29:57 +0000838 else if (TD->isBigEndian()) {
Dale Johannesen245dceb2007-09-11 18:32:33 +0000839 O << TAI->getData32bitsDirective() << unsigned(i >> 32)
Jim Laskeya6211dc2006-09-06 18:34:40 +0000840 << "\t" << TAI->getCommentString()
841 << " double most significant word " << Val << "\n";
Dale Johannesen245dceb2007-09-11 18:32:33 +0000842 O << TAI->getData32bitsDirective() << unsigned(i)
Jim Laskeya6211dc2006-09-06 18:34:40 +0000843 << "\t" << TAI->getCommentString()
844 << " double least significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000845 } else {
Dale Johannesen245dceb2007-09-11 18:32:33 +0000846 O << TAI->getData32bitsDirective() << unsigned(i)
Jim Laskeya6211dc2006-09-06 18:34:40 +0000847 << "\t" << TAI->getCommentString()
848 << " double least significant word " << Val << "\n";
Dale Johannesen245dceb2007-09-11 18:32:33 +0000849 O << TAI->getData32bitsDirective() << unsigned(i >> 32)
Jim Laskeya6211dc2006-09-06 18:34:40 +0000850 << "\t" << TAI->getCommentString()
851 << " double most significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000852 }
853 return;
Dale Johannesen028084e2007-09-12 03:30:33 +0000854 } else if (CFP->getType() == Type::FloatTy) {
Dale Johannesen245dceb2007-09-11 18:32:33 +0000855 float Val = CFP->getValueAPF().convertToFloat(); // for comment only
856 O << TAI->getData32bitsDirective()
Dale Johannesen028084e2007-09-12 03:30:33 +0000857 << CFP->getValueAPF().convertToAPInt().getZExtValue()
Jim Laskeya6211dc2006-09-06 18:34:40 +0000858 << "\t" << TAI->getCommentString() << " float " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000859 return;
Dale Johannesen028084e2007-09-12 03:30:33 +0000860 } else if (CFP->getType() == Type::X86_FP80Ty) {
861 // all long double variants are printed as hex
862 const uint64_t *p = CFP->getValueAPF().convertToAPInt().getRawData();
863 if (TD->isBigEndian()) {
864 O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48)
865 << "\t" << TAI->getCommentString()
866 << " long double most significant halfword\n";
867 O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32)
868 << "\t" << TAI->getCommentString()
869 << " long double next halfword\n";
870 O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 16)
871 << "\t" << TAI->getCommentString()
872 << " long double next halfword\n";
873 O << TAI->getData16bitsDirective() << uint16_t(p[0])
874 << "\t" << TAI->getCommentString()
875 << " long double next halfword\n";
876 O << TAI->getData16bitsDirective() << uint16_t(p[1])
877 << "\t" << TAI->getCommentString()
878 << " long double least significant halfword\n";
879 } else {
880 O << TAI->getData16bitsDirective() << uint16_t(p[1])
881 << "\t" << TAI->getCommentString()
882 << " long double least significant halfword\n";
883 O << TAI->getData16bitsDirective() << uint16_t(p[0])
884 << "\t" << TAI->getCommentString()
885 << " long double next halfword\n";
886 O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 16)
887 << "\t" << TAI->getCommentString()
888 << " long double next halfword\n";
889 O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 32)
890 << "\t" << TAI->getCommentString()
891 << " long double next halfword\n";
892 O << TAI->getData16bitsDirective() << uint16_t(p[0] >> 48)
893 << "\t" << TAI->getCommentString()
894 << " long double most significant halfword\n";
895 }
896 return;
897 } else assert(0 && "Floating point constant type not handled");
Reid Spencere63b6512006-12-31 05:55:36 +0000898 } else if (CV->getType() == Type::Int64Ty) {
Chris Lattner8452a1f2004-08-17 06:36:49 +0000899 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000900 uint64_t Val = CI->getZExtValue();
Misha Brukman835702a2005-04-21 22:36:52 +0000901
Jim Laskeya6211dc2006-09-06 18:34:40 +0000902 if (TAI->getData64bitsDirective())
903 O << TAI->getData64bitsDirective() << Val << "\n";
Owen Anderson20a631f2006-05-03 01:29:57 +0000904 else if (TD->isBigEndian()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000905 O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
906 << "\t" << TAI->getCommentString()
907 << " Double-word most significant word " << Val << "\n";
908 O << TAI->getData32bitsDirective() << unsigned(Val)
909 << "\t" << TAI->getCommentString()
910 << " Double-word least significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000911 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000912 O << TAI->getData32bitsDirective() << unsigned(Val)
913 << "\t" << TAI->getCommentString()
914 << " Double-word least significant word " << Val << "\n";
915 O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
916 << "\t" << TAI->getCommentString()
917 << " Double-word most significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000918 }
919 return;
920 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000921 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
922 const VectorType *PTy = CP->getType();
Nate Begeman41b1cdc2005-12-06 06:18:55 +0000923
924 for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
925 EmitGlobalConstant(CP->getOperand(I));
926
927 return;
Chris Lattner8452a1f2004-08-17 06:36:49 +0000928 }
929
930 const Type *type = CV->getType();
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000931 printDataDirective(type);
Chris Lattnerbb644e32005-11-21 07:51:36 +0000932 EmitConstantValueOnly(CV);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000933 O << "\n";
934}
Chris Lattner061d9e22006-01-27 02:10:10 +0000935
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000936void
937AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
938 // Target doesn't support this yet!
939 abort();
940}
941
Chris Lattnera32814b2006-09-26 23:59:50 +0000942/// PrintSpecial - Print information related to the specified machine instr
943/// that is independent of the operand, and may be independent of the instr
944/// itself. This can be useful for portably encoding the comment character
945/// or other bits of target-specific knowledge into the asmstrings. The
946/// syntax used is ${:comment}. Targets can override this to add support
947/// for their own strange codes.
948void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) {
Chris Lattner30b47082006-09-27 00:06:07 +0000949 if (!strcmp(Code, "private")) {
950 O << TAI->getPrivateGlobalPrefix();
951 } else if (!strcmp(Code, "comment")) {
Chris Lattnera32814b2006-09-26 23:59:50 +0000952 O << TAI->getCommentString();
953 } else if (!strcmp(Code, "uid")) {
954 // Assign a unique ID to this machine instruction.
955 static const MachineInstr *LastMI = 0;
Chris Lattnera9428c42007-02-05 21:23:52 +0000956 static const Function *F = 0;
Chris Lattnera32814b2006-09-26 23:59:50 +0000957 static unsigned Counter = 0U-1;
Chris Lattnera9428c42007-02-05 21:23:52 +0000958
959 // Comparing the address of MI isn't sufficient, because machineinstrs may
960 // be allocated to the same address across functions.
961 const Function *ThisF = MI->getParent()->getParent()->getFunction();
962
Chris Lattnera32814b2006-09-26 23:59:50 +0000963 // If this is a new machine instruction, bump the counter.
Chris Lattnera9428c42007-02-05 21:23:52 +0000964 if (LastMI != MI || F != ThisF) {
965 ++Counter;
966 LastMI = MI;
Chris Lattner89e66e02007-02-06 01:56:31 +0000967 F = ThisF;
Chris Lattnera9428c42007-02-05 21:23:52 +0000968 }
Chris Lattnera32814b2006-09-26 23:59:50 +0000969 O << Counter;
970 } else {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000971 cerr << "Unknown special formatter '" << Code
972 << "' for machine instr: " << *MI;
Chris Lattnera32814b2006-09-26 23:59:50 +0000973 exit(1);
974 }
975}
976
977
Chris Lattner061d9e22006-01-27 02:10:10 +0000978/// printInlineAsm - This method formats and prints the specified machine
979/// instruction that is an inline asm.
980void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattner57ecb562006-01-30 23:00:08 +0000981 unsigned NumOperands = MI->getNumOperands();
982
983 // Count the number of register definitions.
984 unsigned NumDefs = 0;
Dan Gohman9da02f52007-09-14 20:33:02 +0000985 for (; MI->getOperand(NumDefs).isRegister() && MI->getOperand(NumDefs).isDef();
Chris Lattner45456d42006-09-05 20:02:51 +0000986 ++NumDefs)
Chris Lattner57ecb562006-01-30 23:00:08 +0000987 assert(NumDefs != NumOperands-1 && "No asm string?");
988
989 assert(MI->getOperand(NumDefs).isExternalSymbol() && "No asm string?");
Chris Lattneraa23fa92006-02-01 22:41:11 +0000990
991 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattner57ecb562006-01-30 23:00:08 +0000992 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattneraa23fa92006-02-01 22:41:11 +0000993
Chris Lattner3390cbe2006-07-28 00:17:20 +0000994 // If this asmstr is empty, don't bother printing the #APP/#NOAPP markers.
995 if (AsmStr[0] == 0) {
996 O << "\n"; // Tab already printed, avoid double indenting next instr.
997 return;
998 }
999
Jim Laskeya6211dc2006-09-06 18:34:40 +00001000 O << TAI->getInlineAsmStart() << "\n\t";
Chris Lattner3390cbe2006-07-28 00:17:20 +00001001
Bill Wendlinge21237e2007-01-16 03:42:04 +00001002 // The variant of the current asmprinter.
1003 int AsmPrinterVariant = TAI->getAssemblerDialect();
1004
Chris Lattneraa23fa92006-02-01 22:41:11 +00001005 int CurVariant = -1; // The number of the {.|.|.} region we are in.
1006 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner3a5ed552006-02-01 01:28:23 +00001007
Chris Lattneraa23fa92006-02-01 22:41:11 +00001008 while (*LastEmitted) {
1009 switch (*LastEmitted) {
1010 default: {
1011 // Not a special case, emit the string section literally.
1012 const char *LiteralEnd = LastEmitted+1;
1013 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattnera633c3132006-05-05 21:47:05 +00001014 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattneraa23fa92006-02-01 22:41:11 +00001015 ++LiteralEnd;
1016 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1017 O.write(LastEmitted, LiteralEnd-LastEmitted);
1018 LastEmitted = LiteralEnd;
1019 break;
1020 }
Chris Lattnera633c3132006-05-05 21:47:05 +00001021 case '\n':
1022 ++LastEmitted; // Consume newline character.
Chris Lattnerb58f93f2007-04-30 17:00:18 +00001023 O << "\n"; // Indent code with newline.
Chris Lattnera633c3132006-05-05 21:47:05 +00001024 break;
Chris Lattneraa23fa92006-02-01 22:41:11 +00001025 case '$': {
1026 ++LastEmitted; // Consume '$' character.
Chris Lattnerfc416fa2006-10-03 23:27:09 +00001027 bool Done = true;
1028
1029 // Handle escapes.
1030 switch (*LastEmitted) {
1031 default: Done = false; break;
1032 case '$': // $$ -> $
Chris Lattneraa23fa92006-02-01 22:41:11 +00001033 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1034 O << '$';
1035 ++LastEmitted; // Consume second '$' character.
1036 break;
Chris Lattnerfc416fa2006-10-03 23:27:09 +00001037 case '(': // $( -> same as GCC's { character.
1038 ++LastEmitted; // Consume '(' character.
1039 if (CurVariant != -1) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001040 cerr << "Nested variants found in inline asm string: '"
1041 << AsmStr << "'\n";
Chris Lattnerfc416fa2006-10-03 23:27:09 +00001042 exit(1);
1043 }
1044 CurVariant = 0; // We're in the first variant now.
1045 break;
1046 case '|':
1047 ++LastEmitted; // consume '|' character.
1048 if (CurVariant == -1) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001049 cerr << "Found '|' character outside of variant in inline asm "
1050 << "string: '" << AsmStr << "'\n";
Chris Lattnerfc416fa2006-10-03 23:27:09 +00001051 exit(1);
1052 }
1053 ++CurVariant; // We're in the next variant.
1054 break;
1055 case ')': // $) -> same as GCC's } char.
1056 ++LastEmitted; // consume ')' character.
1057 if (CurVariant == -1) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001058 cerr << "Found '}' character outside of variant in inline asm "
1059 << "string: '" << AsmStr << "'\n";
Chris Lattnerfc416fa2006-10-03 23:27:09 +00001060 exit(1);
1061 }
1062 CurVariant = -1;
1063 break;
Chris Lattneraa23fa92006-02-01 22:41:11 +00001064 }
Chris Lattnerfc416fa2006-10-03 23:27:09 +00001065 if (Done) break;
Chris Lattneraa23fa92006-02-01 22:41:11 +00001066
1067 bool HasCurlyBraces = false;
1068 if (*LastEmitted == '{') { // ${variable}
1069 ++LastEmitted; // Consume '{' character.
1070 HasCurlyBraces = true;
1071 }
1072
1073 const char *IDStart = LastEmitted;
1074 char *IDEnd;
Chris Lattnerd39e3882007-01-23 00:36:17 +00001075 errno = 0;
Chris Lattneraa23fa92006-02-01 22:41:11 +00001076 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1077 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001078 cerr << "Bad $ operand number in inline asm string: '"
1079 << AsmStr << "'\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +00001080 exit(1);
1081 }
1082 LastEmitted = IDEnd;
1083
Chris Lattner34f74c12006-02-06 22:17:23 +00001084 char Modifier[2] = { 0, 0 };
1085
Chris Lattneraa23fa92006-02-01 22:41:11 +00001086 if (HasCurlyBraces) {
Chris Lattner34f74c12006-02-06 22:17:23 +00001087 // If we have curly braces, check for a modifier character. This
1088 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1089 if (*LastEmitted == ':') {
1090 ++LastEmitted; // Consume ':' character.
1091 if (*LastEmitted == 0) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001092 cerr << "Bad ${:} expression in inline asm string: '"
1093 << AsmStr << "'\n";
Chris Lattner34f74c12006-02-06 22:17:23 +00001094 exit(1);
1095 }
1096
1097 Modifier[0] = *LastEmitted;
1098 ++LastEmitted; // Consume modifier character.
1099 }
1100
Chris Lattneraa23fa92006-02-01 22:41:11 +00001101 if (*LastEmitted != '}') {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001102 cerr << "Bad ${} expression in inline asm string: '"
1103 << AsmStr << "'\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +00001104 exit(1);
1105 }
1106 ++LastEmitted; // Consume '}' character.
1107 }
1108
1109 if ((unsigned)Val >= NumOperands-1) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001110 cerr << "Invalid $ operand number in inline asm string: '"
1111 << AsmStr << "'\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +00001112 exit(1);
1113 }
1114
Chris Lattner571d9642006-02-23 19:21:04 +00001115 // Okay, we finally have a value number. Ask the target to print this
Chris Lattneraa23fa92006-02-01 22:41:11 +00001116 // operand!
Chris Lattner571d9642006-02-23 19:21:04 +00001117 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1118 unsigned OpNo = 1;
Chris Lattner8f8b5e42006-06-08 18:00:47 +00001119
1120 bool Error = false;
1121
Chris Lattner571d9642006-02-23 19:21:04 +00001122 // Scan to find the machine operand number for the operand.
Chris Lattner5af3fde2006-02-24 19:50:58 +00001123 for (; Val; --Val) {
Chris Lattner8f8b5e42006-06-08 18:00:47 +00001124 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner5af3fde2006-02-24 19:50:58 +00001125 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
1126 OpNo += (OpFlags >> 3) + 1;
1127 }
Chris Lattner1d08c652006-02-24 20:21:58 +00001128
Chris Lattner8f8b5e42006-06-08 18:00:47 +00001129 if (OpNo >= MI->getNumOperands()) {
1130 Error = true;
Chris Lattner1d08c652006-02-24 20:21:58 +00001131 } else {
Chris Lattner8f8b5e42006-06-08 18:00:47 +00001132 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
1133 ++OpNo; // Skip over the ID number.
1134
1135 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
1136 if ((OpFlags & 7) == 4 /*ADDR MODE*/) {
1137 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1138 Modifier[0] ? Modifier : 0);
1139 } else {
1140 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1141 Modifier[0] ? Modifier : 0);
1142 }
Chris Lattner1d08c652006-02-24 20:21:58 +00001143 }
1144 if (Error) {
Bill Wendlingf3baad32006-12-07 01:30:32 +00001145 cerr << "Invalid operand found in inline asm: '"
1146 << AsmStr << "'\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +00001147 MI->dump();
1148 exit(1);
1149 }
Chris Lattner571d9642006-02-23 19:21:04 +00001150 }
Chris Lattneraa23fa92006-02-01 22:41:11 +00001151 break;
1152 }
Chris Lattneraa23fa92006-02-01 22:41:11 +00001153 }
1154 }
Jim Laskeya6211dc2006-09-06 18:34:40 +00001155 O << "\n\t" << TAI->getInlineAsmEnd() << "\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +00001156}
1157
Jim Laskeyf9e54452007-01-26 14:34:52 +00001158/// printLabel - This method prints a local label used by debug and
1159/// exception handling tables.
1160void AsmPrinter::printLabel(const MachineInstr *MI) const {
Jim Laskeyc3de9b42007-02-01 16:31:34 +00001161 O << "\n"
1162 << TAI->getPrivateGlobalPrefix()
Jim Laskey09953e62007-02-21 22:48:45 +00001163 << "label"
Jim Laskeyf9e54452007-01-26 14:34:52 +00001164 << MI->getOperand(0).getImmedValue()
1165 << ":\n";
1166}
1167
Chris Lattneraa23fa92006-02-01 22:41:11 +00001168/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1169/// instruction, using the specified assembler variant. Targets should
1170/// overried this to format as appropriate.
1171bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner34f74c12006-02-06 22:17:23 +00001172 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattneraa23fa92006-02-01 22:41:11 +00001173 // Target doesn't support this yet!
1174 return true;
Chris Lattner061d9e22006-01-27 02:10:10 +00001175}
Chris Lattner1d08c652006-02-24 20:21:58 +00001176
1177bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1178 unsigned AsmVariant,
1179 const char *ExtraCode) {
1180 // Target doesn't support this yet!
1181 return true;
1182}
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001183
1184/// printBasicBlockLabel - This method prints the label for the specified
1185/// MachineBasicBlock
Nate Begemanb9d4f832006-05-02 05:37:32 +00001186void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
1187 bool printColon,
1188 bool printComment) const {
Jim Laskeya6211dc2006-09-06 18:34:40 +00001189 O << TAI->getPrivateGlobalPrefix() << "BB" << FunctionNumber << "_"
Nate Begeman4971ba52006-05-02 17:36:46 +00001190 << MBB->getNumber();
Nate Begemanb9d4f832006-05-02 05:37:32 +00001191 if (printColon)
1192 O << ':';
Chris Lattner8b1a59a2006-10-05 21:40:14 +00001193 if (printComment && MBB->getBasicBlock())
Dan Gohman33d0ea22007-07-30 15:06:25 +00001194 O << '\t' << TAI->getCommentString() << ' '
1195 << MBB->getBasicBlock()->getName();
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001196}
Nate Begeman984c1a42006-08-12 21:29:52 +00001197
1198/// printSetLabel - This method prints a set label for the specified
1199/// MachineBasicBlock
1200void AsmPrinter::printSetLabel(unsigned uid,
1201 const MachineBasicBlock *MBB) const {
Jim Laskeya6211dc2006-09-06 18:34:40 +00001202 if (!TAI->getSetDirective())
Nate Begeman984c1a42006-08-12 21:29:52 +00001203 return;
1204
Jim Laskeya6211dc2006-09-06 18:34:40 +00001205 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
1206 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Nate Begeman984c1a42006-08-12 21:29:52 +00001207 printBasicBlockLabel(MBB, false, false);
Jim Laskeya6211dc2006-09-06 18:34:40 +00001208 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Nate Begeman984c1a42006-08-12 21:29:52 +00001209 << '_' << uid << '\n';
1210}
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001211
Evan Cheng91f120f2006-11-01 09:23:08 +00001212void AsmPrinter::printSetLabel(unsigned uid, unsigned uid2,
1213 const MachineBasicBlock *MBB) const {
1214 if (!TAI->getSetDirective())
1215 return;
1216
1217 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
1218 << getFunctionNumber() << '_' << uid << '_' << uid2
1219 << "_set_" << MBB->getNumber() << ',';
1220 printBasicBlockLabel(MBB, false, false);
1221 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
1222 << '_' << uid << '_' << uid2 << '\n';
1223}
1224
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001225/// printDataDirective - This method prints the asm directive for the
1226/// specified type.
1227void AsmPrinter::printDataDirective(const Type *type) {
1228 const TargetData *TD = TM.getTargetData();
1229 switch (type->getTypeID()) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001230 case Type::IntegerTyID: {
1231 unsigned BitWidth = cast<IntegerType>(type)->getBitWidth();
1232 if (BitWidth <= 8)
1233 O << TAI->getData8bitsDirective();
1234 else if (BitWidth <= 16)
1235 O << TAI->getData16bitsDirective();
1236 else if (BitWidth <= 32)
1237 O << TAI->getData32bitsDirective();
1238 else if (BitWidth <= 64) {
1239 assert(TAI->getData64bitsDirective() &&
1240 "Target cannot handle 64-bit constant exprs!");
1241 O << TAI->getData64bitsDirective();
1242 }
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001243 break;
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001244 }
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001245 case Type::PointerTyID:
1246 if (TD->getPointerSize() == 8) {
1247 assert(TAI->getData64bitsDirective() &&
1248 "Target cannot handle 64-bit pointer exprs!");
1249 O << TAI->getData64bitsDirective();
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001250 } else {
1251 O << TAI->getData32bitsDirective();
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001252 }
Evan Cheng45fe3bc2006-09-12 21:00:35 +00001253 break;
1254 case Type::FloatTyID: case Type::DoubleTyID:
1255 assert (0 && "Should have already output floating point constant.");
1256 default:
1257 assert (0 && "Can't handle printing this type of thing");
1258 break;
1259 }
1260}
Dale Johannesen915e1542007-02-16 01:54:53 +00001261