When inlining methods of the form:
final void setfld(int val) { field1 = val; }
or
final void setfld() { field1 = 100; }
The SPARC JIT may overwrite an internal data structure which
could cause the JIT to fail, or possible abort with a segmentation
violation.
final void setfld(int val) { field1 = val; }
or
final void setfld() { field1 = 100; }
The SPARC JIT may overwrite an internal data structure which
could cause the JIT to fail, or possible abort with a segmentation
violation.
- relates to
-
JDK-4047153 sparc: JIT should inline small methods
-
- Closed
-