JDK-8035396 : Introduce accessor for tmp_oop in frame.
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: runtime
  • Affected Version: 9
  • Priority: P4
  • Status: Closed
  • Resolution: Fixed
  • Submitted: 2014-02-20
  • Updated: 2016-10-24
  • Resolved: 2014-02-26
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 8 JDK 9 Other
8u20Fixed 9 b04Fixed openjdk7uFixed
Description
Access to the tmp_oop in a frame is done with several #ifdefs distinguishing the platforms and interpreters.

Introduce accessor function interpreter_frame_temp_oop_addr() as for many other fields cleaning up the defines.  

Also move 
  #ifdef PPC32
    oop* interpreter_frame_mirror_addr() const;
  #endif
from frame.hpp into frame_ppc.hpp in the closed port.