Searched defs:ThenV (Results 1 - 15 of 15) sorted by relevance
/external/llvm/examples/Kaleidoscope/Chapter5/ |
H A D | toy.cpp | 618 Value *ThenV = Then->codegen(); local 619 if (!ThenV) 644 PN->addIncoming(ThenV, ThenBB);
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
H A D | toy.cpp | 729 Value *ThenV = Then->codegen(); local 730 if (!ThenV) 755 PN->addIncoming(ThenV, ThenBB);
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
H A D | toy.cpp | 834 Value *ThenV = Then->codegen(); local 835 if (!ThenV) 860 PN->addIncoming(ThenV, ThenBB);
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
H A D | toy.cpp | 1025 Value *ThenV = Then->codegen(); local 1026 if (!ThenV) 1051 PN->addIncoming(ThenV, ThenBB);
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
H A D | toy-jit.cpp | 760 Value *ThenV = Then->Codegen(); local 761 if (ThenV == 0) return 0; 784 PN->addIncoming(ThenV, ThenBB);
|
H A D | toy.cpp | 1124 Value *ThenV = Then->Codegen(); local 1125 if (ThenV == 0) return 0; 1148 PN->addIncoming(ThenV, ThenBB);
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
H A D | toy.cpp | 1202 Value *ThenV = Then->Codegen(); local 1203 if (ThenV == 0) return 0; 1226 PN->addIncoming(ThenV, ThenBB);
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
H A D | toy.cpp | 982 Value *ThenV = Then->Codegen(); local 983 if (ThenV == 0) return 0; 1006 PN->addIncoming(ThenV, ThenBB);
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
H A D | toy-jit.cpp | 742 Value *ThenV = Then->Codegen(); local 743 if (ThenV == 0) return 0; 766 PN->addIncoming(ThenV, ThenBB);
|
H A D | toy.cpp | 1022 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 D | toy.cpp | 867 Value *ThenV = Then->IRGen(C); local 868 if (!ThenV) return nullptr; 891 PN->addIncoming(ThenV, ThenBB);
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
H A D | toy.cpp | 866 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 D | toy.cpp | 866 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 D | toy.cpp | 866 Value *ThenV = Then->IRGen(C); local 867 if (!ThenV) return nullptr; 890 PN->addIncoming(ThenV, ThenBB);
|
/external/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 1578 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 346 milliseconds