blob: 4c2bdb02dd1c7689d50530b829d7e5cb6b0884a6 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_MIRROR_CLASS_INL_H_
18#define ART_RUNTIME_MIRROR_CLASS_INL_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
20#include "class.h"
21
Brian Carlstromea46f952013-07-30 01:26:50 -070022#include "art_field.h"
23#include "art_method.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070024#include "class_loader.h"
Vladimir Marko23a28212014-01-09 19:24:37 +000025#include "common_throws.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070026#include "dex_cache.h"
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070027#include "gc/heap-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "iftable.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080029#include "object_array-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030#include "runtime.h"
31#include "string.h"
32
33namespace art {
34namespace mirror {
35
Ian Rogersef7d42f2014-01-06 12:55:46 -080036inline uint32_t Class::GetObjectSize() {
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070037 DCHECK(!IsVariableSize()) << " class=" << PrettyTypeOf(this);
Mathieu Chartier79b4f382013-10-23 15:21:37 -070038 return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, object_size_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039}
40
Ian Rogersef7d42f2014-01-06 12:55:46 -080041inline Class* Class::GetSuperClass() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080042 // Can only get super class for loaded classes (hack for when runtime is
43 // initializing)
44 DCHECK(IsLoaded() || !Runtime::Current()->IsStarted()) << IsLoaded();
Ian Rogersef7d42f2014-01-06 12:55:46 -080045 return GetFieldObject<Class>(OFFSET_OF_OBJECT_MEMBER(Class, super_class_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080046}
47
Ian Rogersef7d42f2014-01-06 12:55:46 -080048inline ClassLoader* Class::GetClassLoader() {
49 return GetFieldObject<ClassLoader>(OFFSET_OF_OBJECT_MEMBER(Class, class_loader_), false);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070050}
51
Ian Rogersef7d42f2014-01-06 12:55:46 -080052inline DexCache* Class::GetDexCache() {
53 return GetFieldObject<DexCache>(OFFSET_OF_OBJECT_MEMBER(Class, dex_cache_), false);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070054}
55
Ian Rogersef7d42f2014-01-06 12:55:46 -080056inline ObjectArray<ArtMethod>* Class::GetDirectMethods() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080057 DCHECK(IsLoaded() || IsErroneous());
Ian Rogersef7d42f2014-01-06 12:55:46 -080058 return GetFieldObject<ObjectArray<ArtMethod> >(
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080059 OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), false);
60}
61
Brian Carlstromea46f952013-07-30 01:26:50 -070062inline void Class::SetDirectMethods(ObjectArray<ArtMethod>* new_direct_methods)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080063 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -080064 DCHECK(NULL == GetFieldObject<ObjectArray<ArtMethod> >(
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080065 OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), false));
66 DCHECK_NE(0, new_direct_methods->GetLength());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010067 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_),
68 new_direct_methods, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080069}
70
Ian Rogersef7d42f2014-01-06 12:55:46 -080071inline ArtMethod* Class::GetDirectMethod(int32_t i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080072 return GetDirectMethods()->Get(i);
73}
74
Brian Carlstromea46f952013-07-30 01:26:50 -070075inline void Class::SetDirectMethod(uint32_t i, ArtMethod* f) // TODO: uint16_t
Brian Carlstrom2ce745c2013-07-17 17:44:30 -070076 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -070077 ObjectArray<ArtMethod>* direct_methods =
Ian Rogersef7d42f2014-01-06 12:55:46 -080078 GetFieldObject<ObjectArray<ArtMethod> >(
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080079 OFFSET_OF_OBJECT_MEMBER(Class, direct_methods_), false);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010080 direct_methods->Set<false>(i, f);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080081}
82
83// Returns the number of static, private, and constructor methods.
Ian Rogersef7d42f2014-01-06 12:55:46 -080084inline uint32_t Class::NumDirectMethods() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080085 return (GetDirectMethods() != NULL) ? GetDirectMethods()->GetLength() : 0;
86}
87
Ian Rogersef7d42f2014-01-06 12:55:46 -080088inline ObjectArray<ArtMethod>* Class::GetVirtualMethods() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080089 DCHECK(IsLoaded() || IsErroneous());
Ian Rogersef7d42f2014-01-06 12:55:46 -080090 return GetFieldObject<ObjectArray<ArtMethod> >(
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080091 OFFSET_OF_OBJECT_MEMBER(Class, virtual_methods_), false);
92}
93
Brian Carlstromea46f952013-07-30 01:26:50 -070094inline void Class::SetVirtualMethods(ObjectArray<ArtMethod>* new_virtual_methods) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080095 // TODO: we reassign virtual methods to grow the table for miranda
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010096 // methods.. they should really just be assigned once.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080097 DCHECK_NE(0, new_virtual_methods->GetLength());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010098 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, virtual_methods_),
99 new_virtual_methods, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800100}
101
Ian Rogersef7d42f2014-01-06 12:55:46 -0800102inline uint32_t Class::NumVirtualMethods() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800103 return (GetVirtualMethods() != NULL) ? GetVirtualMethods()->GetLength() : 0;
104}
105
Ian Rogersef7d42f2014-01-06 12:55:46 -0800106inline ArtMethod* Class::GetVirtualMethod(uint32_t i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800107 DCHECK(IsResolved() || IsErroneous());
108 return GetVirtualMethods()->Get(i);
109}
110
Ian Rogersef7d42f2014-01-06 12:55:46 -0800111inline ArtMethod* Class::GetVirtualMethodDuringLinking(uint32_t i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800112 DCHECK(IsLoaded() || IsErroneous());
113 return GetVirtualMethods()->Get(i);
114}
115
Brian Carlstromea46f952013-07-30 01:26:50 -0700116inline void Class::SetVirtualMethod(uint32_t i, ArtMethod* f) // TODO: uint16_t
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800117 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700118 ObjectArray<ArtMethod>* virtual_methods =
Ian Rogersef7d42f2014-01-06 12:55:46 -0800119 GetFieldObject<ObjectArray<ArtMethod> >(
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800120 OFFSET_OF_OBJECT_MEMBER(Class, virtual_methods_), false);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100121 virtual_methods->Set<false>(i, f);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800122}
123
Ian Rogersef7d42f2014-01-06 12:55:46 -0800124inline ObjectArray<ArtMethod>* Class::GetVTable() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800125 DCHECK(IsResolved() || IsErroneous());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800126 return GetFieldObject<ObjectArray<ArtMethod> >(OFFSET_OF_OBJECT_MEMBER(Class, vtable_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800127}
128
Ian Rogersef7d42f2014-01-06 12:55:46 -0800129inline ObjectArray<ArtMethod>* Class::GetVTableDuringLinking() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800130 DCHECK(IsLoaded() || IsErroneous());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800131 return GetFieldObject<ObjectArray<ArtMethod> >(OFFSET_OF_OBJECT_MEMBER(Class, vtable_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800132}
133
Ian Rogersef7d42f2014-01-06 12:55:46 -0800134inline void Class::SetVTable(ObjectArray<ArtMethod>* new_vtable) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100135 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, vtable_), new_vtable, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800136}
137
Ian Rogersef7d42f2014-01-06 12:55:46 -0800138inline ObjectArray<ArtMethod>* Class::GetImTable() {
139 return GetFieldObject<ObjectArray<ArtMethod> >(OFFSET_OF_OBJECT_MEMBER(Class, imtable_), false);
Jeff Hao88474b42013-10-23 16:24:40 -0700140}
141
142inline void Class::SetImTable(ObjectArray<ArtMethod>* new_imtable) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100143 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, imtable_), new_imtable, false);
Jeff Hao88474b42013-10-23 16:24:40 -0700144}
145
Ian Rogersef7d42f2014-01-06 12:55:46 -0800146inline bool Class::Implements(Class* klass) {
Ian Rogers693ff612013-02-01 10:56:12 -0800147 DCHECK(klass != NULL);
148 DCHECK(klass->IsInterface()) << PrettyClass(this);
149 // All interfaces implemented directly and by our superclass, and
150 // recursively all super-interfaces of those interfaces, are listed
151 // in iftable_, so we can just do a linear scan through that.
152 int32_t iftable_count = GetIfTableCount();
153 IfTable* iftable = GetIfTable();
154 for (int32_t i = 0; i < iftable_count; i++) {
155 if (iftable->GetInterface(i) == klass) {
156 return true;
157 }
158 }
159 return false;
160}
161
162// Determine whether "this" is assignable from "src", where both of these
163// are array classes.
164//
165// Consider an array class, e.g. Y[][], where Y is a subclass of X.
166// Y[][] = Y[][] --> true (identity)
167// X[][] = Y[][] --> true (element superclass)
168// Y = Y[][] --> false
169// Y[] = Y[][] --> false
170// Object = Y[][] --> true (everything is an object)
171// Object[] = Y[][] --> true
172// Object[][] = Y[][] --> true
173// Object[][][] = Y[][] --> false (too many []s)
174// Serializable = Y[][] --> true (all arrays are Serializable)
175// Serializable[] = Y[][] --> true
176// Serializable[][] = Y[][] --> false (unless Y is Serializable)
177//
178// Don't forget about primitive types.
179// Object[] = int[] --> false
180//
Ian Rogersef7d42f2014-01-06 12:55:46 -0800181inline bool Class::IsArrayAssignableFromArray(Class* src) {
Ian Rogers693ff612013-02-01 10:56:12 -0800182 DCHECK(IsArrayClass()) << PrettyClass(this);
183 DCHECK(src->IsArrayClass()) << PrettyClass(src);
184 return GetComponentType()->IsAssignableFrom(src->GetComponentType());
185}
186
Ian Rogersef7d42f2014-01-06 12:55:46 -0800187inline bool Class::IsAssignableFromArray(Class* src) {
Ian Rogers693ff612013-02-01 10:56:12 -0800188 DCHECK(!IsInterface()) << PrettyClass(this); // handled first in IsAssignableFrom
189 DCHECK(src->IsArrayClass()) << PrettyClass(src);
190 if (!IsArrayClass()) {
191 // If "this" is not also an array, it must be Object.
192 // src's super should be java_lang_Object, since it is an array.
193 Class* java_lang_Object = src->GetSuperClass();
194 DCHECK(java_lang_Object != NULL) << PrettyClass(src);
Ian Rogersfa46d3e2013-05-15 00:16:04 -0700195 DCHECK(java_lang_Object->GetSuperClass() == NULL) << PrettyClass(src);
Ian Rogers693ff612013-02-01 10:56:12 -0800196 return this == java_lang_Object;
197 }
198 return IsArrayAssignableFromArray(src);
199}
200
Vladimir Marko89786432014-01-31 15:03:55 +0000201template <bool throw_on_failure, bool use_referrers_cache>
202inline bool Class::ResolvedFieldAccessTest(Class* access_to, ArtField* field,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800203 uint32_t field_idx, DexCache* dex_cache) {
Vladimir Marko89786432014-01-31 15:03:55 +0000204 DCHECK_EQ(use_referrers_cache, dex_cache == nullptr);
Vladimir Marko23a28212014-01-09 19:24:37 +0000205 if (UNLIKELY(!this->CanAccess(access_to))) {
206 // The referrer class can't access the field's declaring class but may still be able
207 // to access the field if the FieldId specifies an accessible subclass of the declaring
208 // class rather than the declaring class itself.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800209 DexCache* referrer_dex_cache = use_referrers_cache ? this->GetDexCache() : dex_cache;
Vladimir Marko23a28212014-01-09 19:24:37 +0000210 uint32_t class_idx = referrer_dex_cache->GetDexFile()->GetFieldId(field_idx).class_idx_;
211 // The referenced class has already been resolved with the field, get it from the dex cache.
212 Class* dex_access_to = referrer_dex_cache->GetResolvedType(class_idx);
213 DCHECK(dex_access_to != nullptr);
214 if (UNLIKELY(!this->CanAccess(dex_access_to))) {
215 if (throw_on_failure) {
216 ThrowIllegalAccessErrorClass(this, dex_access_to);
217 }
218 return false;
219 }
220 DCHECK_EQ(this->CanAccessMember(access_to, field->GetAccessFlags()),
221 this->CanAccessMember(dex_access_to, field->GetAccessFlags()));
222 }
223 if (LIKELY(this->CanAccessMember(access_to, field->GetAccessFlags()))) {
224 return true;
225 }
226 if (throw_on_failure) {
227 ThrowIllegalAccessErrorField(this, field);
228 }
229 return false;
230}
231
Vladimir Marko89786432014-01-31 15:03:55 +0000232template <bool throw_on_failure, bool use_referrers_cache, InvokeType throw_invoke_type>
233inline bool Class::ResolvedMethodAccessTest(Class* access_to, ArtMethod* method,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800234 uint32_t method_idx, DexCache* dex_cache) {
Vladimir Marko23a28212014-01-09 19:24:37 +0000235 COMPILE_ASSERT(throw_on_failure || throw_invoke_type == kStatic, non_default_throw_invoke_type);
Vladimir Marko89786432014-01-31 15:03:55 +0000236 DCHECK_EQ(use_referrers_cache, dex_cache == nullptr);
Vladimir Marko23a28212014-01-09 19:24:37 +0000237 if (UNLIKELY(!this->CanAccess(access_to))) {
238 // The referrer class can't access the method's declaring class but may still be able
239 // to access the method if the MethodId specifies an accessible subclass of the declaring
240 // class rather than the declaring class itself.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800241 DexCache* referrer_dex_cache = use_referrers_cache ? this->GetDexCache() : dex_cache;
Vladimir Marko23a28212014-01-09 19:24:37 +0000242 uint32_t class_idx = referrer_dex_cache->GetDexFile()->GetMethodId(method_idx).class_idx_;
243 // The referenced class has already been resolved with the method, get it from the dex cache.
244 Class* dex_access_to = referrer_dex_cache->GetResolvedType(class_idx);
245 DCHECK(dex_access_to != nullptr);
246 if (UNLIKELY(!this->CanAccess(dex_access_to))) {
247 if (throw_on_failure) {
248 ThrowIllegalAccessErrorClassForMethodDispatch(this, dex_access_to,
249 method, throw_invoke_type);
250 }
251 return false;
252 }
253 DCHECK_EQ(this->CanAccessMember(access_to, method->GetAccessFlags()),
254 this->CanAccessMember(dex_access_to, method->GetAccessFlags()));
255 }
256 if (LIKELY(this->CanAccessMember(access_to, method->GetAccessFlags()))) {
257 return true;
258 }
259 if (throw_on_failure) {
260 ThrowIllegalAccessErrorMethod(this, method);
261 }
262 return false;
263}
264
Vladimir Marko89786432014-01-31 15:03:55 +0000265inline bool Class::CanAccessResolvedField(Class* access_to, ArtField* field,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800266 DexCache* dex_cache, uint32_t field_idx) {
267 return ResolvedFieldAccessTest<false, false>(access_to, field, field_idx, dex_cache);
Vladimir Marko89786432014-01-31 15:03:55 +0000268}
269
270inline bool Class::CheckResolvedFieldAccess(Class* access_to, ArtField* field,
271 uint32_t field_idx) {
272 return ResolvedFieldAccessTest<true, true>(access_to, field, field_idx, nullptr);
273}
274
275inline bool Class::CanAccessResolvedMethod(Class* access_to, ArtMethod* method,
Ian Rogersef7d42f2014-01-06 12:55:46 -0800276 DexCache* dex_cache, uint32_t method_idx) {
277 return ResolvedMethodAccessTest<false, false, kStatic>(access_to, method, method_idx, dex_cache);
Vladimir Marko89786432014-01-31 15:03:55 +0000278}
279
280template <InvokeType throw_invoke_type>
281inline bool Class::CheckResolvedMethodAccess(Class* access_to, ArtMethod* method,
282 uint32_t method_idx) {
283 return ResolvedMethodAccessTest<true, true, throw_invoke_type>(access_to, method, method_idx,
284 nullptr);
285}
286
Ian Rogersef7d42f2014-01-06 12:55:46 -0800287inline bool Class::IsSubClass(Class* klass) {
Ian Rogers693ff612013-02-01 10:56:12 -0800288 DCHECK(!IsInterface()) << PrettyClass(this);
289 DCHECK(!IsArrayClass()) << PrettyClass(this);
Ian Rogersef7d42f2014-01-06 12:55:46 -0800290 Class* current = this;
Ian Rogers693ff612013-02-01 10:56:12 -0800291 do {
292 if (current == klass) {
293 return true;
294 }
295 current = current->GetSuperClass();
296 } while (current != NULL);
297 return false;
298}
299
Ian Rogersef7d42f2014-01-06 12:55:46 -0800300inline ArtMethod* Class::FindVirtualMethodForInterface(ArtMethod* method) {
Ian Rogers693ff612013-02-01 10:56:12 -0800301 Class* declaring_class = method->GetDeclaringClass();
302 DCHECK(declaring_class != NULL) << PrettyClass(this);
303 DCHECK(declaring_class->IsInterface()) << PrettyMethod(method);
304 // TODO cache to improve lookup speed
305 int32_t iftable_count = GetIfTableCount();
306 IfTable* iftable = GetIfTable();
307 for (int32_t i = 0; i < iftable_count; i++) {
308 if (iftable->GetInterface(i) == declaring_class) {
309 return iftable->GetMethodArray(i)->Get(method->GetMethodIndex());
310 }
311 }
312 return NULL;
313}
314
Ian Rogersef7d42f2014-01-06 12:55:46 -0800315inline ArtMethod* Class::FindVirtualMethodForVirtual(ArtMethod* method) {
Sameer Abu Asal02c42232013-04-30 12:09:45 -0700316 DCHECK(!method->GetDeclaringClass()->IsInterface() || method->IsMiranda());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800317 // The argument method may from a super class.
318 // Use the index to a potentially overridden one for this instance's class.
319 return GetVTable()->Get(method->GetMethodIndex());
320}
321
Ian Rogersef7d42f2014-01-06 12:55:46 -0800322inline ArtMethod* Class::FindVirtualMethodForSuper(ArtMethod* method) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800323 DCHECK(!method->GetDeclaringClass()->IsInterface());
324 return GetSuperClass()->GetVTable()->Get(method->GetMethodIndex());
325}
326
Ian Rogersef7d42f2014-01-06 12:55:46 -0800327inline ArtMethod* Class::FindVirtualMethodForVirtualOrInterface(ArtMethod* method) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800328 if (method->IsDirect()) {
329 return method;
330 }
Jeff Hao201803f2013-11-20 18:11:39 -0800331 if (method->GetDeclaringClass()->IsInterface() && !method->IsMiranda()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800332 return FindVirtualMethodForInterface(method);
333 }
334 return FindVirtualMethodForVirtual(method);
335}
336
Ian Rogersef7d42f2014-01-06 12:55:46 -0800337inline IfTable* Class::GetIfTable() {
338 return GetFieldObject<IfTable>(OFFSET_OF_OBJECT_MEMBER(Class, iftable_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800339}
340
Ian Rogersef7d42f2014-01-06 12:55:46 -0800341inline int32_t Class::GetIfTableCount() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800342 IfTable* iftable = GetIfTable();
343 if (iftable == NULL) {
344 return 0;
345 }
346 return iftable->Count();
347}
348
349inline void Class::SetIfTable(IfTable* new_iftable) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100350 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, iftable_), new_iftable, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800351}
352
Ian Rogersef7d42f2014-01-06 12:55:46 -0800353inline ObjectArray<ArtField>* Class::GetIFields() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800354 DCHECK(IsLoaded() || IsErroneous());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800355 return GetFieldObject<ObjectArray<ArtField>>(OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800356}
357
Brian Carlstromea46f952013-07-30 01:26:50 -0700358inline void Class::SetIFields(ObjectArray<ArtField>* new_ifields)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800359 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800360 DCHECK(NULL == GetFieldObject<ObjectArray<ArtField> >(
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800361 OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false));
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100362 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, ifields_), new_ifields, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800363}
364
Ian Rogersef7d42f2014-01-06 12:55:46 -0800365inline ObjectArray<ArtField>* Class::GetSFields() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800366 DCHECK(IsLoaded() || IsErroneous());
Ian Rogersef7d42f2014-01-06 12:55:46 -0800367 return GetFieldObject<ObjectArray<ArtField> >(OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800368}
369
Brian Carlstromea46f952013-07-30 01:26:50 -0700370inline void Class::SetSFields(ObjectArray<ArtField>* new_sfields)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800371 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800372 DCHECK(NULL == GetFieldObject<ObjectArray<ArtField> >(
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800373 OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false));
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100374 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, sfields_), new_sfields, false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800375}
376
Ian Rogersef7d42f2014-01-06 12:55:46 -0800377inline uint32_t Class::NumStaticFields() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800378 return (GetSFields() != NULL) ? GetSFields()->GetLength() : 0;
379}
380
Ian Rogersef7d42f2014-01-06 12:55:46 -0800381inline ArtField* Class::GetStaticField(uint32_t i) // TODO: uint16_t
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800382 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
383 return GetSFields()->Get(i);
384}
385
Brian Carlstromea46f952013-07-30 01:26:50 -0700386inline void Class::SetStaticField(uint32_t i, ArtField* f) // TODO: uint16_t
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800387 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800388 ObjectArray<ArtField>* sfields= GetFieldObject<ObjectArray<ArtField> >(
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800389 OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100390 sfields->Set<false>(i, f);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800391}
392
Ian Rogersef7d42f2014-01-06 12:55:46 -0800393inline uint32_t Class::NumInstanceFields() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800394 return (GetIFields() != NULL) ? GetIFields()->GetLength() : 0;
395}
396
Ian Rogersef7d42f2014-01-06 12:55:46 -0800397inline ArtField* Class::GetInstanceField(uint32_t i) { // TODO: uint16_t
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800398 DCHECK_NE(NumInstanceFields(), 0U);
399 return GetIFields()->Get(i);
400}
401
Brian Carlstromea46f952013-07-30 01:26:50 -0700402inline void Class::SetInstanceField(uint32_t i, ArtField* f) // TODO: uint16_t
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700403 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800404 ObjectArray<ArtField>* ifields= GetFieldObject<ObjectArray<ArtField> >(
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800405 OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100406 ifields->Set<false>(i, f);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800407}
408
409inline void Class::SetVerifyErrorClass(Class* klass) {
410 CHECK(klass != NULL) << PrettyClass(this);
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100411 if (Runtime::Current()->IsActiveTransaction()) {
412 SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Class, verify_error_class_), klass, false);
413 } else {
414 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, verify_error_class_), klass, false);
415 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800416}
417
Ian Rogersef7d42f2014-01-06 12:55:46 -0800418inline uint32_t Class::GetAccessFlags() {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800419 // Check class is loaded or this is java.lang.String that has a
420 // circularity issue during loading the names of its members
421 DCHECK(IsLoaded() || IsErroneous() ||
422 this == String::GetJavaLangString() ||
Brian Carlstromea46f952013-07-30 01:26:50 -0700423 this == ArtField::GetJavaLangReflectArtField() ||
424 this == ArtMethod::GetJavaLangReflectArtMethod());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800425 return GetField32(OFFSET_OF_OBJECT_MEMBER(Class, access_flags_), false);
426}
427
Ian Rogersef7d42f2014-01-06 12:55:46 -0800428inline String* Class::GetName() {
429 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(Class, name_), false);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800430}
431inline void Class::SetName(String* name) {
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100432 if (Runtime::Current()->IsActiveTransaction()) {
433 SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Class, name_), name, false);
434 } else {
435 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Class, name_), name, false);
436 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800437}
438
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700439inline void Class::CheckObjectAlloc() {
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700440 DCHECK(!IsArrayClass()) << PrettyClass(this);
441 DCHECK(IsInstantiable()) << PrettyClass(this);
442 // TODO: decide whether we want this check. It currently fails during bootstrap.
443 // DCHECK(!Runtime::Current()->IsStarted() || IsInitializing()) << PrettyClass(this);
444 DCHECK_GE(this->object_size_, sizeof(Object));
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700445}
446
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800447template <bool kIsInstrumented>
448inline Object* Class::Alloc(Thread* self, gc::AllocatorType allocator_type) {
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -0700449 CheckObjectAlloc();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700450 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier692fafd2013-11-29 17:24:40 -0800451 return heap->AllocObjectWithAllocator<kIsInstrumented, false>(self, this, this->object_size_,
452 allocator_type);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800453}
454
455inline Object* Class::AllocObject(Thread* self) {
456 return Alloc<true>(self, Runtime::Current()->GetHeap()->GetCurrentAllocator());
457}
458
459inline Object* Class::AllocNonMovableObject(Thread* self) {
460 return Alloc<true>(self, Runtime::Current()->GetHeap()->GetCurrentNonMovingAllocator());
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -0700461}
462
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800463} // namespace mirror
464} // namespace art
465
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700466#endif // ART_RUNTIME_MIRROR_CLASS_INL_H_