Searched defs:StartVal (Results 1 - 16 of 16) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp666 Value *StartVal = Start->codegen(); local
667 if (!StartVal)
686 Variable->addIncoming(StartVal, PreheaderBB);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp777 Value *StartVal = Start->codegen(); local
778 if (!StartVal)
797 Variable->addIncoming(StartVal, PreheaderBB);
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp891 Value *StartVal = Start->codegen(); local
892 if (!StartVal)
896 Builder.CreateStore(StartVal, Alloca);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp4831 uint64_t StartVal = StartConst->getZExtValue(); local
4834 uint64_t GoodBits = Start.getValueType().getSizeInBits() - StartVal;
4841 Start = CurDAG->getTargetConstant(StartVal, DL, MVT::i32);
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp1084 Value *StartVal = Start->codegen(); local
1085 if (!StartVal)
1089 Builder.CreateStore(StartVal, Alloca);
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp816 Value *StartVal = Start->Codegen(); local
817 if (StartVal == 0) return 0;
820 Builder.CreateStore(StartVal, Alloca);
H A Dtoy.cpp1180 Value *StartVal = Start->Codegen(); local
1181 if (StartVal == 0) return 0;
1184 Builder.CreateStore(StartVal, Alloca);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1258 Value *StartVal = Start->Codegen(); local
1259 if (StartVal == 0) return 0;
1262 Builder.CreateStore(StartVal, Alloca);
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp1038 Value *StartVal = Start->Codegen(); local
1039 if (StartVal == 0) return 0;
1042 Builder.CreateStore(StartVal, Alloca);
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp798 Value *StartVal = Start->Codegen(); local
799 if (StartVal == 0) return 0;
802 Builder.CreateStore(StartVal, Alloca);
H A Dtoy.cpp1078 Value *StartVal = Start->Codegen(); local
1079 if (StartVal == 0) return 0;
1082 Builder.CreateStore(StartVal, Alloca);
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp923 Value *StartVal = Start->IRGen(C); local
924 if (!StartVal) return nullptr;
927 C.getBuilder().CreateStore(StartVal, Alloca);
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp922 Value *StartVal = Start->IRGen(C); local
923 if (!StartVal) return nullptr;
926 C.getBuilder().CreateStore(StartVal, Alloca);
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp922 Value *StartVal = Start->IRGen(C); local
923 if (!StartVal) return nullptr;
926 C.getBuilder().CreateStore(StartVal, Alloca);
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp922 Value *StartVal = Start->IRGen(C); local
923 if (!StartVal) return nullptr;
926 C.getBuilder().CreateStore(StartVal, Alloca);
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3370 Value *StartVal = (part == 0) ? VectorStart : Identity; local
3371 cast<PHINode>(VecRdxPhi[part])->addIncoming(StartVal,

Completed in 459 milliseconds