| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter5/ |
| D | toy.cpp | 644 Value *ThenV = Then->codegen(); in codegen() local 645 if (!ThenV) in codegen() 669 PN->addIncoming(ThenV, ThenBB); in codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter6/ |
| D | toy.cpp | 756 Value *ThenV = Then->codegen(); in codegen() local 757 if (!ThenV) in codegen() 781 PN->addIncoming(ThenV, ThenBB); in codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| D | toy-jit.cpp | 740 Value *ThenV = Then->Codegen(); in Codegen() local 741 if (ThenV == 0) return 0; in Codegen() 763 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
| D | toy.cpp | 1020 Value *ThenV = Then->Codegen(); in Codegen() local 1021 if (ThenV == 0) return 0; in Codegen() 1043 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| D | toy-jit.cpp | 758 Value *ThenV = Then->Codegen(); in Codegen() local 759 if (ThenV == 0) return 0; in Codegen() 781 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
| D | toy.cpp | 1122 Value *ThenV = Then->Codegen(); in Codegen() local 1123 if (ThenV == 0) return 0; in Codegen() 1145 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
| D | toy.cpp | 857 Value *ThenV = Then->codegen(); in codegen() local 858 if (!ThenV) in codegen() 882 PN->addIncoming(ThenV, ThenBB); in codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
| D | toy.cpp | 857 Value *ThenV = Then->codegen(); in codegen() local 858 if (!ThenV) in codegen() 882 PN->addIncoming(ThenV, ThenBB); in codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter8/ |
| D | toy.cpp | 861 Value *ThenV = Then->codegen(); in codegen() local 862 if (!ThenV) in codegen() 886 PN->addIncoming(ThenV, ThenBB); in codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter7/ |
| D | toy.cpp | 863 Value *ThenV = Then->codegen(); in codegen() local 864 if (!ThenV) in codegen() 888 PN->addIncoming(ThenV, ThenBB); in codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| D | toy.cpp | 840 Value *ThenV = Then->codegen(); in codegen() local 841 if (!ThenV) in codegen() 865 PN->addIncoming(ThenV, ThenBB); in codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
| D | toy.cpp | 857 Value *ThenV = Then->codegen(); in codegen() local 858 if (!ThenV) in codegen() 882 PN->addIncoming(ThenV, ThenBB); in codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/initial/ |
| D | toy.cpp | 980 Value *ThenV = Then->Codegen(); in Codegen() local 981 if (ThenV == 0) return 0; in Codegen() 1003 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/Chapter9/ |
| D | toy.cpp | 1031 Value *ThenV = Then->codegen(); in codegen() local 1032 if (!ThenV) in codegen() 1056 PN->addIncoming(ThenV, ThenBB); in codegen()
|
| /openbsd/src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/ |
| D | toy.cpp | 1200 Value *ThenV = Then->Codegen(); in Codegen() local 1201 if (ThenV == 0) return 0; in Codegen() 1223 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
| /openbsd/src/gnu/llvm/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| D | LangImpl05.rst | 341 Value *ThenV = Then->codegen(); 342 if (!ThenV) 406 PN->addIncoming(ThenV, ThenBB);
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| D | SimplifyCFG.cpp | 2779 Value *ThenV = PN.getIncomingValueForBlock(ThenBB); in validateAndCostRequiredSelects() local 2783 if (ThenV == OrigV) in validateAndCostRequiredSelects() 2791 passingValueIsAlwaysUndefined(ThenV, &PN)) in validateAndCostRequiredSelects() 2796 ConstantExpr *ThenCE = dyn_cast<ConstantExpr>(ThenV); in validateAndCostRequiredSelects() 3058 Value *ThenV = PN.getIncomingValue(ThenI); in SpeculativelyExecuteBB() local 3061 if (OrigV == ThenV) in SpeculativelyExecuteBB() 3067 Value *TrueV = ThenV, *FalseV = OrigV; in SpeculativelyExecuteBB()
|