hotspot/src/share/vm/ci/ciMethod.cpp
changeset 24018 77b156916bab
parent 23525 e3eb08ead679
child 24442 4d4ae31dea26
equal deleted inserted replaced
24016:2927072ed5fb 24018:77b156916bab
    78   _max_stack          = h_m()->max_stack();
    78   _max_stack          = h_m()->max_stack();
    79   _max_locals         = h_m()->max_locals();
    79   _max_locals         = h_m()->max_locals();
    80   _code_size          = h_m()->code_size();
    80   _code_size          = h_m()->code_size();
    81   _intrinsic_id       = h_m()->intrinsic_id();
    81   _intrinsic_id       = h_m()->intrinsic_id();
    82   _handler_count      = h_m()->exception_table_length();
    82   _handler_count      = h_m()->exception_table_length();
       
    83   _size_of_parameters = h_m()->size_of_parameters();
    83   _uses_monitors      = h_m()->access_flags().has_monitor_bytecodes();
    84   _uses_monitors      = h_m()->access_flags().has_monitor_bytecodes();
    84   _balanced_monitors  = !_uses_monitors || h_m()->access_flags().is_monitor_matching();
    85   _balanced_monitors  = !_uses_monitors || h_m()->access_flags().is_monitor_matching();
    85   _is_c1_compilable   = !h_m()->is_not_c1_compilable();
    86   _is_c1_compilable   = !h_m()->is_not_c1_compilable();
    86   _is_c2_compilable   = !h_m()->is_not_c2_compilable();
    87   _is_c2_compilable   = !h_m()->is_not_c2_compilable();
    87   // Lazy fields, filled in on demand.  Require allocation.
    88   // Lazy fields, filled in on demand.  Require allocation.