author | coleenp |
Fri, 08 Mar 2013 11:47:57 -0500 | |
changeset 15928 | f9d5c6e4107f |
parent 8921 | 14bfe81f2a9d |
child 25950 | b5c40ed1d349 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
8921
14bfe81f2a9d
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents:
8107
diff
changeset
|
2 |
* Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
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 |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2131
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2131
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2131
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_INTERPRETER_INTERPRETERGENERATOR_HPP |
26 |
#define SHARE_VM_INTERPRETER_INTERPRETERGENERATOR_HPP |
|
27 |
||
28 |
#include "interpreter/cppInterpreter.hpp" |
|
29 |
#include "interpreter/cppInterpreterGenerator.hpp" |
|
30 |
#include "interpreter/templateInterpreter.hpp" |
|
31 |
#include "interpreter/templateInterpreterGenerator.hpp" |
|
32 |
||
2131 | 33 |
// This file contains the platform-independent parts |
1 | 34 |
// of the interpreter generator. |
35 |
||
36 |
||
37 |
class InterpreterGenerator: public CC_INTERP_ONLY(CppInterpreterGenerator) |
|
38 |
NOT_CC_INTERP(TemplateInterpreterGenerator) { |
|
39 |
||
40 |
public: |
|
41 |
||
42 |
InterpreterGenerator(StubQueue* _code); |
|
43 |
||
7397 | 44 |
#ifdef TARGET_ARCH_x86 |
45 |
# include "interpreterGenerator_x86.hpp" |
|
46 |
#endif |
|
47 |
#ifdef TARGET_ARCH_sparc |
|
48 |
# include "interpreterGenerator_sparc.hpp" |
|
49 |
#endif |
|
50 |
#ifdef TARGET_ARCH_zero |
|
51 |
# include "interpreterGenerator_zero.hpp" |
|
52 |
#endif |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
53 |
#ifdef TARGET_ARCH_arm |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
54 |
# include "interpreterGenerator_arm.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
55 |
#endif |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
56 |
#ifdef TARGET_ARCH_ppc |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
57 |
# include "interpreterGenerator_ppc.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
58 |
#endif |
7397 | 59 |
|
1 | 60 |
|
61 |
}; |
|
7397 | 62 |
|
63 |
#endif // SHARE_VM_INTERPRETER_INTERPRETERGENERATOR_HPP |