JDK-8193373 : Cleanup ElfFile and family
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: runtime
  • Affected Version: 10
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2017-12-12
  • Updated: 2019-06-20
  • Resolved: 2018-02-15
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 11
11 b03Fixed
Related Reports
Blocks :  
Relates :  
Relates :  
Description
Cleanup followings:
elfFile.{hpp, cpp}, elfStringTable.{hpp, cpp}, elfSymbolTable.{hpp, cpp}, elfFuncDescTable.{hpp, cpp}

1. Used wrong style, e.g. using m_member instead _member for member variables.

2. Some os specific code in shared code.

3. Kept section header string table, which not used for decoding functions.

4. Implementation tried to access file directly for symbol, string etc. when cache is not available (due to lack of memory), but it never worked. Since when failed to allocate cache, it set status code to out-of-memory, put decoder in error state and never tried to fulfill the request.