annotate src/share/vm/runtime/stubRoutines.cpp @ 1956:35f885165c69

6981737: The java.vm.specification.version property is 1.0, seems like it should be 2.0 Summary: Change property value to 1.<major_version> for major_version >= 7 Reviewed-by: dholmes, acorn
author kamg
date Fri, 05 Nov 2010 09:32:08 -0400
parents 14197af1010e
children f95d63e2154a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
2 * Copyright (c) 1997, 2010, 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: 1490
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
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: 1490
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
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_stubRoutines.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // Implementation of StubRoutines - for a description
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // of how to extend it, see the header file.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Class Variables
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 BufferBlob* StubRoutines::_code1 = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 BufferBlob* StubRoutines::_code2 = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 address StubRoutines::_call_stub_return_address = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 address StubRoutines::_call_stub_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 address StubRoutines::_catch_exception_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 address StubRoutines::_forward_exception_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 address StubRoutines::_throw_AbstractMethodError_entry = NULL;
16
f8236e79048a 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 0
diff changeset
43 address StubRoutines::_throw_IncompatibleClassChangeError_entry = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
44 address StubRoutines::_throw_ArithmeticException_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 address StubRoutines::_throw_NullPointerException_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 address StubRoutines::_throw_NullPointerException_at_call_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 address StubRoutines::_throw_StackOverflowError_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 address StubRoutines::_handler_for_unsafe_access_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 jint StubRoutines::_verify_oop_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 address StubRoutines::_verify_oop_subroutine_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 address StubRoutines::_atomic_xchg_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 address StubRoutines::_atomic_xchg_ptr_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 address StubRoutines::_atomic_store_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 address StubRoutines::_atomic_store_ptr_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 address StubRoutines::_atomic_cmpxchg_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 address StubRoutines::_atomic_cmpxchg_ptr_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 address StubRoutines::_atomic_cmpxchg_long_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 address StubRoutines::_atomic_add_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 address StubRoutines::_atomic_add_ptr_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 address StubRoutines::_fence_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 address StubRoutines::_d2i_wrapper = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 address StubRoutines::_d2l_wrapper = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 jint StubRoutines::_fpu_cntrl_wrd_std = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 jint StubRoutines::_fpu_cntrl_wrd_24 = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 jint StubRoutines::_fpu_cntrl_wrd_64 = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 jint StubRoutines::_fpu_cntrl_wrd_trunc = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 jint StubRoutines::_mxcsr_std = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 jint StubRoutines::_fpu_subnormal_bias1[3] = { 0, 0, 0 };
a61af66fc99e Initial load
duke
parents:
diff changeset
70 jint StubRoutines::_fpu_subnormal_bias2[3] = { 0, 0, 0 };
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Compiled code entry points default values
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // The dafault functions don't have separate disjoint versions.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 address StubRoutines::_jbyte_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::jbyte_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 address StubRoutines::_jshort_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::jshort_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 address StubRoutines::_jint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::jint_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 address StubRoutines::_jlong_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::jlong_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 address StubRoutines::_oop_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::oop_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 address StubRoutines::_jbyte_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::jbyte_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 address StubRoutines::_jshort_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::jshort_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 address StubRoutines::_jint_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::jint_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 address StubRoutines::_jlong_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::jlong_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 address StubRoutines::_oop_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::oop_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 address StubRoutines::_arrayof_jbyte_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_jbyte_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 address StubRoutines::_arrayof_jshort_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_jshort_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 address StubRoutines::_arrayof_jint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_jint_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 address StubRoutines::_arrayof_jlong_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_jlong_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 address StubRoutines::_arrayof_oop_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_oop_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 address StubRoutines::_arrayof_jbyte_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_jbyte_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 address StubRoutines::_arrayof_jshort_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_jshort_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 address StubRoutines::_arrayof_jint_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_jint_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 address StubRoutines::_arrayof_jlong_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_jlong_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 address StubRoutines::_arrayof_oop_disjoint_arraycopy = CAST_FROM_FN_PTR(address, StubRoutines::arrayof_oop_copy);
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 address StubRoutines::_checkcast_arraycopy = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 address StubRoutines::_unsafe_arraycopy = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 address StubRoutines::_generic_arraycopy = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
99
1763
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
100
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
101 address StubRoutines::_jbyte_fill;
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
102 address StubRoutines::_jshort_fill;
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
103 address StubRoutines::_jint_fill;
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
104 address StubRoutines::_arrayof_jbyte_fill;
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
105 address StubRoutines::_arrayof_jshort_fill;
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
106 address StubRoutines::_arrayof_jint_fill;
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
107
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
108
1174
ddb7834449d0 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 16
diff changeset
109 double (* StubRoutines::_intrinsic_log )(double) = NULL;
ddb7834449d0 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 16
diff changeset
110 double (* StubRoutines::_intrinsic_log10 )(double) = NULL;
ddb7834449d0 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 16
diff changeset
111 double (* StubRoutines::_intrinsic_exp )(double) = NULL;
ddb7834449d0 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 16
diff changeset
112 double (* StubRoutines::_intrinsic_pow )(double, double) = NULL;
ddb7834449d0 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 16
diff changeset
113 double (* StubRoutines::_intrinsic_sin )(double) = NULL;
ddb7834449d0 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 16
diff changeset
114 double (* StubRoutines::_intrinsic_cos )(double) = NULL;
ddb7834449d0 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 16
diff changeset
115 double (* StubRoutines::_intrinsic_tan )(double) = NULL;
ddb7834449d0 6849984: Value methods for platform dependent math functions constant fold incorrectly
never
parents: 16
diff changeset
116
0
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
118 //
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Note: to break cycle with universe initialization, stubs are generated in two phases.
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // The first one generates stubs needed during universe init (e.g., _handle_must_compile_first_entry).
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // The second phase includes all other stubs (which may depend on universe being initialized.)
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 extern void StubGenerator_generate(CodeBuffer* code, bool all); // only interface to generators
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 void StubRoutines::initialize1() {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 if (_code1 == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
127 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 TraceTime timer("StubRoutines generation 1", TraceStartupTime);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 _code1 = BufferBlob::create("StubRoutines (1)", code_size1);
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 1245
diff changeset
130 if (_code1 == NULL) {
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1603
diff changeset
131 vm_exit_out_of_memory(code_size1, "CodeCache: no room for StubRoutines (1)");
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 1245
diff changeset
132 }
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1603
diff changeset
133 CodeBuffer buffer(_code1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
134 StubGenerator_generate(&buffer, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
140 typedef void (*arraycopy_fn)(address src, address dst, int count);
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // simple tests of generated arraycopy functions
a61af66fc99e Initial load
duke
parents:
diff changeset
143 static void test_arraycopy_func(address func, int alignment) {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 int v = 0xcc;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 int v2 = 0x11;
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
146 jlong lbuffer[8];
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
147 jlong lbuffer2[8];
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
148 address fbuffer = (address) lbuffer;
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
149 address fbuffer2 = (address) lbuffer2;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
150 unsigned int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 for (i = 0; i < sizeof(lbuffer); i++) {
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
152 fbuffer[i] = v; fbuffer2[i] = v2;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
154 // C++ does not guarantee jlong[] array alignment to 8 bytes.
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
155 // Use middle of array to check that memory before it is not modified.
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
156 address buffer = (address) round_to((intptr_t)&lbuffer[4], BytesPerLong);
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
157 address buffer2 = (address) round_to((intptr_t)&lbuffer2[4], BytesPerLong);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // do an aligned copy
a61af66fc99e Initial load
duke
parents:
diff changeset
159 ((arraycopy_fn)func)(buffer, buffer2, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 for (i = 0; i < sizeof(lbuffer); i++) {
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
161 assert(fbuffer[i] == v && fbuffer2[i] == v2, "shouldn't have copied anything");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // adjust destination alignment
a61af66fc99e Initial load
duke
parents:
diff changeset
164 ((arraycopy_fn)func)(buffer, buffer2 + alignment, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 for (i = 0; i < sizeof(lbuffer); i++) {
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
166 assert(fbuffer[i] == v && fbuffer2[i] == v2, "shouldn't have copied anything");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // adjust source alignment
a61af66fc99e Initial load
duke
parents:
diff changeset
169 ((arraycopy_fn)func)(buffer + alignment, buffer2, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 for (i = 0; i < sizeof(lbuffer); i++) {
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
171 assert(fbuffer[i] == v && fbuffer2[i] == v2, "shouldn't have copied anything");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 void StubRoutines::initialize2() {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 if (_code2 == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 TraceTime timer("StubRoutines generation 2", TraceStartupTime);
a61af66fc99e Initial load
duke
parents:
diff changeset
181 _code2 = BufferBlob::create("StubRoutines (2)", code_size2);
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 1245
diff changeset
182 if (_code2 == NULL) {
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1603
diff changeset
183 vm_exit_out_of_memory(code_size2, "CodeCache: no room for StubRoutines (2)");
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 1245
diff changeset
184 }
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1603
diff changeset
185 CodeBuffer buffer(_code2);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
186 StubGenerator_generate(&buffer, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 #define TEST_ARRAYCOPY(type) \
a61af66fc99e Initial load
duke
parents:
diff changeset
192 test_arraycopy_func( type##_arraycopy(), sizeof(type)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
193 test_arraycopy_func( type##_disjoint_arraycopy(), sizeof(type)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
194 test_arraycopy_func(arrayof_##type##_arraycopy(), sizeof(HeapWord)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
195 test_arraycopy_func(arrayof_##type##_disjoint_arraycopy(), sizeof(HeapWord))
a61af66fc99e Initial load
duke
parents:
diff changeset
196
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
197 // Make sure all the arraycopy stubs properly handle zero count
0
a61af66fc99e Initial load
duke
parents:
diff changeset
198 TEST_ARRAYCOPY(jbyte);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 TEST_ARRAYCOPY(jshort);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 TEST_ARRAYCOPY(jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
201 TEST_ARRAYCOPY(jlong);
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 #undef TEST_ARRAYCOPY
a61af66fc99e Initial load
duke
parents:
diff changeset
204
1763
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
205 #define TEST_FILL(type) \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
206 if (_##type##_fill != NULL) { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
207 union { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
208 double d; \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
209 type body[96]; \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
210 } s; \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
211 \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
212 int v = 32; \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
213 for (int offset = -2; offset <= 2; offset++) { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
214 for (int i = 0; i < 96; i++) { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
215 s.body[i] = 1; \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
216 } \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
217 type* start = s.body + 8 + offset; \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
218 for (int aligned = 0; aligned < 2; aligned++) { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
219 if (aligned) { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
220 if (((intptr_t)start) % HeapWordSize == 0) { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
221 ((void (*)(type*, int, int))StubRoutines::_arrayof_##type##_fill)(start, v, 80); \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
222 } else { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
223 continue; \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
224 } \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
225 } else { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
226 ((void (*)(type*, int, int))StubRoutines::_##type##_fill)(start, v, 80); \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
227 } \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
228 for (int i = 0; i < 96; i++) { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
229 if (i < (8 + offset) || i >= (88 + offset)) { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
230 assert(s.body[i] == 1, "what?"); \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
231 } else { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
232 assert(s.body[i] == 32, "what?"); \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
233 } \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
234 } \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
235 } \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
236 } \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
237 } \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
238
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
239 TEST_FILL(jbyte);
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
240 TEST_FILL(jshort);
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
241 TEST_FILL(jint);
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
242
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
243 #undef TEST_FILL
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
244
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
245 #define TEST_COPYRTN(type) \
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
246 test_arraycopy_func(CAST_FROM_FN_PTR(address, Copy::conjoint_##type##s_atomic), sizeof(type)); \
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
247 test_arraycopy_func(CAST_FROM_FN_PTR(address, Copy::arrayof_conjoint_##type##s), (int)MAX2(sizeof(HeapWord), sizeof(type)))
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
248
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
249 // Make sure all the copy runtime routines properly handle zero count
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
250 TEST_COPYRTN(jbyte);
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
251 TEST_COPYRTN(jshort);
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
252 TEST_COPYRTN(jint);
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
253 TEST_COPYRTN(jlong);
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
254
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
255 #undef TEST_COPYRTN
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
256
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
257 test_arraycopy_func(CAST_FROM_FN_PTR(address, Copy::conjoint_words), sizeof(HeapWord));
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
258 test_arraycopy_func(CAST_FROM_FN_PTR(address, Copy::disjoint_words), sizeof(HeapWord));
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
259 test_arraycopy_func(CAST_FROM_FN_PTR(address, Copy::disjoint_words_atomic), sizeof(HeapWord));
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
260 // Aligned to BytesPerLong
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
261 test_arraycopy_func(CAST_FROM_FN_PTR(address, Copy::aligned_conjoint_words), sizeof(jlong));
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
262 test_arraycopy_func(CAST_FROM_FN_PTR(address, Copy::aligned_disjoint_words), sizeof(jlong));
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
263
0
a61af66fc99e Initial load
duke
parents:
diff changeset
264 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 void stubRoutines_init1() { StubRoutines::initialize1(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 void stubRoutines_init2() { StubRoutines::initialize2(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 //
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // Default versions of arraycopy functions
a61af66fc99e Initial load
duke
parents:
diff changeset
273 //
a61af66fc99e Initial load
duke
parents:
diff changeset
274
1245
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
275 static void gen_arraycopy_barrier_pre(oop* dest, size_t count) {
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
276 assert(count != 0, "count should be non-zero");
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
277 assert(count <= (size_t)max_intx, "count too large");
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
278 BarrierSet* bs = Universe::heap()->barrier_set();
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
279 assert(bs->has_write_ref_array_pre_opt(), "Must have pre-barrier opt");
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
280 bs->write_ref_array_pre(dest, (int)count);
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
281 }
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
282
0
a61af66fc99e Initial load
duke
parents:
diff changeset
283 static void gen_arraycopy_barrier(oop* dest, size_t count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
284 assert(count != 0, "count should be non-zero");
a61af66fc99e Initial load
duke
parents:
diff changeset
285 BarrierSet* bs = Universe::heap()->barrier_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
286 assert(bs->has_write_ref_array_opt(), "Barrier set must have ref array opt");
1245
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
287 bs->write_ref_array((HeapWord*)dest, count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 JRT_LEAF(void, StubRoutines::jbyte_copy(jbyte* src, jbyte* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
291 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
292 SharedRuntime::_jbyte_array_copy_ctr++; // Slow-path byte array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
293 #endif // !PRODUCT
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
294 Copy::conjoint_jbytes_atomic(src, dest, count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
295 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 JRT_LEAF(void, StubRoutines::jshort_copy(jshort* src, jshort* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
298 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
299 SharedRuntime::_jshort_array_copy_ctr++; // Slow-path short/char array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
300 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
301 Copy::conjoint_jshorts_atomic(src, dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 JRT_LEAF(void, StubRoutines::jint_copy(jint* src, jint* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
305 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
306 SharedRuntime::_jint_array_copy_ctr++; // Slow-path int/float array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
307 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
308 Copy::conjoint_jints_atomic(src, dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
309 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 JRT_LEAF(void, StubRoutines::jlong_copy(jlong* src, jlong* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
312 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
313 SharedRuntime::_jlong_array_copy_ctr++; // Slow-path long/double array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
314 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
315 Copy::conjoint_jlongs_atomic(src, dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
316 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
317
a61af66fc99e Initial load
duke
parents:
diff changeset
318 JRT_LEAF(void, StubRoutines::oop_copy(oop* src, oop* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
319 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
320 SharedRuntime::_oop_array_copy_ctr++; // Slow-path oop array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
321 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
322 assert(count != 0, "count should be non-zero");
1245
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
323 gen_arraycopy_barrier_pre(dest, count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
324 Copy::conjoint_oops_atomic(src, dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
325 gen_arraycopy_barrier(dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 JRT_LEAF(void, StubRoutines::arrayof_jbyte_copy(HeapWord* src, HeapWord* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
329 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
330 SharedRuntime::_jbyte_array_copy_ctr++; // Slow-path byte array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
331 #endif // !PRODUCT
1603
d93949c5bdcc 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 1552
diff changeset
332 Copy::arrayof_conjoint_jbytes(src, dest, count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
333 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 JRT_LEAF(void, StubRoutines::arrayof_jshort_copy(HeapWord* src, HeapWord* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
336 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
337 SharedRuntime::_jshort_array_copy_ctr++; // Slow-path short/char array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
338 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
339 Copy::arrayof_conjoint_jshorts(src, dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 JRT_LEAF(void, StubRoutines::arrayof_jint_copy(HeapWord* src, HeapWord* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
343 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
344 SharedRuntime::_jint_array_copy_ctr++; // Slow-path int/float array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
345 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
346 Copy::arrayof_conjoint_jints(src, dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
347 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 JRT_LEAF(void, StubRoutines::arrayof_jlong_copy(HeapWord* src, HeapWord* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
350 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
351 SharedRuntime::_jlong_array_copy_ctr++; // Slow-path int/float array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
352 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
353 Copy::arrayof_conjoint_jlongs(src, dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
354 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 JRT_LEAF(void, StubRoutines::arrayof_oop_copy(HeapWord* src, HeapWord* dest, size_t count))
a61af66fc99e Initial load
duke
parents:
diff changeset
357 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
358 SharedRuntime::_oop_array_copy_ctr++; // Slow-path oop array copy
a61af66fc99e Initial load
duke
parents:
diff changeset
359 #endif // !PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
360 assert(count != 0, "count should be non-zero");
1245
6484c4ee11cb 6904516: More object array barrier fixes, following up on 6906727
ysr
parents: 1174
diff changeset
361 gen_arraycopy_barrier_pre((oop *) dest, count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
362 Copy::arrayof_conjoint_oops(src, dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
363 gen_arraycopy_barrier((oop *) dest, count);
a61af66fc99e Initial load
duke
parents:
diff changeset
364 JRT_END
1763
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
365
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
366
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
367 address StubRoutines::select_fill_function(BasicType t, bool aligned, const char* &name) {
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
368 #define RETURN_STUB(xxx_fill) { \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
369 name = #xxx_fill; \
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
370 return StubRoutines::xxx_fill(); }
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
371
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
372 switch (t) {
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
373 case T_BYTE:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
374 case T_BOOLEAN:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
375 if (!aligned) RETURN_STUB(jbyte_fill);
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
376 RETURN_STUB(arrayof_jbyte_fill);
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
377 case T_CHAR:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
378 case T_SHORT:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
379 if (!aligned) RETURN_STUB(jshort_fill);
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
380 RETURN_STUB(arrayof_jshort_fill);
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
381 case T_INT:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
382 case T_FLOAT:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
383 if (!aligned) RETURN_STUB(jint_fill);
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
384 RETURN_STUB(arrayof_jint_fill);
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
385 case T_DOUBLE:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
386 case T_LONG:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
387 case T_ARRAY:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
388 case T_OBJECT:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
389 case T_NARROWOOP:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
390 case T_ADDRESS:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
391 // Currently unsupported
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
392 return NULL;
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
393
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
394 default:
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
395 ShouldNotReachHere();
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
396 return NULL;
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
397 }
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
398
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
399 #undef RETURN_STUB
d6f45b55c972 4809552: Optimize Arrays.fill(...)
never
parents: 1603
diff changeset
400 }