Re: RFR: 8303963: Replace various encodings of UINT/SIZE_MAX in gc code

2023-03-13 Thread Thomas Schatzl
On Fri, 10 Mar 2023 14:20:54 GMT, Albert Mingkun Yang wrote: >> Hi all, >> >> please review this refactoring that replaces various casts in GC and >> more-or-less related to get all bits set in an uint/size_t with the >> available constants from cstdint. >> The ones in ZGC files were skipped

Re: RFR: 8303963: Replace various encodings of UINT/SIZE_MAX in gc code

2023-03-10 Thread Kim Barrett
On Fri, 10 Mar 2023 12:58:42 GMT, Thomas Schatzl wrote: > Hi all, > > please review this refactoring that replaces various casts in GC and > more-or-less related to get all bits set in an uint/size_t with the available > constants from cstdint. > The ones in ZGC files were skipped on request

Re: RFR: 8303963: Replace various encodings of UINT/SIZE_MAX in gc code

2023-03-10 Thread Albert Mingkun Yang
On Fri, 10 Mar 2023 12:58:42 GMT, Thomas Schatzl wrote: > Hi all, > > please review this refactoring that replaces various casts in GC > more-or-less related to get all bits set in an uint/size_t with the available > constants from cstdint. > The ones in ZGC files were skipped on request. >

RFR: 8303963: Replace various encodings of UINT/SIZE_MAX in gc code

2023-03-10 Thread Thomas Schatzl
Hi all, please review this refactoring that replaces various casts in GC more-or-less related to get all bits set in an uint/size_t with the available constants from cstdint. The ones in ZGC files were skipped on request. Testing: local compilation, gha Thanks, Thomas - Commi