Home
last modified time | relevance | path

Searched refs:GEPIdx (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Target/R600/
DAMDGPUPromoteAlloca.cpp111 const std::map<GetElementPtrInst *, Value *> &GEPIdx) { in calculateVectorIndex() argument
117 auto I = GEPIdx.find(GEP); in calculateVectorIndex()
118 return I == GEPIdx.end() ? nullptr : I->second; in calculateVectorIndex()
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp1223 SmallVector<Value*, 8> GEPIdx; in RewriteHeapSROALoadUser() local
1224 GEPIdx.push_back(GEPI->getOperand(1)); in RewriteHeapSROALoadUser()
1225 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end()); in RewriteHeapSROALoadUser()
1227 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx, in RewriteHeapSROALoadUser()
/external/llvm/lib/IR/
DConstants.cpp1926 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1); in getSizeOf() local
1928 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); in getSizeOf()
1955 Constant *GEPIdx[] = { in getOffsetOf() local
1960 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); in getOffsetOf()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp3494 SmallVector<Value*, 16> GEPIdx; in ParseFunctionBody() local
3499 GEPIdx.push_back(Op); in ParseFunctionBody()
3502 I = GetElementPtrInst::Create(Ty, BasePtr, GEPIdx); in ParseFunctionBody()