Searched refs:_forward_branches (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp428 intArray _forward_branches; // number of incoming forward branches for each block member in class:ComputeLinearScanOrder
443 // accessors for _forward_branches
444 void inc_forward_branches(BlockBegin* b) { _forward_branches.at_put(b->block_id(), _forward_branches.at(b->block_id()) + 1); }
445 int dec_forward_branches(BlockBegin* b) { _forward_branches.at_put(b->block_id(), _forward_branches.at(b->block_id()) - 1); return _forward_branches.at(b->block_id()); }
495 _forward_branches(_max_block_id, 0),

Completed in 43 milliseconds