hotspot/src/share/vm/opto/chaitin.cpp
changeset 29580 a67a581cfe11
parent 29474 81a5c5330d08
child 30239 dc83236ebb28
equal deleted inserted replaced
29477:82f545c6572b 29580:a67a581cfe11
   600   }
   600   }
   601   assert((int)(_matcher._new_SP+_framesize) >= (int)_matcher._out_arg_limit, "framesize must be large enough");
   601   assert((int)(_matcher._new_SP+_framesize) >= (int)_matcher._out_arg_limit, "framesize must be large enough");
   602 
   602 
   603   // This frame must preserve the required fp alignment
   603   // This frame must preserve the required fp alignment
   604   _framesize = round_to(_framesize, Matcher::stack_alignment_in_slots());
   604   _framesize = round_to(_framesize, Matcher::stack_alignment_in_slots());
   605   assert( _framesize >= 0 && _framesize <= 1000000, "sanity check" );
   605   assert(_framesize <= 1000000, "sanity check");
   606 #ifndef PRODUCT
   606 #ifndef PRODUCT
   607   _total_framesize += _framesize;
   607   _total_framesize += _framesize;
   608   if ((int)_framesize > _max_framesize) {
   608   if ((int)_framesize > _max_framesize) {
   609     _max_framesize = _framesize;
   609     _max_framesize = _framesize;
   610   }
   610   }