/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 593 Value *ThenV = Then->Codegen(); in Codegen() local 594 if (ThenV == 0) in Codegen() 619 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 701 Value *ThenV = Then->Codegen(); in Codegen() local 702 if (ThenV == 0) in Codegen() 727 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 | 806 Value *ThenV = Then->Codegen(); in Codegen() local 807 if (ThenV == 0) in Codegen() 832 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/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/Chapter8/ |
D | toy.cpp | 1005 Value *ThenV = Then->Codegen(); in Codegen() local 1006 if (ThenV == 0) in Codegen() 1031 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 | 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/examples/Kaleidoscope/Orc/initial/ |
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/examples/Kaleidoscope/Orc/lazy_codegen/ |
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/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 868 Value *ThenV = Then->IRGen(C); in IRGen() local 869 if (!ThenV) return nullptr; in IRGen() 892 PN->addIncoming(ThenV, ThenBB); in IRGen()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 1556 Value *ThenV = PN->getIncomingValueForBlock(ThenBB); in SpeculativelyExecuteBB() local 1560 if (ThenV == OrigV) in SpeculativelyExecuteBB() 1565 passingValueIsAlwaysUndefined(ThenV, PN)) in SpeculativelyExecuteBB() 1570 ConstantExpr *ThenCE = dyn_cast<ConstantExpr>(ThenV); in SpeculativelyExecuteBB() 1624 Value *ThenV = PN->getIncomingValue(ThenI); in SpeculativelyExecuteBB() local 1627 if (OrigV == ThenV) in SpeculativelyExecuteBB() 1633 Value *TrueV = ThenV, *FalseV = OrigV; in SpeculativelyExecuteBB()
|
/external/llvm/docs/tutorial/ |
D | LangImpl5.rst | 321 Value *ThenV = Then->Codegen(); 322 if (ThenV == 0) return 0; 384 PN->addIncoming(ThenV, ThenBB);
|