blob: 16c478dcdc1c4ce6ecb92b0def70dc88d732a29d [file] [log] [blame]
Chris Lattnera80ba712004-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 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"
Chris Lattner3b4fd322005-11-21 08:25:09 +000019#include "llvm/CodeGen/MachineConstantPool.h"
Nate Begeman37efe672006-04-22 18:53:45 +000020#include "llvm/CodeGen/MachineJumpTableInfo.h"
Jim Laskeyf1cdea12007-01-25 15:12:02 +000021#include "llvm/Support/CommandLine.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000022#include "llvm/Support/Mangler.h"
Jim Laskeycb6682f2005-08-17 19:34:49 +000023#include "llvm/Support/MathExtras.h"
Bill Wendlingbdc679d2006-11-29 00:39:47 +000024#include "llvm/Support/Streams.h"
Jim Laskey563321a2006-09-06 18:34:40 +000025#include "llvm/Target/TargetAsmInfo.h"
Owen Anderson07000c62006-05-12 06:33:49 +000026#include "llvm/Target/TargetData.h"
Chris Lattner0336fdb2006-10-06 22:50:56 +000027#include "llvm/Target/TargetLowering.h"
Chris Lattnera80ba712004-08-16 23:15:22 +000028#include "llvm/Target/TargetMachine.h"
Chris Lattner66099132006-02-01 22:41:11 +000029#include <cerrno>
Chris Lattnera80ba712004-08-16 23:15:22 +000030using namespace llvm;
31
Jim Laskeyf1cdea12007-01-25 15:12:02 +000032static cl::opt<bool>
33AsmVerbose("asm-verbose", cl::Hidden, cl::desc("Add comments to directives."));
34
Jim Laskeya0f3d172006-09-07 22:06:40 +000035AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm,
36 const TargetAsmInfo *T)
Jim Laskey563321a2006-09-06 18:34:40 +000037: FunctionNumber(0), O(o), TM(tm), TAI(T)
38{}
Chris Lattnered138932005-12-13 06:32:10 +000039
Chris Lattner52f06702006-10-05 02:42:47 +000040std::string AsmPrinter::getSectionForFunction(const Function &F) const {
41 return TAI->getTextSection();
42}
43
Chris Lattnered138932005-12-13 06:32:10 +000044
Chris Lattner4632d7a2006-05-09 04:59:56 +000045/// SwitchToTextSection - Switch to the specified text section of the executable
46/// if we are not already in it!
Chris Lattnerac28fbd2005-11-21 07:06:27 +000047///
Chris Lattner4632d7a2006-05-09 04:59:56 +000048void AsmPrinter::SwitchToTextSection(const char *NewSection,
49 const GlobalValue *GV) {
Chris Lattnerac28fbd2005-11-21 07:06:27 +000050 std::string NS;
Chris Lattnera7090ae2006-05-09 05:24:50 +000051 if (GV && GV->hasSection())
Jim Laskey563321a2006-09-06 18:34:40 +000052 NS = TAI->getSwitchToSectionDirective() + GV->getSection();
Chris Lattnera7090ae2006-05-09 05:24:50 +000053 else
54 NS = NewSection;
55
56 // If we're already in this section, we're done.
57 if (CurrentSection == NS) return;
Jeff Cohen51b776d2006-05-02 03:58:45 +000058
Chris Lattner7faec9b2006-05-09 05:33:48 +000059 // Close the current section, if applicable.
Jim Laskey563321a2006-09-06 18:34:40 +000060 if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
61 O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
Jeff Cohen51b776d2006-05-02 03:58:45 +000062
Chris Lattner7faec9b2006-05-09 05:33:48 +000063 CurrentSection = NS;
64
65 if (!CurrentSection.empty())
Jim Laskey563321a2006-09-06 18:34:40 +000066 O << CurrentSection << TAI->getTextSectionStartSuffix() << '\n';
Chris Lattnerac28fbd2005-11-21 07:06:27 +000067}
68
Nate Begeman2f1ae882006-07-27 01:13:04 +000069/// SwitchToDataSection - Switch to the specified data section of the executable
Chris Lattner4632d7a2006-05-09 04:59:56 +000070/// if we are not already in it!
71///
72void AsmPrinter::SwitchToDataSection(const char *NewSection,
73 const GlobalValue *GV) {
74 std::string NS;
Chris Lattnerb81cb612006-05-09 05:23:12 +000075 if (GV && GV->hasSection())
Jim Laskey563321a2006-09-06 18:34:40 +000076 NS = TAI->getSwitchToSectionDirective() + GV->getSection();
Chris Lattnerb81cb612006-05-09 05:23:12 +000077 else
78 NS = NewSection;
Chris Lattner4632d7a2006-05-09 04:59:56 +000079
Chris Lattnerb81cb612006-05-09 05:23:12 +000080 // If we're already in this section, we're done.
81 if (CurrentSection == NS) return;
82
Chris Lattner7faec9b2006-05-09 05:33:48 +000083 // Close the current section, if applicable.
Jim Laskey563321a2006-09-06 18:34:40 +000084 if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
85 O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
Chris Lattner7faec9b2006-05-09 05:33:48 +000086
87 CurrentSection = NS;
Chris Lattner4632d7a2006-05-09 04:59:56 +000088
Chris Lattner7faec9b2006-05-09 05:33:48 +000089 if (!CurrentSection.empty())
Jim Laskey563321a2006-09-06 18:34:40 +000090 O << CurrentSection << TAI->getDataSectionStartSuffix() << '\n';
Chris Lattner4632d7a2006-05-09 04:59:56 +000091}
92
93
Chris Lattnera80ba712004-08-16 23:15:22 +000094bool AsmPrinter::doInitialization(Module &M) {
Jim Laskey563321a2006-09-06 18:34:40 +000095 Mang = new Mangler(M, TAI->getGlobalPrefix());
Chris Lattner2c1b1592006-01-23 23:47:53 +000096
Chris Lattner3e2fa7a2006-01-24 04:16:34 +000097 if (!M.getModuleInlineAsm().empty())
Jim Laskey563321a2006-09-06 18:34:40 +000098 O << TAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner3e2fa7a2006-01-24 04:16:34 +000099 << M.getModuleInlineAsm()
Jim Laskey563321a2006-09-06 18:34:40 +0000100 << "\n" << TAI->getCommentString()
101 << " End of file scope inline assembly\n";
Chris Lattner2c1b1592006-01-23 23:47:53 +0000102
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000103 SwitchToDataSection(""); // Reset back to no section.
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000104
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000105 if (MachineModuleInfo *MMI = getAnalysisToUpdate<MachineModuleInfo>()) {
106 MMI->AnalyzeModule(M);
Jim Laskeyb3e789a2006-01-26 20:21:46 +0000107 }
108
Chris Lattnera80ba712004-08-16 23:15:22 +0000109 return false;
110}
111
112bool AsmPrinter::doFinalization(Module &M) {
Rafael Espindola15404d02006-12-18 03:37:18 +0000113 if (TAI->getWeakRefDirective()) {
114 if (ExtWeakSymbols.begin() != ExtWeakSymbols.end())
115 SwitchToDataSection("");
116
117 for (std::set<const GlobalValue*>::iterator i = ExtWeakSymbols.begin(),
118 e = ExtWeakSymbols.end(); i != e; ++i) {
119 const GlobalValue *GV = *i;
120 std::string Name = Mang->getValueName(GV);
121 O << TAI->getWeakRefDirective() << Name << "\n";
122 }
123 }
124
Chris Lattnera80ba712004-08-16 23:15:22 +0000125 delete Mang; Mang = 0;
126 return false;
127}
128
Chris Lattner25045bd2005-11-21 07:51:36 +0000129void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattnera80ba712004-08-16 23:15:22 +0000130 // What's my mangled name?
Chris Lattner450de392005-11-10 18:36:17 +0000131 CurrentFnName = Mang->getValueName(MF.getFunction());
Chris Lattner77bc2282005-11-21 08:13:27 +0000132 IncrementFunctionNumber();
Chris Lattnera80ba712004-08-16 23:15:22 +0000133}
134
Chris Lattner3b4fd322005-11-21 08:25:09 +0000135/// EmitConstantPool - Print to the current output stream assembly
136/// representations of the constants in the constant pool MCP. This is
137/// used to print out constants which have been "spilled to memory" by
138/// the code generator.
139///
140void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000141 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattner3b4fd322005-11-21 08:25:09 +0000142 if (CP.empty()) return;
Evan Cheng2d2cec12006-06-29 00:26:09 +0000143
144 // Some targets require 4-, 8-, and 16- byte constant literals to be placed
145 // in special sections.
146 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > FourByteCPs;
147 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > EightByteCPs;
148 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > SixteenByteCPs;
149 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > OtherCPs;
Evan Chengd6594ae2006-09-12 21:00:35 +0000150 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > TargetCPs;
Chris Lattner3b4fd322005-11-21 08:25:09 +0000151 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Evan Cheng2d2cec12006-06-29 00:26:09 +0000152 MachineConstantPoolEntry CPE = CP[i];
Evan Chengd5a99d72006-09-14 07:35:00 +0000153 const Type *Ty = CPE.getType();
Jim Laskey563321a2006-09-06 18:34:40 +0000154 if (TAI->getFourByteConstantSection() &&
Evan Cheng2d2cec12006-06-29 00:26:09 +0000155 TM.getTargetData()->getTypeSize(Ty) == 4)
156 FourByteCPs.push_back(std::make_pair(CPE, i));
Evan Cheng61c958e2006-09-07 18:50:20 +0000157 else if (TAI->getEightByteConstantSection() &&
Evan Cheng2d2cec12006-06-29 00:26:09 +0000158 TM.getTargetData()->getTypeSize(Ty) == 8)
159 EightByteCPs.push_back(std::make_pair(CPE, i));
Evan Cheng61c958e2006-09-07 18:50:20 +0000160 else if (TAI->getSixteenByteConstantSection() &&
Evan Cheng2d2cec12006-06-29 00:26:09 +0000161 TM.getTargetData()->getTypeSize(Ty) == 16)
162 SixteenByteCPs.push_back(std::make_pair(CPE, i));
163 else
164 OtherCPs.push_back(std::make_pair(CPE, i));
165 }
166
167 unsigned Alignment = MCP->getConstantPoolAlignment();
Jim Laskey563321a2006-09-06 18:34:40 +0000168 EmitConstantPool(Alignment, TAI->getFourByteConstantSection(), FourByteCPs);
169 EmitConstantPool(Alignment, TAI->getEightByteConstantSection(), EightByteCPs);
170 EmitConstantPool(Alignment, TAI->getSixteenByteConstantSection(),
171 SixteenByteCPs);
172 EmitConstantPool(Alignment, TAI->getConstantPoolSection(), OtherCPs);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000173}
174
175void AsmPrinter::EmitConstantPool(unsigned Alignment, const char *Section,
176 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > &CP) {
177 if (CP.empty()) return;
178
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000179 SwitchToDataSection(Section);
Evan Cheng2d2cec12006-06-29 00:26:09 +0000180 EmitAlignment(Alignment);
181 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Jim Laskey563321a2006-09-06 18:34:40 +0000182 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
183 << CP[i].second << ":\t\t\t\t\t" << TAI->getCommentString() << " ";
Evan Chengd5a99d72006-09-14 07:35:00 +0000184 WriteTypeSymbolic(O, CP[i].first.getType(), 0) << '\n';
185 if (CP[i].first.isMachineConstantPoolEntry())
Evan Chengd6594ae2006-09-12 21:00:35 +0000186 EmitMachineConstantPoolValue(CP[i].first.Val.MachineCPVal);
Evan Chengd5a99d72006-09-14 07:35:00 +0000187 else
Evan Chengd6594ae2006-09-12 21:00:35 +0000188 EmitGlobalConstant(CP[i].first.Val.ConstVal);
Chris Lattner3029f922006-02-09 04:46:04 +0000189 if (i != e-1) {
Evan Chengd5a99d72006-09-14 07:35:00 +0000190 const Type *Ty = CP[i].first.getType();
Evan Cheng2d2cec12006-06-29 00:26:09 +0000191 unsigned EntSize =
Evan Chengd6594ae2006-09-12 21:00:35 +0000192 TM.getTargetData()->getTypeSize(Ty);
Evan Chengd5a99d72006-09-14 07:35:00 +0000193 unsigned ValEnd = CP[i].first.getOffset() + EntSize;
Chris Lattner3029f922006-02-09 04:46:04 +0000194 // Emit inter-object padding for alignment.
Evan Chengd5a99d72006-09-14 07:35:00 +0000195 EmitZeros(CP[i+1].first.getOffset()-ValEnd);
Chris Lattner3029f922006-02-09 04:46:04 +0000196 }
Chris Lattner3b4fd322005-11-21 08:25:09 +0000197 }
198}
199
Nate Begeman37efe672006-04-22 18:53:45 +0000200/// EmitJumpTableInfo - Print assembly representations of the jump tables used
201/// by the current function to the current output stream.
202///
Chris Lattner1da31ee2006-10-05 03:01:21 +0000203void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
204 MachineFunction &MF) {
Nate Begeman37efe672006-04-22 18:53:45 +0000205 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
206 if (JT.empty()) return;
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000207 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
Nate Begeman4d9bbdc2006-07-27 16:46:58 +0000208
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000209 // Use JumpTableDirective otherwise honor the entry size from the jump table
210 // info.
Andrew Lenharthbeec30e2006-09-24 19:45:58 +0000211 const char *JTEntryDirective = TAI->getJumpTableDirective();
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000212 bool HadJTEntryDirective = JTEntryDirective != NULL;
213 if (!HadJTEntryDirective) {
214 JTEntryDirective = MJTI->getEntrySize() == 4 ?
215 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
216 }
Nate Begeman37efe672006-04-22 18:53:45 +0000217
Nate Begeman2f1ae882006-07-27 01:13:04 +0000218 // Pick the directive to use to print the jump table entries, and switch to
219 // the appropriate section.
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000220 TargetLowering *LoweringInfo = TM.getTargetLowering();
Anton Korobeynikov24287dd2006-12-19 21:04:20 +0000221
222 const char* JumpTableDataSection = TAI->getJumpTableDataSection();
223 if ((IsPic && !(LoweringInfo && LoweringInfo->usesGlobalOffsetTable())) ||
224 !JumpTableDataSection) {
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000225 // In PIC mode, we need to emit the jump table to the same section as the
226 // function body itself, otherwise the label differences won't make sense.
Anton Korobeynikov24287dd2006-12-19 21:04:20 +0000227 // We should also do if the section name is NULL.
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000228 const Function *F = MF.getFunction();
229 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Nate Begeman2f1ae882006-07-27 01:13:04 +0000230 } else {
Anton Korobeynikov24287dd2006-12-19 21:04:20 +0000231 SwitchToDataSection(JumpTableDataSection);
Nate Begeman2f1ae882006-07-27 01:13:04 +0000232 }
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000233
234 EmitAlignment(Log2_32(MJTI->getAlignment()));
Chris Lattner0c4e6782006-07-15 01:34:12 +0000235
Nate Begeman37efe672006-04-22 18:53:45 +0000236 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
Nate Begeman52a51e382006-08-12 21:29:52 +0000237 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
Chris Lattner07371882006-10-28 18:10:06 +0000238
239 // If this jump table was deleted, ignore it.
240 if (JTBBs.empty()) continue;
Nate Begeman52a51e382006-08-12 21:29:52 +0000241
242 // For PIC codegen, if possible we want to use the SetDirective to reduce
243 // the number of relocations the assembler will generate for the jump table.
244 // Set directives are all printed before the jump table itself.
245 std::set<MachineBasicBlock*> EmittedSets;
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000246 if (TAI->getSetDirective() && IsPic)
Nate Begeman52a51e382006-08-12 21:29:52 +0000247 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
248 if (EmittedSets.insert(JTBBs[ii]).second)
249 printSetLabel(i, JTBBs[ii]);
250
Chris Lattner393a8ee2007-01-18 01:12:56 +0000251 // On some targets (e.g. darwin) we want to emit two consequtive labels
252 // before each jump table. The first label is never referenced, but tells
253 // the assembler and linker the extents of the jump table object. The
254 // second label is actually referenced by the code.
255 if (const char *JTLabelPrefix = TAI->getJumpTableSpecialLabelPrefix())
256 O << JTLabelPrefix << "JTI" << getFunctionNumber() << '_' << i << ":\n";
257
Jim Laskey563321a2006-09-06 18:34:40 +0000258 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
259 << '_' << i << ":\n";
Nate Begeman52a51e382006-08-12 21:29:52 +0000260
Nate Begeman37efe672006-04-22 18:53:45 +0000261 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
Nate Begeman4d9bbdc2006-07-27 16:46:58 +0000262 O << JTEntryDirective << ' ';
Nate Begeman52a51e382006-08-12 21:29:52 +0000263 // If we have emitted set directives for the jump table entries, print
264 // them rather than the entries themselves. If we're emitting PIC, then
265 // emit the table entries as differences between two text section labels.
266 // If we're emitting non-PIC code, then emit the entries as direct
267 // references to the target basic blocks.
268 if (!EmittedSets.empty()) {
Jim Laskey563321a2006-09-06 18:34:40 +0000269 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
270 << '_' << i << "_set_" << JTBBs[ii]->getNumber();
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000271 } else if (IsPic) {
Nate Begeman52a51e382006-08-12 21:29:52 +0000272 printBasicBlockLabel(JTBBs[ii], false, false);
Chris Lattner393a8ee2007-01-18 01:12:56 +0000273 // If the arch uses custom Jump Table directives, don't calc relative to
274 // JT
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000275 if (!HadJTEntryDirective)
276 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI"
277 << getFunctionNumber() << '_' << i;
Nate Begeman52a51e382006-08-12 21:29:52 +0000278 } else {
279 printBasicBlockLabel(JTBBs[ii], false, false);
Nate Begeman2f1ae882006-07-27 01:13:04 +0000280 }
Nate Begeman37efe672006-04-22 18:53:45 +0000281 O << '\n';
282 }
283 }
284}
285
Chris Lattnered138932005-12-13 06:32:10 +0000286/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
287/// special global used by LLVM. If so, emit it and return true, otherwise
288/// do nothing and return false.
289bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Jim Laskey78098112006-03-07 22:00:35 +0000290 // Ignore debug and non-emitted data.
291 if (GV->getSection() == "llvm.metadata") return true;
292
293 if (!GV->hasAppendingLinkage()) return false;
294
295 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnered138932005-12-13 06:32:10 +0000296
Chris Lattnercb05af82006-09-26 03:38:18 +0000297 if (GV->getName() == "llvm.used") {
298 if (TAI->getUsedDirective() != 0) // No need to emit this at all.
299 EmitLLVMUsedList(GV->getInitializer());
300 return true;
301 }
Chris Lattnered138932005-12-13 06:32:10 +0000302
Chris Lattner5166b822006-01-12 19:17:23 +0000303 if (GV->getName() == "llvm.global_ctors" && GV->use_empty()) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000304 SwitchToDataSection(TAI->getStaticCtorsSection());
Chris Lattnered138932005-12-13 06:32:10 +0000305 EmitAlignment(2, 0);
306 EmitXXStructorList(GV->getInitializer());
307 return true;
308 }
309
Chris Lattner5166b822006-01-12 19:17:23 +0000310 if (GV->getName() == "llvm.global_dtors" && GV->use_empty()) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000311 SwitchToDataSection(TAI->getStaticDtorsSection());
Chris Lattnered138932005-12-13 06:32:10 +0000312 EmitAlignment(2, 0);
313 EmitXXStructorList(GV->getInitializer());
314 return true;
315 }
316
317 return false;
318}
319
Chris Lattnercb05af82006-09-26 03:38:18 +0000320/// EmitLLVMUsedList - For targets that define a TAI::UsedDirective, mark each
321/// global in the specified llvm.used list as being used with this directive.
322void AsmPrinter::EmitLLVMUsedList(Constant *List) {
323 const char *Directive = TAI->getUsedDirective();
324
325 // Should be an array of 'sbyte*'.
326 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
327 if (InitList == 0) return;
328
329 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
330 O << Directive;
331 EmitConstantValueOnly(InitList->getOperand(i));
332 O << "\n";
333 }
334}
335
Chris Lattnered138932005-12-13 06:32:10 +0000336/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
337/// function pointers, ignoring the init priority.
338void AsmPrinter::EmitXXStructorList(Constant *List) {
339 // Should be an array of '{ int, void ()* }' structs. The first value is the
340 // init priority, which we ignore.
341 if (!isa<ConstantArray>(List)) return;
342 ConstantArray *InitList = cast<ConstantArray>(List);
343 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
344 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
345 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner8de324b2005-12-21 01:17:37 +0000346
347 if (CS->getOperand(1)->isNullValue())
348 return; // Found a null terminator, exit printing.
349 // Emit the function pointer.
Chris Lattnered138932005-12-13 06:32:10 +0000350 EmitGlobalConstant(CS->getOperand(1));
351 }
352}
Chris Lattner3b4fd322005-11-21 08:25:09 +0000353
Jim Laskeya1a19f82006-10-17 13:41:07 +0000354/// getGlobalLinkName - Returns the asm/link name of of the specified
355/// global variable. Should be overridden by each target asm printer to
356/// generate the appropriate value.
Jim Laskey99e41ee2006-10-17 17:17:24 +0000357const std::string AsmPrinter::getGlobalLinkName(const GlobalVariable *GV) const{
358 std::string LinkName;
Jim Laskey03742482006-11-20 20:29:06 +0000359
360 if (isa<Function>(GV)) {
361 LinkName += TAI->getFunctionAddrPrefix();
362 LinkName += Mang->getValueName(GV);
363 LinkName += TAI->getFunctionAddrSuffix();
364 } else {
365 LinkName += TAI->getGlobalVarAddrPrefix();
366 LinkName += Mang->getValueName(GV);
367 LinkName += TAI->getGlobalVarAddrSuffix();
368 }
369
Jim Laskey99e41ee2006-10-17 17:17:24 +0000370 return LinkName;
Jim Laskeya1a19f82006-10-17 13:41:07 +0000371}
372
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000373/// EmitExternalGlobal - Emit the external reference to a global variable.
374/// Should be overridden if an indirect reference should be used.
375void AsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
376 O << getGlobalLinkName(GV);
377}
378
379
380
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000381//===----------------------------------------------------------------------===//
382/// LEB 128 number encoding.
383
384/// PrintULEB128 - Print a series of hexidecimal values (separated by commas)
385/// representing an unsigned leb128 value.
386void AsmPrinter::PrintULEB128(unsigned Value) const {
387 do {
388 unsigned Byte = Value & 0x7f;
389 Value >>= 7;
390 if (Value) Byte |= 0x80;
391 O << "0x" << std::hex << Byte << std::dec;
392 if (Value) O << ", ";
393 } while (Value);
394}
395
396/// SizeULEB128 - Compute the number of bytes required for an unsigned leb128
397/// value.
398unsigned AsmPrinter::SizeULEB128(unsigned Value) {
399 unsigned Size = 0;
400 do {
401 Value >>= 7;
402 Size += sizeof(int8_t);
403 } while (Value);
404 return Size;
405}
406
407/// PrintSLEB128 - Print a series of hexidecimal values (separated by commas)
408/// representing a signed leb128 value.
409void AsmPrinter::PrintSLEB128(int Value) const {
410 int Sign = Value >> (8 * sizeof(Value) - 1);
411 bool IsMore;
412
413 do {
414 unsigned Byte = Value & 0x7f;
415 Value >>= 7;
416 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
417 if (IsMore) Byte |= 0x80;
418 O << "0x" << std::hex << Byte << std::dec;
419 if (IsMore) O << ", ";
420 } while (IsMore);
421}
422
423/// SizeSLEB128 - Compute the number of bytes required for a signed leb128
424/// value.
425unsigned AsmPrinter::SizeSLEB128(int Value) {
426 unsigned Size = 0;
427 int Sign = Value >> (8 * sizeof(Value) - 1);
428 bool IsMore;
429
430 do {
431 unsigned Byte = Value & 0x7f;
432 Value >>= 7;
433 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
434 Size += sizeof(int8_t);
435 } while (IsMore);
436 return Size;
437}
438
439//===--------------------------------------------------------------------===//
440// Emission and print routines
441//
442
443/// PrintHex - Print a value as a hexidecimal value.
444///
445void AsmPrinter::PrintHex(int Value) const {
446 O << "0x" << std::hex << Value << std::dec;
447}
448
449/// EOL - Print a newline character to asm stream. If a comment is present
450/// then it will be printed first. Comments should not contain '\n'.
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000451void AsmPrinter::EOL() const {
452 O << "\n";
453}
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000454void AsmPrinter::EOL(const std::string &Comment) const {
455 if (AsmVerbose && !Comment.empty()) {
456 O << "\t"
457 << TAI->getCommentString()
458 << " "
459 << Comment;
460 }
461 O << "\n";
462}
463
464/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
465/// unsigned leb128 value.
466void AsmPrinter::EmitULEB128Bytes(unsigned Value) const {
467 if (TAI->hasLEB128()) {
468 O << "\t.uleb128\t"
469 << Value;
470 } else {
471 O << TAI->getData8bitsDirective();
472 PrintULEB128(Value);
473 }
474}
475
476/// EmitSLEB128Bytes - print an assembler byte data directive to compose a
477/// signed leb128 value.
478void AsmPrinter::EmitSLEB128Bytes(int Value) const {
479 if (TAI->hasLEB128()) {
480 O << "\t.sleb128\t"
481 << Value;
482 } else {
483 O << TAI->getData8bitsDirective();
484 PrintSLEB128(Value);
485 }
486}
487
488/// EmitInt8 - Emit a byte directive and value.
489///
490void AsmPrinter::EmitInt8(int Value) const {
491 O << TAI->getData8bitsDirective();
492 PrintHex(Value & 0xFF);
493}
494
495/// EmitInt16 - Emit a short directive and value.
496///
497void AsmPrinter::EmitInt16(int Value) const {
498 O << TAI->getData16bitsDirective();
499 PrintHex(Value & 0xFFFF);
500}
501
502/// EmitInt32 - Emit a long directive and value.
503///
504void AsmPrinter::EmitInt32(int Value) const {
505 O << TAI->getData32bitsDirective();
506 PrintHex(Value);
507}
508
509/// EmitInt64 - Emit a long long directive and value.
510///
511void AsmPrinter::EmitInt64(uint64_t Value) const {
512 if (TAI->getData64bitsDirective()) {
513 O << TAI->getData64bitsDirective();
514 PrintHex(Value);
515 } else {
516 if (TM.getTargetData()->isBigEndian()) {
517 EmitInt32(unsigned(Value >> 32)); O << "\n";
518 EmitInt32(unsigned(Value));
519 } else {
520 EmitInt32(unsigned(Value)); O << "\n";
521 EmitInt32(unsigned(Value >> 32));
522 }
523 }
524}
525
526/// toOctal - Convert the low order bits of X into an octal digit.
527///
528static inline char toOctal(int X) {
529 return (X&7)+'0';
530}
531
532/// printStringChar - Print a char, escaped if necessary.
533///
534static void printStringChar(std::ostream &O, unsigned char C) {
535 if (C == '"') {
536 O << "\\\"";
537 } else if (C == '\\') {
538 O << "\\\\";
539 } else if (isprint(C)) {
540 O << C;
541 } else {
542 switch(C) {
543 case '\b': O << "\\b"; break;
544 case '\f': O << "\\f"; break;
545 case '\n': O << "\\n"; break;
546 case '\r': O << "\\r"; break;
547 case '\t': O << "\\t"; break;
548 default:
549 O << '\\';
550 O << toOctal(C >> 6);
551 O << toOctal(C >> 3);
552 O << toOctal(C >> 0);
553 break;
554 }
555 }
556}
557
558/// EmitString - Emit a string with quotes and a null terminator.
559/// Special characters are emitted properly.
560/// \literal (Eg. '\t') \endliteral
561void AsmPrinter::EmitString(const std::string &String) const {
Anton Korobeynikovfb269cf2007-03-06 19:25:02 +0000562 const char* AscizDirective = TAI->getAscizDirective();
563 if (AscizDirective)
564 O << AscizDirective;
565 else
566 O << TAI->getAsciiDirective();
567 O << "\"";
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000568 for (unsigned i = 0, N = String.size(); i < N; ++i) {
569 unsigned char C = String[i];
570 printStringChar(O, C);
571 }
Anton Korobeynikovfb269cf2007-03-06 19:25:02 +0000572 if (AscizDirective)
573 O << "\"";
574 else
575 O << "\\0\"";
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000576}
577
578
579//===----------------------------------------------------------------------===//
580
Chris Lattner25045bd2005-11-21 07:51:36 +0000581// EmitAlignment - Emit an alignment directive to the specified power of two.
Dale Johannesen19f54692007-04-23 19:58:54 +0000582// Use the maximum of the specified alignment and the alignment from the
583// specified GlobalValue (if any).
Chris Lattner25045bd2005-11-21 07:51:36 +0000584void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
Dale Johannesen00d56b92007-04-23 23:33:31 +0000585 if (GV && GV->getAlignment())
586 NumBits = std::max(NumBits, Log2_32(GV->getAlignment()));
Chris Lattner2a21c6e2005-11-10 18:09:27 +0000587 if (NumBits == 0) return; // No need to emit alignment.
Jim Laskey563321a2006-09-06 18:34:40 +0000588 if (TAI->getAlignmentIsInBytes()) NumBits = 1 << NumBits;
589 O << TAI->getAlignDirective() << NumBits << "\n";
Chris Lattnerbfddc202004-08-17 19:14:29 +0000590}
591
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000592
Chris Lattner25045bd2005-11-21 07:51:36 +0000593/// EmitZeros - Emit a block of zeros.
Chris Lattner7d057a32004-08-17 21:38:40 +0000594///
Chris Lattner25045bd2005-11-21 07:51:36 +0000595void AsmPrinter::EmitZeros(uint64_t NumZeros) const {
Chris Lattner7d057a32004-08-17 21:38:40 +0000596 if (NumZeros) {
Jim Laskey563321a2006-09-06 18:34:40 +0000597 if (TAI->getZeroDirective()) {
598 O << TAI->getZeroDirective() << NumZeros;
599 if (TAI->getZeroDirectiveSuffix())
600 O << TAI->getZeroDirectiveSuffix();
Jeff Cohenc6a057b2006-05-02 03:46:13 +0000601 O << "\n";
602 } else {
Chris Lattner7d057a32004-08-17 21:38:40 +0000603 for (; NumZeros; --NumZeros)
Jim Laskey563321a2006-09-06 18:34:40 +0000604 O << TAI->getData8bitsDirective() << "0\n";
Chris Lattner7d057a32004-08-17 21:38:40 +0000605 }
606 }
607}
608
Chris Lattnera80ba712004-08-16 23:15:22 +0000609// Print out the specified constant, without a storage class. Only the
610// constants valid in constant expressions can occur here.
Chris Lattner25045bd2005-11-21 07:51:36 +0000611void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000612 if (CV->isNullValue() || isa<UndefValue>(CV))
Chris Lattnera80ba712004-08-16 23:15:22 +0000613 O << "0";
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000614 else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Chris Lattnera875df32007-01-12 18:15:09 +0000615 O << CI->getZExtValue();
Reid Spencerb83eb642006-10-20 07:07:24 +0000616 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Duraid Madina855a5192005-04-02 12:21:51 +0000617 // This is a constant address for a global variable or function. Use the
618 // name of the variable or function as the address value, possibly
619 // decorating it with GlobalVarAddrPrefix/Suffix or
620 // FunctionAddrPrefix/Suffix (these all default to "" )
Jim Laskey563321a2006-09-06 18:34:40 +0000621 if (isa<Function>(GV)) {
622 O << TAI->getFunctionAddrPrefix()
623 << Mang->getValueName(GV)
624 << TAI->getFunctionAddrSuffix();
625 } else {
626 O << TAI->getGlobalVarAddrPrefix()
627 << Mang->getValueName(GV)
628 << TAI->getGlobalVarAddrSuffix();
629 }
Duraid Madina855a5192005-04-02 12:21:51 +0000630 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Owen Andersona69571c2006-05-03 01:29:57 +0000631 const TargetData *TD = TM.getTargetData();
Anton Korobeynikov13b7d3d2007-02-04 23:27:42 +0000632 unsigned Opcode = CE->getOpcode();
633 switch (Opcode) {
Chris Lattnera80ba712004-08-16 23:15:22 +0000634 case Instruction::GetElementPtr: {
635 // generate a symbolic expression for the byte address
636 const Constant *ptrVal = CE->getOperand(0);
Chris Lattner7f6b9d22007-02-10 20:31:59 +0000637 SmallVector<Value*, 8> idxVec(CE->op_begin()+1, CE->op_end());
638 if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), &idxVec[0],
639 idxVec.size())) {
Chris Lattner27e19212005-02-14 21:40:26 +0000640 if (Offset)
641 O << "(";
Chris Lattner25045bd2005-11-21 07:51:36 +0000642 EmitConstantValueOnly(ptrVal);
Chris Lattner27e19212005-02-14 21:40:26 +0000643 if (Offset > 0)
644 O << ") + " << Offset;
645 else if (Offset < 0)
646 O << ") - " << -Offset;
Chris Lattnera80ba712004-08-16 23:15:22 +0000647 } else {
Chris Lattner25045bd2005-11-21 07:51:36 +0000648 EmitConstantValueOnly(ptrVal);
Chris Lattnera80ba712004-08-16 23:15:22 +0000649 }
650 break;
651 }
Reid Spencer3da59db2006-11-27 01:05:10 +0000652 case Instruction::Trunc:
653 case Instruction::ZExt:
654 case Instruction::SExt:
655 case Instruction::FPTrunc:
656 case Instruction::FPExt:
657 case Instruction::UIToFP:
658 case Instruction::SIToFP:
659 case Instruction::FPToUI:
660 case Instruction::FPToSI:
661 assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
662 break;
Chris Lattnercb0a6812006-12-12 05:14:13 +0000663 case Instruction::BitCast:
664 return EmitConstantValueOnly(CE->getOperand(0));
665
Chris Lattnerddc94012006-12-12 05:18:19 +0000666 case Instruction::IntToPtr: {
667 // Handle casts to pointers by changing them into casts to the appropriate
668 // integer type. This promotes constant folding and simplifies this code.
669 Constant *Op = CE->getOperand(0);
670 Op = ConstantExpr::getIntegerCast(Op, TD->getIntPtrType(), false/*ZExt*/);
671 return EmitConstantValueOnly(Op);
672 }
673
674
675 case Instruction::PtrToInt: {
Chris Lattner4a6bd332006-07-29 01:57:19 +0000676 // Support only foldable casts to/from pointers that can be eliminated by
677 // changing the pointer to the appropriately sized integer type.
Chris Lattnera80ba712004-08-16 23:15:22 +0000678 Constant *Op = CE->getOperand(0);
Chris Lattnerddc94012006-12-12 05:18:19 +0000679 const Type *Ty = CE->getType();
Chris Lattnera80ba712004-08-16 23:15:22 +0000680
Chris Lattnerddc94012006-12-12 05:18:19 +0000681 // We can emit the pointer value into this slot if the slot is an
682 // integer slot greater or equal to the size of the pointer.
Chris Lattner42a75512007-01-15 02:27:26 +0000683 if (Ty->isInteger() &&
Reid Spencera54b7cb2007-01-12 07:05:14 +0000684 TD->getTypeSize(Ty) >= TD->getTypeSize(Op->getType()))
Chris Lattner4a6bd332006-07-29 01:57:19 +0000685 return EmitConstantValueOnly(Op);
Chris Lattner4a6bd332006-07-29 01:57:19 +0000686
687 assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
Chris Lattner25045bd2005-11-21 07:51:36 +0000688 EmitConstantValueOnly(Op);
Chris Lattnera80ba712004-08-16 23:15:22 +0000689 break;
690 }
691 case Instruction::Add:
Anton Korobeynikov13b7d3d2007-02-04 23:27:42 +0000692 case Instruction::Sub:
Chris Lattnera80ba712004-08-16 23:15:22 +0000693 O << "(";
Chris Lattner25045bd2005-11-21 07:51:36 +0000694 EmitConstantValueOnly(CE->getOperand(0));
Anton Korobeynikov13b7d3d2007-02-04 23:27:42 +0000695 O << (Opcode==Instruction::Add ? ") + (" : ") - (");
Chris Lattner25045bd2005-11-21 07:51:36 +0000696 EmitConstantValueOnly(CE->getOperand(1));
Chris Lattnera80ba712004-08-16 23:15:22 +0000697 O << ")";
698 break;
699 default:
700 assert(0 && "Unsupported operator!");
701 }
702 } else {
703 assert(0 && "Unknown constant value!");
704 }
705}
Chris Lattner1b7e2352004-08-17 06:36:49 +0000706
Chris Lattner2980cef2005-11-10 18:06:33 +0000707/// printAsCString - Print the specified array as a C compatible string, only if
Chris Lattner1b7e2352004-08-17 06:36:49 +0000708/// the predicate isString is true.
709///
Chris Lattner2980cef2005-11-10 18:06:33 +0000710static void printAsCString(std::ostream &O, const ConstantArray *CVA,
711 unsigned LastElt) {
Chris Lattner1b7e2352004-08-17 06:36:49 +0000712 assert(CVA->isString() && "Array is not string compatible!");
713
714 O << "\"";
Chris Lattner2980cef2005-11-10 18:06:33 +0000715 for (unsigned i = 0; i != LastElt; ++i) {
Misha Brukmanedf128a2005-04-21 22:36:52 +0000716 unsigned char C =
Reid Spencerb83eb642006-10-20 07:07:24 +0000717 (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getZExtValue();
Jim Laskeyf1cdea12007-01-25 15:12:02 +0000718 printStringChar(O, C);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000719 }
720 O << "\"";
721}
722
Jeff Cohenc884db42006-05-02 01:16:28 +0000723/// EmitString - Emit a zero-byte-terminated string constant.
724///
725void AsmPrinter::EmitString(const ConstantArray *CVA) const {
726 unsigned NumElts = CVA->getNumOperands();
Jim Laskey563321a2006-09-06 18:34:40 +0000727 if (TAI->getAscizDirective() && NumElts &&
Reid Spencerb83eb642006-10-20 07:07:24 +0000728 cast<ConstantInt>(CVA->getOperand(NumElts-1))->getZExtValue() == 0) {
Jim Laskey563321a2006-09-06 18:34:40 +0000729 O << TAI->getAscizDirective();
Jeff Cohenc884db42006-05-02 01:16:28 +0000730 printAsCString(O, CVA, NumElts-1);
731 } else {
Jim Laskey563321a2006-09-06 18:34:40 +0000732 O << TAI->getAsciiDirective();
Jeff Cohenc884db42006-05-02 01:16:28 +0000733 printAsCString(O, CVA, NumElts);
734 }
735 O << "\n";
736}
737
Chris Lattner25045bd2005-11-21 07:51:36 +0000738/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Chris Lattner1b7e2352004-08-17 06:36:49 +0000739///
Chris Lattner25045bd2005-11-21 07:51:36 +0000740void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
Owen Andersona69571c2006-05-03 01:29:57 +0000741 const TargetData *TD = TM.getTargetData();
Chris Lattner1b7e2352004-08-17 06:36:49 +0000742
Chris Lattnerbd1d3822004-10-16 18:19:26 +0000743 if (CV->isNullValue() || isa<UndefValue>(CV)) {
Owen Andersona69571c2006-05-03 01:29:57 +0000744 EmitZeros(TD->getTypeSize(CV->getType()));
Chris Lattner1b7e2352004-08-17 06:36:49 +0000745 return;
746 } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
747 if (CVA->isString()) {
Jeff Cohenc884db42006-05-02 01:16:28 +0000748 EmitString(CVA);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000749 } else { // Not a string. Print the values in successive locations
750 for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
Chris Lattner25045bd2005-11-21 07:51:36 +0000751 EmitGlobalConstant(CVA->getOperand(i));
Chris Lattner1b7e2352004-08-17 06:36:49 +0000752 }
753 return;
754 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
755 // Print the fields in successive locations. Pad to align if needed!
Owen Andersona69571c2006-05-03 01:29:57 +0000756 const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
Chris Lattnerdea18b62005-01-08 19:59:10 +0000757 uint64_t sizeSoFar = 0;
Chris Lattner1b7e2352004-08-17 06:36:49 +0000758 for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
759 const Constant* field = CVS->getOperand(i);
760
761 // Check if padding is needed and insert one or more 0s.
Owen Andersona69571c2006-05-03 01:29:57 +0000762 uint64_t fieldSize = TD->getTypeSize(field->getType());
Chris Lattnerb0c39a32007-02-10 19:59:22 +0000763 uint64_t padSize = ((i == e-1? cvsLayout->getSizeInBytes()
Chris Lattnerb1919e22007-02-10 19:55:17 +0000764 : cvsLayout->getElementOffset(i+1))
765 - cvsLayout->getElementOffset(i)) - fieldSize;
Chris Lattner1b7e2352004-08-17 06:36:49 +0000766 sizeSoFar += fieldSize + padSize;
767
768 // Now print the actual field value
Chris Lattner25045bd2005-11-21 07:51:36 +0000769 EmitGlobalConstant(field);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000770
771 // Insert the field padding unless it's zero bytes...
Chris Lattner25045bd2005-11-21 07:51:36 +0000772 EmitZeros(padSize);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000773 }
Chris Lattnerb0c39a32007-02-10 19:59:22 +0000774 assert(sizeSoFar == cvsLayout->getSizeInBytes() &&
Chris Lattner1b7e2352004-08-17 06:36:49 +0000775 "Layout of constant struct may be incorrect!");
776 return;
777 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
778 // FP Constants are printed as integer constants to avoid losing
779 // precision...
780 double Val = CFP->getValue();
781 if (CFP->getType() == Type::DoubleTy) {
Jim Laskey563321a2006-09-06 18:34:40 +0000782 if (TAI->getData64bitsDirective())
783 O << TAI->getData64bitsDirective() << DoubleToBits(Val) << "\t"
784 << TAI->getCommentString() << " double value: " << Val << "\n";
Owen Andersona69571c2006-05-03 01:29:57 +0000785 else if (TD->isBigEndian()) {
Jim Laskey563321a2006-09-06 18:34:40 +0000786 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val) >> 32)
787 << "\t" << TAI->getCommentString()
788 << " double most significant word " << Val << "\n";
789 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val))
790 << "\t" << TAI->getCommentString()
791 << " double least significant word " << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000792 } else {
Jim Laskey563321a2006-09-06 18:34:40 +0000793 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val))
794 << "\t" << TAI->getCommentString()
795 << " double least significant word " << Val << "\n";
796 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val) >> 32)
797 << "\t" << TAI->getCommentString()
798 << " double most significant word " << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000799 }
800 return;
801 } else {
Jim Laskey563321a2006-09-06 18:34:40 +0000802 O << TAI->getData32bitsDirective() << FloatToBits(Val)
803 << "\t" << TAI->getCommentString() << " float " << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000804 return;
805 }
Reid Spencer47857812006-12-31 05:55:36 +0000806 } else if (CV->getType() == Type::Int64Ty) {
Chris Lattner1b7e2352004-08-17 06:36:49 +0000807 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Reid Spencerb83eb642006-10-20 07:07:24 +0000808 uint64_t Val = CI->getZExtValue();
Misha Brukmanedf128a2005-04-21 22:36:52 +0000809
Jim Laskey563321a2006-09-06 18:34:40 +0000810 if (TAI->getData64bitsDirective())
811 O << TAI->getData64bitsDirective() << Val << "\n";
Owen Andersona69571c2006-05-03 01:29:57 +0000812 else if (TD->isBigEndian()) {
Jim Laskey563321a2006-09-06 18:34:40 +0000813 O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
814 << "\t" << TAI->getCommentString()
815 << " Double-word most significant word " << Val << "\n";
816 O << TAI->getData32bitsDirective() << unsigned(Val)
817 << "\t" << TAI->getCommentString()
818 << " Double-word least significant word " << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000819 } else {
Jim Laskey563321a2006-09-06 18:34:40 +0000820 O << TAI->getData32bitsDirective() << unsigned(Val)
821 << "\t" << TAI->getCommentString()
822 << " Double-word least significant word " << Val << "\n";
823 O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
824 << "\t" << TAI->getCommentString()
825 << " Double-word most significant word " << Val << "\n";
Chris Lattner1b7e2352004-08-17 06:36:49 +0000826 }
827 return;
828 }
Reid Spencer9d6565a2007-02-15 02:26:10 +0000829 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
830 const VectorType *PTy = CP->getType();
Nate Begeman8cfa57b2005-12-06 06:18:55 +0000831
832 for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
833 EmitGlobalConstant(CP->getOperand(I));
834
835 return;
Chris Lattner1b7e2352004-08-17 06:36:49 +0000836 }
837
838 const Type *type = CV->getType();
Evan Chengd6594ae2006-09-12 21:00:35 +0000839 printDataDirective(type);
Chris Lattner25045bd2005-11-21 07:51:36 +0000840 EmitConstantValueOnly(CV);
Chris Lattner1b7e2352004-08-17 06:36:49 +0000841 O << "\n";
842}
Chris Lattner0264d1a2006-01-27 02:10:10 +0000843
Evan Chengd6594ae2006-09-12 21:00:35 +0000844void
845AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
846 // Target doesn't support this yet!
847 abort();
848}
849
Chris Lattner3ce9b672006-09-26 23:59:50 +0000850/// PrintSpecial - Print information related to the specified machine instr
851/// that is independent of the operand, and may be independent of the instr
852/// itself. This can be useful for portably encoding the comment character
853/// or other bits of target-specific knowledge into the asmstrings. The
854/// syntax used is ${:comment}. Targets can override this to add support
855/// for their own strange codes.
856void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) {
Chris Lattnerbae02cf2006-09-27 00:06:07 +0000857 if (!strcmp(Code, "private")) {
858 O << TAI->getPrivateGlobalPrefix();
859 } else if (!strcmp(Code, "comment")) {
Chris Lattner3ce9b672006-09-26 23:59:50 +0000860 O << TAI->getCommentString();
861 } else if (!strcmp(Code, "uid")) {
862 // Assign a unique ID to this machine instruction.
863 static const MachineInstr *LastMI = 0;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +0000864 static const Function *F = 0;
Chris Lattner3ce9b672006-09-26 23:59:50 +0000865 static unsigned Counter = 0U-1;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +0000866
867 // Comparing the address of MI isn't sufficient, because machineinstrs may
868 // be allocated to the same address across functions.
869 const Function *ThisF = MI->getParent()->getParent()->getFunction();
870
Chris Lattner3ce9b672006-09-26 23:59:50 +0000871 // If this is a new machine instruction, bump the counter.
Chris Lattnerb6a24bf2007-02-05 21:23:52 +0000872 if (LastMI != MI || F != ThisF) {
873 ++Counter;
874 LastMI = MI;
Chris Lattner4b092522007-02-06 01:56:31 +0000875 F = ThisF;
Chris Lattnerb6a24bf2007-02-05 21:23:52 +0000876 }
Chris Lattner3ce9b672006-09-26 23:59:50 +0000877 O << Counter;
878 } else {
Bill Wendlinge8156192006-12-07 01:30:32 +0000879 cerr << "Unknown special formatter '" << Code
880 << "' for machine instr: " << *MI;
Chris Lattner3ce9b672006-09-26 23:59:50 +0000881 exit(1);
882 }
883}
884
885
Chris Lattner0264d1a2006-01-27 02:10:10 +0000886/// printInlineAsm - This method formats and prints the specified machine
887/// instruction that is an inline asm.
888void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattnerf2b67cf2006-01-30 23:00:08 +0000889 unsigned NumOperands = MI->getNumOperands();
890
891 // Count the number of register definitions.
892 unsigned NumDefs = 0;
Chris Lattner67942f52006-09-05 20:02:51 +0000893 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
894 ++NumDefs)
Chris Lattnerf2b67cf2006-01-30 23:00:08 +0000895 assert(NumDefs != NumOperands-1 && "No asm string?");
896
897 assert(MI->getOperand(NumDefs).isExternalSymbol() && "No asm string?");
Chris Lattner66099132006-02-01 22:41:11 +0000898
899 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattnerf2b67cf2006-01-30 23:00:08 +0000900 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattner66099132006-02-01 22:41:11 +0000901
Chris Lattnerf26f5dd2006-07-28 00:17:20 +0000902 // If this asmstr is empty, don't bother printing the #APP/#NOAPP markers.
903 if (AsmStr[0] == 0) {
904 O << "\n"; // Tab already printed, avoid double indenting next instr.
905 return;
906 }
907
Jim Laskey563321a2006-09-06 18:34:40 +0000908 O << TAI->getInlineAsmStart() << "\n\t";
Chris Lattnerf26f5dd2006-07-28 00:17:20 +0000909
Bill Wendlingeb9a42c2007-01-16 03:42:04 +0000910 // The variant of the current asmprinter.
911 int AsmPrinterVariant = TAI->getAssemblerDialect();
912
Chris Lattner66099132006-02-01 22:41:11 +0000913 int CurVariant = -1; // The number of the {.|.|.} region we are in.
914 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner2cc2f662006-02-01 01:28:23 +0000915
Chris Lattner66099132006-02-01 22:41:11 +0000916 while (*LastEmitted) {
917 switch (*LastEmitted) {
918 default: {
919 // Not a special case, emit the string section literally.
920 const char *LiteralEnd = LastEmitted+1;
921 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattner1c059972006-05-05 21:47:05 +0000922 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattner66099132006-02-01 22:41:11 +0000923 ++LiteralEnd;
924 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
925 O.write(LastEmitted, LiteralEnd-LastEmitted);
926 LastEmitted = LiteralEnd;
927 break;
928 }
Chris Lattner1c059972006-05-05 21:47:05 +0000929 case '\n':
930 ++LastEmitted; // Consume newline character.
931 O << "\n\t"; // Indent code with newline.
932 break;
Chris Lattner66099132006-02-01 22:41:11 +0000933 case '$': {
934 ++LastEmitted; // Consume '$' character.
Chris Lattnerfaf1dae2006-10-03 23:27:09 +0000935 bool Done = true;
936
937 // Handle escapes.
938 switch (*LastEmitted) {
939 default: Done = false; break;
940 case '$': // $$ -> $
Chris Lattner66099132006-02-01 22:41:11 +0000941 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
942 O << '$';
943 ++LastEmitted; // Consume second '$' character.
944 break;
Chris Lattnerfaf1dae2006-10-03 23:27:09 +0000945 case '(': // $( -> same as GCC's { character.
946 ++LastEmitted; // Consume '(' character.
947 if (CurVariant != -1) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000948 cerr << "Nested variants found in inline asm string: '"
949 << AsmStr << "'\n";
Chris Lattnerfaf1dae2006-10-03 23:27:09 +0000950 exit(1);
951 }
952 CurVariant = 0; // We're in the first variant now.
953 break;
954 case '|':
955 ++LastEmitted; // consume '|' character.
956 if (CurVariant == -1) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000957 cerr << "Found '|' character outside of variant in inline asm "
958 << "string: '" << AsmStr << "'\n";
Chris Lattnerfaf1dae2006-10-03 23:27:09 +0000959 exit(1);
960 }
961 ++CurVariant; // We're in the next variant.
962 break;
963 case ')': // $) -> same as GCC's } char.
964 ++LastEmitted; // consume ')' character.
965 if (CurVariant == -1) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000966 cerr << "Found '}' character outside of variant in inline asm "
967 << "string: '" << AsmStr << "'\n";
Chris Lattnerfaf1dae2006-10-03 23:27:09 +0000968 exit(1);
969 }
970 CurVariant = -1;
971 break;
Chris Lattner66099132006-02-01 22:41:11 +0000972 }
Chris Lattnerfaf1dae2006-10-03 23:27:09 +0000973 if (Done) break;
Chris Lattner66099132006-02-01 22:41:11 +0000974
975 bool HasCurlyBraces = false;
976 if (*LastEmitted == '{') { // ${variable}
977 ++LastEmitted; // Consume '{' character.
978 HasCurlyBraces = true;
979 }
980
981 const char *IDStart = LastEmitted;
982 char *IDEnd;
Chris Lattnerfad29122007-01-23 00:36:17 +0000983 errno = 0;
Chris Lattner66099132006-02-01 22:41:11 +0000984 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
985 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000986 cerr << "Bad $ operand number in inline asm string: '"
987 << AsmStr << "'\n";
Chris Lattner66099132006-02-01 22:41:11 +0000988 exit(1);
989 }
990 LastEmitted = IDEnd;
991
Chris Lattnera36cb0a2006-02-06 22:17:23 +0000992 char Modifier[2] = { 0, 0 };
993
Chris Lattner66099132006-02-01 22:41:11 +0000994 if (HasCurlyBraces) {
Chris Lattnera36cb0a2006-02-06 22:17:23 +0000995 // If we have curly braces, check for a modifier character. This
996 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
997 if (*LastEmitted == ':') {
998 ++LastEmitted; // Consume ':' character.
999 if (*LastEmitted == 0) {
Bill Wendlinge8156192006-12-07 01:30:32 +00001000 cerr << "Bad ${:} expression in inline asm string: '"
1001 << AsmStr << "'\n";
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001002 exit(1);
1003 }
1004
1005 Modifier[0] = *LastEmitted;
1006 ++LastEmitted; // Consume modifier character.
1007 }
1008
Chris Lattner66099132006-02-01 22:41:11 +00001009 if (*LastEmitted != '}') {
Bill Wendlinge8156192006-12-07 01:30:32 +00001010 cerr << "Bad ${} expression in inline asm string: '"
1011 << AsmStr << "'\n";
Chris Lattner66099132006-02-01 22:41:11 +00001012 exit(1);
1013 }
1014 ++LastEmitted; // Consume '}' character.
1015 }
1016
1017 if ((unsigned)Val >= NumOperands-1) {
Bill Wendlinge8156192006-12-07 01:30:32 +00001018 cerr << "Invalid $ operand number in inline asm string: '"
1019 << AsmStr << "'\n";
Chris Lattner66099132006-02-01 22:41:11 +00001020 exit(1);
1021 }
1022
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001023 // Okay, we finally have a value number. Ask the target to print this
Chris Lattner66099132006-02-01 22:41:11 +00001024 // operand!
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001025 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1026 unsigned OpNo = 1;
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001027
1028 bool Error = false;
1029
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001030 // Scan to find the machine operand number for the operand.
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001031 for (; Val; --Val) {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001032 if (OpNo >= MI->getNumOperands()) break;
Chris Lattnerdaf6bc62006-02-24 19:50:58 +00001033 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
1034 OpNo += (OpFlags >> 3) + 1;
1035 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001036
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001037 if (OpNo >= MI->getNumOperands()) {
1038 Error = true;
Chris Lattnerdd260332006-02-24 20:21:58 +00001039 } else {
Chris Lattnerfd561cd2006-06-08 18:00:47 +00001040 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
1041 ++OpNo; // Skip over the ID number.
1042
1043 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
1044 if ((OpFlags & 7) == 4 /*ADDR MODE*/) {
1045 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1046 Modifier[0] ? Modifier : 0);
1047 } else {
1048 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1049 Modifier[0] ? Modifier : 0);
1050 }
Chris Lattnerdd260332006-02-24 20:21:58 +00001051 }
1052 if (Error) {
Bill Wendlinge8156192006-12-07 01:30:32 +00001053 cerr << "Invalid operand found in inline asm: '"
1054 << AsmStr << "'\n";
Chris Lattner66099132006-02-01 22:41:11 +00001055 MI->dump();
1056 exit(1);
1057 }
Chris Lattnerc3a9f8d2006-02-23 19:21:04 +00001058 }
Chris Lattner66099132006-02-01 22:41:11 +00001059 break;
1060 }
Chris Lattner66099132006-02-01 22:41:11 +00001061 }
1062 }
Jim Laskey563321a2006-09-06 18:34:40 +00001063 O << "\n\t" << TAI->getInlineAsmEnd() << "\n";
Chris Lattner66099132006-02-01 22:41:11 +00001064}
1065
Jim Laskey1ee29252007-01-26 14:34:52 +00001066/// printLabel - This method prints a local label used by debug and
1067/// exception handling tables.
1068void AsmPrinter::printLabel(const MachineInstr *MI) const {
Jim Laskeyb82313f2007-02-01 16:31:34 +00001069 O << "\n"
1070 << TAI->getPrivateGlobalPrefix()
Jim Laskeybacd3042007-02-21 22:48:45 +00001071 << "label"
Jim Laskey1ee29252007-01-26 14:34:52 +00001072 << MI->getOperand(0).getImmedValue()
1073 << ":\n";
1074}
1075
Chris Lattner66099132006-02-01 22:41:11 +00001076/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1077/// instruction, using the specified assembler variant. Targets should
1078/// overried this to format as appropriate.
1079bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnera36cb0a2006-02-06 22:17:23 +00001080 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattner66099132006-02-01 22:41:11 +00001081 // Target doesn't support this yet!
1082 return true;
Chris Lattner0264d1a2006-01-27 02:10:10 +00001083}
Chris Lattnerdd260332006-02-24 20:21:58 +00001084
1085bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1086 unsigned AsmVariant,
1087 const char *ExtraCode) {
1088 // Target doesn't support this yet!
1089 return true;
1090}
Nate Begeman37efe672006-04-22 18:53:45 +00001091
1092/// printBasicBlockLabel - This method prints the label for the specified
1093/// MachineBasicBlock
Nate Begemancdf38c42006-05-02 05:37:32 +00001094void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
1095 bool printColon,
1096 bool printComment) const {
Jim Laskey563321a2006-09-06 18:34:40 +00001097 O << TAI->getPrivateGlobalPrefix() << "BB" << FunctionNumber << "_"
Nate Begeman9d51eeb2006-05-02 17:36:46 +00001098 << MBB->getNumber();
Nate Begemancdf38c42006-05-02 05:37:32 +00001099 if (printColon)
1100 O << ':';
Chris Lattner9c78ecb2006-10-05 21:40:14 +00001101 if (printComment && MBB->getBasicBlock())
Jim Laskey563321a2006-09-06 18:34:40 +00001102 O << '\t' << TAI->getCommentString() << MBB->getBasicBlock()->getName();
Nate Begeman37efe672006-04-22 18:53:45 +00001103}
Nate Begeman52a51e382006-08-12 21:29:52 +00001104
1105/// printSetLabel - This method prints a set label for the specified
1106/// MachineBasicBlock
1107void AsmPrinter::printSetLabel(unsigned uid,
1108 const MachineBasicBlock *MBB) const {
Jim Laskey563321a2006-09-06 18:34:40 +00001109 if (!TAI->getSetDirective())
Nate Begeman52a51e382006-08-12 21:29:52 +00001110 return;
1111
Jim Laskey563321a2006-09-06 18:34:40 +00001112 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
1113 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Nate Begeman52a51e382006-08-12 21:29:52 +00001114 printBasicBlockLabel(MBB, false, false);
Jim Laskey563321a2006-09-06 18:34:40 +00001115 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Nate Begeman52a51e382006-08-12 21:29:52 +00001116 << '_' << uid << '\n';
1117}
Evan Chengd6594ae2006-09-12 21:00:35 +00001118
Evan Cheng41349c12006-11-01 09:23:08 +00001119void AsmPrinter::printSetLabel(unsigned uid, unsigned uid2,
1120 const MachineBasicBlock *MBB) const {
1121 if (!TAI->getSetDirective())
1122 return;
1123
1124 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
1125 << getFunctionNumber() << '_' << uid << '_' << uid2
1126 << "_set_" << MBB->getNumber() << ',';
1127 printBasicBlockLabel(MBB, false, false);
1128 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
1129 << '_' << uid << '_' << uid2 << '\n';
1130}
1131
Evan Chengd6594ae2006-09-12 21:00:35 +00001132/// printDataDirective - This method prints the asm directive for the
1133/// specified type.
1134void AsmPrinter::printDataDirective(const Type *type) {
1135 const TargetData *TD = TM.getTargetData();
1136 switch (type->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +00001137 case Type::IntegerTyID: {
1138 unsigned BitWidth = cast<IntegerType>(type)->getBitWidth();
1139 if (BitWidth <= 8)
1140 O << TAI->getData8bitsDirective();
1141 else if (BitWidth <= 16)
1142 O << TAI->getData16bitsDirective();
1143 else if (BitWidth <= 32)
1144 O << TAI->getData32bitsDirective();
1145 else if (BitWidth <= 64) {
1146 assert(TAI->getData64bitsDirective() &&
1147 "Target cannot handle 64-bit constant exprs!");
1148 O << TAI->getData64bitsDirective();
1149 }
Evan Chengd6594ae2006-09-12 21:00:35 +00001150 break;
Reid Spencera54b7cb2007-01-12 07:05:14 +00001151 }
Evan Chengd6594ae2006-09-12 21:00:35 +00001152 case Type::PointerTyID:
1153 if (TD->getPointerSize() == 8) {
1154 assert(TAI->getData64bitsDirective() &&
1155 "Target cannot handle 64-bit pointer exprs!");
1156 O << TAI->getData64bitsDirective();
Reid Spencera54b7cb2007-01-12 07:05:14 +00001157 } else {
1158 O << TAI->getData32bitsDirective();
Evan Chengd6594ae2006-09-12 21:00:35 +00001159 }
Evan Chengd6594ae2006-09-12 21:00:35 +00001160 break;
1161 case Type::FloatTyID: case Type::DoubleTyID:
1162 assert (0 && "Should have already output floating point constant.");
1163 default:
1164 assert (0 && "Can't handle printing this type of thing");
1165 break;
1166 }
1167}
Dale Johannesen4c3a5f82007-02-16 01:54:53 +00001168