Searched defs:ThenV (Results 1 - 15 of 15) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp618 Value *ThenV = Then->codegen(); local
619 if (!ThenV)
644 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp729 Value *ThenV = Then->codegen(); local
730 if (!ThenV)
755 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp834 Value *ThenV = Then->codegen(); local
835 if (!ThenV)
860 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp1025 Value *ThenV = Then->codegen(); local
1026 if (!ThenV)
1051 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp760 Value *ThenV = Then->Codegen(); local
761 if (ThenV == 0) return 0;
784 PN->addIncoming(ThenV, ThenBB);
H A Dtoy.cpp1124 Value *ThenV = Then->Codegen(); local
1125 if (ThenV == 0) return 0;
1148 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1202 Value *ThenV = Then->Codegen(); local
1203 if (ThenV == 0) return 0;
1226 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp982 Value *ThenV = Then->Codegen(); local
983 if (ThenV == 0) return 0;
1006 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp742 Value *ThenV = Then->Codegen(); local
743 if (ThenV == 0) return 0;
766 PN->addIncoming(ThenV, ThenBB);
H A Dtoy.cpp1022 Value *ThenV = Then->Codegen(); local
1023 if (ThenV == 0) return 0;
1046 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp867 Value *ThenV = Then->IRGen(C); local
868 if (!ThenV) return nullptr;
891 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp866 Value *ThenV = Then->IRGen(C); local
867 if (!ThenV) return nullptr;
890 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp866 Value *ThenV = Then->IRGen(C); local
867 if (!ThenV) return nullptr;
890 PN->addIncoming(ThenV, ThenBB);
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp866 Value *ThenV = Then->IRGen(C); local
867 if (!ThenV) return nullptr;
890 PN->addIncoming(ThenV, ThenBB);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1578 Value *ThenV = PN->getIncomingValueForBlock(ThenBB); local
1582 if (ThenV == OrigV)
1587 passingValueIsAlwaysUndefined(ThenV, PN))
1592 ConstantExpr *ThenCE = dyn_cast<ConstantExpr>(ThenV);
1651 Value *ThenV = PN->getIncomingValue(ThenI); local
1654 if (OrigV == ThenV)
1660 Value *TrueV = ThenV, *FalseV = OrigV;

Completed in 195 milliseconds