comparison src/cpu/x86/vm/interp_masm_x86_32.cpp @ 612:afa80fa86d22

Merge
author dcubed
date Mon, 02 Mar 2009 14:43:36 -0700
parents dc3ad84615cf 70998f2e05ef
children 2f2f54ed12ce
comparison
equal deleted inserted replaced
593:1b68c738c0d9 612:afa80fa86d22
1510 get_thread(rcx); 1510 get_thread(rcx);
1511 get_method(rbx); 1511 get_method(rbx);
1512 call_VM_leaf( 1512 call_VM_leaf(
1513 CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_entry), rcx, rbx); 1513 CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_entry), rcx, rbx);
1514 } 1514 }
1515
1516 // RedefineClasses() tracing support for obsolete method entry
1517 if (RC_TRACE_IN_RANGE(0x00001000, 0x00002000)) {
1518 get_thread(rcx);
1519 get_method(rbx);
1520 call_VM_leaf(
1521 CAST_FROM_FN_PTR(address, SharedRuntime::rc_trace_method_entry),
1522 rcx, rbx);
1523 }
1515 } 1524 }
1516 1525
1517 1526
1518 void InterpreterMacroAssembler::notify_method_exit( 1527 void InterpreterMacroAssembler::notify_method_exit(
1519 TosState state, NotifyMethodExitMode mode) { 1528 TosState state, NotifyMethodExitMode mode) {