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

Merge
author dcubed
date Mon, 02 Mar 2009 14:43:36 -0700
parents 52a431267315 70998f2e05ef
children 2f2f54ed12ce
comparison
equal deleted inserted replaced
593:1b68c738c0d9 612:afa80fa86d22
1591 SkipIfEqual skip(this, &DTraceMethodProbes, false); 1591 SkipIfEqual skip(this, &DTraceMethodProbes, false);
1592 get_method(c_rarg1); 1592 get_method(c_rarg1);
1593 call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_entry), 1593 call_VM_leaf(CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_entry),
1594 r15_thread, c_rarg1); 1594 r15_thread, c_rarg1);
1595 } 1595 }
1596
1597 // RedefineClasses() tracing support for obsolete method entry
1598 if (RC_TRACE_IN_RANGE(0x00001000, 0x00002000)) {
1599 get_method(c_rarg1);
1600 call_VM_leaf(
1601 CAST_FROM_FN_PTR(address, SharedRuntime::rc_trace_method_entry),
1602 r15_thread, c_rarg1);
1603 }
1596 } 1604 }
1597 1605
1598 1606
1599 void InterpreterMacroAssembler::notify_method_exit( 1607 void InterpreterMacroAssembler::notify_method_exit(
1600 TosState state, NotifyMethodExitMode mode) { 1608 TosState state, NotifyMethodExitMode mode) {