RFR (XS): 8065134: Need WhiteBox::allocateCodeBlob(long, int) method to be implemented

Tatiana Pivovarova tatiana.pivovarova at oracle.com
Fri Dec 5 12:37:56 UTC 2014


Hi all,

please review this new small patch

bugid: https://bugs.openjdk.java.net/browse/JDK-8065134
webrev: http://cr.openjdk.java.net/~ppunegov/tpivovarova/8065134/webrev.02/

Problem:
Need WhiteBox::allocateCodeBlob(long, int), currently only 
WhiteBox::allocateCodeBlob(int, int) exist.

I change previous fix to this new patch because this conversation [*]

Solution:
   public long allocateCodeBlob(long size, int type) {
       return allocateCodeBlob((int) size, type);
   }

Test: jprt

[*] 
http://mail.openjdk.java.net/pipermail/hotspot-dev/2014-December/016316.html

Thanks,
Tatiana


More information about the hotspot-compiler-dev mailing list