blob: 2fd0689b1aa82974bc727f9766ad88465fae0bb8 [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
Chandler Carruth6bda14b2017-06-06 11:49:48 +000015#include "NVPTXAsmPrinter.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000016#include "InstPrinter/NVPTXInstPrinter.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000017#include "MCTargetDesc/NVPTXBaseInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "MCTargetDesc/NVPTXMCAsmInfo.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000019#include "NVPTX.h"
Justin Holewinskia2a63d22013-08-06 14:13:27 +000020#include "NVPTXMCExpr.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000021#include "NVPTXMachineFunctionInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "NVPTXRegisterInfo.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000023#include "NVPTXSubtarget.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "NVPTXTargetMachine.h"
25#include "NVPTXUtilities.h"
26#include "cl_common_defines.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000027#include "llvm/ADT/APFloat.h"
28#include "llvm/ADT/APInt.h"
29#include "llvm/ADT/DenseMap.h"
30#include "llvm/ADT/DenseSet.h"
31#include "llvm/ADT/SmallString.h"
32#include "llvm/ADT/SmallVector.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000033#include "llvm/ADT/StringExtras.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000034#include "llvm/ADT/StringRef.h"
35#include "llvm/ADT/Triple.h"
36#include "llvm/ADT/Twine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000037#include "llvm/Analysis/ConstantFolding.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000038#include "llvm/CodeGen/Analysis.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000039#include "llvm/CodeGen/MachineBasicBlock.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000040#include "llvm/CodeGen/MachineFrameInfo.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000041#include "llvm/CodeGen/MachineFunction.h"
42#include "llvm/CodeGen/MachineInstr.h"
Jingyue Wu0220df02015-02-01 02:27:45 +000043#include "llvm/CodeGen/MachineLoopInfo.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000044#include "llvm/CodeGen/MachineModuleInfo.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000045#include "llvm/CodeGen/MachineOperand.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000046#include "llvm/CodeGen/MachineRegisterInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000047#include "llvm/CodeGen/TargetLowering.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000048#include "llvm/CodeGen/TargetRegisterInfo.h"
Craig Topper2fa14362018-03-29 17:21:10 +000049#include "llvm/CodeGen/ValueTypes.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000050#include "llvm/IR/Attributes.h"
51#include "llvm/IR/BasicBlock.h"
52#include "llvm/IR/Constant.h"
53#include "llvm/IR/Constants.h"
54#include "llvm/IR/DataLayout.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000055#include "llvm/IR/DebugInfo.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000056#include "llvm/IR/DebugInfoMetadata.h"
57#include "llvm/IR/DebugLoc.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000058#include "llvm/IR/DerivedTypes.h"
59#include "llvm/IR/Function.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000060#include "llvm/IR/GlobalValue.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000061#include "llvm/IR/GlobalVariable.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000062#include "llvm/IR/Instruction.h"
63#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000064#include "llvm/IR/Module.h"
65#include "llvm/IR/Operator.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000066#include "llvm/IR/Type.h"
67#include "llvm/IR/User.h"
68#include "llvm/MC/MCExpr.h"
Pete Cooper81902a32015-05-15 22:19:42 +000069#include "llvm/MC/MCInst.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000070#include "llvm/MC/MCInstrDesc.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000071#include "llvm/MC/MCStreamer.h"
72#include "llvm/MC/MCSymbol.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000073#include "llvm/Support/Casting.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000074#include "llvm/Support/CommandLine.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000075#include "llvm/Support/ErrorHandling.h"
David Blaikie13e77db2018-03-23 23:58:25 +000076#include "llvm/Support/MachineValueType.h"
Justin Holewinskiae556d32012-05-04 20:18:50 +000077#include "llvm/Support/Path.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000078#include "llvm/Support/TargetRegistry.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000079#include "llvm/Support/raw_ostream.h"
David Blaikie6054e652018-03-23 23:58:19 +000080#include "llvm/Target/TargetLoweringObjectFile.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000081#include "llvm/Target/TargetMachine.h"
Jingyue Wu0220df02015-02-01 02:27:45 +000082#include "llvm/Transforms/Utils/UnrollLoop.h"
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000083#include <cassert>
84#include <cstdint>
85#include <cstring>
86#include <new>
Bill Wendlinge38859d2012-06-28 00:05:13 +000087#include <sstream>
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +000088#include <string>
89#include <utility>
90#include <vector>
91
Justin Holewinskiae556d32012-05-04 20:18:50 +000092using namespace llvm;
93
Justin Holewinskiae556d32012-05-04 20:18:50 +000094#define DEPOTNAME "__local_depot"
95
Eric Christopher80244252018-05-01 00:10:13 +000096static cl::opt<bool>
97EmitLineNumbers("nvptx-emit-line-numbers", cl::Hidden,
98 cl::desc("NVPTX Specific: Emit Line numbers even without -G"),
99 cl::init(true));
100
101static cl::opt<bool>
102InterleaveSrc("nvptx-emit-src", cl::ZeroOrMore, cl::Hidden,
103 cl::desc("NVPTX Specific: Emit source line in ptx file"),
104 cl::init(false));
105
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000106/// DiscoverDependentGlobals - Return a set of GlobalVariables on which \p V
107/// depends.
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000108static void
109DiscoverDependentGlobals(const Value *V,
110 DenseSet<const GlobalVariable *> &Globals) {
Justin Holewinski01f89f02013-05-20 12:13:32 +0000111 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000112 Globals.insert(GV);
113 else {
Justin Holewinski01f89f02013-05-20 12:13:32 +0000114 if (const User *U = dyn_cast<User>(V)) {
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000115 for (unsigned i = 0, e = U->getNumOperands(); i != e; ++i) {
116 DiscoverDependentGlobals(U->getOperand(i), Globals);
117 }
118 }
119 }
120}
Justin Holewinskiae556d32012-05-04 20:18:50 +0000121
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000122/// VisitGlobalVariableForEmission - Add \p GV to the list of GlobalVariable
123/// instances to be emitted, but only after any dependents have been added
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000124/// first.s
125static void
126VisitGlobalVariableForEmission(const GlobalVariable *GV,
127 SmallVectorImpl<const GlobalVariable *> &Order,
128 DenseSet<const GlobalVariable *> &Visited,
129 DenseSet<const GlobalVariable *> &Visiting) {
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000130 // Have we already visited this one?
Justin Holewinski0497ab12013-03-30 14:29:21 +0000131 if (Visited.count(GV))
132 return;
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000133
134 // Do we have a circular dependency?
Benjamin Kramer2c99e412014-10-10 15:32:50 +0000135 if (!Visiting.insert(GV).second)
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000136 report_fatal_error("Circular dependency found in global variable set");
137
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000138 // Make sure we visit all dependents first
Justin Holewinski01f89f02013-05-20 12:13:32 +0000139 DenseSet<const GlobalVariable *> Others;
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000140 for (unsigned i = 0, e = GV->getNumOperands(); i != e; ++i)
141 DiscoverDependentGlobals(GV->getOperand(i), Others);
Justin Holewinski0497ab12013-03-30 14:29:21 +0000142
Justin Holewinski01f89f02013-05-20 12:13:32 +0000143 for (DenseSet<const GlobalVariable *>::iterator I = Others.begin(),
144 E = Others.end();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000145 I != E; ++I)
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000146 VisitGlobalVariableForEmission(*I, Order, Visited, Visiting);
147
148 // Now we can visit ourself
149 Order.push_back(GV);
150 Visited.insert(GV);
151 Visiting.erase(GV);
152}
Justin Holewinskiae556d32012-05-04 20:18:50 +0000153
Eric Christopher80244252018-05-01 00:10:13 +0000154void NVPTXAsmPrinter::emitLineNumberAsDotLoc(const MachineInstr &MI) {
155 if (!EmitLineNumbers)
156 return;
157 if (ignoreLoc(MI))
158 return;
159
160 const DebugLoc &curLoc = MI.getDebugLoc();
161
162 if (!prevDebugLoc && !curLoc)
163 return;
164
165 if (prevDebugLoc == curLoc)
166 return;
167
168 prevDebugLoc = curLoc;
169
170 if (!curLoc)
171 return;
172
173 auto *Scope = cast_or_null<DIScope>(curLoc.getScope());
174 if (!Scope)
175 return;
176
177 StringRef fileName(Scope->getFilename());
178 StringRef dirName(Scope->getDirectory());
179 SmallString<128> FullPathName = dirName;
180 if (!dirName.empty() && !sys::path::is_absolute(fileName)) {
181 sys::path::append(FullPathName, fileName);
182 fileName = FullPathName;
183 }
184
185 if (filenameMap.find(fileName) == filenameMap.end())
186 return;
187
188 // Emit the line from the source file.
189 if (InterleaveSrc)
190 this->emitSrcInText(fileName, curLoc.getLine());
191
192 std::stringstream temp;
193 temp << "\t.loc " << filenameMap[fileName] << " " << curLoc.getLine()
194 << " " << curLoc.getCol();
195 OutStreamer->EmitRawText(temp.str());
196}
197
Justin Holewinskiae556d32012-05-04 20:18:50 +0000198void NVPTXAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Eric Christopher80244252018-05-01 00:10:13 +0000199 SmallString<128> Str;
200 raw_svector_ostream OS(Str);
201 if (static_cast<NVPTXTargetMachine &>(TM).getDrvInterface() == NVPTX::CUDA)
202 emitLineNumberAsDotLoc(*MI);
203
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000204 MCInst Inst;
205 lowerToMCInst(MI, Inst);
Lang Hames9ff69c82015-04-24 19:11:51 +0000206 EmitToStreamer(*OutStreamer, Inst);
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000207}
208
Justin Holewinski30d56a72014-04-09 15:39:15 +0000209// Handle symbol backtracking for targets that do not support image handles
210bool NVPTXAsmPrinter::lowerImageHandleOperand(const MachineInstr *MI,
211 unsigned OpNo, MCOperand &MCOp) {
212 const MachineOperand &MO = MI->getOperand(OpNo);
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000213 const MCInstrDesc &MCID = MI->getDesc();
Justin Holewinski30d56a72014-04-09 15:39:15 +0000214
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000215 if (MCID.TSFlags & NVPTXII::IsTexFlag) {
Justin Holewinski30d56a72014-04-09 15:39:15 +0000216 // This is a texture fetch, so operand 4 is a texref and operand 5 is
217 // a samplerref
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000218 if (OpNo == 4 && MO.isImm()) {
Justin Holewinski30d56a72014-04-09 15:39:15 +0000219 lowerImageHandleSymbol(MO.getImm(), MCOp);
220 return true;
221 }
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000222 if (OpNo == 5 && MO.isImm() && !(MCID.TSFlags & NVPTXII::IsTexModeUnifiedFlag)) {
Justin Holewinski30d56a72014-04-09 15:39:15 +0000223 lowerImageHandleSymbol(MO.getImm(), MCOp);
224 return true;
225 }
226
227 return false;
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000228 } else if (MCID.TSFlags & NVPTXII::IsSuldMask) {
229 unsigned VecSize =
230 1 << (((MCID.TSFlags & NVPTXII::IsSuldMask) >> NVPTXII::IsSuldShift) - 1);
231
232 // For a surface load of vector size N, the Nth operand will be the surfref
233 if (OpNo == VecSize && MO.isImm()) {
Justin Holewinski30d56a72014-04-09 15:39:15 +0000234 lowerImageHandleSymbol(MO.getImm(), MCOp);
235 return true;
236 }
237
238 return false;
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000239 } else if (MCID.TSFlags & NVPTXII::IsSustFlag) {
Justin Holewinski30d56a72014-04-09 15:39:15 +0000240 // This is a surface store, so operand 0 is a surfref
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000241 if (OpNo == 0 && MO.isImm()) {
Justin Holewinski30d56a72014-04-09 15:39:15 +0000242 lowerImageHandleSymbol(MO.getImm(), MCOp);
243 return true;
244 }
245
246 return false;
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000247 } else if (MCID.TSFlags & NVPTXII::IsSurfTexQueryFlag) {
Justin Holewinski30d56a72014-04-09 15:39:15 +0000248 // This is a query, so operand 1 is a surfref/texref
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000249 if (OpNo == 1 && MO.isImm()) {
Justin Holewinski30d56a72014-04-09 15:39:15 +0000250 lowerImageHandleSymbol(MO.getImm(), MCOp);
251 return true;
252 }
253
254 return false;
255 }
Justin Holewinski9a2350e2014-07-17 11:59:04 +0000256
257 return false;
Justin Holewinski30d56a72014-04-09 15:39:15 +0000258}
259
260void NVPTXAsmPrinter::lowerImageHandleSymbol(unsigned Index, MCOperand &MCOp) {
261 // Ewwww
262 TargetMachine &TM = const_cast<TargetMachine&>(MF->getTarget());
263 NVPTXTargetMachine &nvTM = static_cast<NVPTXTargetMachine&>(TM);
264 const NVPTXMachineFunctionInfo *MFI = MF->getInfo<NVPTXMachineFunctionInfo>();
265 const char *Sym = MFI->getImageHandleSymbol(Index);
266 std::string *SymNamePtr =
267 nvTM.getManagedStrPool()->getManagedString(Sym);
Malcolm Parsons06ac79c2016-11-02 16:43:50 +0000268 MCOp = GetSymbolRef(OutContext.getOrCreateSymbol(StringRef(*SymNamePtr)));
Justin Holewinski30d56a72014-04-09 15:39:15 +0000269}
270
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000271void NVPTXAsmPrinter::lowerToMCInst(const MachineInstr *MI, MCInst &OutMI) {
272 OutMI.setOpcode(MI->getOpcode());
Justin Holewinski3d49e5c2013-11-15 12:30:04 +0000273 // Special: Do not mangle symbol operand of CALL_PROTOTYPE
274 if (MI->getOpcode() == NVPTX::CALL_PROTOTYPE) {
275 const MachineOperand &MO = MI->getOperand(0);
Justin Holewinski30d56a72014-04-09 15:39:15 +0000276 OutMI.addOperand(GetSymbolRef(
Jim Grosbach6f482002015-05-18 18:43:14 +0000277 OutContext.getOrCreateSymbol(Twine(MO.getSymbolName()))));
Justin Holewinski3d49e5c2013-11-15 12:30:04 +0000278 return;
279 }
280
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000281 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
282 const MachineOperand &MO = MI->getOperand(i);
283
284 MCOperand MCOp;
Eric Christopher6aad8b12015-02-19 00:08:14 +0000285 if (!nvptxSubtarget->hasImageHandles()) {
Justin Holewinski30d56a72014-04-09 15:39:15 +0000286 if (lowerImageHandleOperand(MI, i, MCOp)) {
287 OutMI.addOperand(MCOp);
288 continue;
289 }
290 }
291
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000292 if (lowerOperand(MO, MCOp))
293 OutMI.addOperand(MCOp);
294 }
295}
296
297bool NVPTXAsmPrinter::lowerOperand(const MachineOperand &MO,
298 MCOperand &MCOp) {
299 switch (MO.getType()) {
300 default: llvm_unreachable("unknown operand type");
301 case MachineOperand::MO_Register:
Jim Grosbache9119e42015-05-13 18:37:00 +0000302 MCOp = MCOperand::createReg(encodeVirtualRegister(MO.getReg()));
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000303 break;
304 case MachineOperand::MO_Immediate:
Jim Grosbache9119e42015-05-13 18:37:00 +0000305 MCOp = MCOperand::createImm(MO.getImm());
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000306 break;
307 case MachineOperand::MO_MachineBasicBlock:
Jim Grosbach13760bd2015-05-30 01:25:56 +0000308 MCOp = MCOperand::createExpr(MCSymbolRefExpr::create(
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000309 MO.getMBB()->getSymbol(), OutContext));
310 break;
311 case MachineOperand::MO_ExternalSymbol:
Justin Holewinski30d56a72014-04-09 15:39:15 +0000312 MCOp = GetSymbolRef(GetExternalSymbolSymbol(MO.getSymbolName()));
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000313 break;
314 case MachineOperand::MO_GlobalAddress:
Justin Holewinski30d56a72014-04-09 15:39:15 +0000315 MCOp = GetSymbolRef(getSymbol(MO.getGlobal()));
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000316 break;
317 case MachineOperand::MO_FPImmediate: {
318 const ConstantFP *Cnt = MO.getFPImm();
Benjamin Kramer46e38f32016-06-08 10:01:20 +0000319 const APFloat &Val = Cnt->getValueAPF();
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000320
321 switch (Cnt->getType()->getTypeID()) {
322 default: report_fatal_error("Unsupported FP type"); break;
Artem Belevich64dc9be2017-01-13 20:56:17 +0000323 case Type::HalfTyID:
324 MCOp = MCOperand::createExpr(
325 NVPTXFloatMCExpr::createConstantFPHalf(Val, OutContext));
326 break;
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000327 case Type::FloatTyID:
Jim Grosbache9119e42015-05-13 18:37:00 +0000328 MCOp = MCOperand::createExpr(
Jim Grosbach13760bd2015-05-30 01:25:56 +0000329 NVPTXFloatMCExpr::createConstantFPSingle(Val, OutContext));
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000330 break;
331 case Type::DoubleTyID:
Jim Grosbache9119e42015-05-13 18:37:00 +0000332 MCOp = MCOperand::createExpr(
Jim Grosbach13760bd2015-05-30 01:25:56 +0000333 NVPTXFloatMCExpr::createConstantFPDouble(Val, OutContext));
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000334 break;
335 }
336 break;
337 }
338 }
339 return true;
340}
341
342unsigned NVPTXAsmPrinter::encodeVirtualRegister(unsigned Reg) {
Justin Holewinski871ec932013-08-06 14:13:31 +0000343 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
344 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000345
Justin Holewinski871ec932013-08-06 14:13:31 +0000346 DenseMap<unsigned, unsigned> &RegMap = VRegMapping[RC];
347 unsigned RegNum = RegMap[Reg];
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000348
Justin Holewinski871ec932013-08-06 14:13:31 +0000349 // Encode the register class in the upper 4 bits
350 // Must be kept in sync with NVPTXInstPrinter::printRegName
351 unsigned Ret = 0;
352 if (RC == &NVPTX::Int1RegsRegClass) {
353 Ret = (1 << 28);
354 } else if (RC == &NVPTX::Int16RegsRegClass) {
355 Ret = (2 << 28);
356 } else if (RC == &NVPTX::Int32RegsRegClass) {
357 Ret = (3 << 28);
358 } else if (RC == &NVPTX::Int64RegsRegClass) {
359 Ret = (4 << 28);
360 } else if (RC == &NVPTX::Float32RegsRegClass) {
361 Ret = (5 << 28);
362 } else if (RC == &NVPTX::Float64RegsRegClass) {
363 Ret = (6 << 28);
Artem Belevich64dc9be2017-01-13 20:56:17 +0000364 } else if (RC == &NVPTX::Float16RegsRegClass) {
365 Ret = (7 << 28);
Artem Belevich620db1f2017-02-23 22:38:24 +0000366 } else if (RC == &NVPTX::Float16x2RegsRegClass) {
367 Ret = (8 << 28);
Justin Holewinski871ec932013-08-06 14:13:31 +0000368 } else {
369 report_fatal_error("Bad register class");
370 }
371
372 // Insert the vreg number
373 Ret |= (RegNum & 0x0FFFFFFF);
374 return Ret;
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000375 } else {
Justin Holewinski871ec932013-08-06 14:13:31 +0000376 // Some special-use registers are actually physical registers.
377 // Encode this as the register class ID of 0 and the real register ID.
378 return Reg & 0x0FFFFFFF;
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000379 }
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000380}
381
Justin Holewinski30d56a72014-04-09 15:39:15 +0000382MCOperand NVPTXAsmPrinter::GetSymbolRef(const MCSymbol *Symbol) {
Justin Holewinskia2a63d22013-08-06 14:13:27 +0000383 const MCExpr *Expr;
Jim Grosbach13760bd2015-05-30 01:25:56 +0000384 Expr = MCSymbolRefExpr::create(Symbol, MCSymbolRefExpr::VK_None,
Justin Holewinski8b24e1e2013-08-06 23:06:42 +0000385 OutContext);
Jim Grosbache9119e42015-05-13 18:37:00 +0000386 return MCOperand::createExpr(Expr);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000387}
388
Justin Holewinski0497ab12013-03-30 14:29:21 +0000389void NVPTXAsmPrinter::printReturnValStr(const Function *F, raw_ostream &O) {
Mehdi Amini56228da2015-07-09 01:57:34 +0000390 const DataLayout &DL = getDataLayout();
Eric Christopher6aad8b12015-02-19 00:08:14 +0000391 const TargetLowering *TLI = nvptxSubtarget->getTargetLowering();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000392
393 Type *Ty = F->getReturnType();
394
Eric Christopher6aad8b12015-02-19 00:08:14 +0000395 bool isABI = (nvptxSubtarget->getSmVersion() >= 20);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000396
397 if (Ty->getTypeID() == Type::VoidTyID)
398 return;
399
400 O << " (";
401
402 if (isABI) {
Artem Belevichd7a73822017-07-20 21:16:03 +0000403 if (Ty->isFloatingPointTy() || (Ty->isIntegerTy() && !Ty->isIntegerTy(128))) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000404 unsigned size = 0;
Craig Toppere3dcce92015-08-01 22:20:21 +0000405 if (auto *ITy = dyn_cast<IntegerType>(Ty)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000406 size = ITy->getBitWidth();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000407 } else {
Justin Holewinski0497ab12013-03-30 14:29:21 +0000408 assert(Ty->isFloatingPointTy() && "Floating point type expected here");
Justin Holewinskiae556d32012-05-04 20:18:50 +0000409 size = Ty->getPrimitiveSizeInBits();
410 }
Artem Belevich64dc9be2017-01-13 20:56:17 +0000411 // PTX ABI requires all scalar return values to be at least 32
412 // bits in size. fp16 normally uses .b16 as its storage type in
413 // PTX, so its size must be adjusted here, too.
414 if (size < 32)
415 size = 32;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000416
417 O << ".param .b" << size << " func_retval0";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000418 } else if (isa<PointerType>(Ty)) {
Mehdi Amini44ede332015-07-09 02:09:04 +0000419 O << ".param .b" << TLI->getPointerTy(DL).getSizeInBits()
Justin Holewinski0497ab12013-03-30 14:29:21 +0000420 << " func_retval0";
Artem Belevichd7a73822017-07-20 21:16:03 +0000421 } else if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) {
Mehdi Amini56228da2015-07-09 01:57:34 +0000422 unsigned totalsz = DL.getTypeAllocSize(Ty);
Artem Belevich74158b52016-07-20 18:39:52 +0000423 unsigned retAlignment = 0;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000424 if (!getAlign(*F, 0, retAlignment))
Artem Belevich74158b52016-07-20 18:39:52 +0000425 retAlignment = DL.getABITypeAlignment(Ty);
426 O << ".param .align " << retAlignment << " .b8 func_retval0[" << totalsz
427 << "]";
Craig Topperd3c02f12015-01-05 10:15:49 +0000428 } else
429 llvm_unreachable("Unknown return type");
Justin Holewinskiae556d32012-05-04 20:18:50 +0000430 } else {
431 SmallVector<EVT, 16> vtparts;
Mehdi Amini56228da2015-07-09 01:57:34 +0000432 ComputeValueVTs(*TLI, DL, Ty, vtparts);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000433 unsigned idx = 0;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000434 for (unsigned i = 0, e = vtparts.size(); i != e; ++i) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000435 unsigned elems = 1;
436 EVT elemtype = vtparts[i];
437 if (vtparts[i].isVector()) {
438 elems = vtparts[i].getVectorNumElements();
439 elemtype = vtparts[i].getVectorElementType();
440 }
441
Justin Holewinski0497ab12013-03-30 14:29:21 +0000442 for (unsigned j = 0, je = elems; j != je; ++j) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000443 unsigned sz = elemtype.getSizeInBits();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000444 if (elemtype.isInteger() && (sz < 32))
445 sz = 32;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000446 O << ".reg .b" << sz << " func_retval" << idx;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000447 if (j < je - 1)
448 O << ", ";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000449 ++idx;
450 }
Justin Holewinski0497ab12013-03-30 14:29:21 +0000451 if (i < e - 1)
Justin Holewinskiae556d32012-05-04 20:18:50 +0000452 O << ", ";
453 }
454 }
455 O << ") ";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000456}
457
458void NVPTXAsmPrinter::printReturnValStr(const MachineFunction &MF,
459 raw_ostream &O) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000460 const Function &F = MF.getFunction();
461 printReturnValStr(&F, O);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000462}
463
Jingyue Wu0220df02015-02-01 02:27:45 +0000464// Return true if MBB is the header of a loop marked with
465// llvm.loop.unroll.disable.
Jingyue Wu5bbcdaa2015-02-03 17:57:38 +0000466// TODO: consider "#pragma unroll 1" which is equivalent to "#pragma nounroll".
Jingyue Wu0220df02015-02-01 02:27:45 +0000467bool NVPTXAsmPrinter::isLoopHeaderOfNoUnroll(
468 const MachineBasicBlock &MBB) const {
469 MachineLoopInfo &LI = getAnalysis<MachineLoopInfo>();
Jingyue Wu0220df02015-02-01 02:27:45 +0000470 // We insert .pragma "nounroll" only to the loop header.
Benjamin Kramerdb220db2015-06-02 15:28:27 +0000471 if (!LI.isLoopHeader(&MBB))
Jingyue Wu0220df02015-02-01 02:27:45 +0000472 return false;
473
474 // llvm.loop.unroll.disable is marked on the back edges of a loop. Therefore,
475 // we iterate through each back edge of the loop with header MBB, and check
476 // whether its metadata contains llvm.loop.unroll.disable.
477 for (auto I = MBB.pred_begin(); I != MBB.pred_end(); ++I) {
478 const MachineBasicBlock *PMBB = *I;
479 if (LI.getLoopFor(PMBB) != LI.getLoopFor(&MBB)) {
480 // Edges from other loops to MBB are not back edges.
481 continue;
482 }
483 if (const BasicBlock *PBB = PMBB->getBasicBlock()) {
Duncan P. N. Exon Smith1d15a9f2016-03-25 00:35:38 +0000484 if (MDNode *LoopID =
485 PBB->getTerminator()->getMetadata(LLVMContext::MD_loop)) {
Jingyue Wu0220df02015-02-01 02:27:45 +0000486 if (GetUnrollMetadata(LoopID, "llvm.loop.unroll.disable"))
487 return true;
488 }
489 }
490 }
491 return false;
492}
493
494void NVPTXAsmPrinter::EmitBasicBlockStart(const MachineBasicBlock &MBB) const {
495 AsmPrinter::EmitBasicBlockStart(MBB);
496 if (isLoopHeaderOfNoUnroll(MBB))
Lang Hames9ff69c82015-04-24 19:11:51 +0000497 OutStreamer->EmitRawText(StringRef("\t.pragma \"nounroll\";\n"));
Jingyue Wu0220df02015-02-01 02:27:45 +0000498}
499
Justin Holewinskiae556d32012-05-04 20:18:50 +0000500void NVPTXAsmPrinter::EmitFunctionEntryLabel() {
501 SmallString<128> Str;
502 raw_svector_ostream O(Str);
503
Justin Holewinski01f89f02013-05-20 12:13:32 +0000504 if (!GlobalsEmitted) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000505 emitGlobals(*MF->getFunction().getParent());
Justin Holewinski01f89f02013-05-20 12:13:32 +0000506 GlobalsEmitted = true;
507 }
Eric Christopher80244252018-05-01 00:10:13 +0000508
Justin Holewinskiae556d32012-05-04 20:18:50 +0000509 // Set up
510 MRI = &MF->getRegInfo();
Matthias Braunf1caa282017-12-15 22:22:58 +0000511 F = &MF->getFunction();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000512 emitLinkageDirective(F, O);
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000513 if (isKernelFunction(*F))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000514 O << ".entry ";
515 else {
516 O << ".func ";
517 printReturnValStr(*MF, O);
518 }
519
Matt Arsenault8b643552015-06-09 00:31:39 +0000520 CurrentFnSym->print(O, MAI);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000521
522 emitFunctionParamList(*MF, O);
523
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000524 if (isKernelFunction(*F))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000525 emitKernelFunctionDirectives(*F, O);
526
Lang Hames9ff69c82015-04-24 19:11:51 +0000527 OutStreamer->EmitRawText(O.str());
Justin Holewinskiae556d32012-05-04 20:18:50 +0000528
Eric Christopher80244252018-05-01 00:10:13 +0000529 prevDebugLoc = DebugLoc();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000530}
531
532void NVPTXAsmPrinter::EmitFunctionBodyStart() {
Eric Christopher80244252018-05-01 00:10:13 +0000533 VRegMapping.clear();
534 OutStreamer->EmitRawText(StringRef("{\n"));
535 setAndEmitFunctionVirtualRegisters(*MF);
536
Justin Holewinskiae556d32012-05-04 20:18:50 +0000537 SmallString<128> Str;
538 raw_svector_ostream O(Str);
Matthias Braunf1caa282017-12-15 22:22:58 +0000539 emitDemotedVars(&MF->getFunction(), O);
Lang Hames9ff69c82015-04-24 19:11:51 +0000540 OutStreamer->EmitRawText(O.str());
Justin Holewinskiae556d32012-05-04 20:18:50 +0000541}
542
543void NVPTXAsmPrinter::EmitFunctionBodyEnd() {
Eric Christopher80244252018-05-01 00:10:13 +0000544 OutStreamer->EmitRawText(StringRef("}\n"));
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +0000545 VRegMapping.clear();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000546}
547
Justin Holewinski660597d2013-10-11 12:39:36 +0000548void NVPTXAsmPrinter::emitImplicitDef(const MachineInstr *MI) const {
549 unsigned RegNo = MI->getOperand(0).getReg();
Andrew Kaylor5c73e1f2015-03-24 23:37:10 +0000550 if (TargetRegisterInfo::isVirtualRegister(RegNo)) {
Lang Hames9ff69c82015-04-24 19:11:51 +0000551 OutStreamer->AddComment(Twine("implicit-def: ") +
552 getVirtualRegisterName(RegNo));
Justin Holewinski660597d2013-10-11 12:39:36 +0000553 } else {
Lang Hames9ff69c82015-04-24 19:11:51 +0000554 OutStreamer->AddComment(Twine("implicit-def: ") +
555 nvptxSubtarget->getRegisterInfo()->getName(RegNo));
Justin Holewinski660597d2013-10-11 12:39:36 +0000556 }
Lang Hames9ff69c82015-04-24 19:11:51 +0000557 OutStreamer->AddBlankLine();
Justin Holewinski660597d2013-10-11 12:39:36 +0000558}
559
Justin Holewinski0497ab12013-03-30 14:29:21 +0000560void NVPTXAsmPrinter::emitKernelFunctionDirectives(const Function &F,
561 raw_ostream &O) const {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000562 // If the NVVM IR has some of reqntid* specified, then output
563 // the reqntid directive, and set the unspecified ones to 1.
564 // If none of reqntid* is specified, don't output reqntid directive.
565 unsigned reqntidx, reqntidy, reqntidz;
566 bool specified = false;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000567 if (!getReqNTIDx(F, reqntidx))
Justin Holewinski0497ab12013-03-30 14:29:21 +0000568 reqntidx = 1;
569 else
570 specified = true;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000571 if (!getReqNTIDy(F, reqntidy))
Justin Holewinski0497ab12013-03-30 14:29:21 +0000572 reqntidy = 1;
573 else
574 specified = true;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000575 if (!getReqNTIDz(F, reqntidz))
Justin Holewinski0497ab12013-03-30 14:29:21 +0000576 reqntidz = 1;
577 else
578 specified = true;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000579
580 if (specified)
Justin Holewinski0497ab12013-03-30 14:29:21 +0000581 O << ".reqntid " << reqntidx << ", " << reqntidy << ", " << reqntidz
582 << "\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000583
584 // If the NVVM IR has some of maxntid* specified, then output
585 // the maxntid directive, and set the unspecified ones to 1.
586 // If none of maxntid* is specified, don't output maxntid directive.
587 unsigned maxntidx, maxntidy, maxntidz;
588 specified = false;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000589 if (!getMaxNTIDx(F, maxntidx))
Justin Holewinski0497ab12013-03-30 14:29:21 +0000590 maxntidx = 1;
591 else
592 specified = true;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000593 if (!getMaxNTIDy(F, maxntidy))
Justin Holewinski0497ab12013-03-30 14:29:21 +0000594 maxntidy = 1;
595 else
596 specified = true;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000597 if (!getMaxNTIDz(F, maxntidz))
Justin Holewinski0497ab12013-03-30 14:29:21 +0000598 maxntidz = 1;
599 else
600 specified = true;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000601
602 if (specified)
Justin Holewinski0497ab12013-03-30 14:29:21 +0000603 O << ".maxntid " << maxntidx << ", " << maxntidy << ", " << maxntidz
604 << "\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000605
606 unsigned mincta;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000607 if (getMinCTASm(F, mincta))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000608 O << ".minnctapersm " << mincta << "\n";
Justin Lebar19bf9d22016-12-14 22:32:50 +0000609
610 unsigned maxnreg;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000611 if (getMaxNReg(F, maxnreg))
Justin Lebar19bf9d22016-12-14 22:32:50 +0000612 O << ".maxnreg " << maxnreg << "\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000613}
614
Justin Holewinski660597d2013-10-11 12:39:36 +0000615std::string
616NVPTXAsmPrinter::getVirtualRegisterName(unsigned Reg) const {
617 const TargetRegisterClass *RC = MRI->getRegClass(Reg);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000618
Justin Holewinski660597d2013-10-11 12:39:36 +0000619 std::string Name;
620 raw_string_ostream NameStr(Name);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000621
Justin Holewinski660597d2013-10-11 12:39:36 +0000622 VRegRCMap::const_iterator I = VRegMapping.find(RC);
623 assert(I != VRegMapping.end() && "Bad register class");
624 const DenseMap<unsigned, unsigned> &RegMap = I->second;
625
626 VRegMap::const_iterator VI = RegMap.find(Reg);
627 assert(VI != RegMap.end() && "Bad virtual register");
628 unsigned MappedVR = VI->second;
629
630 NameStr << getNVPTXRegClassStr(RC) << MappedVR;
631
632 NameStr.flush();
633 return Name;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000634}
635
Justin Holewinski660597d2013-10-11 12:39:36 +0000636void NVPTXAsmPrinter::emitVirtualRegister(unsigned int vr,
Justin Holewinski0497ab12013-03-30 14:29:21 +0000637 raw_ostream &O) {
Justin Holewinski660597d2013-10-11 12:39:36 +0000638 O << getVirtualRegisterName(vr);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000639}
640
Justin Holewinski0497ab12013-03-30 14:29:21 +0000641void NVPTXAsmPrinter::printVecModifiedImmediate(
642 const MachineOperand &MO, const char *Modifier, raw_ostream &O) {
643 static const char vecelem[] = { '0', '1', '2', '3', '0', '1', '2', '3' };
644 int Imm = (int) MO.getImm();
645 if (0 == strcmp(Modifier, "vecelem"))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000646 O << "_" << vecelem[Imm];
Justin Holewinski0497ab12013-03-30 14:29:21 +0000647 else if (0 == strcmp(Modifier, "vecv4comm1")) {
648 if ((Imm < 0) || (Imm > 3))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000649 O << "//";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000650 } else if (0 == strcmp(Modifier, "vecv4comm2")) {
651 if ((Imm < 4) || (Imm > 7))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000652 O << "//";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000653 } else if (0 == strcmp(Modifier, "vecv4pos")) {
654 if (Imm < 0)
655 Imm = 0;
656 O << "_" << vecelem[Imm % 4];
657 } else if (0 == strcmp(Modifier, "vecv2comm1")) {
658 if ((Imm < 0) || (Imm > 1))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000659 O << "//";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000660 } else if (0 == strcmp(Modifier, "vecv2comm2")) {
661 if ((Imm < 2) || (Imm > 3))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000662 O << "//";
Justin Holewinski0497ab12013-03-30 14:29:21 +0000663 } else if (0 == strcmp(Modifier, "vecv2pos")) {
664 if (Imm < 0)
665 Imm = 0;
666 O << "_" << vecelem[Imm % 2];
667 } else
Craig Topperbdf39a42012-05-24 07:02:50 +0000668 llvm_unreachable("Unknown Modifier on immediate operand");
Justin Holewinskiae556d32012-05-04 20:18:50 +0000669}
670
Justin Holewinski0497ab12013-03-30 14:29:21 +0000671void NVPTXAsmPrinter::emitDeclaration(const Function *F, raw_ostream &O) {
Justin Holewinski0497ab12013-03-30 14:29:21 +0000672 emitLinkageDirective(F, O);
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000673 if (isKernelFunction(*F))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000674 O << ".entry ";
675 else
676 O << ".func ";
677 printReturnValStr(F, O);
Matt Arsenault8b643552015-06-09 00:31:39 +0000678 getSymbol(F)->print(O, MAI);
679 O << "\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000680 emitFunctionParamList(F, O);
681 O << ";\n";
682}
683
Justin Holewinski0497ab12013-03-30 14:29:21 +0000684static bool usedInGlobalVarDef(const Constant *C) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000685 if (!C)
686 return false;
687
688 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) {
Jingyue Wu4be014a2015-07-31 05:09:47 +0000689 return GV->getName() != "llvm.used";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000690 }
691
Chandler Carruthcdf47882014-03-09 03:16:01 +0000692 for (const User *U : C->users())
693 if (const Constant *C = dyn_cast<Constant>(U))
694 if (usedInGlobalVarDef(C))
695 return true;
696
Justin Holewinskiae556d32012-05-04 20:18:50 +0000697 return false;
698}
699
Justin Holewinski0497ab12013-03-30 14:29:21 +0000700static bool usedInOneFunc(const User *U, Function const *&oneFunc) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000701 if (const GlobalVariable *othergv = dyn_cast<GlobalVariable>(U)) {
Yaron Keren075759a2015-03-30 15:42:36 +0000702 if (othergv->getName() == "llvm.used")
Justin Holewinskiae556d32012-05-04 20:18:50 +0000703 return true;
704 }
705
706 if (const Instruction *instr = dyn_cast<Instruction>(U)) {
707 if (instr->getParent() && instr->getParent()->getParent()) {
708 const Function *curFunc = instr->getParent()->getParent();
709 if (oneFunc && (curFunc != oneFunc))
710 return false;
711 oneFunc = curFunc;
712 return true;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000713 } else
Justin Holewinskiae556d32012-05-04 20:18:50 +0000714 return false;
715 }
716
Chandler Carruthcdf47882014-03-09 03:16:01 +0000717 for (const User *UU : U->users())
Eli Bendersky3e840192015-03-23 16:26:23 +0000718 if (!usedInOneFunc(UU, oneFunc))
Justin Holewinskiae556d32012-05-04 20:18:50 +0000719 return false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000720
Justin Holewinskiae556d32012-05-04 20:18:50 +0000721 return true;
722}
723
724/* Find out if a global variable can be demoted to local scope.
725 * Currently, this is valid for CUDA shared variables, which have local
726 * scope and global lifetime. So the conditions to check are :
727 * 1. Is the global variable in shared address space?
728 * 2. Does it have internal linkage?
729 * 3. Is the global variable referenced only in one function?
730 */
731static bool canDemoteGlobalVar(const GlobalVariable *gv, Function const *&f) {
Eli Bendersky3e840192015-03-23 16:26:23 +0000732 if (!gv->hasInternalLinkage())
Justin Holewinskiae556d32012-05-04 20:18:50 +0000733 return false;
Craig Toppere3dcce92015-08-01 22:20:21 +0000734 PointerType *Pty = gv->getType();
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000735 if (Pty->getAddressSpace() != ADDRESS_SPACE_SHARED)
Justin Holewinskiae556d32012-05-04 20:18:50 +0000736 return false;
737
Craig Topper062a2ba2014-04-25 05:30:21 +0000738 const Function *oneFunc = nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000739
740 bool flag = usedInOneFunc(gv, oneFunc);
Eli Bendersky3e840192015-03-23 16:26:23 +0000741 if (!flag)
Justin Holewinskiae556d32012-05-04 20:18:50 +0000742 return false;
743 if (!oneFunc)
744 return false;
745 f = oneFunc;
746 return true;
747}
748
749static bool useFuncSeen(const Constant *C,
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000750 DenseMap<const Function *, bool> &seenMap) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000751 for (const User *U : C->users()) {
752 if (const Constant *cu = dyn_cast<Constant>(U)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000753 if (useFuncSeen(cu, seenMap))
754 return true;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000755 } else if (const Instruction *I = dyn_cast<Instruction>(U)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000756 const BasicBlock *bb = I->getParent();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000757 if (!bb)
758 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000759 const Function *caller = bb->getParent();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000760 if (!caller)
761 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000762 if (seenMap.find(caller) != seenMap.end())
763 return true;
764 }
765 }
766 return false;
767}
768
Justin Holewinski01f89f02013-05-20 12:13:32 +0000769void NVPTXAsmPrinter::emitDeclarations(const Module &M, raw_ostream &O) {
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +0000770 DenseMap<const Function *, bool> seenMap;
Justin Holewinski0497ab12013-03-30 14:29:21 +0000771 for (Module::const_iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
Duncan P. N. Exon Smith61149b82015-10-20 00:54:09 +0000772 const Function *F = &*FI;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000773
774 if (F->isDeclaration()) {
775 if (F->use_empty())
776 continue;
777 if (F->getIntrinsicID())
778 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000779 emitDeclaration(F, O);
780 continue;
781 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000782 for (const User *U : F->users()) {
783 if (const Constant *C = dyn_cast<Constant>(U)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000784 if (usedInGlobalVarDef(C)) {
785 // The use is in the initialization of a global variable
786 // that is a function pointer, so print a declaration
787 // for the original function
Justin Holewinskiae556d32012-05-04 20:18:50 +0000788 emitDeclaration(F, O);
789 break;
790 }
791 // Emit a declaration of this function if the function that
792 // uses this constant expr has already been seen.
793 if (useFuncSeen(C, seenMap)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000794 emitDeclaration(F, O);
795 break;
796 }
797 }
798
Chandler Carruthcdf47882014-03-09 03:16:01 +0000799 if (!isa<Instruction>(U))
Justin Holewinski0497ab12013-03-30 14:29:21 +0000800 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000801 const Instruction *instr = cast<Instruction>(U);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000802 const BasicBlock *bb = instr->getParent();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000803 if (!bb)
804 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000805 const Function *caller = bb->getParent();
Justin Holewinski0497ab12013-03-30 14:29:21 +0000806 if (!caller)
807 continue;
Justin Holewinskiae556d32012-05-04 20:18:50 +0000808
809 // If a caller has already been seen, then the caller is
810 // appearing in the module before the callee. so print out
811 // a declaration for the callee.
812 if (seenMap.find(caller) != seenMap.end()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000813 emitDeclaration(F, O);
814 break;
815 }
816 }
817 seenMap[F] = true;
818 }
819}
820
Eric Christopher80244252018-05-01 00:10:13 +0000821void NVPTXAsmPrinter::recordAndEmitFilenames(Module &M) {
822 DebugInfoFinder DbgFinder;
823 DbgFinder.processModule(M);
824
825 unsigned i = 1;
826 for (const DICompileUnit *DIUnit : DbgFinder.compile_units()) {
827 StringRef Filename = DIUnit->getFilename();
828 StringRef Dirname = DIUnit->getDirectory();
829 SmallString<128> FullPathName = Dirname;
830 if (!Dirname.empty() && !sys::path::is_absolute(Filename)) {
831 sys::path::append(FullPathName, Filename);
832 Filename = FullPathName;
833 }
834 if (filenameMap.find(Filename) != filenameMap.end())
835 continue;
836 filenameMap[Filename] = i;
837 OutStreamer->EmitDwarfFileDirective(i, "", Filename);
838 ++i;
839 }
840
841 for (DISubprogram *SP : DbgFinder.subprograms()) {
842 StringRef Filename = SP->getFilename();
843 StringRef Dirname = SP->getDirectory();
844 SmallString<128> FullPathName = Dirname;
845 if (!Dirname.empty() && !sys::path::is_absolute(Filename)) {
846 sys::path::append(FullPathName, Filename);
847 Filename = FullPathName;
848 }
849 if (filenameMap.find(Filename) != filenameMap.end())
850 continue;
851 filenameMap[Filename] = i;
852 OutStreamer->EmitDwarfFileDirective(i, "", Filename);
853 ++i;
854 }
855}
856
Justin Lebaread59f42016-01-30 01:07:38 +0000857static bool isEmptyXXStructor(GlobalVariable *GV) {
858 if (!GV) return true;
859 const ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
860 if (!InitList) return true; // Not an array; we don't know how to parse.
861 return InitList->getNumOperands() == 0;
862}
863
Justin Holewinski0497ab12013-03-30 14:29:21 +0000864bool NVPTXAsmPrinter::doInitialization(Module &M) {
Eric Christopher6aad8b12015-02-19 00:08:14 +0000865 // Construct a default subtarget off of the TargetMachine defaults. The
866 // rest of NVPTX isn't friendly to change subtargets per function and
867 // so the default TargetMachine will have all of the options.
Daniel Sandersc81f4502015-06-16 15:44:21 +0000868 const Triple &TT = TM.getTargetTriple();
Eric Christopher6aad8b12015-02-19 00:08:14 +0000869 StringRef CPU = TM.getTargetCPU();
870 StringRef FS = TM.getTargetFeatureString();
871 const NVPTXTargetMachine &NTM = static_cast<const NVPTXTargetMachine &>(TM);
Eric Christopher02389e32015-02-19 00:08:27 +0000872 const NVPTXSubtarget STI(TT, CPU, FS, NTM);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000873
Justin Lebar3a5f5792016-01-23 21:12:20 +0000874 if (M.alias_size()) {
875 report_fatal_error("Module has aliases, which NVPTX does not support.");
876 return true; // error
877 }
Justin Lebaread59f42016-01-30 01:07:38 +0000878 if (!isEmptyXXStructor(M.getNamedGlobal("llvm.global_ctors"))) {
879 report_fatal_error(
880 "Module has a nontrivial global ctor, which NVPTX does not support.");
881 return true; // error
882 }
883 if (!isEmptyXXStructor(M.getNamedGlobal("llvm.global_dtors"))) {
884 report_fatal_error(
885 "Module has a nontrivial global dtor, which NVPTX does not support.");
886 return true; // error
887 }
Justin Lebar3a5f5792016-01-23 21:12:20 +0000888
Justin Holewinskiae556d32012-05-04 20:18:50 +0000889 SmallString<128> Str1;
890 raw_svector_ostream OS1(Str1);
891
Eric Christopher80244252018-05-01 00:10:13 +0000892 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
893
Justin Holewinskiae556d32012-05-04 20:18:50 +0000894 // We need to call the parent's one explicitly.
Eric Christopher80244252018-05-01 00:10:13 +0000895 //bool Result = AsmPrinter::doInitialization(M);
896
897 // Initialize TargetLoweringObjectFile since we didn't do in
898 // AsmPrinter::doInitialization either right above or where it's commented out
899 // below.
900 const_cast<TargetLoweringObjectFile &>(getObjFileLowering())
901 .Initialize(OutContext, TM);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000902
Justin Holewinskiae556d32012-05-04 20:18:50 +0000903 // Emit header before any dwarf directives are emitted below.
Eric Christopher6aad8b12015-02-19 00:08:14 +0000904 emitHeader(M, OS1, STI);
Lang Hames9ff69c82015-04-24 19:11:51 +0000905 OutStreamer->EmitRawText(OS1.str());
Justin Holewinskiae556d32012-05-04 20:18:50 +0000906
Eric Christopher80244252018-05-01 00:10:13 +0000907 // Already commented out
908 //bool Result = AsmPrinter::doInitialization(M);
909
Justin Holewinskid2bbdf02013-07-01 13:00:14 +0000910 // Emit module-level inline asm if it exists.
911 if (!M.getModuleInlineAsm().empty()) {
Lang Hames9ff69c82015-04-24 19:11:51 +0000912 OutStreamer->AddComment("Start of file scope inline assembly");
913 OutStreamer->AddBlankLine();
914 OutStreamer->EmitRawText(StringRef(M.getModuleInlineAsm()));
915 OutStreamer->AddBlankLine();
916 OutStreamer->AddComment("End of file scope inline assembly");
917 OutStreamer->AddBlankLine();
Justin Holewinskid2bbdf02013-07-01 13:00:14 +0000918 }
919
Eric Christopher80244252018-05-01 00:10:13 +0000920 // If we're not NVCL we're CUDA, go ahead and emit filenames.
921 if (TM.getTargetTriple().getOS() != Triple::NVCL)
922 recordAndEmitFilenames(M);
Alexey Bataev242706b2018-04-18 16:13:41 +0000923
Eric Christopher80244252018-05-01 00:10:13 +0000924 GlobalsEmitted = false;
925
926 return false; // success
Justin Holewinski01f89f02013-05-20 12:13:32 +0000927}
928
929void NVPTXAsmPrinter::emitGlobals(const Module &M) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000930 SmallString<128> Str2;
931 raw_svector_ostream OS2(Str2);
932
933 emitDeclarations(M, OS2);
934
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000935 // As ptxas does not support forward references of globals, we need to first
936 // sort the list of module-level globals in def-use order. We visit each
937 // global variable in order, and ensure that we emit it *after* its dependent
938 // globals. We use a little extra memory maintaining both a set and a list to
939 // have fast searches while maintaining a strict ordering.
Justin Holewinski01f89f02013-05-20 12:13:32 +0000940 SmallVector<const GlobalVariable *, 8> Globals;
941 DenseSet<const GlobalVariable *> GVVisited;
942 DenseSet<const GlobalVariable *> GVVisiting;
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000943
944 // Visit each global variable, in order
Duncan P. N. Exon Smith61149b82015-10-20 00:54:09 +0000945 for (const GlobalVariable &I : M.globals())
946 VisitGlobalVariableForEmission(&I, Globals, GVVisited, GVVisiting);
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000947
Justin Holewinski0497ab12013-03-30 14:29:21 +0000948 assert(GVVisited.size() == M.getGlobalList().size() &&
Justin Holewinski2c5ac702012-11-16 21:03:51 +0000949 "Missed a global variable");
950 assert(GVVisiting.size() == 0 && "Did not fully process a global variable");
951
952 // Print out module-level global variables in proper order
953 for (unsigned i = 0, e = Globals.size(); i != e; ++i)
954 printModuleLevelGV(Globals[i], OS2);
Justin Holewinskiae556d32012-05-04 20:18:50 +0000955
956 OS2 << '\n';
957
Lang Hames9ff69c82015-04-24 19:11:51 +0000958 OutStreamer->EmitRawText(OS2.str());
Justin Holewinskiae556d32012-05-04 20:18:50 +0000959}
960
Eric Christopher6aad8b12015-02-19 00:08:14 +0000961void NVPTXAsmPrinter::emitHeader(Module &M, raw_ostream &O,
962 const NVPTXSubtarget &STI) {
Justin Holewinskiae556d32012-05-04 20:18:50 +0000963 O << "//\n";
964 O << "// Generated by LLVM NVPTX Back-End\n";
965 O << "//\n";
966 O << "\n";
967
Eric Christopher6aad8b12015-02-19 00:08:14 +0000968 unsigned PTXVersion = STI.getPTXVersion();
Justin Holewinski1812ee92012-11-12 03:16:43 +0000969 O << ".version " << (PTXVersion / 10) << "." << (PTXVersion % 10) << "\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000970
971 O << ".target ";
Eric Christopher6aad8b12015-02-19 00:08:14 +0000972 O << STI.getTargetName();
Justin Holewinskiae556d32012-05-04 20:18:50 +0000973
Eric Christopherca929f22015-02-19 00:22:47 +0000974 const NVPTXTargetMachine &NTM = static_cast<const NVPTXTargetMachine &>(TM);
975 if (NTM.getDrvInterface() == NVPTX::NVCL)
Justin Holewinskiae556d32012-05-04 20:18:50 +0000976 O << ", texmode_independent";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000977
Eric Christopher80244252018-05-01 00:10:13 +0000978 if (MAI->doesSupportDebugInformation())
979 O << ", debug";
Justin Holewinskiae556d32012-05-04 20:18:50 +0000980
981 O << "\n";
982
983 O << ".address_size ";
Eric Christopherca929f22015-02-19 00:22:47 +0000984 if (NTM.is64Bit())
Justin Holewinskiae556d32012-05-04 20:18:50 +0000985 O << "64";
986 else
987 O << "32";
988 O << "\n";
989
990 O << "\n";
991}
992
993bool NVPTXAsmPrinter::doFinalization(Module &M) {
Justin Holewinski01f89f02013-05-20 12:13:32 +0000994 // If we did not emit any functions, then the global declarations have not
995 // yet been emitted.
996 if (!GlobalsEmitted) {
997 emitGlobals(M);
998 GlobalsEmitted = true;
999 }
1000
Justin Holewinskiae556d32012-05-04 20:18:50 +00001001 // XXX Temproarily remove global variables so that doFinalization() will not
1002 // emit them again (global variables are emitted at beginning).
1003
1004 Module::GlobalListType &global_list = M.getGlobalList();
1005 int i, n = global_list.size();
Dylan Noblesmithc9e2a272014-08-26 02:03:35 +00001006 GlobalVariable **gv_array = new GlobalVariable *[n];
Justin Holewinskiae556d32012-05-04 20:18:50 +00001007
1008 // first, back-up GlobalVariable in gv_array
1009 i = 0;
1010 for (Module::global_iterator I = global_list.begin(), E = global_list.end();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001011 I != E; ++I)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001012 gv_array[i++] = &*I;
1013
1014 // second, empty global_list
1015 while (!global_list.empty())
1016 global_list.remove(global_list.begin());
1017
1018 // call doFinalization
1019 bool ret = AsmPrinter::doFinalization(M);
1020
1021 // now we restore global variables
Justin Holewinski0497ab12013-03-30 14:29:21 +00001022 for (i = 0; i < n; i++)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001023 global_list.insert(global_list.end(), gv_array[i]);
1024
Justin Holewinski59596952014-04-09 15:38:52 +00001025 clearAnnotationCache(&M);
Dylan Noblesmithc9e2a272014-08-26 02:03:35 +00001026
1027 delete[] gv_array;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001028 return ret;
1029
Justin Holewinskiae556d32012-05-04 20:18:50 +00001030 //bool Result = AsmPrinter::doFinalization(M);
1031 // Instead of calling the parents doFinalization, we may
1032 // clone parents doFinalization and customize here.
1033 // Currently, we if NVISA out the EmitGlobals() in
1034 // parent's doFinalization, which is too intrusive.
1035 //
1036 // Same for the doInitialization.
1037 //return Result;
1038}
1039
1040// This function emits appropriate linkage directives for
1041// functions and global variables.
1042//
1043// extern function declaration -> .extern
1044// extern function definition -> .visible
1045// external global variable with init -> .visible
1046// external without init -> .extern
1047// appending -> not allowed, assert.
Justin Holewinski7d5bf662014-06-27 18:35:10 +00001048// for any linkage other than
1049// internal, private, linker_private,
1050// linker_private_weak, linker_private_weak_def_auto,
1051// we emit -> .weak.
Justin Holewinskiae556d32012-05-04 20:18:50 +00001052
Justin Holewinski0497ab12013-03-30 14:29:21 +00001053void NVPTXAsmPrinter::emitLinkageDirective(const GlobalValue *V,
1054 raw_ostream &O) {
Eric Christopherbeffc4e2015-02-19 00:08:23 +00001055 if (static_cast<NVPTXTargetMachine &>(TM).getDrvInterface() == NVPTX::CUDA) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001056 if (V->hasExternalLinkage()) {
1057 if (isa<GlobalVariable>(V)) {
1058 const GlobalVariable *GVar = cast<GlobalVariable>(V);
1059 if (GVar) {
1060 if (GVar->hasInitializer())
1061 O << ".visible ";
1062 else
1063 O << ".extern ";
1064 }
1065 } else if (V->isDeclaration())
1066 O << ".extern ";
1067 else
1068 O << ".visible ";
1069 } else if (V->hasAppendingLinkage()) {
1070 std::string msg;
1071 msg.append("Error: ");
1072 msg.append("Symbol ");
1073 if (V->hasName())
Yaron Keren075759a2015-03-30 15:42:36 +00001074 msg.append(V->getName());
Justin Holewinskiae556d32012-05-04 20:18:50 +00001075 msg.append("has unsupported appending linkage type");
1076 llvm_unreachable(msg.c_str());
Justin Holewinski7d5bf662014-06-27 18:35:10 +00001077 } else if (!V->hasInternalLinkage() &&
1078 !V->hasPrivateLinkage()) {
1079 O << ".weak ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001080 }
1081 }
1082}
1083
Justin Holewinski01f89f02013-05-20 12:13:32 +00001084void NVPTXAsmPrinter::printModuleLevelGV(const GlobalVariable *GVar,
1085 raw_ostream &O,
Justin Holewinskiae556d32012-05-04 20:18:50 +00001086 bool processDemoted) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001087 // Skip meta data
1088 if (GVar->hasSection()) {
Rafael Espindola83658d62016-05-11 18:21:59 +00001089 if (GVar->getSection() == "llvm.metadata")
Justin Holewinskiae556d32012-05-04 20:18:50 +00001090 return;
1091 }
1092
Justin Holewinski73cb5de2014-06-27 18:35:53 +00001093 // Skip LLVM intrinsic global variables
1094 if (GVar->getName().startswith("llvm.") ||
1095 GVar->getName().startswith("nvvm."))
1096 return;
1097
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001098 const DataLayout &DL = getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001099
1100 // GlobalVariables are always constant pointers themselves.
Craig Toppere3dcce92015-08-01 22:20:21 +00001101 PointerType *PTy = GVar->getType();
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001102 Type *ETy = GVar->getValueType();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001103
1104 if (GVar->hasExternalLinkage()) {
1105 if (GVar->hasInitializer())
1106 O << ".visible ";
1107 else
1108 O << ".extern ";
Justin Holewinskid73767a2014-06-27 18:35:56 +00001109 } else if (GVar->hasLinkOnceLinkage() || GVar->hasWeakLinkage() ||
1110 GVar->hasAvailableExternallyLinkage() ||
1111 GVar->hasCommonLinkage()) {
1112 O << ".weak ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001113 }
1114
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001115 if (isTexture(*GVar)) {
1116 O << ".global .texref " << getTextureName(*GVar) << ";\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001117 return;
1118 }
1119
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001120 if (isSurface(*GVar)) {
1121 O << ".global .surfref " << getSurfaceName(*GVar) << ";\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001122 return;
1123 }
1124
1125 if (GVar->isDeclaration()) {
1126 // (extern) declarations, no definition or initializer
1127 // Currently the only known declaration is for an automatic __local
1128 // (.shared) promoted to global.
1129 emitPTXGlobalVariable(GVar, O);
1130 O << ";\n";
1131 return;
1132 }
1133
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001134 if (isSampler(*GVar)) {
1135 O << ".global .samplerref " << getSamplerName(*GVar);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001136
Craig Topper062a2ba2014-04-25 05:30:21 +00001137 const Constant *Initializer = nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001138 if (GVar->hasInitializer())
1139 Initializer = GVar->getInitializer();
Craig Topper062a2ba2014-04-25 05:30:21 +00001140 const ConstantInt *CI = nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001141 if (Initializer)
1142 CI = dyn_cast<ConstantInt>(Initializer);
1143 if (CI) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001144 unsigned sample = CI->getZExtValue();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001145
1146 O << " = { ";
1147
Justin Holewinski0497ab12013-03-30 14:29:21 +00001148 for (int i = 0,
1149 addr = ((sample & __CLK_ADDRESS_MASK) >> __CLK_ADDRESS_BASE);
1150 i < 3; i++) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001151 O << "addr_mode_" << i << " = ";
1152 switch (addr) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001153 case 0:
1154 O << "wrap";
1155 break;
1156 case 1:
1157 O << "clamp_to_border";
1158 break;
1159 case 2:
1160 O << "clamp_to_edge";
1161 break;
1162 case 3:
1163 O << "wrap";
1164 break;
1165 case 4:
1166 O << "mirror";
1167 break;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001168 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001169 O << ", ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001170 }
1171 O << "filter_mode = ";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001172 switch ((sample & __CLK_FILTER_MASK) >> __CLK_FILTER_BASE) {
1173 case 0:
1174 O << "nearest";
1175 break;
1176 case 1:
1177 O << "linear";
1178 break;
1179 case 2:
Craig Topper2a30d782014-06-18 05:05:13 +00001180 llvm_unreachable("Anisotropic filtering is not supported");
Justin Holewinski0497ab12013-03-30 14:29:21 +00001181 default:
1182 O << "nearest";
1183 break;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001184 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001185 if (!((sample & __CLK_NORMALIZED_MASK) >> __CLK_NORMALIZED_BASE)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001186 O << ", force_unnormalized_coords = 1";
1187 }
1188 O << " }";
1189 }
1190
1191 O << ";\n";
1192 return;
1193 }
1194
1195 if (GVar->hasPrivateLinkage()) {
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001196 if (strncmp(GVar->getName().data(), "unrollpragma", 12) == 0)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001197 return;
1198
1199 // FIXME - need better way (e.g. Metadata) to avoid generating this global
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001200 if (strncmp(GVar->getName().data(), "filename", 8) == 0)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001201 return;
1202 if (GVar->use_empty())
1203 return;
1204 }
1205
Craig Topper062a2ba2014-04-25 05:30:21 +00001206 const Function *demotedFunc = nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001207 if (!processDemoted && canDemoteGlobalVar(GVar, demotedFunc)) {
Yaron Keren075759a2015-03-30 15:42:36 +00001208 O << "// " << GVar->getName() << " has been demoted\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001209 if (localDecls.find(demotedFunc) != localDecls.end())
1210 localDecls[demotedFunc].push_back(GVar);
1211 else {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001212 std::vector<const GlobalVariable *> temp;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001213 temp.push_back(GVar);
1214 localDecls[demotedFunc] = temp;
1215 }
1216 return;
1217 }
1218
1219 O << ".";
1220 emitPTXAddressSpace(PTy->getAddressSpace(), O);
Justin Holewinski773ca402014-06-27 18:35:58 +00001221
1222 if (isManaged(*GVar)) {
1223 O << " .attribute(.managed)";
1224 }
1225
Justin Holewinskiae556d32012-05-04 20:18:50 +00001226 if (GVar->getAlignment() == 0)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001227 O << " .align " << (int)DL.getPrefTypeAlignment(ETy);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001228 else
1229 O << " .align " << GVar->getAlignment();
1230
Justin Lebar1cf6bf42017-01-18 00:29:53 +00001231 if (ETy->isFloatingPointTy() || ETy->isPointerTy() ||
1232 (ETy->isIntegerTy() && ETy->getScalarSizeInBits() <= 64)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001233 O << " .";
Justin Holewinski700b6fa2013-05-20 12:13:28 +00001234 // Special case: ABI requires that we use .u8 for predicates
1235 if (ETy->isIntegerTy(1))
1236 O << "u8";
1237 else
1238 O << getPTXFundamentalTypeStr(ETy, false);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001239 O << " ";
Matt Arsenault8b643552015-06-09 00:31:39 +00001240 getSymbol(GVar)->print(O, MAI);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001241
1242 // Ptx allows variable initilization only for constant and global state
1243 // spaces.
Justin Holewinski549c7732014-06-27 18:36:01 +00001244 if (GVar->hasInitializer()) {
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001245 if ((PTy->getAddressSpace() == ADDRESS_SPACE_GLOBAL) ||
1246 (PTy->getAddressSpace() == ADDRESS_SPACE_CONST)) {
Justin Holewinski549c7732014-06-27 18:36:01 +00001247 const Constant *Initializer = GVar->getInitializer();
Jingyue Wu312fd022015-04-24 02:57:30 +00001248 // 'undef' is treated as there is no value specified.
Justin Holewinski549c7732014-06-27 18:36:01 +00001249 if (!Initializer->isNullValue() && !isa<UndefValue>(Initializer)) {
1250 O << " = ";
1251 printScalarConstant(Initializer, O);
1252 }
1253 } else {
Jingyue Wufcec0982015-08-22 05:40:26 +00001254 // The frontend adds zero-initializer to device and constant variables
1255 // that don't have an initial value, and UndefValue to shared
1256 // variables, so skip warning for this case.
1257 if (!GVar->getInitializer()->isNullValue() &&
1258 !isa<UndefValue>(GVar->getInitializer())) {
Benjamin Kramerdba7ee92015-05-28 11:24:24 +00001259 report_fatal_error("initial value of '" + GVar->getName() +
1260 "' is not allowed in addrspace(" +
1261 Twine(PTy->getAddressSpace()) + ")");
Justin Holewinski549c7732014-06-27 18:36:01 +00001262 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001263 }
1264 }
1265 } else {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001266 unsigned int ElementSize = 0;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001267
1268 // Although PTX has direct support for struct type and array type and
1269 // LLVM IR is very similar to PTX, the LLVM CodeGen does not support for
1270 // targets that support these high level field accesses. Structs, arrays
1271 // and vectors are lowered into arrays of bytes.
1272 switch (ETy->getTypeID()) {
Justin Lebar1cf6bf42017-01-18 00:29:53 +00001273 case Type::IntegerTyID: // Integers larger than 64 bits
Justin Holewinskiae556d32012-05-04 20:18:50 +00001274 case Type::StructTyID:
1275 case Type::ArrayTyID:
1276 case Type::VectorTyID:
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001277 ElementSize = DL.getTypeStoreSize(ETy);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001278 // Ptx allows variable initilization only for constant and
1279 // global state spaces.
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001280 if (((PTy->getAddressSpace() == ADDRESS_SPACE_GLOBAL) ||
1281 (PTy->getAddressSpace() == ADDRESS_SPACE_CONST)) &&
Justin Holewinski0497ab12013-03-30 14:29:21 +00001282 GVar->hasInitializer()) {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001283 const Constant *Initializer = GVar->getInitializer();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001284 if (!isa<UndefValue>(Initializer) && !Initializer->isNullValue()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001285 AggBuffer aggBuffer(ElementSize, O, *this);
1286 bufferAggregateConstant(Initializer, &aggBuffer);
1287 if (aggBuffer.numSymbols) {
Eric Christopher6aad8b12015-02-19 00:08:14 +00001288 if (static_cast<const NVPTXTargetMachine &>(TM).is64Bit()) {
Matt Arsenault8b643552015-06-09 00:31:39 +00001289 O << " .u64 ";
1290 getSymbol(GVar)->print(O, MAI);
1291 O << "[";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001292 O << ElementSize / 8;
1293 } else {
Matt Arsenault8b643552015-06-09 00:31:39 +00001294 O << " .u32 ";
1295 getSymbol(GVar)->print(O, MAI);
1296 O << "[";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001297 O << ElementSize / 4;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001298 }
1299 O << "]";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001300 } else {
Matt Arsenault8b643552015-06-09 00:31:39 +00001301 O << " .b8 ";
1302 getSymbol(GVar)->print(O, MAI);
1303 O << "[";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001304 O << ElementSize;
1305 O << "]";
1306 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001307 O << " = {";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001308 aggBuffer.print();
1309 O << "}";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001310 } else {
Matt Arsenault8b643552015-06-09 00:31:39 +00001311 O << " .b8 ";
1312 getSymbol(GVar)->print(O, MAI);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001313 if (ElementSize) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001314 O << "[";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001315 O << ElementSize;
1316 O << "]";
1317 }
1318 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001319 } else {
Matt Arsenault8b643552015-06-09 00:31:39 +00001320 O << " .b8 ";
1321 getSymbol(GVar)->print(O, MAI);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001322 if (ElementSize) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001323 O << "[";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001324 O << ElementSize;
1325 O << "]";
1326 }
1327 }
1328 break;
1329 default:
Craig Topper2a30d782014-06-18 05:05:13 +00001330 llvm_unreachable("type not supported yet");
Justin Holewinskiae556d32012-05-04 20:18:50 +00001331 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001332 }
1333 O << ";\n";
1334}
1335
1336void NVPTXAsmPrinter::emitDemotedVars(const Function *f, raw_ostream &O) {
1337 if (localDecls.find(f) == localDecls.end())
1338 return;
1339
Justin Holewinski01f89f02013-05-20 12:13:32 +00001340 std::vector<const GlobalVariable *> &gvars = localDecls[f];
Justin Holewinskiae556d32012-05-04 20:18:50 +00001341
Justin Holewinski0497ab12013-03-30 14:29:21 +00001342 for (unsigned i = 0, e = gvars.size(); i != e; ++i) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001343 O << "\t// demoted variable\n\t";
1344 printModuleLevelGV(gvars[i], O, true);
1345 }
1346}
1347
1348void NVPTXAsmPrinter::emitPTXAddressSpace(unsigned int AddressSpace,
1349 raw_ostream &O) const {
1350 switch (AddressSpace) {
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001351 case ADDRESS_SPACE_LOCAL:
Justin Holewinski0497ab12013-03-30 14:29:21 +00001352 O << "local";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001353 break;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001354 case ADDRESS_SPACE_GLOBAL:
Justin Holewinski0497ab12013-03-30 14:29:21 +00001355 O << "global";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001356 break;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001357 case ADDRESS_SPACE_CONST:
Justin Holewinski0497ab12013-03-30 14:29:21 +00001358 O << "const";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001359 break;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001360 case ADDRESS_SPACE_SHARED:
Justin Holewinski0497ab12013-03-30 14:29:21 +00001361 O << "shared";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001362 break;
1363 default:
Justin Lebar321b4432018-02-08 00:50:04 +00001364 report_fatal_error("Bad address space found while emitting PTX: " +
1365 llvm::Twine(AddressSpace));
Justin Holewinski36a50992013-02-09 13:34:15 +00001366 break;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001367 }
1368}
1369
Justin Holewinski0497ab12013-03-30 14:29:21 +00001370std::string
Craig Toppere3dcce92015-08-01 22:20:21 +00001371NVPTXAsmPrinter::getPTXFundamentalTypeStr(Type *Ty, bool useB4PTR) const {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001372 switch (Ty->getTypeID()) {
1373 default:
1374 llvm_unreachable("unexpected type");
1375 break;
1376 case Type::IntegerTyID: {
1377 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
1378 if (NumBits == 1)
1379 return "pred";
1380 else if (NumBits <= 64) {
1381 std::string name = "u";
1382 return name + utostr(NumBits);
1383 } else {
1384 llvm_unreachable("Integer too large");
1385 break;
1386 }
1387 break;
1388 }
Artem Belevich64dc9be2017-01-13 20:56:17 +00001389 case Type::HalfTyID:
1390 // fp16 is stored as .b16 for compatibility with pre-sm_53 PTX assembly.
1391 return "b16";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001392 case Type::FloatTyID:
1393 return "f32";
1394 case Type::DoubleTyID:
1395 return "f64";
1396 case Type::PointerTyID:
Eric Christopher6aad8b12015-02-19 00:08:14 +00001397 if (static_cast<const NVPTXTargetMachine &>(TM).is64Bit())
Justin Holewinski0497ab12013-03-30 14:29:21 +00001398 if (useB4PTR)
1399 return "b64";
1400 else
1401 return "u64";
1402 else if (useB4PTR)
1403 return "b32";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001404 else
Justin Holewinski0497ab12013-03-30 14:29:21 +00001405 return "u32";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001406 }
1407 llvm_unreachable("unexpected type");
Craig Topper062a2ba2014-04-25 05:30:21 +00001408 return nullptr;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001409}
1410
Justin Holewinski0497ab12013-03-30 14:29:21 +00001411void NVPTXAsmPrinter::emitPTXGlobalVariable(const GlobalVariable *GVar,
Justin Holewinskiae556d32012-05-04 20:18:50 +00001412 raw_ostream &O) {
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001413 const DataLayout &DL = getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001414
1415 // GlobalVariables are always constant pointers themselves.
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001416 Type *ETy = GVar->getValueType();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001417
1418 O << ".";
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001419 emitPTXAddressSpace(GVar->getType()->getAddressSpace(), O);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001420 if (GVar->getAlignment() == 0)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001421 O << " .align " << (int)DL.getPrefTypeAlignment(ETy);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001422 else
1423 O << " .align " << GVar->getAlignment();
1424
Artem Belevichd7a73822017-07-20 21:16:03 +00001425 // Special case for i128
1426 if (ETy->isIntegerTy(128)) {
1427 O << " .b8 ";
1428 getSymbol(GVar)->print(O, MAI);
1429 O << "[16]";
1430 return;
1431 }
1432
Jingyue Wue4c9cf02014-12-17 17:59:04 +00001433 if (ETy->isFloatingPointTy() || ETy->isIntegerTy() || ETy->isPointerTy()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001434 O << " .";
1435 O << getPTXFundamentalTypeStr(ETy);
1436 O << " ";
Matt Arsenault8b643552015-06-09 00:31:39 +00001437 getSymbol(GVar)->print(O, MAI);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001438 return;
1439 }
1440
Justin Holewinski0497ab12013-03-30 14:29:21 +00001441 int64_t ElementSize = 0;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001442
1443 // Although PTX has direct support for struct type and array type and LLVM IR
1444 // is very similar to PTX, the LLVM CodeGen does not support for targets that
1445 // support these high level field accesses. Structs and arrays are lowered
1446 // into arrays of bytes.
1447 switch (ETy->getTypeID()) {
1448 case Type::StructTyID:
1449 case Type::ArrayTyID:
1450 case Type::VectorTyID:
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001451 ElementSize = DL.getTypeStoreSize(ETy);
Matt Arsenault8b643552015-06-09 00:31:39 +00001452 O << " .b8 ";
1453 getSymbol(GVar)->print(O, MAI);
1454 O << "[";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001455 if (ElementSize) {
Benjamin Kramerdba7ee92015-05-28 11:24:24 +00001456 O << ElementSize;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001457 }
1458 O << "]";
1459 break;
1460 default:
Craig Topper2a30d782014-06-18 05:05:13 +00001461 llvm_unreachable("type not supported yet");
Justin Holewinskiae556d32012-05-04 20:18:50 +00001462 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001463}
1464
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001465static unsigned int getOpenCLAlignment(const DataLayout &DL, Type *Ty) {
Rafael Espindola08013342013-12-07 19:34:20 +00001466 if (Ty->isSingleValueType())
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001467 return DL.getPrefTypeAlignment(Ty);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001468
Craig Toppere3dcce92015-08-01 22:20:21 +00001469 auto *ATy = dyn_cast<ArrayType>(Ty);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001470 if (ATy)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001471 return getOpenCLAlignment(DL, ATy->getElementType());
Justin Holewinskiae556d32012-05-04 20:18:50 +00001472
Craig Toppere3dcce92015-08-01 22:20:21 +00001473 auto *STy = dyn_cast<StructType>(Ty);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001474 if (STy) {
1475 unsigned int alignStruct = 1;
1476 // Go through each element of the struct and find the
1477 // largest alignment.
Justin Holewinski0497ab12013-03-30 14:29:21 +00001478 for (unsigned i = 0, e = STy->getNumElements(); i != e; i++) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001479 Type *ETy = STy->getElementType(i);
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001480 unsigned int align = getOpenCLAlignment(DL, ETy);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001481 if (align > alignStruct)
1482 alignStruct = align;
1483 }
1484 return alignStruct;
1485 }
1486
Craig Toppere3dcce92015-08-01 22:20:21 +00001487 auto *FTy = dyn_cast<FunctionType>(Ty);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001488 if (FTy)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001489 return DL.getPointerPrefAlignment();
1490 return DL.getPrefTypeAlignment(Ty);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001491}
1492
1493void NVPTXAsmPrinter::printParamName(Function::const_arg_iterator I,
1494 int paramIndex, raw_ostream &O) {
Matt Arsenault8b643552015-06-09 00:31:39 +00001495 getSymbol(I->getParent())->print(O, MAI);
1496 O << "_param_" << paramIndex;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001497}
1498
Justin Holewinski0497ab12013-03-30 14:29:21 +00001499void NVPTXAsmPrinter::emitFunctionParamList(const Function *F, raw_ostream &O) {
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001500 const DataLayout &DL = getDataLayout();
Reid Klecknerb5180542017-03-21 16:57:19 +00001501 const AttributeList &PAL = F->getAttributes();
Eric Christopher6aad8b12015-02-19 00:08:14 +00001502 const TargetLowering *TLI = nvptxSubtarget->getTargetLowering();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001503 Function::const_arg_iterator I, E;
1504 unsigned paramIndex = 0;
1505 bool first = true;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001506 bool isKernelFunc = isKernelFunction(*F);
Eric Christopher6aad8b12015-02-19 00:08:14 +00001507 bool isABI = (nvptxSubtarget->getSmVersion() >= 20);
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001508 MVT thePointerTy = TLI->getPointerTy(DL);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001509
Justin Lebar2a161f92016-01-23 21:12:17 +00001510 if (F->arg_empty()) {
1511 O << "()\n";
1512 return;
1513 }
1514
Justin Holewinskiae556d32012-05-04 20:18:50 +00001515 O << "(\n";
1516
1517 for (I = F->arg_begin(), E = F->arg_end(); I != E; ++I, paramIndex++) {
Justin Holewinskie9884092013-03-24 21:17:47 +00001518 Type *Ty = I->getType();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001519
1520 if (!first)
1521 O << ",\n";
1522
1523 first = false;
1524
1525 // Handle image/sampler parameters
Justin Holewinski30d56a72014-04-09 15:39:15 +00001526 if (isKernelFunction(*F)) {
1527 if (isSampler(*I) || isImage(*I)) {
1528 if (isImage(*I)) {
1529 std::string sname = I->getName();
1530 if (isImageWriteOnly(*I) || isImageReadWrite(*I)) {
Eric Christopher6aad8b12015-02-19 00:08:14 +00001531 if (nvptxSubtarget->hasImageHandles())
Justin Holewinski30d56a72014-04-09 15:39:15 +00001532 O << "\t.param .u64 .ptr .surfref ";
1533 else
1534 O << "\t.param .surfref ";
Matt Arsenault8b643552015-06-09 00:31:39 +00001535 CurrentFnSym->print(O, MAI);
1536 O << "_param_" << paramIndex;
Justin Holewinski30d56a72014-04-09 15:39:15 +00001537 }
1538 else { // Default image is read_only
Eric Christopher6aad8b12015-02-19 00:08:14 +00001539 if (nvptxSubtarget->hasImageHandles())
Justin Holewinski30d56a72014-04-09 15:39:15 +00001540 O << "\t.param .u64 .ptr .texref ";
1541 else
1542 O << "\t.param .texref ";
Matt Arsenault8b643552015-06-09 00:31:39 +00001543 CurrentFnSym->print(O, MAI);
1544 O << "_param_" << paramIndex;
Justin Holewinski30d56a72014-04-09 15:39:15 +00001545 }
1546 } else {
Eric Christopher6aad8b12015-02-19 00:08:14 +00001547 if (nvptxSubtarget->hasImageHandles())
Justin Holewinski30d56a72014-04-09 15:39:15 +00001548 O << "\t.param .u64 .ptr .samplerref ";
1549 else
1550 O << "\t.param .samplerref ";
Matt Arsenault8b643552015-06-09 00:31:39 +00001551 CurrentFnSym->print(O, MAI);
1552 O << "_param_" << paramIndex;
Justin Holewinski30d56a72014-04-09 15:39:15 +00001553 }
1554 continue;
1555 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001556 }
1557
Reid Klecknerf021fab2017-04-13 23:12:13 +00001558 if (!PAL.hasParamAttribute(paramIndex, Attribute::ByVal)) {
Artem Belevichd7a73822017-07-20 21:16:03 +00001559 if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) {
Gautam Chakrabarti2c283402014-01-28 18:35:29 +00001560 // Just print .param .align <a> .b8 .param[size];
Justin Holewinskie9884092013-03-24 21:17:47 +00001561 // <a> = PAL.getparamalignment
1562 // size = typeallocsize of element type
Reid Kleckner859f8b52017-04-28 20:34:27 +00001563 unsigned align = PAL.getParamAlignment(paramIndex);
Justin Holewinskie9884092013-03-24 21:17:47 +00001564 if (align == 0)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001565 align = DL.getABITypeAlignment(Ty);
Justin Holewinskie9884092013-03-24 21:17:47 +00001566
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001567 unsigned sz = DL.getTypeAllocSize(Ty);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001568 O << "\t.param .align " << align << " .b8 ";
Justin Holewinskie9884092013-03-24 21:17:47 +00001569 printParamName(I, paramIndex, O);
1570 O << "[" << sz << "]";
1571
1572 continue;
1573 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001574 // Just a scalar
Craig Toppere3dcce92015-08-01 22:20:21 +00001575 auto *PTy = dyn_cast<PointerType>(Ty);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001576 if (isKernelFunc) {
1577 if (PTy) {
1578 // Special handling for pointer arguments to kernel
1579 O << "\t.param .u" << thePointerTy.getSizeInBits() << " ";
1580
Eric Christopherbeffc4e2015-02-19 00:08:23 +00001581 if (static_cast<NVPTXTargetMachine &>(TM).getDrvInterface() !=
1582 NVPTX::CUDA) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001583 Type *ETy = PTy->getElementType();
1584 int addrSpace = PTy->getAddressSpace();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001585 switch (addrSpace) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001586 default:
1587 O << ".ptr ";
1588 break;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001589 case ADDRESS_SPACE_CONST:
Justin Holewinskiae556d32012-05-04 20:18:50 +00001590 O << ".ptr .const ";
1591 break;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001592 case ADDRESS_SPACE_SHARED:
Justin Holewinskiae556d32012-05-04 20:18:50 +00001593 O << ".ptr .shared ";
1594 break;
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00001595 case ADDRESS_SPACE_GLOBAL:
Justin Holewinskiae556d32012-05-04 20:18:50 +00001596 O << ".ptr .global ";
1597 break;
1598 }
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001599 O << ".align " << (int)getOpenCLAlignment(DL, ETy) << " ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001600 }
1601 printParamName(I, paramIndex, O);
1602 continue;
1603 }
1604
1605 // non-pointer scalar to kernel func
Justin Holewinski700b6fa2013-05-20 12:13:28 +00001606 O << "\t.param .";
1607 // Special case: predicate operands become .u8 types
1608 if (Ty->isIntegerTy(1))
1609 O << "u8";
1610 else
1611 O << getPTXFundamentalTypeStr(Ty);
1612 O << " ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001613 printParamName(I, paramIndex, O);
1614 continue;
1615 }
1616 // Non-kernel function, just print .param .b<size> for ABI
Alp Tokerf907b892013-12-05 05:44:44 +00001617 // and .reg .b<size> for non-ABI
Justin Holewinskiae556d32012-05-04 20:18:50 +00001618 unsigned sz = 0;
1619 if (isa<IntegerType>(Ty)) {
1620 sz = cast<IntegerType>(Ty)->getBitWidth();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001621 if (sz < 32)
1622 sz = 32;
1623 } else if (isa<PointerType>(Ty))
Justin Holewinskiae556d32012-05-04 20:18:50 +00001624 sz = thePointerTy.getSizeInBits();
Artem Belevich64dc9be2017-01-13 20:56:17 +00001625 else if (Ty->isHalfTy())
1626 // PTX ABI requires all scalar parameters to be at least 32
1627 // bits in size. fp16 normally uses .b16 as its storage type
1628 // in PTX, so its size must be adjusted here, too.
1629 sz = 32;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001630 else
1631 sz = Ty->getPrimitiveSizeInBits();
1632 if (isABI)
1633 O << "\t.param .b" << sz << " ";
1634 else
1635 O << "\t.reg .b" << sz << " ";
1636 printParamName(I, paramIndex, O);
1637 continue;
1638 }
1639
1640 // param has byVal attribute. So should be a pointer
Craig Toppere3dcce92015-08-01 22:20:21 +00001641 auto *PTy = dyn_cast<PointerType>(Ty);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001642 assert(PTy && "Param with byval attribute should be a pointer type");
Justin Holewinskiae556d32012-05-04 20:18:50 +00001643 Type *ETy = PTy->getElementType();
1644
1645 if (isABI || isKernelFunc) {
Gautam Chakrabarti2c283402014-01-28 18:35:29 +00001646 // Just print .param .align <a> .b8 .param[size];
Justin Holewinskiae556d32012-05-04 20:18:50 +00001647 // <a> = PAL.getparamalignment
1648 // size = typeallocsize of element type
Reid Kleckner859f8b52017-04-28 20:34:27 +00001649 unsigned align = PAL.getParamAlignment(paramIndex);
Justin Holewinski2dc9d072012-11-09 23:50:24 +00001650 if (align == 0)
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001651 align = DL.getABITypeAlignment(ETy);
Artem Belevich052b1ed2016-07-18 19:54:56 +00001652 // Work around a bug in ptxas. When PTX code takes address of
1653 // byval parameter with alignment < 4, ptxas generates code to
1654 // spill argument into memory. Alas on sm_50+ ptxas generates
1655 // SASS code that fails with misaligned access. To work around
1656 // the problem, make sure that we align byval parameters by at
1657 // least 4. Matching change must be made in LowerCall() where we
1658 // prepare parameters for the call.
1659 //
1660 // TODO: this will need to be undone when we get to support multi-TU
1661 // device-side compilation as it breaks ABI compatibility with nvcc.
1662 // Hopefully ptxas bug is fixed by then.
1663 if (!isKernelFunc && align < 4)
1664 align = 4;
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001665 unsigned sz = DL.getTypeAllocSize(ETy);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001666 O << "\t.param .align " << align << " .b8 ";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001667 printParamName(I, paramIndex, O);
1668 O << "[" << sz << "]";
1669 continue;
1670 } else {
1671 // Split the ETy into constituent parts and
1672 // print .param .b<size> <name> for each part.
1673 // Further, if a part is vector, print the above for
1674 // each vector element.
1675 SmallVector<EVT, 16> vtparts;
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001676 ComputeValueVTs(*TLI, DL, ETy, vtparts);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001677 for (unsigned i = 0, e = vtparts.size(); i != e; ++i) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001678 unsigned elems = 1;
1679 EVT elemtype = vtparts[i];
1680 if (vtparts[i].isVector()) {
1681 elems = vtparts[i].getVectorNumElements();
1682 elemtype = vtparts[i].getVectorElementType();
1683 }
1684
Justin Holewinski0497ab12013-03-30 14:29:21 +00001685 for (unsigned j = 0, je = elems; j != je; ++j) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001686 unsigned sz = elemtype.getSizeInBits();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001687 if (elemtype.isInteger() && (sz < 32))
1688 sz = 32;
Justin Holewinskiae556d32012-05-04 20:18:50 +00001689 O << "\t.reg .b" << sz << " ";
1690 printParamName(I, paramIndex, O);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001691 if (j < je - 1)
1692 O << ",\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001693 ++paramIndex;
1694 }
Justin Holewinski0497ab12013-03-30 14:29:21 +00001695 if (i < e - 1)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001696 O << ",\n";
1697 }
1698 --paramIndex;
1699 continue;
1700 }
1701 }
1702
1703 O << "\n)\n";
1704}
1705
1706void NVPTXAsmPrinter::emitFunctionParamList(const MachineFunction &MF,
1707 raw_ostream &O) {
Matthias Braunf1caa282017-12-15 22:22:58 +00001708 const Function &F = MF.getFunction();
1709 emitFunctionParamList(&F, O);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001710}
1711
Justin Holewinski0497ab12013-03-30 14:29:21 +00001712void NVPTXAsmPrinter::setAndEmitFunctionVirtualRegisters(
1713 const MachineFunction &MF) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001714 SmallString<128> Str;
1715 raw_svector_ostream O(Str);
1716
1717 // Map the global virtual register number to a register class specific
1718 // virtual register number starting from 1 with that class.
Eric Christopherfc6de422014-08-05 02:39:49 +00001719 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001720 //unsigned numRegClasses = TRI->getNumRegClasses();
1721
1722 // Emit the Fake Stack Object
Matthias Braun941a7052016-07-28 18:40:00 +00001723 const MachineFrameInfo &MFI = MF.getFrameInfo();
1724 int NumBytes = (int) MFI.getStackSize();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001725 if (NumBytes) {
Matthias Braun941a7052016-07-28 18:40:00 +00001726 O << "\t.local .align " << MFI.getMaxAlignment() << " .b8 \t" << DEPOTNAME
Justin Holewinski0497ab12013-03-30 14:29:21 +00001727 << getFunctionNumber() << "[" << NumBytes << "];\n";
Eric Christopher02389e32015-02-19 00:08:27 +00001728 if (static_cast<const NVPTXTargetMachine &>(MF.getTarget()).is64Bit()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001729 O << "\t.reg .b64 \t%SP;\n";
1730 O << "\t.reg .b64 \t%SPL;\n";
Justin Holewinski0497ab12013-03-30 14:29:21 +00001731 } else {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001732 O << "\t.reg .b32 \t%SP;\n";
1733 O << "\t.reg .b32 \t%SPL;\n";
1734 }
1735 }
1736
1737 // Go through all virtual registers to establish the mapping between the
1738 // global virtual
1739 // register number and the per class virtual register number.
1740 // We use the per class virtual register number in the ptx output.
1741 unsigned int numVRs = MRI->getNumVirtRegs();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001742 for (unsigned i = 0; i < numVRs; i++) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001743 unsigned int vr = TRI->index2VirtReg(i);
1744 const TargetRegisterClass *RC = MRI->getRegClass(vr);
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +00001745 DenseMap<unsigned, unsigned> &regmap = VRegMapping[RC];
Justin Holewinskiae556d32012-05-04 20:18:50 +00001746 int n = regmap.size();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001747 regmap.insert(std::make_pair(vr, n + 1));
Justin Holewinskiae556d32012-05-04 20:18:50 +00001748 }
1749
1750 // Emit register declarations
1751 // @TODO: Extract out the real register usage
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +00001752 // O << "\t.reg .pred %p<" << NVPTXNumRegisters << ">;\n";
1753 // O << "\t.reg .s16 %rc<" << NVPTXNumRegisters << ">;\n";
1754 // O << "\t.reg .s16 %rs<" << NVPTXNumRegisters << ">;\n";
1755 // O << "\t.reg .s32 %r<" << NVPTXNumRegisters << ">;\n";
Justin Holewinski3e037d92014-07-16 16:26:58 +00001756 // O << "\t.reg .s64 %rd<" << NVPTXNumRegisters << ">;\n";
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +00001757 // O << "\t.reg .f32 %f<" << NVPTXNumRegisters << ">;\n";
Justin Holewinski3e037d92014-07-16 16:26:58 +00001758 // O << "\t.reg .f64 %fd<" << NVPTXNumRegisters << ">;\n";
Justin Holewinskiae556d32012-05-04 20:18:50 +00001759
1760 // Emit declaration of the virtual registers or 'physical' registers for
1761 // each register class
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +00001762 for (unsigned i=0; i< TRI->getNumRegClasses(); i++) {
1763 const TargetRegisterClass *RC = TRI->getRegClass(i);
1764 DenseMap<unsigned, unsigned> &regmap = VRegMapping[RC];
1765 std::string rcname = getNVPTXRegClassName(RC);
1766 std::string rcStr = getNVPTXRegClassStr(RC);
1767 int n = regmap.size();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001768
Justin Holewinskidbb3b2f2013-05-31 12:14:49 +00001769 // Only declare those registers that may be used.
1770 if (n) {
1771 O << "\t.reg " << rcname << " \t" << rcStr << "<" << (n+1)
1772 << ">;\n";
1773 }
1774 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001775
Lang Hames9ff69c82015-04-24 19:11:51 +00001776 OutStreamer->EmitRawText(O.str());
Justin Holewinskiae556d32012-05-04 20:18:50 +00001777}
1778
Justin Holewinskiae556d32012-05-04 20:18:50 +00001779void NVPTXAsmPrinter::printFPConstant(const ConstantFP *Fp, raw_ostream &O) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001780 APFloat APF = APFloat(Fp->getValueAPF()); // make a copy
Justin Holewinskiae556d32012-05-04 20:18:50 +00001781 bool ignored;
1782 unsigned int numHex;
1783 const char *lead;
1784
Justin Holewinski0497ab12013-03-30 14:29:21 +00001785 if (Fp->getType()->getTypeID() == Type::FloatTyID) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001786 numHex = 8;
1787 lead = "0f";
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001788 APF.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven, &ignored);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001789 } else if (Fp->getType()->getTypeID() == Type::DoubleTyID) {
1790 numHex = 16;
1791 lead = "0d";
Stephan Bergmann17c7f702016-12-14 11:57:17 +00001792 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &ignored);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001793 } else
1794 llvm_unreachable("unsupported fp type");
1795
1796 APInt API = APF.bitcastToAPInt();
Benjamin Kramer3a13ed62017-12-28 16:58:54 +00001797 O << lead << format_hex_no_prefix(API.getZExtValue(), numHex, /*Upper=*/true);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001798}
1799
Justin Holewinski01f89f02013-05-20 12:13:32 +00001800void NVPTXAsmPrinter::printScalarConstant(const Constant *CPV, raw_ostream &O) {
1801 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001802 O << CI->getValue();
1803 return;
1804 }
Justin Holewinski01f89f02013-05-20 12:13:32 +00001805 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CPV)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001806 printFPConstant(CFP, O);
1807 return;
1808 }
1809 if (isa<ConstantPointerNull>(CPV)) {
1810 O << "0";
1811 return;
1812 }
Justin Holewinski01f89f02013-05-20 12:13:32 +00001813 if (const GlobalValue *GVar = dyn_cast<GlobalValue>(CPV)) {
Justin Holewinski9d852a82014-04-09 15:39:11 +00001814 bool IsNonGenericPointer = false;
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001815 if (GVar->getType()->getAddressSpace() != 0) {
Justin Holewinski9d852a82014-04-09 15:39:11 +00001816 IsNonGenericPointer = true;
1817 }
1818 if (EmitGeneric && !isa<Function>(CPV) && !IsNonGenericPointer) {
1819 O << "generic(";
Matt Arsenault8b643552015-06-09 00:31:39 +00001820 getSymbol(GVar)->print(O, MAI);
Justin Holewinski9d852a82014-04-09 15:39:11 +00001821 O << ")";
1822 } else {
Matt Arsenault8b643552015-06-09 00:31:39 +00001823 getSymbol(GVar)->print(O, MAI);
Justin Holewinski9d852a82014-04-09 15:39:11 +00001824 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001825 return;
1826 }
Justin Holewinski01f89f02013-05-20 12:13:32 +00001827 if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) {
1828 const Value *v = Cexpr->stripPointerCasts();
Justin Holewinski9d852a82014-04-09 15:39:11 +00001829 PointerType *PTy = dyn_cast<PointerType>(Cexpr->getType());
1830 bool IsNonGenericPointer = false;
1831 if (PTy && PTy->getAddressSpace() != 0) {
1832 IsNonGenericPointer = true;
1833 }
Justin Holewinski01f89f02013-05-20 12:13:32 +00001834 if (const GlobalValue *GVar = dyn_cast<GlobalValue>(v)) {
Justin Holewinski9d852a82014-04-09 15:39:11 +00001835 if (EmitGeneric && !isa<Function>(v) && !IsNonGenericPointer) {
1836 O << "generic(";
Matt Arsenault8b643552015-06-09 00:31:39 +00001837 getSymbol(GVar)->print(O, MAI);
Justin Holewinski9d852a82014-04-09 15:39:11 +00001838 O << ")";
1839 } else {
Matt Arsenault8b643552015-06-09 00:31:39 +00001840 getSymbol(GVar)->print(O, MAI);
Justin Holewinski9d852a82014-04-09 15:39:11 +00001841 }
Justin Holewinskiae556d32012-05-04 20:18:50 +00001842 return;
1843 } else {
Matt Arsenault8b643552015-06-09 00:31:39 +00001844 lowerConstant(CPV)->print(O, MAI);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001845 return;
1846 }
1847 }
1848 llvm_unreachable("Not scalar type found in printScalarConstant()");
1849}
1850
Samuel Antaocd501352015-06-09 16:29:34 +00001851// These utility functions assure we get the right sequence of bytes for a given
1852// type even for big-endian machines
1853template <typename T> static void ConvertIntToBytes(unsigned char *p, T val) {
1854 int64_t vp = (int64_t)val;
1855 for (unsigned i = 0; i < sizeof(T); ++i) {
1856 p[i] = (unsigned char)vp;
1857 vp >>= 8;
1858 }
1859}
1860static void ConvertFloatToBytes(unsigned char *p, float val) {
1861 int32_t *vp = (int32_t *)&val;
1862 for (unsigned i = 0; i < sizeof(int32_t); ++i) {
1863 p[i] = (unsigned char)*vp;
1864 *vp >>= 8;
1865 }
1866}
1867static void ConvertDoubleToBytes(unsigned char *p, double val) {
1868 int64_t *vp = (int64_t *)&val;
1869 for (unsigned i = 0; i < sizeof(int64_t); ++i) {
1870 p[i] = (unsigned char)*vp;
1871 *vp >>= 8;
1872 }
1873}
1874
Justin Holewinski01f89f02013-05-20 12:13:32 +00001875void NVPTXAsmPrinter::bufferLEByte(const Constant *CPV, int Bytes,
Justin Holewinskiae556d32012-05-04 20:18:50 +00001876 AggBuffer *aggBuffer) {
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001877 const DataLayout &DL = getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +00001878
1879 if (isa<UndefValue>(CPV) || CPV->isNullValue()) {
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001880 int s = DL.getTypeAllocSize(CPV->getType());
Justin Holewinski0497ab12013-03-30 14:29:21 +00001881 if (s < Bytes)
Justin Holewinskiae556d32012-05-04 20:18:50 +00001882 s = Bytes;
1883 aggBuffer->addZeros(s);
1884 return;
1885 }
1886
Samuel Antaocd501352015-06-09 16:29:34 +00001887 unsigned char ptr[8];
Justin Holewinskiae556d32012-05-04 20:18:50 +00001888 switch (CPV->getType()->getTypeID()) {
1889
1890 case Type::IntegerTyID: {
Craig Toppere3dcce92015-08-01 22:20:21 +00001891 Type *ETy = CPV->getType();
Justin Holewinski0497ab12013-03-30 14:29:21 +00001892 if (ETy == Type::getInt8Ty(CPV->getContext())) {
Benjamin Kramer619c4e52015-04-10 11:24:51 +00001893 unsigned char c = (unsigned char)cast<ConstantInt>(CPV)->getZExtValue();
Samuel Antaocd501352015-06-09 16:29:34 +00001894 ConvertIntToBytes<>(ptr, c);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001895 aggBuffer->addBytes(ptr, 1, Bytes);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001896 } else if (ETy == Type::getInt16Ty(CPV->getContext())) {
Benjamin Kramer619c4e52015-04-10 11:24:51 +00001897 short int16 = (short)cast<ConstantInt>(CPV)->getZExtValue();
Samuel Antaocd501352015-06-09 16:29:34 +00001898 ConvertIntToBytes<>(ptr, int16);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001899 aggBuffer->addBytes(ptr, 2, Bytes);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001900 } else if (ETy == Type::getInt32Ty(CPV->getContext())) {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001901 if (const ConstantInt *constInt = dyn_cast<ConstantInt>(CPV)) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001902 int int32 = (int)(constInt->getZExtValue());
Samuel Antaocd501352015-06-09 16:29:34 +00001903 ConvertIntToBytes<>(ptr, int32);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001904 aggBuffer->addBytes(ptr, 4, Bytes);
1905 break;
David Majnemerd536f232016-07-29 03:27:26 +00001906 } else if (const auto *Cexpr = dyn_cast<ConstantExpr>(CPV)) {
1907 if (const auto *constInt = dyn_cast_or_null<ConstantInt>(
1908 ConstantFoldConstant(Cexpr, DL))) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001909 int int32 = (int)(constInt->getZExtValue());
Samuel Antaocd501352015-06-09 16:29:34 +00001910 ConvertIntToBytes<>(ptr, int32);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001911 aggBuffer->addBytes(ptr, 4, Bytes);
1912 break;
1913 }
1914 if (Cexpr->getOpcode() == Instruction::PtrToInt) {
1915 Value *v = Cexpr->getOperand(0)->stripPointerCasts();
Jingyue Wu312fd022015-04-24 02:57:30 +00001916 aggBuffer->addSymbol(v, Cexpr->getOperand(0));
Justin Holewinskiae556d32012-05-04 20:18:50 +00001917 aggBuffer->addZeros(4);
1918 break;
1919 }
1920 }
Craig Topperbdf39a42012-05-24 07:02:50 +00001921 llvm_unreachable("unsupported integer const type");
Justin Holewinski0497ab12013-03-30 14:29:21 +00001922 } else if (ETy == Type::getInt64Ty(CPV->getContext())) {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001923 if (const ConstantInt *constInt = dyn_cast<ConstantInt>(CPV)) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001924 long long int64 = (long long)(constInt->getZExtValue());
Samuel Antaocd501352015-06-09 16:29:34 +00001925 ConvertIntToBytes<>(ptr, int64);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001926 aggBuffer->addBytes(ptr, 8, Bytes);
1927 break;
Justin Holewinski01f89f02013-05-20 12:13:32 +00001928 } else if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) {
David Majnemerd536f232016-07-29 03:27:26 +00001929 if (const auto *constInt = dyn_cast_or_null<ConstantInt>(
1930 ConstantFoldConstant(Cexpr, DL))) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001931 long long int64 = (long long)(constInt->getZExtValue());
Samuel Antaocd501352015-06-09 16:29:34 +00001932 ConvertIntToBytes<>(ptr, int64);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001933 aggBuffer->addBytes(ptr, 8, Bytes);
1934 break;
1935 }
1936 if (Cexpr->getOpcode() == Instruction::PtrToInt) {
1937 Value *v = Cexpr->getOperand(0)->stripPointerCasts();
Jingyue Wu312fd022015-04-24 02:57:30 +00001938 aggBuffer->addSymbol(v, Cexpr->getOperand(0));
Justin Holewinskiae556d32012-05-04 20:18:50 +00001939 aggBuffer->addZeros(8);
1940 break;
1941 }
1942 }
1943 llvm_unreachable("unsupported integer const type");
Craig Topperbdf39a42012-05-24 07:02:50 +00001944 } else
Justin Holewinskiae556d32012-05-04 20:18:50 +00001945 llvm_unreachable("unsupported integer const type");
1946 break;
1947 }
Artem Belevichf256dec2018-04-06 22:25:08 +00001948 case Type::HalfTyID:
Justin Holewinskiae556d32012-05-04 20:18:50 +00001949 case Type::FloatTyID:
1950 case Type::DoubleTyID: {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001951 const ConstantFP *CFP = dyn_cast<ConstantFP>(CPV);
Craig Toppere3dcce92015-08-01 22:20:21 +00001952 Type *Ty = CFP->getType();
Artem Belevichf256dec2018-04-06 22:25:08 +00001953 if (Ty == Type::getHalfTy(CPV->getContext())) {
1954 APInt API = CFP->getValueAPF().bitcastToAPInt();
1955 uint16_t float16 = API.getLoBits(16).getZExtValue();
1956 ConvertIntToBytes<>(ptr, float16);
1957 aggBuffer->addBytes(ptr, 2, Bytes);
1958 } else if (Ty == Type::getFloatTy(CPV->getContext())) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00001959 float float32 = (float) CFP->getValueAPF().convertToFloat();
Samuel Antaocd501352015-06-09 16:29:34 +00001960 ConvertFloatToBytes(ptr, float32);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001961 aggBuffer->addBytes(ptr, 4, Bytes);
1962 } else if (Ty == Type::getDoubleTy(CPV->getContext())) {
1963 double float64 = CFP->getValueAPF().convertToDouble();
Samuel Antaocd501352015-06-09 16:29:34 +00001964 ConvertDoubleToBytes(ptr, float64);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001965 aggBuffer->addBytes(ptr, 8, Bytes);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001966 } else {
Justin Holewinskiae556d32012-05-04 20:18:50 +00001967 llvm_unreachable("unsupported fp const type");
1968 }
1969 break;
1970 }
1971 case Type::PointerTyID: {
Justin Holewinski01f89f02013-05-20 12:13:32 +00001972 if (const GlobalValue *GVar = dyn_cast<GlobalValue>(CPV)) {
Jingyue Wu312fd022015-04-24 02:57:30 +00001973 aggBuffer->addSymbol(GVar, GVar);
Justin Holewinski01f89f02013-05-20 12:13:32 +00001974 } else if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) {
1975 const Value *v = Cexpr->stripPointerCasts();
Jingyue Wu312fd022015-04-24 02:57:30 +00001976 aggBuffer->addSymbol(v, Cexpr);
Justin Holewinskiae556d32012-05-04 20:18:50 +00001977 }
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001978 unsigned int s = DL.getTypeAllocSize(CPV->getType());
Justin Holewinskiae556d32012-05-04 20:18:50 +00001979 aggBuffer->addZeros(s);
1980 break;
1981 }
1982
1983 case Type::ArrayTyID:
1984 case Type::VectorTyID:
1985 case Type::StructTyID: {
Duncan P. N. Exon Smith1de3c7e2016-04-05 21:10:45 +00001986 if (isa<ConstantAggregate>(CPV) || isa<ConstantDataSequential>(CPV)) {
Mehdi Aminibd7287e2015-07-16 06:11:10 +00001987 int ElementSize = DL.getTypeAllocSize(CPV->getType());
Justin Holewinskiae556d32012-05-04 20:18:50 +00001988 bufferAggregateConstant(CPV, aggBuffer);
Justin Holewinski0497ab12013-03-30 14:29:21 +00001989 if (Bytes > ElementSize)
1990 aggBuffer->addZeros(Bytes - ElementSize);
1991 } else if (isa<ConstantAggregateZero>(CPV))
Justin Holewinskiae556d32012-05-04 20:18:50 +00001992 aggBuffer->addZeros(Bytes);
1993 else
1994 llvm_unreachable("Unexpected Constant type");
1995 break;
1996 }
1997
1998 default:
1999 llvm_unreachable("unsupported type");
2000 }
2001}
2002
Justin Holewinski01f89f02013-05-20 12:13:32 +00002003void NVPTXAsmPrinter::bufferAggregateConstant(const Constant *CPV,
Justin Holewinskiae556d32012-05-04 20:18:50 +00002004 AggBuffer *aggBuffer) {
Mehdi Aminibd7287e2015-07-16 06:11:10 +00002005 const DataLayout &DL = getDataLayout();
Justin Holewinskiae556d32012-05-04 20:18:50 +00002006 int Bytes;
2007
Justin Lebar1cf6bf42017-01-18 00:29:53 +00002008 // Integers of arbitrary width
2009 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) {
2010 APInt Val = CI->getValue();
2011 for (unsigned I = 0, E = DL.getTypeAllocSize(CPV->getType()); I < E; ++I) {
2012 uint8_t Byte = Val.getLoBits(8).getZExtValue();
2013 aggBuffer->addBytes(&Byte, 1, 1);
Craig Topperfc947bc2017-04-18 17:14:21 +00002014 Val.lshrInPlace(8);
Justin Lebar1cf6bf42017-01-18 00:29:53 +00002015 }
2016 return;
2017 }
2018
Justin Holewinskiae556d32012-05-04 20:18:50 +00002019 // Old constants
2020 if (isa<ConstantArray>(CPV) || isa<ConstantVector>(CPV)) {
2021 if (CPV->getNumOperands())
2022 for (unsigned i = 0, e = CPV->getNumOperands(); i != e; ++i)
2023 bufferLEByte(cast<Constant>(CPV->getOperand(i)), 0, aggBuffer);
2024 return;
2025 }
2026
2027 if (const ConstantDataSequential *CDS =
Justin Holewinski0497ab12013-03-30 14:29:21 +00002028 dyn_cast<ConstantDataSequential>(CPV)) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002029 if (CDS->getNumElements())
2030 for (unsigned i = 0; i < CDS->getNumElements(); ++i)
2031 bufferLEByte(cast<Constant>(CDS->getElementAsConstant(i)), 0,
2032 aggBuffer);
2033 return;
2034 }
2035
Justin Holewinskiae556d32012-05-04 20:18:50 +00002036 if (isa<ConstantStruct>(CPV)) {
2037 if (CPV->getNumOperands()) {
2038 StructType *ST = cast<StructType>(CPV->getType());
2039 for (unsigned i = 0, e = CPV->getNumOperands(); i != e; ++i) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002040 if (i == (e - 1))
Mehdi Aminibd7287e2015-07-16 06:11:10 +00002041 Bytes = DL.getStructLayout(ST)->getElementOffset(0) +
2042 DL.getTypeAllocSize(ST) -
2043 DL.getStructLayout(ST)->getElementOffset(i);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002044 else
Mehdi Aminibd7287e2015-07-16 06:11:10 +00002045 Bytes = DL.getStructLayout(ST)->getElementOffset(i + 1) -
2046 DL.getStructLayout(ST)->getElementOffset(i);
Justin Holewinski0497ab12013-03-30 14:29:21 +00002047 bufferLEByte(cast<Constant>(CPV->getOperand(i)), Bytes, aggBuffer);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002048 }
2049 }
2050 return;
2051 }
Craig Topperbdf39a42012-05-24 07:02:50 +00002052 llvm_unreachable("unsupported constant type in printAggregateConstant()");
Justin Holewinskiae556d32012-05-04 20:18:50 +00002053}
2054
2055// buildTypeNameMap - Run through symbol table looking for type names.
2056//
2057
Justin Holewinski0497ab12013-03-30 14:29:21 +00002058bool NVPTXAsmPrinter::ignoreLoc(const MachineInstr &MI) {
2059 switch (MI.getOpcode()) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002060 default:
2061 return false;
Justin Holewinski0497ab12013-03-30 14:29:21 +00002062 case NVPTX::CallArgBeginInst:
2063 case NVPTX::CallArgEndInst0:
2064 case NVPTX::CallArgEndInst1:
2065 case NVPTX::CallArgF32:
2066 case NVPTX::CallArgF64:
2067 case NVPTX::CallArgI16:
2068 case NVPTX::CallArgI32:
2069 case NVPTX::CallArgI32imm:
2070 case NVPTX::CallArgI64:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002071 case NVPTX::CallArgParam:
2072 case NVPTX::CallVoidInst:
2073 case NVPTX::CallVoidInstReg:
2074 case NVPTX::Callseq_End:
Justin Holewinskiae556d32012-05-04 20:18:50 +00002075 case NVPTX::CallVoidInstReg64:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002076 case NVPTX::DeclareParamInst:
2077 case NVPTX::DeclareRetMemInst:
2078 case NVPTX::DeclareRetRegInst:
2079 case NVPTX::DeclareRetScalarInst:
2080 case NVPTX::DeclareScalarParamInst:
2081 case NVPTX::DeclareScalarRegInst:
2082 case NVPTX::StoreParamF32:
2083 case NVPTX::StoreParamF64:
2084 case NVPTX::StoreParamI16:
2085 case NVPTX::StoreParamI32:
2086 case NVPTX::StoreParamI64:
2087 case NVPTX::StoreParamI8:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002088 case NVPTX::StoreRetvalF32:
2089 case NVPTX::StoreRetvalF64:
2090 case NVPTX::StoreRetvalI16:
2091 case NVPTX::StoreRetvalI32:
2092 case NVPTX::StoreRetvalI64:
2093 case NVPTX::StoreRetvalI8:
2094 case NVPTX::LastCallArgF32:
2095 case NVPTX::LastCallArgF64:
2096 case NVPTX::LastCallArgI16:
2097 case NVPTX::LastCallArgI32:
2098 case NVPTX::LastCallArgI32imm:
2099 case NVPTX::LastCallArgI64:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002100 case NVPTX::LastCallArgParam:
2101 case NVPTX::LoadParamMemF32:
2102 case NVPTX::LoadParamMemF64:
2103 case NVPTX::LoadParamMemI16:
2104 case NVPTX::LoadParamMemI32:
2105 case NVPTX::LoadParamMemI64:
2106 case NVPTX::LoadParamMemI8:
Justin Holewinski0497ab12013-03-30 14:29:21 +00002107 case NVPTX::PrototypeInst:
2108 case NVPTX::DBG_VALUE:
Justin Holewinskiae556d32012-05-04 20:18:50 +00002109 return true;
2110 }
2111 return false;
2112}
2113
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002114/// lowerConstantForGV - Return an MCExpr for the given Constant. This is mostly
2115/// a copy from AsmPrinter::lowerConstant, except customized to only handle
2116/// expressions that are representable in PTX and create
2117/// NVPTXGenericMCSymbolRefExpr nodes for addrspacecast instructions.
2118const MCExpr *
2119NVPTXAsmPrinter::lowerConstantForGV(const Constant *CV, bool ProcessingGeneric) {
2120 MCContext &Ctx = OutContext;
2121
2122 if (CV->isNullValue() || isa<UndefValue>(CV))
Jim Grosbach13760bd2015-05-30 01:25:56 +00002123 return MCConstantExpr::create(0, Ctx);
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002124
2125 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
Jim Grosbach13760bd2015-05-30 01:25:56 +00002126 return MCConstantExpr::create(CI->getZExtValue(), Ctx);
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002127
2128 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
2129 const MCSymbolRefExpr *Expr =
Jim Grosbach13760bd2015-05-30 01:25:56 +00002130 MCSymbolRefExpr::create(getSymbol(GV), Ctx);
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002131 if (ProcessingGeneric) {
Jim Grosbach13760bd2015-05-30 01:25:56 +00002132 return NVPTXGenericMCSymbolRefExpr::create(Expr, Ctx);
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002133 } else {
2134 return Expr;
2135 }
2136 }
2137
2138 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
2139 if (!CE) {
2140 llvm_unreachable("Unknown constant value to lower!");
2141 }
2142
2143 switch (CE->getOpcode()) {
2144 default:
2145 // If the code isn't optimized, there may be outstanding folding
2146 // opportunities. Attempt to fold the expression using DataLayout as a
2147 // last resort before giving up.
David Majnemerd536f232016-07-29 03:27:26 +00002148 if (Constant *C = ConstantFoldConstant(CE, getDataLayout()))
2149 if (C && C != CE)
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002150 return lowerConstantForGV(C, ProcessingGeneric);
2151
2152 // Otherwise report the problem to the user.
2153 {
2154 std::string S;
2155 raw_string_ostream OS(S);
2156 OS << "Unsupported expression in static initializer: ";
2157 CE->printAsOperand(OS, /*PrintType=*/false,
Matthias Braunf1caa282017-12-15 22:22:58 +00002158 !MF ? nullptr : MF->getFunction().getParent());
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002159 report_fatal_error(OS.str());
2160 }
2161
2162 case Instruction::AddrSpaceCast: {
2163 // Strip the addrspacecast and pass along the operand
2164 PointerType *DstTy = cast<PointerType>(CE->getType());
2165 if (DstTy->getAddressSpace() == 0) {
2166 return lowerConstantForGV(cast<const Constant>(CE->getOperand(0)), true);
2167 }
2168 std::string S;
2169 raw_string_ostream OS(S);
2170 OS << "Unsupported expression in static initializer: ";
2171 CE->printAsOperand(OS, /*PrintType=*/ false,
Matthias Braunf1caa282017-12-15 22:22:58 +00002172 !MF ? nullptr : MF->getFunction().getParent());
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002173 report_fatal_error(OS.str());
2174 }
2175
2176 case Instruction::GetElementPtr: {
Mehdi Aminibd7287e2015-07-16 06:11:10 +00002177 const DataLayout &DL = getDataLayout();
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002178
2179 // Generate a symbolic expression for the byte address
2180 APInt OffsetAI(DL.getPointerTypeSizeInBits(CE->getType()), 0);
2181 cast<GEPOperator>(CE)->accumulateConstantOffset(DL, OffsetAI);
2182
2183 const MCExpr *Base = lowerConstantForGV(CE->getOperand(0),
2184 ProcessingGeneric);
2185 if (!OffsetAI)
2186 return Base;
2187
2188 int64_t Offset = OffsetAI.getSExtValue();
Jim Grosbach13760bd2015-05-30 01:25:56 +00002189 return MCBinaryExpr::createAdd(Base, MCConstantExpr::create(Offset, Ctx),
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002190 Ctx);
2191 }
2192
2193 case Instruction::Trunc:
2194 // We emit the value and depend on the assembler to truncate the generated
2195 // expression properly. This is important for differences between
2196 // blockaddress labels. Since the two labels are in the same function, it
2197 // is reasonable to treat their delta as a 32-bit value.
Justin Bognercd1d5aa2016-08-17 20:30:52 +00002198 LLVM_FALLTHROUGH;
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002199 case Instruction::BitCast:
2200 return lowerConstantForGV(CE->getOperand(0), ProcessingGeneric);
2201
2202 case Instruction::IntToPtr: {
Mehdi Aminibd7287e2015-07-16 06:11:10 +00002203 const DataLayout &DL = getDataLayout();
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002204
2205 // Handle casts to pointers by changing them into casts to the appropriate
2206 // integer type. This promotes constant folding and simplifies this code.
2207 Constant *Op = CE->getOperand(0);
2208 Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()),
2209 false/*ZExt*/);
2210 return lowerConstantForGV(Op, ProcessingGeneric);
2211 }
2212
2213 case Instruction::PtrToInt: {
Mehdi Aminibd7287e2015-07-16 06:11:10 +00002214 const DataLayout &DL = getDataLayout();
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002215
2216 // Support only foldable casts to/from pointers that can be eliminated by
2217 // changing the pointer to the appropriately sized integer type.
2218 Constant *Op = CE->getOperand(0);
2219 Type *Ty = CE->getType();
2220
2221 const MCExpr *OpExpr = lowerConstantForGV(Op, ProcessingGeneric);
2222
2223 // We can emit the pointer value into this slot if the slot is an
2224 // integer slot equal to the size of the pointer.
2225 if (DL.getTypeAllocSize(Ty) == DL.getTypeAllocSize(Op->getType()))
2226 return OpExpr;
2227
2228 // Otherwise the pointer is smaller than the resultant integer, mask off
2229 // the high bits so we are sure to get a proper truncation if the input is
2230 // a constant expr.
2231 unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType());
Jim Grosbach13760bd2015-05-30 01:25:56 +00002232 const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx);
2233 return MCBinaryExpr::createAnd(OpExpr, MaskExpr, Ctx);
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002234 }
2235
2236 // The MC library also has a right-shift operator, but it isn't consistently
2237 // signed or unsigned between different targets.
2238 case Instruction::Add: {
2239 const MCExpr *LHS = lowerConstantForGV(CE->getOperand(0), ProcessingGeneric);
2240 const MCExpr *RHS = lowerConstantForGV(CE->getOperand(1), ProcessingGeneric);
2241 switch (CE->getOpcode()) {
2242 default: llvm_unreachable("Unknown binary operator constant cast expr");
Jim Grosbach13760bd2015-05-30 01:25:56 +00002243 case Instruction::Add: return MCBinaryExpr::createAdd(LHS, RHS, Ctx);
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002244 }
2245 }
2246 }
2247}
2248
2249// Copy of MCExpr::print customized for NVPTX
2250void NVPTXAsmPrinter::printMCExpr(const MCExpr &Expr, raw_ostream &OS) {
2251 switch (Expr.getKind()) {
2252 case MCExpr::Target:
Matt Arsenault8b643552015-06-09 00:31:39 +00002253 return cast<MCTargetExpr>(&Expr)->printImpl(OS, MAI);
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002254 case MCExpr::Constant:
2255 OS << cast<MCConstantExpr>(Expr).getValue();
2256 return;
2257
2258 case MCExpr::SymbolRef: {
2259 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(Expr);
2260 const MCSymbol &Sym = SRE.getSymbol();
Matt Arsenault8b643552015-06-09 00:31:39 +00002261 Sym.print(OS, MAI);
Justin Holewinski3d2a9762015-04-28 17:18:30 +00002262 return;
2263 }
2264
2265 case MCExpr::Unary: {
2266 const MCUnaryExpr &UE = cast<MCUnaryExpr>(Expr);
2267 switch (UE.getOpcode()) {
2268 case MCUnaryExpr::LNot: OS << '!'; break;
2269 case MCUnaryExpr::Minus: OS << '-'; break;
2270 case MCUnaryExpr::Not: OS << '~'; break;
2271 case MCUnaryExpr::Plus: OS << '+'; break;
2272 }
2273 printMCExpr(*UE.getSubExpr(), OS);
2274 return;
2275 }
2276
2277 case MCExpr::Binary: {
2278 const MCBinaryExpr &BE = cast<MCBinaryExpr>(Expr);
2279
2280 // Only print parens around the LHS if it is non-trivial.
2281 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS()) ||
2282 isa<NVPTXGenericMCSymbolRefExpr>(BE.getLHS())) {
2283 printMCExpr(*BE.getLHS(), OS);
2284 } else {
2285 OS << '(';
2286 printMCExpr(*BE.getLHS(), OS);
2287 OS<< ')';
2288 }
2289
2290 switch (BE.getOpcode()) {
2291 case MCBinaryExpr::Add:
2292 // Print "X-42" instead of "X+-42".
2293 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
2294 if (RHSC->getValue() < 0) {
2295 OS << RHSC->getValue();
2296 return;
2297 }
2298 }
2299
2300 OS << '+';
2301 break;
2302 default: llvm_unreachable("Unhandled binary operator");
2303 }
2304
2305 // Only print parens around the LHS if it is non-trivial.
2306 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
2307 printMCExpr(*BE.getRHS(), OS);
2308 } else {
2309 OS << '(';
2310 printMCExpr(*BE.getRHS(), OS);
2311 OS << ')';
2312 }
2313 return;
2314 }
2315 }
2316
2317 llvm_unreachable("Invalid expression kind!");
2318}
2319
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002320/// PrintAsmOperand - Print out an operand for an inline asm expression.
2321///
2322bool NVPTXAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
2323 unsigned AsmVariant,
2324 const char *ExtraCode, raw_ostream &O) {
2325 if (ExtraCode && ExtraCode[0]) {
2326 if (ExtraCode[1] != 0)
2327 return true; // Unknown modifier.
2328
2329 switch (ExtraCode[0]) {
2330 default:
2331 // See if this is a generic print operand
2332 return AsmPrinter::PrintAsmOperand(MI, OpNo, AsmVariant, ExtraCode, O);
2333 case 'r':
2334 break;
2335 }
2336 }
2337
2338 printOperand(MI, OpNo, O);
2339
2340 return false;
2341}
2342
2343bool NVPTXAsmPrinter::PrintAsmMemoryOperand(
2344 const MachineInstr *MI, unsigned OpNo, unsigned AsmVariant,
2345 const char *ExtraCode, raw_ostream &O) {
2346 if (ExtraCode && ExtraCode[0])
2347 return true; // Unknown modifier
2348
2349 O << '[';
2350 printMemOperand(MI, OpNo, O);
2351 O << ']';
2352
2353 return false;
2354}
2355
2356void NVPTXAsmPrinter::printOperand(const MachineInstr *MI, int opNum,
2357 raw_ostream &O, const char *Modifier) {
2358 const MachineOperand &MO = MI->getOperand(opNum);
2359 switch (MO.getType()) {
2360 case MachineOperand::MO_Register:
2361 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
2362 if (MO.getReg() == NVPTX::VRDepot)
2363 O << DEPOTNAME << getFunctionNumber();
2364 else
2365 O << NVPTXInstPrinter::getRegisterName(MO.getReg());
2366 } else {
Justin Holewinski660597d2013-10-11 12:39:36 +00002367 emitVirtualRegister(MO.getReg(), O);
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002368 }
2369 return;
2370
2371 case MachineOperand::MO_Immediate:
2372 if (!Modifier)
2373 O << MO.getImm();
2374 else if (strstr(Modifier, "vec") == Modifier)
2375 printVecModifiedImmediate(MO, Modifier, O);
2376 else
2377 llvm_unreachable(
2378 "Don't know how to handle modifier on immediate operand");
2379 return;
2380
2381 case MachineOperand::MO_FPImmediate:
2382 printFPConstant(MO.getFPImm(), O);
2383 break;
2384
2385 case MachineOperand::MO_GlobalAddress:
Matt Arsenault8b643552015-06-09 00:31:39 +00002386 getSymbol(MO.getGlobal())->print(O, MAI);
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002387 break;
2388
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002389 case MachineOperand::MO_MachineBasicBlock:
Matt Arsenault8b643552015-06-09 00:31:39 +00002390 MO.getMBB()->getSymbol()->print(O, MAI);
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002391 return;
2392
2393 default:
2394 llvm_unreachable("Operand type not supported.");
2395 }
2396}
2397
2398void NVPTXAsmPrinter::printMemOperand(const MachineInstr *MI, int opNum,
2399 raw_ostream &O, const char *Modifier) {
2400 printOperand(MI, opNum, O);
2401
Eugene Zelenkoc9f1f6b2017-01-09 22:16:51 +00002402 if (Modifier && strcmp(Modifier, "add") == 0) {
Justin Holewinskiaaa8b6e2013-08-24 01:17:23 +00002403 O << ", ";
2404 printOperand(MI, opNum + 1, O);
2405 } else {
2406 if (MI->getOperand(opNum + 1).isImm() &&
2407 MI->getOperand(opNum + 1).getImm() == 0)
2408 return; // don't print ',0' or '+0'
2409 O << "+";
2410 printOperand(MI, opNum + 1, O);
2411 }
2412}
2413
Justin Holewinskiae556d32012-05-04 20:18:50 +00002414void NVPTXAsmPrinter::emitSrcInText(StringRef filename, unsigned line) {
2415 std::stringstream temp;
Yaron Keren075759a2015-03-30 15:42:36 +00002416 LineReader *reader = this->getReader(filename);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002417 temp << "\n//";
2418 temp << filename.str();
2419 temp << ":";
2420 temp << line;
2421 temp << " ";
2422 temp << reader->readLine(line);
2423 temp << "\n";
Lang Hames9ff69c82015-04-24 19:11:51 +00002424 this->OutStreamer->EmitRawText(temp.str());
Justin Holewinskiae556d32012-05-04 20:18:50 +00002425}
2426
Benjamin Kramerc321e532016-06-08 19:09:22 +00002427LineReader *NVPTXAsmPrinter::getReader(const std::string &filename) {
Craig Topper062a2ba2014-04-25 05:30:21 +00002428 if (!reader) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002429 reader = new LineReader(filename);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002430 }
2431
2432 if (reader->fileName() != filename) {
2433 delete reader;
Justin Holewinski0497ab12013-03-30 14:29:21 +00002434 reader = new LineReader(filename);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002435 }
2436
2437 return reader;
2438}
2439
Justin Holewinski0497ab12013-03-30 14:29:21 +00002440std::string LineReader::readLine(unsigned lineNum) {
Justin Holewinskiae556d32012-05-04 20:18:50 +00002441 if (lineNum < theCurLine) {
2442 theCurLine = 0;
Justin Holewinski0497ab12013-03-30 14:29:21 +00002443 fstr.seekg(0, std::ios::beg);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002444 }
2445 while (theCurLine < lineNum) {
Justin Holewinski0497ab12013-03-30 14:29:21 +00002446 fstr.getline(buff, 500);
Justin Holewinskiae556d32012-05-04 20:18:50 +00002447 theCurLine++;
2448 }
2449 return buff;
2450}
2451
2452// Force static initialization.
2453extern "C" void LLVMInitializeNVPTXAsmPrinter() {
Mehdi Aminif42454b2016-10-09 23:00:34 +00002454 RegisterAsmPrinter<NVPTXAsmPrinter> X(getTheNVPTXTarget32());
2455 RegisterAsmPrinter<NVPTXAsmPrinter> Y(getTheNVPTXTarget64());
Justin Holewinskiae556d32012-05-04 20:18:50 +00002456}