annotate src/share/vm/interpreter/templateInterpreterGenerator.hpp @ 12356:359f7e70ae7f

Reduce HotSpot diff and fix previous merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 11 Oct 2013 15:41:33 +0200
parents 6b6cbd8b8914
children 096c224171c4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2192
diff changeset
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1059
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1059
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1059
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_INTERPRETER_TEMPLATEINTERPRETERGENERATOR_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_INTERPRETER_TEMPLATEINTERPRETERGENERATOR_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
605
98cb887364d3 6810672: Comment typos
twisti
parents: 0
diff changeset
28 // This file contains the platform-independent parts
0
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // of the template interpreter generator.
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 #ifndef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class TemplateInterpreterGenerator: public AbstractInterpreterGenerator {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // entry points for shared code sequence
a61af66fc99e Initial load
duke
parents:
diff changeset
37 address _unimplemented_bytecode;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 address _illegal_bytecode_sequence;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // shared code sequences
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Converter for native abi result to tosca result
a61af66fc99e Initial load
duke
parents:
diff changeset
42 address generate_result_handler_for(BasicType type);
a61af66fc99e Initial load
duke
parents:
diff changeset
43 address generate_slow_signature_handler();
a61af66fc99e Initial load
duke
parents:
diff changeset
44 address generate_error_exit(const char* msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
45 address generate_StackOverflowError_handler();
a61af66fc99e Initial load
duke
parents:
diff changeset
46 address generate_exception_handler(const char* name, const char* message) {
a61af66fc99e Initial load
duke
parents:
diff changeset
47 return generate_exception_handler_common(name, message, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 address generate_klass_exception_handler(const char* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 return generate_exception_handler_common(name, NULL, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52 address generate_exception_handler_common(const char* name, const char* message, bool pass_oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 address generate_ClassCastException_handler();
a61af66fc99e Initial load
duke
parents:
diff changeset
54 address generate_ArrayIndexOutOfBounds_handler(const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 address generate_continuation_for(TosState state);
1059
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 726
diff changeset
56 address generate_return_entry_for(TosState state, int step);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
57 address generate_earlyret_entry_for(TosState state);
a61af66fc99e Initial load
duke
parents:
diff changeset
58 address generate_safept_entry_for(TosState state, address runtime_entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void generate_throw_exception();
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // entry point generator
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // address generate_method_entry(AbstractInterpreter::MethodKind kind);
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // Instruction generation
a61af66fc99e Initial load
duke
parents:
diff changeset
65 void generate_and_dispatch (Template* t, TosState tos_out = ilgl);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void set_vtos_entry_points (Template* t, address& bep, address& cep, address& sep, address& aep, address& iep, address& lep, address& fep, address& dep, address& vep);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 void set_short_entry_points(Template* t, address& bep, address& cep, address& sep, address& aep, address& iep, address& lep, address& fep, address& dep, address& vep);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 void set_wide_entry_point (Template* t, address& wep);
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void set_entry_points(Bytecodes::Code code);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 void set_unimplemented(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void set_entry_points_for_all_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
73 void set_safepoints_for_all_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // Helpers for generate_and_dispatch
a61af66fc99e Initial load
duke
parents:
diff changeset
76 address generate_trace_code(TosState state) PRODUCT_RETURN0;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 void count_bytecode() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void histogram_bytecode(Template* t) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 void histogram_bytecode_pair(Template* t) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 void trace_bytecode(Template* t) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 void stop_interpreter_at() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 void generate_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
86 TemplateInterpreterGenerator(StubQueue* _code);
a61af66fc99e Initial load
duke
parents:
diff changeset
87
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
88 #ifdef TARGET_ARCH_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
89 # include "templateInterpreterGenerator_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
90 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
91 #ifdef TARGET_ARCH_sparc
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
92 # include "templateInterpreterGenerator_sparc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
93 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
94 #ifdef TARGET_ARCH_zero
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
95 # include "templateInterpreterGenerator_zero.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
96 #endif
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
97 #ifdef TARGET_ARCH_arm
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
98 # include "templateInterpreterGenerator_arm.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
99 #endif
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
100 #ifdef TARGET_ARCH_ppc
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
101 # include "templateInterpreterGenerator_ppc.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 1972
diff changeset
102 #endif
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
103
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 };
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 #endif // !CC_INTERP
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
108
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
109 #endif // SHARE_VM_INTERPRETER_TEMPLATEINTERPRETERGENERATOR_HPP