@@ -90,139 +90,95 @@ inline jdouble* typeArrayOopDesc::double_at_addr(int which) const {
90
90
}
91
91
92
92
inline jbyte typeArrayOopDesc::byte_at (int which) const {
93
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
94
- ptrdiff_t offset = element_offset<jbyte>(which);
95
- return HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
93
+ return *byte_at_addr (which);
96
94
}
97
95
inline void typeArrayOopDesc::byte_at_put (int which, jbyte contents) {
98
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
99
- ptrdiff_t offset = element_offset<jbyte>(which);
100
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, contents);
96
+ *byte_at_addr (which) = contents;
101
97
}
102
98
103
99
inline jboolean typeArrayOopDesc::bool_at (int which) const {
104
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
105
- ptrdiff_t offset = element_offset<jboolean>(which);
106
- return HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
100
+ return *bool_at_addr (which);
107
101
}
108
102
inline void typeArrayOopDesc::bool_at_put (int which, jboolean contents) {
109
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
110
- ptrdiff_t offset = element_offset<jboolean>(which);
111
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, jboolean (contents & 1 ));
103
+ *bool_at_addr (which) = jboolean (contents & 1 );
112
104
}
113
105
114
106
inline jchar typeArrayOopDesc::char_at (int which) const {
115
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
116
- ptrdiff_t offset = element_offset<jchar>(which);
117
- return HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
107
+ return *char_at_addr (which);
118
108
}
119
109
inline void typeArrayOopDesc::char_at_put (int which, jchar contents) {
120
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
121
- ptrdiff_t offset = element_offset<jchar>(which);
122
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, contents);
110
+ *char_at_addr (which) = contents;
123
111
}
124
112
125
113
inline jint typeArrayOopDesc::int_at (int which) const {
126
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
127
- ptrdiff_t offset = element_offset<jint>(which);
128
- return HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
114
+ return *int_at_addr (which);
129
115
}
130
116
inline void typeArrayOopDesc::int_at_put (int which, jint contents) {
131
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
132
- ptrdiff_t offset = element_offset<jint>(which);
133
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, contents);
117
+ *int_at_addr (which) = contents;
134
118
}
135
119
136
120
inline jshort typeArrayOopDesc::short_at (int which) const {
137
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
138
- ptrdiff_t offset = element_offset<jshort>(which);
139
- return HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
121
+ return *short_at_addr (which);
140
122
}
141
123
inline void typeArrayOopDesc::short_at_put (int which, jshort contents) {
142
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
143
- ptrdiff_t offset = element_offset<jshort>(which);
144
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, contents);
124
+ *short_at_addr (which) = contents;
145
125
}
146
126
147
127
inline jushort typeArrayOopDesc::ushort_at (int which) const {
148
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
149
- ptrdiff_t offset = element_offset<jushort>(which);
150
- return HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
128
+ return *ushort_at_addr (which);
151
129
}
130
+
152
131
inline void typeArrayOopDesc::ushort_at_put (int which, jushort contents) {
153
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
154
- ptrdiff_t offset = element_offset<jushort>(which);
155
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, contents);
132
+ *ushort_at_addr (which) = contents;
156
133
}
157
134
158
135
inline jlong typeArrayOopDesc::long_at (int which) const {
159
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
160
- ptrdiff_t offset = element_offset<jlong>(which);
161
- return HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
136
+ return *long_at_addr (which);
162
137
}
163
138
inline void typeArrayOopDesc::long_at_put (int which, jlong contents) {
164
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
165
- ptrdiff_t offset = element_offset<jlong>(which);
166
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, contents);
139
+ *long_at_addr (which) = contents;
167
140
}
168
141
169
142
inline jfloat typeArrayOopDesc::float_at (int which) const {
170
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
171
- ptrdiff_t offset = element_offset<jfloat>(which);
172
- return HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
143
+ return *float_at_addr (which);
173
144
}
145
+
174
146
inline void typeArrayOopDesc::float_at_put (int which, jfloat contents) {
175
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
176
- ptrdiff_t offset = element_offset<jfloat>(which);
177
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, contents);
147
+ *float_at_addr (which) = contents;
178
148
}
179
149
180
150
inline jdouble typeArrayOopDesc::double_at (int which) const {
181
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
182
- ptrdiff_t offset = element_offset<jdouble>(which);
183
- return HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
151
+ return *double_at_addr (which);
184
152
}
153
+
185
154
inline void typeArrayOopDesc::double_at_put (int which, jdouble contents) {
186
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
187
- ptrdiff_t offset = element_offset<jdouble>(which);
188
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, contents);
155
+ *double_at_addr (which) = contents;
189
156
}
190
157
191
158
inline jbyte typeArrayOopDesc::byte_at_acquire (int which) const {
192
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
193
- ptrdiff_t offset = element_offset<jbyte>(which);
194
- return HeapAccess<MO_ACQUIRE | IS_ARRAY>::load_at (as_oop (), offset);
159
+ return Atomic::load_acquire (byte_at_addr (which));
195
160
}
196
161
inline void typeArrayOopDesc::release_byte_at_put (int which, jbyte contents) {
197
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
198
- ptrdiff_t offset = element_offset<jbyte>(which);
199
- HeapAccess<MO_RELEASE | IS_ARRAY>::store_at (as_oop (), offset, contents);
162
+ Atomic::release_store (byte_at_addr (which), contents);
200
163
}
201
164
202
165
// Java thinks Symbol arrays are just arrays of either long or int, since
203
166
// there doesn't seem to be T_ADDRESS, so this is a bit of unfortunate
204
167
// casting
205
168
#ifdef _LP64
206
169
inline Symbol* typeArrayOopDesc::symbol_at (int which) const {
207
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
208
- ptrdiff_t offset = element_offset<jlong>(which);
209
- return (Symbol*)(jlong) HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
170
+ return *reinterpret_cast <Symbol**>(long_at_addr (which));
210
171
}
172
+
211
173
inline void typeArrayOopDesc::symbol_at_put (int which, Symbol* contents) {
212
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
213
- ptrdiff_t offset = element_offset<jlong>(which);
214
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, (jlong)contents);
174
+ *reinterpret_cast <Symbol**>(long_at_addr (which)) = contents;
215
175
}
216
176
#else
217
177
inline Symbol* typeArrayOopDesc::symbol_at (int which) const {
218
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
219
- ptrdiff_t offset = element_offset<jint>(which);
220
- return (Symbol*)(jint) HeapAccess<IS_ARRAY>::load_at (as_oop (), offset);
178
+ return *reinterpret_cast <Symbol**>(int_at_addr (which));
221
179
}
222
180
inline void typeArrayOopDesc::symbol_at_put (int which, Symbol* contents) {
223
- assert (is_within_bounds (which), " index %d out of bounds %d" , which, length ());
224
- ptrdiff_t offset = element_offset<jint>(which);
225
- HeapAccess<IS_ARRAY>::store_at (as_oop (), offset, (jint)contents);
181
+ *reinterpret_cast <Symbol**>(int_at_addr (which)) = contents;
226
182
}
227
183
#endif // _LP64
228
184
0 commit comments