-
Bug
-
Resolution: Fixed
-
P3
-
13
-
b21
-
x86
-
windows_10
When compiling the current jdk/jdk on my Skylake Windows machine in slowdebug configuration, the following assertion triggers:
assert(code_size2 == 0 || buffer.insts_remaining() > 200) failed: increase code_size2
Increasing the 64 bit code_size2 by 200 bytes fixes this.
assert(code_size2 == 0 || buffer.insts_remaining() > 200) failed: increase code_size2
Increasing the 64 bit code_size2 by 200 bytes fixes this.
- relates to
-
JDK-8223770 code_size2 still too small in some compressed oops configurations
- Resolved