Searched refs:ThenV (Results 1 – 11 of 11) sorted by relevance
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 534 Value *ThenV = Then->Codegen(); in Codegen() local 535 if (ThenV == 0) return 0; in Codegen() 558 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 638 Value *ThenV = Then->Codegen(); in Codegen() local 639 if (ThenV == 0) return 0; in Codegen() 662 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 743 Value *ThenV = Then->Codegen(); in Codegen() local 744 if (ThenV == 0) return 0; in Codegen() 767 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
D | toy.cpp | 1023 Value *ThenV = Then->Codegen(); in Codegen() local 1024 if (ThenV == 0) return 0; in Codegen() 1047 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 761 Value *ThenV = Then->Codegen(); in Codegen() local 762 if (ThenV == 0) return 0; in Codegen() 785 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
D | toy.cpp | 1125 Value *ThenV = Then->Codegen(); in Codegen() local 1126 if (ThenV == 0) return 0; in Codegen() 1149 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 734 Value *ThenV = Then->Codegen(); in Codegen() local 735 if (ThenV == 0) return 0; in Codegen() 758 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 983 Value *ThenV = Then->Codegen(); in Codegen() local 984 if (ThenV == 0) return 0; in Codegen() 1007 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 1303 Value *ThenV = Then->Codegen(); in Codegen() local 1304 if (ThenV == 0) return 0; in Codegen() 1327 PN->addIncoming(ThenV, ThenBB); in Codegen()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 1482 Value *ThenV = PN->getIncomingValueForBlock(ThenBB); in SpeculativelyExecuteBB() local 1486 if (ThenV == OrigV) in SpeculativelyExecuteBB() 1491 ConstantExpr *ThenCE = dyn_cast<ConstantExpr>(ThenV); in SpeculativelyExecuteBB() 1543 Value *ThenV = PN->getIncomingValue(ThenI); in SpeculativelyExecuteBB() local 1546 if (OrigV == ThenV) in SpeculativelyExecuteBB() 1552 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);
|