< prev index next >

src/share/vm/interpreter/templateInterpreter.cpp

Print this page




 401       method_entry(empty)
 402       method_entry(accessor)
 403       method_entry(abstract)
 404       method_entry(java_lang_math_sin  )
 405       method_entry(java_lang_math_cos  )
 406       method_entry(java_lang_math_tan  )
 407       method_entry(java_lang_math_abs  )
 408       method_entry(java_lang_math_sqrt )
 409       method_entry(java_lang_math_log  )
 410       method_entry(java_lang_math_log10)
 411       method_entry(java_lang_math_exp  )
 412       method_entry(java_lang_math_pow  )
 413       method_entry(java_lang_ref_reference_get)
 414 
 415       if (UseCRC32Intrinsics) {
 416         method_entry(java_util_zip_CRC32_update)
 417         method_entry(java_util_zip_CRC32_updateBytes)
 418         method_entry(java_util_zip_CRC32_updateByteBuffer)
 419       }
 420 





 421       method_entry(java_lang_Float_intBitsToFloat);
 422       method_entry(java_lang_Float_floatToRawIntBits);
 423       method_entry(java_lang_Double_longBitsToDouble);
 424       method_entry(java_lang_Double_doubleToRawLongBits);
 425 
 426       initialize_method_handle_entries();
 427 
 428       // all native method kinds (must be one contiguous block)
 429       Interpreter::_native_entry_begin = Interpreter::code()->code_end();
 430       method_entry(native)
 431       method_entry(native_synchronized)
 432       Interpreter::_native_entry_end = Interpreter::code()->code_end();
 433 
 434 #undef method_entry
 435 
 436       // Bytecodes
 437       set_entry_points_for_all_bytes();
 438     }
 439   } while (CodeCacheExtensions::needs_other_interpreter_variant());
 440 




 401       method_entry(empty)
 402       method_entry(accessor)
 403       method_entry(abstract)
 404       method_entry(java_lang_math_sin  )
 405       method_entry(java_lang_math_cos  )
 406       method_entry(java_lang_math_tan  )
 407       method_entry(java_lang_math_abs  )
 408       method_entry(java_lang_math_sqrt )
 409       method_entry(java_lang_math_log  )
 410       method_entry(java_lang_math_log10)
 411       method_entry(java_lang_math_exp  )
 412       method_entry(java_lang_math_pow  )
 413       method_entry(java_lang_ref_reference_get)
 414 
 415       if (UseCRC32Intrinsics) {
 416         method_entry(java_util_zip_CRC32_update)
 417         method_entry(java_util_zip_CRC32_updateBytes)
 418         method_entry(java_util_zip_CRC32_updateByteBuffer)
 419       }
 420 
 421       if (UseCRC32CIntrinsics) {
 422         method_entry(java_util_zip_CRC32C_updateBytes)
 423         method_entry(java_util_zip_CRC32C_updateDirectByteBuffer)
 424       }
 425 
 426       method_entry(java_lang_Float_intBitsToFloat);
 427       method_entry(java_lang_Float_floatToRawIntBits);
 428       method_entry(java_lang_Double_longBitsToDouble);
 429       method_entry(java_lang_Double_doubleToRawLongBits);
 430 
 431       initialize_method_handle_entries();
 432 
 433       // all native method kinds (must be one contiguous block)
 434       Interpreter::_native_entry_begin = Interpreter::code()->code_end();
 435       method_entry(native)
 436       method_entry(native_synchronized)
 437       Interpreter::_native_entry_end = Interpreter::code()->code_end();
 438 
 439 #undef method_entry
 440 
 441       // Bytecodes
 442       set_entry_points_for_all_bytes();
 443     }
 444   } while (CodeCacheExtensions::needs_other_interpreter_variant());
 445 


< prev index next >