Home
last modified time | relevance | path

Searched refs:BB2V (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp1159 Value *BB2V = PN->getIncomingValueForBlock(BB2); in isSafeToHoistInvoke() local
1160 if (BB1V != BB2V && (BB1V == I1 || BB2V == I2)) { in isSafeToHoistInvoke()
1258 Value *BB2V = PN->getIncomingValueForBlock(BB2); in HoistThenElseCodeToIf() local
1259 if (BB1V == BB2V) in HoistThenElseCodeToIf()
1265 passingValueIsAlwaysUndefined(BB2V, PN)) in HoistThenElseCodeToIf()
1270 if (isa<ConstantExpr>(BB2V) && !isSafeToSpeculativelyExecute(BB2V)) in HoistThenElseCodeToIf()
1295 Value *BB2V = PN->getIncomingValueForBlock(BB2); in HoistThenElseCodeToIf() local
1296 if (BB1V == BB2V) in HoistThenElseCodeToIf()
1301 SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)]; in HoistThenElseCodeToIf()
1304 Builder.CreateSelect(BI->getCondition(), BB1V, BB2V, in HoistThenElseCodeToIf()
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DSimplifyCFG.cpp828 Value *BB2V = PN->getIncomingValueForBlock(BB2); in isSafeToHoistInvoke() local
829 if (BB1V != BB2V && (BB1V==I1 || BB2V==I2)) { in isSafeToHoistInvoke()
924 Value *BB2V = PN->getIncomingValueForBlock(BB2); in HoistThenElseCodeToIf() local
925 if (BB1V == BB2V) continue; in HoistThenElseCodeToIf()
929 SelectInst *&SI = InsertedSelects[std::make_pair(BB1V, BB2V)]; in HoistThenElseCodeToIf()
932 (Builder.CreateSelect(BI->getCondition(), BB1V, BB2V, in HoistThenElseCodeToIf()
933 BB1V->getName()+"."+BB2V->getName())); in HoistThenElseCodeToIf()