blob: 34de7bbd8a6a418765206f60afe831875ce78c7e [file] [log] [blame]
Justin Holewinskiae556d32012-05-04 20:18:50 +00001//===-- NVPTXAsmPrinter.cpp - NVPTX 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 NVPTX assembly language.
12//
13//===----------------------------------------------------------------------===//
14
Bill Wendlinge38859d2012-06-28 00:05:13 +000015#include "NVPTXAsmPrinter.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000016#include "InstPrinter/NVPTXInstPrinter.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "MCTargetDesc/NVPTXMCAsmInfo.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000018#include "NVPTX.h"
19#include "NVPTXInstrInfo.h"
Justin Holewinski30d56a72014-04-09 15:39:15 +000020#include "NVPTXMachineFunctionInfo.h"
Justin Holewinskia2a63d22013-08-06 14:13:27 +000021#include "NVPTXMCExpr.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "NVPTXRegisterInfo.h"
23#include "NVPTXTargetMachine.h"
24#include "NVPTXUtilities.h"
25#include "cl_common_defines.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000026#include "llvm/ADT/StringExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000027#include "llvm/Analysis/ConstantFolding.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000028#include "llvm/CodeGen/Analysis.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
30#include "llvm/CodeGen/MachineModuleInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000032#include "llvm/IR/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/DerivedTypes.h"
34#include "llvm/IR/Function.h"
35#include "llvm/IR/GlobalVariable.h"
Rafael Espindola894843c2014-01-07 21:19:40 +000036#include "llvm/IR/Mangler.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000037#include "llvm/IR/Module.h"
38#include "llvm/IR/Operator.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000039#include "llvm/MC/MCStreamer.h"
40#include "llvm/MC/MCSymbol.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000041#include "llvm/Support/CommandLine.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000042#include "llvm/Support/ErrorHandling.h"
43#include "llvm/Support/FormattedStream.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000044#include "llvm/Support/Path.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000045#include "llvm/Support/TargetRegistry.h"
46#include "llvm/Support/TimeValue.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000047#include "llvm/Target/TargetLoweringObjectFile.h"
Bill Wendlinge38859d2012-06-28 00:05:13 +000048#include <sstream>
Justin Holewinskiae556d32012-05-04 20:18:50 +000049using namespace llvm;
50
Justin Holewinskiae556d32012-05-04 20:18:50 +000051#define DEPOTNAME "__local_depot"
52
53static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000054EmitLineNumbers("nvptx-emit-line-numbers", cl::Hidden,
Justin Holewinskiae556d32012-05-04 20:18:50 +000055 cl::desc("NVPTX Specific: Emit Line numbers even without -G"),
56 cl::init(true));
57
Benjamin Kramer7ad41002013-10-27 11:31:46 +000058static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000059InterleaveSrc("nvptx-emit-src", cl::ZeroOrMore, cl::Hidden,
Justin Holewinski0497ab12013-03-30 14:29:21 +000060 cl::desc("NVPTX Specific: Emit source line in ptx file"),
Benjamin Kramer7ad41002013-10-27 11:31:46 +000061 cl::init(false));
Justin Holewinskiae556d32012-05-04 20:18:50 +000062
Justin Holewinski2c5ac702012-11-16 21:03:51 +000063namespace {
64/// DiscoverDependentGlobals - Return a set of GlobalVariables on which \p V
65/// depends.
Justin Holewinski01f89f02013-05-20 12:13:32 +000066void DiscoverDependentGlobals(const Value *V,
67 DenseSet<const GlobalVariable *> &Globals) {
68 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
Justin Holewinski2c5ac702012-11-16 21:03:51 +000069 Globals.insert(GV);
70 else {
Justin Holewinski01f89f02013-05-20 12:13:32 +000071 if (const User *U = dyn_cast<User>(V)) {
Justin Holewinski2c5ac702012-11-16 21:03:51 +000072 for (unsigned i = 0, e = U->getNumOperands(); i != e; ++i) {
73 DiscoverDependentGlobals(U->getOperand(i), Globals);
74 }
75 }
76 }
77}
Justin Holewinskiae556d32012-05-04 20:18:50 +000078
Justin Holewinski2c5ac702012-11-16 21:03:51 +000079/// VisitGlobalVariableForEmission - Add \p GV to the list of GlobalVariable
80/// instances to be emitted, but only after any dependents have been added
81/// first.
Justin Holewinski0497ab12013-03-30 14:29:21 +000082void VisitGlobalVariableForEmission(
Justin Holewinski01f89f02013-05-20 12:13:32 +000083 const GlobalVariable *GV, SmallVectorImpl<const GlobalVariable *> &Order,
84 DenseSet<const GlobalVariable *> &Visited,
85 DenseSet<const GlobalVariable *> &Visiting) {
Justin Holewinski2c5ac702012-11-16 21:03:51 +000086 // Have we already visited this one?
Justin Holewinski0497ab12013-03-30 14:29:21 +000087 if (Visited.count(GV))
88 return;
Justin Holewinski2c5ac702012-11-16 21:03:51 +000089
90 // Do we have a circular dependency?
91 if (Visiting.count(GV))
92 report_fatal_error("Circular dependency found in global variable set");
93
94 // Start visiting this global
95 Visiting.insert(GV);
96
97 // Make sure we visit all dependents first
Justin Holewinski01f89f02013-05-20 12:13:32 +000098 DenseSet<const GlobalVariable *> Others;
Justin Holewinski2c5ac702012-11-16 21:03:51 +000099 for (unsigned i = 0, e = GV->getNumOperands(); i != e; ++i)
100 DiscoverDependentGlobals(GV->getOperand(i), Others);
Justin Holewinski0497ab12013-03-30 14:29:21 +0000101
Justin Holewinski01f89f02013-05-20 12:13:32 +0000102 for (DenseSet<const GlobalVariable *>::iterator I = Others.begin(),
103 E = Others.end();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000104 I != E; ++I)
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000105 VisitGlobalVariableForEmission(*I, Order, Visited, Visiting);
106
107 // Now we can visit ourself
108 Order.push_back(GV);
109 Visited.insert(GV);
110 Visiting.erase(GV);
111}
112}
Justin Holewinskiae556d32012-05-04 20:18:50 +0000113
114// @TODO: This is a copy from AsmPrinter.cpp. The function is static, so we
115// cannot just link to the existing version.
116/// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
117///
118using namespace nvptx;
119const MCExpr *nvptx::LowerConstant(const Constant *CV, AsmPrinter &AP) {
120 MCContext &Ctx = AP.OutContext;
121
122 if (CV->isNullValue() || isa<UndefValue>(CV))
123 return MCConstantExpr::Create(0, Ctx);
124
125 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
126 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
127
128 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
Rafael Espindola79858aa2013-10-29 17:07:16 +0000129 return MCSymbolRefExpr::Create(AP.getSymbol(GV), Ctx);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000130
131 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
132 return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
133
134 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
Craig Topper062a2ba2014-04-25 05:30:21 +0000135 if (!CE)
Justin Holewinskiae556d32012-05-04 20:18:50 +0000136 llvm_unreachable("Unknown constant value to lower!");
137
Justin Holewinskiae556d32012-05-04 20:18:50 +0000138 switch (CE->getOpcode()) {
139 default:
140 // If the code isn't optimized, there may be outstanding folding
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000141 // opportunities. Attempt to fold the expression using DataLayout as a
Justin Holewinskiae556d32012-05-04 20:18:50 +0000142 // last resort before giving up.
Justin Holewinski0497ab12013-03-30 14:29:21 +0000143 if (Constant *C = ConstantFoldConstantExpression(CE, AP.TM.getDataLayout()))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000144 if (C != CE)
145 return LowerConstant(C, AP);
146
147 // Otherwise report the problem to the user.
148 {
Alp Tokere69170a2014-06-26 22:52:05 +0000149 std::string S;
150 raw_string_ostream OS(S);
Justin Holewinski0497ab12013-03-30 14:29:21 +0000151 OS << "Unsupported expression in static initializer: ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000152 CE->printAsOperand(OS, /*PrintType=*/ false,
Craig Topper062a2ba2014-04-25 05:30:21 +0000153 !AP.MF ? nullptr : AP.MF->getFunction()->getParent());
Justin Holewinski0497ab12013-03-30 14:29:21 +0000154 report_fatal_error(OS.str());
Justin Holewinskiae556d32012-05-04 20:18:50 +0000155 }
Justin Holewinski9d852a82014-04-09 15:39:11 +0000156 case Instruction::AddrSpaceCast: {
157 // Strip any addrspace(1)->addrspace(0) addrspace casts. These will be
158 // handled by the generic() logic in the MCExpr printer
159 PointerType *DstTy = cast<PointerType>(CE->getType());
160 PointerType *SrcTy = cast<PointerType>(CE->getOperand(0)->getType());
161 if (SrcTy->getAddressSpace() == 1 && DstTy->getAddressSpace() == 0) {
162 return LowerConstant(cast<const Constant>(CE->getOperand(0)), AP);
163 }
164 std::string S;
165 raw_string_ostream OS(S);
166 OS << "Unsupported expression in static initializer: ";
167 CE->printAsOperand(OS, /*PrintType=*/ false,
Craig Topper062a2ba2014-04-25 05:30:21 +0000168 !AP.MF ? nullptr : AP.MF->getFunction()->getParent());
Justin Holewinski9d852a82014-04-09 15:39:11 +0000169 report_fatal_error(OS.str());
170 }
Justin Holewinskiae556d32012-05-04 20:18:50 +0000171 case Instruction::GetElementPtr: {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000172 const DataLayout &TD = *AP.TM.getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000173 // Generate a symbolic expression for the byte address
Nuno Lopesb6ad9822012-12-30 16:25:48 +0000174 APInt OffsetAI(TD.getPointerSizeInBits(), 0);
175 cast<GEPOperator>(CE)->accumulateConstantOffset(TD, OffsetAI);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000176
177 const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
Nuno Lopesb6ad9822012-12-30 16:25:48 +0000178 if (!OffsetAI)
Justin Holewinskiae556d32012-05-04 20:18:50 +0000179 return Base;
180
Nuno Lopesb6ad9822012-12-30 16:25:48 +0000181 int64_t Offset = OffsetAI.getSExtValue();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000182 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
183 Ctx);
184 }
185
186 case Instruction::Trunc:
187 // We emit the value and depend on the assembler to truncate the generated
188 // expression properly. This is important for differences between
189 // blockaddress labels. Since the two labels are in the same function, it
190 // is reasonable to treat their delta as a 32-bit value.
Justin Holewinski0497ab12013-03-30 14:29:21 +0000191 // FALL THROUGH.
Justin Holewinskiae556d32012-05-04 20:18:50 +0000192 case Instruction::BitCast:
193 return LowerConstant(CE->getOperand(0), AP);
194
195 case Instruction::IntToPtr: {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000196 const DataLayout &TD = *AP.TM.getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000197 // Handle casts to pointers by changing them into casts to the appropriate
198 // integer type. This promotes constant folding and simplifies this code.
199 Constant *Op = CE->getOperand(0);
Chandler Carruth7ec50852012-11-01 08:07:29 +0000200 Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
Justin Holewinski0497ab12013-03-30 14:29:21 +0000201 false /*ZExt*/);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000202 return LowerConstant(Op, AP);
203 }
204
205 case Instruction::PtrToInt: {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000206 const DataLayout &TD = *AP.TM.getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000207 // Support only foldable casts to/from pointers that can be eliminated by
208 // changing the pointer to the appropriately sized integer type.
209 Constant *Op = CE->getOperand(0);
210 Type *Ty = CE->getType();
211
212 const MCExpr *OpExpr = LowerConstant(Op, AP);
213
214 // We can emit the pointer value into this slot if the slot is an
215 // integer slot equal to the size of the pointer.
216 if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
217 return OpExpr;
218
219 // Otherwise the pointer is smaller than the resultant integer, mask off
220 // the high bits so we are sure to get a proper truncation if the input is
221 // a constant expr.
222 unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
Justin Holewinski0497ab12013-03-30 14:29:21 +0000223 const MCExpr *MaskExpr =
224 MCConstantExpr::Create(~0ULL >> (64 - InBits), Ctx);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000225 return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
226 }
227
Justin Holewinski0497ab12013-03-30 14:29:21 +0000228 // The MC library also has a right-shift operator, but it isn't consistently
Justin Holewinskiae556d32012-05-04 20:18:50 +0000229 // signed or unsigned between different targets.
230 case Instruction::Add:
231 case Instruction::Sub:
232 case Instruction::Mul:
233 case Instruction::SDiv:
234 case Instruction::SRem:
235 case Instruction::Shl:
236 case Instruction::And:
237 case Instruction::Or:
238 case Instruction::Xor: {
239 const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
240 const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
241 switch (CE->getOpcode()) {
Justin Holewinski0497ab12013-03-30 14:29:21 +0000242 default:
243 llvm_unreachable("Unknown binary operator constant cast expr");
244 case Instruction::Add:
245 return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
246 case Instruction::Sub:
247 return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
248 case Instruction::Mul:
249 return MCBinaryExpr::CreateMul(LHS, RHS, Ctx);
250 case Instruction::SDiv:
251 return MCBinaryExpr::CreateDiv(LHS, RHS, Ctx);
252 case Instruction::SRem:
253 return MCBinaryExpr::CreateMod(LHS, RHS, Ctx);
254 case Instruction::Shl:
255 return MCBinaryExpr::CreateShl(LHS, RHS, Ctx);
256 case Instruction::And:
257 return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
258 case Instruction::Or:
259 return MCBinaryExpr::CreateOr(LHS, RHS, Ctx);
260 case Instruction::Xor:
261 return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000262 }
263 }
264 }
265}
266
Justin Holewinski0497ab12013-03-30 14:29:21 +0000267void NVPTXAsmPrinter::emitLineNumberAsDotLoc(const MachineInstr &MI) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000268 if (!EmitLineNumbers)
269 return;
270 if (ignoreLoc(MI))
271 return;
272
273 DebugLoc curLoc = MI.getDebugLoc();
274
275 if (prevDebugLoc.isUnknown() && curLoc.isUnknown())
276 return;
277
278 if (prevDebugLoc == curLoc)
279 return;
280
281 prevDebugLoc = curLoc;
282
283 if (curLoc.isUnknown())
284 return;
285
Justin Holewinskiae556d32012-05-04 20:18:50 +0000286 const MachineFunction *MF = MI.getParent()->getParent();
287 //const TargetMachine &TM = MF->getTarget();
288
289 const LLVMContext &ctx = MF->getFunction()->getContext();
290 DIScope Scope(curLoc.getScope(ctx));
291
Manman Ren983a16c2013-06-28 05:43:10 +0000292 assert((!Scope || Scope.isScope()) &&
293 "Scope of a DebugLoc should be null or a DIScope.");
294 if (!Scope)
295 return;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000296
297 StringRef fileName(Scope.getFilename());
298 StringRef dirName(Scope.getDirectory());
299 SmallString<128> FullPathName = dirName;
300 if (!dirName.empty() && !sys::path::is_absolute(fileName)) {
301 sys::path::append(FullPathName, fileName);
302 fileName = FullPathName.str();
303 }
304
305 if (filenameMap.find(fileName.str()) == filenameMap.end())
306 return;
307
Justin Holewinskiae556d32012-05-04 20:18:50 +0000308 // Emit the line from the source file.
Benjamin Kramer7ad41002013-10-27 11:31:46 +0000309 if (InterleaveSrc)
Justin Holewinskiae556d32012-05-04 20:18:50 +0000310 this->emitSrcInText(fileName.str(), curLoc.getLine());
311
312 std::stringstream temp;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000313 temp << "\t.loc " << filenameMap[fileName.str()] << " " << curLoc.getLine()
314 << " " << curLoc.getCol();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000315 OutStreamer.EmitRawText(Twine(temp.str().c_str()));
316}
317
318void NVPTXAsmPrinter::EmitInstruction(const MachineInstr *MI) {
319 SmallString<128> Str;
320 raw_svector_ostream OS(Str);
321 if (nvptxSubtarget.getDrvInterface() == NVPTX::CUDA)
322 emitLineNumberAsDotLoc(*MI);
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000323
324 MCInst Inst;
325 lowerToMCInst(MI, Inst);
David Woodhousee6c13e42014-01-28 23:12:42 +0000326 EmitToStreamer(OutStreamer, Inst);
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000327}
328
Justin Holewinski30d56a72014-04-09 15:39:15 +0000329// Handle symbol backtracking for targets that do not support image handles
330bool NVPTXAsmPrinter::lowerImageHandleOperand(const MachineInstr *MI,
331 unsigned OpNo, MCOperand &MCOp) {
332 const MachineOperand &MO = MI->getOperand(OpNo);
333
334 switch (MI->getOpcode()) {
335 default: return false;
336 case NVPTX::TEX_1D_F32_I32:
337 case NVPTX::TEX_1D_F32_F32:
338 case NVPTX::TEX_1D_F32_F32_LEVEL:
339 case NVPTX::TEX_1D_F32_F32_GRAD:
340 case NVPTX::TEX_1D_I32_I32:
341 case NVPTX::TEX_1D_I32_F32:
342 case NVPTX::TEX_1D_I32_F32_LEVEL:
343 case NVPTX::TEX_1D_I32_F32_GRAD:
344 case NVPTX::TEX_1D_ARRAY_F32_I32:
345 case NVPTX::TEX_1D_ARRAY_F32_F32:
346 case NVPTX::TEX_1D_ARRAY_F32_F32_LEVEL:
347 case NVPTX::TEX_1D_ARRAY_F32_F32_GRAD:
348 case NVPTX::TEX_1D_ARRAY_I32_I32:
349 case NVPTX::TEX_1D_ARRAY_I32_F32:
350 case NVPTX::TEX_1D_ARRAY_I32_F32_LEVEL:
351 case NVPTX::TEX_1D_ARRAY_I32_F32_GRAD:
352 case NVPTX::TEX_2D_F32_I32:
353 case NVPTX::TEX_2D_F32_F32:
354 case NVPTX::TEX_2D_F32_F32_LEVEL:
355 case NVPTX::TEX_2D_F32_F32_GRAD:
356 case NVPTX::TEX_2D_I32_I32:
357 case NVPTX::TEX_2D_I32_F32:
358 case NVPTX::TEX_2D_I32_F32_LEVEL:
359 case NVPTX::TEX_2D_I32_F32_GRAD:
360 case NVPTX::TEX_2D_ARRAY_F32_I32:
361 case NVPTX::TEX_2D_ARRAY_F32_F32:
362 case NVPTX::TEX_2D_ARRAY_F32_F32_LEVEL:
363 case NVPTX::TEX_2D_ARRAY_F32_F32_GRAD:
364 case NVPTX::TEX_2D_ARRAY_I32_I32:
365 case NVPTX::TEX_2D_ARRAY_I32_F32:
366 case NVPTX::TEX_2D_ARRAY_I32_F32_LEVEL:
367 case NVPTX::TEX_2D_ARRAY_I32_F32_GRAD:
368 case NVPTX::TEX_3D_F32_I32:
369 case NVPTX::TEX_3D_F32_F32:
370 case NVPTX::TEX_3D_F32_F32_LEVEL:
371 case NVPTX::TEX_3D_F32_F32_GRAD:
372 case NVPTX::TEX_3D_I32_I32:
373 case NVPTX::TEX_3D_I32_F32:
374 case NVPTX::TEX_3D_I32_F32_LEVEL:
375 case NVPTX::TEX_3D_I32_F32_GRAD:
376 {
377 // This is a texture fetch, so operand 4 is a texref and operand 5 is
378 // a samplerref
379 if (OpNo == 4) {
380 lowerImageHandleSymbol(MO.getImm(), MCOp);
381 return true;
382 }
383 if (OpNo == 5) {
384 lowerImageHandleSymbol(MO.getImm(), MCOp);
385 return true;
386 }
387
388 return false;
389 }
390 case NVPTX::SULD_1D_I8_TRAP:
391 case NVPTX::SULD_1D_I16_TRAP:
392 case NVPTX::SULD_1D_I32_TRAP:
393 case NVPTX::SULD_1D_ARRAY_I8_TRAP:
394 case NVPTX::SULD_1D_ARRAY_I16_TRAP:
395 case NVPTX::SULD_1D_ARRAY_I32_TRAP:
396 case NVPTX::SULD_2D_I8_TRAP:
397 case NVPTX::SULD_2D_I16_TRAP:
398 case NVPTX::SULD_2D_I32_TRAP:
399 case NVPTX::SULD_2D_ARRAY_I8_TRAP:
400 case NVPTX::SULD_2D_ARRAY_I16_TRAP:
401 case NVPTX::SULD_2D_ARRAY_I32_TRAP:
402 case NVPTX::SULD_3D_I8_TRAP:
403 case NVPTX::SULD_3D_I16_TRAP:
404 case NVPTX::SULD_3D_I32_TRAP: {
405 // This is a V1 surface load, so operand 1 is a surfref
406 if (OpNo == 1) {
407 lowerImageHandleSymbol(MO.getImm(), MCOp);
408 return true;
409 }
410
411 return false;
412 }
413 case NVPTX::SULD_1D_V2I8_TRAP:
414 case NVPTX::SULD_1D_V2I16_TRAP:
415 case NVPTX::SULD_1D_V2I32_TRAP:
416 case NVPTX::SULD_1D_ARRAY_V2I8_TRAP:
417 case NVPTX::SULD_1D_ARRAY_V2I16_TRAP:
418 case NVPTX::SULD_1D_ARRAY_V2I32_TRAP:
419 case NVPTX::SULD_2D_V2I8_TRAP:
420 case NVPTX::SULD_2D_V2I16_TRAP:
421 case NVPTX::SULD_2D_V2I32_TRAP:
422 case NVPTX::SULD_2D_ARRAY_V2I8_TRAP:
423 case NVPTX::SULD_2D_ARRAY_V2I16_TRAP:
424 case NVPTX::SULD_2D_ARRAY_V2I32_TRAP:
425 case NVPTX::SULD_3D_V2I8_TRAP:
426 case NVPTX::SULD_3D_V2I16_TRAP:
427 case NVPTX::SULD_3D_V2I32_TRAP: {
428 // This is a V2 surface load, so operand 2 is a surfref
429 if (OpNo == 2) {
430 lowerImageHandleSymbol(MO.getImm(), MCOp);
431 return true;
432 }
433
434 return false;
435 }
436 case NVPTX::SULD_1D_V4I8_TRAP:
437 case NVPTX::SULD_1D_V4I16_TRAP:
438 case NVPTX::SULD_1D_V4I32_TRAP:
439 case NVPTX::SULD_1D_ARRAY_V4I8_TRAP:
440 case NVPTX::SULD_1D_ARRAY_V4I16_TRAP:
441 case NVPTX::SULD_1D_ARRAY_V4I32_TRAP:
442 case NVPTX::SULD_2D_V4I8_TRAP:
443 case NVPTX::SULD_2D_V4I16_TRAP:
444 case NVPTX::SULD_2D_V4I32_TRAP:
445 case NVPTX::SULD_2D_ARRAY_V4I8_TRAP:
446 case NVPTX::SULD_2D_ARRAY_V4I16_TRAP:
447 case NVPTX::SULD_2D_ARRAY_V4I32_TRAP:
448 case NVPTX::SULD_3D_V4I8_TRAP:
449 case NVPTX::SULD_3D_V4I16_TRAP:
450 case NVPTX::SULD_3D_V4I32_TRAP: {
451 // This is a V4 surface load, so operand 4 is a surfref
452 if (OpNo == 4) {
453 lowerImageHandleSymbol(MO.getImm(), MCOp);
454 return true;
455 }
456
457 return false;
458 }
459 case NVPTX::SUST_B_1D_B8_TRAP:
460 case NVPTX::SUST_B_1D_B16_TRAP:
461 case NVPTX::SUST_B_1D_B32_TRAP:
462 case NVPTX::SUST_B_1D_V2B8_TRAP:
463 case NVPTX::SUST_B_1D_V2B16_TRAP:
464 case NVPTX::SUST_B_1D_V2B32_TRAP:
465 case NVPTX::SUST_B_1D_V4B8_TRAP:
466 case NVPTX::SUST_B_1D_V4B16_TRAP:
467 case NVPTX::SUST_B_1D_V4B32_TRAP:
468 case NVPTX::SUST_B_1D_ARRAY_B8_TRAP:
469 case NVPTX::SUST_B_1D_ARRAY_B16_TRAP:
470 case NVPTX::SUST_B_1D_ARRAY_B32_TRAP:
471 case NVPTX::SUST_B_1D_ARRAY_V2B8_TRAP:
472 case NVPTX::SUST_B_1D_ARRAY_V2B16_TRAP:
473 case NVPTX::SUST_B_1D_ARRAY_V2B32_TRAP:
474 case NVPTX::SUST_B_1D_ARRAY_V4B8_TRAP:
475 case NVPTX::SUST_B_1D_ARRAY_V4B16_TRAP:
476 case NVPTX::SUST_B_1D_ARRAY_V4B32_TRAP:
477 case NVPTX::SUST_B_2D_B8_TRAP:
478 case NVPTX::SUST_B_2D_B16_TRAP:
479 case NVPTX::SUST_B_2D_B32_TRAP:
480 case NVPTX::SUST_B_2D_V2B8_TRAP:
481 case NVPTX::SUST_B_2D_V2B16_TRAP:
482 case NVPTX::SUST_B_2D_V2B32_TRAP:
483 case NVPTX::SUST_B_2D_V4B8_TRAP:
484 case NVPTX::SUST_B_2D_V4B16_TRAP:
485 case NVPTX::SUST_B_2D_V4B32_TRAP:
486 case NVPTX::SUST_B_2D_ARRAY_B8_TRAP:
487 case NVPTX::SUST_B_2D_ARRAY_B16_TRAP:
488 case NVPTX::SUST_B_2D_ARRAY_B32_TRAP:
489 case NVPTX::SUST_B_2D_ARRAY_V2B8_TRAP:
490 case NVPTX::SUST_B_2D_ARRAY_V2B16_TRAP:
491 case NVPTX::SUST_B_2D_ARRAY_V2B32_TRAP:
492 case NVPTX::SUST_B_2D_ARRAY_V4B8_TRAP:
493 case NVPTX::SUST_B_2D_ARRAY_V4B16_TRAP:
494 case NVPTX::SUST_B_2D_ARRAY_V4B32_TRAP:
495 case NVPTX::SUST_B_3D_B8_TRAP:
496 case NVPTX::SUST_B_3D_B16_TRAP:
497 case NVPTX::SUST_B_3D_B32_TRAP:
498 case NVPTX::SUST_B_3D_V2B8_TRAP:
499 case NVPTX::SUST_B_3D_V2B16_TRAP:
500 case NVPTX::SUST_B_3D_V2B32_TRAP:
501 case NVPTX::SUST_B_3D_V4B8_TRAP:
502 case NVPTX::SUST_B_3D_V4B16_TRAP:
503 case NVPTX::SUST_B_3D_V4B32_TRAP:
504 case NVPTX::SUST_P_1D_B8_TRAP:
505 case NVPTX::SUST_P_1D_B16_TRAP:
506 case NVPTX::SUST_P_1D_B32_TRAP:
507 case NVPTX::SUST_P_1D_V2B8_TRAP:
508 case NVPTX::SUST_P_1D_V2B16_TRAP:
509 case NVPTX::SUST_P_1D_V2B32_TRAP:
510 case NVPTX::SUST_P_1D_V4B8_TRAP:
511 case NVPTX::SUST_P_1D_V4B16_TRAP:
512 case NVPTX::SUST_P_1D_V4B32_TRAP:
513 case NVPTX::SUST_P_1D_ARRAY_B8_TRAP:
514 case NVPTX::SUST_P_1D_ARRAY_B16_TRAP:
515 case NVPTX::SUST_P_1D_ARRAY_B32_TRAP:
516 case NVPTX::SUST_P_1D_ARRAY_V2B8_TRAP:
517 case NVPTX::SUST_P_1D_ARRAY_V2B16_TRAP:
518 case NVPTX::SUST_P_1D_ARRAY_V2B32_TRAP:
519 case NVPTX::SUST_P_1D_ARRAY_V4B8_TRAP:
520 case NVPTX::SUST_P_1D_ARRAY_V4B16_TRAP:
521 case NVPTX::SUST_P_1D_ARRAY_V4B32_TRAP:
522 case NVPTX::SUST_P_2D_B8_TRAP:
523 case NVPTX::SUST_P_2D_B16_TRAP:
524 case NVPTX::SUST_P_2D_B32_TRAP:
525 case NVPTX::SUST_P_2D_V2B8_TRAP:
526 case NVPTX::SUST_P_2D_V2B16_TRAP:
527 case NVPTX::SUST_P_2D_V2B32_TRAP:
528 case NVPTX::SUST_P_2D_V4B8_TRAP:
529 case NVPTX::SUST_P_2D_V4B16_TRAP:
530 case NVPTX::SUST_P_2D_V4B32_TRAP:
531 case NVPTX::SUST_P_2D_ARRAY_B8_TRAP:
532 case NVPTX::SUST_P_2D_ARRAY_B16_TRAP:
533 case NVPTX::SUST_P_2D_ARRAY_B32_TRAP:
534 case NVPTX::SUST_P_2D_ARRAY_V2B8_TRAP:
535 case NVPTX::SUST_P_2D_ARRAY_V2B16_TRAP:
536 case NVPTX::SUST_P_2D_ARRAY_V2B32_TRAP:
537 case NVPTX::SUST_P_2D_ARRAY_V4B8_TRAP:
538 case NVPTX::SUST_P_2D_ARRAY_V4B16_TRAP:
539 case NVPTX::SUST_P_2D_ARRAY_V4B32_TRAP:
540 case NVPTX::SUST_P_3D_B8_TRAP:
541 case NVPTX::SUST_P_3D_B16_TRAP:
542 case NVPTX::SUST_P_3D_B32_TRAP:
543 case NVPTX::SUST_P_3D_V2B8_TRAP:
544 case NVPTX::SUST_P_3D_V2B16_TRAP:
545 case NVPTX::SUST_P_3D_V2B32_TRAP:
546 case NVPTX::SUST_P_3D_V4B8_TRAP:
547 case NVPTX::SUST_P_3D_V4B16_TRAP:
548 case NVPTX::SUST_P_3D_V4B32_TRAP: {
549 // This is a surface store, so operand 0 is a surfref
550 if (OpNo == 0) {
551 lowerImageHandleSymbol(MO.getImm(), MCOp);
552 return true;
553 }
554
555 return false;
556 }
557 case NVPTX::TXQ_CHANNEL_ORDER:
558 case NVPTX::TXQ_CHANNEL_DATA_TYPE:
559 case NVPTX::TXQ_WIDTH:
560 case NVPTX::TXQ_HEIGHT:
561 case NVPTX::TXQ_DEPTH:
562 case NVPTX::TXQ_ARRAY_SIZE:
563 case NVPTX::TXQ_NUM_SAMPLES:
564 case NVPTX::TXQ_NUM_MIPMAP_LEVELS:
565 case NVPTX::SUQ_CHANNEL_ORDER:
566 case NVPTX::SUQ_CHANNEL_DATA_TYPE:
567 case NVPTX::SUQ_WIDTH:
568 case NVPTX::SUQ_HEIGHT:
569 case NVPTX::SUQ_DEPTH:
570 case NVPTX::SUQ_ARRAY_SIZE: {
571 // This is a query, so operand 1 is a surfref/texref
572 if (OpNo == 1) {
573 lowerImageHandleSymbol(MO.getImm(), MCOp);
574 return true;
575 }
576
577 return false;
578 }
579 }
580}
581
582void NVPTXAsmPrinter::lowerImageHandleSymbol(unsigned Index, MCOperand &MCOp) {
583 // Ewwww
584 TargetMachine &TM = const_cast<TargetMachine&>(MF->getTarget());
585 NVPTXTargetMachine &nvTM = static_cast<NVPTXTargetMachine&>(TM);
586 const NVPTXMachineFunctionInfo *MFI = MF->getInfo<NVPTXMachineFunctionInfo>();
587 const char *Sym = MFI->getImageHandleSymbol(Index);
588 std::string *SymNamePtr =
589 nvTM.getManagedStrPool()->getManagedString(Sym);
590 MCOp = GetSymbolRef(OutContext.GetOrCreateSymbol(
591 StringRef(SymNamePtr->c_str())));
592}
593
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000594void NVPTXAsmPrinter::lowerToMCInst(const MachineInstr *MI, MCInst &OutMI) {
595 OutMI.setOpcode(MI->getOpcode());
Justin Holewinski30d56a72014-04-09 15:39:15 +0000596 const NVPTXSubtarget &ST = TM.getSubtarget<NVPTXSubtarget>();
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000597
Justin Holewinski3d49e5c2013-11-15 12:30:04 +0000598 // Special: Do not mangle symbol operand of CALL_PROTOTYPE
599 if (MI->getOpcode() == NVPTX::CALL_PROTOTYPE) {
600 const MachineOperand &MO = MI->getOperand(0);
Justin Holewinski30d56a72014-04-09 15:39:15 +0000601 OutMI.addOperand(GetSymbolRef(
Justin Holewinski3d49e5c2013-11-15 12:30:04 +0000602 OutContext.GetOrCreateSymbol(Twine(MO.getSymbolName()))));
603 return;
604 }
605
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000606 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
607 const MachineOperand &MO = MI->getOperand(i);
608
609 MCOperand MCOp;
Justin Holewinski30d56a72014-04-09 15:39:15 +0000610 if (!ST.hasImageHandles()) {
611 if (lowerImageHandleOperand(MI, i, MCOp)) {
612 OutMI.addOperand(MCOp);
613 continue;
614 }
615 }
616
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000617 if (lowerOperand(MO, MCOp))
618 OutMI.addOperand(MCOp);
619 }
620}
621
622bool NVPTXAsmPrinter::lowerOperand(const MachineOperand &MO,
623 MCOperand &MCOp) {
624 switch (MO.getType()) {
625 default: llvm_unreachable("unknown operand type");
626 case MachineOperand::MO_Register:
627 MCOp = MCOperand::CreateReg(encodeVirtualRegister(MO.getReg()));
628 break;
629 case MachineOperand::MO_Immediate:
630 MCOp = MCOperand::CreateImm(MO.getImm());
631 break;
632 case MachineOperand::MO_MachineBasicBlock:
633 MCOp = MCOperand::CreateExpr(MCSymbolRefExpr::Create(
634 MO.getMBB()->getSymbol(), OutContext));
635 break;
636 case MachineOperand::MO_ExternalSymbol:
Justin Holewinski30d56a72014-04-09 15:39:15 +0000637 MCOp = GetSymbolRef(GetExternalSymbolSymbol(MO.getSymbolName()));
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000638 break;
639 case MachineOperand::MO_GlobalAddress:
Justin Holewinski30d56a72014-04-09 15:39:15 +0000640 MCOp = GetSymbolRef(getSymbol(MO.getGlobal()));
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000641 break;
642 case MachineOperand::MO_FPImmediate: {
643 const ConstantFP *Cnt = MO.getFPImm();
644 APFloat Val = Cnt->getValueAPF();
645
646 switch (Cnt->getType()->getTypeID()) {
647 default: report_fatal_error("Unsupported FP type"); break;
648 case Type::FloatTyID:
649 MCOp = MCOperand::CreateExpr(
650 NVPTXFloatMCExpr::CreateConstantFPSingle(Val, OutContext));
651 break;
652 case Type::DoubleTyID:
653 MCOp = MCOperand::CreateExpr(
654 NVPTXFloatMCExpr::CreateConstantFPDouble(Val, OutContext));
655 break;
656 }
657 break;
658 }
659 }
660 return true;
661}
662
663unsigned NVPTXAsmPrinter::encodeVirtualRegister(unsigned Reg) {
Justin Holewinski871ec932013-08-06 14:13:31 +0000664 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
665 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000666
Justin Holewinski871ec932013-08-06 14:13:31 +0000667 DenseMap<unsigned, unsigned> &RegMap = VRegMapping[RC];
668 unsigned RegNum = RegMap[Reg];
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000669
Justin Holewinski871ec932013-08-06 14:13:31 +0000670 // Encode the register class in the upper 4 bits
671 // Must be kept in sync with NVPTXInstPrinter::printRegName
672 unsigned Ret = 0;
673 if (RC == &NVPTX::Int1RegsRegClass) {
674 Ret = (1 << 28);
675 } else if (RC == &NVPTX::Int16RegsRegClass) {
676 Ret = (2 << 28);
677 } else if (RC == &NVPTX::Int32RegsRegClass) {
678 Ret = (3 << 28);
679 } else if (RC == &NVPTX::Int64RegsRegClass) {
680 Ret = (4 << 28);
681 } else if (RC == &NVPTX::Float32RegsRegClass) {
682 Ret = (5 << 28);
683 } else if (RC == &NVPTX::Float64RegsRegClass) {
684 Ret = (6 << 28);
685 } else {
686 report_fatal_error("Bad register class");
687 }
688
689 // Insert the vreg number
690 Ret |= (RegNum & 0x0FFFFFFF);
691 return Ret;
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000692 } else {
Justin Holewinski871ec932013-08-06 14:13:31 +0000693 // Some special-use registers are actually physical registers.
694 // Encode this as the register class ID of 0 and the real register ID.
695 return Reg & 0x0FFFFFFF;
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000696 }
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000697}
698
Justin Holewinski30d56a72014-04-09 15:39:15 +0000699MCOperand NVPTXAsmPrinter::GetSymbolRef(const MCSymbol *Symbol) {
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000700 const MCExpr *Expr;
Justin Holewinski8b24e1e2013-08-06 23:06:42 +0000701 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None,
702 OutContext);
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000703 return MCOperand::CreateExpr(Expr);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000704}
705
Justin Holewinski0497ab12013-03-30 14:29:21 +0000706void NVPTXAsmPrinter::printReturnValStr(const Function *F, raw_ostream &O) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000707 const DataLayout *TD = TM.getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000708 const TargetLowering *TLI = TM.getTargetLowering();
709
710 Type *Ty = F->getReturnType();
711
712 bool isABI = (nvptxSubtarget.getSmVersion() >= 20);
713
714 if (Ty->getTypeID() == Type::VoidTyID)
715 return;
716
717 O << " (";
718
719 if (isABI) {
Rafael Espindola08013342013-12-07 19:34:20 +0000720 if (Ty->isFloatingPointTy() || Ty->isIntegerTy()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000721 unsigned size = 0;
722 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
723 size = ITy->getBitWidth();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000724 if (size < 32)
725 size = 32;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000726 } else {
Justin Holewinski0497ab12013-03-30 14:29:21 +0000727 assert(Ty->isFloatingPointTy() && "Floating point type expected here");
Justin Holewinskiae556d32012-05-04 20:18:50 +0000728 size = Ty->getPrimitiveSizeInBits();
729 }
730
731 O << ".param .b" << size << " func_retval0";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000732 } else if (isa<PointerType>(Ty)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000733 O << ".param .b" << TLI->getPointerTy().getSizeInBits()
Justin Holewinski0497ab12013-03-30 14:29:21 +0000734 << " func_retval0";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000735 } else {
Justin Holewinski0497ab12013-03-30 14:29:21 +0000736 if ((Ty->getTypeID() == Type::StructTyID) || isa<VectorType>(Ty)) {
Justin Holewinski0da75852014-06-27 18:35:08 +0000737 unsigned totalsz = TD->getTypeAllocSize(Ty);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000738 unsigned retAlignment = 0;
739 if (!llvm::getAlign(*F, 0, retAlignment))
740 retAlignment = TD->getABITypeAlignment(Ty);
Justin Holewinski0497ab12013-03-30 14:29:21 +0000741 O << ".param .align " << retAlignment << " .b8 func_retval0[" << totalsz
742 << "]";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000743 } else
Justin Holewinski0497ab12013-03-30 14:29:21 +0000744 assert(false && "Unknown return type");
Justin Holewinskiae556d32012-05-04 20:18:50 +0000745 }
746 } else {
747 SmallVector<EVT, 16> vtparts;
748 ComputeValueVTs(*TLI, Ty, vtparts);
749 unsigned idx = 0;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000750 for (unsigned i = 0, e = vtparts.size(); i != e; ++i) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000751 unsigned elems = 1;
752 EVT elemtype = vtparts[i];
753 if (vtparts[i].isVector()) {
754 elems = vtparts[i].getVectorNumElements();
755 elemtype = vtparts[i].getVectorElementType();
756 }
757
Justin Holewinski0497ab12013-03-30 14:29:21 +0000758 for (unsigned j = 0, je = elems; j != je; ++j) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000759 unsigned sz = elemtype.getSizeInBits();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000760 if (elemtype.isInteger() && (sz < 32))
761 sz = 32;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000762 O << ".reg .b" << sz << " func_retval" << idx;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000763 if (j < je - 1)
764 O << ", ";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000765 ++idx;
766 }
Justin Holewinski0497ab12013-03-30 14:29:21 +0000767 if (i < e - 1)
Justin Holewinskiae556d32012-05-04 20:18:50 +0000768 O << ", ";
769 }
770 }
771 O << ") ";
772 return;
773}
774
775void NVPTXAsmPrinter::printReturnValStr(const MachineFunction &MF,
776 raw_ostream &O) {
777 const Function *F = MF.getFunction();
778 printReturnValStr(F, O);
779}
780
781void NVPTXAsmPrinter::EmitFunctionEntryLabel() {
782 SmallString<128> Str;
783 raw_svector_ostream O(Str);
784
Justin Holewinski01f89f02013-05-20 12:13:32 +0000785 if (!GlobalsEmitted) {
786 emitGlobals(*MF->getFunction()->getParent());
787 GlobalsEmitted = true;
788 }
789
Justin Holewinskiae556d32012-05-04 20:18:50 +0000790 // Set up
791 MRI = &MF->getRegInfo();
792 F = MF->getFunction();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000793 emitLinkageDirective(F, O);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000794 if (llvm::isKernelFunction(*F))
795 O << ".entry ";
796 else {
797 O << ".func ";
798 printReturnValStr(*MF, O);
799 }
800
801 O << *CurrentFnSym;
802
803 emitFunctionParamList(*MF, O);
804
805 if (llvm::isKernelFunction(*F))
806 emitKernelFunctionDirectives(*F, O);
807
808 OutStreamer.EmitRawText(O.str());
809
810 prevDebugLoc = DebugLoc();
811}
812
813void NVPTXAsmPrinter::EmitFunctionBodyStart() {
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +0000814 VRegMapping.clear();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000815 OutStreamer.EmitRawText(StringRef("{\n"));
816 setAndEmitFunctionVirtualRegisters(*MF);
817
818 SmallString<128> Str;
819 raw_svector_ostream O(Str);
820 emitDemotedVars(MF->getFunction(), O);
821 OutStreamer.EmitRawText(O.str());
822}
823
824void NVPTXAsmPrinter::EmitFunctionBodyEnd() {
825 OutStreamer.EmitRawText(StringRef("}\n"));
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +0000826 VRegMapping.clear();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000827}
828
Justin Holewinski660597d2013-10-11 12:39:36 +0000829void NVPTXAsmPrinter::emitImplicitDef(const MachineInstr *MI) const {
830 unsigned RegNo = MI->getOperand(0).getReg();
831 const TargetRegisterInfo *TRI = TM.getRegisterInfo();
832 if (TRI->isVirtualRegister(RegNo)) {
833 OutStreamer.AddComment(Twine("implicit-def: ") +
834 getVirtualRegisterName(RegNo));
835 } else {
836 OutStreamer.AddComment(Twine("implicit-def: ") +
837 TM.getRegisterInfo()->getName(RegNo));
838 }
839 OutStreamer.AddBlankLine();
840}
841
Justin Holewinski0497ab12013-03-30 14:29:21 +0000842void NVPTXAsmPrinter::emitKernelFunctionDirectives(const Function &F,
843 raw_ostream &O) const {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000844 // If the NVVM IR has some of reqntid* specified, then output
845 // the reqntid directive, and set the unspecified ones to 1.
846 // If none of reqntid* is specified, don't output reqntid directive.
847 unsigned reqntidx, reqntidy, reqntidz;
848 bool specified = false;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000849 if (llvm::getReqNTIDx(F, reqntidx) == false)
850 reqntidx = 1;
851 else
852 specified = true;
853 if (llvm::getReqNTIDy(F, reqntidy) == false)
854 reqntidy = 1;
855 else
856 specified = true;
857 if (llvm::getReqNTIDz(F, reqntidz) == false)
858 reqntidz = 1;
859 else
860 specified = true;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000861
862 if (specified)
Justin Holewinski0497ab12013-03-30 14:29:21 +0000863 O << ".reqntid " << reqntidx << ", " << reqntidy << ", " << reqntidz
864 << "\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000865
866 // If the NVVM IR has some of maxntid* specified, then output
867 // the maxntid directive, and set the unspecified ones to 1.
868 // If none of maxntid* is specified, don't output maxntid directive.
869 unsigned maxntidx, maxntidy, maxntidz;
870 specified = false;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000871 if (llvm::getMaxNTIDx(F, maxntidx) == false)
872 maxntidx = 1;
873 else
874 specified = true;
875 if (llvm::getMaxNTIDy(F, maxntidy) == false)
876 maxntidy = 1;
877 else
878 specified = true;
879 if (llvm::getMaxNTIDz(F, maxntidz) == false)
880 maxntidz = 1;
881 else
882 specified = true;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000883
884 if (specified)
Justin Holewinski0497ab12013-03-30 14:29:21 +0000885 O << ".maxntid " << maxntidx << ", " << maxntidy << ", " << maxntidz
886 << "\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000887
888 unsigned mincta;
889 if (llvm::getMinCTASm(F, mincta))
890 O << ".minnctapersm " << mincta << "\n";
891}
892
Justin Holewinski660597d2013-10-11 12:39:36 +0000893std::string
894NVPTXAsmPrinter::getVirtualRegisterName(unsigned Reg) const {
895 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000896
Justin Holewinski660597d2013-10-11 12:39:36 +0000897 std::string Name;
898 raw_string_ostream NameStr(Name);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000899
Justin Holewinski660597d2013-10-11 12:39:36 +0000900 VRegRCMap::const_iterator I = VRegMapping.find(RC);
901 assert(I != VRegMapping.end() && "Bad register class");
902 const DenseMap<unsigned, unsigned> &RegMap = I->second;
903
904 VRegMap::const_iterator VI = RegMap.find(Reg);
905 assert(VI != RegMap.end() && "Bad virtual register");
906 unsigned MappedVR = VI->second;
907
908 NameStr << getNVPTXRegClassStr(RC) << MappedVR;
909
910 NameStr.flush();
911 return Name;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000912}
913
Justin Holewinski660597d2013-10-11 12:39:36 +0000914void NVPTXAsmPrinter::emitVirtualRegister(unsigned int vr,
Justin Holewinski0497ab12013-03-30 14:29:21 +0000915 raw_ostream &O) {
Justin Holewinski660597d2013-10-11 12:39:36 +0000916 O << getVirtualRegisterName(vr);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000917}
918
Justin Holewinski0497ab12013-03-30 14:29:21 +0000919void NVPTXAsmPrinter::printVecModifiedImmediate(
920 const MachineOperand &MO, const char *Modifier, raw_ostream &O) {
921 static const char vecelem[] = { '0', '1', '2', '3', '0', '1', '2', '3' };
922 int Imm = (int) MO.getImm();
923 if (0 == strcmp(Modifier, "vecelem"))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000924 O << "_" << vecelem[Imm];
Justin Holewinski0497ab12013-03-30 14:29:21 +0000925 else if (0 == strcmp(Modifier, "vecv4comm1")) {
926 if ((Imm < 0) || (Imm > 3))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000927 O << "//";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000928 } else if (0 == strcmp(Modifier, "vecv4comm2")) {
929 if ((Imm < 4) || (Imm > 7))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000930 O << "//";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000931 } else if (0 == strcmp(Modifier, "vecv4pos")) {
932 if (Imm < 0)
933 Imm = 0;
934 O << "_" << vecelem[Imm % 4];
935 } else if (0 == strcmp(Modifier, "vecv2comm1")) {
936 if ((Imm < 0) || (Imm > 1))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000937 O << "//";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000938 } else if (0 == strcmp(Modifier, "vecv2comm2")) {
939 if ((Imm < 2) || (Imm > 3))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000940 O << "//";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000941 } else if (0 == strcmp(Modifier, "vecv2pos")) {
942 if (Imm < 0)
943 Imm = 0;
944 O << "_" << vecelem[Imm % 2];
945 } else
Craig Topperbdf39a42012-05-24 07:02:50 +0000946 llvm_unreachable("Unknown Modifier on immediate operand");
Justin Holewinskiae556d32012-05-04 20:18:50 +0000947}
948
Justin Holewinskidc5e3b62013-06-28 17:58:04 +0000949
950
Justin Holewinski0497ab12013-03-30 14:29:21 +0000951void NVPTXAsmPrinter::emitDeclaration(const Function *F, raw_ostream &O) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000952
Justin Holewinski0497ab12013-03-30 14:29:21 +0000953 emitLinkageDirective(F, O);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000954 if (llvm::isKernelFunction(*F))
955 O << ".entry ";
956 else
957 O << ".func ";
958 printReturnValStr(F, O);
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +0000959 O << *getSymbol(F) << "\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000960 emitFunctionParamList(F, O);
961 O << ";\n";
962}
963
Justin Holewinski0497ab12013-03-30 14:29:21 +0000964static bool usedInGlobalVarDef(const Constant *C) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000965 if (!C)
966 return false;
967
968 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
969 if (GV->getName().str() == "llvm.used")
970 return false;
971 return true;
972 }
973
Chandler Carruthcdf47882014-03-09 03:16:01 +0000974 for (const User *U : C->users())
975 if (const Constant *C = dyn_cast<Constant>(U))
976 if (usedInGlobalVarDef(C))
977 return true;
978
Justin Holewinskiae556d32012-05-04 20:18:50 +0000979 return false;
980}
981
Justin Holewinski0497ab12013-03-30 14:29:21 +0000982static bool usedInOneFunc(const User *U, Function const *&oneFunc) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000983 if (const GlobalVariable *othergv = dyn_cast<GlobalVariable>(U)) {
984 if (othergv->getName().str() == "llvm.used")
985 return true;
986 }
987
988 if (const Instruction *instr = dyn_cast<Instruction>(U)) {
989 if (instr->getParent() && instr->getParent()->getParent()) {
990 const Function *curFunc = instr->getParent()->getParent();
991 if (oneFunc && (curFunc != oneFunc))
992 return false;
993 oneFunc = curFunc;
994 return true;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000995 } else
Justin Holewinskiae556d32012-05-04 20:18:50 +0000996 return false;
997 }
998
999 if (const MDNode *md = dyn_cast<MDNode>(U))
1000 if (md->hasName() && ((md->getName().str() == "llvm.dbg.gv") ||
Justin Holewinski0497ab12013-03-30 14:29:21 +00001001 (md->getName().str() == "llvm.dbg.sp")))
Justin Holewinskiae556d32012-05-04 20:18:50 +00001002 return true;
1003
Chandler Carruthcdf47882014-03-09 03:16:01 +00001004 for (const User *UU : U->users())
1005 if (usedInOneFunc(UU, oneFunc) == false)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001006 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001007
Justin Holewinskiae556d32012-05-04 20:18:50 +00001008 return true;
1009}
1010
1011/* Find out if a global variable can be demoted to local scope.
1012 * Currently, this is valid for CUDA shared variables, which have local
1013 * scope and global lifetime. So the conditions to check are :
1014 * 1. Is the global variable in shared address space?
1015 * 2. Does it have internal linkage?
1016 * 3. Is the global variable referenced only in one function?
1017 */
1018static bool canDemoteGlobalVar(const GlobalVariable *gv, Function const *&f) {
1019 if (gv->hasInternalLinkage() == false)
1020 return false;
1021 const PointerType *Pty = gv->getType();
1022 if (Pty->getAddressSpace() != llvm::ADDRESS_SPACE_SHARED)
1023 return false;
1024
Craig Topper062a2ba2014-04-25 05:30:21 +00001025 const Function *oneFunc = nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001026
1027 bool flag = usedInOneFunc(gv, oneFunc);
1028 if (flag == false)
1029 return false;
1030 if (!oneFunc)
1031 return false;
1032 f = oneFunc;
1033 return true;
1034}
1035
1036static bool useFuncSeen(const Constant *C,
1037 llvm::DenseMap<const Function *, bool> &seenMap) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001038 for (const User *U : C->users()) {
1039 if (const Constant *cu = dyn_cast<Constant>(U)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001040 if (useFuncSeen(cu, seenMap))
1041 return true;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001042 } else if (const Instruction *I = dyn_cast<Instruction>(U)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001043 const BasicBlock *bb = I->getParent();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001044 if (!bb)
1045 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001046 const Function *caller = bb->getParent();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001047 if (!caller)
1048 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001049 if (seenMap.find(caller) != seenMap.end())
1050 return true;
1051 }
1052 }
1053 return false;
1054}
1055
Justin Holewinski01f89f02013-05-20 12:13:32 +00001056void NVPTXAsmPrinter::emitDeclarations(const Module &M, raw_ostream &O) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001057 llvm::DenseMap<const Function *, bool> seenMap;
Justin Holewinski0497ab12013-03-30 14:29:21 +00001058 for (Module::const_iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001059 const Function *F = FI;
1060
1061 if (F->isDeclaration()) {
1062 if (F->use_empty())
1063 continue;
1064 if (F->getIntrinsicID())
1065 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001066 emitDeclaration(F, O);
1067 continue;
1068 }
Chandler Carruthcdf47882014-03-09 03:16:01 +00001069 for (const User *U : F->users()) {
1070 if (const Constant *C = dyn_cast<Constant>(U)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001071 if (usedInGlobalVarDef(C)) {
1072 // The use is in the initialization of a global variable
1073 // that is a function pointer, so print a declaration
1074 // for the original function
Justin Holewinskiae556d32012-05-04 20:18:50 +00001075 emitDeclaration(F, O);
1076 break;
1077 }
1078 // Emit a declaration of this function if the function that
1079 // uses this constant expr has already been seen.
1080 if (useFuncSeen(C, seenMap)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001081 emitDeclaration(F, O);
1082 break;
1083 }
1084 }
1085
Chandler Carruthcdf47882014-03-09 03:16:01 +00001086 if (!isa<Instruction>(U))
Justin Holewinski0497ab12013-03-30 14:29:21 +00001087 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001088 const Instruction *instr = cast<Instruction>(U);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001089 const BasicBlock *bb = instr->getParent();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001090 if (!bb)
1091 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001092 const Function *caller = bb->getParent();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001093 if (!caller)
1094 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001095
1096 // If a caller has already been seen, then the caller is
1097 // appearing in the module before the callee. so print out
1098 // a declaration for the callee.
1099 if (seenMap.find(caller) != seenMap.end()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001100 emitDeclaration(F, O);
1101 break;
1102 }
1103 }
1104 seenMap[F] = true;
1105 }
1106}
1107
1108void NVPTXAsmPrinter::recordAndEmitFilenames(Module &M) {
1109 DebugInfoFinder DbgFinder;
1110 DbgFinder.processModule(M);
1111
Justin Holewinski0497ab12013-03-30 14:29:21 +00001112 unsigned i = 1;
Alon Mishnead312152014-03-18 09:41:07 +00001113 for (DICompileUnit DIUnit : DbgFinder.compile_units()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001114 StringRef Filename(DIUnit.getFilename());
1115 StringRef Dirname(DIUnit.getDirectory());
1116 SmallString<128> FullPathName = Dirname;
1117 if (!Dirname.empty() && !sys::path::is_absolute(Filename)) {
1118 sys::path::append(FullPathName, Filename);
1119 Filename = FullPathName.str();
1120 }
1121 if (filenameMap.find(Filename.str()) != filenameMap.end())
1122 continue;
1123 filenameMap[Filename.str()] = i;
1124 OutStreamer.EmitDwarfFileDirective(i, "", Filename.str());
1125 ++i;
1126 }
1127
Alon Mishnead312152014-03-18 09:41:07 +00001128 for (DISubprogram SP : DbgFinder.subprograms()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001129 StringRef Filename(SP.getFilename());
1130 StringRef Dirname(SP.getDirectory());
1131 SmallString<128> FullPathName = Dirname;
1132 if (!Dirname.empty() && !sys::path::is_absolute(Filename)) {
1133 sys::path::append(FullPathName, Filename);
1134 Filename = FullPathName.str();
1135 }
1136 if (filenameMap.find(Filename.str()) != filenameMap.end())
1137 continue;
1138 filenameMap[Filename.str()] = i;
1139 ++i;
1140 }
1141}
1142
Justin Holewinski0497ab12013-03-30 14:29:21 +00001143bool NVPTXAsmPrinter::doInitialization(Module &M) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001144
1145 SmallString<128> Str1;
1146 raw_svector_ostream OS1(Str1);
1147
1148 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
1149 MMI->AnalyzeModule(M);
1150
1151 // We need to call the parent's one explicitly.
1152 //bool Result = AsmPrinter::doInitialization(M);
1153
1154 // Initialize TargetLoweringObjectFile.
Justin Holewinski0497ab12013-03-30 14:29:21 +00001155 const_cast<TargetLoweringObjectFile &>(getObjFileLowering())
1156 .Initialize(OutContext, TM);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001157
Rafael Espindola58873562014-01-03 19:21:54 +00001158 Mang = new Mangler(TM.getDataLayout());
Justin Holewinskiae556d32012-05-04 20:18:50 +00001159
1160 // Emit header before any dwarf directives are emitted below.
1161 emitHeader(M, OS1);
1162 OutStreamer.EmitRawText(OS1.str());
1163
Justin Holewinskiae556d32012-05-04 20:18:50 +00001164 // Already commented out
1165 //bool Result = AsmPrinter::doInitialization(M);
1166
Justin Holewinskid2bbdf02013-07-01 13:00:14 +00001167 // Emit module-level inline asm if it exists.
1168 if (!M.getModuleInlineAsm().empty()) {
1169 OutStreamer.AddComment("Start of file scope inline assembly");
1170 OutStreamer.AddBlankLine();
1171 OutStreamer.EmitRawText(StringRef(M.getModuleInlineAsm()));
1172 OutStreamer.AddBlankLine();
1173 OutStreamer.AddComment("End of file scope inline assembly");
1174 OutStreamer.AddBlankLine();
1175 }
1176
Justin Holewinskiae556d32012-05-04 20:18:50 +00001177 if (nvptxSubtarget.getDrvInterface() == NVPTX::CUDA)
1178 recordAndEmitFilenames(M);
1179
Justin Holewinski01f89f02013-05-20 12:13:32 +00001180 GlobalsEmitted = false;
1181
1182 return false; // success
1183}
1184
1185void NVPTXAsmPrinter::emitGlobals(const Module &M) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001186 SmallString<128> Str2;
1187 raw_svector_ostream OS2(Str2);
1188
1189 emitDeclarations(M, OS2);
1190
Justin Holewinski2c5ac702012-11-16 21:03:51 +00001191 // As ptxas does not support forward references of globals, we need to first
1192 // sort the list of module-level globals in def-use order. We visit each
1193 // global variable in order, and ensure that we emit it *after* its dependent
1194 // globals. We use a little extra memory maintaining both a set and a list to
1195 // have fast searches while maintaining a strict ordering.
Justin Holewinski01f89f02013-05-20 12:13:32 +00001196 SmallVector<const GlobalVariable *, 8> Globals;
1197 DenseSet<const GlobalVariable *> GVVisited;
1198 DenseSet<const GlobalVariable *> GVVisiting;
Justin Holewinski2c5ac702012-11-16 21:03:51 +00001199
1200 // Visit each global variable, in order
Justin Holewinski01f89f02013-05-20 12:13:32 +00001201 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
1202 I != E; ++I)
Justin Holewinski2c5ac702012-11-16 21:03:51 +00001203 VisitGlobalVariableForEmission(I, Globals, GVVisited, GVVisiting);
1204
Justin Holewinski0497ab12013-03-30 14:29:21 +00001205 assert(GVVisited.size() == M.getGlobalList().size() &&
Justin Holewinski2c5ac702012-11-16 21:03:51 +00001206 "Missed a global variable");
1207 assert(GVVisiting.size() == 0 && "Did not fully process a global variable");
1208
1209 // Print out module-level global variables in proper order
1210 for (unsigned i = 0, e = Globals.size(); i != e; ++i)
1211 printModuleLevelGV(Globals[i], OS2);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001212
1213 OS2 << '\n';
1214
1215 OutStreamer.EmitRawText(OS2.str());
Justin Holewinskiae556d32012-05-04 20:18:50 +00001216}
1217
Justin Holewinski0497ab12013-03-30 14:29:21 +00001218void NVPTXAsmPrinter::emitHeader(Module &M, raw_ostream &O) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001219 O << "//\n";
1220 O << "// Generated by LLVM NVPTX Back-End\n";
1221 O << "//\n";
1222 O << "\n";
1223
Justin Holewinski1812ee92012-11-12 03:16:43 +00001224 unsigned PTXVersion = nvptxSubtarget.getPTXVersion();
1225 O << ".version " << (PTXVersion / 10) << "." << (PTXVersion % 10) << "\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001226
1227 O << ".target ";
1228 O << nvptxSubtarget.getTargetName();
1229
1230 if (nvptxSubtarget.getDrvInterface() == NVPTX::NVCL)
1231 O << ", texmode_independent";
1232 if (nvptxSubtarget.getDrvInterface() == NVPTX::CUDA) {
1233 if (!nvptxSubtarget.hasDouble())
1234 O << ", map_f64_to_f32";
1235 }
1236
1237 if (MAI->doesSupportDebugInformation())
1238 O << ", debug";
1239
1240 O << "\n";
1241
1242 O << ".address_size ";
1243 if (nvptxSubtarget.is64Bit())
1244 O << "64";
1245 else
1246 O << "32";
1247 O << "\n";
1248
1249 O << "\n";
1250}
1251
1252bool NVPTXAsmPrinter::doFinalization(Module &M) {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001253
1254 // If we did not emit any functions, then the global declarations have not
1255 // yet been emitted.
1256 if (!GlobalsEmitted) {
1257 emitGlobals(M);
1258 GlobalsEmitted = true;
1259 }
1260
Justin Holewinskiae556d32012-05-04 20:18:50 +00001261 // XXX Temproarily remove global variables so that doFinalization() will not
1262 // emit them again (global variables are emitted at beginning).
1263
1264 Module::GlobalListType &global_list = M.getGlobalList();
1265 int i, n = global_list.size();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001266 GlobalVariable **gv_array = new GlobalVariable *[n];
Justin Holewinskiae556d32012-05-04 20:18:50 +00001267
1268 // first, back-up GlobalVariable in gv_array
1269 i = 0;
1270 for (Module::global_iterator I = global_list.begin(), E = global_list.end();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001271 I != E; ++I)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001272 gv_array[i++] = &*I;
1273
1274 // second, empty global_list
1275 while (!global_list.empty())
1276 global_list.remove(global_list.begin());
1277
1278 // call doFinalization
1279 bool ret = AsmPrinter::doFinalization(M);
1280
1281 // now we restore global variables
Justin Holewinski0497ab12013-03-30 14:29:21 +00001282 for (i = 0; i < n; i++)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001283 global_list.insert(global_list.end(), gv_array[i]);
1284
Justin Holewinski59596952014-04-09 15:38:52 +00001285 clearAnnotationCache(&M);
1286
Justin Holewinskiae556d32012-05-04 20:18:50 +00001287 delete[] gv_array;
1288 return ret;
1289
Justin Holewinskiae556d32012-05-04 20:18:50 +00001290 //bool Result = AsmPrinter::doFinalization(M);
1291 // Instead of calling the parents doFinalization, we may
1292 // clone parents doFinalization and customize here.
1293 // Currently, we if NVISA out the EmitGlobals() in
1294 // parent's doFinalization, which is too intrusive.
1295 //
1296 // Same for the doInitialization.
1297 //return Result;
1298}
1299
1300// This function emits appropriate linkage directives for
1301// functions and global variables.
1302//
1303// extern function declaration -> .extern
1304// extern function definition -> .visible
1305// external global variable with init -> .visible
1306// external without init -> .extern
1307// appending -> not allowed, assert.
Justin Holewinski7d5bf662014-06-27 18:35:10 +00001308// for any linkage other than
1309// internal, private, linker_private,
1310// linker_private_weak, linker_private_weak_def_auto,
1311// we emit -> .weak.
Justin Holewinskiae556d32012-05-04 20:18:50 +00001312
Justin Holewinski0497ab12013-03-30 14:29:21 +00001313void NVPTXAsmPrinter::emitLinkageDirective(const GlobalValue *V,
1314 raw_ostream &O) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001315 if (nvptxSubtarget.getDrvInterface() == NVPTX::CUDA) {
1316 if (V->hasExternalLinkage()) {
1317 if (isa<GlobalVariable>(V)) {
1318 const GlobalVariable *GVar = cast<GlobalVariable>(V);
1319 if (GVar) {
1320 if (GVar->hasInitializer())
1321 O << ".visible ";
1322 else
1323 O << ".extern ";
1324 }
1325 } else if (V->isDeclaration())
1326 O << ".extern ";
1327 else
1328 O << ".visible ";
1329 } else if (V->hasAppendingLinkage()) {
1330 std::string msg;
1331 msg.append("Error: ");
1332 msg.append("Symbol ");
1333 if (V->hasName())
1334 msg.append(V->getName().str());
1335 msg.append("has unsupported appending linkage type");
1336 llvm_unreachable(msg.c_str());
Justin Holewinski7d5bf662014-06-27 18:35:10 +00001337 } else if (!V->hasInternalLinkage() &&
1338 !V->hasPrivateLinkage()) {
1339 O << ".weak ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001340 }
1341 }
1342}
1343
Justin Holewinski01f89f02013-05-20 12:13:32 +00001344void NVPTXAsmPrinter::printModuleLevelGV(const GlobalVariable *GVar,
1345 raw_ostream &O,
Justin Holewinskiae556d32012-05-04 20:18:50 +00001346 bool processDemoted) {
1347
1348 // Skip meta data
1349 if (GVar->hasSection()) {
Rafael Espindola64c1e182014-06-03 02:41:57 +00001350 if (GVar->getSection() == StringRef("llvm.metadata"))
Justin Holewinskiae556d32012-05-04 20:18:50 +00001351 return;
1352 }
1353
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001354 const DataLayout *TD = TM.getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001355
1356 // GlobalVariables are always constant pointers themselves.
1357 const PointerType *PTy = GVar->getType();
1358 Type *ETy = PTy->getElementType();
1359
1360 if (GVar->hasExternalLinkage()) {
1361 if (GVar->hasInitializer())
1362 O << ".visible ";
1363 else
1364 O << ".extern ";
1365 }
1366
1367 if (llvm::isTexture(*GVar)) {
1368 O << ".global .texref " << llvm::getTextureName(*GVar) << ";\n";
1369 return;
1370 }
1371
1372 if (llvm::isSurface(*GVar)) {
1373 O << ".global .surfref " << llvm::getSurfaceName(*GVar) << ";\n";
1374 return;
1375 }
1376
1377 if (GVar->isDeclaration()) {
1378 // (extern) declarations, no definition or initializer
1379 // Currently the only known declaration is for an automatic __local
1380 // (.shared) promoted to global.
1381 emitPTXGlobalVariable(GVar, O);
1382 O << ";\n";
1383 return;
1384 }
1385
1386 if (llvm::isSampler(*GVar)) {
1387 O << ".global .samplerref " << llvm::getSamplerName(*GVar);
1388
Craig Topper062a2ba2014-04-25 05:30:21 +00001389 const Constant *Initializer = nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001390 if (GVar->hasInitializer())
1391 Initializer = GVar->getInitializer();
Craig Topper062a2ba2014-04-25 05:30:21 +00001392 const ConstantInt *CI = nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001393 if (Initializer)
1394 CI = dyn_cast<ConstantInt>(Initializer);
1395 if (CI) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001396 unsigned sample = CI->getZExtValue();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001397
1398 O << " = { ";
1399
Justin Holewinski0497ab12013-03-30 14:29:21 +00001400 for (int i = 0,
1401 addr = ((sample & __CLK_ADDRESS_MASK) >> __CLK_ADDRESS_BASE);
1402 i < 3; i++) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001403 O << "addr_mode_" << i << " = ";
1404 switch (addr) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001405 case 0:
1406 O << "wrap";
1407 break;
1408 case 1:
1409 O << "clamp_to_border";
1410 break;
1411 case 2:
1412 O << "clamp_to_edge";
1413 break;
1414 case 3:
1415 O << "wrap";
1416 break;
1417 case 4:
1418 O << "mirror";
1419 break;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001420 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001421 O << ", ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001422 }
1423 O << "filter_mode = ";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001424 switch ((sample & __CLK_FILTER_MASK) >> __CLK_FILTER_BASE) {
1425 case 0:
1426 O << "nearest";
1427 break;
1428 case 1:
1429 O << "linear";
1430 break;
1431 case 2:
Craig Topper2a30d782014-06-18 05:05:13 +00001432 llvm_unreachable("Anisotropic filtering is not supported");
Justin Holewinski0497ab12013-03-30 14:29:21 +00001433 default:
1434 O << "nearest";
1435 break;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001436 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001437 if (!((sample & __CLK_NORMALIZED_MASK) >> __CLK_NORMALIZED_BASE)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001438 O << ", force_unnormalized_coords = 1";
1439 }
1440 O << " }";
1441 }
1442
1443 O << ";\n";
1444 return;
1445 }
1446
1447 if (GVar->hasPrivateLinkage()) {
1448
1449 if (!strncmp(GVar->getName().data(), "unrollpragma", 12))
1450 return;
1451
1452 // FIXME - need better way (e.g. Metadata) to avoid generating this global
1453 if (!strncmp(GVar->getName().data(), "filename", 8))
1454 return;
1455 if (GVar->use_empty())
1456 return;
1457 }
1458
Craig Topper062a2ba2014-04-25 05:30:21 +00001459 const Function *demotedFunc = nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001460 if (!processDemoted && canDemoteGlobalVar(GVar, demotedFunc)) {
1461 O << "// " << GVar->getName().str() << " has been demoted\n";
1462 if (localDecls.find(demotedFunc) != localDecls.end())
1463 localDecls[demotedFunc].push_back(GVar);
1464 else {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001465 std::vector<const GlobalVariable *> temp;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001466 temp.push_back(GVar);
1467 localDecls[demotedFunc] = temp;
1468 }
1469 return;
1470 }
1471
1472 O << ".";
1473 emitPTXAddressSpace(PTy->getAddressSpace(), O);
1474 if (GVar->getAlignment() == 0)
1475 O << " .align " << (int) TD->getPrefTypeAlignment(ETy);
1476 else
1477 O << " .align " << GVar->getAlignment();
1478
Rafael Espindola08013342013-12-07 19:34:20 +00001479 if (ETy->isSingleValueType()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001480 O << " .";
Justin Holewinski700b6fa2013-05-20 12:13:28 +00001481 // Special case: ABI requires that we use .u8 for predicates
1482 if (ETy->isIntegerTy(1))
1483 O << "u8";
1484 else
1485 O << getPTXFundamentalTypeStr(ETy, false);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001486 O << " ";
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00001487 O << *getSymbol(GVar);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001488
1489 // Ptx allows variable initilization only for constant and global state
1490 // spaces.
1491 if (((PTy->getAddressSpace() == llvm::ADDRESS_SPACE_GLOBAL) ||
Justin Holewinski0497ab12013-03-30 14:29:21 +00001492 (PTy->getAddressSpace() == llvm::ADDRESS_SPACE_CONST)) &&
1493 GVar->hasInitializer()) {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001494 const Constant *Initializer = GVar->getInitializer();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001495 if (!Initializer->isNullValue()) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001496 O << " = ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001497 printScalarConstant(Initializer, O);
1498 }
1499 }
1500 } else {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001501 unsigned int ElementSize = 0;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001502
1503 // Although PTX has direct support for struct type and array type and
1504 // LLVM IR is very similar to PTX, the LLVM CodeGen does not support for
1505 // targets that support these high level field accesses. Structs, arrays
1506 // and vectors are lowered into arrays of bytes.
1507 switch (ETy->getTypeID()) {
1508 case Type::StructTyID:
1509 case Type::ArrayTyID:
1510 case Type::VectorTyID:
1511 ElementSize = TD->getTypeStoreSize(ETy);
1512 // Ptx allows variable initilization only for constant and
1513 // global state spaces.
1514 if (((PTy->getAddressSpace() == llvm::ADDRESS_SPACE_GLOBAL) ||
Justin Holewinski0497ab12013-03-30 14:29:21 +00001515 (PTy->getAddressSpace() == llvm::ADDRESS_SPACE_CONST)) &&
1516 GVar->hasInitializer()) {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001517 const Constant *Initializer = GVar->getInitializer();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001518 if (!isa<UndefValue>(Initializer) && !Initializer->isNullValue()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001519 AggBuffer aggBuffer(ElementSize, O, *this);
1520 bufferAggregateConstant(Initializer, &aggBuffer);
1521 if (aggBuffer.numSymbols) {
1522 if (nvptxSubtarget.is64Bit()) {
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00001523 O << " .u64 " << *getSymbol(GVar) << "[";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001524 O << ElementSize / 8;
1525 } else {
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00001526 O << " .u32 " << *getSymbol(GVar) << "[";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001527 O << ElementSize / 4;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001528 }
1529 O << "]";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001530 } else {
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00001531 O << " .b8 " << *getSymbol(GVar) << "[";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001532 O << ElementSize;
1533 O << "]";
1534 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001535 O << " = {";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001536 aggBuffer.print();
1537 O << "}";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001538 } else {
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00001539 O << " .b8 " << *getSymbol(GVar);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001540 if (ElementSize) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001541 O << "[";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001542 O << ElementSize;
1543 O << "]";
1544 }
1545 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001546 } else {
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00001547 O << " .b8 " << *getSymbol(GVar);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001548 if (ElementSize) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001549 O << "[";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001550 O << ElementSize;
1551 O << "]";
1552 }
1553 }
1554 break;
1555 default:
Craig Topper2a30d782014-06-18 05:05:13 +00001556 llvm_unreachable("type not supported yet");
Justin Holewinskiae556d32012-05-04 20:18:50 +00001557 }
1558
1559 }
1560 O << ";\n";
1561}
1562
1563void NVPTXAsmPrinter::emitDemotedVars(const Function *f, raw_ostream &O) {
1564 if (localDecls.find(f) == localDecls.end())
1565 return;
1566
Justin Holewinski01f89f02013-05-20 12:13:32 +00001567 std::vector<const GlobalVariable *> &gvars = localDecls[f];
Justin Holewinskiae556d32012-05-04 20:18:50 +00001568
Justin Holewinski0497ab12013-03-30 14:29:21 +00001569 for (unsigned i = 0, e = gvars.size(); i != e; ++i) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001570 O << "\t// demoted variable\n\t";
1571 printModuleLevelGV(gvars[i], O, true);
1572 }
1573}
1574
1575void NVPTXAsmPrinter::emitPTXAddressSpace(unsigned int AddressSpace,
1576 raw_ostream &O) const {
1577 switch (AddressSpace) {
1578 case llvm::ADDRESS_SPACE_LOCAL:
Justin Holewinski0497ab12013-03-30 14:29:21 +00001579 O << "local";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001580 break;
1581 case llvm::ADDRESS_SPACE_GLOBAL:
Justin Holewinski0497ab12013-03-30 14:29:21 +00001582 O << "global";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001583 break;
1584 case llvm::ADDRESS_SPACE_CONST:
Justin Holewinski0497ab12013-03-30 14:29:21 +00001585 O << "const";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001586 break;
1587 case llvm::ADDRESS_SPACE_SHARED:
Justin Holewinski0497ab12013-03-30 14:29:21 +00001588 O << "shared";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001589 break;
1590 default:
Justin Holewinski36a50992013-02-09 13:34:15 +00001591 report_fatal_error("Bad address space found while emitting PTX");
1592 break;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001593 }
1594}
1595
Justin Holewinski0497ab12013-03-30 14:29:21 +00001596std::string
1597NVPTXAsmPrinter::getPTXFundamentalTypeStr(const Type *Ty, bool useB4PTR) const {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001598 switch (Ty->getTypeID()) {
1599 default:
1600 llvm_unreachable("unexpected type");
1601 break;
1602 case Type::IntegerTyID: {
1603 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
1604 if (NumBits == 1)
1605 return "pred";
1606 else if (NumBits <= 64) {
1607 std::string name = "u";
1608 return name + utostr(NumBits);
1609 } else {
1610 llvm_unreachable("Integer too large");
1611 break;
1612 }
1613 break;
1614 }
1615 case Type::FloatTyID:
1616 return "f32";
1617 case Type::DoubleTyID:
1618 return "f64";
1619 case Type::PointerTyID:
1620 if (nvptxSubtarget.is64Bit())
Justin Holewinski0497ab12013-03-30 14:29:21 +00001621 if (useB4PTR)
1622 return "b64";
1623 else
1624 return "u64";
1625 else if (useB4PTR)
1626 return "b32";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001627 else
Justin Holewinski0497ab12013-03-30 14:29:21 +00001628 return "u32";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001629 }
1630 llvm_unreachable("unexpected type");
Craig Topper062a2ba2014-04-25 05:30:21 +00001631 return nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001632}
1633
Justin Holewinski0497ab12013-03-30 14:29:21 +00001634void NVPTXAsmPrinter::emitPTXGlobalVariable(const GlobalVariable *GVar,
Justin Holewinskiae556d32012-05-04 20:18:50 +00001635 raw_ostream &O) {
1636
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001637 const DataLayout *TD = TM.getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001638
1639 // GlobalVariables are always constant pointers themselves.
1640 const PointerType *PTy = GVar->getType();
1641 Type *ETy = PTy->getElementType();
1642
1643 O << ".";
1644 emitPTXAddressSpace(PTy->getAddressSpace(), O);
1645 if (GVar->getAlignment() == 0)
1646 O << " .align " << (int) TD->getPrefTypeAlignment(ETy);
1647 else
1648 O << " .align " << GVar->getAlignment();
1649
Rafael Espindola08013342013-12-07 19:34:20 +00001650 if (ETy->isSingleValueType()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001651 O << " .";
1652 O << getPTXFundamentalTypeStr(ETy);
1653 O << " ";
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00001654 O << *getSymbol(GVar);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001655 return;
1656 }
1657
Justin Holewinski0497ab12013-03-30 14:29:21 +00001658 int64_t ElementSize = 0;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001659
1660 // Although PTX has direct support for struct type and array type and LLVM IR
1661 // is very similar to PTX, the LLVM CodeGen does not support for targets that
1662 // support these high level field accesses. Structs and arrays are lowered
1663 // into arrays of bytes.
1664 switch (ETy->getTypeID()) {
1665 case Type::StructTyID:
1666 case Type::ArrayTyID:
1667 case Type::VectorTyID:
1668 ElementSize = TD->getTypeStoreSize(ETy);
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00001669 O << " .b8 " << *getSymbol(GVar) << "[";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001670 if (ElementSize) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001671 O << itostr(ElementSize);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001672 }
1673 O << "]";
1674 break;
1675 default:
Craig Topper2a30d782014-06-18 05:05:13 +00001676 llvm_unreachable("type not supported yet");
Justin Holewinskiae556d32012-05-04 20:18:50 +00001677 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001678 return;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001679}
1680
Justin Holewinski0497ab12013-03-30 14:29:21 +00001681static unsigned int getOpenCLAlignment(const DataLayout *TD, Type *Ty) {
Rafael Espindola08013342013-12-07 19:34:20 +00001682 if (Ty->isSingleValueType())
Justin Holewinskiae556d32012-05-04 20:18:50 +00001683 return TD->getPrefTypeAlignment(Ty);
1684
1685 const ArrayType *ATy = dyn_cast<ArrayType>(Ty);
1686 if (ATy)
1687 return getOpenCLAlignment(TD, ATy->getElementType());
1688
1689 const VectorType *VTy = dyn_cast<VectorType>(Ty);
1690 if (VTy) {
1691 Type *ETy = VTy->getElementType();
1692 unsigned int numE = VTy->getNumElements();
1693 unsigned int alignE = TD->getPrefTypeAlignment(ETy);
1694 if (numE == 3)
Justin Holewinski0497ab12013-03-30 14:29:21 +00001695 return 4 * alignE;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001696 else
Justin Holewinski0497ab12013-03-30 14:29:21 +00001697 return numE * alignE;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001698 }
1699
1700 const StructType *STy = dyn_cast<StructType>(Ty);
1701 if (STy) {
1702 unsigned int alignStruct = 1;
1703 // Go through each element of the struct and find the
1704 // largest alignment.
Justin Holewinski0497ab12013-03-30 14:29:21 +00001705 for (unsigned i = 0, e = STy->getNumElements(); i != e; i++) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001706 Type *ETy = STy->getElementType(i);
1707 unsigned int align = getOpenCLAlignment(TD, ETy);
1708 if (align > alignStruct)
1709 alignStruct = align;
1710 }
1711 return alignStruct;
1712 }
1713
1714 const FunctionType *FTy = dyn_cast<FunctionType>(Ty);
1715 if (FTy)
Chandler Carruth5da3f052012-11-01 09:14:31 +00001716 return TD->getPointerPrefAlignment();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001717 return TD->getPrefTypeAlignment(Ty);
1718}
1719
1720void NVPTXAsmPrinter::printParamName(Function::const_arg_iterator I,
1721 int paramIndex, raw_ostream &O) {
1722 if ((nvptxSubtarget.getDrvInterface() == NVPTX::NVCL) ||
1723 (nvptxSubtarget.getDrvInterface() == NVPTX::CUDA))
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00001724 O << *getSymbol(I->getParent()) << "_param_" << paramIndex;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001725 else {
1726 std::string argName = I->getName();
1727 const char *p = argName.c_str();
1728 while (*p) {
1729 if (*p == '.')
1730 O << "_";
1731 else
1732 O << *p;
1733 p++;
1734 }
1735 }
1736}
1737
1738void NVPTXAsmPrinter::printParamName(int paramIndex, raw_ostream &O) {
1739 Function::const_arg_iterator I, E;
1740 int i = 0;
1741
1742 if ((nvptxSubtarget.getDrvInterface() == NVPTX::NVCL) ||
1743 (nvptxSubtarget.getDrvInterface() == NVPTX::CUDA)) {
1744 O << *CurrentFnSym << "_param_" << paramIndex;
1745 return;
1746 }
1747
1748 for (I = F->arg_begin(), E = F->arg_end(); I != E; ++I, i++) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001749 if (i == paramIndex) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001750 printParamName(I, paramIndex, O);
1751 return;
1752 }
1753 }
1754 llvm_unreachable("paramIndex out of bound");
1755}
1756
Justin Holewinski0497ab12013-03-30 14:29:21 +00001757void NVPTXAsmPrinter::emitFunctionParamList(const Function *F, raw_ostream &O) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001758 const DataLayout *TD = TM.getDataLayout();
Bill Wendlinge94d8432012-12-07 23:16:57 +00001759 const AttributeSet &PAL = F->getAttributes();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001760 const TargetLowering *TLI = TM.getTargetLowering();
1761 Function::const_arg_iterator I, E;
1762 unsigned paramIndex = 0;
1763 bool first = true;
1764 bool isKernelFunc = llvm::isKernelFunction(*F);
1765 bool isABI = (nvptxSubtarget.getSmVersion() >= 20);
1766 MVT thePointerTy = TLI->getPointerTy();
1767
1768 O << "(\n";
1769
1770 for (I = F->arg_begin(), E = F->arg_end(); I != E; ++I, paramIndex++) {
Justin Holewinskie9884092013-03-24 21:17:47 +00001771 Type *Ty = I->getType();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001772
1773 if (!first)
1774 O << ",\n";
1775
1776 first = false;
1777
1778 // Handle image/sampler parameters
Justin Holewinski30d56a72014-04-09 15:39:15 +00001779 if (isKernelFunction(*F)) {
1780 if (isSampler(*I) || isImage(*I)) {
1781 if (isImage(*I)) {
1782 std::string sname = I->getName();
1783 if (isImageWriteOnly(*I) || isImageReadWrite(*I)) {
1784 if (nvptxSubtarget.hasImageHandles())
1785 O << "\t.param .u64 .ptr .surfref ";
1786 else
1787 O << "\t.param .surfref ";
1788 O << *CurrentFnSym << "_param_" << paramIndex;
1789 }
1790 else { // Default image is read_only
1791 if (nvptxSubtarget.hasImageHandles())
1792 O << "\t.param .u64 .ptr .texref ";
1793 else
1794 O << "\t.param .texref ";
1795 O << *CurrentFnSym << "_param_" << paramIndex;
1796 }
1797 } else {
1798 if (nvptxSubtarget.hasImageHandles())
1799 O << "\t.param .u64 .ptr .samplerref ";
1800 else
1801 O << "\t.param .samplerref ";
1802 O << *CurrentFnSym << "_param_" << paramIndex;
1803 }
1804 continue;
1805 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001806 }
1807
Justin Holewinski0497ab12013-03-30 14:29:21 +00001808 if (PAL.hasAttribute(paramIndex + 1, Attribute::ByVal) == false) {
Gautam Chakrabarti2c283402014-01-28 18:35:29 +00001809 if (Ty->isAggregateType() || Ty->isVectorTy()) {
1810 // Just print .param .align <a> .b8 .param[size];
Justin Holewinskie9884092013-03-24 21:17:47 +00001811 // <a> = PAL.getparamalignment
1812 // size = typeallocsize of element type
Justin Holewinski0497ab12013-03-30 14:29:21 +00001813 unsigned align = PAL.getParamAlignment(paramIndex + 1);
Justin Holewinskie9884092013-03-24 21:17:47 +00001814 if (align == 0)
1815 align = TD->getABITypeAlignment(Ty);
1816
1817 unsigned sz = TD->getTypeAllocSize(Ty);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001818 O << "\t.param .align " << align << " .b8 ";
Justin Holewinskie9884092013-03-24 21:17:47 +00001819 printParamName(I, paramIndex, O);
1820 O << "[" << sz << "]";
1821
1822 continue;
1823 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001824 // Just a scalar
1825 const PointerType *PTy = dyn_cast<PointerType>(Ty);
1826 if (isKernelFunc) {
1827 if (PTy) {
1828 // Special handling for pointer arguments to kernel
1829 O << "\t.param .u" << thePointerTy.getSizeInBits() << " ";
1830
1831 if (nvptxSubtarget.getDrvInterface() != NVPTX::CUDA) {
1832 Type *ETy = PTy->getElementType();
1833 int addrSpace = PTy->getAddressSpace();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001834 switch (addrSpace) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001835 default:
1836 O << ".ptr ";
1837 break;
Justin Holewinskib96d1392013-06-10 13:29:47 +00001838 case llvm::ADDRESS_SPACE_CONST:
Justin Holewinskiae556d32012-05-04 20:18:50 +00001839 O << ".ptr .const ";
1840 break;
1841 case llvm::ADDRESS_SPACE_SHARED:
1842 O << ".ptr .shared ";
1843 break;
1844 case llvm::ADDRESS_SPACE_GLOBAL:
Justin Holewinskiae556d32012-05-04 20:18:50 +00001845 O << ".ptr .global ";
1846 break;
1847 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001848 O << ".align " << (int) getOpenCLAlignment(TD, ETy) << " ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001849 }
1850 printParamName(I, paramIndex, O);
1851 continue;
1852 }
1853
1854 // non-pointer scalar to kernel func
Justin Holewinski700b6fa2013-05-20 12:13:28 +00001855 O << "\t.param .";
1856 // Special case: predicate operands become .u8 types
1857 if (Ty->isIntegerTy(1))
1858 O << "u8";
1859 else
1860 O << getPTXFundamentalTypeStr(Ty);
1861 O << " ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001862 printParamName(I, paramIndex, O);
1863 continue;
1864 }
1865 // Non-kernel function, just print .param .b<size> for ABI
Alp Tokerf907b892013-12-05 05:44:44 +00001866 // and .reg .b<size> for non-ABI
Justin Holewinskiae556d32012-05-04 20:18:50 +00001867 unsigned sz = 0;
1868 if (isa<IntegerType>(Ty)) {
1869 sz = cast<IntegerType>(Ty)->getBitWidth();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001870 if (sz < 32)
1871 sz = 32;
1872 } else if (isa<PointerType>(Ty))
Justin Holewinskiae556d32012-05-04 20:18:50 +00001873 sz = thePointerTy.getSizeInBits();
1874 else
1875 sz = Ty->getPrimitiveSizeInBits();
1876 if (isABI)
1877 O << "\t.param .b" << sz << " ";
1878 else
1879 O << "\t.reg .b" << sz << " ";
1880 printParamName(I, paramIndex, O);
1881 continue;
1882 }
1883
1884 // param has byVal attribute. So should be a pointer
1885 const PointerType *PTy = dyn_cast<PointerType>(Ty);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001886 assert(PTy && "Param with byval attribute should be a pointer type");
Justin Holewinskiae556d32012-05-04 20:18:50 +00001887 Type *ETy = PTy->getElementType();
1888
1889 if (isABI || isKernelFunc) {
Gautam Chakrabarti2c283402014-01-28 18:35:29 +00001890 // Just print .param .align <a> .b8 .param[size];
Justin Holewinskiae556d32012-05-04 20:18:50 +00001891 // <a> = PAL.getparamalignment
1892 // size = typeallocsize of element type
Justin Holewinski0497ab12013-03-30 14:29:21 +00001893 unsigned align = PAL.getParamAlignment(paramIndex + 1);
Justin Holewinski2dc9d072012-11-09 23:50:24 +00001894 if (align == 0)
1895 align = TD->getABITypeAlignment(ETy);
1896
Justin Holewinskiae556d32012-05-04 20:18:50 +00001897 unsigned sz = TD->getTypeAllocSize(ETy);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001898 O << "\t.param .align " << align << " .b8 ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001899 printParamName(I, paramIndex, O);
1900 O << "[" << sz << "]";
1901 continue;
1902 } else {
1903 // Split the ETy into constituent parts and
1904 // print .param .b<size> <name> for each part.
1905 // Further, if a part is vector, print the above for
1906 // each vector element.
1907 SmallVector<EVT, 16> vtparts;
1908 ComputeValueVTs(*TLI, ETy, vtparts);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001909 for (unsigned i = 0, e = vtparts.size(); i != e; ++i) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001910 unsigned elems = 1;
1911 EVT elemtype = vtparts[i];
1912 if (vtparts[i].isVector()) {
1913 elems = vtparts[i].getVectorNumElements();
1914 elemtype = vtparts[i].getVectorElementType();
1915 }
1916
Justin Holewinski0497ab12013-03-30 14:29:21 +00001917 for (unsigned j = 0, je = elems; j != je; ++j) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001918 unsigned sz = elemtype.getSizeInBits();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001919 if (elemtype.isInteger() && (sz < 32))
1920 sz = 32;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001921 O << "\t.reg .b" << sz << " ";
1922 printParamName(I, paramIndex, O);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001923 if (j < je - 1)
1924 O << ",\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001925 ++paramIndex;
1926 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001927 if (i < e - 1)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001928 O << ",\n";
1929 }
1930 --paramIndex;
1931 continue;
1932 }
1933 }
1934
1935 O << "\n)\n";
1936}
1937
1938void NVPTXAsmPrinter::emitFunctionParamList(const MachineFunction &MF,
1939 raw_ostream &O) {
1940 const Function *F = MF.getFunction();
1941 emitFunctionParamList(F, O);
1942}
1943
Justin Holewinski0497ab12013-03-30 14:29:21 +00001944void NVPTXAsmPrinter::setAndEmitFunctionVirtualRegisters(
1945 const MachineFunction &MF) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001946 SmallString<128> Str;
1947 raw_svector_ostream O(Str);
1948
1949 // Map the global virtual register number to a register class specific
1950 // virtual register number starting from 1 with that class.
1951 const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
1952 //unsigned numRegClasses = TRI->getNumRegClasses();
1953
1954 // Emit the Fake Stack Object
1955 const MachineFrameInfo *MFI = MF.getFrameInfo();
1956 int NumBytes = (int) MFI->getStackSize();
1957 if (NumBytes) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001958 O << "\t.local .align " << MFI->getMaxAlignment() << " .b8 \t" << DEPOTNAME
1959 << getFunctionNumber() << "[" << NumBytes << "];\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001960 if (nvptxSubtarget.is64Bit()) {
1961 O << "\t.reg .b64 \t%SP;\n";
1962 O << "\t.reg .b64 \t%SPL;\n";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001963 } else {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001964 O << "\t.reg .b32 \t%SP;\n";
1965 O << "\t.reg .b32 \t%SPL;\n";
1966 }
1967 }
1968
1969 // Go through all virtual registers to establish the mapping between the
1970 // global virtual
1971 // register number and the per class virtual register number.
1972 // We use the per class virtual register number in the ptx output.
1973 unsigned int numVRs = MRI->getNumVirtRegs();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001974 for (unsigned i = 0; i < numVRs; i++) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001975 unsigned int vr = TRI->index2VirtReg(i);
1976 const TargetRegisterClass *RC = MRI->getRegClass(vr);
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +00001977 DenseMap<unsigned, unsigned> &regmap = VRegMapping[RC];
Justin Holewinskiae556d32012-05-04 20:18:50 +00001978 int n = regmap.size();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001979 regmap.insert(std::make_pair(vr, n + 1));
Justin Holewinskiae556d32012-05-04 20:18:50 +00001980 }
1981
1982 // Emit register declarations
1983 // @TODO: Extract out the real register usage
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +00001984 // O << "\t.reg .pred %p<" << NVPTXNumRegisters << ">;\n";
1985 // O << "\t.reg .s16 %rc<" << NVPTXNumRegisters << ">;\n";
1986 // O << "\t.reg .s16 %rs<" << NVPTXNumRegisters << ">;\n";
1987 // O << "\t.reg .s32 %r<" << NVPTXNumRegisters << ">;\n";
1988 // O << "\t.reg .s64 %rl<" << NVPTXNumRegisters << ">;\n";
1989 // O << "\t.reg .f32 %f<" << NVPTXNumRegisters << ">;\n";
1990 // O << "\t.reg .f64 %fl<" << NVPTXNumRegisters << ">;\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001991
1992 // Emit declaration of the virtual registers or 'physical' registers for
1993 // each register class
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +00001994 for (unsigned i=0; i< TRI->getNumRegClasses(); i++) {
1995 const TargetRegisterClass *RC = TRI->getRegClass(i);
1996 DenseMap<unsigned, unsigned> &regmap = VRegMapping[RC];
1997 std::string rcname = getNVPTXRegClassName(RC);
1998 std::string rcStr = getNVPTXRegClassStr(RC);
1999 int n = regmap.size();
Justin Holewinskiae556d32012-05-04 20:18:50 +00002000
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +00002001 // Only declare those registers that may be used.
2002 if (n) {
2003 O << "\t.reg " << rcname << " \t" << rcStr << "<" << (n+1)
2004 << ">;\n";
2005 }
2006 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00002007
2008 OutStreamer.EmitRawText(O.str());
2009}
2010
Justin Holewinskiae556d32012-05-04 20:18:50 +00002011void NVPTXAsmPrinter::printFPConstant(const ConstantFP *Fp, raw_ostream &O) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002012 APFloat APF = APFloat(Fp->getValueAPF()); // make a copy
Justin Holewinskiae556d32012-05-04 20:18:50 +00002013 bool ignored;
2014 unsigned int numHex;
2015 const char *lead;
2016
Justin Holewinski0497ab12013-03-30 14:29:21 +00002017 if (Fp->getType()->getTypeID() == Type::FloatTyID) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002018 numHex = 8;
2019 lead = "0f";
Justin Holewinski0497ab12013-03-30 14:29:21 +00002020 APF.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &ignored);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002021 } else if (Fp->getType()->getTypeID() == Type::DoubleTyID) {
2022 numHex = 16;
2023 lead = "0d";
Justin Holewinski0497ab12013-03-30 14:29:21 +00002024 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &ignored);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002025 } else
2026 llvm_unreachable("unsupported fp type");
2027
2028 APInt API = APF.bitcastToAPInt();
2029 std::string hexstr(utohexstr(API.getZExtValue()));
2030 O << lead;
2031 if (hexstr.length() < numHex)
2032 O << std::string(numHex - hexstr.length(), '0');
2033 O << utohexstr(API.getZExtValue());
2034}
2035
Justin Holewinski01f89f02013-05-20 12:13:32 +00002036void NVPTXAsmPrinter::printScalarConstant(const Constant *CPV, raw_ostream &O) {
2037 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002038 O << CI->getValue();
2039 return;
2040 }
Justin Holewinski01f89f02013-05-20 12:13:32 +00002041 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CPV)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002042 printFPConstant(CFP, O);
2043 return;
2044 }
2045 if (isa<ConstantPointerNull>(CPV)) {
2046 O << "0";
2047 return;
2048 }
Justin Holewinski01f89f02013-05-20 12:13:32 +00002049 if (const GlobalValue *GVar = dyn_cast<GlobalValue>(CPV)) {
Justin Holewinski9d852a82014-04-09 15:39:11 +00002050 PointerType *PTy = dyn_cast<PointerType>(GVar->getType());
2051 bool IsNonGenericPointer = false;
2052 if (PTy && PTy->getAddressSpace() != 0) {
2053 IsNonGenericPointer = true;
2054 }
2055 if (EmitGeneric && !isa<Function>(CPV) && !IsNonGenericPointer) {
2056 O << "generic(";
2057 O << *getSymbol(GVar);
2058 O << ")";
2059 } else {
2060 O << *getSymbol(GVar);
2061 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00002062 return;
2063 }
Justin Holewinski01f89f02013-05-20 12:13:32 +00002064 if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) {
2065 const Value *v = Cexpr->stripPointerCasts();
Justin Holewinski9d852a82014-04-09 15:39:11 +00002066 PointerType *PTy = dyn_cast<PointerType>(Cexpr->getType());
2067 bool IsNonGenericPointer = false;
2068 if (PTy && PTy->getAddressSpace() != 0) {
2069 IsNonGenericPointer = true;
2070 }
Justin Holewinski01f89f02013-05-20 12:13:32 +00002071 if (const GlobalValue *GVar = dyn_cast<GlobalValue>(v)) {
Justin Holewinski9d852a82014-04-09 15:39:11 +00002072 if (EmitGeneric && !isa<Function>(v) && !IsNonGenericPointer) {
2073 O << "generic(";
2074 O << *getSymbol(GVar);
2075 O << ")";
2076 } else {
2077 O << *getSymbol(GVar);
2078 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00002079 return;
2080 } else {
2081 O << *LowerConstant(CPV, *this);
2082 return;
2083 }
2084 }
2085 llvm_unreachable("Not scalar type found in printScalarConstant()");
2086}
2087
Justin Holewinski01f89f02013-05-20 12:13:32 +00002088void NVPTXAsmPrinter::bufferLEByte(const Constant *CPV, int Bytes,
Justin Holewinskiae556d32012-05-04 20:18:50 +00002089 AggBuffer *aggBuffer) {
2090
Micah Villmowcdfe20b2012-10-08 16:38:25 +00002091 const DataLayout *TD = TM.getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +00002092
2093 if (isa<UndefValue>(CPV) || CPV->isNullValue()) {
2094 int s = TD->getTypeAllocSize(CPV->getType());
Justin Holewinski0497ab12013-03-30 14:29:21 +00002095 if (s < Bytes)
Justin Holewinskiae556d32012-05-04 20:18:50 +00002096 s = Bytes;
2097 aggBuffer->addZeros(s);
2098 return;
2099 }
2100
2101 unsigned char *ptr;
2102 switch (CPV->getType()->getTypeID()) {
2103
2104 case Type::IntegerTyID: {
2105 const Type *ETy = CPV->getType();
Justin Holewinski0497ab12013-03-30 14:29:21 +00002106 if (ETy == Type::getInt8Ty(CPV->getContext())) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002107 unsigned char c =
2108 (unsigned char)(dyn_cast<ConstantInt>(CPV))->getZExtValue();
2109 ptr = &c;
2110 aggBuffer->addBytes(ptr, 1, Bytes);
Justin Holewinski0497ab12013-03-30 14:29:21 +00002111 } else if (ETy == Type::getInt16Ty(CPV->getContext())) {
2112 short int16 = (short)(dyn_cast<ConstantInt>(CPV))->getZExtValue();
2113 ptr = (unsigned char *)&int16;
Justin Holewinskiae556d32012-05-04 20:18:50 +00002114 aggBuffer->addBytes(ptr, 2, Bytes);
Justin Holewinski0497ab12013-03-30 14:29:21 +00002115 } else if (ETy == Type::getInt32Ty(CPV->getContext())) {
Justin Holewinski01f89f02013-05-20 12:13:32 +00002116 if (const ConstantInt *constInt = dyn_cast<ConstantInt>(CPV)) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002117 int int32 = (int)(constInt->getZExtValue());
2118 ptr = (unsigned char *)&int32;
Justin Holewinskiae556d32012-05-04 20:18:50 +00002119 aggBuffer->addBytes(ptr, 4, Bytes);
2120 break;
Justin Holewinski01f89f02013-05-20 12:13:32 +00002121 } else if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) {
2122 if (const ConstantInt *constInt = dyn_cast<ConstantInt>(
Justin Holewinski0497ab12013-03-30 14:29:21 +00002123 ConstantFoldConstantExpression(Cexpr, TD))) {
2124 int int32 = (int)(constInt->getZExtValue());
2125 ptr = (unsigned char *)&int32;
Justin Holewinskiae556d32012-05-04 20:18:50 +00002126 aggBuffer->addBytes(ptr, 4, Bytes);
2127 break;
2128 }
2129 if (Cexpr->getOpcode() == Instruction::PtrToInt) {
2130 Value *v = Cexpr->getOperand(0)->stripPointerCasts();
2131 aggBuffer->addSymbol(v);
2132 aggBuffer->addZeros(4);
2133 break;
2134 }
2135 }
Craig Topperbdf39a42012-05-24 07:02:50 +00002136 llvm_unreachable("unsupported integer const type");
Justin Holewinski0497ab12013-03-30 14:29:21 +00002137 } else if (ETy == Type::getInt64Ty(CPV->getContext())) {
Justin Holewinski01f89f02013-05-20 12:13:32 +00002138 if (const ConstantInt *constInt = dyn_cast<ConstantInt>(CPV)) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002139 long long int64 = (long long)(constInt->getZExtValue());
2140 ptr = (unsigned char *)&int64;
Justin Holewinskiae556d32012-05-04 20:18:50 +00002141 aggBuffer->addBytes(ptr, 8, Bytes);
2142 break;
Justin Holewinski01f89f02013-05-20 12:13:32 +00002143 } else if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) {
2144 if (const ConstantInt *constInt = dyn_cast<ConstantInt>(
Justin Holewinski0497ab12013-03-30 14:29:21 +00002145 ConstantFoldConstantExpression(Cexpr, TD))) {
2146 long long int64 = (long long)(constInt->getZExtValue());
2147 ptr = (unsigned char *)&int64;
Justin Holewinskiae556d32012-05-04 20:18:50 +00002148 aggBuffer->addBytes(ptr, 8, Bytes);
2149 break;
2150 }
2151 if (Cexpr->getOpcode() == Instruction::PtrToInt) {
2152 Value *v = Cexpr->getOperand(0)->stripPointerCasts();
2153 aggBuffer->addSymbol(v);
2154 aggBuffer->addZeros(8);
2155 break;
2156 }
2157 }
2158 llvm_unreachable("unsupported integer const type");
Craig Topperbdf39a42012-05-24 07:02:50 +00002159 } else
Justin Holewinskiae556d32012-05-04 20:18:50 +00002160 llvm_unreachable("unsupported integer const type");
2161 break;
2162 }
2163 case Type::FloatTyID:
2164 case Type::DoubleTyID: {
Justin Holewinski01f89f02013-05-20 12:13:32 +00002165 const ConstantFP *CFP = dyn_cast<ConstantFP>(CPV);
Justin Holewinski0497ab12013-03-30 14:29:21 +00002166 const Type *Ty = CFP->getType();
Justin Holewinskiae556d32012-05-04 20:18:50 +00002167 if (Ty == Type::getFloatTy(CPV->getContext())) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002168 float float32 = (float) CFP->getValueAPF().convertToFloat();
2169 ptr = (unsigned char *)&float32;
Justin Holewinskiae556d32012-05-04 20:18:50 +00002170 aggBuffer->addBytes(ptr, 4, Bytes);
2171 } else if (Ty == Type::getDoubleTy(CPV->getContext())) {
2172 double float64 = CFP->getValueAPF().convertToDouble();
Justin Holewinski0497ab12013-03-30 14:29:21 +00002173 ptr = (unsigned char *)&float64;
Justin Holewinskiae556d32012-05-04 20:18:50 +00002174 aggBuffer->addBytes(ptr, 8, Bytes);
Justin Holewinski0497ab12013-03-30 14:29:21 +00002175 } else {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002176 llvm_unreachable("unsupported fp const type");
2177 }
2178 break;
2179 }
2180 case Type::PointerTyID: {
Justin Holewinski01f89f02013-05-20 12:13:32 +00002181 if (const GlobalValue *GVar = dyn_cast<GlobalValue>(CPV)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002182 aggBuffer->addSymbol(GVar);
Justin Holewinski01f89f02013-05-20 12:13:32 +00002183 } else if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) {
2184 const Value *v = Cexpr->stripPointerCasts();
Justin Holewinskiae556d32012-05-04 20:18:50 +00002185 aggBuffer->addSymbol(v);
2186 }
2187 unsigned int s = TD->getTypeAllocSize(CPV->getType());
2188 aggBuffer->addZeros(s);
2189 break;
2190 }
2191
2192 case Type::ArrayTyID:
2193 case Type::VectorTyID:
2194 case Type::StructTyID: {
2195 if (isa<ConstantArray>(CPV) || isa<ConstantVector>(CPV) ||
Justin Holewinski95564bd2013-09-19 12:51:46 +00002196 isa<ConstantStruct>(CPV) || isa<ConstantDataSequential>(CPV)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002197 int ElementSize = TD->getTypeAllocSize(CPV->getType());
2198 bufferAggregateConstant(CPV, aggBuffer);
Justin Holewinski0497ab12013-03-30 14:29:21 +00002199 if (Bytes > ElementSize)
2200 aggBuffer->addZeros(Bytes - ElementSize);
2201 } else if (isa<ConstantAggregateZero>(CPV))
Justin Holewinskiae556d32012-05-04 20:18:50 +00002202 aggBuffer->addZeros(Bytes);
2203 else
2204 llvm_unreachable("Unexpected Constant type");
2205 break;
2206 }
2207
2208 default:
2209 llvm_unreachable("unsupported type");
2210 }
2211}
2212
Justin Holewinski01f89f02013-05-20 12:13:32 +00002213void NVPTXAsmPrinter::bufferAggregateConstant(const Constant *CPV,
Justin Holewinskiae556d32012-05-04 20:18:50 +00002214 AggBuffer *aggBuffer) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +00002215 const DataLayout *TD = TM.getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +00002216 int Bytes;
2217
2218 // Old constants
2219 if (isa<ConstantArray>(CPV) || isa<ConstantVector>(CPV)) {
2220 if (CPV->getNumOperands())
2221 for (unsigned i = 0, e = CPV->getNumOperands(); i != e; ++i)
2222 bufferLEByte(cast<Constant>(CPV->getOperand(i)), 0, aggBuffer);
2223 return;
2224 }
2225
2226 if (const ConstantDataSequential *CDS =
Justin Holewinski0497ab12013-03-30 14:29:21 +00002227 dyn_cast<ConstantDataSequential>(CPV)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002228 if (CDS->getNumElements())
2229 for (unsigned i = 0; i < CDS->getNumElements(); ++i)
2230 bufferLEByte(cast<Constant>(CDS->getElementAsConstant(i)), 0,
2231 aggBuffer);
2232 return;
2233 }
2234
Justin Holewinskiae556d32012-05-04 20:18:50 +00002235 if (isa<ConstantStruct>(CPV)) {
2236 if (CPV->getNumOperands()) {
2237 StructType *ST = cast<StructType>(CPV->getType());
2238 for (unsigned i = 0, e = CPV->getNumOperands(); i != e; ++i) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002239 if (i == (e - 1))
Justin Holewinskiae556d32012-05-04 20:18:50 +00002240 Bytes = TD->getStructLayout(ST)->getElementOffset(0) +
Justin Holewinski0497ab12013-03-30 14:29:21 +00002241 TD->getTypeAllocSize(ST) -
2242 TD->getStructLayout(ST)->getElementOffset(i);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002243 else
Justin Holewinski0497ab12013-03-30 14:29:21 +00002244 Bytes = TD->getStructLayout(ST)->getElementOffset(i + 1) -
2245 TD->getStructLayout(ST)->getElementOffset(i);
2246 bufferLEByte(cast<Constant>(CPV->getOperand(i)), Bytes, aggBuffer);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002247 }
2248 }
2249 return;
2250 }
Craig Topperbdf39a42012-05-24 07:02:50 +00002251 llvm_unreachable("unsupported constant type in printAggregateConstant()");
Justin Holewinskiae556d32012-05-04 20:18:50 +00002252}
2253
2254// buildTypeNameMap - Run through symbol table looking for type names.
2255//
2256
Justin Holewinskiae556d32012-05-04 20:18:50 +00002257bool NVPTXAsmPrinter::isImageType(const Type *Ty) {
2258
2259 std::map<const Type *, std::string>::iterator PI = TypeNameMap.find(Ty);
2260
Justin Holewinski0497ab12013-03-30 14:29:21 +00002261 if (PI != TypeNameMap.end() && (!PI->second.compare("struct._image1d_t") ||
2262 !PI->second.compare("struct._image2d_t") ||
2263 !PI->second.compare("struct._image3d_t")))
Justin Holewinskiae556d32012-05-04 20:18:50 +00002264 return true;
2265
2266 return false;
2267}
2268
Justin Holewinskiae556d32012-05-04 20:18:50 +00002269
Justin Holewinski0497ab12013-03-30 14:29:21 +00002270bool NVPTXAsmPrinter::ignoreLoc(const MachineInstr &MI) {
2271 switch (MI.getOpcode()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002272 default:
2273 return false;
Justin Holewinski0497ab12013-03-30 14:29:21 +00002274 case NVPTX::CallArgBeginInst:
2275 case NVPTX::CallArgEndInst0:
2276 case NVPTX::CallArgEndInst1:
2277 case NVPTX::CallArgF32:
2278 case NVPTX::CallArgF64:
2279 case NVPTX::CallArgI16:
2280 case NVPTX::CallArgI32:
2281 case NVPTX::CallArgI32imm:
2282 case NVPTX::CallArgI64:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002283 case NVPTX::CallArgParam:
2284 case NVPTX::CallVoidInst:
2285 case NVPTX::CallVoidInstReg:
2286 case NVPTX::Callseq_End:
Justin Holewinskiae556d32012-05-04 20:18:50 +00002287 case NVPTX::CallVoidInstReg64:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002288 case NVPTX::DeclareParamInst:
2289 case NVPTX::DeclareRetMemInst:
2290 case NVPTX::DeclareRetRegInst:
2291 case NVPTX::DeclareRetScalarInst:
2292 case NVPTX::DeclareScalarParamInst:
2293 case NVPTX::DeclareScalarRegInst:
2294 case NVPTX::StoreParamF32:
2295 case NVPTX::StoreParamF64:
2296 case NVPTX::StoreParamI16:
2297 case NVPTX::StoreParamI32:
2298 case NVPTX::StoreParamI64:
2299 case NVPTX::StoreParamI8:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002300 case NVPTX::StoreRetvalF32:
2301 case NVPTX::StoreRetvalF64:
2302 case NVPTX::StoreRetvalI16:
2303 case NVPTX::StoreRetvalI32:
2304 case NVPTX::StoreRetvalI64:
2305 case NVPTX::StoreRetvalI8:
2306 case NVPTX::LastCallArgF32:
2307 case NVPTX::LastCallArgF64:
2308 case NVPTX::LastCallArgI16:
2309 case NVPTX::LastCallArgI32:
2310 case NVPTX::LastCallArgI32imm:
2311 case NVPTX::LastCallArgI64:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002312 case NVPTX::LastCallArgParam:
2313 case NVPTX::LoadParamMemF32:
2314 case NVPTX::LoadParamMemF64:
2315 case NVPTX::LoadParamMemI16:
2316 case NVPTX::LoadParamMemI32:
2317 case NVPTX::LoadParamMemI64:
2318 case NVPTX::LoadParamMemI8:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002319 case NVPTX::PrototypeInst:
2320 case NVPTX::DBG_VALUE:
Justin Holewinskiae556d32012-05-04 20:18:50 +00002321 return true;
2322 }
2323 return false;
2324}
2325
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002326/// PrintAsmOperand - Print out an operand for an inline asm expression.
2327///
2328bool NVPTXAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
2329 unsigned AsmVariant,
2330 const char *ExtraCode, raw_ostream &O) {
2331 if (ExtraCode && ExtraCode[0]) {
2332 if (ExtraCode[1] != 0)
2333 return true; // Unknown modifier.
2334
2335 switch (ExtraCode[0]) {
2336 default:
2337 // See if this is a generic print operand
2338 return AsmPrinter::PrintAsmOperand(MI, OpNo, AsmVariant, ExtraCode, O);
2339 case 'r':
2340 break;
2341 }
2342 }
2343
2344 printOperand(MI, OpNo, O);
2345
2346 return false;
2347}
2348
2349bool NVPTXAsmPrinter::PrintAsmMemoryOperand(
2350 const MachineInstr *MI, unsigned OpNo, unsigned AsmVariant,
2351 const char *ExtraCode, raw_ostream &O) {
2352 if (ExtraCode && ExtraCode[0])
2353 return true; // Unknown modifier
2354
2355 O << '[';
2356 printMemOperand(MI, OpNo, O);
2357 O << ']';
2358
2359 return false;
2360}
2361
2362void NVPTXAsmPrinter::printOperand(const MachineInstr *MI, int opNum,
2363 raw_ostream &O, const char *Modifier) {
2364 const MachineOperand &MO = MI->getOperand(opNum);
2365 switch (MO.getType()) {
2366 case MachineOperand::MO_Register:
2367 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
2368 if (MO.getReg() == NVPTX::VRDepot)
2369 O << DEPOTNAME << getFunctionNumber();
2370 else
2371 O << NVPTXInstPrinter::getRegisterName(MO.getReg());
2372 } else {
Justin Holewinski660597d2013-10-11 12:39:36 +00002373 emitVirtualRegister(MO.getReg(), O);
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002374 }
2375 return;
2376
2377 case MachineOperand::MO_Immediate:
2378 if (!Modifier)
2379 O << MO.getImm();
2380 else if (strstr(Modifier, "vec") == Modifier)
2381 printVecModifiedImmediate(MO, Modifier, O);
2382 else
2383 llvm_unreachable(
2384 "Don't know how to handle modifier on immediate operand");
2385 return;
2386
2387 case MachineOperand::MO_FPImmediate:
2388 printFPConstant(MO.getFPImm(), O);
2389 break;
2390
2391 case MachineOperand::MO_GlobalAddress:
Eli Bendersky6a0ccfb2014-03-31 16:11:57 +00002392 O << *getSymbol(MO.getGlobal());
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002393 break;
2394
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002395 case MachineOperand::MO_MachineBasicBlock:
2396 O << *MO.getMBB()->getSymbol();
2397 return;
2398
2399 default:
2400 llvm_unreachable("Operand type not supported.");
2401 }
2402}
2403
2404void NVPTXAsmPrinter::printMemOperand(const MachineInstr *MI, int opNum,
2405 raw_ostream &O, const char *Modifier) {
2406 printOperand(MI, opNum, O);
2407
2408 if (Modifier && !strcmp(Modifier, "add")) {
2409 O << ", ";
2410 printOperand(MI, opNum + 1, O);
2411 } else {
2412 if (MI->getOperand(opNum + 1).isImm() &&
2413 MI->getOperand(opNum + 1).getImm() == 0)
2414 return; // don't print ',0' or '+0'
2415 O << "+";
2416 printOperand(MI, opNum + 1, O);
2417 }
2418}
2419
2420
Justin Holewinskiae556d32012-05-04 20:18:50 +00002421// Force static initialization.
2422extern "C" void LLVMInitializeNVPTXBackendAsmPrinter() {
2423 RegisterAsmPrinter<NVPTXAsmPrinter> X(TheNVPTXTarget32);
2424 RegisterAsmPrinter<NVPTXAsmPrinter> Y(TheNVPTXTarget64);
2425}
2426
Justin Holewinskiae556d32012-05-04 20:18:50 +00002427void NVPTXAsmPrinter::emitSrcInText(StringRef filename, unsigned line) {
2428 std::stringstream temp;
Justin Holewinski0497ab12013-03-30 14:29:21 +00002429 LineReader *reader = this->getReader(filename.str());
Justin Holewinskiae556d32012-05-04 20:18:50 +00002430 temp << "\n//";
2431 temp << filename.str();
2432 temp << ":";
2433 temp << line;
2434 temp << " ";
2435 temp << reader->readLine(line);
2436 temp << "\n";
2437 this->OutStreamer.EmitRawText(Twine(temp.str()));
2438}
2439
Justin Holewinskiae556d32012-05-04 20:18:50 +00002440LineReader *NVPTXAsmPrinter::getReader(std::string filename) {
Craig Topper062a2ba2014-04-25 05:30:21 +00002441 if (!reader) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002442 reader = new LineReader(filename);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002443 }
2444
2445 if (reader->fileName() != filename) {
2446 delete reader;
Justin Holewinski0497ab12013-03-30 14:29:21 +00002447 reader = new LineReader(filename);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002448 }
2449
2450 return reader;
2451}
2452
Justin Holewinski0497ab12013-03-30 14:29:21 +00002453std::string LineReader::readLine(unsigned lineNum) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002454 if (lineNum < theCurLine) {
2455 theCurLine = 0;
Justin Holewinski0497ab12013-03-30 14:29:21 +00002456 fstr.seekg(0, std::ios::beg);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002457 }
2458 while (theCurLine < lineNum) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002459 fstr.getline(buff, 500);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002460 theCurLine++;
2461 }
2462 return buff;
2463}
2464
2465// Force static initialization.
2466extern "C" void LLVMInitializeNVPTXAsmPrinter() {
2467 RegisterAsmPrinter<NVPTXAsmPrinter> X(TheNVPTXTarget32);
2468 RegisterAsmPrinter<NVPTXAsmPrinter> Y(TheNVPTXTarget64);
2469}