comparison src/share/vm/ci/ciMethod.cpp @ 17980:0bf37f737702

8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9 Summary: make compiled code bang the stack by the worst case size of the interpreter frame at deoptimization points. Reviewed-by: twisti, kvn
author roland
date Tue, 01 Apr 2014 09:36:49 +0200
parents d8a0bb6f62a5
children 52b4284cb496 119875f0fc67
comparison
equal deleted inserted replaced
17978:ad51f24671c2 17980: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.