comparison src/share/vm/oops/methodOop.hpp @ 1793:d257356e35f0

6939224: MethodHandle.invokeGeneric needs to perform the correct set of conversions Reviewed-by: never
author jrose
date Mon, 13 Sep 2010 23:24:30 -0700
parents d5d065957597
children a4c7fe54bf3f
comparison
equal deleted inserted replaced
1792:d20603ee9e10 1793:d257356e35f0
514 514
515 // for code generation 515 // for code generation
516 static int method_data_offset_in_bytes() { return offset_of(methodOopDesc, _method_data); } 516 static int method_data_offset_in_bytes() { return offset_of(methodOopDesc, _method_data); }
517 static int interpreter_invocation_counter_offset_in_bytes() 517 static int interpreter_invocation_counter_offset_in_bytes()
518 { return offset_of(methodOopDesc, _interpreter_invocation_count); } 518 { return offset_of(methodOopDesc, _interpreter_invocation_count); }
519 static int intrinsic_id_offset_in_bytes() { return offset_of(methodOopDesc, _intrinsic_id); }
520 static int intrinsic_id_size_in_bytes() { return sizeof(u1); }
519 521
520 // Static methods that are used to implement member methods where an exposed this pointer 522 // Static methods that are used to implement member methods where an exposed this pointer
521 // is needed due to possible GCs 523 // is needed due to possible GCs
522 static objArrayHandle resolved_checked_exceptions_impl(methodOop this_oop, TRAPS); 524 static objArrayHandle resolved_checked_exceptions_impl(methodOop this_oop, TRAPS);
523 525