/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 4905 const SCEV *StartVal = getSCEV(StartValueV); in createAddRecFromPHIWithCastsImpl() local 4907 getAddRecExpr(getTruncateExpr(StartVal, TruncTy), in createAddRecFromPHIWithCastsImpl() 4954 const SCEV *StartExtended = getExtendedExpr(StartVal, Signed); in createAddRecFromPHIWithCastsImpl() 4955 if (PredIsKnownFalse(StartVal, StartExtended)) { in createAddRecFromPHIWithCastsImpl() 4978 AppendPredicate(StartVal, StartExtended); in createAddRecFromPHIWithCastsImpl() 4985 auto *NewAR = getAddRecExpr(StartVal, Accum, L, SCEV::FlagAnyWrap); in createAddRecFromPHIWithCastsImpl() 5088 const SCEV *StartVal = getSCEV(StartValueV); in createSimpleAffineAddRec() local 5089 const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags); in createSimpleAffineAddRec() 5098 (void)getAddRecExpr(getAddExpr(StartVal, Accum), Accum, L, Flags); in createSimpleAffineAddRec() 5206 const SCEV *StartVal = getSCEV(StartValueV); in createAddRecFromPHI() local [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelDAGToDAG.cpp | 3417 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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 4794 Value *StartVal = (Part == 0) ? StartV : Iden; in widenPHIInstruction() local 4795 cast<PHINode>(EntryPart)->addIncoming(StartVal, LoopVectorPreHeader); in widenPHIInstruction()
|