diff options
Diffstat (limited to 'contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp')
-rw-r--r-- | contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp | 247 |
1 files changed, 61 insertions, 186 deletions
diff --git a/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp b/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp index 835e4b4..e464f47 100644 --- a/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp +++ b/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp @@ -26,16 +26,18 @@ #include <string> #include <vector> -using namespace llvm; +namespace llvm { +namespace { typedef std::map<std::string, std::vector<unsigned> > key_val_pair_t; typedef std::map<const GlobalValue *, key_val_pair_t> global_val_annot_t; typedef std::map<const Module *, global_val_annot_t> per_module_annot_t; +} // anonymous namespace -ManagedStatic<per_module_annot_t> annotationCache; +static ManagedStatic<per_module_annot_t> annotationCache; static sys::Mutex Lock; -void llvm::clearAnnotationCache(const llvm::Module *Mod) { +void clearAnnotationCache(const Module *Mod) { MutexGuard Guard(Lock); annotationCache->erase(Mod); } @@ -68,7 +70,7 @@ static void cacheAnnotationFromMD(const MDNode *md, key_val_pair_t &retval) { static void cacheAnnotationFromMD(const Module *m, const GlobalValue *gv) { MutexGuard Guard(Lock); - NamedMDNode *NMD = m->getNamedMetadata(llvm::NamedMDForAnnotations); + NamedMDNode *NMD = m->getNamedMetadata("nvvm.annotations"); if (!NMD) return; key_val_pair_t tmp; @@ -99,8 +101,8 @@ static void cacheAnnotationFromMD(const Module *m, const GlobalValue *gv) { } } -bool llvm::findOneNVVMAnnotation(const GlobalValue *gv, const std::string &prop, - unsigned &retval) { +bool findOneNVVMAnnotation(const GlobalValue *gv, const std::string &prop, + unsigned &retval) { MutexGuard Guard(Lock); const Module *m = gv->getParent(); if ((*annotationCache).find(m) == (*annotationCache).end()) @@ -113,8 +115,8 @@ bool llvm::findOneNVVMAnnotation(const GlobalValue *gv, const std::string &prop, return true; } -bool llvm::findAllNVVMAnnotation(const GlobalValue *gv, const std::string &prop, - std::vector<unsigned> &retval) { +bool findAllNVVMAnnotation(const GlobalValue *gv, const std::string &prop, + std::vector<unsigned> &retval) { MutexGuard Guard(Lock); const Module *m = gv->getParent(); if ((*annotationCache).find(m) == (*annotationCache).end()) @@ -127,12 +129,10 @@ bool llvm::findAllNVVMAnnotation(const GlobalValue *gv, const std::string &prop, return true; } -bool llvm::isTexture(const llvm::Value &val) { +bool isTexture(const Value &val) { if (const GlobalValue *gv = dyn_cast<GlobalValue>(&val)) { unsigned annot; - if (llvm::findOneNVVMAnnotation( - gv, llvm::PropertyAnnotationNames[llvm::PROPERTY_ISTEXTURE], - annot)) { + if (findOneNVVMAnnotation(gv, "texture", annot)) { assert((annot == 1) && "Unexpected annotation on a texture symbol"); return true; } @@ -140,12 +140,10 @@ bool llvm::isTexture(const llvm::Value &val) { return false; } -bool llvm::isSurface(const llvm::Value &val) { +bool isSurface(const Value &val) { if (const GlobalValue *gv = dyn_cast<GlobalValue>(&val)) { unsigned annot; - if (llvm::findOneNVVMAnnotation( - gv, llvm::PropertyAnnotationNames[llvm::PROPERTY_ISSURFACE], - annot)) { + if (findOneNVVMAnnotation(gv, "surface", annot)) { assert((annot == 1) && "Unexpected annotation on a surface symbol"); return true; } @@ -153,12 +151,12 @@ bool llvm::isSurface(const llvm::Value &val) { return false; } -bool llvm::isSampler(const llvm::Value &val) { +bool isSampler(const Value &val) { + const char *AnnotationName = "sampler"; + if (const GlobalValue *gv = dyn_cast<GlobalValue>(&val)) { unsigned annot; - if (llvm::findOneNVVMAnnotation( - gv, llvm::PropertyAnnotationNames[llvm::PROPERTY_ISSAMPLER], - annot)) { + if (findOneNVVMAnnotation(gv, AnnotationName, annot)) { assert((annot == 1) && "Unexpected annotation on a sampler symbol"); return true; } @@ -166,72 +164,58 @@ bool llvm::isSampler(const llvm::Value &val) { if (const Argument *arg = dyn_cast<Argument>(&val)) { const Function *func = arg->getParent(); std::vector<unsigned> annot; - if (llvm::findAllNVVMAnnotation( - func, llvm::PropertyAnnotationNames[llvm::PROPERTY_ISSAMPLER], - annot)) { - if (std::find(annot.begin(), annot.end(), arg->getArgNo()) != annot.end()) + if (findAllNVVMAnnotation(func, AnnotationName, annot)) { + if (is_contained(annot, arg->getArgNo())) return true; } } return false; } -bool llvm::isImageReadOnly(const llvm::Value &val) { +bool isImageReadOnly(const Value &val) { if (const Argument *arg = dyn_cast<Argument>(&val)) { const Function *func = arg->getParent(); std::vector<unsigned> annot; - if (llvm::findAllNVVMAnnotation(func, - llvm::PropertyAnnotationNames[ - llvm::PROPERTY_ISREADONLY_IMAGE_PARAM], - annot)) { - if (std::find(annot.begin(), annot.end(), arg->getArgNo()) != annot.end()) + if (findAllNVVMAnnotation(func, "rdoimage", annot)) { + if (is_contained(annot, arg->getArgNo())) return true; } } return false; } -bool llvm::isImageWriteOnly(const llvm::Value &val) { +bool isImageWriteOnly(const Value &val) { if (const Argument *arg = dyn_cast<Argument>(&val)) { const Function *func = arg->getParent(); std::vector<unsigned> annot; - if (llvm::findAllNVVMAnnotation(func, - llvm::PropertyAnnotationNames[ - llvm::PROPERTY_ISWRITEONLY_IMAGE_PARAM], - annot)) { - if (std::find(annot.begin(), annot.end(), arg->getArgNo()) != annot.end()) + if (findAllNVVMAnnotation(func, "wroimage", annot)) { + if (is_contained(annot, arg->getArgNo())) return true; } } return false; } -bool llvm::isImageReadWrite(const llvm::Value &val) { +bool isImageReadWrite(const Value &val) { if (const Argument *arg = dyn_cast<Argument>(&val)) { const Function *func = arg->getParent(); std::vector<unsigned> annot; - if (llvm::findAllNVVMAnnotation(func, - llvm::PropertyAnnotationNames[ - llvm::PROPERTY_ISREADWRITE_IMAGE_PARAM], - annot)) { - if (std::find(annot.begin(), annot.end(), arg->getArgNo()) != annot.end()) + if (findAllNVVMAnnotation(func, "rdwrimage", annot)) { + if (is_contained(annot, arg->getArgNo())) return true; } } return false; } -bool llvm::isImage(const llvm::Value &val) { - return llvm::isImageReadOnly(val) || llvm::isImageWriteOnly(val) || - llvm::isImageReadWrite(val); +bool isImage(const Value &val) { + return isImageReadOnly(val) || isImageWriteOnly(val) || isImageReadWrite(val); } -bool llvm::isManaged(const llvm::Value &val) { +bool isManaged(const Value &val) { if(const GlobalValue *gv = dyn_cast<GlobalValue>(&val)) { unsigned annot; - if(llvm::findOneNVVMAnnotation(gv, - llvm::PropertyAnnotationNames[llvm::PROPERTY_MANAGED], - annot)) { + if (findOneNVVMAnnotation(gv, "managed", annot)) { assert((annot == 1) && "Unexpected annotation on a managed symbol"); return true; } @@ -239,71 +223,66 @@ bool llvm::isManaged(const llvm::Value &val) { return false; } -std::string llvm::getTextureName(const llvm::Value &val) { +std::string getTextureName(const Value &val) { assert(val.hasName() && "Found texture variable with no name"); return val.getName(); } -std::string llvm::getSurfaceName(const llvm::Value &val) { +std::string getSurfaceName(const Value &val) { assert(val.hasName() && "Found surface variable with no name"); return val.getName(); } -std::string llvm::getSamplerName(const llvm::Value &val) { +std::string getSamplerName(const Value &val) { assert(val.hasName() && "Found sampler variable with no name"); return val.getName(); } -bool llvm::getMaxNTIDx(const Function &F, unsigned &x) { - return (llvm::findOneNVVMAnnotation( - &F, llvm::PropertyAnnotationNames[llvm::PROPERTY_MAXNTID_X], x)); +bool getMaxNTIDx(const Function &F, unsigned &x) { + return findOneNVVMAnnotation(&F, "maxntidx", x); +} + +bool getMaxNTIDy(const Function &F, unsigned &y) { + return findOneNVVMAnnotation(&F, "maxntidy", y); } -bool llvm::getMaxNTIDy(const Function &F, unsigned &y) { - return (llvm::findOneNVVMAnnotation( - &F, llvm::PropertyAnnotationNames[llvm::PROPERTY_MAXNTID_Y], y)); +bool getMaxNTIDz(const Function &F, unsigned &z) { + return findOneNVVMAnnotation(&F, "maxntidz", z); } -bool llvm::getMaxNTIDz(const Function &F, unsigned &z) { - return (llvm::findOneNVVMAnnotation( - &F, llvm::PropertyAnnotationNames[llvm::PROPERTY_MAXNTID_Z], z)); +bool getReqNTIDx(const Function &F, unsigned &x) { + return findOneNVVMAnnotation(&F, "reqntidx", x); } -bool llvm::getReqNTIDx(const Function &F, unsigned &x) { - return (llvm::findOneNVVMAnnotation( - &F, llvm::PropertyAnnotationNames[llvm::PROPERTY_REQNTID_X], x)); +bool getReqNTIDy(const Function &F, unsigned &y) { + return findOneNVVMAnnotation(&F, "reqntidy", y); } -bool llvm::getReqNTIDy(const Function &F, unsigned &y) { - return (llvm::findOneNVVMAnnotation( - &F, llvm::PropertyAnnotationNames[llvm::PROPERTY_REQNTID_Y], y)); +bool getReqNTIDz(const Function &F, unsigned &z) { + return findOneNVVMAnnotation(&F, "reqntidz", z); } -bool llvm::getReqNTIDz(const Function &F, unsigned &z) { - return (llvm::findOneNVVMAnnotation( - &F, llvm::PropertyAnnotationNames[llvm::PROPERTY_REQNTID_Z], z)); +bool getMinCTASm(const Function &F, unsigned &x) { + return findOneNVVMAnnotation(&F, "minctasm", x); } -bool llvm::getMinCTASm(const Function &F, unsigned &x) { - return (llvm::findOneNVVMAnnotation( - &F, llvm::PropertyAnnotationNames[llvm::PROPERTY_MINNCTAPERSM], x)); +bool getMaxNReg(const Function &F, unsigned &x) { + return findOneNVVMAnnotation(&F, "maxnreg", x); } -bool llvm::isKernelFunction(const Function &F) { +bool isKernelFunction(const Function &F) { unsigned x = 0; - bool retval = llvm::findOneNVVMAnnotation( - &F, llvm::PropertyAnnotationNames[llvm::PROPERTY_ISKERNEL_FUNCTION], x); + bool retval = findOneNVVMAnnotation(&F, "kernel", x); if (!retval) { // There is no NVVM metadata, check the calling convention - return F.getCallingConv() == llvm::CallingConv::PTX_Kernel; + return F.getCallingConv() == CallingConv::PTX_Kernel; } return (x == 1); } -bool llvm::getAlign(const Function &F, unsigned index, unsigned &align) { +bool getAlign(const Function &F, unsigned index, unsigned &align) { std::vector<unsigned> Vs; - bool retval = llvm::findAllNVVMAnnotation( - &F, llvm::PropertyAnnotationNames[llvm::PROPERTY_ALIGN], Vs); + bool retval = findAllNVVMAnnotation(&F, "align", Vs); if (!retval) return false; for (int i = 0, e = Vs.size(); i < e; i++) { @@ -316,7 +295,7 @@ bool llvm::getAlign(const Function &F, unsigned index, unsigned &align) { return false; } -bool llvm::getAlign(const CallInst &I, unsigned index, unsigned &align) { +bool getAlign(const CallInst &I, unsigned index, unsigned &align) { if (MDNode *alignNode = I.getMetadata("callalign")) { for (int i = 0, n = alignNode->getNumOperands(); i < n; i++) { if (const ConstantInt *CI = @@ -335,108 +314,4 @@ bool llvm::getAlign(const CallInst &I, unsigned index, unsigned &align) { return false; } -// The following are some useful utilities for debugging - -BasicBlock *llvm::getParentBlock(Value *v) { - if (BasicBlock *B = dyn_cast<BasicBlock>(v)) - return B; - - if (Instruction *I = dyn_cast<Instruction>(v)) - return I->getParent(); - - return nullptr; -} - -Function *llvm::getParentFunction(Value *v) { - if (Function *F = dyn_cast<Function>(v)) - return F; - - if (Instruction *I = dyn_cast<Instruction>(v)) - return I->getParent()->getParent(); - - if (BasicBlock *B = dyn_cast<BasicBlock>(v)) - return B->getParent(); - - return nullptr; -} - -// Dump a block by name -void llvm::dumpBlock(Value *v, char *blockName) { - Function *F = getParentFunction(v); - if (!F) - return; - - for (Function::iterator it = F->begin(), ie = F->end(); it != ie; ++it) { - BasicBlock *B = &*it; - if (strcmp(B->getName().data(), blockName) == 0) { - B->dump(); - return; - } - } -} - -// Find an instruction by name -Instruction *llvm::getInst(Value *base, char *instName) { - Function *F = getParentFunction(base); - if (!F) - return nullptr; - - for (inst_iterator it = inst_begin(F), ie = inst_end(F); it != ie; ++it) { - Instruction *I = &*it; - if (strcmp(I->getName().data(), instName) == 0) { - return I; - } - } - - return nullptr; -} - -// Dump an instruction by name -void llvm::dumpInst(Value *base, char *instName) { - Instruction *I = getInst(base, instName); - if (I) - I->dump(); -} - -// Dump an instruction and all dependent instructions -void llvm::dumpInstRec(Value *v, std::set<Instruction *> *visited) { - if (Instruction *I = dyn_cast<Instruction>(v)) { - - if (visited->find(I) != visited->end()) - return; - - visited->insert(I); - - for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) - dumpInstRec(I->getOperand(i), visited); - - I->dump(); - } -} - -// Dump an instruction and all dependent instructions -void llvm::dumpInstRec(Value *v) { - std::set<Instruction *> visited; - - //BasicBlock *B = getParentBlock(v); - - dumpInstRec(v, &visited); -} - -// Dump the parent for Instruction, block or function -void llvm::dumpParent(Value *v) { - if (Instruction *I = dyn_cast<Instruction>(v)) { - I->getParent()->dump(); - return; - } - - if (BasicBlock *B = dyn_cast<BasicBlock>(v)) { - B->getParent()->dump(); - return; - } - - if (Function *F = dyn_cast<Function>(v)) { - F->getParent()->dump(); - return; - } -} +} // namespace llvm |