Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp53 auto *IndexVal = ConstantInt::get(Type::getInt8Ty(Context), Index); in makeSubFnCall() local
59 auto *Call = CallInst::Create(Fn, {Arg, IndexVal}, "", InsertPt); in makeSubFnCall()
H A DCoroSplit.cpp388 ConstantInt *IndexVal = Shape.getIndex(SuspendIndex); in createResumeEntryBlock() local
402 Builder.CreateStore(IndexVal, GepIndex); in createResumeEntryBlock()
435 Switch->addCase(IndexVal, ResumeBB); in createResumeEntryBlock()
/llvm-project-15.0.7/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp391 Value IndexVal(Data->IndexType, Index); in handleOutOfBoundsImpl() local
393 << IndexVal << Data->ArrayType; in handleOutOfBoundsImpl()
/llvm-project-15.0.7/llvm/lib/IR/
H A DConstantFold.cpp1950 int64_t IndexVal = CI->getSExtValue(); in isIndexInRangeOfArrayType() local
1951 if (IndexVal < 0 || (NumElements > 0 && (uint64_t)IndexVal >= NumElements)) in isIndexInRangeOfArrayType()
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1962 unsigned IndexVal = cast<ConstantSDNode>(Index)->getZExtValue(); in LowerSIGN_EXTEND_INREG() local
1967 DAG.getConstant(IndexVal * Scale, DL, Index->getValueType(0)); in LowerSIGN_EXTEND_INREG()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExpr.cpp1015 llvm::Value *IndexVal = Builder.CreateIntCast(Index, SizeTy, IndexSigned); in EmitBoundsCheck() local
1023 llvm::Value *Check = Accessed ? Builder.CreateICmpULT(IndexVal, BoundVal) in EmitBoundsCheck()
1024 : Builder.CreateICmpULE(IndexVal, BoundVal); in EmitBoundsCheck()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp4397 const Value *IndexVal = GEP->getOperand(GEP->getNumOperands() - 1); in getUniformBase() local
4400 if (BasePtr->getType()->isVectorTy() || !IndexVal->getType()->isVectorTy()) in getUniformBase()
4404 Index = SDB->getValue(IndexVal); in getUniformBase()
H A DDAGCombiner.cpp19811 unsigned IndexVal = in visitEXTRACT_VECTOR_ELT() local
19813 SDValue Elt = VecOp.getOperand(IndexVal); in visitEXTRACT_VECTOR_ELT()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp17128 uint64_t IndexVal = CIndex->getZExtValue(); in replaceSplatVectorStore() local
17129 if (IndexVal >= NumVecElts) in replaceSplatVectorStore()
17131 IndexNotInserted.reset(IndexVal); in replaceSplatVectorStore()