Searched defs:GEPIdx (Results 1 - 6 of 6) sorted by relevance

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

Completed in 1381 milliseconds