blob: caa9da0d2ff29ae01c20c8a15cb0785537323b8b [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"
Chris Lattner6a8e0f52004-08-16 23:15:22 +000021#include "llvm/Support/Mangler.h"
Jim Laskeyb74c6662005-08-17 19:34:49 +000022#include "llvm/Support/MathExtras.h"
Bill Wendling5c3966a2006-11-29 00:39:47 +000023#include "llvm/Support/Streams.h"
Jim Laskeya6211dc2006-09-06 18:34:40 +000024#include "llvm/Target/TargetAsmInfo.h"
Owen Anderson8c2c1e92006-05-12 06:33:49 +000025#include "llvm/Target/TargetData.h"
Chris Lattner90438232006-10-06 22:50:56 +000026#include "llvm/Target/TargetLowering.h"
Chris Lattner6a8e0f52004-08-16 23:15:22 +000027#include "llvm/Target/TargetMachine.h"
Chris Lattneraa23fa92006-02-01 22:41:11 +000028#include <cerrno>
Chris Lattner6a8e0f52004-08-16 23:15:22 +000029using namespace llvm;
30
Jim Laskey261779b2006-09-07 22:06:40 +000031AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm,
32 const TargetAsmInfo *T)
Jim Laskeya6211dc2006-09-06 18:34:40 +000033: FunctionNumber(0), O(o), TM(tm), TAI(T)
34{}
Chris Lattnerf0e9aef2005-12-13 06:32:10 +000035
Chris Lattnerdc822412006-10-05 02:42:47 +000036std::string AsmPrinter::getSectionForFunction(const Function &F) const {
37 return TAI->getTextSection();
38}
39
Chris Lattnerf0e9aef2005-12-13 06:32:10 +000040
Chris Lattner8488ba22006-05-09 04:59:56 +000041/// SwitchToTextSection - Switch to the specified text section of the executable
42/// if we are not already in it!
Chris Lattner2ea5c992005-11-21 07:06:27 +000043///
Chris Lattner8488ba22006-05-09 04:59:56 +000044void AsmPrinter::SwitchToTextSection(const char *NewSection,
45 const GlobalValue *GV) {
Chris Lattner2ea5c992005-11-21 07:06:27 +000046 std::string NS;
Chris Lattner8c2bfc02006-05-09 05:24:50 +000047 if (GV && GV->hasSection())
Jim Laskeya6211dc2006-09-06 18:34:40 +000048 NS = TAI->getSwitchToSectionDirective() + GV->getSection();
Chris Lattner8c2bfc02006-05-09 05:24:50 +000049 else
50 NS = NewSection;
51
52 // If we're already in this section, we're done.
53 if (CurrentSection == NS) return;
Jeff Cohen470f4312006-05-02 03:58:45 +000054
Chris Lattner4ebc6a22006-05-09 05:33:48 +000055 // Close the current section, if applicable.
Jim Laskeya6211dc2006-09-06 18:34:40 +000056 if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
57 O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
Jeff Cohen470f4312006-05-02 03:58:45 +000058
Chris Lattner4ebc6a22006-05-09 05:33:48 +000059 CurrentSection = NS;
60
61 if (!CurrentSection.empty())
Jim Laskeya6211dc2006-09-06 18:34:40 +000062 O << CurrentSection << TAI->getTextSectionStartSuffix() << '\n';
Chris Lattner2ea5c992005-11-21 07:06:27 +000063}
64
Nate Begeman78756502006-07-27 01:13:04 +000065/// SwitchToDataSection - Switch to the specified data section of the executable
Chris Lattner8488ba22006-05-09 04:59:56 +000066/// if we are not already in it!
67///
68void AsmPrinter::SwitchToDataSection(const char *NewSection,
69 const GlobalValue *GV) {
70 std::string NS;
Chris Lattner6341df82006-05-09 05:23:12 +000071 if (GV && GV->hasSection())
Jim Laskeya6211dc2006-09-06 18:34:40 +000072 NS = TAI->getSwitchToSectionDirective() + GV->getSection();
Chris Lattner6341df82006-05-09 05:23:12 +000073 else
74 NS = NewSection;
Chris Lattner8488ba22006-05-09 04:59:56 +000075
Chris Lattner6341df82006-05-09 05:23:12 +000076 // If we're already in this section, we're done.
77 if (CurrentSection == NS) return;
78
Chris Lattner4ebc6a22006-05-09 05:33:48 +000079 // Close the current section, if applicable.
Jim Laskeya6211dc2006-09-06 18:34:40 +000080 if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
81 O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
Chris Lattner4ebc6a22006-05-09 05:33:48 +000082
83 CurrentSection = NS;
Chris Lattner8488ba22006-05-09 04:59:56 +000084
Chris Lattner4ebc6a22006-05-09 05:33:48 +000085 if (!CurrentSection.empty())
Jim Laskeya6211dc2006-09-06 18:34:40 +000086 O << CurrentSection << TAI->getDataSectionStartSuffix() << '\n';
Chris Lattner8488ba22006-05-09 04:59:56 +000087}
88
89
Chris Lattner6a8e0f52004-08-16 23:15:22 +000090bool AsmPrinter::doInitialization(Module &M) {
Jim Laskeya6211dc2006-09-06 18:34:40 +000091 Mang = new Mangler(M, TAI->getGlobalPrefix());
Chris Lattnere3a79262006-01-23 23:47:53 +000092
Chris Lattner00fcdfe2006-01-24 04:16:34 +000093 if (!M.getModuleInlineAsm().empty())
Jim Laskeya6211dc2006-09-06 18:34:40 +000094 O << TAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner00fcdfe2006-01-24 04:16:34 +000095 << M.getModuleInlineAsm()
Jim Laskeya6211dc2006-09-06 18:34:40 +000096 << "\n" << TAI->getCommentString()
97 << " End of file scope inline assembly\n";
Chris Lattnere3a79262006-01-23 23:47:53 +000098
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +000099 SwitchToDataSection(""); // Reset back to no section.
Jim Laskey0bbdc552006-01-26 20:21:46 +0000100
101 if (MachineDebugInfo *DebugInfo = getAnalysisToUpdate<MachineDebugInfo>()) {
102 DebugInfo->AnalyzeModule(M);
103 }
104
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000105 return false;
106}
107
108bool AsmPrinter::doFinalization(Module &M) {
Rafael Espindolad7998d02006-12-18 03:37:18 +0000109 if (TAI->getWeakRefDirective()) {
110 if (ExtWeakSymbols.begin() != ExtWeakSymbols.end())
111 SwitchToDataSection("");
112
113 for (std::set<const GlobalValue*>::iterator i = ExtWeakSymbols.begin(),
114 e = ExtWeakSymbols.end(); i != e; ++i) {
115 const GlobalValue *GV = *i;
116 std::string Name = Mang->getValueName(GV);
117 O << TAI->getWeakRefDirective() << Name << "\n";
118 }
119 }
120
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000121 delete Mang; Mang = 0;
122 return false;
123}
124
Chris Lattnerbb644e32005-11-21 07:51:36 +0000125void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000126 // What's my mangled name?
Chris Lattnerc0a1eba2005-11-10 18:36:17 +0000127 CurrentFnName = Mang->getValueName(MF.getFunction());
Chris Lattner08adbd132005-11-21 08:13:27 +0000128 IncrementFunctionNumber();
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000129}
130
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000131/// EmitConstantPool - Print to the current output stream assembly
132/// representations of the constants in the constant pool MCP. This is
133/// used to print out constants which have been "spilled to memory" by
134/// the code generator.
135///
136void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerba972642006-02-09 04:22:52 +0000137 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000138 if (CP.empty()) return;
Evan Chengec1d60b2006-06-29 00:26:09 +0000139
140 // Some targets require 4-, 8-, and 16- byte constant literals to be placed
141 // in special sections.
142 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > FourByteCPs;
143 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > EightByteCPs;
144 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > SixteenByteCPs;
145 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > OtherCPs;
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000146 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > TargetCPs;
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000147 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Evan Chengec1d60b2006-06-29 00:26:09 +0000148 MachineConstantPoolEntry CPE = CP[i];
Evan Cheng2ad050f2006-09-14 07:35:00 +0000149 const Type *Ty = CPE.getType();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000150 if (TAI->getFourByteConstantSection() &&
Evan Chengec1d60b2006-06-29 00:26:09 +0000151 TM.getTargetData()->getTypeSize(Ty) == 4)
152 FourByteCPs.push_back(std::make_pair(CPE, i));
Evan Cheng95b3dde2006-09-07 18:50:20 +0000153 else if (TAI->getEightByteConstantSection() &&
Evan Chengec1d60b2006-06-29 00:26:09 +0000154 TM.getTargetData()->getTypeSize(Ty) == 8)
155 EightByteCPs.push_back(std::make_pair(CPE, i));
Evan Cheng95b3dde2006-09-07 18:50:20 +0000156 else if (TAI->getSixteenByteConstantSection() &&
Evan Chengec1d60b2006-06-29 00:26:09 +0000157 TM.getTargetData()->getTypeSize(Ty) == 16)
158 SixteenByteCPs.push_back(std::make_pair(CPE, i));
159 else
160 OtherCPs.push_back(std::make_pair(CPE, i));
161 }
162
163 unsigned Alignment = MCP->getConstantPoolAlignment();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000164 EmitConstantPool(Alignment, TAI->getFourByteConstantSection(), FourByteCPs);
165 EmitConstantPool(Alignment, TAI->getEightByteConstantSection(), EightByteCPs);
166 EmitConstantPool(Alignment, TAI->getSixteenByteConstantSection(),
167 SixteenByteCPs);
168 EmitConstantPool(Alignment, TAI->getConstantPoolSection(), OtherCPs);
Evan Chengec1d60b2006-06-29 00:26:09 +0000169}
170
171void AsmPrinter::EmitConstantPool(unsigned Alignment, const char *Section,
172 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > &CP) {
173 if (CP.empty()) return;
174
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000175 SwitchToDataSection(Section);
Evan Chengec1d60b2006-06-29 00:26:09 +0000176 EmitAlignment(Alignment);
177 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000178 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
179 << CP[i].second << ":\t\t\t\t\t" << TAI->getCommentString() << " ";
Evan Cheng2ad050f2006-09-14 07:35:00 +0000180 WriteTypeSymbolic(O, CP[i].first.getType(), 0) << '\n';
181 if (CP[i].first.isMachineConstantPoolEntry())
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000182 EmitMachineConstantPoolValue(CP[i].first.Val.MachineCPVal);
Evan Cheng2ad050f2006-09-14 07:35:00 +0000183 else
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000184 EmitGlobalConstant(CP[i].first.Val.ConstVal);
Chris Lattnerf6190822006-02-09 04:46:04 +0000185 if (i != e-1) {
Evan Cheng2ad050f2006-09-14 07:35:00 +0000186 const Type *Ty = CP[i].first.getType();
Evan Chengec1d60b2006-06-29 00:26:09 +0000187 unsigned EntSize =
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000188 TM.getTargetData()->getTypeSize(Ty);
Evan Cheng2ad050f2006-09-14 07:35:00 +0000189 unsigned ValEnd = CP[i].first.getOffset() + EntSize;
Chris Lattnerf6190822006-02-09 04:46:04 +0000190 // Emit inter-object padding for alignment.
Evan Cheng2ad050f2006-09-14 07:35:00 +0000191 EmitZeros(CP[i+1].first.getOffset()-ValEnd);
Chris Lattnerf6190822006-02-09 04:46:04 +0000192 }
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000193 }
194}
195
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000196/// EmitJumpTableInfo - Print assembly representations of the jump tables used
197/// by the current function to the current output stream.
198///
Chris Lattnera6a570e2006-10-05 03:01:21 +0000199void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
200 MachineFunction &MF) {
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000201 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
202 if (JT.empty()) return;
Jim Laskey70323a82006-12-14 19:17:33 +0000203 bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
Nate Begemanefc312a2006-07-27 16:46:58 +0000204
Jim Laskey70323a82006-12-14 19:17:33 +0000205 // Use JumpTableDirective otherwise honor the entry size from the jump table
206 // info.
Andrew Lenharth783a4a92006-09-24 19:45:58 +0000207 const char *JTEntryDirective = TAI->getJumpTableDirective();
Jim Laskey70323a82006-12-14 19:17:33 +0000208 bool HadJTEntryDirective = JTEntryDirective != NULL;
209 if (!HadJTEntryDirective) {
210 JTEntryDirective = MJTI->getEntrySize() == 4 ?
211 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
212 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000213
Nate Begeman78756502006-07-27 01:13:04 +0000214 // Pick the directive to use to print the jump table entries, and switch to
215 // the appropriate section.
Jim Laskey70323a82006-12-14 19:17:33 +0000216 TargetLowering *LoweringInfo = TM.getTargetLowering();
Anton Korobeynikov44ef9342006-12-19 21:04:20 +0000217
218 const char* JumpTableDataSection = TAI->getJumpTableDataSection();
219 if ((IsPic && !(LoweringInfo && LoweringInfo->usesGlobalOffsetTable())) ||
220 !JumpTableDataSection) {
Jim Laskey70323a82006-12-14 19:17:33 +0000221 // In PIC mode, we need to emit the jump table to the same section as the
222 // function body itself, otherwise the label differences won't make sense.
Anton Korobeynikov44ef9342006-12-19 21:04:20 +0000223 // We should also do if the section name is NULL.
Jim Laskey70323a82006-12-14 19:17:33 +0000224 const Function *F = MF.getFunction();
225 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Nate Begeman78756502006-07-27 01:13:04 +0000226 } else {
Anton Korobeynikov44ef9342006-12-19 21:04:20 +0000227 SwitchToDataSection(JumpTableDataSection);
Nate Begeman78756502006-07-27 01:13:04 +0000228 }
Jim Laskey70323a82006-12-14 19:17:33 +0000229
230 EmitAlignment(Log2_32(MJTI->getAlignment()));
Chris Lattnerfd5a8eb2006-07-15 01:34:12 +0000231
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000232 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
Nate Begeman984c1a42006-08-12 21:29:52 +0000233 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
Chris Lattner28bfe382006-10-28 18:10:06 +0000234
235 // If this jump table was deleted, ignore it.
236 if (JTBBs.empty()) continue;
Nate Begeman984c1a42006-08-12 21:29:52 +0000237
238 // For PIC codegen, if possible we want to use the SetDirective to reduce
239 // the number of relocations the assembler will generate for the jump table.
240 // Set directives are all printed before the jump table itself.
241 std::set<MachineBasicBlock*> EmittedSets;
Jim Laskey70323a82006-12-14 19:17:33 +0000242 if (TAI->getSetDirective() && IsPic)
Nate Begeman984c1a42006-08-12 21:29:52 +0000243 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
244 if (EmittedSets.insert(JTBBs[ii]).second)
245 printSetLabel(i, JTBBs[ii]);
246
Jim Laskeya6211dc2006-09-06 18:34:40 +0000247 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
248 << '_' << i << ":\n";
Nate Begeman984c1a42006-08-12 21:29:52 +0000249
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000250 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
Nate Begemanefc312a2006-07-27 16:46:58 +0000251 O << JTEntryDirective << ' ';
Nate Begeman984c1a42006-08-12 21:29:52 +0000252 // If we have emitted set directives for the jump table entries, print
253 // them rather than the entries themselves. If we're emitting PIC, then
254 // emit the table entries as differences between two text section labels.
255 // If we're emitting non-PIC code, then emit the entries as direct
256 // references to the target basic blocks.
257 if (!EmittedSets.empty()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000258 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
259 << '_' << i << "_set_" << JTBBs[ii]->getNumber();
Jim Laskey70323a82006-12-14 19:17:33 +0000260 } else if (IsPic) {
Nate Begeman984c1a42006-08-12 21:29:52 +0000261 printBasicBlockLabel(JTBBs[ii], false, false);
Jim Laskey70323a82006-12-14 19:17:33 +0000262 //If the arch uses custom Jump Table directives, don't calc relative to JT
263 if (!HadJTEntryDirective)
264 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI"
265 << getFunctionNumber() << '_' << i;
Nate Begeman984c1a42006-08-12 21:29:52 +0000266 } else {
267 printBasicBlockLabel(JTBBs[ii], false, false);
Nate Begeman78756502006-07-27 01:13:04 +0000268 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000269 O << '\n';
270 }
271 }
272}
273
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000274/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
275/// special global used by LLVM. If so, emit it and return true, otherwise
276/// do nothing and return false.
277bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Jim Laskey313570f2006-03-07 22:00:35 +0000278 // Ignore debug and non-emitted data.
279 if (GV->getSection() == "llvm.metadata") return true;
280
281 if (!GV->hasAppendingLinkage()) return false;
282
283 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000284
Chris Lattner66af3902006-09-26 03:38:18 +0000285 if (GV->getName() == "llvm.used") {
286 if (TAI->getUsedDirective() != 0) // No need to emit this at all.
287 EmitLLVMUsedList(GV->getInitializer());
288 return true;
289 }
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000290
Chris Lattner3760e902006-01-12 19:17:23 +0000291 if (GV->getName() == "llvm.global_ctors" && GV->use_empty()) {
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000292 SwitchToDataSection(TAI->getStaticCtorsSection());
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000293 EmitAlignment(2, 0);
294 EmitXXStructorList(GV->getInitializer());
295 return true;
296 }
297
Chris Lattner3760e902006-01-12 19:17:23 +0000298 if (GV->getName() == "llvm.global_dtors" && GV->use_empty()) {
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000299 SwitchToDataSection(TAI->getStaticDtorsSection());
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000300 EmitAlignment(2, 0);
301 EmitXXStructorList(GV->getInitializer());
302 return true;
303 }
304
305 return false;
306}
307
Chris Lattner66af3902006-09-26 03:38:18 +0000308/// EmitLLVMUsedList - For targets that define a TAI::UsedDirective, mark each
309/// global in the specified llvm.used list as being used with this directive.
310void AsmPrinter::EmitLLVMUsedList(Constant *List) {
311 const char *Directive = TAI->getUsedDirective();
312
313 // Should be an array of 'sbyte*'.
314 ConstantArray *InitList = dyn_cast<ConstantArray>(List);
315 if (InitList == 0) return;
316
317 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
318 O << Directive;
319 EmitConstantValueOnly(InitList->getOperand(i));
320 O << "\n";
321 }
322}
323
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000324/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
325/// function pointers, ignoring the init priority.
326void AsmPrinter::EmitXXStructorList(Constant *List) {
327 // Should be an array of '{ int, void ()* }' structs. The first value is the
328 // init priority, which we ignore.
329 if (!isa<ConstantArray>(List)) return;
330 ConstantArray *InitList = cast<ConstantArray>(List);
331 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
332 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
333 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner434ffe42005-12-21 01:17:37 +0000334
335 if (CS->getOperand(1)->isNullValue())
336 return; // Found a null terminator, exit printing.
337 // Emit the function pointer.
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000338 EmitGlobalConstant(CS->getOperand(1));
339 }
340}
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000341
Jim Laskey71262542006-10-17 13:41:07 +0000342/// getGlobalLinkName - Returns the asm/link name of of the specified
343/// global variable. Should be overridden by each target asm printer to
344/// generate the appropriate value.
Jim Laskeyd24b9132006-10-17 17:17:24 +0000345const std::string AsmPrinter::getGlobalLinkName(const GlobalVariable *GV) const{
346 std::string LinkName;
Jim Laskeyd7f53cd2006-11-20 20:29:06 +0000347
348 if (isa<Function>(GV)) {
349 LinkName += TAI->getFunctionAddrPrefix();
350 LinkName += Mang->getValueName(GV);
351 LinkName += TAI->getFunctionAddrSuffix();
352 } else {
353 LinkName += TAI->getGlobalVarAddrPrefix();
354 LinkName += Mang->getValueName(GV);
355 LinkName += TAI->getGlobalVarAddrSuffix();
356 }
357
Jim Laskeyd24b9132006-10-17 17:17:24 +0000358 return LinkName;
Jim Laskey71262542006-10-17 13:41:07 +0000359}
360
Chris Lattnerbb644e32005-11-21 07:51:36 +0000361// EmitAlignment - Emit an alignment directive to the specified power of two.
362void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
Chris Lattnerdd8eeed2005-11-14 19:00:06 +0000363 if (GV && GV->getAlignment())
364 NumBits = Log2_32(GV->getAlignment());
Chris Lattner747960d2005-11-10 18:09:27 +0000365 if (NumBits == 0) return; // No need to emit alignment.
Jim Laskeya6211dc2006-09-06 18:34:40 +0000366 if (TAI->getAlignmentIsInBytes()) NumBits = 1 << NumBits;
367 O << TAI->getAlignDirective() << NumBits << "\n";
Chris Lattner1d35c162004-08-17 19:14:29 +0000368}
369
Chris Lattnerbb644e32005-11-21 07:51:36 +0000370/// EmitZeros - Emit a block of zeros.
Chris Lattnerea751992004-08-17 21:38:40 +0000371///
Chris Lattnerbb644e32005-11-21 07:51:36 +0000372void AsmPrinter::EmitZeros(uint64_t NumZeros) const {
Chris Lattnerea751992004-08-17 21:38:40 +0000373 if (NumZeros) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000374 if (TAI->getZeroDirective()) {
375 O << TAI->getZeroDirective() << NumZeros;
376 if (TAI->getZeroDirectiveSuffix())
377 O << TAI->getZeroDirectiveSuffix();
Jeff Cohenf34ddb12006-05-02 03:46:13 +0000378 O << "\n";
379 } else {
Chris Lattnerea751992004-08-17 21:38:40 +0000380 for (; NumZeros; --NumZeros)
Jim Laskeya6211dc2006-09-06 18:34:40 +0000381 O << TAI->getData8bitsDirective() << "0\n";
Chris Lattnerea751992004-08-17 21:38:40 +0000382 }
383 }
384}
385
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000386// Print out the specified constant, without a storage class. Only the
387// constants valid in constant expressions can occur here.
Chris Lattnerbb644e32005-11-21 07:51:36 +0000388void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
Chris Lattner61753bf2004-10-16 18:19:26 +0000389 if (CV->isNullValue() || isa<UndefValue>(CV))
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000390 O << "0";
Zhou Sheng75b871f2007-01-11 12:24:14 +0000391 else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Chris Lattner7f6fac42007-01-12 18:15:09 +0000392 O << CI->getZExtValue();
Reid Spencere0fc4df2006-10-20 07:07:24 +0000393 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Duraid Madina73a316d2005-04-02 12:21:51 +0000394 // This is a constant address for a global variable or function. Use the
395 // name of the variable or function as the address value, possibly
396 // decorating it with GlobalVarAddrPrefix/Suffix or
397 // FunctionAddrPrefix/Suffix (these all default to "" )
Jim Laskeya6211dc2006-09-06 18:34:40 +0000398 if (isa<Function>(GV)) {
399 O << TAI->getFunctionAddrPrefix()
400 << Mang->getValueName(GV)
401 << TAI->getFunctionAddrSuffix();
402 } else {
403 O << TAI->getGlobalVarAddrPrefix()
404 << Mang->getValueName(GV)
405 << TAI->getGlobalVarAddrSuffix();
406 }
Duraid Madina73a316d2005-04-02 12:21:51 +0000407 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000408 const TargetData *TD = TM.getTargetData();
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000409 switch(CE->getOpcode()) {
410 case Instruction::GetElementPtr: {
411 // generate a symbolic expression for the byte address
412 const Constant *ptrVal = CE->getOperand(0);
413 std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
Owen Anderson20a631f2006-05-03 01:29:57 +0000414 if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), idxVec)) {
Chris Lattner145569b2005-02-14 21:40:26 +0000415 if (Offset)
416 O << "(";
Chris Lattnerbb644e32005-11-21 07:51:36 +0000417 EmitConstantValueOnly(ptrVal);
Chris Lattner145569b2005-02-14 21:40:26 +0000418 if (Offset > 0)
419 O << ") + " << Offset;
420 else if (Offset < 0)
421 O << ") - " << -Offset;
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000422 } else {
Chris Lattnerbb644e32005-11-21 07:51:36 +0000423 EmitConstantValueOnly(ptrVal);
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000424 }
425 break;
426 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000427 case Instruction::Trunc:
428 case Instruction::ZExt:
429 case Instruction::SExt:
430 case Instruction::FPTrunc:
431 case Instruction::FPExt:
432 case Instruction::UIToFP:
433 case Instruction::SIToFP:
434 case Instruction::FPToUI:
435 case Instruction::FPToSI:
436 assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
437 break;
Chris Lattnerb9e41f52006-12-12 05:14:13 +0000438 case Instruction::BitCast:
439 return EmitConstantValueOnly(CE->getOperand(0));
440
Chris Lattner0c537da2006-12-12 05:18:19 +0000441 case Instruction::IntToPtr: {
442 // Handle casts to pointers by changing them into casts to the appropriate
443 // integer type. This promotes constant folding and simplifies this code.
444 Constant *Op = CE->getOperand(0);
445 Op = ConstantExpr::getIntegerCast(Op, TD->getIntPtrType(), false/*ZExt*/);
446 return EmitConstantValueOnly(Op);
447 }
448
449
450 case Instruction::PtrToInt: {
Chris Lattner85492422006-07-29 01:57:19 +0000451 // Support only foldable casts to/from pointers that can be eliminated by
452 // changing the pointer to the appropriately sized integer type.
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000453 Constant *Op = CE->getOperand(0);
Chris Lattner0c537da2006-12-12 05:18:19 +0000454 const Type *Ty = CE->getType();
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000455
Chris Lattner0c537da2006-12-12 05:18:19 +0000456 // We can emit the pointer value into this slot if the slot is an
457 // integer slot greater or equal to the size of the pointer.
Chris Lattner03c49532007-01-15 02:27:26 +0000458 if (Ty->isInteger() &&
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000459 TD->getTypeSize(Ty) >= TD->getTypeSize(Op->getType()))
Chris Lattner85492422006-07-29 01:57:19 +0000460 return EmitConstantValueOnly(Op);
Chris Lattner85492422006-07-29 01:57:19 +0000461
462 assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
Chris Lattnerbb644e32005-11-21 07:51:36 +0000463 EmitConstantValueOnly(Op);
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000464 break;
465 }
466 case Instruction::Add:
467 O << "(";
Chris Lattnerbb644e32005-11-21 07:51:36 +0000468 EmitConstantValueOnly(CE->getOperand(0));
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000469 O << ") + (";
Chris Lattnerbb644e32005-11-21 07:51:36 +0000470 EmitConstantValueOnly(CE->getOperand(1));
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000471 O << ")";
472 break;
473 default:
474 assert(0 && "Unsupported operator!");
475 }
476 } else {
477 assert(0 && "Unknown constant value!");
478 }
479}
Chris Lattner8452a1f2004-08-17 06:36:49 +0000480
481/// toOctal - Convert the low order bits of X into an octal digit.
482///
483static inline char toOctal(int X) {
484 return (X&7)+'0';
485}
486
Chris Lattner55a6d902005-11-10 18:06:33 +0000487/// printAsCString - Print the specified array as a C compatible string, only if
Chris Lattner8452a1f2004-08-17 06:36:49 +0000488/// the predicate isString is true.
489///
Chris Lattner55a6d902005-11-10 18:06:33 +0000490static void printAsCString(std::ostream &O, const ConstantArray *CVA,
491 unsigned LastElt) {
Chris Lattner8452a1f2004-08-17 06:36:49 +0000492 assert(CVA->isString() && "Array is not string compatible!");
493
494 O << "\"";
Chris Lattner55a6d902005-11-10 18:06:33 +0000495 for (unsigned i = 0; i != LastElt; ++i) {
Misha Brukman835702a2005-04-21 22:36:52 +0000496 unsigned char C =
Reid Spencere0fc4df2006-10-20 07:07:24 +0000497 (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getZExtValue();
Chris Lattner8452a1f2004-08-17 06:36:49 +0000498
499 if (C == '"') {
500 O << "\\\"";
501 } else if (C == '\\') {
502 O << "\\\\";
503 } else if (isprint(C)) {
504 O << C;
505 } else {
506 switch(C) {
507 case '\b': O << "\\b"; break;
508 case '\f': O << "\\f"; break;
509 case '\n': O << "\\n"; break;
510 case '\r': O << "\\r"; break;
511 case '\t': O << "\\t"; break;
512 default:
513 O << '\\';
514 O << toOctal(C >> 6);
515 O << toOctal(C >> 3);
516 O << toOctal(C >> 0);
517 break;
518 }
519 }
520 }
521 O << "\"";
522}
523
Jeff Cohen24a62a92006-05-02 01:16:28 +0000524/// EmitString - Emit a zero-byte-terminated string constant.
525///
526void AsmPrinter::EmitString(const ConstantArray *CVA) const {
527 unsigned NumElts = CVA->getNumOperands();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000528 if (TAI->getAscizDirective() && NumElts &&
Reid Spencere0fc4df2006-10-20 07:07:24 +0000529 cast<ConstantInt>(CVA->getOperand(NumElts-1))->getZExtValue() == 0) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000530 O << TAI->getAscizDirective();
Jeff Cohen24a62a92006-05-02 01:16:28 +0000531 printAsCString(O, CVA, NumElts-1);
532 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000533 O << TAI->getAsciiDirective();
Jeff Cohen24a62a92006-05-02 01:16:28 +0000534 printAsCString(O, CVA, NumElts);
535 }
536 O << "\n";
537}
538
Chris Lattnerbb644e32005-11-21 07:51:36 +0000539/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Chris Lattner8452a1f2004-08-17 06:36:49 +0000540///
Chris Lattnerbb644e32005-11-21 07:51:36 +0000541void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000542 const TargetData *TD = TM.getTargetData();
Chris Lattner8452a1f2004-08-17 06:36:49 +0000543
Chris Lattner61753bf2004-10-16 18:19:26 +0000544 if (CV->isNullValue() || isa<UndefValue>(CV)) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000545 EmitZeros(TD->getTypeSize(CV->getType()));
Chris Lattner8452a1f2004-08-17 06:36:49 +0000546 return;
547 } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
548 if (CVA->isString()) {
Jeff Cohen24a62a92006-05-02 01:16:28 +0000549 EmitString(CVA);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000550 } else { // Not a string. Print the values in successive locations
551 for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
Chris Lattnerbb644e32005-11-21 07:51:36 +0000552 EmitGlobalConstant(CVA->getOperand(i));
Chris Lattner8452a1f2004-08-17 06:36:49 +0000553 }
554 return;
555 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
556 // Print the fields in successive locations. Pad to align if needed!
Owen Anderson20a631f2006-05-03 01:29:57 +0000557 const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
Chris Lattner0b955fd2005-01-08 19:59:10 +0000558 uint64_t sizeSoFar = 0;
Chris Lattner8452a1f2004-08-17 06:36:49 +0000559 for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
560 const Constant* field = CVS->getOperand(i);
561
562 // Check if padding is needed and insert one or more 0s.
Owen Anderson20a631f2006-05-03 01:29:57 +0000563 uint64_t fieldSize = TD->getTypeSize(field->getType());
Chris Lattner0b955fd2005-01-08 19:59:10 +0000564 uint64_t padSize = ((i == e-1? cvsLayout->StructSize
Chris Lattner8452a1f2004-08-17 06:36:49 +0000565 : cvsLayout->MemberOffsets[i+1])
566 - cvsLayout->MemberOffsets[i]) - fieldSize;
567 sizeSoFar += fieldSize + padSize;
568
569 // Now print the actual field value
Chris Lattnerbb644e32005-11-21 07:51:36 +0000570 EmitGlobalConstant(field);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000571
572 // Insert the field padding unless it's zero bytes...
Chris Lattnerbb644e32005-11-21 07:51:36 +0000573 EmitZeros(padSize);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000574 }
575 assert(sizeSoFar == cvsLayout->StructSize &&
576 "Layout of constant struct may be incorrect!");
577 return;
578 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
579 // FP Constants are printed as integer constants to avoid losing
580 // precision...
581 double Val = CFP->getValue();
582 if (CFP->getType() == Type::DoubleTy) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000583 if (TAI->getData64bitsDirective())
584 O << TAI->getData64bitsDirective() << DoubleToBits(Val) << "\t"
585 << TAI->getCommentString() << " double value: " << Val << "\n";
Owen Anderson20a631f2006-05-03 01:29:57 +0000586 else if (TD->isBigEndian()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000587 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val) >> 32)
588 << "\t" << TAI->getCommentString()
589 << " double most significant word " << Val << "\n";
590 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val))
591 << "\t" << TAI->getCommentString()
592 << " double least significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000593 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000594 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val))
595 << "\t" << TAI->getCommentString()
596 << " double least significant word " << Val << "\n";
597 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val) >> 32)
598 << "\t" << TAI->getCommentString()
599 << " double most significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000600 }
601 return;
602 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000603 O << TAI->getData32bitsDirective() << FloatToBits(Val)
604 << "\t" << TAI->getCommentString() << " float " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000605 return;
606 }
Reid Spencere63b6512006-12-31 05:55:36 +0000607 } else if (CV->getType() == Type::Int64Ty) {
Chris Lattner8452a1f2004-08-17 06:36:49 +0000608 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000609 uint64_t Val = CI->getZExtValue();
Misha Brukman835702a2005-04-21 22:36:52 +0000610
Jim Laskeya6211dc2006-09-06 18:34:40 +0000611 if (TAI->getData64bitsDirective())
612 O << TAI->getData64bitsDirective() << Val << "\n";
Owen Anderson20a631f2006-05-03 01:29:57 +0000613 else if (TD->isBigEndian()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000614 O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
615 << "\t" << TAI->getCommentString()
616 << " Double-word most significant word " << Val << "\n";
617 O << TAI->getData32bitsDirective() << unsigned(Val)
618 << "\t" << TAI->getCommentString()
619 << " Double-word least significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000620 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000621 O << TAI->getData32bitsDirective() << unsigned(Val)
622 << "\t" << TAI->getCommentString()
623 << " Double-word least significant word " << Val << "\n";
624 O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
625 << "\t" << TAI->getCommentString()
626 << " Double-word most significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000627 }
628 return;
629 }
Nate Begeman41b1cdc2005-12-06 06:18:55 +0000630 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
631 const PackedType *PTy = CP->getType();
632
633 for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
634 EmitGlobalConstant(CP->getOperand(I));
635
636 return;
Chris Lattner8452a1f2004-08-17 06:36:49 +0000637 }
638
639 const Type *type = CV->getType();
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000640 printDataDirective(type);
Chris Lattnerbb644e32005-11-21 07:51:36 +0000641 EmitConstantValueOnly(CV);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000642 O << "\n";
643}
Chris Lattner061d9e22006-01-27 02:10:10 +0000644
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000645void
646AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
647 // Target doesn't support this yet!
648 abort();
649}
650
Chris Lattnera32814b2006-09-26 23:59:50 +0000651/// PrintSpecial - Print information related to the specified machine instr
652/// that is independent of the operand, and may be independent of the instr
653/// itself. This can be useful for portably encoding the comment character
654/// or other bits of target-specific knowledge into the asmstrings. The
655/// syntax used is ${:comment}. Targets can override this to add support
656/// for their own strange codes.
657void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) {
Chris Lattner30b47082006-09-27 00:06:07 +0000658 if (!strcmp(Code, "private")) {
659 O << TAI->getPrivateGlobalPrefix();
660 } else if (!strcmp(Code, "comment")) {
Chris Lattnera32814b2006-09-26 23:59:50 +0000661 O << TAI->getCommentString();
662 } else if (!strcmp(Code, "uid")) {
663 // Assign a unique ID to this machine instruction.
664 static const MachineInstr *LastMI = 0;
665 static unsigned Counter = 0U-1;
666 // If this is a new machine instruction, bump the counter.
667 if (LastMI != MI) { ++Counter; LastMI = MI; }
668 O << Counter;
669 } else {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000670 cerr << "Unknown special formatter '" << Code
671 << "' for machine instr: " << *MI;
Chris Lattnera32814b2006-09-26 23:59:50 +0000672 exit(1);
673 }
674}
675
676
Chris Lattner061d9e22006-01-27 02:10:10 +0000677/// printInlineAsm - This method formats and prints the specified machine
678/// instruction that is an inline asm.
679void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattner57ecb562006-01-30 23:00:08 +0000680 unsigned NumOperands = MI->getNumOperands();
681
682 // Count the number of register definitions.
683 unsigned NumDefs = 0;
Chris Lattner45456d42006-09-05 20:02:51 +0000684 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
685 ++NumDefs)
Chris Lattner57ecb562006-01-30 23:00:08 +0000686 assert(NumDefs != NumOperands-1 && "No asm string?");
687
688 assert(MI->getOperand(NumDefs).isExternalSymbol() && "No asm string?");
Chris Lattneraa23fa92006-02-01 22:41:11 +0000689
690 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattner57ecb562006-01-30 23:00:08 +0000691 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattneraa23fa92006-02-01 22:41:11 +0000692
Chris Lattner3390cbe2006-07-28 00:17:20 +0000693 // If this asmstr is empty, don't bother printing the #APP/#NOAPP markers.
694 if (AsmStr[0] == 0) {
695 O << "\n"; // Tab already printed, avoid double indenting next instr.
696 return;
697 }
698
Jim Laskeya6211dc2006-09-06 18:34:40 +0000699 O << TAI->getInlineAsmStart() << "\n\t";
Chris Lattner3390cbe2006-07-28 00:17:20 +0000700
Bill Wendlinge21237e2007-01-16 03:42:04 +0000701 // The variant of the current asmprinter.
702 int AsmPrinterVariant = TAI->getAssemblerDialect();
703
Chris Lattneraa23fa92006-02-01 22:41:11 +0000704 int CurVariant = -1; // The number of the {.|.|.} region we are in.
705 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner3a5ed552006-02-01 01:28:23 +0000706
Chris Lattneraa23fa92006-02-01 22:41:11 +0000707 while (*LastEmitted) {
708 switch (*LastEmitted) {
709 default: {
710 // Not a special case, emit the string section literally.
711 const char *LiteralEnd = LastEmitted+1;
712 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattnera633c3132006-05-05 21:47:05 +0000713 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattneraa23fa92006-02-01 22:41:11 +0000714 ++LiteralEnd;
715 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
716 O.write(LastEmitted, LiteralEnd-LastEmitted);
717 LastEmitted = LiteralEnd;
718 break;
719 }
Chris Lattnera633c3132006-05-05 21:47:05 +0000720 case '\n':
721 ++LastEmitted; // Consume newline character.
722 O << "\n\t"; // Indent code with newline.
723 break;
Chris Lattneraa23fa92006-02-01 22:41:11 +0000724 case '$': {
725 ++LastEmitted; // Consume '$' character.
Chris Lattnerfc416fa2006-10-03 23:27:09 +0000726 bool Done = true;
727
728 // Handle escapes.
729 switch (*LastEmitted) {
730 default: Done = false; break;
731 case '$': // $$ -> $
Chris Lattneraa23fa92006-02-01 22:41:11 +0000732 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
733 O << '$';
734 ++LastEmitted; // Consume second '$' character.
735 break;
Chris Lattnerfc416fa2006-10-03 23:27:09 +0000736 case '(': // $( -> same as GCC's { character.
737 ++LastEmitted; // Consume '(' character.
738 if (CurVariant != -1) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000739 cerr << "Nested variants found in inline asm string: '"
740 << AsmStr << "'\n";
Chris Lattnerfc416fa2006-10-03 23:27:09 +0000741 exit(1);
742 }
743 CurVariant = 0; // We're in the first variant now.
744 break;
745 case '|':
746 ++LastEmitted; // consume '|' character.
747 if (CurVariant == -1) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000748 cerr << "Found '|' character outside of variant in inline asm "
749 << "string: '" << AsmStr << "'\n";
Chris Lattnerfc416fa2006-10-03 23:27:09 +0000750 exit(1);
751 }
752 ++CurVariant; // We're in the next variant.
753 break;
754 case ')': // $) -> same as GCC's } char.
755 ++LastEmitted; // consume ')' character.
756 if (CurVariant == -1) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000757 cerr << "Found '}' character outside of variant in inline asm "
758 << "string: '" << AsmStr << "'\n";
Chris Lattnerfc416fa2006-10-03 23:27:09 +0000759 exit(1);
760 }
761 CurVariant = -1;
762 break;
Chris Lattneraa23fa92006-02-01 22:41:11 +0000763 }
Chris Lattnerfc416fa2006-10-03 23:27:09 +0000764 if (Done) break;
Chris Lattneraa23fa92006-02-01 22:41:11 +0000765
766 bool HasCurlyBraces = false;
767 if (*LastEmitted == '{') { // ${variable}
768 ++LastEmitted; // Consume '{' character.
769 HasCurlyBraces = true;
770 }
771
772 const char *IDStart = LastEmitted;
773 char *IDEnd;
774 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
775 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000776 cerr << "Bad $ operand number in inline asm string: '"
777 << AsmStr << "'\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +0000778 exit(1);
779 }
780 LastEmitted = IDEnd;
781
Chris Lattner34f74c12006-02-06 22:17:23 +0000782 char Modifier[2] = { 0, 0 };
783
Chris Lattneraa23fa92006-02-01 22:41:11 +0000784 if (HasCurlyBraces) {
Chris Lattner34f74c12006-02-06 22:17:23 +0000785 // If we have curly braces, check for a modifier character. This
786 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
787 if (*LastEmitted == ':') {
788 ++LastEmitted; // Consume ':' character.
789 if (*LastEmitted == 0) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000790 cerr << "Bad ${:} expression in inline asm string: '"
791 << AsmStr << "'\n";
Chris Lattner34f74c12006-02-06 22:17:23 +0000792 exit(1);
793 }
794
795 Modifier[0] = *LastEmitted;
796 ++LastEmitted; // Consume modifier character.
797 }
798
Chris Lattneraa23fa92006-02-01 22:41:11 +0000799 if (*LastEmitted != '}') {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000800 cerr << "Bad ${} expression in inline asm string: '"
801 << AsmStr << "'\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +0000802 exit(1);
803 }
804 ++LastEmitted; // Consume '}' character.
805 }
806
807 if ((unsigned)Val >= NumOperands-1) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000808 cerr << "Invalid $ operand number in inline asm string: '"
809 << AsmStr << "'\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +0000810 exit(1);
811 }
812
Chris Lattner571d9642006-02-23 19:21:04 +0000813 // Okay, we finally have a value number. Ask the target to print this
Chris Lattneraa23fa92006-02-01 22:41:11 +0000814 // operand!
Chris Lattner571d9642006-02-23 19:21:04 +0000815 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
816 unsigned OpNo = 1;
Chris Lattner8f8b5e42006-06-08 18:00:47 +0000817
818 bool Error = false;
819
Chris Lattner571d9642006-02-23 19:21:04 +0000820 // Scan to find the machine operand number for the operand.
Chris Lattner5af3fde2006-02-24 19:50:58 +0000821 for (; Val; --Val) {
Chris Lattner8f8b5e42006-06-08 18:00:47 +0000822 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner5af3fde2006-02-24 19:50:58 +0000823 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
824 OpNo += (OpFlags >> 3) + 1;
825 }
Chris Lattner1d08c652006-02-24 20:21:58 +0000826
Chris Lattner8f8b5e42006-06-08 18:00:47 +0000827 if (OpNo >= MI->getNumOperands()) {
828 Error = true;
Chris Lattner1d08c652006-02-24 20:21:58 +0000829 } else {
Chris Lattner8f8b5e42006-06-08 18:00:47 +0000830 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
831 ++OpNo; // Skip over the ID number.
832
833 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
834 if ((OpFlags & 7) == 4 /*ADDR MODE*/) {
835 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
836 Modifier[0] ? Modifier : 0);
837 } else {
838 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
839 Modifier[0] ? Modifier : 0);
840 }
Chris Lattner1d08c652006-02-24 20:21:58 +0000841 }
842 if (Error) {
Bill Wendlingf3baad32006-12-07 01:30:32 +0000843 cerr << "Invalid operand found in inline asm: '"
844 << AsmStr << "'\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +0000845 MI->dump();
846 exit(1);
847 }
Chris Lattner571d9642006-02-23 19:21:04 +0000848 }
Chris Lattneraa23fa92006-02-01 22:41:11 +0000849 break;
850 }
Chris Lattneraa23fa92006-02-01 22:41:11 +0000851 }
852 }
Jim Laskeya6211dc2006-09-06 18:34:40 +0000853 O << "\n\t" << TAI->getInlineAsmEnd() << "\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +0000854}
855
856/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
857/// instruction, using the specified assembler variant. Targets should
858/// overried this to format as appropriate.
859bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner34f74c12006-02-06 22:17:23 +0000860 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattneraa23fa92006-02-01 22:41:11 +0000861 // Target doesn't support this yet!
862 return true;
Chris Lattner061d9e22006-01-27 02:10:10 +0000863}
Chris Lattner1d08c652006-02-24 20:21:58 +0000864
865bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
866 unsigned AsmVariant,
867 const char *ExtraCode) {
868 // Target doesn't support this yet!
869 return true;
870}
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000871
872/// printBasicBlockLabel - This method prints the label for the specified
873/// MachineBasicBlock
Nate Begemanb9d4f832006-05-02 05:37:32 +0000874void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
875 bool printColon,
876 bool printComment) const {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000877 O << TAI->getPrivateGlobalPrefix() << "BB" << FunctionNumber << "_"
Nate Begeman4971ba52006-05-02 17:36:46 +0000878 << MBB->getNumber();
Nate Begemanb9d4f832006-05-02 05:37:32 +0000879 if (printColon)
880 O << ':';
Chris Lattner8b1a59a2006-10-05 21:40:14 +0000881 if (printComment && MBB->getBasicBlock())
Jim Laskeya6211dc2006-09-06 18:34:40 +0000882 O << '\t' << TAI->getCommentString() << MBB->getBasicBlock()->getName();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000883}
Nate Begeman984c1a42006-08-12 21:29:52 +0000884
885/// printSetLabel - This method prints a set label for the specified
886/// MachineBasicBlock
887void AsmPrinter::printSetLabel(unsigned uid,
888 const MachineBasicBlock *MBB) const {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000889 if (!TAI->getSetDirective())
Nate Begeman984c1a42006-08-12 21:29:52 +0000890 return;
891
Jim Laskeya6211dc2006-09-06 18:34:40 +0000892 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
893 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Nate Begeman984c1a42006-08-12 21:29:52 +0000894 printBasicBlockLabel(MBB, false, false);
Jim Laskeya6211dc2006-09-06 18:34:40 +0000895 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Nate Begeman984c1a42006-08-12 21:29:52 +0000896 << '_' << uid << '\n';
897}
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000898
Evan Cheng91f120f2006-11-01 09:23:08 +0000899void AsmPrinter::printSetLabel(unsigned uid, unsigned uid2,
900 const MachineBasicBlock *MBB) const {
901 if (!TAI->getSetDirective())
902 return;
903
904 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
905 << getFunctionNumber() << '_' << uid << '_' << uid2
906 << "_set_" << MBB->getNumber() << ',';
907 printBasicBlockLabel(MBB, false, false);
908 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
909 << '_' << uid << '_' << uid2 << '\n';
910}
911
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000912/// printDataDirective - This method prints the asm directive for the
913/// specified type.
914void AsmPrinter::printDataDirective(const Type *type) {
915 const TargetData *TD = TM.getTargetData();
916 switch (type->getTypeID()) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000917 case Type::IntegerTyID: {
918 unsigned BitWidth = cast<IntegerType>(type)->getBitWidth();
919 if (BitWidth <= 8)
920 O << TAI->getData8bitsDirective();
921 else if (BitWidth <= 16)
922 O << TAI->getData16bitsDirective();
923 else if (BitWidth <= 32)
924 O << TAI->getData32bitsDirective();
925 else if (BitWidth <= 64) {
926 assert(TAI->getData64bitsDirective() &&
927 "Target cannot handle 64-bit constant exprs!");
928 O << TAI->getData64bitsDirective();
929 }
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000930 break;
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000931 }
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000932 case Type::PointerTyID:
933 if (TD->getPointerSize() == 8) {
934 assert(TAI->getData64bitsDirective() &&
935 "Target cannot handle 64-bit pointer exprs!");
936 O << TAI->getData64bitsDirective();
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000937 } else {
938 O << TAI->getData32bitsDirective();
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000939 }
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000940 break;
941 case Type::FloatTyID: case Type::DoubleTyID:
942 assert (0 && "Should have already output floating point constant.");
943 default:
944 assert (0 && "Can't handle printing this type of thing");
945 break;
946 }
947}