blob: 0ad62ce39b0d846cf98516eb593217f6abc4bdfb [file] [log] [blame]
Justin Holewinski21fdcb02013-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//
10// This pass replaces occurences of __nvvm_reflect("string") with an
11// integer based on -nvvm-reflect-list string=<int> option given to this pass.
Justin Holewinskid4ab1922013-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 Holewinski21fdcb02013-03-30 14:29:25 +000014//
15//===----------------------------------------------------------------------===//
16
Justin Holewinskid4ab1922013-04-02 12:37:11 +000017#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/SmallVector.h"
Justin Holewinski21fdcb02013-03-30 14:29:25 +000019#include "llvm/ADT/StringMap.h"
20#include "llvm/Pass.h"
21#include "llvm/IR/Function.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/Type.h"
24#include "llvm/IR/DerivedTypes.h"
25#include "llvm/IR/Instructions.h"
26#include "llvm/IR/Constants.h"
27#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/raw_os_ostream.h"
30#include "llvm/Transforms/Scalar.h"
31#include <map>
32#include <sstream>
33#include <string>
34#include <vector>
35
36#define NVVM_REFLECT_FUNCTION "__nvvm_reflect"
37
38using namespace llvm;
39
40namespace llvm { void initializeNVVMReflectPass(PassRegistry &); }
41
42namespace {
43class LLVM_LIBRARY_VISIBILITY NVVMReflect : public ModulePass {
44private:
Justin Holewinski21fdcb02013-03-30 14:29:25 +000045 StringMap<int> VarMap;
Justin Holewinskid4ab1922013-04-02 12:37:11 +000046 typedef DenseMap<std::string, int>::iterator VarMapIter;
47 Function *ReflectFunction;
Justin Holewinski21fdcb02013-03-30 14:29:25 +000048
49public:
50 static char ID;
51 NVVMReflect() : ModulePass(ID) {
52 VarMap.clear();
Justin Holewinskid4ab1922013-04-02 12:37:11 +000053 ReflectFunction = 0;
Justin Holewinski21fdcb02013-03-30 14:29:25 +000054 }
55
56 void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); }
57 virtual bool runOnModule(Module &);
58
59 void setVarMap();
60};
61}
62
63static cl::opt<bool>
64NVVMReflectEnabled("nvvm-reflect-enable", cl::init(true),
65 cl::desc("NVVM reflection, enabled by default"));
66
67char NVVMReflect::ID = 0;
68INITIALIZE_PASS(NVVMReflect, "nvvm-reflect",
69 "Replace occurences of __nvvm_reflect() calls with 0/1", false,
70 false)
71
72static cl::list<std::string>
Justin Holewinskid4ab1922013-04-02 12:37:11 +000073ReflectList("nvvm-reflect-list", cl::value_desc("name=<int>"),
74 cl::desc("A list of string=num assignments"),
Justin Holewinski21fdcb02013-03-30 14:29:25 +000075 cl::ValueRequired);
76
Justin Holewinski21fdcb02013-03-30 14:29:25 +000077/// The command line can look as follows :
Justin Holewinskid4ab1922013-04-02 12:37:11 +000078/// -nvvm-reflect-list a=1,b=2 -nvvm-reflect-list c=3,d=0 -R e=2
Justin Holewinski21fdcb02013-03-30 14:29:25 +000079/// The strings "a=1,b=2", "c=3,d=0", "e=2" are available in the
80/// ReflectList vector. First, each of ReflectList[i] is 'split'
81/// using "," as the delimiter. Then each of this part is split
82/// using "=" as the delimiter.
83void NVVMReflect::setVarMap() {
84 for (unsigned i = 0, e = ReflectList.size(); i != e; ++i) {
Justin Holewinskid4ab1922013-04-02 12:37:11 +000085 DEBUG(dbgs() << "Option : " << ReflectList[i] << "\n");
86 SmallVector<StringRef, 4> NameValList;
87 StringRef(ReflectList[i]).split(NameValList, ",");
88 for (unsigned j = 0, ej = NameValList.size(); j != ej; ++j) {
89 SmallVector<StringRef, 2> NameValPair;
90 NameValList[j].split(NameValPair, "=");
91 assert(NameValPair.size() == 2 && "name=val expected");
92 std::stringstream ValStream(NameValPair[1]);
93 int Val;
94 ValStream >> Val;
95 assert((!(ValStream.fail())) && "integer value expected");
96 VarMap[NameValPair[0]] = Val;
Justin Holewinski21fdcb02013-03-30 14:29:25 +000097 }
98 }
99}
100
101bool NVVMReflect::runOnModule(Module &M) {
102 if (!NVVMReflectEnabled)
103 return false;
104
105 setVarMap();
106
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000107 ReflectFunction = M.getFunction(NVVM_REFLECT_FUNCTION);
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000108
109 // If reflect function is not used, then there will be
110 // no entry in the module.
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000111 if (ReflectFunction == 0)
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000112 return false;
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000113
114 // Validate _reflect function
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000115 assert(ReflectFunction->isDeclaration() &&
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000116 "_reflect function should not have a body");
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000117 assert(ReflectFunction->getReturnType()->isIntegerTy() &&
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000118 "_reflect's return type should be integer");
119
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000120 std::vector<Instruction *> ToRemove;
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000121
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000122 // Go through the uses of ReflectFunction in this Function.
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000123 // Each of them should a CallInst with a ConstantArray argument.
124 // First validate that. If the c-string corresponding to the
125 // ConstantArray can be found successfully, see if it can be
126 // found in VarMap. If so, replace the uses of CallInst with the
127 // value found in VarMap. If not, replace the use with value 0.
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000128 for (Value::use_iterator I = ReflectFunction->use_begin(),
129 E = ReflectFunction->use_end();
130 I != E; ++I) {
131 assert(isa<CallInst>(*I) && "Only a call instruction can use _reflect");
132 CallInst *Reflect = cast<CallInst>(*I);
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000133
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000134 assert((Reflect->getNumOperands() == 2) &&
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000135 "Only one operand expect for _reflect function");
136 // In cuda, we will have an extra constant-to-generic conversion of
137 // the string.
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000138 const Value *conv = Reflect->getArgOperand(0);
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000139 assert(isa<CallInst>(conv) && "Expected a const-to-gen conversion");
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000140 const CallInst *ConvCall = cast<CallInst>(conv);
141 const Value *str = ConvCall->getArgOperand(0);
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000142 assert(isa<ConstantExpr>(str) &&
143 "Format of _reflect function not recognized");
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000144 const ConstantExpr *GEP = cast<ConstantExpr>(str);
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000145
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000146 const Value *Sym = GEP->getOperand(0);
147 assert(isa<Constant>(Sym) && "Format of _reflect function not recognized");
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000148
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000149 const Constant *SymStr = cast<Constant>(Sym);
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000150
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000151 assert(isa<ConstantDataSequential>(SymStr->getOperand(0)) &&
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000152 "Format of _reflect function not recognized");
153
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000154 assert(cast<ConstantDataSequential>(SymStr->getOperand(0))->isCString() &&
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000155 "Format of _reflect function not recognized");
156
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000157 std::string ReflectArg =
158 cast<ConstantDataSequential>(SymStr->getOperand(0))->getAsString();
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000159
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000160 ReflectArg = ReflectArg.substr(0, ReflectArg.size() - 1);
161 DEBUG(dbgs() << "Arg of _reflect : " << ReflectArg << "\n");
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000162
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000163 int ReflectVal = 0; // The default value is 0
164 if (VarMap.find(ReflectArg) != VarMap.end()) {
165 ReflectVal = VarMap[ReflectArg];
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000166 }
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000167 Reflect->replaceAllUsesWith(
168 ConstantInt::get(Reflect->getType(), ReflectVal));
169 ToRemove.push_back(Reflect);
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000170 }
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000171 if (ToRemove.size() == 0)
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000172 return false;
173
Justin Holewinskid4ab1922013-04-02 12:37:11 +0000174 for (unsigned i = 0, e = ToRemove.size(); i != e; ++i)
175 ToRemove[i]->eraseFromParent();
Justin Holewinski21fdcb02013-03-30 14:29:25 +0000176 return true;
177}