8327361: Update some comments after JDK-8139457

Reviewed-by: galder, shade
This commit is contained in:
Roman Kennke 2024-03-12 12:07:56 +00:00
parent 78beb031c7
commit 5056902e76
3 changed files with 18 additions and 18 deletions

@ -94,12 +94,12 @@ using MacroAssembler::null_check;
};
// allocation of arrays
// obj : will contain pointer to allocated object
// len : array length in number of elements
// t : scratch register - contents destroyed
// header_size: size of object header in words
// f : element scale factor
// slow_case : exit to slow case implementation if fast allocation fails
// obj : will contain pointer to allocated object
// len : array length in number of elements
// t : scratch register - contents destroyed
// base_offset_in_bytes: offset of first array element, in bytes
// f : element scale factor
// slow_case : exit to slow case implementation if fast allocation fails
void allocate_array(Register obj, Register len, Register t, Register t2, int base_offset_in_bytes, int f, Register klass, Label& slow_case);
int rsp_offset() const { return _rsp_offset; }

@ -95,12 +95,12 @@ using MacroAssembler::null_check;
};
// allocation of arrays
// obj : will contain pointer to allocated object
// len : array length in number of elements
// t : temp register - contents destroyed
// header_size: size of object header in words
// f : element scale factor
// slow_case : exit to slow case implementation if fast allocation fails
// obj : will contain pointer to allocated object
// len : array length in number of elements
// t : temp register - contents destroyed
// base_offset_in_bytes: offset of first array element, in bytes
// f : element scale factor
// slow_case : exit to slow case implementation if fast allocation fails
void allocate_array(Register obj, Register len, Register tmp1, Register tmp2, int base_offset_in_bytes, int f, Register klass, Label& slow_case);
int rsp_offset() const { return _rsp_offset; }

@ -83,12 +83,12 @@
};
// allocation of arrays
// obj : must be rax, will contain pointer to allocated object
// len : array length in number of elements
// t : scratch register - contents destroyed
// header_size: size of object header in words
// f : element scale factor
// slow_case : exit to slow case implementation if fast allocation fails
// obj : must be rax, will contain pointer to allocated object
// len : array length in number of elements
// t : scratch register - contents destroyed
// base_offset_in_bytes: offset of the first array element, in bytes
// f : element scale factor
// slow_case : exit to slow case implementation if fast allocation fails
void allocate_array(Register obj, Register len, Register t, Register t2, int base_offset_in_bytes, Address::ScaleFactor f, Register klass, Label& slow_case);
int rsp_offset() const { return _rsp_offset; }