Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8025786 | 8 | Bill Pittore | P4 | Resolved | Fixed | b110 |
If we change Vm_version::supports_cx8() code like so then C++ compiler will create smaller/faster code in callers of that function since the return value is a constant.
#ifdef SUPPORTS_NATIVE_CX8
static bool supports_cx8() {return true;}
#else
static bool supports_cx8() {return _supports_cx8;}
#endif
#ifdef SUPPORTS_NATIVE_CX8
static bool supports_cx8() {return true;}
#else
static bool supports_cx8() {return _supports_cx8;}
#endif
- backported by
-
JDK-8025786 Should use SUPPORTS_NATIVE_CX8 define to help C/C++ compiler elide blocks of code
-
- Resolved
-