Home
last modified time | relevance | path

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

/external/llvm/lib/Target/AMDGPU/
DAMDGPUPromoteAlloca.cpp350 const std::map<GetElementPtrInst *, Value *> &GEPIdx) { in calculateVectorIndex() argument
356 auto I = GEPIdx.find(GEP); in calculateVectorIndex()
357 return I == GEPIdx.end() ? nullptr : I->second; in calculateVectorIndex()
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp1180 SmallVector<Value*, 8> GEPIdx; in RewriteHeapSROALoadUser() local
1181 GEPIdx.push_back(GEPI->getOperand(1)); in RewriteHeapSROALoadUser()
1182 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end()); in RewriteHeapSROALoadUser()
1184 Value *NGEPI = GetElementPtrInst::Create(GEPI->getResultElementType(), NewPtr, GEPIdx, in RewriteHeapSROALoadUser()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DConstants.cpp1522 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1); in getSizeOf() local
1524 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); in getSizeOf()
1551 Constant *GEPIdx[] = { in getOffsetOf() local
1556 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); in getOffsetOf()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DGlobalOpt.cpp1244 SmallVector<Value*, 8> GEPIdx; in RewriteHeapSROALoadUser() local
1245 GEPIdx.push_back(GEPI->getOperand(1)); in RewriteHeapSROALoadUser()
1246 GEPIdx.append(GEPI->op_begin()+3, GEPI->op_end()); in RewriteHeapSROALoadUser()
1248 Value *NGEPI = GetElementPtrInst::Create(NewPtr, GEPIdx, in RewriteHeapSROALoadUser()
/external/llvm/lib/IR/
DConstants.cpp1816 Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1); in getSizeOf() local
1818 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); in getSizeOf()
1845 Constant *GEPIdx[] = { in getOffsetOf() local
1850 Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx); in getOffsetOf()
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
DBitcodeReader.cpp2214 SmallVector<Value*, 16> GEPIdx; in ParseFunctionBody() local
2219 GEPIdx.push_back(Op); in ParseFunctionBody()
2222 I = GetElementPtrInst::Create(BasePtr, GEPIdx); in ParseFunctionBody()
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp4593 auto *GEPIdx = GEP->idx_begin()->get(); in vectorizeGEPIndices() local
4594 assert(GEP->getNumIndices() == 1 || !isa<Constant>(GEPIdx)); in vectorizeGEPIndices()
4595 Bundle[BundleIndex++] = GEPIdx; in vectorizeGEPIndices()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp4609 SmallVector<Value*, 16> GEPIdx; in parseFunctionBody() local
4614 GEPIdx.push_back(Op); in parseFunctionBody()
4617 I = GetElementPtrInst::Create(Ty, BasePtr, GEPIdx); in parseFunctionBody()