Home
last modified time | relevance | path

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

/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp666 Value *StartVal = Start->codegen(); in codegen() local
667 if (!StartVal) in codegen()
686 Variable->addIncoming(StartVal, PreheaderBB); in codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp777 Value *StartVal = Start->codegen(); in codegen() local
778 if (!StartVal) in codegen()
797 Variable->addIncoming(StartVal, PreheaderBB); in codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp798 Value *StartVal = Start->Codegen(); in Codegen() local
799 if (StartVal == 0) return 0; in Codegen()
802 Builder.CreateStore(StartVal, Alloca); in Codegen()
Dtoy.cpp1078 Value *StartVal = Start->Codegen(); in Codegen() local
1079 if (StartVal == 0) return 0; in Codegen()
1082 Builder.CreateStore(StartVal, Alloca); in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp816 Value *StartVal = Start->Codegen(); in Codegen() local
817 if (StartVal == 0) return 0; in Codegen()
820 Builder.CreateStore(StartVal, Alloca); in Codegen()
Dtoy.cpp1180 Value *StartVal = Start->Codegen(); in Codegen() local
1181 if (StartVal == 0) return 0; in Codegen()
1184 Builder.CreateStore(StartVal, Alloca); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp891 Value *StartVal = Start->codegen(); in codegen() local
892 if (!StartVal) in codegen()
896 Builder.CreateStore(StartVal, Alloca); in codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp1038 Value *StartVal = Start->Codegen(); in Codegen() local
1039 if (StartVal == 0) return 0; in Codegen()
1042 Builder.CreateStore(StartVal, Alloca); in Codegen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
Dtoy.cpp922 Value *StartVal = Start->IRGen(C); in IRGen() local
923 if (!StartVal) return nullptr; in IRGen()
926 C.getBuilder().CreateStore(StartVal, Alloca); in IRGen()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp1084 Value *StartVal = Start->codegen(); in codegen() local
1085 if (!StartVal) in codegen()
1089 Builder.CreateStore(StartVal, Alloca); in codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp1258 Value *StartVal = Start->Codegen(); in Codegen() local
1259 if (StartVal == 0) return 0; in Codegen()
1262 Builder.CreateStore(StartVal, Alloca); in Codegen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
Dtoy.cpp922 Value *StartVal = Start->IRGen(C); in IRGen() local
923 if (!StartVal) return nullptr; in IRGen()
926 C.getBuilder().CreateStore(StartVal, Alloca); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/initial/
Dtoy.cpp922 Value *StartVal = Start->IRGen(C); in IRGen() local
923 if (!StartVal) return nullptr; in IRGen()
926 C.getBuilder().CreateStore(StartVal, Alloca); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
Dtoy.cpp923 Value *StartVal = Start->IRGen(C); in IRGen() local
924 if (!StartVal) return nullptr; in IRGen()
927 C.getBuilder().CreateStore(StartVal, Alloca); in IRGen()
/external/llvm/docs/tutorial/
DLangImpl5.rst612 Value *StartVal = Start->codegen();
613 if (StartVal == 0) return 0;
647 Variable->addIncoming(StartVal, PreheaderBB);
DLangImpl7.rst381 Value *StartVal = Start->codegen();
382 if (!StartVal)
386 Builder.CreateStore(StartVal, Alloca);
/external/llvm/lib/Target/NVPTX/
DNVPTXISelDAGToDAG.cpp4831 uint64_t StartVal = StartConst->getZExtValue(); in SelectBFE() local
4834 uint64_t GoodBits = Start.getValueType().getSizeInBits() - StartVal; in SelectBFE()
4841 Start = CurDAG->getTargetConstant(StartVal, DL, MVT::i32); in SelectBFE()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp3779 const SCEV *StartVal = getSCEV(StartValueV); in createAddRecFromPHI() local
3780 const SCEV *PHISCEV = getAddRecExpr(StartVal, Accum, L, Flags); in createAddRecFromPHI()
3785 (void)getAddRecExpr(getAddExpr(StartVal, Accum), Accum, L, Flags); in createAddRecFromPHI()
3809 const SCEV *StartVal = getSCEV(StartValueV); in createAddRecFromPHI() local
3810 if (Start == StartVal) { in createAddRecFromPHI()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp3370 Value *StartVal = (part == 0) ? VectorStart : Identity; in vectorizeLoop() local
3371 cast<PHINode>(VecRdxPhi[part])->addIncoming(StartVal, in vectorizeLoop()