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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp109 auto *IndexVal = ConstantInt::get(Type::getInt8Ty(Context), Index); local
115 auto *Call = CallInst::Create(Fn, {Arg, IndexVal}, "", InsertPt);
H A DCoroSplit.cpp296 ConstantInt *IndexVal = Shape.getIndex(SuspendIndex); local
314 Builder.CreateStore(IndexVal, GepIndex);
347 Switch->addCase(IndexVal, ResumeBB);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp391 Value IndexVal(Data->IndexType, Index);
393 << IndexVal << Data->ArrayType;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1410 unsigned IndexVal = cast<ConstantSDNode>(Index)->getZExtValue(); local
1415 DAG.getConstant(IndexVal * Scale, DL, Index->getValueType(0));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp2259 int64_t IndexVal = CI->getSExtValue();
2260 if (IndexVal < 0 || (NumElements > 0 && (uint64_t)IndexVal >= NumElements))
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp999 llvm::Value *IndexVal = Builder.CreateIntCast(Index, SizeTy, IndexSigned); local
1007 llvm::Value *Check = Accessed ? Builder.CreateICmpULT(IndexVal, BoundVal)
1008 : Builder.CreateICmpULE(IndexVal, BoundVal);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp4288 const Value *IndexVal = GEP->getOperand(GEP->getNumOperands() - 1); local
4291 if (BasePtr->getType()->isVectorTy() || !IndexVal->getType()->isVectorTy())
4295 Index = SDB->getValue(IndexVal);
H A DDAGCombiner.cpp17734 unsigned IndexVal = local
17736 SDValue Elt = VecOp.getOperand(IndexVal);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12512 uint64_t IndexVal = CIndex->getZExtValue();
12513 if (IndexVal >= NumVecElts)
12515 IndexNotInserted.reset(IndexVal);

Completed in 190 milliseconds