comparison src/cpu/x86/vm/templateTable_x86_32.cpp @ 6740:75f33eecc1b3

7196681: NPG: Some JSR 292 tests crash in Windows exception handler Summary: There was a rogue os::breakpoint() call in log_dependency left over from the jsr292 merge. Also changed verify_oop() calls for metadata to verify_{method,klass}_ptr. Reviewed-by: kvn, twisti
author coleenp
date Tue, 11 Sep 2012 20:20:38 -0400
parents da91efe96a93
children f6b0eb4e44cf d8ce2825b193
comparison
equal deleted inserted replaced
6739:8a02ca5e5576 6740:75f33eecc1b3
3105 } 3105 }
3106 3106
3107 prepare_invoke(byte_no, 3107 prepare_invoke(byte_no,
3108 rbx_method, rax_mtype, // get f2 Method*, f1 MethodType 3108 rbx_method, rax_mtype, // get f2 Method*, f1 MethodType
3109 rcx_recv); 3109 rcx_recv);
3110 __ verify_oop(rbx_method); 3110 __ verify_method_ptr(rbx_method);
3111 __ verify_oop(rcx_recv); 3111 __ verify_oop(rcx_recv);
3112 __ null_check(rcx_recv); 3112 __ null_check(rcx_recv);
3113 3113
3114 // Note: rax_mtype is already pushed (if necessary) by prepare_invoke 3114 // Note: rax_mtype is already pushed (if necessary) by prepare_invoke
3115 3115