12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #ifndef CPU_X86_VM_CPPINTERPRETERGENERATOR_X86_HPP
26 #define CPU_X86_VM_CPPINTERPRETERGENERATOR_X86_HPP
27
28 protected:
29
30 void generate_more_monitors();
31 void generate_deopt_handling();
32 address generate_interpreter_frame_manager(bool synchronized); // C++ interpreter only
33 void generate_compute_interpreter_state(const Register state,
34 const Register prev_state,
35 const Register sender_sp,
36 bool native); // C++ interpreter only
37
38 #endif // CPU_X86_VM_CPPINTERPRETERGENERATOR_X86_HPP
|
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #ifndef CPU_X86_VM_CPPINTERPRETERGENERATOR_X86_HPP
26 #define CPU_X86_VM_CPPINTERPRETERGENERATOR_X86_HPP
27
28 protected:
29
30 void generate_more_monitors();
31 void generate_deopt_handling();
32 void lock_method(void);
33 address generate_interpreter_frame_manager(bool synchronized); // C++ interpreter only
34 void generate_compute_interpreter_state(const Register state,
35 const Register prev_state,
36 const Register sender_sp,
37 bool native); // C++ interpreter only
38
39 #endif // CPU_X86_VM_CPPINTERPRETERGENERATOR_X86_HPP
|