Searched refs:GEPIdx (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUPromoteAlloca.cpp | 111 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/ |
D | GlobalOpt.cpp | 1223 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/ |
D | Constants.cpp | 1886 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1); in getSizeOf() local 1888 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); in getSizeOf() 1915 Constant *GEPIdx[] = { in getOffsetOf() local 1920 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); in getOffsetOf()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 4171 SmallVector<Value*, 16> GEPIdx; in parseFunctionBody() local 4176 GEPIdx.push_back(Op); in parseFunctionBody() 4179 I = GetElementPtrInst::Create(Ty, BasePtr, GEPIdx); in parseFunctionBody()
|