comparison src/share/vm/interpreter/cppInterpreter.cpp @ 6926:a3e2f723f2a5

8000780: make Zero build and run with JDK8 Reviewed-by: coleenp, dholmes, twisti Contributed-by: Roman Kennke <rkennke@redhat.com>
author twisti
date Mon, 29 Oct 2012 11:08:48 -0700
parents e1162778c1c8
children
comparison
equal deleted inserted replaced
6915:a516debe2cee 6926:a3e2f723f2a5
115 method_entry(zerolocals); 115 method_entry(zerolocals);
116 method_entry(zerolocals_synchronized); 116 method_entry(zerolocals_synchronized);
117 method_entry(empty); 117 method_entry(empty);
118 method_entry(accessor); 118 method_entry(accessor);
119 method_entry(abstract); 119 method_entry(abstract);
120 method_entry(method_handle);
121 method_entry(java_lang_math_sin ); 120 method_entry(java_lang_math_sin );
122 method_entry(java_lang_math_cos ); 121 method_entry(java_lang_math_cos );
123 method_entry(java_lang_math_tan ); 122 method_entry(java_lang_math_tan );
124 method_entry(java_lang_math_abs ); 123 method_entry(java_lang_math_abs );
125 method_entry(java_lang_math_sqrt ); 124 method_entry(java_lang_math_sqrt );
126 method_entry(java_lang_math_log ); 125 method_entry(java_lang_math_log );
127 method_entry(java_lang_math_log10 ); 126 method_entry(java_lang_math_log10 );
127 method_entry(java_lang_math_pow );
128 method_entry(java_lang_math_exp );
128 method_entry(java_lang_ref_reference_get); 129 method_entry(java_lang_ref_reference_get);
130
131 initialize_method_handle_entries();
132
129 Interpreter::_native_entry_begin = Interpreter::code()->code_end(); 133 Interpreter::_native_entry_begin = Interpreter::code()->code_end();
130 method_entry(native); 134 method_entry(native);
131 method_entry(native_synchronized); 135 method_entry(native_synchronized);
132 Interpreter::_native_entry_end = Interpreter::code()->code_end(); 136 Interpreter::_native_entry_end = Interpreter::code()->code_end();
133 } 137 }