blob: fc0ec701990c2c4cfa05978cf9e2835ae5aa6f8c [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"
Che-Liang Chioudf659632010-11-08 03:06:08 +000018#include "PTXMachineFunctionInfo.h"
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000019#include "PTXTargetMachine.h"
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000020#include "llvm/DerivedTypes.h"
21#include "llvm/Module.h"
Eric Christopher50880d02010-09-18 18:52:28 +000022#include "llvm/ADT/SmallString.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000023#include "llvm/ADT/StringExtras.h"
24#include "llvm/ADT/Twine.h"
Justin Holewinski47997292011-06-24 19:19:18 +000025#include "llvm/Analysis/DebugInfo.h"
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000026#include "llvm/CodeGen/AsmPrinter.h"
Justin Holewinskidf1c8d82011-06-20 15:56:20 +000027#include "llvm/CodeGen/MachineFrameInfo.h"
Eric Christopher50880d02010-09-18 18:52:28 +000028#include "llvm/CodeGen/MachineInstr.h"
Che-Liang Chioufd8978b2011-03-02 03:20:28 +000029#include "llvm/CodeGen/MachineRegisterInfo.h"
Justin Holewinski47997292011-06-24 19:19:18 +000030#include "llvm/MC/MCContext.h"
Eric Christopher50880d02010-09-18 18:52:28 +000031#include "llvm/MC/MCStreamer.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000032#include "llvm/MC/MCSymbol.h"
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000033#include "llvm/Target/Mangler.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000034#include "llvm/Target/TargetLoweringObjectFile.h"
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000035#include "llvm/Target/TargetRegistry.h"
Che-Liang Chiou21d8b9b2010-11-30 10:14:14 +000036#include "llvm/Support/CommandLine.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000037#include "llvm/Support/Debug.h"
38#include "llvm/Support/ErrorHandling.h"
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000039#include "llvm/Support/MathExtras.h"
Justin Holewinski47997292011-06-24 19:19:18 +000040#include "llvm/Support/Path.h"
Che-Liang Chioudf659632010-11-08 03:06:08 +000041#include "llvm/Support/raw_ostream.h"
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000042
43using namespace llvm;
44
45namespace {
Che-Liang Chioudf659632010-11-08 03:06:08 +000046class PTXAsmPrinter : public AsmPrinter {
47public:
48 explicit PTXAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
49 : AsmPrinter(TM, Streamer) {}
Eric Christopher50880d02010-09-18 18:52:28 +000050
Che-Liang Chioudf659632010-11-08 03:06:08 +000051 const char *getPassName() const { return "PTX Assembly Printer"; }
Eric Christopher50880d02010-09-18 18:52:28 +000052
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000053 bool doFinalization(Module &M);
54
Che-Liang Chiou21d8b9b2010-11-30 10:14:14 +000055 virtual void EmitStartOfAsmFile(Module &M);
56
Che-Liang Chioudf659632010-11-08 03:06:08 +000057 virtual bool runOnMachineFunction(MachineFunction &MF);
Che-Liang Chioub48f2c22010-10-19 13:14:40 +000058
Che-Liang Chioudf659632010-11-08 03:06:08 +000059 virtual void EmitFunctionBodyStart();
60 virtual void EmitFunctionBodyEnd() { OutStreamer.EmitRawText(Twine("}")); }
61
62 virtual void EmitInstruction(const MachineInstr *MI);
63
64 void printOperand(const MachineInstr *MI, int opNum, raw_ostream &OS);
Che-Liang Chiou3f8e6172010-11-30 07:34:44 +000065 void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &OS,
66 const char *Modifier = 0);
Che-Liang Chiou8e5d01c2011-02-10 12:01:24 +000067 void printParamOperand(const MachineInstr *MI, int opNum, raw_ostream &OS,
68 const char *Modifier = 0);
Justin Holewinskia5ccb4e2011-06-23 18:10:05 +000069 void printReturnOperand(const MachineInstr *MI, int opNum, raw_ostream &OS,
70 const char *Modifier = 0);
Che-Liang Chiouc2ec0f92011-03-13 17:26:00 +000071 void printPredicateOperand(const MachineInstr *MI, raw_ostream &O);
Che-Liang Chioudf659632010-11-08 03:06:08 +000072
Justin Holewinski4bdd4ed2011-08-09 17:36:31 +000073 void printCall(const MachineInstr *MI, raw_ostream &O);
74
Justin Holewinski47997292011-06-24 19:19:18 +000075 unsigned GetOrCreateSourceID(StringRef FileName,
76 StringRef DirName);
77
Che-Liang Chioudf659632010-11-08 03:06:08 +000078 // autogen'd.
79 void printInstruction(const MachineInstr *MI, raw_ostream &OS);
80 static const char *getRegisterName(unsigned RegNo);
81
82private:
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000083 void EmitVariableDeclaration(const GlobalVariable *gv);
Che-Liang Chioudf659632010-11-08 03:06:08 +000084 void EmitFunctionDeclaration();
Justin Holewinski47997292011-06-24 19:19:18 +000085
86 StringMap<unsigned> SourceIdMap;
Che-Liang Chioudf659632010-11-08 03:06:08 +000087}; // class PTXAsmPrinter
Nick Lewyckyf7a3c502010-09-07 18:14:24 +000088} // namespace
89
Che-Liang Chioudf659632010-11-08 03:06:08 +000090static const char PARAM_PREFIX[] = "__param_";
Justin Holewinskia5ccb4e2011-06-23 18:10:05 +000091static const char RETURN_PREFIX[] = "__ret_";
Che-Liang Chioudf659632010-11-08 03:06:08 +000092
Che-Liang Chiou3f8e6172010-11-30 07:34:44 +000093static const char *getRegisterTypeName(unsigned RegNo) {
Che-Liang Chioufd8978b2011-03-02 03:20:28 +000094#define TEST_REGCLS(cls, clsstr) \
Che-Liang Chioudf659632010-11-08 03:06:08 +000095 if (PTX::cls ## RegisterClass->contains(RegNo)) return # clsstr;
Justin Holewinski1b91bcd2011-06-16 17:49:58 +000096 TEST_REGCLS(RegPred, pred);
Justin Holewinskie0aef2d2011-06-16 17:50:00 +000097 TEST_REGCLS(RegI16, b16);
98 TEST_REGCLS(RegI32, b32);
99 TEST_REGCLS(RegI64, b64);
100 TEST_REGCLS(RegF32, b32);
101 TEST_REGCLS(RegF64, b64);
Che-Liang Chioudf659632010-11-08 03:06:08 +0000102#undef TEST_REGCLS
103
104 llvm_unreachable("Not in any register class!");
105 return NULL;
106}
107
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000108static const char *getStateSpaceName(unsigned addressSpace) {
Che-Liang Chioud34f19f2010-12-30 10:41:27 +0000109 switch (addressSpace) {
110 default: llvm_unreachable("Unknown state space");
111 case PTX::GLOBAL: return "global";
112 case PTX::CONSTANT: return "const";
113 case PTX::LOCAL: return "local";
114 case PTX::PARAMETER: return "param";
115 case PTX::SHARED: return "shared";
116 }
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000117 return NULL;
118}
119
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000120static const char *getTypeName(Type* type) {
Che-Liang Chiouf7172022011-02-28 06:34:09 +0000121 while (true) {
122 switch (type->getTypeID()) {
123 default: llvm_unreachable("Unknown type");
124 case Type::FloatTyID: return ".f32";
Che-Liang Chioufd8978b2011-03-02 03:20:28 +0000125 case Type::DoubleTyID: return ".f64";
126 case Type::IntegerTyID:
127 switch (type->getPrimitiveSizeInBits()) {
128 default: llvm_unreachable("Unknown integer bit-width");
129 case 16: return ".u16";
130 case 32: return ".u32";
131 case 64: return ".u64";
132 }
Che-Liang Chiouf7172022011-02-28 06:34:09 +0000133 case Type::ArrayTyID:
134 case Type::PointerTyID:
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000135 type = dyn_cast<SequentialType>(type)->getElementType();
Che-Liang Chiouf7172022011-02-28 06:34:09 +0000136 break;
137 }
138 }
139 return NULL;
140}
141
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000142bool PTXAsmPrinter::doFinalization(Module &M) {
143 // XXX Temproarily remove global variables so that doFinalization() will not
144 // emit them again (global variables are emitted at beginning).
145
146 Module::GlobalListType &global_list = M.getGlobalList();
147 int i, n = global_list.size();
148 GlobalVariable **gv_array = new GlobalVariable* [n];
149
150 // first, back-up GlobalVariable in gv_array
151 i = 0;
152 for (Module::global_iterator I = global_list.begin(), E = global_list.end();
153 I != E; ++I)
154 gv_array[i++] = &*I;
155
156 // second, empty global_list
157 while (!global_list.empty())
158 global_list.remove(global_list.begin());
159
160 // call doFinalization
161 bool ret = AsmPrinter::doFinalization(M);
162
163 // now we restore global variables
164 for (i = 0; i < n; i ++)
165 global_list.insert(global_list.end(), gv_array[i]);
166
167 delete[] gv_array;
168 return ret;
169}
170
Che-Liang Chiou21d8b9b2010-11-30 10:14:14 +0000171void PTXAsmPrinter::EmitStartOfAsmFile(Module &M)
172{
Che-Liang Chioufd8978b2011-03-02 03:20:28 +0000173 const PTXSubtarget& ST = TM.getSubtarget<PTXSubtarget>();
174
175 OutStreamer.EmitRawText(Twine("\t.version " + ST.getPTXVersionString()));
176 OutStreamer.EmitRawText(Twine("\t.target " + ST.getTargetString() +
Justin Holewinski12785e82011-03-03 13:34:29 +0000177 (ST.supportsDouble() ? ""
178 : ", map_f64_to_f32")));
Justin Holewinskia9c85f92011-06-22 00:43:56 +0000179 // .address_size directive is optional, but it must immediately follow
180 // the .target directive if present within a module
181 if (ST.supportsPTX23()) {
182 std::string addrSize = ST.is64Bit() ? "64" : "32";
183 OutStreamer.EmitRawText(Twine("\t.address_size " + addrSize));
184 }
185
Che-Liang Chiou21d8b9b2010-11-30 10:14:14 +0000186 OutStreamer.AddBlankLine();
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000187
Justin Holewinski47997292011-06-24 19:19:18 +0000188 // Define any .file directives
189 DebugInfoFinder DbgFinder;
190 DbgFinder.processModule(M);
191
192 for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(),
193 E = DbgFinder.compile_unit_end(); I != E; ++I) {
194 DICompileUnit DIUnit(*I);
195 StringRef FN = DIUnit.getFilename();
196 StringRef Dir = DIUnit.getDirectory();
197 GetOrCreateSourceID(FN, Dir);
198 }
199
200 OutStreamer.AddBlankLine();
201
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000202 // declare global variables
203 for (Module::const_global_iterator i = M.global_begin(), e = M.global_end();
204 i != e; ++i)
205 EmitVariableDeclaration(i);
Che-Liang Chiou21d8b9b2010-11-30 10:14:14 +0000206}
207
Che-Liang Chioudf659632010-11-08 03:06:08 +0000208bool PTXAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
209 SetupMachineFunction(MF);
210 EmitFunctionDeclaration();
211 EmitFunctionBody();
212 return false;
213}
214
215void PTXAsmPrinter::EmitFunctionBodyStart() {
216 OutStreamer.EmitRawText(Twine("{"));
217
218 const PTXMachineFunctionInfo *MFI = MF->getInfo<PTXMachineFunctionInfo>();
219
220 // Print local variable definition
221 for (PTXMachineFunctionInfo::reg_iterator
222 i = MFI->localVarRegBegin(), e = MFI->localVarRegEnd(); i != e; ++ i) {
223 unsigned reg = *i;
224
Che-Liang Chiou3f409f72010-11-17 08:08:49 +0000225 std::string def = "\t.reg .";
Che-Liang Chioudf659632010-11-08 03:06:08 +0000226 def += getRegisterTypeName(reg);
227 def += ' ';
228 def += getRegisterName(reg);
229 def += ';';
230 OutStreamer.EmitRawText(Twine(def));
231 }
Justin Holewinskidf1c8d82011-06-20 15:56:20 +0000232
233 const MachineFrameInfo* FrameInfo = MF->getFrameInfo();
Justin Holewinski08d03162011-06-22 16:07:03 +0000234 DEBUG(dbgs() << "Have " << FrameInfo->getNumObjects()
235 << " frame object(s)\n");
Justin Holewinskidf1c8d82011-06-20 15:56:20 +0000236 for (unsigned i = 0, e = FrameInfo->getNumObjects(); i != e; ++i) {
237 DEBUG(dbgs() << "Size of object: " << FrameInfo->getObjectSize(i) << "\n");
Justin Holewinski08d03162011-06-22 16:07:03 +0000238 if (FrameInfo->getObjectSize(i) > 0) {
239 std::string def = "\t.reg .b";
240 def += utostr(FrameInfo->getObjectSize(i)*8); // Convert to bits
241 def += " s";
242 def += utostr(i);
243 def += ";";
244 OutStreamer.EmitRawText(Twine(def));
245 }
Justin Holewinskidf1c8d82011-06-20 15:56:20 +0000246 }
Justin Holewinski4bdd4ed2011-08-09 17:36:31 +0000247
248 unsigned Index = 1;
249 // Print parameter passing params
250 for (PTXMachineFunctionInfo::param_iterator
251 i = MFI->paramBegin(), e = MFI->paramEnd(); i != e; ++i) {
252 std::string def = "\t.param .b";
253 def += utostr(*i);
254 def += " __ret_";
255 def += utostr(Index);
256 Index++;
257 def += ";";
258 OutStreamer.EmitRawText(Twine(def));
259 }
Che-Liang Chioudf659632010-11-08 03:06:08 +0000260}
261
Eric Christopher50880d02010-09-18 18:52:28 +0000262void PTXAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Che-Liang Chiou3608d2a2010-12-01 11:45:53 +0000263 std::string str;
264 str.reserve(64);
265
Che-Liang Chiou3608d2a2010-12-01 11:45:53 +0000266 raw_string_ostream OS(str);
Che-Liang Chiouc2ec0f92011-03-13 17:26:00 +0000267
Justin Holewinski47997292011-06-24 19:19:18 +0000268 DebugLoc DL = MI->getDebugLoc();
269 if (!DL.isUnknown()) {
270
271 const MDNode *S = DL.getScope(MF->getFunction()->getContext());
272
273 // This is taken from DwarfDebug.cpp, which is conveniently not a public
274 // LLVM class.
275 StringRef Fn;
276 StringRef Dir;
277 unsigned Src = 1;
278 if (S) {
279 DIDescriptor Scope(S);
280 if (Scope.isCompileUnit()) {
281 DICompileUnit CU(S);
282 Fn = CU.getFilename();
283 Dir = CU.getDirectory();
284 } else if (Scope.isFile()) {
285 DIFile F(S);
286 Fn = F.getFilename();
287 Dir = F.getDirectory();
288 } else if (Scope.isSubprogram()) {
289 DISubprogram SP(S);
290 Fn = SP.getFilename();
291 Dir = SP.getDirectory();
292 } else if (Scope.isLexicalBlock()) {
293 DILexicalBlock DB(S);
294 Fn = DB.getFilename();
295 Dir = DB.getDirectory();
296 } else
297 assert(0 && "Unexpected scope info");
298
299 Src = GetOrCreateSourceID(Fn, Dir);
300 }
301 OutStreamer.EmitDwarfLocDirective(Src, DL.getLine(), DL.getCol(),
302 0, 0, 0, Fn);
303
304 const MCDwarfLoc& MDL = OutContext.getCurrentDwarfLoc();
305
306 OS << "\t.loc ";
307 OS << utostr(MDL.getFileNum());
308 OS << " ";
309 OS << utostr(MDL.getLine());
310 OS << " ";
311 OS << utostr(MDL.getColumn());
312 OS << "\n";
313 }
314
315
Che-Liang Chiouc2ec0f92011-03-13 17:26:00 +0000316 // Emit predicate
317 printPredicateOperand(MI, OS);
318
319 // Write instruction to str
Justin Holewinski4bdd4ed2011-08-09 17:36:31 +0000320 if (MI->getOpcode() == PTX::CALL) {
321 printCall(MI, OS);
322 } else {
323 printInstruction(MI, OS);
324 }
Che-Liang Chioub48f2c22010-10-19 13:14:40 +0000325 OS << ';';
Che-Liang Chiou3608d2a2010-12-01 11:45:53 +0000326 OS.flush();
Che-Liang Chiou3f409f72010-11-17 08:08:49 +0000327
Che-Liang Chiou3608d2a2010-12-01 11:45:53 +0000328 StringRef strref = StringRef(str);
Che-Liang Chiou3f8e6172010-11-30 07:34:44 +0000329 OutStreamer.EmitRawText(strref);
Che-Liang Chioub48f2c22010-10-19 13:14:40 +0000330}
331
332void PTXAsmPrinter::printOperand(const MachineInstr *MI, int opNum,
333 raw_ostream &OS) {
334 const MachineOperand &MO = MI->getOperand(opNum);
335
336 switch (MO.getType()) {
337 default:
338 llvm_unreachable("<unknown operand type>");
339 break;
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000340 case MachineOperand::MO_GlobalAddress:
341 OS << *Mang->getSymbol(MO.getGlobal());
Che-Liang Chioub48f2c22010-10-19 13:14:40 +0000342 break;
343 case MachineOperand::MO_Immediate:
Justin Holewinski9583a862011-04-28 00:19:50 +0000344 OS << (long) MO.getImm();
Che-Liang Chioub48f2c22010-10-19 13:14:40 +0000345 break;
Che-Liang Chiou88d33672011-03-18 11:08:52 +0000346 case MachineOperand::MO_MachineBasicBlock:
347 OS << *MO.getMBB()->getSymbol();
348 break;
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000349 case MachineOperand::MO_Register:
350 OS << getRegisterName(MO.getReg());
351 break;
Che-Liang Chiouf7172022011-02-28 06:34:09 +0000352 case MachineOperand::MO_FPImmediate:
353 APInt constFP = MO.getFPImm()->getValueAPF().bitcastToAPInt();
Che-Liang Chioufd8978b2011-03-02 03:20:28 +0000354 bool isFloat = MO.getFPImm()->getType()->getTypeID() == Type::FloatTyID;
355 // Emit 0F for 32-bit floats and 0D for 64-bit doubles.
356 if (isFloat) {
357 OS << "0F";
Che-Liang Chiouf7172022011-02-28 06:34:09 +0000358 }
359 else {
Che-Liang Chioufd8978b2011-03-02 03:20:28 +0000360 OS << "0D";
361 }
362 // Emit the encoded floating-point value.
363 if (constFP.getZExtValue() > 0) {
364 OS << constFP.toString(16, false);
365 }
366 else {
367 OS << "00000000";
368 // If We have a double-precision zero, pad to 8-bytes.
369 if (!isFloat) {
370 OS << "00000000";
371 }
Che-Liang Chiouf7172022011-02-28 06:34:09 +0000372 }
373 break;
Che-Liang Chioub48f2c22010-10-19 13:14:40 +0000374 }
Eric Christopher50880d02010-09-18 18:52:28 +0000375}
376
Che-Liang Chiou3f8e6172010-11-30 07:34:44 +0000377void PTXAsmPrinter::printMemOperand(const MachineInstr *MI, int opNum,
378 raw_ostream &OS, const char *Modifier) {
379 printOperand(MI, opNum, OS);
380
381 if (MI->getOperand(opNum+1).isImm() && MI->getOperand(opNum+1).getImm() == 0)
382 return; // don't print "+0"
383
384 OS << "+";
385 printOperand(MI, opNum+1, OS);
386}
387
Che-Liang Chiou8e5d01c2011-02-10 12:01:24 +0000388void PTXAsmPrinter::printParamOperand(const MachineInstr *MI, int opNum,
389 raw_ostream &OS, const char *Modifier) {
390 OS << PARAM_PREFIX << (int) MI->getOperand(opNum).getImm() + 1;
391}
392
Justin Holewinskia5ccb4e2011-06-23 18:10:05 +0000393void PTXAsmPrinter::printReturnOperand(const MachineInstr *MI, int opNum,
394 raw_ostream &OS, const char *Modifier) {
395 OS << RETURN_PREFIX << (int) MI->getOperand(opNum).getImm() + 1;
396}
397
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000398void PTXAsmPrinter::EmitVariableDeclaration(const GlobalVariable *gv) {
399 // Check to see if this is a special global used by LLVM, if so, emit it.
400 if (EmitSpecialLLVMGlobal(gv))
401 return;
402
403 MCSymbol *gvsym = Mang->getSymbol(gv);
404
405 assert(gvsym->isUndefined() && "Cannot define a symbol twice!");
406
407 std::string decl;
408
409 // check if it is defined in some other translation unit
410 if (gv->isDeclaration())
411 decl += ".extern ";
412
413 // state space: e.g., .global
414 decl += ".";
415 decl += getStateSpaceName(gv->getType()->getAddressSpace());
416 decl += " ";
417
418 // alignment (optional)
419 unsigned alignment = gv->getAlignment();
420 if (alignment != 0) {
421 decl += ".align ";
422 decl += utostr(Log2_32(gv->getAlignment()));
423 decl += " ";
424 }
425
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000426
Justin Holewinskiae3ce172011-03-14 15:40:11 +0000427 if (PointerType::classof(gv->getType())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000428 PointerType* pointerTy = dyn_cast<PointerType>(gv->getType());
429 Type* elementTy = pointerTy->getElementType();
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000430
Justin Holewinskiae3ce172011-03-14 15:40:11 +0000431 decl += ".b8 ";
432 decl += gvsym->getName();
433 decl += "[";
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000434
Justin Holewinski9583a862011-04-28 00:19:50 +0000435 if (elementTy->isArrayTy())
436 {
437 assert(elementTy->isArrayTy() && "Only pointers to arrays are supported");
438
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000439 ArrayType* arrayTy = dyn_cast<ArrayType>(elementTy);
Justin Holewinski9583a862011-04-28 00:19:50 +0000440 elementTy = arrayTy->getElementType();
441
442 unsigned numElements = arrayTy->getNumElements();
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000443
Justin Holewinski9583a862011-04-28 00:19:50 +0000444 while (elementTy->isArrayTy()) {
445
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000446 arrayTy = dyn_cast<ArrayType>(elementTy);
Justin Holewinski9583a862011-04-28 00:19:50 +0000447 elementTy = arrayTy->getElementType();
448
449 numElements *= arrayTy->getNumElements();
450 }
451
452 // FIXME: isPrimitiveType() == false for i16?
453 assert(elementTy->isSingleValueType() &&
454 "Non-primitive types are not handled");
455
456 // Compute the size of the array, in bytes.
457 uint64_t arraySize = (elementTy->getPrimitiveSizeInBits() >> 3)
458 * numElements;
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000459
Justin Holewinski9583a862011-04-28 00:19:50 +0000460 decl += utostr(arraySize);
461 }
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000462
Justin Holewinskiae3ce172011-03-14 15:40:11 +0000463 decl += "]";
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000464
Justin Holewinski9583a862011-04-28 00:19:50 +0000465 // handle string constants (assume ConstantArray means string)
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000466
Justin Holewinski9583a862011-04-28 00:19:50 +0000467 if (gv->hasInitializer())
468 {
Jay Foad7d715df2011-06-19 18:37:11 +0000469 const Constant *C = gv->getInitializer();
Justin Holewinski9583a862011-04-28 00:19:50 +0000470 if (const ConstantArray *CA = dyn_cast<ConstantArray>(C))
471 {
472 decl += " = {";
473
474 for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i)
475 {
476 if (i > 0) decl += ",";
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000477
478 decl += "0x" +
479 utohexstr(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
Justin Holewinski9583a862011-04-28 00:19:50 +0000480 }
Justin Holewinskiec3141b2011-06-16 15:17:11 +0000481
Justin Holewinski9583a862011-04-28 00:19:50 +0000482 decl += "}";
483 }
484 }
Justin Holewinskiae3ce172011-03-14 15:40:11 +0000485 }
486 else {
487 // Note: this is currently the fall-through case and most likely generates
488 // incorrect code.
489 decl += getTypeName(gv->getType());
490 decl += " ";
491
492 decl += gvsym->getName();
493
494 if (ArrayType::classof(gv->getType()) ||
495 PointerType::classof(gv->getType()))
496 decl += "[]";
497 }
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000498
499 decl += ";";
500
501 OutStreamer.EmitRawText(Twine(decl));
502
503 OutStreamer.AddBlankLine();
504}
505
Che-Liang Chioudf659632010-11-08 03:06:08 +0000506void PTXAsmPrinter::EmitFunctionDeclaration() {
507 // The function label could have already been emitted if two symbols end up
508 // conflicting due to asm renaming. Detect this and emit an error.
509 if (!CurrentFnSym->isUndefined()) {
510 report_fatal_error("'" + Twine(CurrentFnSym->getName()) +
511 "' label emitted multiple times to assembly file");
512 return;
513 }
514
515 const PTXMachineFunctionInfo *MFI = MF->getInfo<PTXMachineFunctionInfo>();
516 const bool isKernel = MFI->isKernel();
Justin Holewinski67a91842011-06-23 18:10:03 +0000517 const PTXSubtarget& ST = TM.getSubtarget<PTXSubtarget>();
Che-Liang Chioudf659632010-11-08 03:06:08 +0000518
519 std::string decl = isKernel ? ".entry" : ".func";
520
Justin Holewinskia5ccb4e2011-06-23 18:10:05 +0000521 unsigned cnt = 0;
522
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000523 if (!isKernel) {
524 decl += " (";
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000525 for (PTXMachineFunctionInfo::ret_iterator
526 i = MFI->retRegBegin(), e = MFI->retRegEnd(), b = i;
527 i != e; ++i) {
528 if (i != b) {
529 decl += ", ";
530 }
Justin Holewinskid8149c12011-06-23 18:10:13 +0000531 decl += ".reg .";
532 decl += getRegisterTypeName(*i);
533 decl += " ";
534 decl += getRegisterName(*i);
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000535 }
Che-Liang Chioudf659632010-11-08 03:06:08 +0000536 decl += ")";
537 }
538
539 // Print function name
540 decl += " ";
541 decl += CurrentFnSym->getName().str();
542
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000543 decl += " (";
544
Justin Holewinskia5ccb4e2011-06-23 18:10:05 +0000545 cnt = 0;
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000546
547 // Print parameters
548 for (PTXMachineFunctionInfo::reg_iterator
549 i = MFI->argRegBegin(), e = MFI->argRegEnd(), b = i;
550 i != e; ++i) {
551 if (i != b) {
552 decl += ", ";
Che-Liang Chioudf659632010-11-08 03:06:08 +0000553 }
Justin Holewinski35f4fb32011-06-24 16:27:49 +0000554 if (isKernel || ST.useParamSpaceForDeviceArgs()) {
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000555 decl += ".param .b";
556 decl += utostr(*i);
557 decl += " ";
558 decl += PARAM_PREFIX;
559 decl += utostr(++cnt);
560 } else {
561 decl += ".reg .";
562 decl += getRegisterTypeName(*i);
563 decl += " ";
564 decl += getRegisterName(*i);
565 }
Che-Liang Chioudf659632010-11-08 03:06:08 +0000566 }
Justin Holewinskie0aef2d2011-06-16 17:50:00 +0000567 decl += ")";
568
Che-Liang Chioudf659632010-11-08 03:06:08 +0000569 OutStreamer.EmitRawText(Twine(decl));
570}
571
Che-Liang Chiouc2ec0f92011-03-13 17:26:00 +0000572void PTXAsmPrinter::
573printPredicateOperand(const MachineInstr *MI, raw_ostream &O) {
574 int i = MI->findFirstPredOperandIdx();
575 if (i == -1)
576 llvm_unreachable("missing predicate operand");
577
578 unsigned reg = MI->getOperand(i).getReg();
579 int predOp = MI->getOperand(i+1).getImm();
580
581 DEBUG(dbgs() << "predicate: (" << reg << ", " << predOp << ")\n");
582
Che-Liang Chiouf78847e2011-03-14 11:26:01 +0000583 if (reg != PTX::NoRegister) {
Che-Liang Chiouc2ec0f92011-03-13 17:26:00 +0000584 O << '@';
585 if (predOp == PTX::PRED_NEGATE)
586 O << '!';
587 O << getRegisterName(reg);
588 }
589}
590
Justin Holewinski4bdd4ed2011-08-09 17:36:31 +0000591void PTXAsmPrinter::
592printCall(const MachineInstr *MI, raw_ostream &O) {
593
594 O << "\tcall.uni\t";
595
596 const GlobalValue *Address = MI->getOperand(2).getGlobal();
597 O << Address->getName() << ", (";
598
599 // (0,1) : predicate register/flag
600 // (2) : callee
601 for (unsigned i = 3; i < MI->getNumOperands(); ++i) {
602 //const MachineOperand& MO = MI->getOperand(i);
603
604 printReturnOperand(MI, i, O);
605 if (i < MI->getNumOperands()-1) {
606 O << ", ";
607 }
608 }
609
610 O << ")";
611}
612
Justin Holewinski47997292011-06-24 19:19:18 +0000613unsigned PTXAsmPrinter::GetOrCreateSourceID(StringRef FileName,
614 StringRef DirName) {
615 // If FE did not provide a file name, then assume stdin.
616 if (FileName.empty())
617 return GetOrCreateSourceID("<stdin>", StringRef());
618
619 // MCStream expects full path name as filename.
620 if (!DirName.empty() && !sys::path::is_absolute(FileName)) {
621 SmallString<128> FullPathName = DirName;
622 sys::path::append(FullPathName, FileName);
623 // Here FullPathName will be copied into StringMap by GetOrCreateSourceID.
624 return GetOrCreateSourceID(StringRef(FullPathName), StringRef());
625 }
626
627 StringMapEntry<unsigned> &Entry = SourceIdMap.GetOrCreateValue(FileName);
628 if (Entry.getValue())
629 return Entry.getValue();
630
631 unsigned SrcId = SourceIdMap.size();
632 Entry.setValue(SrcId);
633
634 // Print out a .file directive to specify files for .loc directives.
635 OutStreamer.EmitDwarfFileDirective(SrcId, Entry.getKey());
636
637 return SrcId;
638}
639
Eric Christopher50880d02010-09-18 18:52:28 +0000640#include "PTXGenAsmWriter.inc"
641
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000642// Force static initialization.
Eric Christopher50880d02010-09-18 18:52:28 +0000643extern "C" void LLVMInitializePTXAsmPrinter() {
Justin Holewinskie1fee482011-04-20 15:37:17 +0000644 RegisterAsmPrinter<PTXAsmPrinter> X(ThePTX32Target);
645 RegisterAsmPrinter<PTXAsmPrinter> Y(ThePTX64Target);
Nick Lewyckyf7a3c502010-09-07 18:14:24 +0000646}