| /llvm-project-15.0.7/llvm/lib/Target/RISCV/ |
| H A D | RISCVGatherScatterLowering.cpp | 110 auto *StartVal = in matchStridedConstant() local 112 if (!StartVal) in matchStridedConstant() 114 APInt StrideVal(StartVal->getValue().getBitWidth(), 0); in matchStridedConstant() 115 ConstantInt *Prev = StartVal; in matchStridedConstant() 130 Value *Stride = ConstantInt::get(StartVal->getType(), StrideVal); in matchStridedConstant() 132 return std::make_pair(StartVal, Stride); in matchStridedConstant()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter5/ |
| H A D | toy.cpp | 691 Value *StartVal = Start->codegen(); in codegen() local 692 if (!StartVal) in codegen() 710 Variable->addIncoming(StartVal, PreheaderBB); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| H A D | toy-jit.cpp | 813 Value *StartVal = Start->Codegen(); in Codegen() local 814 if (StartVal == 0) return 0; in Codegen() 817 Builder.CreateStore(StartVal, Alloca); in Codegen()
|
| H A D | toy.cpp | 1177 Value *StartVal = Start->Codegen(); in Codegen() local 1178 if (StartVal == 0) return 0; in Codegen() 1181 Builder.CreateStore(StartVal, Alloca); in Codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter6/ |
| H A D | toy.cpp | 803 Value *StartVal = Start->codegen(); in codegen() local 804 if (!StartVal) in codegen() 822 Variable->addIncoming(StartVal, PreheaderBB); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| H A D | toy-jit.cpp | 795 Value *StartVal = Start->Codegen(); in Codegen() local 796 if (StartVal == 0) return 0; in Codegen() 799 Builder.CreateStore(StartVal, Alloca); in Codegen()
|
| H A D | toy.cpp | 1075 Value *StartVal = Start->Codegen(); in Codegen() local 1076 if (StartVal == 0) return 0; in Codegen() 1079 Builder.CreateStore(StartVal, Alloca); in Codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
| H A D | toy.cpp | 913 Value *StartVal = Start->codegen(); in codegen() local 914 if (!StartVal) in codegen() 918 Builder->CreateStore(StartVal, Alloca); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter8/ |
| H A D | toy.cpp | 918 Value *StartVal = Start->codegen(); in codegen() local 919 if (!StartVal) in codegen() 923 Builder->CreateStore(StartVal, Alloca); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| H A D | toy.cpp | 896 Value *StartVal = Start->codegen(); in codegen() local 897 if (!StartVal) in codegen() 901 Builder->CreateStore(StartVal, Alloca); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter7/ |
| H A D | toy.cpp | 919 Value *StartVal = Start->codegen(); in codegen() local 920 if (!StartVal) in codegen() 924 Builder->CreateStore(StartVal, Alloca); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
| H A D | toy.cpp | 913 Value *StartVal = Start->codegen(); in codegen() local 914 if (!StartVal) in codegen() 918 Builder->CreateStore(StartVal, Alloca); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
| H A D | toy.cpp | 913 Value *StartVal = Start->codegen(); in codegen() local 914 if (!StartVal) in codegen() 918 Builder->CreateStore(StartVal, Alloca); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/initial/ |
| H A D | toy.cpp | 1035 Value *StartVal = Start->Codegen(); in Codegen() local 1036 if (StartVal == 0) return 0; in Codegen() 1039 Builder.CreateStore(StartVal, Alloca); in Codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter9/ |
| H A D | toy.cpp | 1089 Value *StartVal = Start->codegen(); in codegen() local 1090 if (!StartVal) in codegen() 1094 Builder->CreateStore(StartVal, Alloca); in codegen()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/complete/ |
| H A D | toy.cpp | 1255 Value *StartVal = Start->Codegen(); in Codegen() local 1256 if (StartVal == 0) return 0; in Codegen() 1259 Builder.CreateStore(StartVal, Alloca); in Codegen()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 903 Value *llvm::createSelectCmpOp(IRBuilderBase &Builder, Value *StartVal, in createSelectCmpOp() argument 906 StartVal = Builder.CreateVectorSplat(VTy->getElementCount(), StartVal); in createSelectCmpOp() 908 Builder.CreateCmp(CmpInst::ICMP_NE, Left, StartVal, "rdx.select.cmp"); in createSelectCmpOp()
|
| /llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/ |
| H A D | LoopUtils.h | 362 Value *createSelectCmpOp(IRBuilderBase &Builder, Value *StartVal, RecurKind RK,
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanRecipes.cpp | 1149 Value *StartVal = (Part == 0) ? StartV : Iden; in execute() local 1150 cast<PHINode>(EntryPart)->addIncoming(StartVal, VectorPH); in execute()
|
| H A D | LoopVectorize.cpp | 10386 VPValue *StartVal = BestEpiPlan.getOrAddExternalDef(Resume); in processLoop() local 10387 ReductionPhi->setOperand(0, StartVal); in processLoop()
|
| /llvm-project-15.0.7/llvm/unittests/Frontend/ |
| H A D | OpenMPIRBuilderTest.cpp | 1273 Value *StartVal = ConstantInt::get(LCTy, Start); in TEST_F() local 1278 OMPBuilder.createCanonicalLoop(Loc, LoopBodyGenCB, StartVal, StopVal, in TEST_F() 1697 Value *StartVal = ConstantInt::get(LCTy, Start); in TEST_F() local 1704 OMPBuilder.createCanonicalLoop(Loc, LoopBodyGenCB, StartVal, StopVal, in TEST_F() 1919 Value *StartVal = ConstantInt::get(LCTy, 10); in TEST_F() local 1925 Loc, LoopBodyGen, StartVal, StopVal, StepVal, in TEST_F() 2109 Value *StartVal = ConstantInt::get(LCTy, 10); in TEST_P() local 2117 Loc, LoopBodyGen, StartVal, StopVal, StepVal, in TEST_P() 2251 Value *StartVal = ConstantInt::get(LCTy, 10); in TEST_F() local 2258 Loc, LoopBodyGen, StartVal, StopVal, StepVal, in TEST_F()
|
| /llvm-project-15.0.7/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| H A D | LangImpl05.rst | 635 Value *StartVal = Start->codegen(); 636 if (!StartVal) 671 Variable->addIncoming(StartVal, PreheaderBB);
|
| H A D | LangImpl07.rst | 381 Value *StartVal = Start->codegen(); 382 if (!StartVal) 386 Builder.CreateStore(StartVal, Alloca);
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 5401 const SCEV *StartVal = getSCEV(StartValueV); in createAddRecFromPHIWithCastsImpl() local 5403 getAddRecExpr(getTruncateExpr(StartVal, TruncTy), in createAddRecFromPHIWithCastsImpl() 5450 const SCEV *StartExtended = getExtendedExpr(StartVal, Signed); in createAddRecFromPHIWithCastsImpl() 5451 if (PredIsKnownFalse(StartVal, StartExtended)) { in createAddRecFromPHIWithCastsImpl() 5474 AppendPredicate(StartVal, StartExtended); in createAddRecFromPHIWithCastsImpl() 5481 auto *NewAR = getAddRecExpr(StartVal, Accum, L, SCEV::FlagAnyWrap); in createAddRecFromPHIWithCastsImpl() 5584 const SCEV *StartVal = getSCEV(StartValueV); in createSimpleAffineAddRec() local 5585 const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags); in createSimpleAffineAddRec() 5704 const SCEV *StartVal = getSCEV(StartValueV); in createAddRecFromPHI() local 5737 const SCEV *StartVal = getSCEV(StartValueV); in createAddRecFromPHI() local [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXISelDAGToDAG.cpp | 3412 uint64_t StartVal = StartConst->getZExtValue(); in tryBFE() local 3415 uint64_t GoodBits = Start.getValueSizeInBits() - StartVal; in tryBFE() 3422 Start = CurDAG->getTargetConstant(StartVal, DL, MVT::i32); in tryBFE()
|