equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 * |
4 * |
5 * This code is free software; you can redistribute it and/or modify it |
5 * This code is free software; you can redistribute it and/or modify it |
6 * under the terms of the GNU General Public License version 2 only, as |
6 * under the terms of the GNU General Public License version 2 only, as |
7 * published by the Free Software Foundation. |
7 * published by the Free Software Foundation. |
20 * or visit www.oracle.com if you need additional information or have any |
20 * or visit www.oracle.com if you need additional information or have any |
21 * questions. |
21 * questions. |
22 * |
22 * |
23 */ |
23 */ |
24 |
24 |
|
25 #ifndef SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_INLINE_HPP |
|
26 #define SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_INLINE_HPP |
|
27 |
|
28 #include "interpreter/bytecodeInterpreter.hpp" |
|
29 #include "runtime/stubRoutines.hpp" |
|
30 |
25 // This file holds platform-independent bodies of inline functions for the C++ based interpreter |
31 // This file holds platform-independent bodies of inline functions for the C++ based interpreter |
26 |
32 |
27 #ifdef CC_INTERP |
33 #ifdef CC_INTERP |
28 |
34 |
29 #ifdef ASSERT |
35 #ifdef ASSERT |
35 #else |
41 #else |
36 #define VERIFY_OOP(o) |
42 #define VERIFY_OOP(o) |
37 #endif |
43 #endif |
38 |
44 |
39 // Platform dependent data manipulation |
45 // Platform dependent data manipulation |
40 # include "incls/_bytecodeInterpreter_pd.inline.hpp.incl" |
46 #ifdef TARGET_ARCH_x86 |
|
47 # include "bytecodeInterpreter_x86.inline.hpp" |
|
48 #endif |
|
49 #ifdef TARGET_ARCH_sparc |
|
50 # include "bytecodeInterpreter_sparc.inline.hpp" |
|
51 #endif |
|
52 #ifdef TARGET_ARCH_zero |
|
53 # include "bytecodeInterpreter_zero.inline.hpp" |
|
54 #endif |
|
55 |
41 #endif // CC_INTERP |
56 #endif // CC_INTERP |
|
57 |
|
58 #endif // SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_INLINE_HPP |