src/share/vm/opto/chaitin.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6761594 Cdiff src/share/vm/opto/chaitin.cpp

src/share/vm/opto/chaitin.cpp

Print this page

        

*** 440,450 **** assert((int)(_matcher._new_SP+_framesize) >= (int)_matcher._out_arg_limit, "framesize must be large enough"); // This frame must preserve the required fp alignment const int stack_alignment_in_words = Matcher::stack_alignment_in_slots(); if (stack_alignment_in_words > 0) ! _framesize = round_to(_framesize, Matcher::stack_alignment_in_bytes()); assert( _framesize >= 0 && _framesize <= 1000000, "sanity check" ); #ifndef PRODUCT _total_framesize += _framesize; if( (int)_framesize > _max_framesize ) _max_framesize = _framesize; --- 440,450 ---- assert((int)(_matcher._new_SP+_framesize) >= (int)_matcher._out_arg_limit, "framesize must be large enough"); // This frame must preserve the required fp alignment const int stack_alignment_in_words = Matcher::stack_alignment_in_slots(); if (stack_alignment_in_words > 0) ! _framesize = round_to(_framesize, stack_alignment_in_words); assert( _framesize >= 0 && _framesize <= 1000000, "sanity check" ); #ifndef PRODUCT _total_framesize += _framesize; if( (int)_framesize > _max_framesize ) _max_framesize = _framesize;
src/share/vm/opto/chaitin.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File