Searched defs:AggressiveInsts (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp252 /// If AggressiveInsts is non-null, and if V does not dominate BB, we check to
265 SmallPtrSet<Instruction*, 4> *AggressiveInsts,
291 if (AggressiveInsts == 0) return false;
294 if (AggressiveInsts->count(I)) return true;
312 if (!DominatesMergePoint(*i, BB, AggressiveInsts, CostRemaining))
315 AggressiveInsts->insert(I);
1257 SmallPtrSet<Instruction*, 4> AggressiveInsts;
1269 if (!DominatesMergePoint(PN->getIncomingValue(0), BB, &AggressiveInsts,
1271 !DominatesMergePoint(PN->getIncomingValue(1), BB, &AggressiveInsts,
1301 if (!AggressiveInsts
264 DominatesMergePoint(Value *V, BasicBlock *BB, SmallPtrSet<Instruction*, 4> *AggressiveInsts, unsigned &CostRemaining) argument
[all...]

Completed in 74 milliseconds