Searched refs:NewIndices (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1139 /// specified offset. If so, fill them into NewIndices and return the resultant
1142 SmallVectorImpl<Value *> &NewIndices) {
1165 NewIndices.push_back(ConstantInt::get(IndexTy, FirstIdx));
1179 NewIndices.push_back(ConstantInt::get(Type::getInt32Ty(Ty->getContext()),
1187 NewIndices.push_back(ConstantInt::get(IndexTy,Offset/EltSize));
2372 SmallVector<Value*, 8> NewIndices; local
2373 if (FindElementAtOffset(SrcType, Offset.getSExtValue(), NewIndices)) {
2376 ? Builder.CreateInBoundsGEP(SrcEltType, SrcOp, NewIndices)
2377 : Builder.CreateGEP(SrcEltType, SrcOp, NewIndices);
1141 FindElementAtOffset(PointerType *PtrTy, int64_t Offset, SmallVectorImpl<Value *> &NewIndices) argument
H A DInstCombineInternal.h483 SmallVectorImpl<Value *> &NewIndices);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp2363 SmallVector<Value*, 16> NewIndices; local
2364 NewIndices.reserve(Idxs.size() + CE->getNumOperands());
2365 NewIndices.append(CE->op_begin() + 1, CE->op_end() - 1);
2390 NewIndices.push_back(Combined);
2391 NewIndices.append(Idxs.begin() + 1, Idxs.end());
2402 NewIndices, InBounds && cast<GEPOperator>(CE)->isInBounds(),

Completed in 102 milliseconds