annotate src/share/vm/c1/c1_Runtime1.hpp @ 4982:38012b8c29b1

create separate RUNTIME1_STUBS definition for non-graal build.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 27 Feb 2012 22:18:57 +0100
parents 8f01f899bccd
children f5cfb62f17b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2168
e4fee0bdaa85 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 1972
diff changeset
2 * Copyright (c) 1999, 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: 342
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 342
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: 342
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: 1783
diff changeset
25 #ifndef SHARE_VM_C1_C1_RUNTIME1_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
26 #define SHARE_VM_C1_C1_RUNTIME1_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
28 #include "c1/c1_FrameMap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
29 #include "code/stubs.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
30 #include "interpreter/interpreter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
31 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
32 #include "runtime/deoptimization.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
33
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class StubAssembler;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // The Runtime1 holds all assembly stubs and VM
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // runtime routines needed by code code generated
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // by the Compiler1.
4982
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
39 #ifdef GRAAL
0
a61af66fc99e Initial load
duke
parents:
diff changeset
40 #define RUNTIME1_STUBS(stub, last_entry) \
a61af66fc99e Initial load
duke
parents:
diff changeset
41 stub(dtrace_object_alloc) \
a61af66fc99e Initial load
duke
parents:
diff changeset
42 stub(unwind_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
43 stub(forward_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
44 stub(throw_range_check_failed) /* throws ArrayIndexOutOfBoundsException */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
45 stub(throw_index_exception) /* throws IndexOutOfBoundsException */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
46 stub(throw_div0_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
47 stub(throw_null_pointer_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
48 stub(register_finalizer) \
a61af66fc99e Initial load
duke
parents:
diff changeset
49 stub(new_instance) \
a61af66fc99e Initial load
duke
parents:
diff changeset
50 stub(fast_new_instance) \
a61af66fc99e Initial load
duke
parents:
diff changeset
51 stub(fast_new_instance_init_check) \
a61af66fc99e Initial load
duke
parents:
diff changeset
52 stub(new_type_array) \
a61af66fc99e Initial load
duke
parents:
diff changeset
53 stub(new_object_array) \
a61af66fc99e Initial load
duke
parents:
diff changeset
54 stub(new_multi_array) \
a61af66fc99e Initial load
duke
parents:
diff changeset
55 stub(handle_exception_nofpu) /* optimized version that does not preserve fpu registers */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
56 stub(handle_exception) \
2321
1b4e6a5d98e0 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 2168
diff changeset
57 stub(handle_exception_from_callee) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 stub(throw_array_store_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
59 stub(throw_class_cast_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
60 stub(throw_incompatible_class_change_error) \
a61af66fc99e Initial load
duke
parents:
diff changeset
61 stub(slow_subtype_check) \
a61af66fc99e Initial load
duke
parents:
diff changeset
62 stub(monitorenter) \
a61af66fc99e Initial load
duke
parents:
diff changeset
63 stub(monitorenter_nofpu) /* optimized version that does not preserve fpu registers */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
64 stub(monitorexit) \
a61af66fc99e Initial load
duke
parents:
diff changeset
65 stub(monitorexit_nofpu) /* optimized version that does not preserve fpu registers */ \
4048
cec1757a0134 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 3899
diff changeset
66 stub(deoptimize) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67 stub(access_field_patching) \
a61af66fc99e Initial load
duke
parents:
diff changeset
68 stub(load_klass_patching) \
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
69 stub(g1_pre_barrier_slow) \
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
70 stub(g1_post_barrier_slow) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 stub(fpu2long_stub) \
a61af66fc99e Initial load
duke
parents:
diff changeset
72 stub(counter_overflow) \
3538
e4616e3d207b support for new CiRuntimeCalls CreateNullPointerException and CreateOutOfBoundsException
Lukas Stadler <lukas.stadler@jku.at>
parents: 2891
diff changeset
73 stub(graal_unwind_exception_call) \
e4616e3d207b support for new CiRuntimeCalls CreateNullPointerException and CreateOutOfBoundsException
Lukas Stadler <lukas.stadler@jku.at>
parents: 2891
diff changeset
74 stub(graal_slow_subtype_check) \
e4616e3d207b support for new CiRuntimeCalls CreateNullPointerException and CreateOutOfBoundsException
Lukas Stadler <lukas.stadler@jku.at>
parents: 2891
diff changeset
75 stub(graal_arithmetic_frem) \
e4616e3d207b support for new CiRuntimeCalls CreateNullPointerException and CreateOutOfBoundsException
Lukas Stadler <lukas.stadler@jku.at>
parents: 2891
diff changeset
76 stub(graal_arithmetic_drem) \
e4616e3d207b support for new CiRuntimeCalls CreateNullPointerException and CreateOutOfBoundsException
Lukas Stadler <lukas.stadler@jku.at>
parents: 2891
diff changeset
77 stub(graal_monitorenter) \
e4616e3d207b support for new CiRuntimeCalls CreateNullPointerException and CreateOutOfBoundsException
Lukas Stadler <lukas.stadler@jku.at>
parents: 2891
diff changeset
78 stub(graal_monitorexit) \
e4616e3d207b support for new CiRuntimeCalls CreateNullPointerException and CreateOutOfBoundsException
Lukas Stadler <lukas.stadler@jku.at>
parents: 2891
diff changeset
79 stub(graal_verify_pointer) \
3558
bc95d122df79 added runtime call to supply info upon deoptimization
Lukas Stadler <lukas.stadler@jku.at>
parents: 3538
diff changeset
80 stub(graal_set_deopt_info) \
3538
e4616e3d207b support for new CiRuntimeCalls CreateNullPointerException and CreateOutOfBoundsException
Lukas Stadler <lukas.stadler@jku.at>
parents: 2891
diff changeset
81 stub(graal_create_null_pointer_exception) \
e4616e3d207b support for new CiRuntimeCalls CreateNullPointerException and CreateOutOfBoundsException
Lukas Stadler <lukas.stadler@jku.at>
parents: 2891
diff changeset
82 stub(graal_create_out_of_bounds_exception) \
3682
6c04a4f268e5 implement generic callback mechanism (CiGenericCallback)
Lukas Stadler <lukas.stadler@jku.at>
parents: 3558
diff changeset
83 stub(graal_generic_callback) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84 last_entry(number_of_ids)
4982
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
85 #else
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
86 #define RUNTIME1_STUBS(stub, last_entry) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
87 stub(dtrace_object_alloc) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
88 stub(unwind_exception) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
89 stub(forward_exception) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
90 stub(throw_range_check_failed) /* throws ArrayIndexOutOfBoundsException */ \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
91 stub(throw_index_exception) /* throws IndexOutOfBoundsException */ \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
92 stub(throw_div0_exception) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
93 stub(throw_null_pointer_exception) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
94 stub(register_finalizer) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
95 stub(new_instance) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
96 stub(fast_new_instance) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
97 stub(fast_new_instance_init_check) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
98 stub(new_type_array) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
99 stub(new_object_array) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
100 stub(new_multi_array) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
101 stub(handle_exception_nofpu) /* optimized version that does not preserve fpu registers */ \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
102 stub(handle_exception) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
103 stub(handle_exception_from_callee) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
104 stub(throw_array_store_exception) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
105 stub(throw_class_cast_exception) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
106 stub(throw_incompatible_class_change_error) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
107 stub(slow_subtype_check) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
108 stub(monitorenter) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
109 stub(monitorenter_nofpu) /* optimized version that does not preserve fpu registers */ \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
110 stub(monitorexit) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
111 stub(monitorexit_nofpu) /* optimized version that does not preserve fpu registers */ \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
112 stub(deoptimize) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
113 stub(access_field_patching) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
114 stub(load_klass_patching) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
115 stub(g1_pre_barrier_slow) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
116 stub(g1_post_barrier_slow) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
117 stub(fpu2long_stub) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
118 stub(counter_overflow) \
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
119 last_entry(number_of_ids)
38012b8c29b1 create separate RUNTIME1_STUBS definition for non-graal build.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4976
diff changeset
120 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 #define DECLARE_STUB_ID(x) x ## _id ,
a61af66fc99e Initial load
duke
parents:
diff changeset
123 #define DECLARE_LAST_STUB_ID(x) x
a61af66fc99e Initial load
duke
parents:
diff changeset
124 #define STUB_NAME(x) #x " Runtime1 stub",
a61af66fc99e Initial load
duke
parents:
diff changeset
125 #define LAST_STUB_NAME(x) #x " Runtime1 stub"
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 class Runtime1: public AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 friend class ArrayCopyStub;
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
132 enum StubID {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 RUNTIME1_STUBS(DECLARE_STUB_ID, DECLARE_LAST_STUB_ID)
a61af66fc99e Initial load
duke
parents:
diff changeset
134 };
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
137 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
138 static int _resolve_invoke_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 static int _handle_wrong_method_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 static int _ic_miss_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 static int _generic_arraycopy_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 static int _primitive_arraycopy_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 static int _oop_arraycopy_cnt;
2446
13bc79b5c9c8 7033154: Improve C1 arraycopy performance
roland
parents: 2321
diff changeset
144 static int _generic_arraycopystub_cnt;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
145 static int _arraycopy_slowcase_cnt;
2446
13bc79b5c9c8 7033154: Improve C1 arraycopy performance
roland
parents: 2321
diff changeset
146 static int _arraycopy_checkcast_cnt;
13bc79b5c9c8 7033154: Improve C1 arraycopy performance
roland
parents: 2321
diff changeset
147 static int _arraycopy_checkcast_attempt_cnt;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
148 static int _new_type_array_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 static int _new_object_array_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 static int _new_instance_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 static int _new_multi_array_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 static int _monitorenter_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 static int _monitorexit_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
154 static int _patch_code_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 static int _throw_range_check_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
156 static int _throw_index_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 static int _throw_div0_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 static int _throw_null_pointer_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 static int _throw_class_cast_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 static int _throw_incompatible_class_change_error_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 static int _throw_array_store_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 static int _throw_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
166 static CodeBlob* _blobs[number_of_ids];
a61af66fc99e Initial load
duke
parents:
diff changeset
167 static const char* _blob_names[];
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // stub generation
2321
1b4e6a5d98e0 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 2168
diff changeset
170 static void generate_blob_for(BufferBlob* blob, StubID id);
1b4e6a5d98e0 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 2168
diff changeset
171 static OopMapSet* generate_code_for(StubID id, StubAssembler* sasm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172 static OopMapSet* generate_exception_throw(StubAssembler* sasm, address target, bool has_argument);
2321
1b4e6a5d98e0 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 2168
diff changeset
173 static OopMapSet* generate_handle_exception(StubID id, StubAssembler* sasm);
1b4e6a5d98e0 7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents: 2168
diff changeset
174 static void generate_unwind_exception(StubAssembler *sasm);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
175 static OopMapSet* generate_patching(StubAssembler* sasm, address target);
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 static OopMapSet* generate_stub_call(StubAssembler* sasm, Register result, address entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
178 Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // runtime entry points
a61af66fc99e Initial load
duke
parents:
diff changeset
181 static void new_instance (JavaThread* thread, klassOopDesc* klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
182 static void new_type_array (JavaThread* thread, klassOopDesc* klass, jint length);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 static void new_object_array(JavaThread* thread, klassOopDesc* klass, jint length);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 static void new_multi_array (JavaThread* thread, klassOopDesc* klass, int rank, jint* dims);
a61af66fc99e Initial load
duke
parents:
diff changeset
185
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1748
diff changeset
186 static address counter_overflow(JavaThread* thread, int bci, methodOopDesc* method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 static void unimplemented_entry (JavaThread* thread, StubID id);
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 static address exception_handler_for_pc(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 static void throw_range_check_exception(JavaThread* thread, int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 static void throw_index_exception(JavaThread* thread, int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 static void throw_div0_exception(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 static void throw_null_pointer_exception(JavaThread* thread);
2168
e4fee0bdaa85 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 1972
diff changeset
196 static void throw_class_cast_exception(JavaThread* thread, oopDesc* object);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
197 static void throw_incompatible_class_change_error(JavaThread* thread);
2168
e4fee0bdaa85 7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents: 1972
diff changeset
198 static void throw_array_store_exception(JavaThread* thread, oopDesc* object);
4976
8f01f899bccd More GRAAL #ifdef; ignore graal directory on windows for client/server configuration.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4697
diff changeset
199 static void monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock);
8f01f899bccd More GRAAL #ifdef; ignore graal directory on windows for client/server configuration.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4697
diff changeset
200 static void monitorexit (JavaThread* thread, BasicObjectLock* lock);
8f01f899bccd More GRAAL #ifdef; ignore graal directory on windows for client/server configuration.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4697
diff changeset
201 #ifdef GRAAL
3714
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3682
diff changeset
202 static void graal_monitorenter(JavaThread* thread, oopDesc* obj, BasicLock* lock);
b648304ba4ff Change Graal monitor enter and exit from BasicObjectLock to BasicLock
Christian Wimmer <christian.wimmer@oracle.com>
parents: 3682
diff changeset
203 static void graal_monitorexit (JavaThread* thread, oopDesc* obj, BasicLock* lock);
4976
8f01f899bccd More GRAAL #ifdef; ignore graal directory on windows for client/server configuration.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4697
diff changeset
204 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
205
4048
cec1757a0134 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 3899
diff changeset
206 static void deoptimize(JavaThread* thread);
cec1757a0134 7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents: 3899
diff changeset
207
0
a61af66fc99e Initial load
duke
parents:
diff changeset
208 static int access_field_patching(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 static int move_klass_patching(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 static void patch_code(JavaThread* thread, StubID stub_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // initialization
1584
b812ff5abc73 6958292: C1: Enable parallel compilation
iveresov
parents: 1552
diff changeset
215 static void initialize(BufferBlob* blob);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
216 static void initialize_pd();
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
219 static CodeBlob* blob_for (StubID id);
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1681
diff changeset
220 static address entry_for(StubID id) { return blob_for(id)->code_begin(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
221 static const char* name_for (StubID id);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 static const char* name_for_address(address entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
223
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1584
diff changeset
224 // platform might add runtime names.
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1584
diff changeset
225 static const char* pd_name_for_address(address entry);
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1584
diff changeset
226
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // method tracing
a61af66fc99e Initial load
duke
parents:
diff changeset
228 static void trace_block_entry(jint block_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 #ifndef PRODUCT
2446
13bc79b5c9c8 7033154: Improve C1 arraycopy performance
roland
parents: 2321
diff changeset
231 static address throw_count_address() { return (address)&_throw_count; }
13bc79b5c9c8 7033154: Improve C1 arraycopy performance
roland
parents: 2321
diff changeset
232 static address arraycopy_count_address(BasicType type);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
233 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // directly accessible leaf routine
a61af66fc99e Initial load
duke
parents:
diff changeset
236 static int arraycopy(oopDesc* src, int src_pos, oopDesc* dst, int dst_pos, int length);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 static void primitive_arraycopy(HeapWord* src, HeapWord* dst, int length);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 static void oop_arraycopy(HeapWord* src, HeapWord* dst, int length);
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 static void print_statistics() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
242
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
243 #endif // SHARE_VM_C1_C1_RUNTIME1_HPP