HomeSort by: relevance | last modified time | path
    Searched defs:IndexVal (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
Coroutines.cpp 109 auto *IndexVal = ConstantInt::get(Type::getInt8Ty(Context), Index);
115 auto *Call = CallInst::Create(Fn, {Arg, IndexVal}, "", InsertPt);
CoroSplit.cpp 357 ConstantInt *IndexVal = Shape.getIndex(SuspendIndex);
375 Builder.CreateStore(IndexVal, GepIndex);
408 Switch->addCase(IndexVal, ResumeBB);
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 1661 unsigned IndexVal = cast<ConstantSDNode>(Index)->getZExtValue();
1666 DAG.getConstant(IndexVal * Scale, DL, Index->getValueType(0));
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 1005 llvm::Value *IndexVal = Builder.CreateIntCast(Index, SizeTy, IndexSigned);
1013 llvm::Value *Check = Accessed ? Builder.CreateICmpULT(IndexVal, BoundVal)
1014 : Builder.CreateICmpULE(IndexVal, BoundVal);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 4386 const Value *IndexVal = GEP->getOperand(GEP->getNumOperands() - 1);
4389 if (BasePtr->getType()->isVectorTy() || !IndexVal->getType()->isVectorTy())
4393 Index = SDB->getValue(IndexVal);
DAGCombiner.cpp 18557 unsigned IndexVal =
18559 SDValue Elt = VecOp.getOperand(IndexVal);

Completed in 58 milliseconds