blob: bcdb393c239724e72c9a503e3f68eb54c9b54c0d [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"
Jim Laskeya6211dc2006-09-06 18:34:40 +000023#include "llvm/Target/TargetAsmInfo.h"
Owen Anderson8c2c1e92006-05-12 06:33:49 +000024#include "llvm/Target/TargetData.h"
Chris Lattner6a8e0f52004-08-16 23:15:22 +000025#include "llvm/Target/TargetMachine.h"
Duraid Madina26b037e2005-12-28 06:29:02 +000026#include <iostream>
Chris Lattneraa23fa92006-02-01 22:41:11 +000027#include <cerrno>
Chris Lattner6a8e0f52004-08-16 23:15:22 +000028using namespace llvm;
29
Jim Laskey261779b2006-09-07 22:06:40 +000030AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm,
31 const TargetAsmInfo *T)
Jim Laskeya6211dc2006-09-06 18:34:40 +000032: FunctionNumber(0), O(o), TM(tm), TAI(T)
33{}
Chris Lattnerf0e9aef2005-12-13 06:32:10 +000034
35
Chris Lattner8488ba22006-05-09 04:59:56 +000036/// SwitchToTextSection - Switch to the specified text section of the executable
37/// if we are not already in it!
Chris Lattner2ea5c992005-11-21 07:06:27 +000038///
Chris Lattner8488ba22006-05-09 04:59:56 +000039void AsmPrinter::SwitchToTextSection(const char *NewSection,
40 const GlobalValue *GV) {
Chris Lattner2ea5c992005-11-21 07:06:27 +000041 std::string NS;
Chris Lattner8c2bfc02006-05-09 05:24:50 +000042 if (GV && GV->hasSection())
Jim Laskeya6211dc2006-09-06 18:34:40 +000043 NS = TAI->getSwitchToSectionDirective() + GV->getSection();
Chris Lattner8c2bfc02006-05-09 05:24:50 +000044 else
45 NS = NewSection;
46
47 // If we're already in this section, we're done.
48 if (CurrentSection == NS) return;
Jeff Cohen470f4312006-05-02 03:58:45 +000049
Chris Lattner4ebc6a22006-05-09 05:33:48 +000050 // Close the current section, if applicable.
Jim Laskeya6211dc2006-09-06 18:34:40 +000051 if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
52 O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
Jeff Cohen470f4312006-05-02 03:58:45 +000053
Chris Lattner4ebc6a22006-05-09 05:33:48 +000054 CurrentSection = NS;
55
56 if (!CurrentSection.empty())
Jim Laskeya6211dc2006-09-06 18:34:40 +000057 O << CurrentSection << TAI->getTextSectionStartSuffix() << '\n';
Chris Lattner2ea5c992005-11-21 07:06:27 +000058}
59
Nate Begeman78756502006-07-27 01:13:04 +000060/// SwitchToDataSection - Switch to the specified data section of the executable
Chris Lattner8488ba22006-05-09 04:59:56 +000061/// if we are not already in it!
62///
63void AsmPrinter::SwitchToDataSection(const char *NewSection,
64 const GlobalValue *GV) {
65 std::string NS;
Chris Lattner6341df82006-05-09 05:23:12 +000066 if (GV && GV->hasSection())
Jim Laskeya6211dc2006-09-06 18:34:40 +000067 NS = TAI->getSwitchToSectionDirective() + GV->getSection();
Chris Lattner6341df82006-05-09 05:23:12 +000068 else
69 NS = NewSection;
Chris Lattner8488ba22006-05-09 04:59:56 +000070
Chris Lattner6341df82006-05-09 05:23:12 +000071 // If we're already in this section, we're done.
72 if (CurrentSection == NS) return;
73
Chris Lattner4ebc6a22006-05-09 05:33:48 +000074 // Close the current section, if applicable.
Jim Laskeya6211dc2006-09-06 18:34:40 +000075 if (TAI->getSectionEndDirectiveSuffix() && !CurrentSection.empty())
76 O << CurrentSection << TAI->getSectionEndDirectiveSuffix() << "\n";
Chris Lattner4ebc6a22006-05-09 05:33:48 +000077
78 CurrentSection = NS;
Chris Lattner8488ba22006-05-09 04:59:56 +000079
Chris Lattner4ebc6a22006-05-09 05:33:48 +000080 if (!CurrentSection.empty())
Jim Laskeya6211dc2006-09-06 18:34:40 +000081 O << CurrentSection << TAI->getDataSectionStartSuffix() << '\n';
Chris Lattner8488ba22006-05-09 04:59:56 +000082}
83
84
Chris Lattner6a8e0f52004-08-16 23:15:22 +000085bool AsmPrinter::doInitialization(Module &M) {
Jim Laskeya6211dc2006-09-06 18:34:40 +000086 Mang = new Mangler(M, TAI->getGlobalPrefix());
Chris Lattnere3a79262006-01-23 23:47:53 +000087
Chris Lattner00fcdfe2006-01-24 04:16:34 +000088 if (!M.getModuleInlineAsm().empty())
Jim Laskeya6211dc2006-09-06 18:34:40 +000089 O << TAI->getCommentString() << " Start of file scope inline assembly\n"
Chris Lattner00fcdfe2006-01-24 04:16:34 +000090 << M.getModuleInlineAsm()
Jim Laskeya6211dc2006-09-06 18:34:40 +000091 << "\n" << TAI->getCommentString()
92 << " End of file scope inline assembly\n";
Chris Lattnere3a79262006-01-23 23:47:53 +000093
Chris Lattner8488ba22006-05-09 04:59:56 +000094 SwitchToDataSection("", 0); // Reset back to no section.
Jim Laskey0bbdc552006-01-26 20:21:46 +000095
96 if (MachineDebugInfo *DebugInfo = getAnalysisToUpdate<MachineDebugInfo>()) {
97 DebugInfo->AnalyzeModule(M);
98 }
99
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000100 return false;
101}
102
103bool AsmPrinter::doFinalization(Module &M) {
104 delete Mang; Mang = 0;
105 return false;
106}
107
Chris Lattnerbb644e32005-11-21 07:51:36 +0000108void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000109 // What's my mangled name?
Chris Lattnerc0a1eba2005-11-10 18:36:17 +0000110 CurrentFnName = Mang->getValueName(MF.getFunction());
Chris Lattner08adbd132005-11-21 08:13:27 +0000111 IncrementFunctionNumber();
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000112}
113
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000114/// EmitConstantPool - Print to the current output stream assembly
115/// representations of the constants in the constant pool MCP. This is
116/// used to print out constants which have been "spilled to memory" by
117/// the code generator.
118///
119void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerba972642006-02-09 04:22:52 +0000120 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000121 if (CP.empty()) return;
Evan Chengec1d60b2006-06-29 00:26:09 +0000122
123 // Some targets require 4-, 8-, and 16- byte constant literals to be placed
124 // in special sections.
125 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > FourByteCPs;
126 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > EightByteCPs;
127 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > SixteenByteCPs;
128 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > OtherCPs;
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000129 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > TargetCPs;
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000130 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Evan Chengec1d60b2006-06-29 00:26:09 +0000131 MachineConstantPoolEntry CPE = CP[i];
Evan Cheng2ad050f2006-09-14 07:35:00 +0000132 const Type *Ty = CPE.getType();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000133 if (TAI->getFourByteConstantSection() &&
Evan Chengec1d60b2006-06-29 00:26:09 +0000134 TM.getTargetData()->getTypeSize(Ty) == 4)
135 FourByteCPs.push_back(std::make_pair(CPE, i));
Evan Cheng95b3dde2006-09-07 18:50:20 +0000136 else if (TAI->getEightByteConstantSection() &&
Evan Chengec1d60b2006-06-29 00:26:09 +0000137 TM.getTargetData()->getTypeSize(Ty) == 8)
138 EightByteCPs.push_back(std::make_pair(CPE, i));
Evan Cheng95b3dde2006-09-07 18:50:20 +0000139 else if (TAI->getSixteenByteConstantSection() &&
Evan Chengec1d60b2006-06-29 00:26:09 +0000140 TM.getTargetData()->getTypeSize(Ty) == 16)
141 SixteenByteCPs.push_back(std::make_pair(CPE, i));
142 else
143 OtherCPs.push_back(std::make_pair(CPE, i));
144 }
145
146 unsigned Alignment = MCP->getConstantPoolAlignment();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000147 EmitConstantPool(Alignment, TAI->getFourByteConstantSection(), FourByteCPs);
148 EmitConstantPool(Alignment, TAI->getEightByteConstantSection(), EightByteCPs);
149 EmitConstantPool(Alignment, TAI->getSixteenByteConstantSection(),
150 SixteenByteCPs);
151 EmitConstantPool(Alignment, TAI->getConstantPoolSection(), OtherCPs);
Evan Chengec1d60b2006-06-29 00:26:09 +0000152}
153
154void AsmPrinter::EmitConstantPool(unsigned Alignment, const char *Section,
155 std::vector<std::pair<MachineConstantPoolEntry,unsigned> > &CP) {
156 if (CP.empty()) return;
157
158 SwitchToDataSection(Section, 0);
159 EmitAlignment(Alignment);
160 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000161 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
162 << CP[i].second << ":\t\t\t\t\t" << TAI->getCommentString() << " ";
Evan Cheng2ad050f2006-09-14 07:35:00 +0000163 WriteTypeSymbolic(O, CP[i].first.getType(), 0) << '\n';
164 if (CP[i].first.isMachineConstantPoolEntry())
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000165 EmitMachineConstantPoolValue(CP[i].first.Val.MachineCPVal);
Evan Cheng2ad050f2006-09-14 07:35:00 +0000166 else
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000167 EmitGlobalConstant(CP[i].first.Val.ConstVal);
Chris Lattnerf6190822006-02-09 04:46:04 +0000168 if (i != e-1) {
Evan Cheng2ad050f2006-09-14 07:35:00 +0000169 const Type *Ty = CP[i].first.getType();
Evan Chengec1d60b2006-06-29 00:26:09 +0000170 unsigned EntSize =
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000171 TM.getTargetData()->getTypeSize(Ty);
Evan Cheng2ad050f2006-09-14 07:35:00 +0000172 unsigned ValEnd = CP[i].first.getOffset() + EntSize;
Chris Lattnerf6190822006-02-09 04:46:04 +0000173 // Emit inter-object padding for alignment.
Evan Cheng2ad050f2006-09-14 07:35:00 +0000174 EmitZeros(CP[i+1].first.getOffset()-ValEnd);
Chris Lattnerf6190822006-02-09 04:46:04 +0000175 }
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000176 }
177}
178
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000179/// EmitJumpTableInfo - Print assembly representations of the jump tables used
180/// by the current function to the current output stream.
181///
182void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI) {
183 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
184 if (JT.empty()) return;
Owen Anderson20a631f2006-05-03 01:29:57 +0000185 const TargetData *TD = TM.getTargetData();
Nate Begemanefc312a2006-07-27 16:46:58 +0000186
187 // JTEntryDirective is a string to print sizeof(ptr) for non-PIC jump tables,
188 // and 32 bits for PIC since PIC jump table entries are differences, not
189 // pointers to blocks.
Andrew Lenharth783a4a92006-09-24 19:45:58 +0000190 // Use the architecture specific relocation directive, if it is set
191 const char *JTEntryDirective = TAI->getJumpTableDirective();
192 if (!JTEntryDirective)
193 JTEntryDirective = TAI->getData32bitsDirective();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000194
Nate Begeman78756502006-07-27 01:13:04 +0000195 // Pick the directive to use to print the jump table entries, and switch to
196 // the appropriate section.
197 if (TM.getRelocationModel() == Reloc::PIC_) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000198 SwitchToTextSection(TAI->getJumpTableTextSection(), 0);
Nate Begeman78756502006-07-27 01:13:04 +0000199 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000200 SwitchToDataSection(TAI->getJumpTableDataSection(), 0);
Nate Begeman78756502006-07-27 01:13:04 +0000201 if (TD->getPointerSize() == 8)
Jim Laskeya6211dc2006-09-06 18:34:40 +0000202 JTEntryDirective = TAI->getData64bitsDirective();
Nate Begeman78756502006-07-27 01:13:04 +0000203 }
Owen Anderson20a631f2006-05-03 01:29:57 +0000204 EmitAlignment(Log2_32(TD->getPointerAlignment()));
Chris Lattnerfd5a8eb2006-07-15 01:34:12 +0000205
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000206 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
Nate Begeman984c1a42006-08-12 21:29:52 +0000207 const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
208
209 // For PIC codegen, if possible we want to use the SetDirective to reduce
210 // the number of relocations the assembler will generate for the jump table.
211 // Set directives are all printed before the jump table itself.
212 std::set<MachineBasicBlock*> EmittedSets;
Jim Laskeya6211dc2006-09-06 18:34:40 +0000213 if (TAI->getSetDirective() && TM.getRelocationModel() == Reloc::PIC_)
Nate Begeman984c1a42006-08-12 21:29:52 +0000214 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
215 if (EmittedSets.insert(JTBBs[ii]).second)
216 printSetLabel(i, JTBBs[ii]);
217
Jim Laskeya6211dc2006-09-06 18:34:40 +0000218 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
219 << '_' << i << ":\n";
Nate Begeman984c1a42006-08-12 21:29:52 +0000220
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000221 for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
Nate Begemanefc312a2006-07-27 16:46:58 +0000222 O << JTEntryDirective << ' ';
Nate Begeman984c1a42006-08-12 21:29:52 +0000223 // If we have emitted set directives for the jump table entries, print
224 // them rather than the entries themselves. If we're emitting PIC, then
225 // emit the table entries as differences between two text section labels.
226 // If we're emitting non-PIC code, then emit the entries as direct
227 // references to the target basic blocks.
228 if (!EmittedSets.empty()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000229 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
230 << '_' << i << "_set_" << JTBBs[ii]->getNumber();
Nate Begeman984c1a42006-08-12 21:29:52 +0000231 } else if (TM.getRelocationModel() == Reloc::PIC_) {
232 printBasicBlockLabel(JTBBs[ii], false, false);
Andrew Lenharth783a4a92006-09-24 19:45:58 +0000233 //If the arch uses custom Jump Table directives, don't calc relative to JT
234 if (!TAI->getJumpTableDirective())
235 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI"
236 << getFunctionNumber() << '_' << i;
Nate Begeman984c1a42006-08-12 21:29:52 +0000237 } else {
238 printBasicBlockLabel(JTBBs[ii], false, false);
Nate Begeman78756502006-07-27 01:13:04 +0000239 }
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000240 O << '\n';
241 }
242 }
243}
244
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000245/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
246/// special global used by LLVM. If so, emit it and return true, otherwise
247/// do nothing and return false.
248bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
Jim Laskey313570f2006-03-07 22:00:35 +0000249 // Ignore debug and non-emitted data.
250 if (GV->getSection() == "llvm.metadata") return true;
251
252 if (!GV->hasAppendingLinkage()) return false;
253
254 assert(GV->hasInitializer() && "Not a special LLVM global!");
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000255
256 if (GV->getName() == "llvm.used")
257 return true; // No need to emit this at all.
258
Chris Lattner3760e902006-01-12 19:17:23 +0000259 if (GV->getName() == "llvm.global_ctors" && GV->use_empty()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000260 SwitchToDataSection(TAI->getStaticCtorsSection(), 0);
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000261 EmitAlignment(2, 0);
262 EmitXXStructorList(GV->getInitializer());
263 return true;
264 }
265
Chris Lattner3760e902006-01-12 19:17:23 +0000266 if (GV->getName() == "llvm.global_dtors" && GV->use_empty()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000267 SwitchToDataSection(TAI->getStaticDtorsSection(), 0);
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000268 EmitAlignment(2, 0);
269 EmitXXStructorList(GV->getInitializer());
270 return true;
271 }
272
273 return false;
274}
275
276/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
277/// function pointers, ignoring the init priority.
278void AsmPrinter::EmitXXStructorList(Constant *List) {
279 // Should be an array of '{ int, void ()* }' structs. The first value is the
280 // init priority, which we ignore.
281 if (!isa<ConstantArray>(List)) return;
282 ConstantArray *InitList = cast<ConstantArray>(List);
283 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
284 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
285 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Chris Lattner434ffe42005-12-21 01:17:37 +0000286
287 if (CS->getOperand(1)->isNullValue())
288 return; // Found a null terminator, exit printing.
289 // Emit the function pointer.
Chris Lattnerf0e9aef2005-12-13 06:32:10 +0000290 EmitGlobalConstant(CS->getOperand(1));
291 }
292}
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000293
Chris Lattnera9b25252006-02-05 01:29:18 +0000294/// getPreferredAlignmentLog - Return the preferred alignment of the
295/// specified global, returned in log form. This includes an explicitly
296/// requested alignment (if the global has one).
297unsigned AsmPrinter::getPreferredAlignmentLog(const GlobalVariable *GV) const {
Jim Laskeydce07562006-06-15 13:10:58 +0000298 const Type *ElemType = GV->getType()->getElementType();
299 unsigned Alignment = TM.getTargetData()->getTypeAlignmentShift(ElemType);
Chris Lattnera9b25252006-02-05 01:29:18 +0000300 if (GV->getAlignment() > (1U << Alignment))
301 Alignment = Log2_32(GV->getAlignment());
302
Chris Lattnercbab2842006-02-05 01:46:49 +0000303 if (GV->hasInitializer()) {
Jim Laskey3519b872006-06-15 19:37:14 +0000304 // Always round up alignment of global doubles to 8 bytes.
305 if (GV->getType()->getElementType() == Type::DoubleTy && Alignment < 3)
306 Alignment = 3;
Chris Lattnercbab2842006-02-05 01:46:49 +0000307 if (Alignment < 4) {
308 // If the global is not external, see if it is large. If so, give it a
309 // larger alignment.
Jim Laskeydce07562006-06-15 13:10:58 +0000310 if (TM.getTargetData()->getTypeSize(ElemType) > 128)
Chris Lattnercbab2842006-02-05 01:46:49 +0000311 Alignment = 4; // 16-byte alignment.
312 }
Chris Lattnera9b25252006-02-05 01:29:18 +0000313 }
314 return Alignment;
315}
Chris Lattnerf2991ce2005-11-21 08:25:09 +0000316
Chris Lattnerbb644e32005-11-21 07:51:36 +0000317// EmitAlignment - Emit an alignment directive to the specified power of two.
318void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
Chris Lattnerdd8eeed2005-11-14 19:00:06 +0000319 if (GV && GV->getAlignment())
320 NumBits = Log2_32(GV->getAlignment());
Chris Lattner747960d2005-11-10 18:09:27 +0000321 if (NumBits == 0) return; // No need to emit alignment.
Jim Laskeya6211dc2006-09-06 18:34:40 +0000322 if (TAI->getAlignmentIsInBytes()) NumBits = 1 << NumBits;
323 O << TAI->getAlignDirective() << NumBits << "\n";
Chris Lattner1d35c162004-08-17 19:14:29 +0000324}
325
Chris Lattnerbb644e32005-11-21 07:51:36 +0000326/// EmitZeros - Emit a block of zeros.
Chris Lattnerea751992004-08-17 21:38:40 +0000327///
Chris Lattnerbb644e32005-11-21 07:51:36 +0000328void AsmPrinter::EmitZeros(uint64_t NumZeros) const {
Chris Lattnerea751992004-08-17 21:38:40 +0000329 if (NumZeros) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000330 if (TAI->getZeroDirective()) {
331 O << TAI->getZeroDirective() << NumZeros;
332 if (TAI->getZeroDirectiveSuffix())
333 O << TAI->getZeroDirectiveSuffix();
Jeff Cohenf34ddb12006-05-02 03:46:13 +0000334 O << "\n";
335 } else {
Chris Lattnerea751992004-08-17 21:38:40 +0000336 for (; NumZeros; --NumZeros)
Jim Laskeya6211dc2006-09-06 18:34:40 +0000337 O << TAI->getData8bitsDirective() << "0\n";
Chris Lattnerea751992004-08-17 21:38:40 +0000338 }
339 }
340}
341
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000342// Print out the specified constant, without a storage class. Only the
343// constants valid in constant expressions can occur here.
Chris Lattnerbb644e32005-11-21 07:51:36 +0000344void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
Chris Lattner61753bf2004-10-16 18:19:26 +0000345 if (CV->isNullValue() || isa<UndefValue>(CV))
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000346 O << "0";
347 else if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
348 assert(CB == ConstantBool::True);
349 O << "1";
350 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
351 if (((CI->getValue() << 32) >> 32) == CI->getValue())
352 O << CI->getValue();
353 else
Duraid Madina73c4dba2005-05-15 13:05:48 +0000354 O << (uint64_t)CI->getValue();
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000355 else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
356 O << CI->getValue();
Chris Lattnerc0a1eba2005-11-10 18:36:17 +0000357 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Duraid Madina73a316d2005-04-02 12:21:51 +0000358 // This is a constant address for a global variable or function. Use the
359 // name of the variable or function as the address value, possibly
360 // decorating it with GlobalVarAddrPrefix/Suffix or
361 // FunctionAddrPrefix/Suffix (these all default to "" )
Jim Laskeya6211dc2006-09-06 18:34:40 +0000362 if (isa<Function>(GV)) {
363 O << TAI->getFunctionAddrPrefix()
364 << Mang->getValueName(GV)
365 << TAI->getFunctionAddrSuffix();
366 } else {
367 O << TAI->getGlobalVarAddrPrefix()
368 << Mang->getValueName(GV)
369 << TAI->getGlobalVarAddrSuffix();
370 }
Duraid Madina73a316d2005-04-02 12:21:51 +0000371 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000372 const TargetData *TD = TM.getTargetData();
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000373 switch(CE->getOpcode()) {
374 case Instruction::GetElementPtr: {
375 // generate a symbolic expression for the byte address
376 const Constant *ptrVal = CE->getOperand(0);
377 std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
Owen Anderson20a631f2006-05-03 01:29:57 +0000378 if (int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), idxVec)) {
Chris Lattner145569b2005-02-14 21:40:26 +0000379 if (Offset)
380 O << "(";
Chris Lattnerbb644e32005-11-21 07:51:36 +0000381 EmitConstantValueOnly(ptrVal);
Chris Lattner145569b2005-02-14 21:40:26 +0000382 if (Offset > 0)
383 O << ") + " << Offset;
384 else if (Offset < 0)
385 O << ") - " << -Offset;
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000386 } else {
Chris Lattnerbb644e32005-11-21 07:51:36 +0000387 EmitConstantValueOnly(ptrVal);
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000388 }
389 break;
390 }
391 case Instruction::Cast: {
Chris Lattner85492422006-07-29 01:57:19 +0000392 // Support only foldable casts to/from pointers that can be eliminated by
393 // changing the pointer to the appropriately sized integer type.
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000394 Constant *Op = CE->getOperand(0);
395 const Type *OpTy = Op->getType(), *Ty = CE->getType();
396
Chris Lattner85492422006-07-29 01:57:19 +0000397 // Handle casts to pointers by changing them into casts to the appropriate
398 // integer type. This promotes constant folding and simplifies this code.
399 if (isa<PointerType>(Ty)) {
400 const Type *IntPtrTy = TD->getIntPtrType();
401 Op = ConstantExpr::getCast(Op, IntPtrTy);
402 return EmitConstantValueOnly(Op);
403 }
404
405 // We know the dest type is not a pointer. Is the src value a pointer or
406 // integral?
407 if (isa<PointerType>(OpTy) || OpTy->isIntegral()) {
408 // We can emit the pointer value into this slot if the slot is an
409 // integer slot greater or equal to the size of the pointer.
410 if (Ty->isIntegral() && TD->getTypeSize(Ty) >= TD->getTypeSize(OpTy))
411 return EmitConstantValueOnly(Op);
412 }
413
414 assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
Chris Lattnerbb644e32005-11-21 07:51:36 +0000415 EmitConstantValueOnly(Op);
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000416 break;
417 }
418 case Instruction::Add:
419 O << "(";
Chris Lattnerbb644e32005-11-21 07:51:36 +0000420 EmitConstantValueOnly(CE->getOperand(0));
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000421 O << ") + (";
Chris Lattnerbb644e32005-11-21 07:51:36 +0000422 EmitConstantValueOnly(CE->getOperand(1));
Chris Lattner6a8e0f52004-08-16 23:15:22 +0000423 O << ")";
424 break;
425 default:
426 assert(0 && "Unsupported operator!");
427 }
428 } else {
429 assert(0 && "Unknown constant value!");
430 }
431}
Chris Lattner8452a1f2004-08-17 06:36:49 +0000432
433/// toOctal - Convert the low order bits of X into an octal digit.
434///
435static inline char toOctal(int X) {
436 return (X&7)+'0';
437}
438
Chris Lattner55a6d902005-11-10 18:06:33 +0000439/// printAsCString - Print the specified array as a C compatible string, only if
Chris Lattner8452a1f2004-08-17 06:36:49 +0000440/// the predicate isString is true.
441///
Chris Lattner55a6d902005-11-10 18:06:33 +0000442static void printAsCString(std::ostream &O, const ConstantArray *CVA,
443 unsigned LastElt) {
Chris Lattner8452a1f2004-08-17 06:36:49 +0000444 assert(CVA->isString() && "Array is not string compatible!");
445
446 O << "\"";
Chris Lattner55a6d902005-11-10 18:06:33 +0000447 for (unsigned i = 0; i != LastElt; ++i) {
Misha Brukman835702a2005-04-21 22:36:52 +0000448 unsigned char C =
Chris Lattner0b955fd2005-01-08 19:59:10 +0000449 (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
Chris Lattner8452a1f2004-08-17 06:36:49 +0000450
451 if (C == '"') {
452 O << "\\\"";
453 } else if (C == '\\') {
454 O << "\\\\";
455 } else if (isprint(C)) {
456 O << C;
457 } else {
458 switch(C) {
459 case '\b': O << "\\b"; break;
460 case '\f': O << "\\f"; break;
461 case '\n': O << "\\n"; break;
462 case '\r': O << "\\r"; break;
463 case '\t': O << "\\t"; break;
464 default:
465 O << '\\';
466 O << toOctal(C >> 6);
467 O << toOctal(C >> 3);
468 O << toOctal(C >> 0);
469 break;
470 }
471 }
472 }
473 O << "\"";
474}
475
Jeff Cohen24a62a92006-05-02 01:16:28 +0000476/// EmitString - Emit a zero-byte-terminated string constant.
477///
478void AsmPrinter::EmitString(const ConstantArray *CVA) const {
479 unsigned NumElts = CVA->getNumOperands();
Jim Laskeya6211dc2006-09-06 18:34:40 +0000480 if (TAI->getAscizDirective() && NumElts &&
Jeff Cohen24a62a92006-05-02 01:16:28 +0000481 cast<ConstantInt>(CVA->getOperand(NumElts-1))->getRawValue() == 0) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000482 O << TAI->getAscizDirective();
Jeff Cohen24a62a92006-05-02 01:16:28 +0000483 printAsCString(O, CVA, NumElts-1);
484 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000485 O << TAI->getAsciiDirective();
Jeff Cohen24a62a92006-05-02 01:16:28 +0000486 printAsCString(O, CVA, NumElts);
487 }
488 O << "\n";
489}
490
Chris Lattnerbb644e32005-11-21 07:51:36 +0000491/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
Chris Lattner8452a1f2004-08-17 06:36:49 +0000492///
Chris Lattnerbb644e32005-11-21 07:51:36 +0000493void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000494 const TargetData *TD = TM.getTargetData();
Chris Lattner8452a1f2004-08-17 06:36:49 +0000495
Chris Lattner61753bf2004-10-16 18:19:26 +0000496 if (CV->isNullValue() || isa<UndefValue>(CV)) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000497 EmitZeros(TD->getTypeSize(CV->getType()));
Chris Lattner8452a1f2004-08-17 06:36:49 +0000498 return;
499 } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
500 if (CVA->isString()) {
Jeff Cohen24a62a92006-05-02 01:16:28 +0000501 EmitString(CVA);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000502 } else { // Not a string. Print the values in successive locations
503 for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
Chris Lattnerbb644e32005-11-21 07:51:36 +0000504 EmitGlobalConstant(CVA->getOperand(i));
Chris Lattner8452a1f2004-08-17 06:36:49 +0000505 }
506 return;
507 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
508 // Print the fields in successive locations. Pad to align if needed!
Owen Anderson20a631f2006-05-03 01:29:57 +0000509 const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
Chris Lattner0b955fd2005-01-08 19:59:10 +0000510 uint64_t sizeSoFar = 0;
Chris Lattner8452a1f2004-08-17 06:36:49 +0000511 for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
512 const Constant* field = CVS->getOperand(i);
513
514 // Check if padding is needed and insert one or more 0s.
Owen Anderson20a631f2006-05-03 01:29:57 +0000515 uint64_t fieldSize = TD->getTypeSize(field->getType());
Chris Lattner0b955fd2005-01-08 19:59:10 +0000516 uint64_t padSize = ((i == e-1? cvsLayout->StructSize
Chris Lattner8452a1f2004-08-17 06:36:49 +0000517 : cvsLayout->MemberOffsets[i+1])
518 - cvsLayout->MemberOffsets[i]) - fieldSize;
519 sizeSoFar += fieldSize + padSize;
520
521 // Now print the actual field value
Chris Lattnerbb644e32005-11-21 07:51:36 +0000522 EmitGlobalConstant(field);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000523
524 // Insert the field padding unless it's zero bytes...
Chris Lattnerbb644e32005-11-21 07:51:36 +0000525 EmitZeros(padSize);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000526 }
527 assert(sizeSoFar == cvsLayout->StructSize &&
528 "Layout of constant struct may be incorrect!");
529 return;
530 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
531 // FP Constants are printed as integer constants to avoid losing
532 // precision...
533 double Val = CFP->getValue();
534 if (CFP->getType() == Type::DoubleTy) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000535 if (TAI->getData64bitsDirective())
536 O << TAI->getData64bitsDirective() << DoubleToBits(Val) << "\t"
537 << TAI->getCommentString() << " double value: " << Val << "\n";
Owen Anderson20a631f2006-05-03 01:29:57 +0000538 else if (TD->isBigEndian()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000539 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val) >> 32)
540 << "\t" << TAI->getCommentString()
541 << " double most significant word " << Val << "\n";
542 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val))
543 << "\t" << TAI->getCommentString()
544 << " double least significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000545 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000546 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val))
547 << "\t" << TAI->getCommentString()
548 << " double least significant word " << Val << "\n";
549 O << TAI->getData32bitsDirective() << unsigned(DoubleToBits(Val) >> 32)
550 << "\t" << TAI->getCommentString()
551 << " double most significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000552 }
553 return;
554 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000555 O << TAI->getData32bitsDirective() << FloatToBits(Val)
556 << "\t" << TAI->getCommentString() << " float " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000557 return;
558 }
559 } else if (CV->getType() == Type::ULongTy || CV->getType() == Type::LongTy) {
560 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
561 uint64_t Val = CI->getRawValue();
Misha Brukman835702a2005-04-21 22:36:52 +0000562
Jim Laskeya6211dc2006-09-06 18:34:40 +0000563 if (TAI->getData64bitsDirective())
564 O << TAI->getData64bitsDirective() << Val << "\n";
Owen Anderson20a631f2006-05-03 01:29:57 +0000565 else if (TD->isBigEndian()) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000566 O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
567 << "\t" << TAI->getCommentString()
568 << " Double-word most significant word " << Val << "\n";
569 O << TAI->getData32bitsDirective() << unsigned(Val)
570 << "\t" << TAI->getCommentString()
571 << " Double-word least significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000572 } else {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000573 O << TAI->getData32bitsDirective() << unsigned(Val)
574 << "\t" << TAI->getCommentString()
575 << " Double-word least significant word " << Val << "\n";
576 O << TAI->getData32bitsDirective() << unsigned(Val >> 32)
577 << "\t" << TAI->getCommentString()
578 << " Double-word most significant word " << Val << "\n";
Chris Lattner8452a1f2004-08-17 06:36:49 +0000579 }
580 return;
581 }
Nate Begeman41b1cdc2005-12-06 06:18:55 +0000582 } else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
583 const PackedType *PTy = CP->getType();
584
585 for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
586 EmitGlobalConstant(CP->getOperand(I));
587
588 return;
Chris Lattner8452a1f2004-08-17 06:36:49 +0000589 }
590
591 const Type *type = CV->getType();
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000592 printDataDirective(type);
Chris Lattnerbb644e32005-11-21 07:51:36 +0000593 EmitConstantValueOnly(CV);
Chris Lattner8452a1f2004-08-17 06:36:49 +0000594 O << "\n";
595}
Chris Lattner061d9e22006-01-27 02:10:10 +0000596
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000597void
598AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
599 // Target doesn't support this yet!
600 abort();
601}
602
Chris Lattner061d9e22006-01-27 02:10:10 +0000603/// printInlineAsm - This method formats and prints the specified machine
604/// instruction that is an inline asm.
605void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
Chris Lattner57ecb562006-01-30 23:00:08 +0000606 unsigned NumOperands = MI->getNumOperands();
607
608 // Count the number of register definitions.
609 unsigned NumDefs = 0;
Chris Lattner45456d42006-09-05 20:02:51 +0000610 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
611 ++NumDefs)
Chris Lattner57ecb562006-01-30 23:00:08 +0000612 assert(NumDefs != NumOperands-1 && "No asm string?");
613
614 assert(MI->getOperand(NumDefs).isExternalSymbol() && "No asm string?");
Chris Lattneraa23fa92006-02-01 22:41:11 +0000615
616 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
Chris Lattner57ecb562006-01-30 23:00:08 +0000617 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
Chris Lattneraa23fa92006-02-01 22:41:11 +0000618
Chris Lattner3390cbe2006-07-28 00:17:20 +0000619 // If this asmstr is empty, don't bother printing the #APP/#NOAPP markers.
620 if (AsmStr[0] == 0) {
621 O << "\n"; // Tab already printed, avoid double indenting next instr.
622 return;
623 }
624
Jim Laskeya6211dc2006-09-06 18:34:40 +0000625 O << TAI->getInlineAsmStart() << "\n\t";
Chris Lattner3390cbe2006-07-28 00:17:20 +0000626
Chris Lattneraa23fa92006-02-01 22:41:11 +0000627 // The variant of the current asmprinter: FIXME: change.
628 int AsmPrinterVariant = 0;
Chris Lattner57ecb562006-01-30 23:00:08 +0000629
Chris Lattneraa23fa92006-02-01 22:41:11 +0000630 int CurVariant = -1; // The number of the {.|.|.} region we are in.
631 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner3a5ed552006-02-01 01:28:23 +0000632
Chris Lattneraa23fa92006-02-01 22:41:11 +0000633 while (*LastEmitted) {
634 switch (*LastEmitted) {
635 default: {
636 // Not a special case, emit the string section literally.
637 const char *LiteralEnd = LastEmitted+1;
638 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
Chris Lattnera633c3132006-05-05 21:47:05 +0000639 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
Chris Lattneraa23fa92006-02-01 22:41:11 +0000640 ++LiteralEnd;
641 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
642 O.write(LastEmitted, LiteralEnd-LastEmitted);
643 LastEmitted = LiteralEnd;
644 break;
645 }
Chris Lattnera633c3132006-05-05 21:47:05 +0000646 case '\n':
647 ++LastEmitted; // Consume newline character.
648 O << "\n\t"; // Indent code with newline.
649 break;
Chris Lattneraa23fa92006-02-01 22:41:11 +0000650 case '$': {
651 ++LastEmitted; // Consume '$' character.
652 if (*LastEmitted == '$') { // $$ -> $
653 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
654 O << '$';
655 ++LastEmitted; // Consume second '$' character.
656 break;
657 }
658
659 bool HasCurlyBraces = false;
660 if (*LastEmitted == '{') { // ${variable}
661 ++LastEmitted; // Consume '{' character.
662 HasCurlyBraces = true;
663 }
664
665 const char *IDStart = LastEmitted;
666 char *IDEnd;
667 long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
668 if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
669 std::cerr << "Bad $ operand number in inline asm string: '"
670 << AsmStr << "'\n";
671 exit(1);
672 }
673 LastEmitted = IDEnd;
674
Chris Lattner34f74c12006-02-06 22:17:23 +0000675 char Modifier[2] = { 0, 0 };
676
Chris Lattneraa23fa92006-02-01 22:41:11 +0000677 if (HasCurlyBraces) {
Chris Lattner34f74c12006-02-06 22:17:23 +0000678 // If we have curly braces, check for a modifier character. This
679 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
680 if (*LastEmitted == ':') {
681 ++LastEmitted; // Consume ':' character.
682 if (*LastEmitted == 0) {
683 std::cerr << "Bad ${:} expression in inline asm string: '"
684 << AsmStr << "'\n";
685 exit(1);
686 }
687
688 Modifier[0] = *LastEmitted;
689 ++LastEmitted; // Consume modifier character.
690 }
691
Chris Lattneraa23fa92006-02-01 22:41:11 +0000692 if (*LastEmitted != '}') {
693 std::cerr << "Bad ${} expression in inline asm string: '"
694 << AsmStr << "'\n";
695 exit(1);
696 }
697 ++LastEmitted; // Consume '}' character.
698 }
699
700 if ((unsigned)Val >= NumOperands-1) {
701 std::cerr << "Invalid $ operand number in inline asm string: '"
702 << AsmStr << "'\n";
703 exit(1);
704 }
705
Chris Lattner571d9642006-02-23 19:21:04 +0000706 // Okay, we finally have a value number. Ask the target to print this
Chris Lattneraa23fa92006-02-01 22:41:11 +0000707 // operand!
Chris Lattner571d9642006-02-23 19:21:04 +0000708 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
709 unsigned OpNo = 1;
Chris Lattner8f8b5e42006-06-08 18:00:47 +0000710
711 bool Error = false;
712
Chris Lattner571d9642006-02-23 19:21:04 +0000713 // Scan to find the machine operand number for the operand.
Chris Lattner5af3fde2006-02-24 19:50:58 +0000714 for (; Val; --Val) {
Chris Lattner8f8b5e42006-06-08 18:00:47 +0000715 if (OpNo >= MI->getNumOperands()) break;
Chris Lattner5af3fde2006-02-24 19:50:58 +0000716 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
717 OpNo += (OpFlags >> 3) + 1;
718 }
Chris Lattner1d08c652006-02-24 20:21:58 +0000719
Chris Lattner8f8b5e42006-06-08 18:00:47 +0000720 if (OpNo >= MI->getNumOperands()) {
721 Error = true;
Chris Lattner1d08c652006-02-24 20:21:58 +0000722 } else {
Chris Lattner8f8b5e42006-06-08 18:00:47 +0000723 unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
724 ++OpNo; // Skip over the ID number.
725
726 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
727 if ((OpFlags & 7) == 4 /*ADDR MODE*/) {
728 Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
729 Modifier[0] ? Modifier : 0);
730 } else {
731 Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
732 Modifier[0] ? Modifier : 0);
733 }
Chris Lattner1d08c652006-02-24 20:21:58 +0000734 }
735 if (Error) {
Chris Lattneraa23fa92006-02-01 22:41:11 +0000736 std::cerr << "Invalid operand found in inline asm: '"
737 << AsmStr << "'\n";
738 MI->dump();
739 exit(1);
740 }
Chris Lattner571d9642006-02-23 19:21:04 +0000741 }
Chris Lattneraa23fa92006-02-01 22:41:11 +0000742 break;
743 }
744 case '{':
745 ++LastEmitted; // Consume '{' character.
746 if (CurVariant != -1) {
747 std::cerr << "Nested variants found in inline asm string: '"
748 << AsmStr << "'\n";
749 exit(1);
750 }
751 CurVariant = 0; // We're in the first variant now.
752 break;
753 case '|':
754 ++LastEmitted; // consume '|' character.
755 if (CurVariant == -1) {
756 std::cerr << "Found '|' character outside of variant in inline asm "
757 << "string: '" << AsmStr << "'\n";
758 exit(1);
759 }
760 ++CurVariant; // We're in the next variant.
761 break;
762 case '}':
763 ++LastEmitted; // consume '}' character.
764 if (CurVariant == -1) {
765 std::cerr << "Found '}' character outside of variant in inline asm "
766 << "string: '" << AsmStr << "'\n";
767 exit(1);
768 }
769 CurVariant = -1;
770 break;
771 }
772 }
Jim Laskeya6211dc2006-09-06 18:34:40 +0000773 O << "\n\t" << TAI->getInlineAsmEnd() << "\n";
Chris Lattneraa23fa92006-02-01 22:41:11 +0000774}
775
776/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
777/// instruction, using the specified assembler variant. Targets should
778/// overried this to format as appropriate.
779bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner34f74c12006-02-06 22:17:23 +0000780 unsigned AsmVariant, const char *ExtraCode) {
Chris Lattneraa23fa92006-02-01 22:41:11 +0000781 // Target doesn't support this yet!
782 return true;
Chris Lattner061d9e22006-01-27 02:10:10 +0000783}
Chris Lattner1d08c652006-02-24 20:21:58 +0000784
785bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
786 unsigned AsmVariant,
787 const char *ExtraCode) {
788 // Target doesn't support this yet!
789 return true;
790}
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000791
792/// printBasicBlockLabel - This method prints the label for the specified
793/// MachineBasicBlock
Nate Begemanb9d4f832006-05-02 05:37:32 +0000794void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
795 bool printColon,
796 bool printComment) const {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000797 O << TAI->getPrivateGlobalPrefix() << "BB" << FunctionNumber << "_"
Nate Begeman4971ba52006-05-02 17:36:46 +0000798 << MBB->getNumber();
Nate Begemanb9d4f832006-05-02 05:37:32 +0000799 if (printColon)
800 O << ':';
801 if (printComment)
Jim Laskeya6211dc2006-09-06 18:34:40 +0000802 O << '\t' << TAI->getCommentString() << MBB->getBasicBlock()->getName();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000803}
Nate Begeman984c1a42006-08-12 21:29:52 +0000804
805/// printSetLabel - This method prints a set label for the specified
806/// MachineBasicBlock
807void AsmPrinter::printSetLabel(unsigned uid,
808 const MachineBasicBlock *MBB) const {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000809 if (!TAI->getSetDirective())
Nate Begeman984c1a42006-08-12 21:29:52 +0000810 return;
811
Jim Laskeya6211dc2006-09-06 18:34:40 +0000812 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
813 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Nate Begeman984c1a42006-08-12 21:29:52 +0000814 printBasicBlockLabel(MBB, false, false);
Jim Laskeya6211dc2006-09-06 18:34:40 +0000815 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Nate Begeman984c1a42006-08-12 21:29:52 +0000816 << '_' << uid << '\n';
817}
Evan Cheng45fe3bc2006-09-12 21:00:35 +0000818
819/// printDataDirective - This method prints the asm directive for the
820/// specified type.
821void AsmPrinter::printDataDirective(const Type *type) {
822 const TargetData *TD = TM.getTargetData();
823 switch (type->getTypeID()) {
824 case Type::BoolTyID:
825 case Type::UByteTyID: case Type::SByteTyID:
826 O << TAI->getData8bitsDirective();
827 break;
828 case Type::UShortTyID: case Type::ShortTyID:
829 O << TAI->getData16bitsDirective();
830 break;
831 case Type::PointerTyID:
832 if (TD->getPointerSize() == 8) {
833 assert(TAI->getData64bitsDirective() &&
834 "Target cannot handle 64-bit pointer exprs!");
835 O << TAI->getData64bitsDirective();
836 break;
837 }
838 //Fall through for pointer size == int size
839 case Type::UIntTyID: case Type::IntTyID:
840 O << TAI->getData32bitsDirective();
841 break;
842 case Type::ULongTyID: case Type::LongTyID:
843 assert(TAI->getData64bitsDirective() &&
844 "Target cannot handle 64-bit constant exprs!");
845 O << TAI->getData64bitsDirective();
846 break;
847 case Type::FloatTyID: case Type::DoubleTyID:
848 assert (0 && "Should have already output floating point constant.");
849 default:
850 assert (0 && "Can't handle printing this type of thing");
851 break;
852 }
853}