comparison src/share/vm/runtime/frame.inline.hpp @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 4ca6dc0799b6
children
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
85 85
86 inline bool frame::is_first_frame() const { 86 inline bool frame::is_first_frame() const {
87 return is_entry_frame() && entry_frame_is_first(); 87 return is_entry_frame() && entry_frame_is_first();
88 } 88 }
89 89
90 #ifdef CC_INTERP
91 inline oop* frame::interpreter_frame_temp_oop_addr() const {
92 interpreterState istate = get_interpreterState();
93 return (oop *)&istate->_oop_temp;
94 }
95 #endif // CC_INTERP
96
90 // here are the platform-dependent bodies: 97 // here are the platform-dependent bodies:
91 98
92 #ifdef TARGET_ARCH_x86 99 #ifdef TARGET_ARCH_x86
93 # include "frame_x86.inline.hpp" 100 # include "frame_x86.inline.hpp"
94 #endif 101 #endif