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

/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp271 int body_size = ((IdealLoopTree*)this)->_body.size(); local
274 if( body_size > 255 /* Prevent overflow for large body_size */
275 || (body_size * body_size + live_node_count > MaxNodeLimit) ) {
583 uint body_size = _body.size();
586 if (trip_count > unroll_limit || body_size > unroll_limit) {
598 uint new_body_size = EMPTY_LOOP_SIZE + (body_size - EMPTY_LOOP_SIZE) * trip_count;
600 if (body_size != tst_body_size) // Check for int overflow
705 // Adjust body_size t
[all...]

Completed in 39 milliseconds