hotspot/src/share/vm/opto/runtime.cpp
changeset 4898 b5bbb74def0b
parent 4764 d15bb22d4d39
parent 4892 e977b527544a
child 5046 27e801a857cb
equal deleted inserted replaced
4890:c7956838bfcc 4898:b5bbb74def0b
   706     // vc->set_receiver_count(empty_row, DataLayout::counter_increment);
   706     // vc->set_receiver_count(empty_row, DataLayout::counter_increment);
   707     int count_off = ReceiverTypeData::receiver_count_cell_index(empty_row);
   707     int count_off = ReceiverTypeData::receiver_count_cell_index(empty_row);
   708     *(mdp + count_off) = DataLayout::counter_increment;
   708     *(mdp + count_off) = DataLayout::counter_increment;
   709   } else {
   709   } else {
   710     // Receiver did not match any saved receiver and there is no empty row for it.
   710     // Receiver did not match any saved receiver and there is no empty row for it.
   711     // Increment total counter to indicate polimorphic case.
   711     // Increment total counter to indicate polymorphic case.
   712     intptr_t* count_p = (intptr_t*)(((byte*)(data)) + in_bytes(CounterData::count_offset()));
   712     intptr_t* count_p = (intptr_t*)(((byte*)(data)) + in_bytes(CounterData::count_offset()));
   713     *count_p += DataLayout::counter_increment;
   713     *count_p += DataLayout::counter_increment;
   714   }
   714   }
   715 JRT_END
   715 JRT_END
   716 
   716