RFR: 8219229: Make ConstantPool::tag_at and release_tag_at_put inlineable
Claes Redestad
claes.redestad at oracle.com
Tue Feb 19 22:06:29 UTC 2019
On 2019-02-19 19:08, coleen.phillimore at oracle.com wrote:
>
> On 2/19/19 3:22 AM, Claes Redestad wrote:
>>
>> http://cr.openjdk.java.net/~redestad/8219229/open.01/
>
> This looks good.
>
Thanks!
> http://cr.openjdk.java.net/~redestad/8219229/open.01/src/hotspot/share/oops/constantPool.hpp.udiff.html
>
>
> Small nit, can you make this one line:
>
> - constantTag tag_at(int which) const;
> + constantTag tag_at(int which) const {
> + return (constantTag)tags()->at_acquire(which);
> + }
Will do.
/Claes
More information about the hotspot-runtime-dev
mailing list