Lines Matching refs:blocks_
433 if (in_new_block || prev_conditions.blocks_.Size() == 0) { in UpdateConditions()
449 FunctionalList<BranchCondition> prev_front = blocks_.Front(); in AddCondition()
450 if (hint.blocks_.Size() > 0) { in AddCondition()
451 prev_front.PushFront(branch_condition, zone, hint.blocks_.Front()); in AddCondition()
455 blocks_.DropFront(); in AddCondition()
456 blocks_.PushFront(prev_front, zone); in AddCondition()
470 blocks_.PushFront(new_block, zone); in AddConditionInNewBlock()
492 while (other.blocks_.Size() > blocks_.Size()) other.blocks_.DropFront(); in ResetToCommonAncestor()
493 while (blocks_.Size() > other.blocks_.Size()) { in ResetToCommonAncestor()
494 for (BranchCondition branch_condition : blocks_.Front()) { in ResetToCommonAncestor()
497 blocks_.DropFront(); in ResetToCommonAncestor()
499 while (blocks_ != other.blocks_) { in ResetToCommonAncestor()
500 for (BranchCondition branch_condition : blocks_.Front()) { in ResetToCommonAncestor()
503 blocks_.DropFront(); in ResetToCommonAncestor()
504 other.blocks_.DropFront(); in ResetToCommonAncestor()
512 for (auto block : blocks_) { in BlocksAndConditionsInvariant()