@@ -4761,7 +4761,7 @@ Address MacroAssembler::argument_address(RegisterOrConstant arg_slot,
47614761// counter updates are not atomic.
47624762//
47634763void MacroAssembler::profile_receiver_type (Register recv, Register mdp, int mdp_offset,
4764- addptr_32_insn_t xx ) {
4764+ addptr_32_insn_t increment ) {
47654765 int base_receiver_offset = in_bytes (ReceiverTypeData::receiver_offset (0 ));
47664766 int end_receiver_offset = in_bytes (ReceiverTypeData::receiver_offset (ReceiverTypeData::row_limit ()));
47674767 int poly_count_offset = in_bytes (CounterData::count_offset ());
@@ -4805,8 +4805,8 @@ void MacroAssembler::profile_receiver_type(Register recv, Register mdp, int mdp_
48054805
48064806 // Corner case: no profile table. Increment poly counter and exit.
48074807 if (ReceiverTypeData::row_limit () == 0 ) {
4808- addptr ( Address (mdp, poly_count_offset, Address::times_ptr), DataLayout::counter_increment);
4809- BLOCK_COMMENT (" } profile_receiver_type { " );
4808+ increment ( this , Address (mdp, poly_count_offset, Address::times_ptr), DataLayout::counter_increment);
4809+ BLOCK_COMMENT (" } profile_receiver_type" );
48104810 return ;
48114811 }
48124812
@@ -4948,7 +4948,7 @@ void MacroAssembler::profile_receiver_type(Register recv, Register mdp, int mdp_
49484948
49494949 bind (L_count_update);
49504950 // addptr(Address(mdp, offset, Address::times_ptr), DataLayout::counter_increment);
4951- xx (this , Address (mdp, offset, Address::times_ptr), DataLayout::counter_increment);
4951+ increment (this , Address (mdp, offset, Address::times_ptr), DataLayout::counter_increment);
49524952
49534953 BLOCK_COMMENT (" } profile_receiver_type" );
49544954}
0 commit comments