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

/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp312 /// that do not dominate BB have a combined cost lower than CostRemaining and
319 /// After this function returns, CostRemaining is decreased by the cost of
321 /// CostRemaining, false is returned and CostRemaining is undefined.
324 unsigned &CostRemaining) {
362 if (Cost > CostRemaining)
365 CostRemaining -= Cost;
370 if (!DominatesMergePoint(*i, BB, AggressiveInsts, CostRemaining))
322 DominatesMergePoint(Value *V, BasicBlock *BB, SmallPtrSet<Instruction*, 4> *AggressiveInsts, unsigned &CostRemaining) argument

Completed in 43 milliseconds