author | tschatzl |
Wed, 09 Oct 2013 10:57:01 +0200 | |
changeset 20405 | 3321f6b16639 |
parent 18507 | 61bfc8995bb3 |
child 20707 | b3b658c6d1f8 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
14835
diff
changeset
|
2 |
* Copyright (c) 1998, 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:
4637
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4637
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:
4637
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OPTO_RUNTIME_HPP |
26 |
#define SHARE_VM_OPTO_RUNTIME_HPP |
|
27 |
||
28 |
#include "code/codeBlob.hpp" |
|
29 |
#include "opto/machnode.hpp" |
|
30 |
#include "opto/type.hpp" |
|
31 |
#include "runtime/biasedLocking.hpp" |
|
32 |
#include "runtime/deoptimization.hpp" |
|
33 |
#include "runtime/vframe.hpp" |
|
34 |
||
1 | 35 |
//------------------------------OptoRuntime------------------------------------ |
36 |
// Opto compiler runtime routines |
|
37 |
// |
|
38 |
// These are all generated from Ideal graphs. They are called with the |
|
39 |
// Java calling convention. Internally they call C++. They are made once at |
|
40 |
// startup time and Opto compiles calls to them later. |
|
41 |
// Things are broken up into quads: the signature they will be called with, |
|
42 |
// the address of the generated code, the corresponding C++ code and an |
|
43 |
// nmethod. |
|
44 |
||
45 |
// The signature (returned by "xxx_Type()") is used at startup time by the |
|
46 |
// Generator to make the generated code "xxx_Java". Opto compiles calls |
|
47 |
// to the generated code "xxx_Java". When the compiled code gets executed, |
|
48 |
// it calls the C++ code "xxx_C". The generated nmethod is saved in the |
|
49 |
// CodeCache. Exception handlers use the nmethod to get the callee-save |
|
50 |
// register OopMaps. |
|
51 |
class CallInfo; |
|
52 |
||
53 |
// |
|
54 |
// NamedCounters are tagged counters which can be used for profiling |
|
55 |
// code in various ways. Currently they are used by the lock coarsening code |
|
56 |
// |
|
57 |
||
13195 | 58 |
class NamedCounter : public CHeapObj<mtCompiler> { |
1 | 59 |
public: |
60 |
enum CounterTag { |
|
61 |
NoTag, |
|
62 |
LockCounter, |
|
63 |
EliminatedLockCounter, |
|
64 |
BiasedLockingCounter |
|
65 |
}; |
|
66 |
||
67 |
private: |
|
68 |
const char * _name; |
|
69 |
int _count; |
|
70 |
CounterTag _tag; |
|
71 |
NamedCounter* _next; |
|
72 |
||
73 |
public: |
|
74 |
NamedCounter(const char *n, CounterTag tag = NoTag): |
|
75 |
_name(n), |
|
76 |
_count(0), |
|
77 |
_next(NULL), |
|
78 |
_tag(tag) {} |
|
79 |
||
80 |
const char * name() const { return _name; } |
|
81 |
int count() const { return _count; } |
|
82 |
address addr() { return (address)&_count; } |
|
83 |
CounterTag tag() const { return _tag; } |
|
84 |
void set_tag(CounterTag tag) { _tag = tag; } |
|
85 |
||
86 |
NamedCounter* next() const { return _next; } |
|
87 |
void set_next(NamedCounter* next) { |
|
88 |
assert(_next == NULL, "already set"); |
|
89 |
_next = next; |
|
90 |
} |
|
91 |
||
92 |
}; |
|
93 |
||
94 |
class BiasedLockingNamedCounter : public NamedCounter { |
|
95 |
private: |
|
96 |
BiasedLockingCounters _counters; |
|
97 |
||
98 |
public: |
|
99 |
BiasedLockingNamedCounter(const char *n) : |
|
100 |
NamedCounter(n, BiasedLockingCounter), _counters() {} |
|
101 |
||
102 |
BiasedLockingCounters* counters() { return &_counters; } |
|
103 |
}; |
|
104 |
||
105 |
typedef const TypeFunc*(*TypeFunc_generator)(); |
|
106 |
||
107 |
class OptoRuntime : public AllStatic { |
|
108 |
friend class Matcher; // allow access to stub names |
|
109 |
||
110 |
private: |
|
111 |
// define stubs |
|
112 |
static address generate_stub(ciEnv* ci_env, TypeFunc_generator gen, address C_function, const char *name, int is_fancy_jump, bool pass_tls, bool save_arguments, bool return_pc); |
|
113 |
||
114 |
// References to generated stubs |
|
115 |
static address _new_instance_Java; |
|
116 |
static address _new_array_Java; |
|
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10028
diff
changeset
|
117 |
static address _new_array_nozero_Java; |
1 | 118 |
static address _multianewarray2_Java; |
119 |
static address _multianewarray3_Java; |
|
120 |
static address _multianewarray4_Java; |
|
121 |
static address _multianewarray5_Java; |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
7397
diff
changeset
|
122 |
static address _multianewarrayN_Java; |
1374 | 123 |
static address _g1_wb_pre_Java; |
124 |
static address _g1_wb_post_Java; |
|
1 | 125 |
static address _vtable_must_compile_Java; |
126 |
static address _complete_monitor_locking_Java; |
|
127 |
static address _rethrow_Java; |
|
128 |
||
129 |
static address _slow_arraycopy_Java; |
|
130 |
static address _register_finalizer_Java; |
|
131 |
||
132 |
# ifdef ENABLE_ZAP_DEAD_LOCALS |
|
133 |
static address _zap_dead_Java_locals_Java; |
|
134 |
static address _zap_dead_native_locals_Java; |
|
135 |
# endif |
|
136 |
||
137 |
||
138 |
// |
|
139 |
// Implementation of runtime methods |
|
140 |
// ================================= |
|
141 |
||
142 |
// Allocate storage for a Java instance. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
143 |
static void new_instance_C(Klass* instance_klass, JavaThread *thread); |
1 | 144 |
|
145 |
// Allocate storage for a objArray or typeArray |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
146 |
static void new_array_C(Klass* array_klass, int len, JavaThread *thread); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
147 |
static void new_array_nozero_C(Klass* array_klass, int len, JavaThread *thread); |
1 | 148 |
|
4637 | 149 |
// Post-slow-path-allocation, pre-initializing-stores step for |
150 |
// implementing ReduceInitialCardMarks |
|
151 |
static void new_store_pre_barrier(JavaThread* thread); |
|
1 | 152 |
|
153 |
// Allocate storage for a multi-dimensional arrays |
|
154 |
// Note: needs to be fixed for arbitrary number of dimensions |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
155 |
static void multianewarray2_C(Klass* klass, int len1, int len2, JavaThread *thread); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
156 |
static void multianewarray3_C(Klass* klass, int len1, int len2, int len3, JavaThread *thread); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
157 |
static void multianewarray4_C(Klass* klass, int len1, int len2, int len3, int len4, JavaThread *thread); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
158 |
static void multianewarray5_C(Klass* klass, int len1, int len2, int len3, int len4, int len5, JavaThread *thread); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
159 |
static void multianewarrayN_C(Klass* klass, arrayOopDesc* dims, JavaThread *thread); |
1374 | 160 |
static void g1_wb_pre_C(oopDesc* orig, JavaThread* thread); |
161 |
static void g1_wb_post_C(void* card_addr, JavaThread* thread); |
|
1 | 162 |
|
163 |
public: |
|
164 |
// Slow-path Locking and Unlocking |
|
165 |
static void complete_monitor_locking_C(oopDesc* obj, BasicLock* lock, JavaThread* thread); |
|
166 |
static void complete_monitor_unlocking_C(oopDesc* obj, BasicLock* lock); |
|
167 |
||
168 |
private: |
|
169 |
||
170 |
// Implicit exception support |
|
171 |
static void throw_null_exception_C(JavaThread* thread); |
|
172 |
||
173 |
// Exception handling |
|
174 |
static address handle_exception_C (JavaThread* thread); |
|
175 |
static address handle_exception_C_helper(JavaThread* thread, nmethod*& nm); |
|
176 |
static address rethrow_C (oopDesc* exception, JavaThread *thread, address return_pc ); |
|
14835
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14132
diff
changeset
|
177 |
static void deoptimize_caller_frame (JavaThread *thread); |
1 | 178 |
static void deoptimize_caller_frame (JavaThread *thread, bool doit); |
10987
696ed3367418
7109887: java/util/Arrays/CopyMethods.java fails with -XX:+DeoptimizeALot
kvn
parents:
10566
diff
changeset
|
179 |
static bool is_deoptimized_caller_frame (JavaThread *thread); |
1 | 180 |
|
181 |
// CodeBlob support |
|
182 |
// =================================================================== |
|
183 |
||
184 |
static ExceptionBlob* _exception_blob; |
|
185 |
static void generate_exception_blob(); |
|
186 |
||
187 |
static void register_finalizer(oopDesc* obj, JavaThread* thread); |
|
188 |
||
189 |
// zaping dead locals, either from Java frames or from native frames |
|
190 |
# ifdef ENABLE_ZAP_DEAD_LOCALS |
|
191 |
static void zap_dead_Java_locals_C( JavaThread* thread); |
|
192 |
static void zap_dead_native_locals_C( JavaThread* thread); |
|
193 |
||
194 |
static void zap_dead_java_or_native_locals( JavaThread*, bool (*)(frame*)); |
|
195 |
||
196 |
public: |
|
197 |
static int ZapDeadCompiledLocals_count; |
|
198 |
||
199 |
# endif |
|
200 |
||
201 |
||
202 |
public: |
|
203 |
||
204 |
static bool is_callee_saved_register(MachRegisterNumbers reg); |
|
205 |
||
206 |
// One time only generate runtime code stubs |
|
207 |
static void generate(ciEnv* env); |
|
208 |
||
209 |
// Returns the name of a stub |
|
210 |
static const char* stub_name(address entry); |
|
211 |
||
212 |
// access to runtime stubs entry points for java code |
|
213 |
static address new_instance_Java() { return _new_instance_Java; } |
|
214 |
static address new_array_Java() { return _new_array_Java; } |
|
10566
630c177ec580
7081933: Use zeroing elimination optimization for large array
kvn
parents:
10028
diff
changeset
|
215 |
static address new_array_nozero_Java() { return _new_array_nozero_Java; } |
1 | 216 |
static address multianewarray2_Java() { return _multianewarray2_Java; } |
217 |
static address multianewarray3_Java() { return _multianewarray3_Java; } |
|
218 |
static address multianewarray4_Java() { return _multianewarray4_Java; } |
|
219 |
static address multianewarray5_Java() { return _multianewarray5_Java; } |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
7397
diff
changeset
|
220 |
static address multianewarrayN_Java() { return _multianewarrayN_Java; } |
1374 | 221 |
static address g1_wb_pre_Java() { return _g1_wb_pre_Java; } |
222 |
static address g1_wb_post_Java() { return _g1_wb_post_Java; } |
|
1 | 223 |
static address vtable_must_compile_stub() { return _vtable_must_compile_Java; } |
224 |
static address complete_monitor_locking_Java() { return _complete_monitor_locking_Java; } |
|
225 |
||
226 |
static address slow_arraycopy_Java() { return _slow_arraycopy_Java; } |
|
227 |
static address register_finalizer_Java() { return _register_finalizer_Java; } |
|
228 |
||
229 |
||
230 |
# ifdef ENABLE_ZAP_DEAD_LOCALS |
|
231 |
static address zap_dead_locals_stub(bool is_native) { return is_native |
|
232 |
? _zap_dead_native_locals_Java |
|
233 |
: _zap_dead_Java_locals_Java; } |
|
234 |
static MachNode* node_to_call_zap_dead_locals(Node* n, int block_num, bool is_native); |
|
235 |
# endif |
|
236 |
||
237 |
static ExceptionBlob* exception_blob() { return _exception_blob; } |
|
238 |
||
239 |
// Leaf routines helping with method data update |
|
240 |
static void profile_receiver_type_C(DataLayout* data, oopDesc* receiver); |
|
241 |
||
242 |
// Implicit exception support |
|
243 |
static void throw_div0_exception_C (JavaThread* thread); |
|
244 |
static void throw_stack_overflow_error_C(JavaThread* thread); |
|
245 |
||
246 |
// Exception handling |
|
247 |
static address rethrow_stub() { return _rethrow_Java; } |
|
248 |
||
249 |
||
250 |
// Type functions |
|
251 |
// ====================================================== |
|
252 |
||
253 |
static const TypeFunc* new_instance_Type(); // object allocation (slow case) |
|
254 |
static const TypeFunc* new_array_Type (); // [a]newarray (slow case) |
|
255 |
static const TypeFunc* multianewarray_Type(int ndim); // multianewarray |
|
256 |
static const TypeFunc* multianewarray2_Type(); // multianewarray |
|
257 |
static const TypeFunc* multianewarray3_Type(); // multianewarray |
|
258 |
static const TypeFunc* multianewarray4_Type(); // multianewarray |
|
259 |
static const TypeFunc* multianewarray5_Type(); // multianewarray |
|
10028
035159a868a1
7058510: multinewarray with 6 dimensions uncommon traps in server compiler
iveresov
parents:
7397
diff
changeset
|
260 |
static const TypeFunc* multianewarrayN_Type(); // multianewarray |
1374 | 261 |
static const TypeFunc* g1_wb_pre_Type(); |
262 |
static const TypeFunc* g1_wb_post_Type(); |
|
1 | 263 |
static const TypeFunc* complete_monitor_enter_Type(); |
264 |
static const TypeFunc* complete_monitor_exit_Type(); |
|
265 |
static const TypeFunc* uncommon_trap_Type(); |
|
266 |
static const TypeFunc* athrow_Type(); |
|
267 |
static const TypeFunc* rethrow_Type(); |
|
268 |
static const TypeFunc* Math_D_D_Type(); // sin,cos & friends |
|
269 |
static const TypeFunc* Math_DD_D_Type(); // mod,pow & friends |
|
270 |
static const TypeFunc* modf_Type(); |
|
271 |
static const TypeFunc* l2f_Type(); |
|
12377
ae6def2813e0
7160570: Intrinsification support for tracing framework
rbackman
parents:
10987
diff
changeset
|
272 |
static const TypeFunc* void_long_Type(); |
1 | 273 |
|
274 |
static const TypeFunc* flush_windows_Type(); |
|
275 |
||
276 |
// arraycopy routine types |
|
277 |
static const TypeFunc* fast_arraycopy_Type(); // bit-blasters |
|
278 |
static const TypeFunc* checkcast_arraycopy_Type(); |
|
279 |
static const TypeFunc* generic_arraycopy_Type(); |
|
280 |
static const TypeFunc* slow_arraycopy_Type(); // the full routine |
|
281 |
||
6433 | 282 |
static const TypeFunc* array_fill_Type(); |
283 |
||
14132 | 284 |
static const TypeFunc* aescrypt_block_Type(); |
285 |
static const TypeFunc* cipherBlockChaining_aescrypt_Type(); |
|
286 |
||
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
14835
diff
changeset
|
287 |
static const TypeFunc* updateBytesCRC32_Type(); |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
14835
diff
changeset
|
288 |
|
1 | 289 |
// leaf on stack replacement interpreter accessor types |
290 |
static const TypeFunc* osr_end_Type(); |
|
291 |
||
292 |
// leaf methodData routine types |
|
293 |
static const TypeFunc* profile_receiver_type_Type(); |
|
294 |
||
295 |
// leaf on stack replacement interpreter accessor types |
|
296 |
static const TypeFunc* fetch_int_Type(); |
|
297 |
static const TypeFunc* fetch_long_Type(); |
|
298 |
static const TypeFunc* fetch_float_Type(); |
|
299 |
static const TypeFunc* fetch_double_Type(); |
|
300 |
static const TypeFunc* fetch_oop_Type(); |
|
301 |
static const TypeFunc* fetch_monitor_Type(); |
|
302 |
||
303 |
static const TypeFunc* register_finalizer_Type(); |
|
304 |
||
305 |
// Dtrace support |
|
306 |
static const TypeFunc* dtrace_method_entry_exit_Type(); |
|
307 |
static const TypeFunc* dtrace_object_alloc_Type(); |
|
308 |
||
309 |
# ifdef ENABLE_ZAP_DEAD_LOCALS |
|
310 |
static const TypeFunc* zap_dead_locals_Type(); |
|
311 |
# endif |
|
312 |
||
313 |
private: |
|
314 |
static NamedCounter * volatile _named_counters; |
|
315 |
||
316 |
public: |
|
317 |
// helper function which creates a named counter labeled with the |
|
318 |
// if they are available |
|
319 |
static NamedCounter* new_named_counter(JVMState* jvms, NamedCounter::CounterTag tag); |
|
320 |
||
321 |
// dumps all the named counters |
|
322 |
static void print_named_counters(); |
|
323 |
||
324 |
}; |
|
7397 | 325 |
|
326 |
#endif // SHARE_VM_OPTO_RUNTIME_HPP |