equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 1997, 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. |
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
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 |
20 * or visit www.oracle.com if you need additional information or have any |
21 * questions. |
21 * questions. |
22 * |
22 * |
23 */ |
23 */ |
|
24 |
|
25 #ifndef SHARE_VM_INTERPRETER_TEMPLATEINTERPRETERGENERATOR_HPP |
|
26 #define SHARE_VM_INTERPRETER_TEMPLATEINTERPRETERGENERATOR_HPP |
24 |
27 |
25 // This file contains the platform-independent parts |
28 // This file contains the platform-independent parts |
26 // of the template interpreter generator. |
29 // of the template interpreter generator. |
27 |
30 |
28 #ifndef CC_INTERP |
31 #ifndef CC_INTERP |
82 void generate_all(); |
85 void generate_all(); |
83 |
86 |
84 public: |
87 public: |
85 TemplateInterpreterGenerator(StubQueue* _code); |
88 TemplateInterpreterGenerator(StubQueue* _code); |
86 |
89 |
87 #include "incls/_templateInterpreterGenerator_pd.hpp.incl" |
90 #ifdef TARGET_ARCH_x86 |
|
91 # include "templateInterpreterGenerator_x86.hpp" |
|
92 #endif |
|
93 #ifdef TARGET_ARCH_sparc |
|
94 # include "templateInterpreterGenerator_sparc.hpp" |
|
95 #endif |
|
96 #ifdef TARGET_ARCH_zero |
|
97 # include "templateInterpreterGenerator_zero.hpp" |
|
98 #endif |
|
99 |
88 |
100 |
89 }; |
101 }; |
90 |
102 |
91 #endif // !CC_INTERP |
103 #endif // !CC_INTERP |
|
104 |
|
105 #endif // SHARE_VM_INTERPRETER_TEMPLATEINTERPRETERGENERATOR_HPP |