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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp110 auto *IndexVal = ConstantInt::get(Type::getInt8Ty(Context), Index); local
116 auto *Call = CallInst::Create(Fn, {Arg, IndexVal}, "", InsertPt);
H A DCoroSplit.cpp295 ConstantInt *IndexVal = Shape.getIndex(SuspendIndex); local
313 Builder.CreateStore(IndexVal, GepIndex);
346 Switch->addCase(IndexVal, ResumeBB);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp348 Value IndexVal(Data->IndexType, Index);
350 << IndexVal << Data->ArrayType;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp2181 int64_t IndexVal = CI->getSExtValue();
2182 if (IndexVal < 0 || (NumElements > 0 && (uint64_t)IndexVal >= NumElements))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1291 unsigned IndexVal = local
1297 DAG.getConstant(IndexVal * Scale, DL, Index.getValueType());
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp972 llvm::Value *IndexVal = Builder.CreateIntCast(Index, SizeTy, IndexSigned); local
980 llvm::Value *Check = Accessed ? Builder.CreateICmpULT(IndexVal, BoundVal)
981 : Builder.CreateICmpULE(IndexVal, BoundVal);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp4391 Value *IndexVal = GEP->getOperand(FinalIndex); local
4410 Constant *C = dyn_cast<Constant>(IndexVal);
4411 if (!C && !SDB->findValue(IndexVal))
4435 Index = SDB->getValue(IndexVal);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp11402 uint64_t IndexVal = CIndex->getZExtValue();
11403 if (IndexVal >= NumVecElts)
11405 IndexNotInserted.reset(IndexVal);

Completed in 259 milliseconds