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

/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.cpp117 // Compute the size of first 'inst_cnt' instructions in this block.
119 // less then 'inst_cnt' instructions. Stop, and return 0 if sum_size
121 uint Block::compute_first_inst_size(uint& sum_size, uint inst_cnt,
124 for( uint j = 0; j < last_inst && inst_cnt > 0; j++ ) {
127 inst_cnt--;
131 // since all inst_cnt instructions will not fit even if we align them.
138 return inst_cnt;
H A Doutput.cpp315 uint inst_cnt = NumberOfLoopInstrToAlign; local
316 inst_cnt = b->compute_first_inst_size(sum_size, inst_cnt, _regalloc);
321 while( inst_cnt > 0 &&
327 inst_cnt = nb->compute_first_inst_size(sum_size, inst_cnt, _regalloc);
328 } // while( inst_cnt > 0 && i < last_block )
H A Dblock.hpp191 uint compute_first_inst_size(uint& sum_size, uint inst_cnt, PhaseRegAlloc* ra);

Completed in 213 milliseconds