Searched defs:profile_method (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp293 void InterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) { argument
332 if (ProfileInterpreter && profile_method != NULL) {
338 // if no method data exists, go to profile_method
339 __ test_method_data_pointer(*profile_method);
1348 Label profile_method; local
1352 generate_counter_incr(&invocation_counter_overflow, &profile_method, &profile_method_continue);
1397 __ bind(profile_method);
1399 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method));
H A DcppInterpreter_sparc.cpp405 void InterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) { argument
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp571 void InterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) { argument
588 // profile_method is non-null only for interpreted method so
589 // profile_method != NULL == !native_call
H A DtemplateInterpreter_x86_32.cpp345 void InterpreterGenerator::generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue) { argument
384 // profile_method is non-null only for interpreted method so
385 // profile_method != NULL == !native_call
388 if (ProfileInterpreter && profile_method != NULL) {
394 // if no method data exists, go to profile_method
395 __ test_method_data_pointer(rax, *profile_method);
1364 Label profile_method; local
1367 generate_counter_incr(&invocation_counter_overflow, &profile_method, &profile_method_continue);
1423 __ bind(profile_method);
1424 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method));
[all...]
H A DtemplateInterpreter_x86_64.cpp300 Label* profile_method,
342 // profile_method is non-null only for interpreted method so
343 // profile_method != NULL == !native_call
345 if (ProfileInterpreter && profile_method != NULL) {
350 // if no method data exists, go to profile_method
351 __ test_method_data_pointer(rax, *profile_method);
1384 Label profile_method; local
1388 &profile_method,
1447 __ bind(profile_method);
1448 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method));
298 generate_counter_incr( Label* overflow, Label* profile_method, Label* profile_method_continue) argument
[all...]
H A DtemplateTable_x86_32.cpp1616 Label profile_method; local
1666 __ test_method_data_pointer(rax, profile_method);
1708 __ bind(profile_method);
1709 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method));
H A DtemplateTable_x86_64.cpp1646 Label profile_method; local
1695 __ test_method_data_pointer(rax, profile_method);
1740 __ bind(profile_method);
1741 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::profile_method));

Completed in 102 milliseconds