blob: a8d6b95ae4ec6619d1ee63659ba939f0729abe8a [file] [log] [blame]
Justin Holewinskib94bd052013-03-30 14:29:25 +00001//===- NVVMReflect.cpp - NVVM Emulate conditional compilation -------------===//
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//
Alp Tokercb402912014-01-24 17:20:08 +000010// This pass replaces occurrences of __nvvm_reflect("string") with an
Justin Holewinskib94bd052013-03-30 14:29:25 +000011// integer based on -nvvm-reflect-list string=<int> option given to this pass.
Justin Holewinskia922c7e2013-04-02 12:37:11 +000012// If an undefined string value is seen in a call to __nvvm_reflect("string"),
13// a default value of 0 will be used.
Justin Holewinskib94bd052013-03-30 14:29:25 +000014//
15//===----------------------------------------------------------------------===//
16
Justin Holewinski18f3a1f2013-05-20 16:42:16 +000017#include "NVPTX.h"
Justin Holewinskia922c7e2013-04-02 12:37:11 +000018#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/SmallVector.h"
Justin Holewinskib94bd052013-03-30 14:29:25 +000020#include "llvm/ADT/StringMap.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000021#include "llvm/IR/Constants.h"
22#include "llvm/IR/DerivedTypes.h"
Justin Holewinskib94bd052013-03-30 14:29:25 +000023#include "llvm/IR/Function.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000024#include "llvm/IR/Instructions.h"
Justin Holewinskia0d531f2014-06-27 18:36:11 +000025#include "llvm/IR/Intrinsics.h"
Justin Holewinskib94bd052013-03-30 14:29:25 +000026#include "llvm/IR/Module.h"
27#include "llvm/IR/Type.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000028#include "llvm/Pass.h"
Justin Holewinskib94bd052013-03-30 14:29:25 +000029#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/Support/raw_os_ostream.h"
32#include "llvm/Transforms/Scalar.h"
33#include <map>
34#include <sstream>
35#include <string>
36#include <vector>
37
38#define NVVM_REFLECT_FUNCTION "__nvvm_reflect"
39
40using namespace llvm;
41
Chandler Carruthe96dd892014-04-21 22:55:11 +000042#define DEBUG_TYPE "nvptx-reflect"
43
Justin Holewinskib94bd052013-03-30 14:29:25 +000044namespace llvm { void initializeNVVMReflectPass(PassRegistry &); }
45
46namespace {
Justin Holewinski18f3a1f2013-05-20 16:42:16 +000047class NVVMReflect : public ModulePass {
Justin Holewinskib94bd052013-03-30 14:29:25 +000048private:
Justin Holewinskib94bd052013-03-30 14:29:25 +000049 StringMap<int> VarMap;
Justin Holewinskia922c7e2013-04-02 12:37:11 +000050 typedef DenseMap<std::string, int>::iterator VarMapIter;
Justin Holewinskib94bd052013-03-30 14:29:25 +000051
52public:
53 static char ID;
Justin Holewinskia0d531f2014-06-27 18:36:11 +000054 NVVMReflect() : ModulePass(ID) {
Justin Holewinski18f3a1f2013-05-20 16:42:16 +000055 initializeNVVMReflectPass(*PassRegistry::getPassRegistry());
Justin Holewinskib94bd052013-03-30 14:29:25 +000056 VarMap.clear();
Justin Holewinski18f3a1f2013-05-20 16:42:16 +000057 }
58
59 NVVMReflect(const StringMap<int> &Mapping)
Justin Holewinskia0d531f2014-06-27 18:36:11 +000060 : ModulePass(ID) {
Justin Holewinski18f3a1f2013-05-20 16:42:16 +000061 initializeNVVMReflectPass(*PassRegistry::getPassRegistry());
62 for (StringMap<int>::const_iterator I = Mapping.begin(), E = Mapping.end();
63 I != E; ++I) {
64 VarMap[(*I).getKey()] = (*I).getValue();
65 }
Justin Holewinskib94bd052013-03-30 14:29:25 +000066 }
67
Craig Topper2865c982014-04-29 07:57:44 +000068 void getAnalysisUsage(AnalysisUsage &AU) const override {
69 AU.setPreservesAll();
70 }
71 bool runOnModule(Module &) override;
Justin Holewinskib94bd052013-03-30 14:29:25 +000072
Justin Holewinskia0d531f2014-06-27 18:36:11 +000073private:
74 bool handleFunction(Function *ReflectFunction);
Justin Holewinskib94bd052013-03-30 14:29:25 +000075 void setVarMap();
76};
77}
78
Justin Holewinski18f3a1f2013-05-20 16:42:16 +000079ModulePass *llvm::createNVVMReflectPass() {
80 return new NVVMReflect();
81}
82
83ModulePass *llvm::createNVVMReflectPass(const StringMap<int>& Mapping) {
84 return new NVVMReflect(Mapping);
85}
86
Justin Holewinskib94bd052013-03-30 14:29:25 +000087static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000088NVVMReflectEnabled("nvvm-reflect-enable", cl::init(true), cl::Hidden,
Justin Holewinskib94bd052013-03-30 14:29:25 +000089 cl::desc("NVVM reflection, enabled by default"));
90
91char NVVMReflect::ID = 0;
92INITIALIZE_PASS(NVVMReflect, "nvvm-reflect",
Alp Tokercb402912014-01-24 17:20:08 +000093 "Replace occurrences of __nvvm_reflect() calls with 0/1", false,
Justin Holewinskib94bd052013-03-30 14:29:25 +000094 false)
95
96static cl::list<std::string>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000097ReflectList("nvvm-reflect-list", cl::value_desc("name=<int>"), cl::Hidden,
Justin Holewinskia922c7e2013-04-02 12:37:11 +000098 cl::desc("A list of string=num assignments"),
Justin Holewinskib94bd052013-03-30 14:29:25 +000099 cl::ValueRequired);
100
Justin Holewinskib94bd052013-03-30 14:29:25 +0000101/// The command line can look as follows :
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000102/// -nvvm-reflect-list a=1,b=2 -nvvm-reflect-list c=3,d=0 -R e=2
Justin Holewinskib94bd052013-03-30 14:29:25 +0000103/// The strings "a=1,b=2", "c=3,d=0", "e=2" are available in the
104/// ReflectList vector. First, each of ReflectList[i] is 'split'
105/// using "," as the delimiter. Then each of this part is split
106/// using "=" as the delimiter.
107void NVVMReflect::setVarMap() {
108 for (unsigned i = 0, e = ReflectList.size(); i != e; ++i) {
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000109 DEBUG(dbgs() << "Option : " << ReflectList[i] << "\n");
110 SmallVector<StringRef, 4> NameValList;
111 StringRef(ReflectList[i]).split(NameValList, ",");
112 for (unsigned j = 0, ej = NameValList.size(); j != ej; ++j) {
113 SmallVector<StringRef, 2> NameValPair;
114 NameValList[j].split(NameValPair, "=");
115 assert(NameValPair.size() == 2 && "name=val expected");
116 std::stringstream ValStream(NameValPair[1]);
117 int Val;
118 ValStream >> Val;
119 assert((!(ValStream.fail())) && "integer value expected");
120 VarMap[NameValPair[0]] = Val;
Justin Holewinskib94bd052013-03-30 14:29:25 +0000121 }
122 }
123}
124
Justin Holewinskia0d531f2014-06-27 18:36:11 +0000125bool NVVMReflect::handleFunction(Function *ReflectFunction) {
Justin Holewinskib94bd052013-03-30 14:29:25 +0000126 // Validate _reflect function
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000127 assert(ReflectFunction->isDeclaration() &&
Justin Holewinskib94bd052013-03-30 14:29:25 +0000128 "_reflect function should not have a body");
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000129 assert(ReflectFunction->getReturnType()->isIntegerTy() &&
Justin Holewinskib94bd052013-03-30 14:29:25 +0000130 "_reflect's return type should be integer");
131
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000132 std::vector<Instruction *> ToRemove;
Justin Holewinskib94bd052013-03-30 14:29:25 +0000133
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000134 // Go through the uses of ReflectFunction in this Function.
Justin Holewinskib94bd052013-03-30 14:29:25 +0000135 // Each of them should a CallInst with a ConstantArray argument.
136 // First validate that. If the c-string corresponding to the
137 // ConstantArray can be found successfully, see if it can be
138 // found in VarMap. If so, replace the uses of CallInst with the
139 // value found in VarMap. If not, replace the use with value 0.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000140 for (User *U : ReflectFunction->users()) {
141 assert(isa<CallInst>(U) && "Only a call instruction can use _reflect");
142 CallInst *Reflect = cast<CallInst>(U);
Justin Holewinskib94bd052013-03-30 14:29:25 +0000143
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000144 assert((Reflect->getNumOperands() == 2) &&
Justin Holewinskib94bd052013-03-30 14:29:25 +0000145 "Only one operand expect for _reflect function");
146 // In cuda, we will have an extra constant-to-generic conversion of
147 // the string.
Justin Holewinskia0d531f2014-06-27 18:36:11 +0000148 const Value *Str = Reflect->getArgOperand(0);
149 if (isa<CallInst>(Str)) {
150 // CUDA path
151 const CallInst *ConvCall = cast<CallInst>(Str);
152 Str = ConvCall->getArgOperand(0);
153 }
154 assert(isa<ConstantExpr>(Str) &&
Justin Holewinskib94bd052013-03-30 14:29:25 +0000155 "Format of _reflect function not recognized");
Justin Holewinskia0d531f2014-06-27 18:36:11 +0000156 const ConstantExpr *GEP = cast<ConstantExpr>(Str);
Justin Holewinskib94bd052013-03-30 14:29:25 +0000157
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000158 const Value *Sym = GEP->getOperand(0);
159 assert(isa<Constant>(Sym) && "Format of _reflect function not recognized");
Justin Holewinskib94bd052013-03-30 14:29:25 +0000160
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000161 const Constant *SymStr = cast<Constant>(Sym);
Justin Holewinskib94bd052013-03-30 14:29:25 +0000162
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000163 assert(isa<ConstantDataSequential>(SymStr->getOperand(0)) &&
Justin Holewinskib94bd052013-03-30 14:29:25 +0000164 "Format of _reflect function not recognized");
165
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000166 assert(cast<ConstantDataSequential>(SymStr->getOperand(0))->isCString() &&
Justin Holewinskib94bd052013-03-30 14:29:25 +0000167 "Format of _reflect function not recognized");
168
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000169 std::string ReflectArg =
170 cast<ConstantDataSequential>(SymStr->getOperand(0))->getAsString();
Justin Holewinskib94bd052013-03-30 14:29:25 +0000171
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000172 ReflectArg = ReflectArg.substr(0, ReflectArg.size() - 1);
173 DEBUG(dbgs() << "Arg of _reflect : " << ReflectArg << "\n");
Justin Holewinskib94bd052013-03-30 14:29:25 +0000174
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000175 int ReflectVal = 0; // The default value is 0
176 if (VarMap.find(ReflectArg) != VarMap.end()) {
177 ReflectVal = VarMap[ReflectArg];
Justin Holewinskib94bd052013-03-30 14:29:25 +0000178 }
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000179 Reflect->replaceAllUsesWith(
180 ConstantInt::get(Reflect->getType(), ReflectVal));
181 ToRemove.push_back(Reflect);
Justin Holewinskib94bd052013-03-30 14:29:25 +0000182 }
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000183 if (ToRemove.size() == 0)
Justin Holewinskib94bd052013-03-30 14:29:25 +0000184 return false;
185
Justin Holewinskia922c7e2013-04-02 12:37:11 +0000186 for (unsigned i = 0, e = ToRemove.size(); i != e; ++i)
187 ToRemove[i]->eraseFromParent();
Justin Holewinskib94bd052013-03-30 14:29:25 +0000188 return true;
189}
Justin Holewinskia0d531f2014-06-27 18:36:11 +0000190
191bool NVVMReflect::runOnModule(Module &M) {
192 if (!NVVMReflectEnabled)
193 return false;
194
195 setVarMap();
196
197
198 bool Res = false;
199 std::string Name;
200 Type *Tys[1];
201 Type *I8Ty = Type::getInt8Ty(M.getContext());
202 Function *ReflectFunction;
203
204 // Check for standard overloaded versions of llvm.nvvm.reflect
205
206 for (unsigned i = 0; i != 5; ++i) {
207 Tys[0] = PointerType::get(I8Ty, i);
208 Name = Intrinsic::getName(Intrinsic::nvvm_reflect, Tys);
209 ReflectFunction = M.getFunction(Name);
210 if(ReflectFunction != 0) {
211 Res |= handleFunction(ReflectFunction);
212 }
213 }
214
215 ReflectFunction = M.getFunction(NVVM_REFLECT_FUNCTION);
216 // If reflect function is not used, then there will be
217 // no entry in the module.
218 if (ReflectFunction != 0)
219 Res |= handleFunction(ReflectFunction);
220
221 return Res;
222}