Home
last modified time | relevance | path

Searched refs:StartVal (Results 1 – 24 of 24) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVGatherScatterLowering.cpp113 auto *StartVal = in matchStridedConstant() local
115 if (!StartVal) in matchStridedConstant()
117 APInt StrideVal(StartVal->getValue().getBitWidth(), 0); in matchStridedConstant()
118 ConstantInt *Prev = StartVal; in matchStridedConstant()
133 Value *Stride = ConstantInt::get(StartVal->getType(), StrideVal); in matchStridedConstant()
135 return std::make_pair(StartVal, Stride); in matchStridedConstant()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp691 Value *StartVal = Start->codegen(); in codegen() local
692 if (!StartVal) in codegen()
710 Variable->addIncoming(StartVal, PreheaderBB); in codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp795 Value *StartVal = Start->Codegen(); in Codegen() local
796 if (StartVal == 0) return 0; in Codegen()
799 Builder.CreateStore(StartVal, Alloca); in Codegen()
H A Dtoy.cpp1075 Value *StartVal = Start->Codegen(); in Codegen() local
1076 if (StartVal == 0) return 0; in Codegen()
1079 Builder.CreateStore(StartVal, Alloca); in Codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp803 Value *StartVal = Start->codegen(); in codegen() local
804 if (!StartVal) in codegen()
822 Variable->addIncoming(StartVal, PreheaderBB); in codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp813 Value *StartVal = Start->Codegen(); in Codegen() local
814 if (StartVal == 0) return 0; in Codegen()
817 Builder.CreateStore(StartVal, Alloca); in Codegen()
H A Dtoy.cpp1177 Value *StartVal = Start->Codegen(); in Codegen() local
1178 if (StartVal == 0) return 0; in Codegen()
1181 Builder.CreateStore(StartVal, Alloca); in Codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp896 Value *StartVal = Start->codegen(); in codegen() local
897 if (!StartVal) in codegen()
901 Builder->CreateStore(StartVal, Alloca); in codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp919 Value *StartVal = Start->codegen(); in codegen() local
920 if (!StartVal) in codegen()
924 Builder->CreateStore(StartVal, Alloca); in codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp913 Value *StartVal = Start->codegen(); in codegen() local
914 if (!StartVal) in codegen()
918 Builder->CreateStore(StartVal, Alloca); in codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp917 Value *StartVal = Start->codegen(); in codegen() local
918 if (!StartVal) in codegen()
922 Builder->CreateStore(StartVal, Alloca); in codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp913 Value *StartVal = Start->codegen(); in codegen() local
914 if (!StartVal) in codegen()
918 Builder->CreateStore(StartVal, Alloca); in codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp913 Value *StartVal = Start->codegen(); in codegen() local
914 if (!StartVal) in codegen()
918 Builder->CreateStore(StartVal, Alloca); in codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp1035 Value *StartVal = Start->Codegen(); in Codegen() local
1036 if (StartVal == 0) return 0; in Codegen()
1039 Builder.CreateStore(StartVal, Alloca); in Codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1255 Value *StartVal = Start->Codegen(); in Codegen() local
1256 if (StartVal == 0) return 0; in Codegen()
1259 Builder.CreateStore(StartVal, Alloca); in Codegen()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp1089 Value *StartVal = Start->codegen(); in codegen() local
1090 if (!StartVal) in codegen()
1094 Builder->CreateStore(StartVal, Alloca); in codegen()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp902 Value *llvm::createSelectCmpOp(IRBuilderBase &Builder, Value *StartVal, in createSelectCmpOp() argument
905 StartVal = Builder.CreateVectorSplat(VTy->getElementCount(), StartVal); in createSelectCmpOp()
907 Builder.CreateCmp(CmpInst::ICMP_NE, Left, StartVal, "rdx.select.cmp"); in createSelectCmpOp()
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h361 Value *createSelectCmpOp(IRBuilderBase &Builder, Value *StartVal, RecurKind RK,
/openbsd-src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl05.rst635 Value *StartVal = Start->codegen();
636 if (!StartVal)
671 Variable->addIncoming(StartVal, PreheaderBB);
H A DLangImpl07.rst381 Value *StartVal = Start->codegen();
382 if (!StartVal)
386 Builder.CreateStore(StartVal, Alloca);
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp1236 Value *StartVal = (Part == 0) ? StartV : Iden; in execute() local
1237 cast<PHINode>(EntryPart)->addIncoming(StartVal, VectorPH); in execute()
H A DLoopVectorize.cpp10531 VPValue *StartVal = BestEpiPlan.getOrAddExternalDef(ResumeV); in processLoop() local
10532 cast<VPHeaderPHIRecipe>(&R)->setStartValue(StartVal); in processLoop()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DScalarEvolution.cpp5549 const SCEV *StartVal = getSCEV(StartValueV); in createAddRecFromPHIWithCastsImpl() local
5551 getAddRecExpr(getTruncateExpr(StartVal, TruncTy), in createAddRecFromPHIWithCastsImpl()
5598 const SCEV *StartExtended = getExtendedExpr(StartVal, Signed); in createAddRecFromPHIWithCastsImpl()
5599 if (PredIsKnownFalse(StartVal, StartExtended)) { in createAddRecFromPHIWithCastsImpl()
5622 AppendPredicate(StartVal, StartExtended); in createAddRecFromPHIWithCastsImpl()
5629 auto *NewAR = getAddRecExpr(StartVal, Accum, L, SCEV::FlagAnyWrap); in createAddRecFromPHIWithCastsImpl()
5732 const SCEV *StartVal = getSCEV(StartValueV); in createSimpleAffineAddRec() local
5733 const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags); in createSimpleAffineAddRec()
5743 (void)getAddRecExpr(getAddExpr(StartVal, Accum), Accum, L, Flags); in createSimpleAffineAddRec()
5852 const SCEV *StartVal = getSCEV(StartValueV); in createAddRecFromPHI() local
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp3417 uint64_t StartVal = StartConst->getZExtValue(); in tryBFE() local
3420 uint64_t GoodBits = Start.getValueSizeInBits() - StartVal; in tryBFE()
3427 Start = CurDAG->getTargetConstant(StartVal, DL, MVT::i32); in tryBFE()