< prev index next >

src/share/vm/jvmci/jvmciCompilerToVM.cpp

Print this page

        

*** 119,130 **** extern uint64_t jvmciHotSpotVMAddressEntryNameOffset; extern uint64_t jvmciHotSpotVMAddressEntryValueOffset; extern uint64_t jvmciHotSpotVMAddressEntryArrayStride; } ! int CompilerToVM::Data::InstanceKlass_vtable_start_offset; ! int CompilerToVM::Data::InstanceKlass_vtable_length_offset; int CompilerToVM::Data::Method_extra_stack_entries; address CompilerToVM::Data::SharedRuntime_ic_miss_stub; address CompilerToVM::Data::SharedRuntime_handle_wrong_method_stub; --- 119,130 ---- extern uint64_t jvmciHotSpotVMAddressEntryNameOffset; extern uint64_t jvmciHotSpotVMAddressEntryValueOffset; extern uint64_t jvmciHotSpotVMAddressEntryArrayStride; } ! int CompilerToVM::Data::Klass_vtable_start_offset; ! int CompilerToVM::Data::Klass_vtable_length_offset; int CompilerToVM::Data::Method_extra_stack_entries; address CompilerToVM::Data::SharedRuntime_ic_miss_stub; address CompilerToVM::Data::SharedRuntime_handle_wrong_method_stub;
*** 149,160 **** jbyte* CompilerToVM::Data::cardtable_start_address; int CompilerToVM::Data::cardtable_shift; void CompilerToVM::Data::initialize() { ! InstanceKlass_vtable_start_offset = in_bytes(InstanceKlass::vtable_start_offset()); ! InstanceKlass_vtable_length_offset = in_bytes(InstanceKlass::vtable_length_offset()); Method_extra_stack_entries = Method::extra_stack_entries(); SharedRuntime_ic_miss_stub = SharedRuntime::get_ic_miss_stub(); SharedRuntime_handle_wrong_method_stub = SharedRuntime::get_handle_wrong_method_stub(); --- 149,160 ---- jbyte* CompilerToVM::Data::cardtable_start_address; int CompilerToVM::Data::cardtable_shift; void CompilerToVM::Data::initialize() { ! Klass_vtable_start_offset = in_bytes(Klass::vtable_start_offset()); ! Klass_vtable_length_offset = in_bytes(Klass::vtable_length_offset()); Method_extra_stack_entries = Method::extra_stack_entries(); SharedRuntime_ic_miss_stub = SharedRuntime::get_ic_miss_stub(); SharedRuntime_handle_wrong_method_stub = SharedRuntime::get_handle_wrong_method_stub();
< prev index next >