hotspot/src/share/vm/ci/ciMethod.cpp
changeset 35071 a0910b1d3e0d
parent 34317 e93b85bf4cc2
child 38059 86ab3f0a9f87
child 38133 78b95467b9f1
equal deleted inserted replaced
35066:cd4ac076bf7f 35071:a0910b1d3e0d
    89   _size_of_parameters = h_m()->size_of_parameters();
    89   _size_of_parameters = h_m()->size_of_parameters();
    90   _uses_monitors      = h_m()->access_flags().has_monitor_bytecodes();
    90   _uses_monitors      = h_m()->access_flags().has_monitor_bytecodes();
    91   _balanced_monitors  = !_uses_monitors || h_m()->access_flags().is_monitor_matching();
    91   _balanced_monitors  = !_uses_monitors || h_m()->access_flags().is_monitor_matching();
    92   _is_c1_compilable   = !h_m()->is_not_c1_compilable();
    92   _is_c1_compilable   = !h_m()->is_not_c1_compilable();
    93   _is_c2_compilable   = !h_m()->is_not_c2_compilable();
    93   _is_c2_compilable   = !h_m()->is_not_c2_compilable();
       
    94   _has_reserved_stack_access = h_m()->has_reserved_stack_access();
    94   // Lazy fields, filled in on demand.  Require allocation.
    95   // Lazy fields, filled in on demand.  Require allocation.
    95   _code               = NULL;
    96   _code               = NULL;
    96   _exception_handlers = NULL;
    97   _exception_handlers = NULL;
    97   _liveness           = NULL;
    98   _liveness           = NULL;
    98   _method_blocks = NULL;
    99   _method_blocks = NULL;