src/share/vm/ci/ciMethod.cpp

changeset 6723
0bf37f737702
parent 6370
d8a0bb6f62a5
child 6876
710a3c8b516e
child 7144
119875f0fc67
equal deleted inserted replaced
6721:ad51f24671c2 6723:0bf37f737702
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.

mercurial