Home
last modified time | relevance | path

Searched refs:IndexVal (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp52 auto *IndexVal = ConstantInt::get(Type::getInt8Ty(Context), Index); in makeSubFnCall() local
58 return CallInst::Create(Fn, {Arg, IndexVal}, "", InsertPt); in makeSubFnCall()
H A DCoroSplit.cpp350 ConstantInt *IndexVal = Shape.getIndex(Shape.CoroSuspends.size() - 1); in markCoroutineAsDone() local
354 Builder.CreateStore(IndexVal, FinalIndex); in markCoroutineAsDone()
442 ConstantInt *IndexVal = Shape.getIndex(SuspendIndex); in createResumeEntryBlock() local
456 Builder.CreateStore(IndexVal, GepIndex); in createResumeEntryBlock()
490 Switch->addCase(IndexVal, ResumeBB); in createResumeEntryBlock()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp1456 int64_t IndexVal = CI->getSExtValue(); in isIndexInRangeOfArrayType() local
1457 if (IndexVal < 0 || (IndexVal != 0 && (uint64_t)IndexVal >= NumElements)) in isIndexInRangeOfArrayType()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp391 Value IndexVal(Data->IndexType, Index); in handleOutOfBoundsImpl() local
393 << IndexVal << Data->ArrayType; in handleOutOfBoundsImpl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1914 unsigned IndexVal = Index->getAsZExtVal(); in LowerSIGN_EXTEND_INREG() local
1919 DAG.getConstant(IndexVal * Scale, DL, Index->getValueType(0)); in LowerSIGN_EXTEND_INREG()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp1197 llvm::Value *IndexVal = Builder.CreateIntCast(Index, SizeTy, IndexSigned); in EmitBoundsCheckImpl() local
1205 llvm::Value *Check = Accessed ? Builder.CreateICmpULT(IndexVal, BoundVal) in EmitBoundsCheckImpl()
1206 : Builder.CreateICmpULE(IndexVal, BoundVal); in EmitBoundsCheckImpl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp4648 const Value *IndexVal = GEP->getOperand(GEP->getNumOperands() - 1); in getUniformBase() local
4651 if (BasePtr->getType()->isVectorTy() || !IndexVal->getType()->isVectorTy()) in getUniformBase()
4664 Index = SDB->getValue(IndexVal); in getUniformBase()
H A DDAGCombiner.cpp22243 unsigned IndexVal = in visitEXTRACT_VECTOR_ELT() local
22245 SDValue Elt = VecOp.getOperand(IndexVal); in visitEXTRACT_VECTOR_ELT()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp20673 uint64_t IndexVal = CIndex->getZExtValue(); in replaceSplatVectorStore() local
20674 if (IndexVal >= NumVecElts) in replaceSplatVectorStore()
20676 IndexNotInserted.reset(IndexVal); in replaceSplatVectorStore()