Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1 | //===-- 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 Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 15 | #include "NVPTXAsmPrinter.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 16 | #include "InstPrinter/NVPTXInstPrinter.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 17 | #include "MCTargetDesc/NVPTXBaseInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 18 | #include "MCTargetDesc/NVPTXMCAsmInfo.h" |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 19 | #include "NVPTX.h" |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 20 | #include "NVPTXMCExpr.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 21 | #include "NVPTXMachineFunctionInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 22 | #include "NVPTXRegisterInfo.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 23 | #include "NVPTXSubtarget.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 24 | #include "NVPTXTargetMachine.h" |
| 25 | #include "NVPTXUtilities.h" |
| 26 | #include "cl_common_defines.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 27 | #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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/StringExtras.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/StringRef.h" |
| 35 | #include "llvm/ADT/Triple.h" |
| 36 | #include "llvm/ADT/Twine.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 37 | #include "llvm/Analysis/ConstantFolding.h" |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/Analysis.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 41 | #include "llvm/CodeGen/MachineFunction.h" |
| 42 | #include "llvm/CodeGen/MachineInstr.h" |
Jingyue Wu | 0220df0 | 2015-02-01 02:27:45 +0000 | [diff] [blame] | 43 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 44 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 45 | #include "llvm/CodeGen/MachineOperand.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 46 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 47 | #include "llvm/CodeGen/MachineValueType.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame^] | 48 | #include "llvm/CodeGen/TargetLowering.h" |
| 49 | #include "llvm/CodeGen/TargetLoweringObjectFile.h" |
| 50 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 51 | #include "llvm/CodeGen/ValueTypes.h" |
| 52 | #include "llvm/IR/Attributes.h" |
| 53 | #include "llvm/IR/BasicBlock.h" |
| 54 | #include "llvm/IR/Constant.h" |
| 55 | #include "llvm/IR/Constants.h" |
| 56 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 9a4c9e5 | 2014-03-06 00:46:21 +0000 | [diff] [blame] | 57 | #include "llvm/IR/DebugInfo.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 58 | #include "llvm/IR/DebugInfoMetadata.h" |
| 59 | #include "llvm/IR/DebugLoc.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 60 | #include "llvm/IR/DerivedTypes.h" |
| 61 | #include "llvm/IR/Function.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 62 | #include "llvm/IR/GlobalValue.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 63 | #include "llvm/IR/GlobalVariable.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 64 | #include "llvm/IR/Instruction.h" |
| 65 | #include "llvm/IR/LLVMContext.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 66 | #include "llvm/IR/Module.h" |
| 67 | #include "llvm/IR/Operator.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 68 | #include "llvm/IR/Type.h" |
| 69 | #include "llvm/IR/User.h" |
| 70 | #include "llvm/MC/MCExpr.h" |
Pete Cooper | 81902a3 | 2015-05-15 22:19:42 +0000 | [diff] [blame] | 71 | #include "llvm/MC/MCInst.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 72 | #include "llvm/MC/MCInstrDesc.h" |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 73 | #include "llvm/MC/MCStreamer.h" |
| 74 | #include "llvm/MC/MCSymbol.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 75 | #include "llvm/Support/Casting.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 76 | #include "llvm/Support/CommandLine.h" |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 77 | #include "llvm/Support/ErrorHandling.h" |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 78 | #include "llvm/Support/Path.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 79 | #include "llvm/Support/TargetRegistry.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 80 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 81 | #include "llvm/Target/TargetMachine.h" |
Jingyue Wu | 0220df0 | 2015-02-01 02:27:45 +0000 | [diff] [blame] | 82 | #include "llvm/Transforms/Utils/UnrollLoop.h" |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 83 | #include <cassert> |
| 84 | #include <cstdint> |
| 85 | #include <cstring> |
| 86 | #include <new> |
Bill Wendling | e38859d | 2012-06-28 00:05:13 +0000 | [diff] [blame] | 87 | #include <sstream> |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 88 | #include <string> |
| 89 | #include <utility> |
| 90 | #include <vector> |
| 91 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 92 | using namespace llvm; |
| 93 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 94 | #define DEPOTNAME "__local_depot" |
| 95 | |
| 96 | static cl::opt<bool> |
Nadav Rotem | 7f27e0b | 2013-10-18 23:38:13 +0000 | [diff] [blame] | 97 | EmitLineNumbers("nvptx-emit-line-numbers", cl::Hidden, |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 98 | cl::desc("NVPTX Specific: Emit Line numbers even without -G"), |
| 99 | cl::init(true)); |
| 100 | |
Benjamin Kramer | 7ad4100 | 2013-10-27 11:31:46 +0000 | [diff] [blame] | 101 | static cl::opt<bool> |
Nadav Rotem | 7f27e0b | 2013-10-18 23:38:13 +0000 | [diff] [blame] | 102 | InterleaveSrc("nvptx-emit-src", cl::ZeroOrMore, cl::Hidden, |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 103 | cl::desc("NVPTX Specific: Emit source line in ptx file"), |
Benjamin Kramer | 7ad4100 | 2013-10-27 11:31:46 +0000 | [diff] [blame] | 104 | cl::init(false)); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 105 | |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 106 | /// DiscoverDependentGlobals - Return a set of GlobalVariables on which \p V |
| 107 | /// depends. |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 108 | static void |
| 109 | DiscoverDependentGlobals(const Value *V, |
| 110 | DenseSet<const GlobalVariable *> &Globals) { |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 111 | if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 112 | Globals.insert(GV); |
| 113 | else { |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 114 | if (const User *U = dyn_cast<User>(V)) { |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 115 | for (unsigned i = 0, e = U->getNumOperands(); i != e; ++i) { |
| 116 | DiscoverDependentGlobals(U->getOperand(i), Globals); |
| 117 | } |
| 118 | } |
| 119 | } |
| 120 | } |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 121 | |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 122 | /// VisitGlobalVariableForEmission - Add \p GV to the list of GlobalVariable |
| 123 | /// instances to be emitted, but only after any dependents have been added |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 124 | /// first.s |
| 125 | static void |
| 126 | VisitGlobalVariableForEmission(const GlobalVariable *GV, |
| 127 | SmallVectorImpl<const GlobalVariable *> &Order, |
| 128 | DenseSet<const GlobalVariable *> &Visited, |
| 129 | DenseSet<const GlobalVariable *> &Visiting) { |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 130 | // Have we already visited this one? |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 131 | if (Visited.count(GV)) |
| 132 | return; |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 133 | |
| 134 | // Do we have a circular dependency? |
Benjamin Kramer | 2c99e41 | 2014-10-10 15:32:50 +0000 | [diff] [blame] | 135 | if (!Visiting.insert(GV).second) |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 136 | report_fatal_error("Circular dependency found in global variable set"); |
| 137 | |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 138 | // Make sure we visit all dependents first |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 139 | DenseSet<const GlobalVariable *> Others; |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 140 | for (unsigned i = 0, e = GV->getNumOperands(); i != e; ++i) |
| 141 | DiscoverDependentGlobals(GV->getOperand(i), Others); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 142 | |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 143 | for (DenseSet<const GlobalVariable *>::iterator I = Others.begin(), |
| 144 | E = Others.end(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 145 | I != E; ++I) |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 146 | 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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 153 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 154 | void NVPTXAsmPrinter::emitLineNumberAsDotLoc(const MachineInstr &MI) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 155 | if (!EmitLineNumbers) |
| 156 | return; |
| 157 | if (ignoreLoc(MI)) |
| 158 | return; |
| 159 | |
Benjamin Kramer | 4fed928 | 2016-05-27 12:30:51 +0000 | [diff] [blame] | 160 | const DebugLoc &curLoc = MI.getDebugLoc(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 161 | |
Duncan P. N. Exon Smith | 9dffcd0 | 2015-03-30 19:14:47 +0000 | [diff] [blame] | 162 | if (!prevDebugLoc && !curLoc) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 163 | return; |
| 164 | |
| 165 | if (prevDebugLoc == curLoc) |
| 166 | return; |
| 167 | |
| 168 | prevDebugLoc = curLoc; |
| 169 | |
Duncan P. N. Exon Smith | 9dffcd0 | 2015-03-30 19:14:47 +0000 | [diff] [blame] | 170 | if (!curLoc) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 171 | return; |
| 172 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 173 | auto *Scope = cast_or_null<DIScope>(curLoc.getScope()); |
Manman Ren | 983a16c | 2013-06-28 05:43:10 +0000 | [diff] [blame] | 174 | if (!Scope) |
| 175 | return; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 176 | |
Duncan P. N. Exon Smith | b273d06 | 2015-04-16 01:37:00 +0000 | [diff] [blame] | 177 | StringRef fileName(Scope->getFilename()); |
| 178 | StringRef dirName(Scope->getDirectory()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 179 | SmallString<128> FullPathName = dirName; |
| 180 | if (!dirName.empty() && !sys::path::is_absolute(fileName)) { |
| 181 | sys::path::append(FullPathName, fileName); |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 182 | fileName = FullPathName; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 185 | if (filenameMap.find(fileName) == filenameMap.end()) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 186 | return; |
| 187 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 188 | // Emit the line from the source file. |
Benjamin Kramer | 7ad4100 | 2013-10-27 11:31:46 +0000 | [diff] [blame] | 189 | if (InterleaveSrc) |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 190 | this->emitSrcInText(fileName, curLoc.getLine()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 191 | |
| 192 | std::stringstream temp; |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 193 | temp << "\t.loc " << filenameMap[fileName] << " " << curLoc.getLine() |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 194 | << " " << curLoc.getCol(); |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 195 | OutStreamer->EmitRawText(temp.str()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | void NVPTXAsmPrinter::EmitInstruction(const MachineInstr *MI) { |
| 199 | SmallString<128> Str; |
| 200 | raw_svector_ostream OS(Str); |
Eric Christopher | beffc4e | 2015-02-19 00:08:23 +0000 | [diff] [blame] | 201 | if (static_cast<NVPTXTargetMachine &>(TM).getDrvInterface() == NVPTX::CUDA) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 202 | emitLineNumberAsDotLoc(*MI); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 203 | |
| 204 | MCInst Inst; |
| 205 | lowerToMCInst(MI, Inst); |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 206 | EmitToStreamer(*OutStreamer, Inst); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 209 | // Handle symbol backtracking for targets that do not support image handles |
| 210 | bool NVPTXAsmPrinter::lowerImageHandleOperand(const MachineInstr *MI, |
| 211 | unsigned OpNo, MCOperand &MCOp) { |
| 212 | const MachineOperand &MO = MI->getOperand(OpNo); |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 213 | const MCInstrDesc &MCID = MI->getDesc(); |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 214 | |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 215 | if (MCID.TSFlags & NVPTXII::IsTexFlag) { |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 216 | // This is a texture fetch, so operand 4 is a texref and operand 5 is |
| 217 | // a samplerref |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 218 | if (OpNo == 4 && MO.isImm()) { |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 219 | lowerImageHandleSymbol(MO.getImm(), MCOp); |
| 220 | return true; |
| 221 | } |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 222 | if (OpNo == 5 && MO.isImm() && !(MCID.TSFlags & NVPTXII::IsTexModeUnifiedFlag)) { |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 223 | lowerImageHandleSymbol(MO.getImm(), MCOp); |
| 224 | return true; |
| 225 | } |
| 226 | |
| 227 | return false; |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 228 | } 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 Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 234 | lowerImageHandleSymbol(MO.getImm(), MCOp); |
| 235 | return true; |
| 236 | } |
| 237 | |
| 238 | return false; |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 239 | } else if (MCID.TSFlags & NVPTXII::IsSustFlag) { |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 240 | // This is a surface store, so operand 0 is a surfref |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 241 | if (OpNo == 0 && MO.isImm()) { |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 242 | lowerImageHandleSymbol(MO.getImm(), MCOp); |
| 243 | return true; |
| 244 | } |
| 245 | |
| 246 | return false; |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 247 | } else if (MCID.TSFlags & NVPTXII::IsSurfTexQueryFlag) { |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 248 | // This is a query, so operand 1 is a surfref/texref |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 249 | if (OpNo == 1 && MO.isImm()) { |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 250 | lowerImageHandleSymbol(MO.getImm(), MCOp); |
| 251 | return true; |
| 252 | } |
| 253 | |
| 254 | return false; |
| 255 | } |
Justin Holewinski | 9a2350e | 2014-07-17 11:59:04 +0000 | [diff] [blame] | 256 | |
| 257 | return false; |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | void 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 Parsons | 06ac79c | 2016-11-02 16:43:50 +0000 | [diff] [blame] | 268 | MCOp = GetSymbolRef(OutContext.getOrCreateSymbol(StringRef(*SymNamePtr))); |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 269 | } |
| 270 | |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 271 | void NVPTXAsmPrinter::lowerToMCInst(const MachineInstr *MI, MCInst &OutMI) { |
| 272 | OutMI.setOpcode(MI->getOpcode()); |
Justin Holewinski | 3d49e5c | 2013-11-15 12:30:04 +0000 | [diff] [blame] | 273 | // Special: Do not mangle symbol operand of CALL_PROTOTYPE |
| 274 | if (MI->getOpcode() == NVPTX::CALL_PROTOTYPE) { |
| 275 | const MachineOperand &MO = MI->getOperand(0); |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 276 | OutMI.addOperand(GetSymbolRef( |
Jim Grosbach | 6f48200 | 2015-05-18 18:43:14 +0000 | [diff] [blame] | 277 | OutContext.getOrCreateSymbol(Twine(MO.getSymbolName())))); |
Justin Holewinski | 3d49e5c | 2013-11-15 12:30:04 +0000 | [diff] [blame] | 278 | return; |
| 279 | } |
| 280 | |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 281 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 282 | const MachineOperand &MO = MI->getOperand(i); |
| 283 | |
| 284 | MCOperand MCOp; |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 285 | if (!nvptxSubtarget->hasImageHandles()) { |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 286 | if (lowerImageHandleOperand(MI, i, MCOp)) { |
| 287 | OutMI.addOperand(MCOp); |
| 288 | continue; |
| 289 | } |
| 290 | } |
| 291 | |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 292 | if (lowerOperand(MO, MCOp)) |
| 293 | OutMI.addOperand(MCOp); |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | bool 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 Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 302 | MCOp = MCOperand::createReg(encodeVirtualRegister(MO.getReg())); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 303 | break; |
| 304 | case MachineOperand::MO_Immediate: |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 305 | MCOp = MCOperand::createImm(MO.getImm()); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 306 | break; |
| 307 | case MachineOperand::MO_MachineBasicBlock: |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 308 | MCOp = MCOperand::createExpr(MCSymbolRefExpr::create( |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 309 | MO.getMBB()->getSymbol(), OutContext)); |
| 310 | break; |
| 311 | case MachineOperand::MO_ExternalSymbol: |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 312 | MCOp = GetSymbolRef(GetExternalSymbolSymbol(MO.getSymbolName())); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 313 | break; |
| 314 | case MachineOperand::MO_GlobalAddress: |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 315 | MCOp = GetSymbolRef(getSymbol(MO.getGlobal())); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 316 | break; |
| 317 | case MachineOperand::MO_FPImmediate: { |
| 318 | const ConstantFP *Cnt = MO.getFPImm(); |
Benjamin Kramer | 46e38f3 | 2016-06-08 10:01:20 +0000 | [diff] [blame] | 319 | const APFloat &Val = Cnt->getValueAPF(); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 320 | |
| 321 | switch (Cnt->getType()->getTypeID()) { |
| 322 | default: report_fatal_error("Unsupported FP type"); break; |
Artem Belevich | 64dc9be | 2017-01-13 20:56:17 +0000 | [diff] [blame] | 323 | case Type::HalfTyID: |
| 324 | MCOp = MCOperand::createExpr( |
| 325 | NVPTXFloatMCExpr::createConstantFPHalf(Val, OutContext)); |
| 326 | break; |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 327 | case Type::FloatTyID: |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 328 | MCOp = MCOperand::createExpr( |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 329 | NVPTXFloatMCExpr::createConstantFPSingle(Val, OutContext)); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 330 | break; |
| 331 | case Type::DoubleTyID: |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 332 | MCOp = MCOperand::createExpr( |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 333 | NVPTXFloatMCExpr::createConstantFPDouble(Val, OutContext)); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 334 | break; |
| 335 | } |
| 336 | break; |
| 337 | } |
| 338 | } |
| 339 | return true; |
| 340 | } |
| 341 | |
| 342 | unsigned NVPTXAsmPrinter::encodeVirtualRegister(unsigned Reg) { |
Justin Holewinski | 871ec93 | 2013-08-06 14:13:31 +0000 | [diff] [blame] | 343 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
| 344 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 345 | |
Justin Holewinski | 871ec93 | 2013-08-06 14:13:31 +0000 | [diff] [blame] | 346 | DenseMap<unsigned, unsigned> &RegMap = VRegMapping[RC]; |
| 347 | unsigned RegNum = RegMap[Reg]; |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 348 | |
Justin Holewinski | 871ec93 | 2013-08-06 14:13:31 +0000 | [diff] [blame] | 349 | // 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 Belevich | 64dc9be | 2017-01-13 20:56:17 +0000 | [diff] [blame] | 364 | } else if (RC == &NVPTX::Float16RegsRegClass) { |
| 365 | Ret = (7 << 28); |
Artem Belevich | 620db1f | 2017-02-23 22:38:24 +0000 | [diff] [blame] | 366 | } else if (RC == &NVPTX::Float16x2RegsRegClass) { |
| 367 | Ret = (8 << 28); |
Justin Holewinski | 871ec93 | 2013-08-06 14:13:31 +0000 | [diff] [blame] | 368 | } else { |
| 369 | report_fatal_error("Bad register class"); |
| 370 | } |
| 371 | |
| 372 | // Insert the vreg number |
| 373 | Ret |= (RegNum & 0x0FFFFFFF); |
| 374 | return Ret; |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 375 | } else { |
Justin Holewinski | 871ec93 | 2013-08-06 14:13:31 +0000 | [diff] [blame] | 376 | // 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 Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 379 | } |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 380 | } |
| 381 | |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 382 | MCOperand NVPTXAsmPrinter::GetSymbolRef(const MCSymbol *Symbol) { |
Justin Holewinski | a2a63d2 | 2013-08-06 14:13:27 +0000 | [diff] [blame] | 383 | const MCExpr *Expr; |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 384 | Expr = MCSymbolRefExpr::create(Symbol, MCSymbolRefExpr::VK_None, |
Justin Holewinski | 8b24e1e | 2013-08-06 23:06:42 +0000 | [diff] [blame] | 385 | OutContext); |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 386 | return MCOperand::createExpr(Expr); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 387 | } |
| 388 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 389 | void NVPTXAsmPrinter::printReturnValStr(const Function *F, raw_ostream &O) { |
Mehdi Amini | 56228da | 2015-07-09 01:57:34 +0000 | [diff] [blame] | 390 | const DataLayout &DL = getDataLayout(); |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 391 | const TargetLowering *TLI = nvptxSubtarget->getTargetLowering(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 392 | |
| 393 | Type *Ty = F->getReturnType(); |
| 394 | |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 395 | bool isABI = (nvptxSubtarget->getSmVersion() >= 20); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 396 | |
| 397 | if (Ty->getTypeID() == Type::VoidTyID) |
| 398 | return; |
| 399 | |
| 400 | O << " ("; |
| 401 | |
| 402 | if (isABI) { |
Artem Belevich | d7a7382 | 2017-07-20 21:16:03 +0000 | [diff] [blame] | 403 | if (Ty->isFloatingPointTy() || (Ty->isIntegerTy() && !Ty->isIntegerTy(128))) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 404 | unsigned size = 0; |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 405 | if (auto *ITy = dyn_cast<IntegerType>(Ty)) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 406 | size = ITy->getBitWidth(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 407 | } else { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 408 | assert(Ty->isFloatingPointTy() && "Floating point type expected here"); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 409 | size = Ty->getPrimitiveSizeInBits(); |
| 410 | } |
Artem Belevich | 64dc9be | 2017-01-13 20:56:17 +0000 | [diff] [blame] | 411 | // 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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 416 | |
| 417 | O << ".param .b" << size << " func_retval0"; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 418 | } else if (isa<PointerType>(Ty)) { |
Mehdi Amini | 44ede33 | 2015-07-09 02:09:04 +0000 | [diff] [blame] | 419 | O << ".param .b" << TLI->getPointerTy(DL).getSizeInBits() |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 420 | << " func_retval0"; |
Artem Belevich | d7a7382 | 2017-07-20 21:16:03 +0000 | [diff] [blame] | 421 | } else if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { |
Mehdi Amini | 56228da | 2015-07-09 01:57:34 +0000 | [diff] [blame] | 422 | unsigned totalsz = DL.getTypeAllocSize(Ty); |
Artem Belevich | 74158b5 | 2016-07-20 18:39:52 +0000 | [diff] [blame] | 423 | unsigned retAlignment = 0; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 424 | if (!getAlign(*F, 0, retAlignment)) |
Artem Belevich | 74158b5 | 2016-07-20 18:39:52 +0000 | [diff] [blame] | 425 | retAlignment = DL.getABITypeAlignment(Ty); |
| 426 | O << ".param .align " << retAlignment << " .b8 func_retval0[" << totalsz |
| 427 | << "]"; |
Craig Topper | d3c02f1 | 2015-01-05 10:15:49 +0000 | [diff] [blame] | 428 | } else |
| 429 | llvm_unreachable("Unknown return type"); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 430 | } else { |
| 431 | SmallVector<EVT, 16> vtparts; |
Mehdi Amini | 56228da | 2015-07-09 01:57:34 +0000 | [diff] [blame] | 432 | ComputeValueVTs(*TLI, DL, Ty, vtparts); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 433 | unsigned idx = 0; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 434 | for (unsigned i = 0, e = vtparts.size(); i != e; ++i) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 435 | 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 Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 442 | for (unsigned j = 0, je = elems; j != je; ++j) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 443 | unsigned sz = elemtype.getSizeInBits(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 444 | if (elemtype.isInteger() && (sz < 32)) |
| 445 | sz = 32; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 446 | O << ".reg .b" << sz << " func_retval" << idx; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 447 | if (j < je - 1) |
| 448 | O << ", "; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 449 | ++idx; |
| 450 | } |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 451 | if (i < e - 1) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 452 | O << ", "; |
| 453 | } |
| 454 | } |
| 455 | O << ") "; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | void NVPTXAsmPrinter::printReturnValStr(const MachineFunction &MF, |
| 459 | raw_ostream &O) { |
| 460 | const Function *F = MF.getFunction(); |
| 461 | printReturnValStr(F, O); |
| 462 | } |
| 463 | |
Jingyue Wu | 0220df0 | 2015-02-01 02:27:45 +0000 | [diff] [blame] | 464 | // Return true if MBB is the header of a loop marked with |
| 465 | // llvm.loop.unroll.disable. |
Jingyue Wu | 5bbcdaa | 2015-02-03 17:57:38 +0000 | [diff] [blame] | 466 | // TODO: consider "#pragma unroll 1" which is equivalent to "#pragma nounroll". |
Jingyue Wu | 0220df0 | 2015-02-01 02:27:45 +0000 | [diff] [blame] | 467 | bool NVPTXAsmPrinter::isLoopHeaderOfNoUnroll( |
| 468 | const MachineBasicBlock &MBB) const { |
| 469 | MachineLoopInfo &LI = getAnalysis<MachineLoopInfo>(); |
Jingyue Wu | 0220df0 | 2015-02-01 02:27:45 +0000 | [diff] [blame] | 470 | // We insert .pragma "nounroll" only to the loop header. |
Benjamin Kramer | db220db | 2015-06-02 15:28:27 +0000 | [diff] [blame] | 471 | if (!LI.isLoopHeader(&MBB)) |
Jingyue Wu | 0220df0 | 2015-02-01 02:27:45 +0000 | [diff] [blame] | 472 | 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 Smith | 1d15a9f | 2016-03-25 00:35:38 +0000 | [diff] [blame] | 484 | if (MDNode *LoopID = |
| 485 | PBB->getTerminator()->getMetadata(LLVMContext::MD_loop)) { |
Jingyue Wu | 0220df0 | 2015-02-01 02:27:45 +0000 | [diff] [blame] | 486 | if (GetUnrollMetadata(LoopID, "llvm.loop.unroll.disable")) |
| 487 | return true; |
| 488 | } |
| 489 | } |
| 490 | } |
| 491 | return false; |
| 492 | } |
| 493 | |
| 494 | void NVPTXAsmPrinter::EmitBasicBlockStart(const MachineBasicBlock &MBB) const { |
| 495 | AsmPrinter::EmitBasicBlockStart(MBB); |
| 496 | if (isLoopHeaderOfNoUnroll(MBB)) |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 497 | OutStreamer->EmitRawText(StringRef("\t.pragma \"nounroll\";\n")); |
Jingyue Wu | 0220df0 | 2015-02-01 02:27:45 +0000 | [diff] [blame] | 498 | } |
| 499 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 500 | void NVPTXAsmPrinter::EmitFunctionEntryLabel() { |
| 501 | SmallString<128> Str; |
| 502 | raw_svector_ostream O(Str); |
| 503 | |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 504 | if (!GlobalsEmitted) { |
| 505 | emitGlobals(*MF->getFunction()->getParent()); |
| 506 | GlobalsEmitted = true; |
| 507 | } |
| 508 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 509 | // Set up |
| 510 | MRI = &MF->getRegInfo(); |
| 511 | F = MF->getFunction(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 512 | emitLinkageDirective(F, O); |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 513 | if (isKernelFunction(*F)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 514 | O << ".entry "; |
| 515 | else { |
| 516 | O << ".func "; |
| 517 | printReturnValStr(*MF, O); |
| 518 | } |
| 519 | |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 520 | CurrentFnSym->print(O, MAI); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 521 | |
| 522 | emitFunctionParamList(*MF, O); |
| 523 | |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 524 | if (isKernelFunction(*F)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 525 | emitKernelFunctionDirectives(*F, O); |
| 526 | |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 527 | OutStreamer->EmitRawText(O.str()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 528 | |
| 529 | prevDebugLoc = DebugLoc(); |
| 530 | } |
| 531 | |
| 532 | void NVPTXAsmPrinter::EmitFunctionBodyStart() { |
Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 533 | VRegMapping.clear(); |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 534 | OutStreamer->EmitRawText(StringRef("{\n")); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 535 | setAndEmitFunctionVirtualRegisters(*MF); |
| 536 | |
| 537 | SmallString<128> Str; |
| 538 | raw_svector_ostream O(Str); |
| 539 | emitDemotedVars(MF->getFunction(), O); |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 540 | OutStreamer->EmitRawText(O.str()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | void NVPTXAsmPrinter::EmitFunctionBodyEnd() { |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 544 | OutStreamer->EmitRawText(StringRef("}\n")); |
Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 545 | VRegMapping.clear(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 546 | } |
| 547 | |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 548 | void NVPTXAsmPrinter::emitImplicitDef(const MachineInstr *MI) const { |
| 549 | unsigned RegNo = MI->getOperand(0).getReg(); |
Andrew Kaylor | 5c73e1f | 2015-03-24 23:37:10 +0000 | [diff] [blame] | 550 | if (TargetRegisterInfo::isVirtualRegister(RegNo)) { |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 551 | OutStreamer->AddComment(Twine("implicit-def: ") + |
| 552 | getVirtualRegisterName(RegNo)); |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 553 | } else { |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 554 | OutStreamer->AddComment(Twine("implicit-def: ") + |
| 555 | nvptxSubtarget->getRegisterInfo()->getName(RegNo)); |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 556 | } |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 557 | OutStreamer->AddBlankLine(); |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 558 | } |
| 559 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 560 | void NVPTXAsmPrinter::emitKernelFunctionDirectives(const Function &F, |
| 561 | raw_ostream &O) const { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 562 | // 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 Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 567 | if (!getReqNTIDx(F, reqntidx)) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 568 | reqntidx = 1; |
| 569 | else |
| 570 | specified = true; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 571 | if (!getReqNTIDy(F, reqntidy)) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 572 | reqntidy = 1; |
| 573 | else |
| 574 | specified = true; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 575 | if (!getReqNTIDz(F, reqntidz)) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 576 | reqntidz = 1; |
| 577 | else |
| 578 | specified = true; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 579 | |
| 580 | if (specified) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 581 | O << ".reqntid " << reqntidx << ", " << reqntidy << ", " << reqntidz |
| 582 | << "\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 583 | |
| 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 Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 589 | if (!getMaxNTIDx(F, maxntidx)) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 590 | maxntidx = 1; |
| 591 | else |
| 592 | specified = true; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 593 | if (!getMaxNTIDy(F, maxntidy)) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 594 | maxntidy = 1; |
| 595 | else |
| 596 | specified = true; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 597 | if (!getMaxNTIDz(F, maxntidz)) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 598 | maxntidz = 1; |
| 599 | else |
| 600 | specified = true; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 601 | |
| 602 | if (specified) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 603 | O << ".maxntid " << maxntidx << ", " << maxntidy << ", " << maxntidz |
| 604 | << "\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 605 | |
| 606 | unsigned mincta; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 607 | if (getMinCTASm(F, mincta)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 608 | O << ".minnctapersm " << mincta << "\n"; |
Justin Lebar | 19bf9d2 | 2016-12-14 22:32:50 +0000 | [diff] [blame] | 609 | |
| 610 | unsigned maxnreg; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 611 | if (getMaxNReg(F, maxnreg)) |
Justin Lebar | 19bf9d2 | 2016-12-14 22:32:50 +0000 | [diff] [blame] | 612 | O << ".maxnreg " << maxnreg << "\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 613 | } |
| 614 | |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 615 | std::string |
| 616 | NVPTXAsmPrinter::getVirtualRegisterName(unsigned Reg) const { |
| 617 | const TargetRegisterClass *RC = MRI->getRegClass(Reg); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 618 | |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 619 | std::string Name; |
| 620 | raw_string_ostream NameStr(Name); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 621 | |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 622 | 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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 634 | } |
| 635 | |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 636 | void NVPTXAsmPrinter::emitVirtualRegister(unsigned int vr, |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 637 | raw_ostream &O) { |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 638 | O << getVirtualRegisterName(vr); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 639 | } |
| 640 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 641 | void 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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 646 | O << "_" << vecelem[Imm]; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 647 | else if (0 == strcmp(Modifier, "vecv4comm1")) { |
| 648 | if ((Imm < 0) || (Imm > 3)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 649 | O << "//"; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 650 | } else if (0 == strcmp(Modifier, "vecv4comm2")) { |
| 651 | if ((Imm < 4) || (Imm > 7)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 652 | O << "//"; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 653 | } 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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 659 | O << "//"; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 660 | } else if (0 == strcmp(Modifier, "vecv2comm2")) { |
| 661 | if ((Imm < 2) || (Imm > 3)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 662 | O << "//"; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 663 | } else if (0 == strcmp(Modifier, "vecv2pos")) { |
| 664 | if (Imm < 0) |
| 665 | Imm = 0; |
| 666 | O << "_" << vecelem[Imm % 2]; |
| 667 | } else |
Craig Topper | bdf39a4 | 2012-05-24 07:02:50 +0000 | [diff] [blame] | 668 | llvm_unreachable("Unknown Modifier on immediate operand"); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 669 | } |
| 670 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 671 | void NVPTXAsmPrinter::emitDeclaration(const Function *F, raw_ostream &O) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 672 | emitLinkageDirective(F, O); |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 673 | if (isKernelFunction(*F)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 674 | O << ".entry "; |
| 675 | else |
| 676 | O << ".func "; |
| 677 | printReturnValStr(F, O); |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 678 | getSymbol(F)->print(O, MAI); |
| 679 | O << "\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 680 | emitFunctionParamList(F, O); |
| 681 | O << ";\n"; |
| 682 | } |
| 683 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 684 | static bool usedInGlobalVarDef(const Constant *C) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 685 | if (!C) |
| 686 | return false; |
| 687 | |
| 688 | if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(C)) { |
Jingyue Wu | 4be014a | 2015-07-31 05:09:47 +0000 | [diff] [blame] | 689 | return GV->getName() != "llvm.used"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 690 | } |
| 691 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 692 | for (const User *U : C->users()) |
| 693 | if (const Constant *C = dyn_cast<Constant>(U)) |
| 694 | if (usedInGlobalVarDef(C)) |
| 695 | return true; |
| 696 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 697 | return false; |
| 698 | } |
| 699 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 700 | static bool usedInOneFunc(const User *U, Function const *&oneFunc) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 701 | if (const GlobalVariable *othergv = dyn_cast<GlobalVariable>(U)) { |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 702 | if (othergv->getName() == "llvm.used") |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 703 | 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 Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 713 | } else |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 714 | return false; |
| 715 | } |
| 716 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 717 | for (const User *UU : U->users()) |
Eli Bendersky | 3e84019 | 2015-03-23 16:26:23 +0000 | [diff] [blame] | 718 | if (!usedInOneFunc(UU, oneFunc)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 719 | return false; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 720 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 721 | 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 | */ |
| 731 | static bool canDemoteGlobalVar(const GlobalVariable *gv, Function const *&f) { |
Eli Bendersky | 3e84019 | 2015-03-23 16:26:23 +0000 | [diff] [blame] | 732 | if (!gv->hasInternalLinkage()) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 733 | return false; |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 734 | PointerType *Pty = gv->getType(); |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 735 | if (Pty->getAddressSpace() != ADDRESS_SPACE_SHARED) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 736 | return false; |
| 737 | |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 738 | const Function *oneFunc = nullptr; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 739 | |
| 740 | bool flag = usedInOneFunc(gv, oneFunc); |
Eli Bendersky | 3e84019 | 2015-03-23 16:26:23 +0000 | [diff] [blame] | 741 | if (!flag) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 742 | return false; |
| 743 | if (!oneFunc) |
| 744 | return false; |
| 745 | f = oneFunc; |
| 746 | return true; |
| 747 | } |
| 748 | |
| 749 | static bool useFuncSeen(const Constant *C, |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 750 | DenseMap<const Function *, bool> &seenMap) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 751 | for (const User *U : C->users()) { |
| 752 | if (const Constant *cu = dyn_cast<Constant>(U)) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 753 | if (useFuncSeen(cu, seenMap)) |
| 754 | return true; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 755 | } else if (const Instruction *I = dyn_cast<Instruction>(U)) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 756 | const BasicBlock *bb = I->getParent(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 757 | if (!bb) |
| 758 | continue; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 759 | const Function *caller = bb->getParent(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 760 | if (!caller) |
| 761 | continue; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 762 | if (seenMap.find(caller) != seenMap.end()) |
| 763 | return true; |
| 764 | } |
| 765 | } |
| 766 | return false; |
| 767 | } |
| 768 | |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 769 | void NVPTXAsmPrinter::emitDeclarations(const Module &M, raw_ostream &O) { |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 770 | DenseMap<const Function *, bool> seenMap; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 771 | for (Module::const_iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) { |
Duncan P. N. Exon Smith | 61149b8 | 2015-10-20 00:54:09 +0000 | [diff] [blame] | 772 | const Function *F = &*FI; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 773 | |
| 774 | if (F->isDeclaration()) { |
| 775 | if (F->use_empty()) |
| 776 | continue; |
| 777 | if (F->getIntrinsicID()) |
| 778 | continue; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 779 | emitDeclaration(F, O); |
| 780 | continue; |
| 781 | } |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 782 | for (const User *U : F->users()) { |
| 783 | if (const Constant *C = dyn_cast<Constant>(U)) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 784 | 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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 788 | 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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 794 | emitDeclaration(F, O); |
| 795 | break; |
| 796 | } |
| 797 | } |
| 798 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 799 | if (!isa<Instruction>(U)) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 800 | continue; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 801 | const Instruction *instr = cast<Instruction>(U); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 802 | const BasicBlock *bb = instr->getParent(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 803 | if (!bb) |
| 804 | continue; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 805 | const Function *caller = bb->getParent(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 806 | if (!caller) |
| 807 | continue; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 808 | |
| 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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 813 | emitDeclaration(F, O); |
| 814 | break; |
| 815 | } |
| 816 | } |
| 817 | seenMap[F] = true; |
| 818 | } |
| 819 | } |
| 820 | |
| 821 | void NVPTXAsmPrinter::recordAndEmitFilenames(Module &M) { |
| 822 | DebugInfoFinder DbgFinder; |
| 823 | DbgFinder.processModule(M); |
| 824 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 825 | unsigned i = 1; |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 826 | for (const DICompileUnit *DIUnit : DbgFinder.compile_units()) { |
Duncan P. N. Exon Smith | 35ef22c | 2015-04-15 23:19:27 +0000 | [diff] [blame] | 827 | StringRef Filename = DIUnit->getFilename(); |
| 828 | StringRef Dirname = DIUnit->getDirectory(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 829 | SmallString<128> FullPathName = Dirname; |
| 830 | if (!Dirname.empty() && !sys::path::is_absolute(Filename)) { |
| 831 | sys::path::append(FullPathName, Filename); |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 832 | Filename = FullPathName; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 833 | } |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 834 | if (filenameMap.find(Filename) != filenameMap.end()) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 835 | continue; |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 836 | filenameMap[Filename] = i; |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 837 | OutStreamer->EmitDwarfFileDirective(i, "", Filename); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 838 | ++i; |
| 839 | } |
| 840 | |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 841 | for (DISubprogram *SP : DbgFinder.subprograms()) { |
Duncan P. N. Exon Smith | 537b4a8 | 2015-04-14 03:40:37 +0000 | [diff] [blame] | 842 | StringRef Filename = SP->getFilename(); |
| 843 | StringRef Dirname = SP->getDirectory(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 844 | SmallString<128> FullPathName = Dirname; |
| 845 | if (!Dirname.empty() && !sys::path::is_absolute(Filename)) { |
| 846 | sys::path::append(FullPathName, Filename); |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 847 | Filename = FullPathName; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 848 | } |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 849 | if (filenameMap.find(Filename) != filenameMap.end()) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 850 | continue; |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 851 | filenameMap[Filename] = i; |
Artem Belevich | a8455f2 | 2016-02-11 18:21:47 +0000 | [diff] [blame] | 852 | OutStreamer->EmitDwarfFileDirective(i, "", Filename); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 853 | ++i; |
| 854 | } |
| 855 | } |
| 856 | |
Justin Lebar | ead59f4 | 2016-01-30 01:07:38 +0000 | [diff] [blame] | 857 | static 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 Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 864 | bool NVPTXAsmPrinter::doInitialization(Module &M) { |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 865 | // 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 Sanders | c81f450 | 2015-06-16 15:44:21 +0000 | [diff] [blame] | 868 | const Triple &TT = TM.getTargetTriple(); |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 869 | StringRef CPU = TM.getTargetCPU(); |
| 870 | StringRef FS = TM.getTargetFeatureString(); |
| 871 | const NVPTXTargetMachine &NTM = static_cast<const NVPTXTargetMachine &>(TM); |
Eric Christopher | 02389e3 | 2015-02-19 00:08:27 +0000 | [diff] [blame] | 872 | const NVPTXSubtarget STI(TT, CPU, FS, NTM); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 873 | |
Justin Lebar | 3a5f579 | 2016-01-23 21:12:20 +0000 | [diff] [blame] | 874 | if (M.alias_size()) { |
| 875 | report_fatal_error("Module has aliases, which NVPTX does not support."); |
| 876 | return true; // error |
| 877 | } |
Justin Lebar | ead59f4 | 2016-01-30 01:07:38 +0000 | [diff] [blame] | 878 | 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 Lebar | 3a5f579 | 2016-01-23 21:12:20 +0000 | [diff] [blame] | 888 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 889 | SmallString<128> Str1; |
| 890 | raw_svector_ostream OS1(Str1); |
| 891 | |
| 892 | MMI = getAnalysisIfAvailable<MachineModuleInfo>(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 893 | |
| 894 | // We need to call the parent's one explicitly. |
| 895 | //bool Result = AsmPrinter::doInitialization(M); |
| 896 | |
Eric Christopher | b4b75a5 | 2016-09-29 02:03:47 +0000 | [diff] [blame] | 897 | // Initialize TargetLoweringObjectFile since we didn't do in |
| 898 | // AsmPrinter::doInitialization either right above or where it's commented out |
| 899 | // below. |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 900 | const_cast<TargetLoweringObjectFile &>(getObjFileLowering()) |
| 901 | .Initialize(OutContext, TM); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 902 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 903 | // Emit header before any dwarf directives are emitted below. |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 904 | emitHeader(M, OS1, STI); |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 905 | OutStreamer->EmitRawText(OS1.str()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 906 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 907 | // Already commented out |
| 908 | //bool Result = AsmPrinter::doInitialization(M); |
| 909 | |
Justin Holewinski | d2bbdf0 | 2013-07-01 13:00:14 +0000 | [diff] [blame] | 910 | // Emit module-level inline asm if it exists. |
| 911 | if (!M.getModuleInlineAsm().empty()) { |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 912 | 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 Holewinski | d2bbdf0 | 2013-07-01 13:00:14 +0000 | [diff] [blame] | 918 | } |
| 919 | |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 920 | // If we're not NVCL we're CUDA, go ahead and emit filenames. |
Daniel Sanders | c81f450 | 2015-06-16 15:44:21 +0000 | [diff] [blame] | 921 | if (TM.getTargetTriple().getOS() != Triple::NVCL) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 922 | recordAndEmitFilenames(M); |
| 923 | |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 924 | GlobalsEmitted = false; |
| 925 | |
| 926 | return false; // success |
| 927 | } |
| 928 | |
| 929 | void NVPTXAsmPrinter::emitGlobals(const Module &M) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 930 | SmallString<128> Str2; |
| 931 | raw_svector_ostream OS2(Str2); |
| 932 | |
| 933 | emitDeclarations(M, OS2); |
| 934 | |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 935 | // 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 Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 940 | SmallVector<const GlobalVariable *, 8> Globals; |
| 941 | DenseSet<const GlobalVariable *> GVVisited; |
| 942 | DenseSet<const GlobalVariable *> GVVisiting; |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 943 | |
| 944 | // Visit each global variable, in order |
Duncan P. N. Exon Smith | 61149b8 | 2015-10-20 00:54:09 +0000 | [diff] [blame] | 945 | for (const GlobalVariable &I : M.globals()) |
| 946 | VisitGlobalVariableForEmission(&I, Globals, GVVisited, GVVisiting); |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 947 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 948 | assert(GVVisited.size() == M.getGlobalList().size() && |
Justin Holewinski | 2c5ac70 | 2012-11-16 21:03:51 +0000 | [diff] [blame] | 949 | "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 Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 955 | |
| 956 | OS2 << '\n'; |
| 957 | |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 958 | OutStreamer->EmitRawText(OS2.str()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 959 | } |
| 960 | |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 961 | void NVPTXAsmPrinter::emitHeader(Module &M, raw_ostream &O, |
| 962 | const NVPTXSubtarget &STI) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 963 | O << "//\n"; |
| 964 | O << "// Generated by LLVM NVPTX Back-End\n"; |
| 965 | O << "//\n"; |
| 966 | O << "\n"; |
| 967 | |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 968 | unsigned PTXVersion = STI.getPTXVersion(); |
Justin Holewinski | 1812ee9 | 2012-11-12 03:16:43 +0000 | [diff] [blame] | 969 | O << ".version " << (PTXVersion / 10) << "." << (PTXVersion % 10) << "\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 970 | |
| 971 | O << ".target "; |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 972 | O << STI.getTargetName(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 973 | |
Eric Christopher | ca929f2 | 2015-02-19 00:22:47 +0000 | [diff] [blame] | 974 | const NVPTXTargetMachine &NTM = static_cast<const NVPTXTargetMachine &>(TM); |
| 975 | if (NTM.getDrvInterface() == NVPTX::NVCL) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 976 | O << ", texmode_independent"; |
Eric Christopher | beffc4e | 2015-02-19 00:08:23 +0000 | [diff] [blame] | 977 | else { |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 978 | if (!STI.hasDouble()) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 979 | O << ", map_f64_to_f32"; |
| 980 | } |
| 981 | |
| 982 | if (MAI->doesSupportDebugInformation()) |
| 983 | O << ", debug"; |
| 984 | |
| 985 | O << "\n"; |
| 986 | |
| 987 | O << ".address_size "; |
Eric Christopher | ca929f2 | 2015-02-19 00:22:47 +0000 | [diff] [blame] | 988 | if (NTM.is64Bit()) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 989 | O << "64"; |
| 990 | else |
| 991 | O << "32"; |
| 992 | O << "\n"; |
| 993 | |
| 994 | O << "\n"; |
| 995 | } |
| 996 | |
| 997 | bool NVPTXAsmPrinter::doFinalization(Module &M) { |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 998 | // If we did not emit any functions, then the global declarations have not |
| 999 | // yet been emitted. |
| 1000 | if (!GlobalsEmitted) { |
| 1001 | emitGlobals(M); |
| 1002 | GlobalsEmitted = true; |
| 1003 | } |
| 1004 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1005 | // XXX Temproarily remove global variables so that doFinalization() will not |
| 1006 | // emit them again (global variables are emitted at beginning). |
| 1007 | |
| 1008 | Module::GlobalListType &global_list = M.getGlobalList(); |
| 1009 | int i, n = global_list.size(); |
Dylan Noblesmith | c9e2a27 | 2014-08-26 02:03:35 +0000 | [diff] [blame] | 1010 | GlobalVariable **gv_array = new GlobalVariable *[n]; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1011 | |
| 1012 | // first, back-up GlobalVariable in gv_array |
| 1013 | i = 0; |
| 1014 | for (Module::global_iterator I = global_list.begin(), E = global_list.end(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1015 | I != E; ++I) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1016 | gv_array[i++] = &*I; |
| 1017 | |
| 1018 | // second, empty global_list |
| 1019 | while (!global_list.empty()) |
| 1020 | global_list.remove(global_list.begin()); |
| 1021 | |
| 1022 | // call doFinalization |
| 1023 | bool ret = AsmPrinter::doFinalization(M); |
| 1024 | |
| 1025 | // now we restore global variables |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1026 | for (i = 0; i < n; i++) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1027 | global_list.insert(global_list.end(), gv_array[i]); |
| 1028 | |
Justin Holewinski | 5959695 | 2014-04-09 15:38:52 +0000 | [diff] [blame] | 1029 | clearAnnotationCache(&M); |
Dylan Noblesmith | c9e2a27 | 2014-08-26 02:03:35 +0000 | [diff] [blame] | 1030 | |
| 1031 | delete[] gv_array; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1032 | return ret; |
| 1033 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1034 | //bool Result = AsmPrinter::doFinalization(M); |
| 1035 | // Instead of calling the parents doFinalization, we may |
| 1036 | // clone parents doFinalization and customize here. |
| 1037 | // Currently, we if NVISA out the EmitGlobals() in |
| 1038 | // parent's doFinalization, which is too intrusive. |
| 1039 | // |
| 1040 | // Same for the doInitialization. |
| 1041 | //return Result; |
| 1042 | } |
| 1043 | |
| 1044 | // This function emits appropriate linkage directives for |
| 1045 | // functions and global variables. |
| 1046 | // |
| 1047 | // extern function declaration -> .extern |
| 1048 | // extern function definition -> .visible |
| 1049 | // external global variable with init -> .visible |
| 1050 | // external without init -> .extern |
| 1051 | // appending -> not allowed, assert. |
Justin Holewinski | 7d5bf66 | 2014-06-27 18:35:10 +0000 | [diff] [blame] | 1052 | // for any linkage other than |
| 1053 | // internal, private, linker_private, |
| 1054 | // linker_private_weak, linker_private_weak_def_auto, |
| 1055 | // we emit -> .weak. |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1056 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1057 | void NVPTXAsmPrinter::emitLinkageDirective(const GlobalValue *V, |
| 1058 | raw_ostream &O) { |
Eric Christopher | beffc4e | 2015-02-19 00:08:23 +0000 | [diff] [blame] | 1059 | if (static_cast<NVPTXTargetMachine &>(TM).getDrvInterface() == NVPTX::CUDA) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1060 | if (V->hasExternalLinkage()) { |
| 1061 | if (isa<GlobalVariable>(V)) { |
| 1062 | const GlobalVariable *GVar = cast<GlobalVariable>(V); |
| 1063 | if (GVar) { |
| 1064 | if (GVar->hasInitializer()) |
| 1065 | O << ".visible "; |
| 1066 | else |
| 1067 | O << ".extern "; |
| 1068 | } |
| 1069 | } else if (V->isDeclaration()) |
| 1070 | O << ".extern "; |
| 1071 | else |
| 1072 | O << ".visible "; |
| 1073 | } else if (V->hasAppendingLinkage()) { |
| 1074 | std::string msg; |
| 1075 | msg.append("Error: "); |
| 1076 | msg.append("Symbol "); |
| 1077 | if (V->hasName()) |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 1078 | msg.append(V->getName()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1079 | msg.append("has unsupported appending linkage type"); |
| 1080 | llvm_unreachable(msg.c_str()); |
Justin Holewinski | 7d5bf66 | 2014-06-27 18:35:10 +0000 | [diff] [blame] | 1081 | } else if (!V->hasInternalLinkage() && |
| 1082 | !V->hasPrivateLinkage()) { |
| 1083 | O << ".weak "; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1084 | } |
| 1085 | } |
| 1086 | } |
| 1087 | |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1088 | void NVPTXAsmPrinter::printModuleLevelGV(const GlobalVariable *GVar, |
| 1089 | raw_ostream &O, |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1090 | bool processDemoted) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1091 | // Skip meta data |
| 1092 | if (GVar->hasSection()) { |
Rafael Espindola | 83658d6 | 2016-05-11 18:21:59 +0000 | [diff] [blame] | 1093 | if (GVar->getSection() == "llvm.metadata") |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1094 | return; |
| 1095 | } |
| 1096 | |
Justin Holewinski | 73cb5de | 2014-06-27 18:35:53 +0000 | [diff] [blame] | 1097 | // Skip LLVM intrinsic global variables |
| 1098 | if (GVar->getName().startswith("llvm.") || |
| 1099 | GVar->getName().startswith("nvvm.")) |
| 1100 | return; |
| 1101 | |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1102 | const DataLayout &DL = getDataLayout(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1103 | |
| 1104 | // GlobalVariables are always constant pointers themselves. |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1105 | PointerType *PTy = GVar->getType(); |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1106 | Type *ETy = GVar->getValueType(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1107 | |
| 1108 | if (GVar->hasExternalLinkage()) { |
| 1109 | if (GVar->hasInitializer()) |
| 1110 | O << ".visible "; |
| 1111 | else |
| 1112 | O << ".extern "; |
Justin Holewinski | d73767a | 2014-06-27 18:35:56 +0000 | [diff] [blame] | 1113 | } else if (GVar->hasLinkOnceLinkage() || GVar->hasWeakLinkage() || |
| 1114 | GVar->hasAvailableExternallyLinkage() || |
| 1115 | GVar->hasCommonLinkage()) { |
| 1116 | O << ".weak "; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1117 | } |
| 1118 | |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1119 | if (isTexture(*GVar)) { |
| 1120 | O << ".global .texref " << getTextureName(*GVar) << ";\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1121 | return; |
| 1122 | } |
| 1123 | |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1124 | if (isSurface(*GVar)) { |
| 1125 | O << ".global .surfref " << getSurfaceName(*GVar) << ";\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1126 | return; |
| 1127 | } |
| 1128 | |
| 1129 | if (GVar->isDeclaration()) { |
| 1130 | // (extern) declarations, no definition or initializer |
| 1131 | // Currently the only known declaration is for an automatic __local |
| 1132 | // (.shared) promoted to global. |
| 1133 | emitPTXGlobalVariable(GVar, O); |
| 1134 | O << ";\n"; |
| 1135 | return; |
| 1136 | } |
| 1137 | |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1138 | if (isSampler(*GVar)) { |
| 1139 | O << ".global .samplerref " << getSamplerName(*GVar); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1140 | |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1141 | const Constant *Initializer = nullptr; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1142 | if (GVar->hasInitializer()) |
| 1143 | Initializer = GVar->getInitializer(); |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1144 | const ConstantInt *CI = nullptr; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1145 | if (Initializer) |
| 1146 | CI = dyn_cast<ConstantInt>(Initializer); |
| 1147 | if (CI) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1148 | unsigned sample = CI->getZExtValue(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1149 | |
| 1150 | O << " = { "; |
| 1151 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1152 | for (int i = 0, |
| 1153 | addr = ((sample & __CLK_ADDRESS_MASK) >> __CLK_ADDRESS_BASE); |
| 1154 | i < 3; i++) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1155 | O << "addr_mode_" << i << " = "; |
| 1156 | switch (addr) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1157 | case 0: |
| 1158 | O << "wrap"; |
| 1159 | break; |
| 1160 | case 1: |
| 1161 | O << "clamp_to_border"; |
| 1162 | break; |
| 1163 | case 2: |
| 1164 | O << "clamp_to_edge"; |
| 1165 | break; |
| 1166 | case 3: |
| 1167 | O << "wrap"; |
| 1168 | break; |
| 1169 | case 4: |
| 1170 | O << "mirror"; |
| 1171 | break; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1172 | } |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1173 | O << ", "; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1174 | } |
| 1175 | O << "filter_mode = "; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1176 | switch ((sample & __CLK_FILTER_MASK) >> __CLK_FILTER_BASE) { |
| 1177 | case 0: |
| 1178 | O << "nearest"; |
| 1179 | break; |
| 1180 | case 1: |
| 1181 | O << "linear"; |
| 1182 | break; |
| 1183 | case 2: |
Craig Topper | 2a30d78 | 2014-06-18 05:05:13 +0000 | [diff] [blame] | 1184 | llvm_unreachable("Anisotropic filtering is not supported"); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1185 | default: |
| 1186 | O << "nearest"; |
| 1187 | break; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1188 | } |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1189 | if (!((sample & __CLK_NORMALIZED_MASK) >> __CLK_NORMALIZED_BASE)) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1190 | O << ", force_unnormalized_coords = 1"; |
| 1191 | } |
| 1192 | O << " }"; |
| 1193 | } |
| 1194 | |
| 1195 | O << ";\n"; |
| 1196 | return; |
| 1197 | } |
| 1198 | |
| 1199 | if (GVar->hasPrivateLinkage()) { |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1200 | if (strncmp(GVar->getName().data(), "unrollpragma", 12) == 0) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1201 | return; |
| 1202 | |
| 1203 | // FIXME - need better way (e.g. Metadata) to avoid generating this global |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1204 | if (strncmp(GVar->getName().data(), "filename", 8) == 0) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1205 | return; |
| 1206 | if (GVar->use_empty()) |
| 1207 | return; |
| 1208 | } |
| 1209 | |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1210 | const Function *demotedFunc = nullptr; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1211 | if (!processDemoted && canDemoteGlobalVar(GVar, demotedFunc)) { |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 1212 | O << "// " << GVar->getName() << " has been demoted\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1213 | if (localDecls.find(demotedFunc) != localDecls.end()) |
| 1214 | localDecls[demotedFunc].push_back(GVar); |
| 1215 | else { |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1216 | std::vector<const GlobalVariable *> temp; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1217 | temp.push_back(GVar); |
| 1218 | localDecls[demotedFunc] = temp; |
| 1219 | } |
| 1220 | return; |
| 1221 | } |
| 1222 | |
| 1223 | O << "."; |
| 1224 | emitPTXAddressSpace(PTy->getAddressSpace(), O); |
Justin Holewinski | 773ca40 | 2014-06-27 18:35:58 +0000 | [diff] [blame] | 1225 | |
| 1226 | if (isManaged(*GVar)) { |
| 1227 | O << " .attribute(.managed)"; |
| 1228 | } |
| 1229 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1230 | if (GVar->getAlignment() == 0) |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1231 | O << " .align " << (int)DL.getPrefTypeAlignment(ETy); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1232 | else |
| 1233 | O << " .align " << GVar->getAlignment(); |
| 1234 | |
Justin Lebar | 1cf6bf4 | 2017-01-18 00:29:53 +0000 | [diff] [blame] | 1235 | if (ETy->isFloatingPointTy() || ETy->isPointerTy() || |
| 1236 | (ETy->isIntegerTy() && ETy->getScalarSizeInBits() <= 64)) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1237 | O << " ."; |
Justin Holewinski | 700b6fa | 2013-05-20 12:13:28 +0000 | [diff] [blame] | 1238 | // Special case: ABI requires that we use .u8 for predicates |
| 1239 | if (ETy->isIntegerTy(1)) |
| 1240 | O << "u8"; |
| 1241 | else |
| 1242 | O << getPTXFundamentalTypeStr(ETy, false); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1243 | O << " "; |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1244 | getSymbol(GVar)->print(O, MAI); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1245 | |
| 1246 | // Ptx allows variable initilization only for constant and global state |
| 1247 | // spaces. |
Justin Holewinski | 549c773 | 2014-06-27 18:36:01 +0000 | [diff] [blame] | 1248 | if (GVar->hasInitializer()) { |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1249 | if ((PTy->getAddressSpace() == ADDRESS_SPACE_GLOBAL) || |
| 1250 | (PTy->getAddressSpace() == ADDRESS_SPACE_CONST)) { |
Justin Holewinski | 549c773 | 2014-06-27 18:36:01 +0000 | [diff] [blame] | 1251 | const Constant *Initializer = GVar->getInitializer(); |
Jingyue Wu | 312fd02 | 2015-04-24 02:57:30 +0000 | [diff] [blame] | 1252 | // 'undef' is treated as there is no value specified. |
Justin Holewinski | 549c773 | 2014-06-27 18:36:01 +0000 | [diff] [blame] | 1253 | if (!Initializer->isNullValue() && !isa<UndefValue>(Initializer)) { |
| 1254 | O << " = "; |
| 1255 | printScalarConstant(Initializer, O); |
| 1256 | } |
| 1257 | } else { |
Jingyue Wu | fcec098 | 2015-08-22 05:40:26 +0000 | [diff] [blame] | 1258 | // The frontend adds zero-initializer to device and constant variables |
| 1259 | // that don't have an initial value, and UndefValue to shared |
| 1260 | // variables, so skip warning for this case. |
| 1261 | if (!GVar->getInitializer()->isNullValue() && |
| 1262 | !isa<UndefValue>(GVar->getInitializer())) { |
Benjamin Kramer | dba7ee9 | 2015-05-28 11:24:24 +0000 | [diff] [blame] | 1263 | report_fatal_error("initial value of '" + GVar->getName() + |
| 1264 | "' is not allowed in addrspace(" + |
| 1265 | Twine(PTy->getAddressSpace()) + ")"); |
Justin Holewinski | 549c773 | 2014-06-27 18:36:01 +0000 | [diff] [blame] | 1266 | } |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1267 | } |
| 1268 | } |
| 1269 | } else { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1270 | unsigned int ElementSize = 0; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1271 | |
| 1272 | // Although PTX has direct support for struct type and array type and |
| 1273 | // LLVM IR is very similar to PTX, the LLVM CodeGen does not support for |
| 1274 | // targets that support these high level field accesses. Structs, arrays |
| 1275 | // and vectors are lowered into arrays of bytes. |
| 1276 | switch (ETy->getTypeID()) { |
Justin Lebar | 1cf6bf4 | 2017-01-18 00:29:53 +0000 | [diff] [blame] | 1277 | case Type::IntegerTyID: // Integers larger than 64 bits |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1278 | case Type::StructTyID: |
| 1279 | case Type::ArrayTyID: |
| 1280 | case Type::VectorTyID: |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1281 | ElementSize = DL.getTypeStoreSize(ETy); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1282 | // Ptx allows variable initilization only for constant and |
| 1283 | // global state spaces. |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1284 | if (((PTy->getAddressSpace() == ADDRESS_SPACE_GLOBAL) || |
| 1285 | (PTy->getAddressSpace() == ADDRESS_SPACE_CONST)) && |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1286 | GVar->hasInitializer()) { |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1287 | const Constant *Initializer = GVar->getInitializer(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1288 | if (!isa<UndefValue>(Initializer) && !Initializer->isNullValue()) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1289 | AggBuffer aggBuffer(ElementSize, O, *this); |
| 1290 | bufferAggregateConstant(Initializer, &aggBuffer); |
| 1291 | if (aggBuffer.numSymbols) { |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 1292 | if (static_cast<const NVPTXTargetMachine &>(TM).is64Bit()) { |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1293 | O << " .u64 "; |
| 1294 | getSymbol(GVar)->print(O, MAI); |
| 1295 | O << "["; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1296 | O << ElementSize / 8; |
| 1297 | } else { |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1298 | O << " .u32 "; |
| 1299 | getSymbol(GVar)->print(O, MAI); |
| 1300 | O << "["; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1301 | O << ElementSize / 4; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1302 | } |
| 1303 | O << "]"; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1304 | } else { |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1305 | O << " .b8 "; |
| 1306 | getSymbol(GVar)->print(O, MAI); |
| 1307 | O << "["; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1308 | O << ElementSize; |
| 1309 | O << "]"; |
| 1310 | } |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1311 | O << " = {"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1312 | aggBuffer.print(); |
| 1313 | O << "}"; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1314 | } else { |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1315 | O << " .b8 "; |
| 1316 | getSymbol(GVar)->print(O, MAI); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1317 | if (ElementSize) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1318 | O << "["; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1319 | O << ElementSize; |
| 1320 | O << "]"; |
| 1321 | } |
| 1322 | } |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1323 | } else { |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1324 | O << " .b8 "; |
| 1325 | getSymbol(GVar)->print(O, MAI); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1326 | if (ElementSize) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1327 | O << "["; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1328 | O << ElementSize; |
| 1329 | O << "]"; |
| 1330 | } |
| 1331 | } |
| 1332 | break; |
| 1333 | default: |
Craig Topper | 2a30d78 | 2014-06-18 05:05:13 +0000 | [diff] [blame] | 1334 | llvm_unreachable("type not supported yet"); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1335 | } |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1336 | } |
| 1337 | O << ";\n"; |
| 1338 | } |
| 1339 | |
| 1340 | void NVPTXAsmPrinter::emitDemotedVars(const Function *f, raw_ostream &O) { |
| 1341 | if (localDecls.find(f) == localDecls.end()) |
| 1342 | return; |
| 1343 | |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1344 | std::vector<const GlobalVariable *> &gvars = localDecls[f]; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1345 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1346 | for (unsigned i = 0, e = gvars.size(); i != e; ++i) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1347 | O << "\t// demoted variable\n\t"; |
| 1348 | printModuleLevelGV(gvars[i], O, true); |
| 1349 | } |
| 1350 | } |
| 1351 | |
| 1352 | void NVPTXAsmPrinter::emitPTXAddressSpace(unsigned int AddressSpace, |
| 1353 | raw_ostream &O) const { |
| 1354 | switch (AddressSpace) { |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1355 | case ADDRESS_SPACE_LOCAL: |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1356 | O << "local"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1357 | break; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1358 | case ADDRESS_SPACE_GLOBAL: |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1359 | O << "global"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1360 | break; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1361 | case ADDRESS_SPACE_CONST: |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1362 | O << "const"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1363 | break; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1364 | case ADDRESS_SPACE_SHARED: |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1365 | O << "shared"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1366 | break; |
| 1367 | default: |
Justin Holewinski | 36a5099 | 2013-02-09 13:34:15 +0000 | [diff] [blame] | 1368 | report_fatal_error("Bad address space found while emitting PTX"); |
| 1369 | break; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1370 | } |
| 1371 | } |
| 1372 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1373 | std::string |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1374 | NVPTXAsmPrinter::getPTXFundamentalTypeStr(Type *Ty, bool useB4PTR) const { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1375 | switch (Ty->getTypeID()) { |
| 1376 | default: |
| 1377 | llvm_unreachable("unexpected type"); |
| 1378 | break; |
| 1379 | case Type::IntegerTyID: { |
| 1380 | unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); |
| 1381 | if (NumBits == 1) |
| 1382 | return "pred"; |
| 1383 | else if (NumBits <= 64) { |
| 1384 | std::string name = "u"; |
| 1385 | return name + utostr(NumBits); |
| 1386 | } else { |
| 1387 | llvm_unreachable("Integer too large"); |
| 1388 | break; |
| 1389 | } |
| 1390 | break; |
| 1391 | } |
Artem Belevich | 64dc9be | 2017-01-13 20:56:17 +0000 | [diff] [blame] | 1392 | case Type::HalfTyID: |
| 1393 | // fp16 is stored as .b16 for compatibility with pre-sm_53 PTX assembly. |
| 1394 | return "b16"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1395 | case Type::FloatTyID: |
| 1396 | return "f32"; |
| 1397 | case Type::DoubleTyID: |
| 1398 | return "f64"; |
| 1399 | case Type::PointerTyID: |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 1400 | if (static_cast<const NVPTXTargetMachine &>(TM).is64Bit()) |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1401 | if (useB4PTR) |
| 1402 | return "b64"; |
| 1403 | else |
| 1404 | return "u64"; |
| 1405 | else if (useB4PTR) |
| 1406 | return "b32"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1407 | else |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1408 | return "u32"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1409 | } |
| 1410 | llvm_unreachable("unexpected type"); |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1411 | return nullptr; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1412 | } |
| 1413 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1414 | void NVPTXAsmPrinter::emitPTXGlobalVariable(const GlobalVariable *GVar, |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1415 | raw_ostream &O) { |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1416 | const DataLayout &DL = getDataLayout(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1417 | |
| 1418 | // GlobalVariables are always constant pointers themselves. |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1419 | Type *ETy = GVar->getValueType(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1420 | |
| 1421 | O << "."; |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1422 | emitPTXAddressSpace(GVar->getType()->getAddressSpace(), O); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1423 | if (GVar->getAlignment() == 0) |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1424 | O << " .align " << (int)DL.getPrefTypeAlignment(ETy); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1425 | else |
| 1426 | O << " .align " << GVar->getAlignment(); |
| 1427 | |
Artem Belevich | d7a7382 | 2017-07-20 21:16:03 +0000 | [diff] [blame] | 1428 | // Special case for i128 |
| 1429 | if (ETy->isIntegerTy(128)) { |
| 1430 | O << " .b8 "; |
| 1431 | getSymbol(GVar)->print(O, MAI); |
| 1432 | O << "[16]"; |
| 1433 | return; |
| 1434 | } |
| 1435 | |
Jingyue Wu | e4c9cf0 | 2014-12-17 17:59:04 +0000 | [diff] [blame] | 1436 | if (ETy->isFloatingPointTy() || ETy->isIntegerTy() || ETy->isPointerTy()) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1437 | O << " ."; |
| 1438 | O << getPTXFundamentalTypeStr(ETy); |
| 1439 | O << " "; |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1440 | getSymbol(GVar)->print(O, MAI); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1441 | return; |
| 1442 | } |
| 1443 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1444 | int64_t ElementSize = 0; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1445 | |
| 1446 | // Although PTX has direct support for struct type and array type and LLVM IR |
| 1447 | // is very similar to PTX, the LLVM CodeGen does not support for targets that |
| 1448 | // support these high level field accesses. Structs and arrays are lowered |
| 1449 | // into arrays of bytes. |
| 1450 | switch (ETy->getTypeID()) { |
| 1451 | case Type::StructTyID: |
| 1452 | case Type::ArrayTyID: |
| 1453 | case Type::VectorTyID: |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1454 | ElementSize = DL.getTypeStoreSize(ETy); |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1455 | O << " .b8 "; |
| 1456 | getSymbol(GVar)->print(O, MAI); |
| 1457 | O << "["; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1458 | if (ElementSize) { |
Benjamin Kramer | dba7ee9 | 2015-05-28 11:24:24 +0000 | [diff] [blame] | 1459 | O << ElementSize; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1460 | } |
| 1461 | O << "]"; |
| 1462 | break; |
| 1463 | default: |
Craig Topper | 2a30d78 | 2014-06-18 05:05:13 +0000 | [diff] [blame] | 1464 | llvm_unreachable("type not supported yet"); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1465 | } |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1466 | } |
| 1467 | |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1468 | static unsigned int getOpenCLAlignment(const DataLayout &DL, Type *Ty) { |
Rafael Espindola | 0801334 | 2013-12-07 19:34:20 +0000 | [diff] [blame] | 1469 | if (Ty->isSingleValueType()) |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1470 | return DL.getPrefTypeAlignment(Ty); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1471 | |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1472 | auto *ATy = dyn_cast<ArrayType>(Ty); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1473 | if (ATy) |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1474 | return getOpenCLAlignment(DL, ATy->getElementType()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1475 | |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1476 | auto *STy = dyn_cast<StructType>(Ty); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1477 | if (STy) { |
| 1478 | unsigned int alignStruct = 1; |
| 1479 | // Go through each element of the struct and find the |
| 1480 | // largest alignment. |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1481 | for (unsigned i = 0, e = STy->getNumElements(); i != e; i++) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1482 | Type *ETy = STy->getElementType(i); |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1483 | unsigned int align = getOpenCLAlignment(DL, ETy); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1484 | if (align > alignStruct) |
| 1485 | alignStruct = align; |
| 1486 | } |
| 1487 | return alignStruct; |
| 1488 | } |
| 1489 | |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1490 | auto *FTy = dyn_cast<FunctionType>(Ty); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1491 | if (FTy) |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1492 | return DL.getPointerPrefAlignment(); |
| 1493 | return DL.getPrefTypeAlignment(Ty); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1494 | } |
| 1495 | |
| 1496 | void NVPTXAsmPrinter::printParamName(Function::const_arg_iterator I, |
| 1497 | int paramIndex, raw_ostream &O) { |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1498 | getSymbol(I->getParent())->print(O, MAI); |
| 1499 | O << "_param_" << paramIndex; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1500 | } |
| 1501 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1502 | void NVPTXAsmPrinter::emitFunctionParamList(const Function *F, raw_ostream &O) { |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1503 | const DataLayout &DL = getDataLayout(); |
Reid Kleckner | b518054 | 2017-03-21 16:57:19 +0000 | [diff] [blame] | 1504 | const AttributeList &PAL = F->getAttributes(); |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 1505 | const TargetLowering *TLI = nvptxSubtarget->getTargetLowering(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1506 | Function::const_arg_iterator I, E; |
| 1507 | unsigned paramIndex = 0; |
| 1508 | bool first = true; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1509 | bool isKernelFunc = isKernelFunction(*F); |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 1510 | bool isABI = (nvptxSubtarget->getSmVersion() >= 20); |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1511 | MVT thePointerTy = TLI->getPointerTy(DL); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1512 | |
Justin Lebar | 2a161f9 | 2016-01-23 21:12:17 +0000 | [diff] [blame] | 1513 | if (F->arg_empty()) { |
| 1514 | O << "()\n"; |
| 1515 | return; |
| 1516 | } |
| 1517 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1518 | O << "(\n"; |
| 1519 | |
| 1520 | for (I = F->arg_begin(), E = F->arg_end(); I != E; ++I, paramIndex++) { |
Justin Holewinski | e988409 | 2013-03-24 21:17:47 +0000 | [diff] [blame] | 1521 | Type *Ty = I->getType(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1522 | |
| 1523 | if (!first) |
| 1524 | O << ",\n"; |
| 1525 | |
| 1526 | first = false; |
| 1527 | |
| 1528 | // Handle image/sampler parameters |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 1529 | if (isKernelFunction(*F)) { |
| 1530 | if (isSampler(*I) || isImage(*I)) { |
| 1531 | if (isImage(*I)) { |
| 1532 | std::string sname = I->getName(); |
| 1533 | if (isImageWriteOnly(*I) || isImageReadWrite(*I)) { |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 1534 | if (nvptxSubtarget->hasImageHandles()) |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 1535 | O << "\t.param .u64 .ptr .surfref "; |
| 1536 | else |
| 1537 | O << "\t.param .surfref "; |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1538 | CurrentFnSym->print(O, MAI); |
| 1539 | O << "_param_" << paramIndex; |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 1540 | } |
| 1541 | else { // Default image is read_only |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 1542 | if (nvptxSubtarget->hasImageHandles()) |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 1543 | O << "\t.param .u64 .ptr .texref "; |
| 1544 | else |
| 1545 | O << "\t.param .texref "; |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1546 | CurrentFnSym->print(O, MAI); |
| 1547 | O << "_param_" << paramIndex; |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 1548 | } |
| 1549 | } else { |
Eric Christopher | 6aad8b1 | 2015-02-19 00:08:14 +0000 | [diff] [blame] | 1550 | if (nvptxSubtarget->hasImageHandles()) |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 1551 | O << "\t.param .u64 .ptr .samplerref "; |
| 1552 | else |
| 1553 | O << "\t.param .samplerref "; |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1554 | CurrentFnSym->print(O, MAI); |
| 1555 | O << "_param_" << paramIndex; |
Justin Holewinski | 30d56a7 | 2014-04-09 15:39:15 +0000 | [diff] [blame] | 1556 | } |
| 1557 | continue; |
| 1558 | } |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1559 | } |
| 1560 | |
Reid Kleckner | f021fab | 2017-04-13 23:12:13 +0000 | [diff] [blame] | 1561 | if (!PAL.hasParamAttribute(paramIndex, Attribute::ByVal)) { |
Artem Belevich | d7a7382 | 2017-07-20 21:16:03 +0000 | [diff] [blame] | 1562 | if (Ty->isAggregateType() || Ty->isVectorTy() || Ty->isIntegerTy(128)) { |
Gautam Chakrabarti | 2c28340 | 2014-01-28 18:35:29 +0000 | [diff] [blame] | 1563 | // Just print .param .align <a> .b8 .param[size]; |
Justin Holewinski | e988409 | 2013-03-24 21:17:47 +0000 | [diff] [blame] | 1564 | // <a> = PAL.getparamalignment |
| 1565 | // size = typeallocsize of element type |
Reid Kleckner | 859f8b5 | 2017-04-28 20:34:27 +0000 | [diff] [blame] | 1566 | unsigned align = PAL.getParamAlignment(paramIndex); |
Justin Holewinski | e988409 | 2013-03-24 21:17:47 +0000 | [diff] [blame] | 1567 | if (align == 0) |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1568 | align = DL.getABITypeAlignment(Ty); |
Justin Holewinski | e988409 | 2013-03-24 21:17:47 +0000 | [diff] [blame] | 1569 | |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1570 | unsigned sz = DL.getTypeAllocSize(Ty); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1571 | O << "\t.param .align " << align << " .b8 "; |
Justin Holewinski | e988409 | 2013-03-24 21:17:47 +0000 | [diff] [blame] | 1572 | printParamName(I, paramIndex, O); |
| 1573 | O << "[" << sz << "]"; |
| 1574 | |
| 1575 | continue; |
| 1576 | } |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1577 | // Just a scalar |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1578 | auto *PTy = dyn_cast<PointerType>(Ty); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1579 | if (isKernelFunc) { |
| 1580 | if (PTy) { |
| 1581 | // Special handling for pointer arguments to kernel |
| 1582 | O << "\t.param .u" << thePointerTy.getSizeInBits() << " "; |
| 1583 | |
Eric Christopher | beffc4e | 2015-02-19 00:08:23 +0000 | [diff] [blame] | 1584 | if (static_cast<NVPTXTargetMachine &>(TM).getDrvInterface() != |
| 1585 | NVPTX::CUDA) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1586 | Type *ETy = PTy->getElementType(); |
| 1587 | int addrSpace = PTy->getAddressSpace(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1588 | switch (addrSpace) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1589 | default: |
| 1590 | O << ".ptr "; |
| 1591 | break; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1592 | case ADDRESS_SPACE_CONST: |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1593 | O << ".ptr .const "; |
| 1594 | break; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1595 | case ADDRESS_SPACE_SHARED: |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1596 | O << ".ptr .shared "; |
| 1597 | break; |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 1598 | case ADDRESS_SPACE_GLOBAL: |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1599 | O << ".ptr .global "; |
| 1600 | break; |
| 1601 | } |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1602 | O << ".align " << (int)getOpenCLAlignment(DL, ETy) << " "; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1603 | } |
| 1604 | printParamName(I, paramIndex, O); |
| 1605 | continue; |
| 1606 | } |
| 1607 | |
| 1608 | // non-pointer scalar to kernel func |
Justin Holewinski | 700b6fa | 2013-05-20 12:13:28 +0000 | [diff] [blame] | 1609 | O << "\t.param ."; |
| 1610 | // Special case: predicate operands become .u8 types |
| 1611 | if (Ty->isIntegerTy(1)) |
| 1612 | O << "u8"; |
| 1613 | else |
| 1614 | O << getPTXFundamentalTypeStr(Ty); |
| 1615 | O << " "; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1616 | printParamName(I, paramIndex, O); |
| 1617 | continue; |
| 1618 | } |
| 1619 | // Non-kernel function, just print .param .b<size> for ABI |
Alp Toker | f907b89 | 2013-12-05 05:44:44 +0000 | [diff] [blame] | 1620 | // and .reg .b<size> for non-ABI |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1621 | unsigned sz = 0; |
| 1622 | if (isa<IntegerType>(Ty)) { |
| 1623 | sz = cast<IntegerType>(Ty)->getBitWidth(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1624 | if (sz < 32) |
| 1625 | sz = 32; |
| 1626 | } else if (isa<PointerType>(Ty)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1627 | sz = thePointerTy.getSizeInBits(); |
Artem Belevich | 64dc9be | 2017-01-13 20:56:17 +0000 | [diff] [blame] | 1628 | else if (Ty->isHalfTy()) |
| 1629 | // PTX ABI requires all scalar parameters to be at least 32 |
| 1630 | // bits in size. fp16 normally uses .b16 as its storage type |
| 1631 | // in PTX, so its size must be adjusted here, too. |
| 1632 | sz = 32; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1633 | else |
| 1634 | sz = Ty->getPrimitiveSizeInBits(); |
| 1635 | if (isABI) |
| 1636 | O << "\t.param .b" << sz << " "; |
| 1637 | else |
| 1638 | O << "\t.reg .b" << sz << " "; |
| 1639 | printParamName(I, paramIndex, O); |
| 1640 | continue; |
| 1641 | } |
| 1642 | |
| 1643 | // param has byVal attribute. So should be a pointer |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1644 | auto *PTy = dyn_cast<PointerType>(Ty); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1645 | assert(PTy && "Param with byval attribute should be a pointer type"); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1646 | Type *ETy = PTy->getElementType(); |
| 1647 | |
| 1648 | if (isABI || isKernelFunc) { |
Gautam Chakrabarti | 2c28340 | 2014-01-28 18:35:29 +0000 | [diff] [blame] | 1649 | // Just print .param .align <a> .b8 .param[size]; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1650 | // <a> = PAL.getparamalignment |
| 1651 | // size = typeallocsize of element type |
Reid Kleckner | 859f8b5 | 2017-04-28 20:34:27 +0000 | [diff] [blame] | 1652 | unsigned align = PAL.getParamAlignment(paramIndex); |
Justin Holewinski | 2dc9d07 | 2012-11-09 23:50:24 +0000 | [diff] [blame] | 1653 | if (align == 0) |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1654 | align = DL.getABITypeAlignment(ETy); |
Artem Belevich | 052b1ed | 2016-07-18 19:54:56 +0000 | [diff] [blame] | 1655 | // Work around a bug in ptxas. When PTX code takes address of |
| 1656 | // byval parameter with alignment < 4, ptxas generates code to |
| 1657 | // spill argument into memory. Alas on sm_50+ ptxas generates |
| 1658 | // SASS code that fails with misaligned access. To work around |
| 1659 | // the problem, make sure that we align byval parameters by at |
| 1660 | // least 4. Matching change must be made in LowerCall() where we |
| 1661 | // prepare parameters for the call. |
| 1662 | // |
| 1663 | // TODO: this will need to be undone when we get to support multi-TU |
| 1664 | // device-side compilation as it breaks ABI compatibility with nvcc. |
| 1665 | // Hopefully ptxas bug is fixed by then. |
| 1666 | if (!isKernelFunc && align < 4) |
| 1667 | align = 4; |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1668 | unsigned sz = DL.getTypeAllocSize(ETy); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1669 | O << "\t.param .align " << align << " .b8 "; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1670 | printParamName(I, paramIndex, O); |
| 1671 | O << "[" << sz << "]"; |
| 1672 | continue; |
| 1673 | } else { |
| 1674 | // Split the ETy into constituent parts and |
| 1675 | // print .param .b<size> <name> for each part. |
| 1676 | // Further, if a part is vector, print the above for |
| 1677 | // each vector element. |
| 1678 | SmallVector<EVT, 16> vtparts; |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1679 | ComputeValueVTs(*TLI, DL, ETy, vtparts); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1680 | for (unsigned i = 0, e = vtparts.size(); i != e; ++i) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1681 | unsigned elems = 1; |
| 1682 | EVT elemtype = vtparts[i]; |
| 1683 | if (vtparts[i].isVector()) { |
| 1684 | elems = vtparts[i].getVectorNumElements(); |
| 1685 | elemtype = vtparts[i].getVectorElementType(); |
| 1686 | } |
| 1687 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1688 | for (unsigned j = 0, je = elems; j != je; ++j) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1689 | unsigned sz = elemtype.getSizeInBits(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1690 | if (elemtype.isInteger() && (sz < 32)) |
| 1691 | sz = 32; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1692 | O << "\t.reg .b" << sz << " "; |
| 1693 | printParamName(I, paramIndex, O); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1694 | if (j < je - 1) |
| 1695 | O << ",\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1696 | ++paramIndex; |
| 1697 | } |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1698 | if (i < e - 1) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1699 | O << ",\n"; |
| 1700 | } |
| 1701 | --paramIndex; |
| 1702 | continue; |
| 1703 | } |
| 1704 | } |
| 1705 | |
| 1706 | O << "\n)\n"; |
| 1707 | } |
| 1708 | |
| 1709 | void NVPTXAsmPrinter::emitFunctionParamList(const MachineFunction &MF, |
| 1710 | raw_ostream &O) { |
| 1711 | const Function *F = MF.getFunction(); |
| 1712 | emitFunctionParamList(F, O); |
| 1713 | } |
| 1714 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1715 | void NVPTXAsmPrinter::setAndEmitFunctionVirtualRegisters( |
| 1716 | const MachineFunction &MF) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1717 | SmallString<128> Str; |
| 1718 | raw_svector_ostream O(Str); |
| 1719 | |
| 1720 | // Map the global virtual register number to a register class specific |
| 1721 | // virtual register number starting from 1 with that class. |
Eric Christopher | fc6de42 | 2014-08-05 02:39:49 +0000 | [diff] [blame] | 1722 | const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1723 | //unsigned numRegClasses = TRI->getNumRegClasses(); |
| 1724 | |
| 1725 | // Emit the Fake Stack Object |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 1726 | const MachineFrameInfo &MFI = MF.getFrameInfo(); |
| 1727 | int NumBytes = (int) MFI.getStackSize(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1728 | if (NumBytes) { |
Matthias Braun | 941a705 | 2016-07-28 18:40:00 +0000 | [diff] [blame] | 1729 | O << "\t.local .align " << MFI.getMaxAlignment() << " .b8 \t" << DEPOTNAME |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1730 | << getFunctionNumber() << "[" << NumBytes << "];\n"; |
Eric Christopher | 02389e3 | 2015-02-19 00:08:27 +0000 | [diff] [blame] | 1731 | if (static_cast<const NVPTXTargetMachine &>(MF.getTarget()).is64Bit()) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1732 | O << "\t.reg .b64 \t%SP;\n"; |
| 1733 | O << "\t.reg .b64 \t%SPL;\n"; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1734 | } else { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1735 | O << "\t.reg .b32 \t%SP;\n"; |
| 1736 | O << "\t.reg .b32 \t%SPL;\n"; |
| 1737 | } |
| 1738 | } |
| 1739 | |
| 1740 | // Go through all virtual registers to establish the mapping between the |
| 1741 | // global virtual |
| 1742 | // register number and the per class virtual register number. |
| 1743 | // We use the per class virtual register number in the ptx output. |
| 1744 | unsigned int numVRs = MRI->getNumVirtRegs(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1745 | for (unsigned i = 0; i < numVRs; i++) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1746 | unsigned int vr = TRI->index2VirtReg(i); |
| 1747 | const TargetRegisterClass *RC = MRI->getRegClass(vr); |
Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 1748 | DenseMap<unsigned, unsigned> ®map = VRegMapping[RC]; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1749 | int n = regmap.size(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1750 | regmap.insert(std::make_pair(vr, n + 1)); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1751 | } |
| 1752 | |
| 1753 | // Emit register declarations |
| 1754 | // @TODO: Extract out the real register usage |
Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 1755 | // O << "\t.reg .pred %p<" << NVPTXNumRegisters << ">;\n"; |
| 1756 | // O << "\t.reg .s16 %rc<" << NVPTXNumRegisters << ">;\n"; |
| 1757 | // O << "\t.reg .s16 %rs<" << NVPTXNumRegisters << ">;\n"; |
| 1758 | // O << "\t.reg .s32 %r<" << NVPTXNumRegisters << ">;\n"; |
Justin Holewinski | 3e037d9 | 2014-07-16 16:26:58 +0000 | [diff] [blame] | 1759 | // O << "\t.reg .s64 %rd<" << NVPTXNumRegisters << ">;\n"; |
Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 1760 | // O << "\t.reg .f32 %f<" << NVPTXNumRegisters << ">;\n"; |
Justin Holewinski | 3e037d9 | 2014-07-16 16:26:58 +0000 | [diff] [blame] | 1761 | // O << "\t.reg .f64 %fd<" << NVPTXNumRegisters << ">;\n"; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1762 | |
| 1763 | // Emit declaration of the virtual registers or 'physical' registers for |
| 1764 | // each register class |
Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 1765 | for (unsigned i=0; i< TRI->getNumRegClasses(); i++) { |
| 1766 | const TargetRegisterClass *RC = TRI->getRegClass(i); |
| 1767 | DenseMap<unsigned, unsigned> ®map = VRegMapping[RC]; |
| 1768 | std::string rcname = getNVPTXRegClassName(RC); |
| 1769 | std::string rcStr = getNVPTXRegClassStr(RC); |
| 1770 | int n = regmap.size(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1771 | |
Justin Holewinski | dbb3b2f | 2013-05-31 12:14:49 +0000 | [diff] [blame] | 1772 | // Only declare those registers that may be used. |
| 1773 | if (n) { |
| 1774 | O << "\t.reg " << rcname << " \t" << rcStr << "<" << (n+1) |
| 1775 | << ">;\n"; |
| 1776 | } |
| 1777 | } |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1778 | |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 1779 | OutStreamer->EmitRawText(O.str()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1780 | } |
| 1781 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1782 | void NVPTXAsmPrinter::printFPConstant(const ConstantFP *Fp, raw_ostream &O) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1783 | APFloat APF = APFloat(Fp->getValueAPF()); // make a copy |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1784 | bool ignored; |
| 1785 | unsigned int numHex; |
| 1786 | const char *lead; |
| 1787 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1788 | if (Fp->getType()->getTypeID() == Type::FloatTyID) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1789 | numHex = 8; |
| 1790 | lead = "0f"; |
Stephan Bergmann | 17c7f70 | 2016-12-14 11:57:17 +0000 | [diff] [blame] | 1791 | APF.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven, &ignored); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1792 | } else if (Fp->getType()->getTypeID() == Type::DoubleTyID) { |
| 1793 | numHex = 16; |
| 1794 | lead = "0d"; |
Stephan Bergmann | 17c7f70 | 2016-12-14 11:57:17 +0000 | [diff] [blame] | 1795 | APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &ignored); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1796 | } else |
| 1797 | llvm_unreachable("unsupported fp type"); |
| 1798 | |
| 1799 | APInt API = APF.bitcastToAPInt(); |
| 1800 | std::string hexstr(utohexstr(API.getZExtValue())); |
| 1801 | O << lead; |
| 1802 | if (hexstr.length() < numHex) |
| 1803 | O << std::string(numHex - hexstr.length(), '0'); |
| 1804 | O << utohexstr(API.getZExtValue()); |
| 1805 | } |
| 1806 | |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1807 | void NVPTXAsmPrinter::printScalarConstant(const Constant *CPV, raw_ostream &O) { |
| 1808 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1809 | O << CI->getValue(); |
| 1810 | return; |
| 1811 | } |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1812 | if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CPV)) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1813 | printFPConstant(CFP, O); |
| 1814 | return; |
| 1815 | } |
| 1816 | if (isa<ConstantPointerNull>(CPV)) { |
| 1817 | O << "0"; |
| 1818 | return; |
| 1819 | } |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1820 | if (const GlobalValue *GVar = dyn_cast<GlobalValue>(CPV)) { |
Justin Holewinski | 9d852a8 | 2014-04-09 15:39:11 +0000 | [diff] [blame] | 1821 | bool IsNonGenericPointer = false; |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1822 | if (GVar->getType()->getAddressSpace() != 0) { |
Justin Holewinski | 9d852a8 | 2014-04-09 15:39:11 +0000 | [diff] [blame] | 1823 | IsNonGenericPointer = true; |
| 1824 | } |
| 1825 | if (EmitGeneric && !isa<Function>(CPV) && !IsNonGenericPointer) { |
| 1826 | O << "generic("; |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1827 | getSymbol(GVar)->print(O, MAI); |
Justin Holewinski | 9d852a8 | 2014-04-09 15:39:11 +0000 | [diff] [blame] | 1828 | O << ")"; |
| 1829 | } else { |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1830 | getSymbol(GVar)->print(O, MAI); |
Justin Holewinski | 9d852a8 | 2014-04-09 15:39:11 +0000 | [diff] [blame] | 1831 | } |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1832 | return; |
| 1833 | } |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1834 | if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) { |
| 1835 | const Value *v = Cexpr->stripPointerCasts(); |
Justin Holewinski | 9d852a8 | 2014-04-09 15:39:11 +0000 | [diff] [blame] | 1836 | PointerType *PTy = dyn_cast<PointerType>(Cexpr->getType()); |
| 1837 | bool IsNonGenericPointer = false; |
| 1838 | if (PTy && PTy->getAddressSpace() != 0) { |
| 1839 | IsNonGenericPointer = true; |
| 1840 | } |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1841 | if (const GlobalValue *GVar = dyn_cast<GlobalValue>(v)) { |
Justin Holewinski | 9d852a8 | 2014-04-09 15:39:11 +0000 | [diff] [blame] | 1842 | if (EmitGeneric && !isa<Function>(v) && !IsNonGenericPointer) { |
| 1843 | O << "generic("; |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1844 | getSymbol(GVar)->print(O, MAI); |
Justin Holewinski | 9d852a8 | 2014-04-09 15:39:11 +0000 | [diff] [blame] | 1845 | O << ")"; |
| 1846 | } else { |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1847 | getSymbol(GVar)->print(O, MAI); |
Justin Holewinski | 9d852a8 | 2014-04-09 15:39:11 +0000 | [diff] [blame] | 1848 | } |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1849 | return; |
| 1850 | } else { |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 1851 | lowerConstant(CPV)->print(O, MAI); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1852 | return; |
| 1853 | } |
| 1854 | } |
| 1855 | llvm_unreachable("Not scalar type found in printScalarConstant()"); |
| 1856 | } |
| 1857 | |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1858 | // These utility functions assure we get the right sequence of bytes for a given |
| 1859 | // type even for big-endian machines |
| 1860 | template <typename T> static void ConvertIntToBytes(unsigned char *p, T val) { |
| 1861 | int64_t vp = (int64_t)val; |
| 1862 | for (unsigned i = 0; i < sizeof(T); ++i) { |
| 1863 | p[i] = (unsigned char)vp; |
| 1864 | vp >>= 8; |
| 1865 | } |
| 1866 | } |
| 1867 | static void ConvertFloatToBytes(unsigned char *p, float val) { |
| 1868 | int32_t *vp = (int32_t *)&val; |
| 1869 | for (unsigned i = 0; i < sizeof(int32_t); ++i) { |
| 1870 | p[i] = (unsigned char)*vp; |
| 1871 | *vp >>= 8; |
| 1872 | } |
| 1873 | } |
| 1874 | static void ConvertDoubleToBytes(unsigned char *p, double val) { |
| 1875 | int64_t *vp = (int64_t *)&val; |
| 1876 | for (unsigned i = 0; i < sizeof(int64_t); ++i) { |
| 1877 | p[i] = (unsigned char)*vp; |
| 1878 | *vp >>= 8; |
| 1879 | } |
| 1880 | } |
| 1881 | |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1882 | void NVPTXAsmPrinter::bufferLEByte(const Constant *CPV, int Bytes, |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1883 | AggBuffer *aggBuffer) { |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1884 | const DataLayout &DL = getDataLayout(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1885 | |
| 1886 | if (isa<UndefValue>(CPV) || CPV->isNullValue()) { |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1887 | int s = DL.getTypeAllocSize(CPV->getType()); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1888 | if (s < Bytes) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1889 | s = Bytes; |
| 1890 | aggBuffer->addZeros(s); |
| 1891 | return; |
| 1892 | } |
| 1893 | |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1894 | unsigned char ptr[8]; |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1895 | switch (CPV->getType()->getTypeID()) { |
| 1896 | |
| 1897 | case Type::IntegerTyID: { |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1898 | Type *ETy = CPV->getType(); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1899 | if (ETy == Type::getInt8Ty(CPV->getContext())) { |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 1900 | unsigned char c = (unsigned char)cast<ConstantInt>(CPV)->getZExtValue(); |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1901 | ConvertIntToBytes<>(ptr, c); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1902 | aggBuffer->addBytes(ptr, 1, Bytes); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1903 | } else if (ETy == Type::getInt16Ty(CPV->getContext())) { |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 1904 | short int16 = (short)cast<ConstantInt>(CPV)->getZExtValue(); |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1905 | ConvertIntToBytes<>(ptr, int16); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1906 | aggBuffer->addBytes(ptr, 2, Bytes); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1907 | } else if (ETy == Type::getInt32Ty(CPV->getContext())) { |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1908 | if (const ConstantInt *constInt = dyn_cast<ConstantInt>(CPV)) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1909 | int int32 = (int)(constInt->getZExtValue()); |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1910 | ConvertIntToBytes<>(ptr, int32); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1911 | aggBuffer->addBytes(ptr, 4, Bytes); |
| 1912 | break; |
David Majnemer | d536f23 | 2016-07-29 03:27:26 +0000 | [diff] [blame] | 1913 | } else if (const auto *Cexpr = dyn_cast<ConstantExpr>(CPV)) { |
| 1914 | if (const auto *constInt = dyn_cast_or_null<ConstantInt>( |
| 1915 | ConstantFoldConstant(Cexpr, DL))) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1916 | int int32 = (int)(constInt->getZExtValue()); |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1917 | ConvertIntToBytes<>(ptr, int32); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1918 | aggBuffer->addBytes(ptr, 4, Bytes); |
| 1919 | break; |
| 1920 | } |
| 1921 | if (Cexpr->getOpcode() == Instruction::PtrToInt) { |
| 1922 | Value *v = Cexpr->getOperand(0)->stripPointerCasts(); |
Jingyue Wu | 312fd02 | 2015-04-24 02:57:30 +0000 | [diff] [blame] | 1923 | aggBuffer->addSymbol(v, Cexpr->getOperand(0)); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1924 | aggBuffer->addZeros(4); |
| 1925 | break; |
| 1926 | } |
| 1927 | } |
Craig Topper | bdf39a4 | 2012-05-24 07:02:50 +0000 | [diff] [blame] | 1928 | llvm_unreachable("unsupported integer const type"); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1929 | } else if (ETy == Type::getInt64Ty(CPV->getContext())) { |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1930 | if (const ConstantInt *constInt = dyn_cast<ConstantInt>(CPV)) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1931 | long long int64 = (long long)(constInt->getZExtValue()); |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1932 | ConvertIntToBytes<>(ptr, int64); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1933 | aggBuffer->addBytes(ptr, 8, Bytes); |
| 1934 | break; |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1935 | } else if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) { |
David Majnemer | d536f23 | 2016-07-29 03:27:26 +0000 | [diff] [blame] | 1936 | if (const auto *constInt = dyn_cast_or_null<ConstantInt>( |
| 1937 | ConstantFoldConstant(Cexpr, DL))) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1938 | long long int64 = (long long)(constInt->getZExtValue()); |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1939 | ConvertIntToBytes<>(ptr, int64); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1940 | aggBuffer->addBytes(ptr, 8, Bytes); |
| 1941 | break; |
| 1942 | } |
| 1943 | if (Cexpr->getOpcode() == Instruction::PtrToInt) { |
| 1944 | Value *v = Cexpr->getOperand(0)->stripPointerCasts(); |
Jingyue Wu | 312fd02 | 2015-04-24 02:57:30 +0000 | [diff] [blame] | 1945 | aggBuffer->addSymbol(v, Cexpr->getOperand(0)); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1946 | aggBuffer->addZeros(8); |
| 1947 | break; |
| 1948 | } |
| 1949 | } |
| 1950 | llvm_unreachable("unsupported integer const type"); |
Craig Topper | bdf39a4 | 2012-05-24 07:02:50 +0000 | [diff] [blame] | 1951 | } else |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1952 | llvm_unreachable("unsupported integer const type"); |
| 1953 | break; |
| 1954 | } |
| 1955 | case Type::FloatTyID: |
| 1956 | case Type::DoubleTyID: { |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1957 | const ConstantFP *CFP = dyn_cast<ConstantFP>(CPV); |
Craig Topper | e3dcce9 | 2015-08-01 22:20:21 +0000 | [diff] [blame] | 1958 | Type *Ty = CFP->getType(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1959 | if (Ty == Type::getFloatTy(CPV->getContext())) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1960 | float float32 = (float) CFP->getValueAPF().convertToFloat(); |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1961 | ConvertFloatToBytes(ptr, float32); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1962 | aggBuffer->addBytes(ptr, 4, Bytes); |
| 1963 | } else if (Ty == Type::getDoubleTy(CPV->getContext())) { |
| 1964 | double float64 = CFP->getValueAPF().convertToDouble(); |
Samuel Antao | cd50135 | 2015-06-09 16:29:34 +0000 | [diff] [blame] | 1965 | ConvertDoubleToBytes(ptr, float64); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1966 | aggBuffer->addBytes(ptr, 8, Bytes); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1967 | } else { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1968 | llvm_unreachable("unsupported fp const type"); |
| 1969 | } |
| 1970 | break; |
| 1971 | } |
| 1972 | case Type::PointerTyID: { |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1973 | if (const GlobalValue *GVar = dyn_cast<GlobalValue>(CPV)) { |
Jingyue Wu | 312fd02 | 2015-04-24 02:57:30 +0000 | [diff] [blame] | 1974 | aggBuffer->addSymbol(GVar, GVar); |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 1975 | } else if (const ConstantExpr *Cexpr = dyn_cast<ConstantExpr>(CPV)) { |
| 1976 | const Value *v = Cexpr->stripPointerCasts(); |
Jingyue Wu | 312fd02 | 2015-04-24 02:57:30 +0000 | [diff] [blame] | 1977 | aggBuffer->addSymbol(v, Cexpr); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1978 | } |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1979 | unsigned int s = DL.getTypeAllocSize(CPV->getType()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1980 | aggBuffer->addZeros(s); |
| 1981 | break; |
| 1982 | } |
| 1983 | |
| 1984 | case Type::ArrayTyID: |
| 1985 | case Type::VectorTyID: |
| 1986 | case Type::StructTyID: { |
Duncan P. N. Exon Smith | 1de3c7e | 2016-04-05 21:10:45 +0000 | [diff] [blame] | 1987 | if (isa<ConstantAggregate>(CPV) || isa<ConstantDataSequential>(CPV)) { |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 1988 | int ElementSize = DL.getTypeAllocSize(CPV->getType()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1989 | bufferAggregateConstant(CPV, aggBuffer); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 1990 | if (Bytes > ElementSize) |
| 1991 | aggBuffer->addZeros(Bytes - ElementSize); |
| 1992 | } else if (isa<ConstantAggregateZero>(CPV)) |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 1993 | aggBuffer->addZeros(Bytes); |
| 1994 | else |
| 1995 | llvm_unreachable("Unexpected Constant type"); |
| 1996 | break; |
| 1997 | } |
| 1998 | |
| 1999 | default: |
| 2000 | llvm_unreachable("unsupported type"); |
| 2001 | } |
| 2002 | } |
| 2003 | |
Justin Holewinski | 01f89f0 | 2013-05-20 12:13:32 +0000 | [diff] [blame] | 2004 | void NVPTXAsmPrinter::bufferAggregateConstant(const Constant *CPV, |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2005 | AggBuffer *aggBuffer) { |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 2006 | const DataLayout &DL = getDataLayout(); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2007 | int Bytes; |
| 2008 | |
Justin Lebar | 1cf6bf4 | 2017-01-18 00:29:53 +0000 | [diff] [blame] | 2009 | // Integers of arbitrary width |
| 2010 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) { |
| 2011 | APInt Val = CI->getValue(); |
| 2012 | for (unsigned I = 0, E = DL.getTypeAllocSize(CPV->getType()); I < E; ++I) { |
| 2013 | uint8_t Byte = Val.getLoBits(8).getZExtValue(); |
| 2014 | aggBuffer->addBytes(&Byte, 1, 1); |
Craig Topper | fc947bc | 2017-04-18 17:14:21 +0000 | [diff] [blame] | 2015 | Val.lshrInPlace(8); |
Justin Lebar | 1cf6bf4 | 2017-01-18 00:29:53 +0000 | [diff] [blame] | 2016 | } |
| 2017 | return; |
| 2018 | } |
| 2019 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2020 | // Old constants |
| 2021 | if (isa<ConstantArray>(CPV) || isa<ConstantVector>(CPV)) { |
| 2022 | if (CPV->getNumOperands()) |
| 2023 | for (unsigned i = 0, e = CPV->getNumOperands(); i != e; ++i) |
| 2024 | bufferLEByte(cast<Constant>(CPV->getOperand(i)), 0, aggBuffer); |
| 2025 | return; |
| 2026 | } |
| 2027 | |
| 2028 | if (const ConstantDataSequential *CDS = |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2029 | dyn_cast<ConstantDataSequential>(CPV)) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2030 | if (CDS->getNumElements()) |
| 2031 | for (unsigned i = 0; i < CDS->getNumElements(); ++i) |
| 2032 | bufferLEByte(cast<Constant>(CDS->getElementAsConstant(i)), 0, |
| 2033 | aggBuffer); |
| 2034 | return; |
| 2035 | } |
| 2036 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2037 | if (isa<ConstantStruct>(CPV)) { |
| 2038 | if (CPV->getNumOperands()) { |
| 2039 | StructType *ST = cast<StructType>(CPV->getType()); |
| 2040 | for (unsigned i = 0, e = CPV->getNumOperands(); i != e; ++i) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2041 | if (i == (e - 1)) |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 2042 | Bytes = DL.getStructLayout(ST)->getElementOffset(0) + |
| 2043 | DL.getTypeAllocSize(ST) - |
| 2044 | DL.getStructLayout(ST)->getElementOffset(i); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2045 | else |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 2046 | Bytes = DL.getStructLayout(ST)->getElementOffset(i + 1) - |
| 2047 | DL.getStructLayout(ST)->getElementOffset(i); |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2048 | bufferLEByte(cast<Constant>(CPV->getOperand(i)), Bytes, aggBuffer); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2049 | } |
| 2050 | } |
| 2051 | return; |
| 2052 | } |
Craig Topper | bdf39a4 | 2012-05-24 07:02:50 +0000 | [diff] [blame] | 2053 | llvm_unreachable("unsupported constant type in printAggregateConstant()"); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2054 | } |
| 2055 | |
| 2056 | // buildTypeNameMap - Run through symbol table looking for type names. |
| 2057 | // |
| 2058 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2059 | bool NVPTXAsmPrinter::ignoreLoc(const MachineInstr &MI) { |
| 2060 | switch (MI.getOpcode()) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2061 | default: |
| 2062 | return false; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2063 | case NVPTX::CallArgBeginInst: |
| 2064 | case NVPTX::CallArgEndInst0: |
| 2065 | case NVPTX::CallArgEndInst1: |
| 2066 | case NVPTX::CallArgF32: |
| 2067 | case NVPTX::CallArgF64: |
| 2068 | case NVPTX::CallArgI16: |
| 2069 | case NVPTX::CallArgI32: |
| 2070 | case NVPTX::CallArgI32imm: |
| 2071 | case NVPTX::CallArgI64: |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2072 | case NVPTX::CallArgParam: |
| 2073 | case NVPTX::CallVoidInst: |
| 2074 | case NVPTX::CallVoidInstReg: |
| 2075 | case NVPTX::Callseq_End: |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2076 | case NVPTX::CallVoidInstReg64: |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2077 | case NVPTX::DeclareParamInst: |
| 2078 | case NVPTX::DeclareRetMemInst: |
| 2079 | case NVPTX::DeclareRetRegInst: |
| 2080 | case NVPTX::DeclareRetScalarInst: |
| 2081 | case NVPTX::DeclareScalarParamInst: |
| 2082 | case NVPTX::DeclareScalarRegInst: |
| 2083 | case NVPTX::StoreParamF32: |
| 2084 | case NVPTX::StoreParamF64: |
| 2085 | case NVPTX::StoreParamI16: |
| 2086 | case NVPTX::StoreParamI32: |
| 2087 | case NVPTX::StoreParamI64: |
| 2088 | case NVPTX::StoreParamI8: |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2089 | case NVPTX::StoreRetvalF32: |
| 2090 | case NVPTX::StoreRetvalF64: |
| 2091 | case NVPTX::StoreRetvalI16: |
| 2092 | case NVPTX::StoreRetvalI32: |
| 2093 | case NVPTX::StoreRetvalI64: |
| 2094 | case NVPTX::StoreRetvalI8: |
| 2095 | case NVPTX::LastCallArgF32: |
| 2096 | case NVPTX::LastCallArgF64: |
| 2097 | case NVPTX::LastCallArgI16: |
| 2098 | case NVPTX::LastCallArgI32: |
| 2099 | case NVPTX::LastCallArgI32imm: |
| 2100 | case NVPTX::LastCallArgI64: |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2101 | case NVPTX::LastCallArgParam: |
| 2102 | case NVPTX::LoadParamMemF32: |
| 2103 | case NVPTX::LoadParamMemF64: |
| 2104 | case NVPTX::LoadParamMemI16: |
| 2105 | case NVPTX::LoadParamMemI32: |
| 2106 | case NVPTX::LoadParamMemI64: |
| 2107 | case NVPTX::LoadParamMemI8: |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2108 | case NVPTX::PrototypeInst: |
| 2109 | case NVPTX::DBG_VALUE: |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2110 | return true; |
| 2111 | } |
| 2112 | return false; |
| 2113 | } |
| 2114 | |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2115 | /// lowerConstantForGV - Return an MCExpr for the given Constant. This is mostly |
| 2116 | /// a copy from AsmPrinter::lowerConstant, except customized to only handle |
| 2117 | /// expressions that are representable in PTX and create |
| 2118 | /// NVPTXGenericMCSymbolRefExpr nodes for addrspacecast instructions. |
| 2119 | const MCExpr * |
| 2120 | NVPTXAsmPrinter::lowerConstantForGV(const Constant *CV, bool ProcessingGeneric) { |
| 2121 | MCContext &Ctx = OutContext; |
| 2122 | |
| 2123 | if (CV->isNullValue() || isa<UndefValue>(CV)) |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 2124 | return MCConstantExpr::create(0, Ctx); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2125 | |
| 2126 | if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 2127 | return MCConstantExpr::create(CI->getZExtValue(), Ctx); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2128 | |
| 2129 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) { |
| 2130 | const MCSymbolRefExpr *Expr = |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 2131 | MCSymbolRefExpr::create(getSymbol(GV), Ctx); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2132 | if (ProcessingGeneric) { |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 2133 | return NVPTXGenericMCSymbolRefExpr::create(Expr, Ctx); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2134 | } else { |
| 2135 | return Expr; |
| 2136 | } |
| 2137 | } |
| 2138 | |
| 2139 | const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); |
| 2140 | if (!CE) { |
| 2141 | llvm_unreachable("Unknown constant value to lower!"); |
| 2142 | } |
| 2143 | |
| 2144 | switch (CE->getOpcode()) { |
| 2145 | default: |
| 2146 | // If the code isn't optimized, there may be outstanding folding |
| 2147 | // opportunities. Attempt to fold the expression using DataLayout as a |
| 2148 | // last resort before giving up. |
David Majnemer | d536f23 | 2016-07-29 03:27:26 +0000 | [diff] [blame] | 2149 | if (Constant *C = ConstantFoldConstant(CE, getDataLayout())) |
| 2150 | if (C && C != CE) |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2151 | return lowerConstantForGV(C, ProcessingGeneric); |
| 2152 | |
| 2153 | // Otherwise report the problem to the user. |
| 2154 | { |
| 2155 | std::string S; |
| 2156 | raw_string_ostream OS(S); |
| 2157 | OS << "Unsupported expression in static initializer: "; |
| 2158 | CE->printAsOperand(OS, /*PrintType=*/false, |
| 2159 | !MF ? nullptr : MF->getFunction()->getParent()); |
| 2160 | report_fatal_error(OS.str()); |
| 2161 | } |
| 2162 | |
| 2163 | case Instruction::AddrSpaceCast: { |
| 2164 | // Strip the addrspacecast and pass along the operand |
| 2165 | PointerType *DstTy = cast<PointerType>(CE->getType()); |
| 2166 | if (DstTy->getAddressSpace() == 0) { |
| 2167 | return lowerConstantForGV(cast<const Constant>(CE->getOperand(0)), true); |
| 2168 | } |
| 2169 | std::string S; |
| 2170 | raw_string_ostream OS(S); |
| 2171 | OS << "Unsupported expression in static initializer: "; |
| 2172 | CE->printAsOperand(OS, /*PrintType=*/ false, |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 2173 | !MF ? nullptr : MF->getFunction()->getParent()); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2174 | report_fatal_error(OS.str()); |
| 2175 | } |
| 2176 | |
| 2177 | case Instruction::GetElementPtr: { |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 2178 | const DataLayout &DL = getDataLayout(); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2179 | |
| 2180 | // Generate a symbolic expression for the byte address |
| 2181 | APInt OffsetAI(DL.getPointerTypeSizeInBits(CE->getType()), 0); |
| 2182 | cast<GEPOperator>(CE)->accumulateConstantOffset(DL, OffsetAI); |
| 2183 | |
| 2184 | const MCExpr *Base = lowerConstantForGV(CE->getOperand(0), |
| 2185 | ProcessingGeneric); |
| 2186 | if (!OffsetAI) |
| 2187 | return Base; |
| 2188 | |
| 2189 | int64_t Offset = OffsetAI.getSExtValue(); |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 2190 | return MCBinaryExpr::createAdd(Base, MCConstantExpr::create(Offset, Ctx), |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2191 | Ctx); |
| 2192 | } |
| 2193 | |
| 2194 | case Instruction::Trunc: |
| 2195 | // We emit the value and depend on the assembler to truncate the generated |
| 2196 | // expression properly. This is important for differences between |
| 2197 | // blockaddress labels. Since the two labels are in the same function, it |
| 2198 | // is reasonable to treat their delta as a 32-bit value. |
Justin Bogner | cd1d5aa | 2016-08-17 20:30:52 +0000 | [diff] [blame] | 2199 | LLVM_FALLTHROUGH; |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2200 | case Instruction::BitCast: |
| 2201 | return lowerConstantForGV(CE->getOperand(0), ProcessingGeneric); |
| 2202 | |
| 2203 | case Instruction::IntToPtr: { |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 2204 | const DataLayout &DL = getDataLayout(); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2205 | |
| 2206 | // Handle casts to pointers by changing them into casts to the appropriate |
| 2207 | // integer type. This promotes constant folding and simplifies this code. |
| 2208 | Constant *Op = CE->getOperand(0); |
| 2209 | Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), |
| 2210 | false/*ZExt*/); |
| 2211 | return lowerConstantForGV(Op, ProcessingGeneric); |
| 2212 | } |
| 2213 | |
| 2214 | case Instruction::PtrToInt: { |
Mehdi Amini | bd7287e | 2015-07-16 06:11:10 +0000 | [diff] [blame] | 2215 | const DataLayout &DL = getDataLayout(); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2216 | |
| 2217 | // Support only foldable casts to/from pointers that can be eliminated by |
| 2218 | // changing the pointer to the appropriately sized integer type. |
| 2219 | Constant *Op = CE->getOperand(0); |
| 2220 | Type *Ty = CE->getType(); |
| 2221 | |
| 2222 | const MCExpr *OpExpr = lowerConstantForGV(Op, ProcessingGeneric); |
| 2223 | |
| 2224 | // We can emit the pointer value into this slot if the slot is an |
| 2225 | // integer slot equal to the size of the pointer. |
| 2226 | if (DL.getTypeAllocSize(Ty) == DL.getTypeAllocSize(Op->getType())) |
| 2227 | return OpExpr; |
| 2228 | |
| 2229 | // Otherwise the pointer is smaller than the resultant integer, mask off |
| 2230 | // the high bits so we are sure to get a proper truncation if the input is |
| 2231 | // a constant expr. |
| 2232 | unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType()); |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 2233 | const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx); |
| 2234 | return MCBinaryExpr::createAnd(OpExpr, MaskExpr, Ctx); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2235 | } |
| 2236 | |
| 2237 | // The MC library also has a right-shift operator, but it isn't consistently |
| 2238 | // signed or unsigned between different targets. |
| 2239 | case Instruction::Add: { |
| 2240 | const MCExpr *LHS = lowerConstantForGV(CE->getOperand(0), ProcessingGeneric); |
| 2241 | const MCExpr *RHS = lowerConstantForGV(CE->getOperand(1), ProcessingGeneric); |
| 2242 | switch (CE->getOpcode()) { |
| 2243 | default: llvm_unreachable("Unknown binary operator constant cast expr"); |
Jim Grosbach | 13760bd | 2015-05-30 01:25:56 +0000 | [diff] [blame] | 2244 | case Instruction::Add: return MCBinaryExpr::createAdd(LHS, RHS, Ctx); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2245 | } |
| 2246 | } |
| 2247 | } |
| 2248 | } |
| 2249 | |
| 2250 | // Copy of MCExpr::print customized for NVPTX |
| 2251 | void NVPTXAsmPrinter::printMCExpr(const MCExpr &Expr, raw_ostream &OS) { |
| 2252 | switch (Expr.getKind()) { |
| 2253 | case MCExpr::Target: |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 2254 | return cast<MCTargetExpr>(&Expr)->printImpl(OS, MAI); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2255 | case MCExpr::Constant: |
| 2256 | OS << cast<MCConstantExpr>(Expr).getValue(); |
| 2257 | return; |
| 2258 | |
| 2259 | case MCExpr::SymbolRef: { |
| 2260 | const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(Expr); |
| 2261 | const MCSymbol &Sym = SRE.getSymbol(); |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 2262 | Sym.print(OS, MAI); |
Justin Holewinski | 3d2a976 | 2015-04-28 17:18:30 +0000 | [diff] [blame] | 2263 | return; |
| 2264 | } |
| 2265 | |
| 2266 | case MCExpr::Unary: { |
| 2267 | const MCUnaryExpr &UE = cast<MCUnaryExpr>(Expr); |
| 2268 | switch (UE.getOpcode()) { |
| 2269 | case MCUnaryExpr::LNot: OS << '!'; break; |
| 2270 | case MCUnaryExpr::Minus: OS << '-'; break; |
| 2271 | case MCUnaryExpr::Not: OS << '~'; break; |
| 2272 | case MCUnaryExpr::Plus: OS << '+'; break; |
| 2273 | } |
| 2274 | printMCExpr(*UE.getSubExpr(), OS); |
| 2275 | return; |
| 2276 | } |
| 2277 | |
| 2278 | case MCExpr::Binary: { |
| 2279 | const MCBinaryExpr &BE = cast<MCBinaryExpr>(Expr); |
| 2280 | |
| 2281 | // Only print parens around the LHS if it is non-trivial. |
| 2282 | if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS()) || |
| 2283 | isa<NVPTXGenericMCSymbolRefExpr>(BE.getLHS())) { |
| 2284 | printMCExpr(*BE.getLHS(), OS); |
| 2285 | } else { |
| 2286 | OS << '('; |
| 2287 | printMCExpr(*BE.getLHS(), OS); |
| 2288 | OS<< ')'; |
| 2289 | } |
| 2290 | |
| 2291 | switch (BE.getOpcode()) { |
| 2292 | case MCBinaryExpr::Add: |
| 2293 | // Print "X-42" instead of "X+-42". |
| 2294 | if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) { |
| 2295 | if (RHSC->getValue() < 0) { |
| 2296 | OS << RHSC->getValue(); |
| 2297 | return; |
| 2298 | } |
| 2299 | } |
| 2300 | |
| 2301 | OS << '+'; |
| 2302 | break; |
| 2303 | default: llvm_unreachable("Unhandled binary operator"); |
| 2304 | } |
| 2305 | |
| 2306 | // Only print parens around the LHS if it is non-trivial. |
| 2307 | if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) { |
| 2308 | printMCExpr(*BE.getRHS(), OS); |
| 2309 | } else { |
| 2310 | OS << '('; |
| 2311 | printMCExpr(*BE.getRHS(), OS); |
| 2312 | OS << ')'; |
| 2313 | } |
| 2314 | return; |
| 2315 | } |
| 2316 | } |
| 2317 | |
| 2318 | llvm_unreachable("Invalid expression kind!"); |
| 2319 | } |
| 2320 | |
Justin Holewinski | aaa8b6e | 2013-08-24 01:17:23 +0000 | [diff] [blame] | 2321 | /// PrintAsmOperand - Print out an operand for an inline asm expression. |
| 2322 | /// |
| 2323 | bool NVPTXAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo, |
| 2324 | unsigned AsmVariant, |
| 2325 | const char *ExtraCode, raw_ostream &O) { |
| 2326 | if (ExtraCode && ExtraCode[0]) { |
| 2327 | if (ExtraCode[1] != 0) |
| 2328 | return true; // Unknown modifier. |
| 2329 | |
| 2330 | switch (ExtraCode[0]) { |
| 2331 | default: |
| 2332 | // See if this is a generic print operand |
| 2333 | return AsmPrinter::PrintAsmOperand(MI, OpNo, AsmVariant, ExtraCode, O); |
| 2334 | case 'r': |
| 2335 | break; |
| 2336 | } |
| 2337 | } |
| 2338 | |
| 2339 | printOperand(MI, OpNo, O); |
| 2340 | |
| 2341 | return false; |
| 2342 | } |
| 2343 | |
| 2344 | bool NVPTXAsmPrinter::PrintAsmMemoryOperand( |
| 2345 | const MachineInstr *MI, unsigned OpNo, unsigned AsmVariant, |
| 2346 | const char *ExtraCode, raw_ostream &O) { |
| 2347 | if (ExtraCode && ExtraCode[0]) |
| 2348 | return true; // Unknown modifier |
| 2349 | |
| 2350 | O << '['; |
| 2351 | printMemOperand(MI, OpNo, O); |
| 2352 | O << ']'; |
| 2353 | |
| 2354 | return false; |
| 2355 | } |
| 2356 | |
| 2357 | void NVPTXAsmPrinter::printOperand(const MachineInstr *MI, int opNum, |
| 2358 | raw_ostream &O, const char *Modifier) { |
| 2359 | const MachineOperand &MO = MI->getOperand(opNum); |
| 2360 | switch (MO.getType()) { |
| 2361 | case MachineOperand::MO_Register: |
| 2362 | if (TargetRegisterInfo::isPhysicalRegister(MO.getReg())) { |
| 2363 | if (MO.getReg() == NVPTX::VRDepot) |
| 2364 | O << DEPOTNAME << getFunctionNumber(); |
| 2365 | else |
| 2366 | O << NVPTXInstPrinter::getRegisterName(MO.getReg()); |
| 2367 | } else { |
Justin Holewinski | 660597d | 2013-10-11 12:39:36 +0000 | [diff] [blame] | 2368 | emitVirtualRegister(MO.getReg(), O); |
Justin Holewinski | aaa8b6e | 2013-08-24 01:17:23 +0000 | [diff] [blame] | 2369 | } |
| 2370 | return; |
| 2371 | |
| 2372 | case MachineOperand::MO_Immediate: |
| 2373 | if (!Modifier) |
| 2374 | O << MO.getImm(); |
| 2375 | else if (strstr(Modifier, "vec") == Modifier) |
| 2376 | printVecModifiedImmediate(MO, Modifier, O); |
| 2377 | else |
| 2378 | llvm_unreachable( |
| 2379 | "Don't know how to handle modifier on immediate operand"); |
| 2380 | return; |
| 2381 | |
| 2382 | case MachineOperand::MO_FPImmediate: |
| 2383 | printFPConstant(MO.getFPImm(), O); |
| 2384 | break; |
| 2385 | |
| 2386 | case MachineOperand::MO_GlobalAddress: |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 2387 | getSymbol(MO.getGlobal())->print(O, MAI); |
Justin Holewinski | aaa8b6e | 2013-08-24 01:17:23 +0000 | [diff] [blame] | 2388 | break; |
| 2389 | |
Justin Holewinski | aaa8b6e | 2013-08-24 01:17:23 +0000 | [diff] [blame] | 2390 | case MachineOperand::MO_MachineBasicBlock: |
Matt Arsenault | 8b64355 | 2015-06-09 00:31:39 +0000 | [diff] [blame] | 2391 | MO.getMBB()->getSymbol()->print(O, MAI); |
Justin Holewinski | aaa8b6e | 2013-08-24 01:17:23 +0000 | [diff] [blame] | 2392 | return; |
| 2393 | |
| 2394 | default: |
| 2395 | llvm_unreachable("Operand type not supported."); |
| 2396 | } |
| 2397 | } |
| 2398 | |
| 2399 | void NVPTXAsmPrinter::printMemOperand(const MachineInstr *MI, int opNum, |
| 2400 | raw_ostream &O, const char *Modifier) { |
| 2401 | printOperand(MI, opNum, O); |
| 2402 | |
Eugene Zelenko | c9f1f6b | 2017-01-09 22:16:51 +0000 | [diff] [blame] | 2403 | if (Modifier && strcmp(Modifier, "add") == 0) { |
Justin Holewinski | aaa8b6e | 2013-08-24 01:17:23 +0000 | [diff] [blame] | 2404 | O << ", "; |
| 2405 | printOperand(MI, opNum + 1, O); |
| 2406 | } else { |
| 2407 | if (MI->getOperand(opNum + 1).isImm() && |
| 2408 | MI->getOperand(opNum + 1).getImm() == 0) |
| 2409 | return; // don't print ',0' or '+0' |
| 2410 | O << "+"; |
| 2411 | printOperand(MI, opNum + 1, O); |
| 2412 | } |
| 2413 | } |
| 2414 | |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2415 | void NVPTXAsmPrinter::emitSrcInText(StringRef filename, unsigned line) { |
| 2416 | std::stringstream temp; |
Yaron Keren | 075759a | 2015-03-30 15:42:36 +0000 | [diff] [blame] | 2417 | LineReader *reader = this->getReader(filename); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2418 | temp << "\n//"; |
| 2419 | temp << filename.str(); |
| 2420 | temp << ":"; |
| 2421 | temp << line; |
| 2422 | temp << " "; |
| 2423 | temp << reader->readLine(line); |
| 2424 | temp << "\n"; |
Lang Hames | 9ff69c8 | 2015-04-24 19:11:51 +0000 | [diff] [blame] | 2425 | this->OutStreamer->EmitRawText(temp.str()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2426 | } |
| 2427 | |
Benjamin Kramer | c321e53 | 2016-06-08 19:09:22 +0000 | [diff] [blame] | 2428 | LineReader *NVPTXAsmPrinter::getReader(const std::string &filename) { |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2429 | if (!reader) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2430 | reader = new LineReader(filename); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2431 | } |
| 2432 | |
| 2433 | if (reader->fileName() != filename) { |
| 2434 | delete reader; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2435 | reader = new LineReader(filename); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2436 | } |
| 2437 | |
| 2438 | return reader; |
| 2439 | } |
| 2440 | |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2441 | std::string LineReader::readLine(unsigned lineNum) { |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2442 | if (lineNum < theCurLine) { |
| 2443 | theCurLine = 0; |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2444 | fstr.seekg(0, std::ios::beg); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2445 | } |
| 2446 | while (theCurLine < lineNum) { |
Justin Holewinski | 0497ab1 | 2013-03-30 14:29:21 +0000 | [diff] [blame] | 2447 | fstr.getline(buff, 500); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2448 | theCurLine++; |
| 2449 | } |
| 2450 | return buff; |
| 2451 | } |
| 2452 | |
| 2453 | // Force static initialization. |
| 2454 | extern "C" void LLVMInitializeNVPTXAsmPrinter() { |
Mehdi Amini | f42454b | 2016-10-09 23:00:34 +0000 | [diff] [blame] | 2455 | RegisterAsmPrinter<NVPTXAsmPrinter> X(getTheNVPTXTarget32()); |
| 2456 | RegisterAsmPrinter<NVPTXAsmPrinter> Y(getTheNVPTXTarget64()); |
Justin Holewinski | ae556d3 | 2012-05-04 20:18:50 +0000 | [diff] [blame] | 2457 | } |