annotate src/share/vm/c1/c1_Runtime1.hpp @ 1449:8cfe3537a0d3

Pointer verification stub. Two loose oop fixes in C1X C++ part. Logging which methods have been compiled.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Thu, 11 Nov 2010 14:09:37 +0100
parents 72cfb36c6bb2
children 2d26b0046e0d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class StubAssembler;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // The Runtime1 holds all assembly stubs and VM
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // runtime routines needed by code code generated
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // by the Compiler1.
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 #define RUNTIME1_STUBS(stub, last_entry) \
a61af66fc99e Initial load
duke
parents:
diff changeset
32 stub(dtrace_object_alloc) \
a61af66fc99e Initial load
duke
parents:
diff changeset
33 stub(unwind_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
34 stub(forward_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
35 stub(throw_range_check_failed) /* throws ArrayIndexOutOfBoundsException */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
36 stub(throw_index_exception) /* throws IndexOutOfBoundsException */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
37 stub(throw_div0_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
38 stub(throw_null_pointer_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
39 stub(register_finalizer) \
a61af66fc99e Initial load
duke
parents:
diff changeset
40 stub(new_instance) \
a61af66fc99e Initial load
duke
parents:
diff changeset
41 stub(fast_new_instance) \
a61af66fc99e Initial load
duke
parents:
diff changeset
42 stub(fast_new_instance_init_check) \
a61af66fc99e Initial load
duke
parents:
diff changeset
43 stub(new_type_array) \
a61af66fc99e Initial load
duke
parents:
diff changeset
44 stub(new_object_array) \
a61af66fc99e Initial load
duke
parents:
diff changeset
45 stub(new_multi_array) \
a61af66fc99e Initial load
duke
parents:
diff changeset
46 stub(handle_exception_nofpu) /* optimized version that does not preserve fpu registers */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
47 stub(handle_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
48 stub(throw_array_store_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
49 stub(throw_class_cast_exception) \
a61af66fc99e Initial load
duke
parents:
diff changeset
50 stub(throw_incompatible_class_change_error) \
a61af66fc99e Initial load
duke
parents:
diff changeset
51 stub(slow_subtype_check) \
a61af66fc99e Initial load
duke
parents:
diff changeset
52 stub(monitorenter) \
a61af66fc99e Initial load
duke
parents:
diff changeset
53 stub(monitorenter_nofpu) /* optimized version that does not preserve fpu registers */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
54 stub(monitorexit) \
a61af66fc99e Initial load
duke
parents:
diff changeset
55 stub(monitorexit_nofpu) /* optimized version that does not preserve fpu registers */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
56 stub(access_field_patching) \
a61af66fc99e Initial load
duke
parents:
diff changeset
57 stub(load_klass_patching) \
a61af66fc99e Initial load
duke
parents:
diff changeset
58 stub(jvmti_exception_throw) \
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
59 stub(g1_pre_barrier_slow) \
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
60 stub(g1_post_barrier_slow) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61 stub(fpu2long_stub) \
a61af66fc99e Initial load
duke
parents:
diff changeset
62 stub(counter_overflow) \
1429
abc670a709dc * -XX:TraceC1X=0...5 controls the native c1x tracing
Lukas Stadler <lukas.stadler@oracle.com>
parents: 342
diff changeset
63 stub(c1x_unwind_exception_call) \
abc670a709dc * -XX:TraceC1X=0...5 controls the native c1x tracing
Lukas Stadler <lukas.stadler@oracle.com>
parents: 342
diff changeset
64 stub(c1x_handle_exception) \
abc670a709dc * -XX:TraceC1X=0...5 controls the native c1x tracing
Lukas Stadler <lukas.stadler@oracle.com>
parents: 342
diff changeset
65 stub(c1x_global_implicit_null) \
abc670a709dc * -XX:TraceC1X=0...5 controls the native c1x tracing
Lukas Stadler <lukas.stadler@oracle.com>
parents: 342
diff changeset
66 stub(c1x_throw_div0_exception) \
abc670a709dc * -XX:TraceC1X=0...5 controls the native c1x tracing
Lukas Stadler <lukas.stadler@oracle.com>
parents: 342
diff changeset
67 stub(c1x_slow_subtype_check) \
1434
72cfb36c6bb2 * enabled all jtt tests
Lukas Stadler <lukas.stadler@oracle.com>
parents: 1429
diff changeset
68 stub(c1x_arithmetic_frem) \
72cfb36c6bb2 * enabled all jtt tests
Lukas Stadler <lukas.stadler@oracle.com>
parents: 1429
diff changeset
69 stub(c1x_arithmetic_drem) \
72cfb36c6bb2 * enabled all jtt tests
Lukas Stadler <lukas.stadler@oracle.com>
parents: 1429
diff changeset
70 stub(c1x_monitorenter) \
72cfb36c6bb2 * enabled all jtt tests
Lukas Stadler <lukas.stadler@oracle.com>
parents: 1429
diff changeset
71 stub(c1x_monitorexit) \
1449
8cfe3537a0d3 Pointer verification stub. Two loose oop fixes in C1X C++ part. Logging which methods have been compiled.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1434
diff changeset
72 stub(c1x_verify_pointer) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73 last_entry(number_of_ids)
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 #define DECLARE_STUB_ID(x) x ## _id ,
a61af66fc99e Initial load
duke
parents:
diff changeset
76 #define DECLARE_LAST_STUB_ID(x) x
a61af66fc99e Initial load
duke
parents:
diff changeset
77 #define STUB_NAME(x) #x " Runtime1 stub",
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #define LAST_STUB_NAME(x) #x " Runtime1 stub"
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 class Runtime1: public AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 friend class ArrayCopyStub;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static int desired_max_code_buffer_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return (int) NMethodSizeLimit; // default 256K or 512K
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 static int desired_max_constant_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 return (int) NMethodSizeLimit / 10; // about 25K
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Note: This buffers is allocated once at startup since allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // for each compilation seems to be too expensive (at least on Intel
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // win32).
a61af66fc99e Initial load
duke
parents:
diff changeset
94 static BufferBlob* _buffer_blob;
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
97 enum StubID {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 RUNTIME1_STUBS(DECLARE_STUB_ID, DECLARE_LAST_STUB_ID)
a61af66fc99e Initial load
duke
parents:
diff changeset
99 };
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
102 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
103 static int _resolve_invoke_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 static int _handle_wrong_method_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 static int _ic_miss_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 static int _generic_arraycopy_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 static int _primitive_arraycopy_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static int _oop_arraycopy_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 static int _arraycopy_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 static int _new_type_array_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 static int _new_object_array_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 static int _new_instance_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 static int _new_multi_array_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 static int _monitorenter_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 static int _monitorexit_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 static int _patch_code_slowcase_cnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 static int _throw_range_check_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 static int _throw_index_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 static int _throw_div0_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 static int _throw_null_pointer_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 static int _throw_class_cast_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 static int _throw_incompatible_class_change_error_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 static int _throw_array_store_exception_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 static int _throw_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
128 static bool _is_initialized;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 static CodeBlob* _blobs[number_of_ids];
a61af66fc99e Initial load
duke
parents:
diff changeset
130 static const char* _blob_names[];
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // stub generation
a61af66fc99e Initial load
duke
parents:
diff changeset
133 static void generate_blob_for(StubID id);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 static OopMapSet* generate_code_for(StubID id, StubAssembler* masm);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 static OopMapSet* generate_exception_throw(StubAssembler* sasm, address target, bool has_argument);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 static void generate_handle_exception(StubAssembler *sasm, OopMapSet* oop_maps, OopMap* oop_map, bool ignore_fpu_registers = false);
1429
abc670a709dc * -XX:TraceC1X=0...5 controls the native c1x tracing
Lukas Stadler <lukas.stadler@oracle.com>
parents: 342
diff changeset
137 static void c1x_generate_handle_exception(StubAssembler *sasm, OopMapSet* oop_maps, OopMap* oop_map);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
138 static void generate_unwind_exception(StubAssembler *sasm);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 static OopMapSet* generate_patching(StubAssembler* sasm, address target);
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 static OopMapSet* generate_stub_call(StubAssembler* sasm, Register result, address entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
142 Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // runtime entry points
a61af66fc99e Initial load
duke
parents:
diff changeset
145 static void new_instance (JavaThread* thread, klassOopDesc* klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 static void new_type_array (JavaThread* thread, klassOopDesc* klass, jint length);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 static void new_object_array(JavaThread* thread, klassOopDesc* klass, jint length);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 static void new_multi_array (JavaThread* thread, klassOopDesc* klass, int rank, jint* dims);
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 #ifdef TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
151 static void counter_overflow(JavaThread* thread, int bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 #endif // TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 static void unimplemented_entry (JavaThread* thread, StubID id);
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 static address exception_handler_for_pc(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 static void post_jvmti_exception_throw(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 static void throw_range_check_exception(JavaThread* thread, int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 static void throw_index_exception(JavaThread* thread, int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 static void throw_div0_exception(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 static void throw_null_pointer_exception(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 static void throw_class_cast_exception(JavaThread* thread, oopDesc* obect);
a61af66fc99e Initial load
duke
parents:
diff changeset
164 static void throw_incompatible_class_change_error(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 static void throw_array_store_exception(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 static void monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
168 static void monitorexit (JavaThread* thread, BasicObjectLock* lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 static int access_field_patching(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 static int move_klass_patching(JavaThread* thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 static void patch_code(JavaThread* thread, StubID stub_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
176 static BufferBlob* get_buffer_blob();
a61af66fc99e Initial load
duke
parents:
diff changeset
177 static void setup_code_buffer(CodeBuffer* cb, int call_stub_estimate);
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
180 static bool is_initialized() { return _is_initialized; }
a61af66fc99e Initial load
duke
parents:
diff changeset
181 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
182 static void initialize_pd();
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // stubs
a61af66fc99e Initial load
duke
parents:
diff changeset
185 static CodeBlob* blob_for (StubID id);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 static address entry_for(StubID id) { return blob_for(id)->instructions_begin(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 static const char* name_for (StubID id);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 static const char* name_for_address(address entry);
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // method tracing
a61af66fc99e Initial load
duke
parents:
diff changeset
191 static void trace_block_entry(jint block_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
194 static address throw_count_address() { return (address)&_throw_count; }
a61af66fc99e Initial load
duke
parents:
diff changeset
195 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // directly accessible leaf routine
a61af66fc99e Initial load
duke
parents:
diff changeset
198 static int arraycopy(oopDesc* src, int src_pos, oopDesc* dst, int dst_pos, int length);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 static void primitive_arraycopy(HeapWord* src, HeapWord* dst, int length);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 static void oop_arraycopy(HeapWord* src, HeapWord* dst, int length);
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 static void print_statistics() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
203 };