comparison src/share/vm/interpreter/templateInterpreter.cpp @ 6084:6759698e3140

7133857: exp() and pow() should use the x87 ISA on x86 Summary: use x87 instructions to implement exp() and pow() in interpreter/c1/c2. Reviewed-by: kvn, never, twisti
author roland
date Tue, 15 May 2012 10:10:23 +0200
parents d83ac25d0304
children 1d7922586cf6
comparison
equal deleted inserted replaced
6057:8f972594effc 6084:6759698e3140
368 method_entry(java_lang_math_tan ) 368 method_entry(java_lang_math_tan )
369 method_entry(java_lang_math_abs ) 369 method_entry(java_lang_math_abs )
370 method_entry(java_lang_math_sqrt ) 370 method_entry(java_lang_math_sqrt )
371 method_entry(java_lang_math_log ) 371 method_entry(java_lang_math_log )
372 method_entry(java_lang_math_log10) 372 method_entry(java_lang_math_log10)
373 method_entry(java_lang_math_exp )
374 method_entry(java_lang_math_pow )
373 method_entry(java_lang_ref_reference_get) 375 method_entry(java_lang_ref_reference_get)
374 376
375 // all native method kinds (must be one contiguous block) 377 // all native method kinds (must be one contiguous block)
376 Interpreter::_native_entry_begin = Interpreter::code()->code_end(); 378 Interpreter::_native_entry_begin = Interpreter::code()->code_end();
377 method_entry(native) 379 method_entry(native)