< prev index next >

src/cpu/ppc/vm/vtableStubs_ppc_64.cpp

Print this page




  63 #ifndef PRODUCT
  64   if (CountCompiledCalls) {
  65     __ load_const(R11_scratch1, SharedRuntime::nof_megamorphic_calls_addr());
  66     __ lwz(R12_scratch2, 0, R11_scratch1);
  67     __ addi(R12_scratch2, R12_scratch2, 1);
  68     __ stw(R12_scratch2, 0, R11_scratch1);
  69   }
  70 #endif
  71 
  72   assert(VtableStub::receiver_location() == R3_ARG1->as_VMReg(), "receiver expected in R3_ARG1");
  73 
  74   // Get receiver klass.
  75   const Register rcvr_klass = R11_scratch1;
  76 
  77   // We might implicit NULL fault here.
  78   address npe_addr = __ pc(); // npe = null pointer exception
  79   __ null_check(R3, oopDesc::klass_offset_in_bytes(), /*implicit only*/NULL);
  80   __ load_klass(rcvr_klass, R3);
  81 
  82  // Set method (in case of interpreted method), and destination address.
  83   int entry_offset = in_bytes(InstanceKlass::vtable_start_offset()) + vtable_index*vtableEntry::size_in_bytes();
  84 
  85 #ifndef PRODUCT
  86   if (DebugVtables) {
  87     Label L;
  88     // Check offset vs vtable length.
  89     const Register vtable_len = R12_scratch2;
  90     __ lwz(vtable_len, in_bytes(InstanceKlass::vtable_length_offset()), rcvr_klass);
  91     __ cmpwi(CCR0, vtable_len, vtable_index*vtableEntry::size());
  92     __ bge(CCR0, L);
  93     __ li(R12_scratch2, vtable_index);
  94     __ call_VM(noreg, CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), R3_ARG1, R12_scratch2, false);
  95     __ bind(L);
  96   }
  97 #endif
  98 
  99   int v_off = entry_offset + vtableEntry::method_offset_in_bytes();
 100 
 101   __ ld(R19_method, v_off, rcvr_klass);
 102 
 103 #ifndef PRODUCT
 104   if (DebugVtables) {
 105     Label L;
 106     __ cmpdi(CCR0, R19_method, 0);
 107     __ bne(CCR0, L);
 108     __ stop("Vtable entry is ZERO", 102);
 109     __ bind(L);
 110   }


 146   assert(VtableStub::receiver_location() == R3_ARG1->as_VMReg(), "receiver expected in R3_ARG1");
 147 
 148   // Entry arguments:
 149   //  R19_method: Interface
 150   //  R3_ARG1:    Receiver
 151   //
 152 
 153   const Register rcvr_klass = R11_scratch1;
 154   const Register vtable_len = R12_scratch2;
 155   const Register itable_entry_addr = R21_tmp1;
 156   const Register itable_interface = R22_tmp2;
 157 
 158   // Get receiver klass.
 159 
 160   // We might implicit NULL fault here.
 161   address npe_addr = __ pc(); // npe = null pointer exception
 162   __ null_check(R3_ARG1, oopDesc::klass_offset_in_bytes(), /*implicit only*/NULL);
 163   __ load_klass(rcvr_klass, R3_ARG1);
 164 
 165   BLOCK_COMMENT("Load start of itable entries into itable_entry.");
 166   __ lwz(vtable_len, in_bytes(InstanceKlass::vtable_length_offset()), rcvr_klass);
 167   __ slwi(vtable_len, vtable_len, exact_log2(vtableEntry::size_in_bytes()));
 168   __ add(itable_entry_addr, vtable_len, rcvr_klass);
 169 
 170   // Loop over all itable entries until desired interfaceOop(Rinterface) found.
 171   BLOCK_COMMENT("Increment itable_entry_addr in loop.");
 172   const int vtable_base_offset = in_bytes(InstanceKlass::vtable_start_offset());
 173   __ addi(itable_entry_addr, itable_entry_addr, vtable_base_offset + itableOffsetEntry::interface_offset_in_bytes());
 174 
 175   const int itable_offset_search_inc = itableOffsetEntry::size() * wordSize;
 176   Label search;
 177   __ bind(search);
 178   __ ld(itable_interface, 0, itable_entry_addr);
 179 
 180   // Handle IncompatibleClassChangeError in itable stubs.
 181   // If the entry is NULL then we've reached the end of the table
 182   // without finding the expected interface, so throw an exception.
 183   BLOCK_COMMENT("Handle IncompatibleClassChangeError in itable stubs.");
 184   Label throw_icce;
 185   __ cmpdi(CCR1, itable_interface, 0);
 186   __ cmpd(CCR0, itable_interface, R19_method);
 187   __ addi(itable_entry_addr, itable_entry_addr, itable_offset_search_inc);
 188   __ beq(CCR1, throw_icce);
 189   __ bne(CCR0, search);
 190 
 191   // Entry found and itable_entry_addr points to it, get offset of vtable for interface.
 192 




  63 #ifndef PRODUCT
  64   if (CountCompiledCalls) {
  65     __ load_const(R11_scratch1, SharedRuntime::nof_megamorphic_calls_addr());
  66     __ lwz(R12_scratch2, 0, R11_scratch1);
  67     __ addi(R12_scratch2, R12_scratch2, 1);
  68     __ stw(R12_scratch2, 0, R11_scratch1);
  69   }
  70 #endif
  71 
  72   assert(VtableStub::receiver_location() == R3_ARG1->as_VMReg(), "receiver expected in R3_ARG1");
  73 
  74   // Get receiver klass.
  75   const Register rcvr_klass = R11_scratch1;
  76 
  77   // We might implicit NULL fault here.
  78   address npe_addr = __ pc(); // npe = null pointer exception
  79   __ null_check(R3, oopDesc::klass_offset_in_bytes(), /*implicit only*/NULL);
  80   __ load_klass(rcvr_klass, R3);
  81 
  82  // Set method (in case of interpreted method), and destination address.
  83   int entry_offset = in_bytes(Klass::vtable_start_offset()) + vtable_index*vtableEntry::size_in_bytes();
  84 
  85 #ifndef PRODUCT
  86   if (DebugVtables) {
  87     Label L;
  88     // Check offset vs vtable length.
  89     const Register vtable_len = R12_scratch2;
  90     __ lwz(vtable_len, in_bytes(Klass::vtable_length_offset()), rcvr_klass);
  91     __ cmpwi(CCR0, vtable_len, vtable_index*vtableEntry::size());
  92     __ bge(CCR0, L);
  93     __ li(R12_scratch2, vtable_index);
  94     __ call_VM(noreg, CAST_FROM_FN_PTR(address, bad_compiled_vtable_index), R3_ARG1, R12_scratch2, false);
  95     __ bind(L);
  96   }
  97 #endif
  98 
  99   int v_off = entry_offset + vtableEntry::method_offset_in_bytes();
 100 
 101   __ ld(R19_method, v_off, rcvr_klass);
 102 
 103 #ifndef PRODUCT
 104   if (DebugVtables) {
 105     Label L;
 106     __ cmpdi(CCR0, R19_method, 0);
 107     __ bne(CCR0, L);
 108     __ stop("Vtable entry is ZERO", 102);
 109     __ bind(L);
 110   }


 146   assert(VtableStub::receiver_location() == R3_ARG1->as_VMReg(), "receiver expected in R3_ARG1");
 147 
 148   // Entry arguments:
 149   //  R19_method: Interface
 150   //  R3_ARG1:    Receiver
 151   //
 152 
 153   const Register rcvr_klass = R11_scratch1;
 154   const Register vtable_len = R12_scratch2;
 155   const Register itable_entry_addr = R21_tmp1;
 156   const Register itable_interface = R22_tmp2;
 157 
 158   // Get receiver klass.
 159 
 160   // We might implicit NULL fault here.
 161   address npe_addr = __ pc(); // npe = null pointer exception
 162   __ null_check(R3_ARG1, oopDesc::klass_offset_in_bytes(), /*implicit only*/NULL);
 163   __ load_klass(rcvr_klass, R3_ARG1);
 164 
 165   BLOCK_COMMENT("Load start of itable entries into itable_entry.");
 166   __ lwz(vtable_len, in_bytes(Klass::vtable_length_offset()), rcvr_klass);
 167   __ slwi(vtable_len, vtable_len, exact_log2(vtableEntry::size_in_bytes()));
 168   __ add(itable_entry_addr, vtable_len, rcvr_klass);
 169 
 170   // Loop over all itable entries until desired interfaceOop(Rinterface) found.
 171   BLOCK_COMMENT("Increment itable_entry_addr in loop.");
 172   const int vtable_base_offset = in_bytes(Klass::vtable_start_offset());
 173   __ addi(itable_entry_addr, itable_entry_addr, vtable_base_offset + itableOffsetEntry::interface_offset_in_bytes());
 174 
 175   const int itable_offset_search_inc = itableOffsetEntry::size() * wordSize;
 176   Label search;
 177   __ bind(search);
 178   __ ld(itable_interface, 0, itable_entry_addr);
 179 
 180   // Handle IncompatibleClassChangeError in itable stubs.
 181   // If the entry is NULL then we've reached the end of the table
 182   // without finding the expected interface, so throw an exception.
 183   BLOCK_COMMENT("Handle IncompatibleClassChangeError in itable stubs.");
 184   Label throw_icce;
 185   __ cmpdi(CCR1, itable_interface, 0);
 186   __ cmpd(CCR0, itable_interface, R19_method);
 187   __ addi(itable_entry_addr, itable_entry_addr, itable_offset_search_inc);
 188   __ beq(CCR1, throw_icce);
 189   __ bne(CCR0, search);
 190 
 191   // Entry found and itable_entry_addr points to it, get offset of vtable for interface.
 192 


< prev index next >