author | coleenp |
Fri, 05 Dec 2014 15:15:13 -0500 | |
changeset 28019 | a6303ff71902 |
parent 24442 | 4d4ae31dea26 |
child 46648 | 527ce5a7c737 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
19710
diff
changeset
|
2 |
* Copyright (c) 1999, 2013, 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:
1374
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1374
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:
1374
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_C1_C1_RUNTIME1_HPP |
26 |
#define SHARE_VM_C1_C1_RUNTIME1_HPP |
|
27 |
||
28 |
#include "c1/c1_FrameMap.hpp" |
|
29 |
#include "code/stubs.hpp" |
|
30 |
#include "interpreter/interpreter.hpp" |
|
31 |
#include "memory/allocation.hpp" |
|
32 |
#include "runtime/deoptimization.hpp" |
|
33 |
||
1 | 34 |
class StubAssembler; |
35 |
||
36 |
// The Runtime1 holds all assembly stubs and VM |
|
37 |
// runtime routines needed by code code generated |
|
38 |
// by the Compiler1. |
|
39 |
||
40 |
#define RUNTIME1_STUBS(stub, last_entry) \ |
|
41 |
stub(dtrace_object_alloc) \ |
|
42 |
stub(unwind_exception) \ |
|
43 |
stub(forward_exception) \ |
|
44 |
stub(throw_range_check_failed) /* throws ArrayIndexOutOfBoundsException */ \ |
|
45 |
stub(throw_index_exception) /* throws IndexOutOfBoundsException */ \ |
|
46 |
stub(throw_div0_exception) \ |
|
47 |
stub(throw_null_pointer_exception) \ |
|
48 |
stub(register_finalizer) \ |
|
49 |
stub(new_instance) \ |
|
50 |
stub(fast_new_instance) \ |
|
51 |
stub(fast_new_instance_init_check) \ |
|
52 |
stub(new_type_array) \ |
|
53 |
stub(new_object_array) \ |
|
54 |
stub(new_multi_array) \ |
|
55 |
stub(handle_exception_nofpu) /* optimized version that does not preserve fpu registers */ \ |
|
56 |
stub(handle_exception) \ |
|
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
57 |
stub(handle_exception_from_callee) \ |
1 | 58 |
stub(throw_array_store_exception) \ |
59 |
stub(throw_class_cast_exception) \ |
|
60 |
stub(throw_incompatible_class_change_error) \ |
|
61 |
stub(slow_subtype_check) \ |
|
62 |
stub(monitorenter) \ |
|
63 |
stub(monitorenter_nofpu) /* optimized version that does not preserve fpu registers */ \ |
|
64 |
stub(monitorexit) \ |
|
65 |
stub(monitorexit_nofpu) /* optimized version that does not preserve fpu registers */ \ |
|
10972
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
66 |
stub(deoptimize) \ |
1 | 67 |
stub(access_field_patching) \ |
68 |
stub(load_klass_patching) \ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
69 |
stub(load_mirror_patching) \ |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
16611
diff
changeset
|
70 |
stub(load_appendix_patching) \ |
1374 | 71 |
stub(g1_pre_barrier_slow) \ |
72 |
stub(g1_post_barrier_slow) \ |
|
1 | 73 |
stub(fpu2long_stub) \ |
74 |
stub(counter_overflow) \ |
|
16611 | 75 |
stub(predicate_failed_trap) \ |
1 | 76 |
last_entry(number_of_ids) |
77 |
||
78 |
#define DECLARE_STUB_ID(x) x ## _id , |
|
79 |
#define DECLARE_LAST_STUB_ID(x) x |
|
80 |
#define STUB_NAME(x) #x " Runtime1 stub", |
|
81 |
#define LAST_STUB_NAME(x) #x " Runtime1 stub" |
|
82 |
||
83 |
class Runtime1: public AllStatic { |
|
84 |
friend class VMStructs; |
|
85 |
friend class ArrayCopyStub; |
|
86 |
||
87 |
public: |
|
88 |
enum StubID { |
|
89 |
RUNTIME1_STUBS(DECLARE_STUB_ID, DECLARE_LAST_STUB_ID) |
|
90 |
}; |
|
91 |
||
92 |
// statistics |
|
93 |
#ifndef PRODUCT |
|
94 |
static int _resolve_invoke_cnt; |
|
95 |
static int _handle_wrong_method_cnt; |
|
96 |
static int _ic_miss_cnt; |
|
97 |
static int _generic_arraycopy_cnt; |
|
98 |
static int _primitive_arraycopy_cnt; |
|
99 |
static int _oop_arraycopy_cnt; |
|
9102 | 100 |
static int _generic_arraycopystub_cnt; |
1 | 101 |
static int _arraycopy_slowcase_cnt; |
9102 | 102 |
static int _arraycopy_checkcast_cnt; |
103 |
static int _arraycopy_checkcast_attempt_cnt; |
|
1 | 104 |
static int _new_type_array_slowcase_cnt; |
105 |
static int _new_object_array_slowcase_cnt; |
|
106 |
static int _new_instance_slowcase_cnt; |
|
107 |
static int _new_multi_array_slowcase_cnt; |
|
108 |
static int _monitorenter_slowcase_cnt; |
|
109 |
static int _monitorexit_slowcase_cnt; |
|
110 |
static int _patch_code_slowcase_cnt; |
|
111 |
static int _throw_range_check_exception_count; |
|
112 |
static int _throw_index_exception_count; |
|
113 |
static int _throw_div0_exception_count; |
|
114 |
static int _throw_null_pointer_exception_count; |
|
115 |
static int _throw_class_cast_exception_count; |
|
116 |
static int _throw_incompatible_class_change_error_count; |
|
117 |
static int _throw_array_store_exception_count; |
|
118 |
static int _throw_count; |
|
119 |
#endif |
|
120 |
||
121 |
private: |
|
122 |
static CodeBlob* _blobs[number_of_ids]; |
|
123 |
static const char* _blob_names[]; |
|
124 |
||
125 |
// stub generation |
|
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
126 |
static void generate_blob_for(BufferBlob* blob, StubID id); |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
127 |
static OopMapSet* generate_code_for(StubID id, StubAssembler* sasm); |
1 | 128 |
static OopMapSet* generate_exception_throw(StubAssembler* sasm, address target, bool has_argument); |
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
129 |
static OopMapSet* generate_handle_exception(StubID id, StubAssembler* sasm); |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
8067
diff
changeset
|
130 |
static void generate_unwind_exception(StubAssembler *sasm); |
1 | 131 |
static OopMapSet* generate_patching(StubAssembler* sasm, address target); |
132 |
||
133 |
static OopMapSet* generate_stub_call(StubAssembler* sasm, Register result, address entry, |
|
134 |
Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg); |
|
135 |
||
136 |
// runtime entry points |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
137 |
static void new_instance (JavaThread* thread, Klass* klass); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
138 |
static void new_type_array (JavaThread* thread, Klass* klass, jint length); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
139 |
static void new_object_array(JavaThread* thread, Klass* klass, jint length); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
140 |
static void new_multi_array (JavaThread* thread, Klass* klass, int rank, jint* dims); |
1 | 141 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
142 |
static address counter_overflow(JavaThread* thread, int bci, Method* method); |
1 | 143 |
|
144 |
static void unimplemented_entry (JavaThread* thread, StubID id); |
|
145 |
||
146 |
static address exception_handler_for_pc(JavaThread* thread); |
|
147 |
||
148 |
static void throw_range_check_exception(JavaThread* thread, int index); |
|
149 |
static void throw_index_exception(JavaThread* thread, int index); |
|
150 |
static void throw_div0_exception(JavaThread* thread); |
|
151 |
static void throw_null_pointer_exception(JavaThread* thread); |
|
8067
f5f4eac4c48f
7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents:
7397
diff
changeset
|
152 |
static void throw_class_cast_exception(JavaThread* thread, oopDesc* object); |
1 | 153 |
static void throw_incompatible_class_change_error(JavaThread* thread); |
8067
f5f4eac4c48f
7008809: should report the class in ArrayStoreExceptions from compiled code
never
parents:
7397
diff
changeset
|
154 |
static void throw_array_store_exception(JavaThread* thread, oopDesc* object); |
1 | 155 |
|
156 |
static void monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock); |
|
157 |
static void monitorexit (JavaThread* thread, BasicObjectLock* lock); |
|
158 |
||
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
22234
diff
changeset
|
159 |
static void deoptimize(JavaThread* thread, jint trap_request); |
10972
ef164805934c
7102657: JSR 292: C1 deoptimizes unlinked invokedynamic call sites infinitely
twisti
parents:
10508
diff
changeset
|
160 |
|
1 | 161 |
static int access_field_patching(JavaThread* thread); |
162 |
static int move_klass_patching(JavaThread* thread); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12949
diff
changeset
|
163 |
static int move_mirror_patching(JavaThread* thread); |
19710
2f8ca425504e
7199175: JSR 292: C1 needs patching when invokedynamic/invokehandle call site is not linked
roland
parents:
16611
diff
changeset
|
164 |
static int move_appendix_patching(JavaThread* thread); |
1 | 165 |
|
166 |
static void patch_code(JavaThread* thread, StubID stub_id); |
|
167 |
||
168 |
public: |
|
169 |
// initialization |
|
5707 | 170 |
static void initialize(BufferBlob* blob); |
1 | 171 |
static void initialize_pd(); |
172 |
||
173 |
// stubs |
|
174 |
static CodeBlob* blob_for (StubID id); |
|
6418 | 175 |
static address entry_for(StubID id) { return blob_for(id)->code_begin(); } |
1 | 176 |
static const char* name_for (StubID id); |
177 |
static const char* name_for_address(address entry); |
|
178 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5707
diff
changeset
|
179 |
// platform might add runtime names. |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5707
diff
changeset
|
180 |
static const char* pd_name_for_address(address entry); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5707
diff
changeset
|
181 |
|
1 | 182 |
// method tracing |
183 |
static void trace_block_entry(jint block_id); |
|
184 |
||
185 |
#ifndef PRODUCT |
|
9102 | 186 |
static address throw_count_address() { return (address)&_throw_count; } |
187 |
static address arraycopy_count_address(BasicType type); |
|
1 | 188 |
#endif |
189 |
||
190 |
// directly accessible leaf routine |
|
191 |
static int arraycopy(oopDesc* src, int src_pos, oopDesc* dst, int dst_pos, int length); |
|
192 |
static void primitive_arraycopy(HeapWord* src, HeapWord* dst, int length); |
|
193 |
static void oop_arraycopy(HeapWord* src, HeapWord* dst, int length); |
|
12949 | 194 |
static int is_instance_of(oopDesc* mirror, oopDesc* obj); |
1 | 195 |
|
16611 | 196 |
static void predicate_failed_trap(JavaThread* thread); |
197 |
||
1 | 198 |
static void print_statistics() PRODUCT_RETURN; |
199 |
}; |
|
7397 | 200 |
|
201 |
#endif // SHARE_VM_C1_C1_RUNTIME1_HPP |