/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 618 Value *ThenV = Then->codegen(); in codegen() local 619 if (!ThenV) in codegen() 644 PN->addIncoming(ThenV, ThenBB); in codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 729 Value *ThenV = Then->codegen(); in codegen() local 730 if (!ThenV) in codegen() 755 PN->addIncoming(ThenV, ThenBB); in codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 742 Value *ThenV = Then->Codegen(); in Codegen() local 743 if (ThenV == 0) return 0; in Codegen() 766 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
D | toy.cpp | 1022 Value *ThenV = Then->Codegen(); in Codegen() local 1023 if (ThenV == 0) return 0; in Codegen() 1046 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 760 Value *ThenV = Then->Codegen(); in Codegen() local 761 if (ThenV == 0) return 0; in Codegen() 784 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
D | toy.cpp | 1124 Value *ThenV = Then->Codegen(); in Codegen() local 1125 if (ThenV == 0) return 0; in Codegen() 1148 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 834 Value *ThenV = Then->codegen(); in codegen() local 835 if (!ThenV) in codegen() 860 PN->addIncoming(ThenV, ThenBB); in codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 982 Value *ThenV = Then->Codegen(); in Codegen() local 983 if (ThenV == 0) return 0; in Codegen() 1006 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
D | toy.cpp | 866 Value *ThenV = Then->IRGen(C); in IRGen() local 867 if (!ThenV) return nullptr; in IRGen() 890 PN->addIncoming(ThenV, ThenBB); in IRGen()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 1025 Value *ThenV = Then->codegen(); in codegen() local 1026 if (!ThenV) in codegen() 1051 PN->addIncoming(ThenV, ThenBB); in codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 1202 Value *ThenV = Then->Codegen(); in Codegen() local 1203 if (ThenV == 0) return 0; in Codegen() 1226 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 866 Value *ThenV = Then->IRGen(C); in IRGen() local 867 if (!ThenV) return nullptr; in IRGen() 890 PN->addIncoming(ThenV, ThenBB); in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 866 Value *ThenV = Then->IRGen(C); in IRGen() local 867 if (!ThenV) return nullptr; in IRGen() 890 PN->addIncoming(ThenV, ThenBB); in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 867 Value *ThenV = Then->IRGen(C); in IRGen() local 868 if (!ThenV) return nullptr; in IRGen() 891 PN->addIncoming(ThenV, ThenBB); in IRGen()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 1578 Value *ThenV = PN->getIncomingValueForBlock(ThenBB); in SpeculativelyExecuteBB() local 1582 if (ThenV == OrigV) in SpeculativelyExecuteBB() 1587 passingValueIsAlwaysUndefined(ThenV, PN)) in SpeculativelyExecuteBB() 1592 ConstantExpr *ThenCE = dyn_cast<ConstantExpr>(ThenV); in SpeculativelyExecuteBB() 1651 Value *ThenV = PN->getIncomingValue(ThenI); in SpeculativelyExecuteBB() local 1654 if (OrigV == ThenV) in SpeculativelyExecuteBB() 1660 Value *TrueV = ThenV, *FalseV = OrigV; in SpeculativelyExecuteBB()
|
/external/llvm/docs/tutorial/ |
D | LangImpl5.rst | 340 Value *ThenV = Then->codegen(); 341 if (!ThenV) 405 PN->addIncoming(ThenV, ThenBB);
|