blob: 45a6afc8587d2c1d8246da005ad06e4ea53d7530 [file] [log] [blame]
Nick Lewyckyf7a3c502010-09-07 18:14:24 +00001//===-- PTXAsmPrinter.cpp - PTX LLVM assembly writer ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PTX assembly language.
12//
13//===----------------------------------------------------------------------===//
14
Che-Liang Chioudf659632010-11-08 03:06:08 +000015#define DEBUG_TYPE "ptx-asm-printer"
16
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000017#include "PTX.h"
Justin Holewinskid8e4ed22011-09-28 14:32:04 +000018#include "PTXAsmPrinter.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000019#include "PTXMachineFunctionInfo.h"
Justin Holewinski27f08fc2011-09-23 14:18:22 +000020#include "PTXParamManager.h"
Justin Holewinski297984d2011-09-22 16:45:40 +000021#include "PTXRegisterInfo.h"
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000022#include "PTXTargetMachine.h"
Justin Holewinski68226a42011-10-09 15:42:02 +000023#include "llvm/Argument.h"
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000024#include "llvm/DerivedTypes.h"
Justin Holewinski68226a42011-10-09 15:42:02 +000025#include "llvm/Function.h"
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000026#include "llvm/Module.h"
Eric Christopher50880d02010-09-18 18:52:28 +000027#include "llvm/ADT/SmallString.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000028#include "llvm/ADT/Twine.h"
Justin Holewinski47997292011-06-24 19:19:18 +000029#include "llvm/Analysis/DebugInfo.h"
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000030#include "llvm/CodeGen/AsmPrinter.h"
Justin Holewinskidf1c8d82011-06-20 15:56:20 +000031#include "llvm/CodeGen/MachineFrameInfo.h"
Eric Christopher50880d02010-09-18 18:52:28 +000032#include "llvm/CodeGen/MachineInstr.h"
Che-Liang Chioufd8978b2011-03-02 03:20:28 +000033#include "llvm/CodeGen/MachineRegisterInfo.h"
Justin Holewinski47997292011-06-24 19:19:18 +000034#include "llvm/MC/MCContext.h"
Justin Holewinskid8e4ed22011-09-28 14:32:04 +000035#include "llvm/MC/MCExpr.h"
36#include "llvm/MC/MCInst.h"
Eric Christopher50880d02010-09-18 18:52:28 +000037#include "llvm/MC/MCStreamer.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000038#include "llvm/MC/MCSymbol.h"
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000039#include "llvm/Target/Mangler.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000040#include "llvm/Target/TargetLoweringObjectFile.h"
Che-Liang Chiou21d8b9b2010-11-30 10:14:14 +000041#include "llvm/Support/CommandLine.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000042#include "llvm/Support/Debug.h"
43#include "llvm/Support/ErrorHandling.h"
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000044#include "llvm/Support/MathExtras.h"
Justin Holewinski47997292011-06-24 19:19:18 +000045#include "llvm/Support/Path.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000046#include "llvm/Support/TargetRegistry.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000047#include "llvm/Support/raw_ostream.h"
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000048
49using namespace llvm;
50
Che-Liang Chioudf659632010-11-08 03:06:08 +000051static const char PARAM_PREFIX[] = "__param_";
Justin Holewinskia5ccb4e2011-06-23 18:10:05 +000052static const char RETURN_PREFIX[] = "__ret_";
Che-Liang Chioudf659632010-11-08 03:06:08 +000053
Justin Holewinski5422a0f2011-09-22 16:45:46 +000054static const char *getRegisterTypeName(unsigned RegNo,
55 const MachineRegisterInfo& MRI) {
56 const TargetRegisterClass *TRC = MRI.getRegClass(RegNo);
57
58#define TEST_REGCLS(cls, clsstr) \
59 if (PTX::cls ## RegisterClass == TRC) return # clsstr;
60
Justin Holewinski1b91bcd2011-06-16 17:49:58 +000061 TEST_REGCLS(RegPred, pred);
Justin Holewinskie0aef2d2011-06-16 17:50:00 +000062 TEST_REGCLS(RegI16, b16);
63 TEST_REGCLS(RegI32, b32);
64 TEST_REGCLS(RegI64, b64);
65 TEST_REGCLS(RegF32, b32);
66 TEST_REGCLS(RegF64, b64);
Che-Liang Chioudf659632010-11-08 03:06:08 +000067#undef TEST_REGCLS
68
69 llvm_unreachable("Not in any register class!");
70 return NULL;
71}
72
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000073static const char *getStateSpaceName(unsigned addressSpace) {
Che-Liang Chioud34f19f2010-12-30 10:41:27 +000074 switch (addressSpace) {
75 default: llvm_unreachable("Unknown state space");
Justin Holewinskif51b7e52011-09-30 14:36:36 +000076 case PTXStateSpace::Global: return "global";
77 case PTXStateSpace::Constant: return "const";
78 case PTXStateSpace::Local: return "local";
79 case PTXStateSpace::Parameter: return "param";
80 case PTXStateSpace::Shared: return "shared";
Che-Liang Chioud34f19f2010-12-30 10:41:27 +000081 }
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000082 return NULL;
83}
84
Chris Lattnerdb125cf2011-07-18 04:54:35 +000085static const char *getTypeName(Type* type) {
Che-Liang Chiouf7172022011-02-28 06:34:09 +000086 while (true) {
87 switch (type->getTypeID()) {
88 default: llvm_unreachable("Unknown type");
89 case Type::FloatTyID: return ".f32";
Che-Liang Chioufd8978b2011-03-02 03:20:28 +000090 case Type::DoubleTyID: return ".f64";
91 case Type::IntegerTyID:
92 switch (type->getPrimitiveSizeInBits()) {
93 default: llvm_unreachable("Unknown integer bit-width");
94 case 16: return ".u16";
95 case 32: return ".u32";
96 case 64: return ".u64";
97 }
Che-Liang Chiouf7172022011-02-28 06:34:09 +000098 case Type::ArrayTyID:
99 case Type::PointerTyID:
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000100 type = dyn_cast<SequentialType>(type)->getElementType();
Che-Liang Chiouf7172022011-02-28 06:34:09 +0000101 break;
102 }
103 }
104 return NULL;
105}
106
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000107bool PTXAsmPrinter::doFinalization(Module &M) {
108 // XXX Temproarily remove global variables so that doFinalization() will not
109 // emit them again (global variables are emitted at beginning).
110
111 Module::GlobalListType &global_list = M.getGlobalList();
112 int i, n = global_list.size();
113 GlobalVariable **gv_array = new GlobalVariable* [n];
114
115 // first, back-up GlobalVariable in gv_array
116 i = 0;
117 for (Module::global_iterator I = global_list.begin(), E = global_list.end();
118 I != E; ++I)
119 gv_array[i++] = &*I;
120
121 // second, empty global_list
122 while (!global_list.empty())
123 global_list.remove(global_list.begin());
124
125 // call doFinalization
126 bool ret = AsmPrinter::doFinalization(M);
127
128 // now we restore global variables
129 for (i = 0; i < n; i ++)
130 global_list.insert(global_list.end(), gv_array[i]);
131
132 delete[] gv_array;
133 return ret;
134}
135
Che-Liang Chiou21d8b9b2010-11-30 10:14:14 +0000136void PTXAsmPrinter::EmitStartOfAsmFile(Module &M)
137{
Che-Liang Chioufd8978b2011-03-02 03:20:28 +0000138 const PTXSubtarget& ST = TM.getSubtarget<PTXSubtarget>();
139
Justin Holewinskied0e4c82011-09-28 14:32:06 +0000140 // Emit the PTX .version and .target attributes
Benjamin Kramer055a6472011-11-07 21:00:43 +0000141 OutStreamer.EmitRawText(Twine("\t.version ") + ST.getPTXVersionString());
142 OutStreamer.EmitRawText(Twine("\t.target ") + ST.getTargetString() +
Justin Holewinski12785e82011-03-03 13:34:29 +0000143 (ST.supportsDouble() ? ""
Benjamin Kramer055a6472011-11-07 21:00:43 +0000144 : ", map_f64_to_f32"));
Justin Holewinskia9c85f92011-06-22 00:43:56 +0000145 // .address_size directive is optional, but it must immediately follow
146 // the .target directive if present within a module
147 if (ST.supportsPTX23()) {
Benjamin Kramer055a6472011-11-07 21:00:43 +0000148 const char *addrSize = ST.is64Bit() ? "64" : "32";
149 OutStreamer.EmitRawText(Twine("\t.address_size ") + addrSize);
Justin Holewinskia9c85f92011-06-22 00:43:56 +0000150 }
151
Che-Liang Chiou21d8b9b2010-11-30 10:14:14 +0000152 OutStreamer.AddBlankLine();
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000153
Justin Holewinski47997292011-06-24 19:19:18 +0000154 // Define any .file directives
155 DebugInfoFinder DbgFinder;
156 DbgFinder.processModule(M);
157
158 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
159 E = DbgFinder.compile_unit_end(); I != E; ++I) {
160 DICompileUnit DIUnit(*I);
161 StringRef FN = DIUnit.getFilename();
162 StringRef Dir = DIUnit.getDirectory();
163 GetOrCreateSourceID(FN, Dir);
164 }
165
166 OutStreamer.AddBlankLine();
167
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000168 // declare global variables
169 for (Module::const_global_iterator i = M.global_begin(), e = M.global_end();
170 i != e; ++i)
171 EmitVariableDeclaration(i);
Che-Liang Chiou21d8b9b2010-11-30 10:14:14 +0000172}
173
Che-Liang Chioudf659632010-11-08 03:06:08 +0000174void PTXAsmPrinter::EmitFunctionBodyStart() {
175 OutStreamer.EmitRawText(Twine("{"));
176
177 const PTXMachineFunctionInfo *MFI = MF->getInfo<PTXMachineFunctionInfo>();
Justin Holewinskie953a642011-09-23 14:31:12 +0000178 const PTXParamManager &PM = MFI->getParamManager();
Che-Liang Chioudf659632010-11-08 03:06:08 +0000179
Justin Holewinski297984d2011-09-22 16:45:40 +0000180 // Print register definitions
Benjamin Kramer055a6472011-11-07 21:00:43 +0000181 SmallString<128> regDefs;
182 raw_svector_ostream os(regDefs);
Justin Holewinski297984d2011-09-22 16:45:40 +0000183 unsigned numRegs;
Che-Liang Chioudf659632010-11-08 03:06:08 +0000184
Justin Holewinski297984d2011-09-22 16:45:40 +0000185 // pred
186 numRegs = MFI->getNumRegistersForClass(PTX::RegPredRegisterClass);
Benjamin Kramer055a6472011-11-07 21:00:43 +0000187 if(numRegs > 0)
188 os << "\t.reg .pred %p<" << numRegs << ">;\n";
Justin Holewinskidf1c8d82011-06-20 15:56:20 +0000189
Justin Holewinski297984d2011-09-22 16:45:40 +0000190 // i16
191 numRegs = MFI->getNumRegistersForClass(PTX::RegI16RegisterClass);
Benjamin Kramer055a6472011-11-07 21:00:43 +0000192 if(numRegs > 0)
193 os << "\t.reg .b16 %rh<" << numRegs << ">;\n";
Justin Holewinski297984d2011-09-22 16:45:40 +0000194
195 // i32
196 numRegs = MFI->getNumRegistersForClass(PTX::RegI32RegisterClass);
Benjamin Kramer055a6472011-11-07 21:00:43 +0000197 if(numRegs > 0)
198 os << "\t.reg .b32 %r<" << numRegs << ">;\n";
Justin Holewinski297984d2011-09-22 16:45:40 +0000199
200 // i64
201 numRegs = MFI->getNumRegistersForClass(PTX::RegI64RegisterClass);
Benjamin Kramer055a6472011-11-07 21:00:43 +0000202 if(numRegs > 0)
203 os << "\t.reg .b64 %rd<" << numRegs << ">;\n";
Justin Holewinski297984d2011-09-22 16:45:40 +0000204
205 // f32
206 numRegs = MFI->getNumRegistersForClass(PTX::RegF32RegisterClass);
Benjamin Kramer055a6472011-11-07 21:00:43 +0000207 if(numRegs > 0)
208 os << "\t.reg .f32 %f<" << numRegs << ">;\n";
Justin Holewinski297984d2011-09-22 16:45:40 +0000209
210 // f64
211 numRegs = MFI->getNumRegistersForClass(PTX::RegF64RegisterClass);
Benjamin Kramer055a6472011-11-07 21:00:43 +0000212 if(numRegs > 0)
213 os << "\t.reg .f64 %fd<" << numRegs << ">;\n";
Justin Holewinski297984d2011-09-22 16:45:40 +0000214
Justin Holewinskie953a642011-09-23 14:31:12 +0000215 // Local params
216 for (PTXParamManager::param_iterator i = PM.local_begin(), e = PM.local_end();
Benjamin Kramer055a6472011-11-07 21:00:43 +0000217 i != e; ++i)
218 os << "\t.param .b" << PM.getParamSize(*i) << ' ' << PM.getParamName(*i)
219 << ";\n";
Justin Holewinskie953a642011-09-23 14:31:12 +0000220
Benjamin Kramer055a6472011-11-07 21:00:43 +0000221 OutStreamer.EmitRawText(os.str());
Justin Holewinski297984d2011-09-22 16:45:40 +0000222
223
Justin Holewinskidf1c8d82011-06-20 15:56:20 +0000224 const MachineFrameInfo* FrameInfo = MF->getFrameInfo();
Justin Holewinski08d03162011-06-22 16:07:03 +0000225 DEBUG(dbgs() << "Have " << FrameInfo->getNumObjects()
226 << " frame object(s)\n");
Justin Holewinskidf1c8d82011-06-20 15:56:20 +0000227 for (unsigned i = 0, e = FrameInfo->getNumObjects(); i != e; ++i) {
228 DEBUG(dbgs() << "Size of object: " << FrameInfo->getObjectSize(i) << "\n");
Justin Holewinski08d03162011-06-22 16:07:03 +0000229 if (FrameInfo->getObjectSize(i) > 0) {
Benjamin Kramer055a6472011-11-07 21:00:43 +0000230 OutStreamer.EmitRawText("\t.local .align " +
231 Twine(FrameInfo->getObjectAlignment(i)) +
232 " .b8 __local" +
233 Twine(i) +
234 "[" +
235 Twine(FrameInfo->getObjectSize(i)) +
236 "];");
Justin Holewinski08d03162011-06-22 16:07:03 +0000237 }
Justin Holewinskidf1c8d82011-06-20 15:56:20 +0000238 }
Justin Holewinski4bdd4ed2011-08-09 17:36:31 +0000239
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000240 //unsigned Index = 1;
Justin Holewinski4bdd4ed2011-08-09 17:36:31 +0000241 // Print parameter passing params
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000242 //for (PTXMachineFunctionInfo::param_iterator
243 // i = MFI->paramBegin(), e = MFI->paramEnd(); i != e; ++i) {
244 // std::string def = "\t.param .b";
245 // def += utostr(*i);
246 // def += " __ret_";
247 // def += utostr(Index);
248 // Index++;
249 // def += ";";
250 // OutStreamer.EmitRawText(Twine(def));
251 //}
Che-Liang Chioudf659632010-11-08 03:06:08 +0000252}
253
Justin Holewinskid8e4ed22011-09-28 14:32:04 +0000254void PTXAsmPrinter::EmitFunctionBodyEnd() {
255 OutStreamer.EmitRawText(Twine("}"));
256}
257
Eric Christopher50880d02010-09-18 18:52:28 +0000258void PTXAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Justin Holewinskid8e4ed22011-09-28 14:32:04 +0000259 MCInst TmpInst;
260 LowerPTXMachineInstrToMCInst(MI, TmpInst, *this);
261 OutStreamer.EmitInstruction(TmpInst);
Che-Liang Chioub48f2c22010-10-19 13:14:40 +0000262}
263
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000264void PTXAsmPrinter::EmitVariableDeclaration(const GlobalVariable *gv) {
265 // Check to see if this is a special global used by LLVM, if so, emit it.
266 if (EmitSpecialLLVMGlobal(gv))
267 return;
268
269 MCSymbol *gvsym = Mang->getSymbol(gv);
270
271 assert(gvsym->isUndefined() && "Cannot define a symbol twice!");
272
Benjamin Kramer055a6472011-11-07 21:00:43 +0000273 SmallString<128> decl;
274 raw_svector_ostream os(decl);
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000275
276 // check if it is defined in some other translation unit
277 if (gv->isDeclaration())
Benjamin Kramer055a6472011-11-07 21:00:43 +0000278 os << ".extern ";
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000279
280 // state space: e.g., .global
Benjamin Kramer055a6472011-11-07 21:00:43 +0000281 os << '.' << getStateSpaceName(gv->getType()->getAddressSpace()) << ' ';
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000282
283 // alignment (optional)
284 unsigned alignment = gv->getAlignment();
Benjamin Kramer055a6472011-11-07 21:00:43 +0000285 if (alignment != 0)
286 os << ".align " << gv->getAlignment() << ' ';
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000287
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000288
Justin Holewinskiae3ce172011-03-14 15:40:11 +0000289 if (PointerType::classof(gv->getType())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000290 PointerType* pointerTy = dyn_cast<PointerType>(gv->getType());
291 Type* elementTy = pointerTy->getElementType();
Benjamin Kramer055a6472011-11-07 21:00:43 +0000292
293 if (elementTy->isArrayTy()) {
Justin Holewinski9583a862011-04-28 00:19:50 +0000294 assert(elementTy->isArrayTy() && "Only pointers to arrays are supported");
295
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000296 ArrayType* arrayTy = dyn_cast<ArrayType>(elementTy);
Justin Holewinski9583a862011-04-28 00:19:50 +0000297 elementTy = arrayTy->getElementType();
298
299 unsigned numElements = arrayTy->getNumElements();
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000300
Justin Holewinski9583a862011-04-28 00:19:50 +0000301 while (elementTy->isArrayTy()) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000302 arrayTy = dyn_cast<ArrayType>(elementTy);
Justin Holewinski9583a862011-04-28 00:19:50 +0000303 elementTy = arrayTy->getElementType();
304
305 numElements *= arrayTy->getNumElements();
306 }
307
308 // FIXME: isPrimitiveType() == false for i16?
309 assert(elementTy->isSingleValueType() &&
Benjamin Kramer055a6472011-11-07 21:00:43 +0000310 "Non-primitive types are not handled");
311
Dan Baileye1f38f22011-11-03 19:24:46 +0000312 // Find the size of the element in bits
313 unsigned elementSize = elementTy->getPrimitiveSizeInBits();
Justin Holewinski9583a862011-04-28 00:19:50 +0000314
Benjamin Kramer055a6472011-11-07 21:00:43 +0000315 os << ".b" << elementSize << ' ' << gvsym->getName()
316 << '[' << numElements << ']';
317 } else {
318 os << ".b8" << gvsym->getName() << "[]";
Dan Baileye1f38f22011-11-03 19:24:46 +0000319 }
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000320
Justin Holewinski9583a862011-04-28 00:19:50 +0000321 // handle string constants (assume ConstantArray means string)
Benjamin Kramer055a6472011-11-07 21:00:43 +0000322 if (gv->hasInitializer()) {
Justin Holewinski297984d2011-09-22 16:45:40 +0000323 const Constant *C = gv->getInitializer();
Benjamin Kramer055a6472011-11-07 21:00:43 +0000324 if (const ConstantArray *CA = dyn_cast<ConstantArray>(C)) {
325 os << " = {";
Justin Holewinski9583a862011-04-28 00:19:50 +0000326
Benjamin Kramer055a6472011-11-07 21:00:43 +0000327 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
328 if (i > 0)
329 os << ',';
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000330
Benjamin Kramer055a6472011-11-07 21:00:43 +0000331 os << "0x";
332 os.write_hex(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
Justin Holewinski9583a862011-04-28 00:19:50 +0000333 }
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000334
Benjamin Kramer055a6472011-11-07 21:00:43 +0000335 os << '}';
Justin Holewinski9583a862011-04-28 00:19:50 +0000336 }
337 }
Benjamin Kramer055a6472011-11-07 21:00:43 +0000338 } else {
Justin Holewinskiae3ce172011-03-14 15:40:11 +0000339 // Note: this is currently the fall-through case and most likely generates
340 // incorrect code.
Benjamin Kramer055a6472011-11-07 21:00:43 +0000341 os << getTypeName(gv->getType()) << ' ' << gvsym->getName();
Justin Holewinskiae3ce172011-03-14 15:40:11 +0000342
Benjamin Kramer055a6472011-11-07 21:00:43 +0000343 if (isa<ArrayType>(gv->getType()) || isa<PointerType>(gv->getType()))
344 os << "[]";
Justin Holewinskiae3ce172011-03-14 15:40:11 +0000345 }
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000346
Benjamin Kramer055a6472011-11-07 21:00:43 +0000347 os << ';';
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000348
Benjamin Kramer055a6472011-11-07 21:00:43 +0000349 OutStreamer.EmitRawText(os.str());
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000350 OutStreamer.AddBlankLine();
351}
352
Justin Holewinskied0e4c82011-09-28 14:32:06 +0000353void PTXAsmPrinter::EmitFunctionEntryLabel() {
Che-Liang Chioudf659632010-11-08 03:06:08 +0000354 // The function label could have already been emitted if two symbols end up
355 // conflicting due to asm renaming. Detect this and emit an error.
356 if (!CurrentFnSym->isUndefined()) {
357 report_fatal_error("'" + Twine(CurrentFnSym->getName()) +
358 "' label emitted multiple times to assembly file");
359 return;
360 }
361
362 const PTXMachineFunctionInfo *MFI = MF->getInfo<PTXMachineFunctionInfo>();
Justin Holewinski27f08fc2011-09-23 14:18:22 +0000363 const PTXParamManager &PM = MFI->getParamManager();
Che-Liang Chioudf659632010-11-08 03:06:08 +0000364 const bool isKernel = MFI->isKernel();
Justin Holewinski67a91842011-06-23 18:10:03 +0000365 const PTXSubtarget& ST = TM.getSubtarget<PTXSubtarget>();
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000366 const MachineRegisterInfo& MRI = MF->getRegInfo();
Che-Liang Chioudf659632010-11-08 03:06:08 +0000367
Benjamin Kramer055a6472011-11-07 21:00:43 +0000368 SmallString<128> decl;
369 raw_svector_ostream os(decl);
370 os << (isKernel ? ".entry" : ".func");
Che-Liang Chioudf659632010-11-08 03:06:08 +0000371
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000372 if (!isKernel) {
Benjamin Kramer055a6472011-11-07 21:00:43 +0000373 os << " (";
Justin Holewinski27f08fc2011-09-23 14:18:22 +0000374 if (ST.useParamSpaceForDeviceArgs()) {
375 for (PTXParamManager::param_iterator i = PM.ret_begin(), e = PM.ret_end(),
376 b = i; i != e; ++i) {
Benjamin Kramer055a6472011-11-07 21:00:43 +0000377 if (i != b)
378 os << ", ";
Justin Holewinski27f08fc2011-09-23 14:18:22 +0000379
Benjamin Kramer055a6472011-11-07 21:00:43 +0000380 os << ".param .b" << PM.getParamSize(*i) << ' ' << PM.getParamName(*i);
Justin Holewinski27f08fc2011-09-23 14:18:22 +0000381 }
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000382 } else {
Justin Holewinskidc0baf92011-09-23 17:15:53 +0000383 for (PTXMachineFunctionInfo::reg_iterator
384 i = MFI->retreg_begin(), e = MFI->retreg_end(), b = i;
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000385 i != e; ++i) {
Benjamin Kramer055a6472011-11-07 21:00:43 +0000386 if (i != b)
387 os << ", ";
388
389 os << ".reg ." << getRegisterTypeName(*i, MRI) << ' '
390 << MFI->getRegisterName(*i);
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000391 }
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000392 }
Benjamin Kramer055a6472011-11-07 21:00:43 +0000393 os << ')';
Che-Liang Chioudf659632010-11-08 03:06:08 +0000394 }
395
396 // Print function name
Benjamin Kramer055a6472011-11-07 21:00:43 +0000397 os << ' ' << CurrentFnSym->getName() << " (";
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000398
Justin Holewinski68226a42011-10-09 15:42:02 +0000399 const Function *F = MF->getFunction();
400
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000401 // Print parameters
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000402 if (isKernel || ST.useParamSpaceForDeviceArgs()) {
Justin Holewinski68226a42011-10-09 15:42:02 +0000403 /*for (PTXParamManager::param_iterator i = PM.arg_begin(), e = PM.arg_end(),
Justin Holewinski27f08fc2011-09-23 14:18:22 +0000404 b = i; i != e; ++i) {
Benjamin Kramer055a6472011-11-07 21:00:43 +0000405 if (i != b)
406 os << ", ";
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000407
Benjamin Kramer055a6472011-11-07 21:00:43 +0000408 os << ".param .b" << PM.getParamSize(*i) << ' ' << PM.getParamName(*i);
Justin Holewinski68226a42011-10-09 15:42:02 +0000409 }*/
410 int Counter = 1;
411 for (Function::const_arg_iterator i = F->arg_begin(), e = F->arg_end(),
412 b = i; i != e; ++i) {
413 if (i != b)
Benjamin Kramer055a6472011-11-07 21:00:43 +0000414 os << ", ";
Justin Holewinski68226a42011-10-09 15:42:02 +0000415 const Type *ArgType = (*i).getType();
Benjamin Kramer055a6472011-11-07 21:00:43 +0000416 os << ".param .b";
Justin Holewinski68226a42011-10-09 15:42:02 +0000417 if (ArgType->isPointerTy()) {
418 if (ST.is64Bit())
Benjamin Kramer055a6472011-11-07 21:00:43 +0000419 os << "64";
Justin Holewinski68226a42011-10-09 15:42:02 +0000420 else
Benjamin Kramer055a6472011-11-07 21:00:43 +0000421 os << "32";
Justin Holewinski68226a42011-10-09 15:42:02 +0000422 } else {
Benjamin Kramer055a6472011-11-07 21:00:43 +0000423 os << ArgType->getPrimitiveSizeInBits();
Justin Holewinski68226a42011-10-09 15:42:02 +0000424 }
425 if (ArgType->isPointerTy() && ST.emitPtrAttribute()) {
426 const PointerType *PtrType = dyn_cast<const PointerType>(ArgType);
Benjamin Kramer055a6472011-11-07 21:00:43 +0000427 os << " .ptr";
Justin Holewinski68226a42011-10-09 15:42:02 +0000428 switch (PtrType->getAddressSpace()) {
429 default:
430 llvm_unreachable("Unknown address space in argument");
431 case PTXStateSpace::Global:
Benjamin Kramer055a6472011-11-07 21:00:43 +0000432 os << " .global";
Justin Holewinski68226a42011-10-09 15:42:02 +0000433 break;
434 case PTXStateSpace::Shared:
Benjamin Kramer055a6472011-11-07 21:00:43 +0000435 os << " .shared";
Justin Holewinski68226a42011-10-09 15:42:02 +0000436 break;
437 }
438 }
Benjamin Kramer055a6472011-11-07 21:00:43 +0000439 os << " __param_" << Counter++;
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000440 }
441 } else {
442 for (PTXMachineFunctionInfo::reg_iterator
Justin Holewinskidc0baf92011-09-23 17:15:53 +0000443 i = MFI->argreg_begin(), e = MFI->argreg_end(), b = i;
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000444 i != e; ++i) {
Benjamin Kramer055a6472011-11-07 21:00:43 +0000445 if (i != b)
446 os << ", ";
Justin Holewinski5422a0f2011-09-22 16:45:46 +0000447
Benjamin Kramer055a6472011-11-07 21:00:43 +0000448 os << ".reg ." << getRegisterTypeName(*i, MRI) << ' '
449 << MFI->getRegisterName(*i);
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000450 }
Che-Liang Chioudf659632010-11-08 03:06:08 +0000451 }
Benjamin Kramer055a6472011-11-07 21:00:43 +0000452 os << ')';
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000453
Benjamin Kramer055a6472011-11-07 21:00:43 +0000454 OutStreamer.EmitRawText(os.str());
Che-Liang Chioudf659632010-11-08 03:06:08 +0000455}
456
Justin Holewinski47997292011-06-24 19:19:18 +0000457unsigned PTXAsmPrinter::GetOrCreateSourceID(StringRef FileName,
458 StringRef DirName) {
459 // If FE did not provide a file name, then assume stdin.
460 if (FileName.empty())
461 return GetOrCreateSourceID("<stdin>", StringRef());
462
463 // MCStream expects full path name as filename.
464 if (!DirName.empty() && !sys::path::is_absolute(FileName)) {
465 SmallString<128> FullPathName = DirName;
466 sys::path::append(FullPathName, FileName);
467 // Here FullPathName will be copied into StringMap by GetOrCreateSourceID.
468 return GetOrCreateSourceID(StringRef(FullPathName), StringRef());
469 }
470
471 StringMapEntry<unsigned> &Entry = SourceIdMap.GetOrCreateValue(FileName);
472 if (Entry.getValue())
473 return Entry.getValue();
474
475 unsigned SrcId = SourceIdMap.size();
476 Entry.setValue(SrcId);
477
478 // Print out a .file directive to specify files for .loc directives.
Nick Lewycky44d798d2011-10-17 23:05:28 +0000479 OutStreamer.EmitDwarfFileDirective(SrcId, "", Entry.getKey());
Justin Holewinski47997292011-06-24 19:19:18 +0000480
481 return SrcId;
482}
483
Justin Holewinskid8e4ed22011-09-28 14:32:04 +0000484MCOperand PTXAsmPrinter::GetSymbolRef(const MachineOperand &MO,
485 const MCSymbol *Symbol) {
486 const MCExpr *Expr;
487 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None, OutContext);
488 return MCOperand::CreateExpr(Expr);
489}
490
Justin Holewinskif51b7e52011-09-30 14:36:36 +0000491MCOperand PTXAsmPrinter::lowerOperand(const MachineOperand &MO) {
492 MCOperand MCOp;
Justin Holewinskid8e4ed22011-09-28 14:32:04 +0000493 const PTXMachineFunctionInfo *MFI = MF->getInfo<PTXMachineFunctionInfo>();
494 const MCExpr *Expr;
495 const char *RegSymbolName;
496 switch (MO.getType()) {
497 default:
498 llvm_unreachable("Unknown operand type");
499 case MachineOperand::MO_Register:
500 // We create register operands as symbols, since the PTXInstPrinter class
501 // has no way to map virtual registers back to a name without some ugly
502 // hacks.
503 // FIXME: Figure out a better way to handle virtual register naming.
504 RegSymbolName = MFI->getRegisterName(MO.getReg());
505 Expr = MCSymbolRefExpr::Create(RegSymbolName, MCSymbolRefExpr::VK_None,
506 OutContext);
507 MCOp = MCOperand::CreateExpr(Expr);
508 break;
509 case MachineOperand::MO_Immediate:
510 MCOp = MCOperand::CreateImm(MO.getImm());
511 break;
512 case MachineOperand::MO_MachineBasicBlock:
513 MCOp = MCOperand::CreateExpr(MCSymbolRefExpr::Create(
514 MO.getMBB()->getSymbol(), OutContext));
515 break;
516 case MachineOperand::MO_GlobalAddress:
517 MCOp = GetSymbolRef(MO, Mang->getSymbol(MO.getGlobal()));
518 break;
519 case MachineOperand::MO_ExternalSymbol:
520 MCOp = GetSymbolRef(MO, GetExternalSymbolSymbol(MO.getSymbolName()));
521 break;
522 case MachineOperand::MO_FPImmediate:
523 APFloat Val = MO.getFPImm()->getValueAPF();
524 bool ignored;
525 Val.convert(APFloat::IEEEdouble, APFloat::rmTowardZero, &ignored);
526 MCOp = MCOperand::CreateFPImm(Val.convertToDouble());
527 break;
528 }
529
Justin Holewinskif51b7e52011-09-30 14:36:36 +0000530 return MCOp;
Justin Holewinskid8e4ed22011-09-28 14:32:04 +0000531}
Eric Christopher50880d02010-09-18 18:52:28 +0000532
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000533// Force static initialization.
Eric Christopher50880d02010-09-18 18:52:28 +0000534extern "C" void LLVMInitializePTXAsmPrinter() {
Justin Holewinskie1fee482011-04-20 15:37:17 +0000535 RegisterAsmPrinter<PTXAsmPrinter> X(ThePTX32Target);
536 RegisterAsmPrinter<PTXAsmPrinter> Y(ThePTX64Target);
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000537}