Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp1158 Value *BB1V = PN->getIncomingValueForBlock(BB1); in isSafeToHoistInvoke() local
1160 if (BB1V != BB2V && (BB1V == I1 || BB2V == I2)) { in isSafeToHoistInvoke()
1257 Value *BB1V = PN->getIncomingValueForBlock(BB1); in HoistThenElseCodeToIf() local
1259 if (BB1V == BB2V) in HoistThenElseCodeToIf()
1264 if (passingValueIsAlwaysUndefined(BB1V, PN) || in HoistThenElseCodeToIf()
1268 if (isa<ConstantExpr>(BB1V) && !isSafeToSpeculativelyExecute(BB1V)) in HoistThenElseCodeToIf()
1294 Value *BB1V = PN->getIncomingValueForBlock(BB1); 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.cpp827 Value *BB1V = PN->getIncomingValueForBlock(BB1); in isSafeToHoistInvoke() local
829 if (BB1V != BB2V && (BB1V==I1 || BB2V==I2)) { in isSafeToHoistInvoke()
923 Value *BB1V = PN->getIncomingValueForBlock(BB1); 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()