blob: ac11be1002cc6bd4fb15f6e767c314b5cbdef56c [file] [log] [blame]
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07001/*
2 * Copyright (C) 2015 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
17#ifndef ART_RUNTIME_MIRROR_FIELD_INL_H_
18#define ART_RUNTIME_MIRROR_FIELD_INL_H_
19
20#include "field.h"
21
22#include "art_field-inl.h"
Andreas Gampe70f5fd02018-10-24 19:58:37 -070023#include "class-alloc-inl.h"
Vladimir Marko679730e2018-05-25 15:06:48 +010024#include "class_root.h"
Andreas Gampe895f9222017-07-05 09:53:32 -070025#include "dex_cache-inl.h"
Vladimir Marko0eefb9b2019-03-27 15:04:31 +000026#include "object-inl.h"
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070027
28namespace art {
29
30namespace mirror {
31
Vladimir Marko0eefb9b2019-03-27 15:04:31 +000032inline ObjPtr<mirror::Class> Field::GetDeclaringClass() REQUIRES_SHARED(Locks::mutator_lock_) {
33 return GetFieldObject<Class>(OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_));
34}
35
36inline Primitive::Type Field::GetTypeAsPrimitiveType() {
37 return GetType()->GetPrimitiveType();
38}
39
40inline ObjPtr<mirror::Class> Field::GetType() {
41 return GetFieldObject<mirror::Class>(OFFSET_OF_OBJECT_MEMBER(Field, type_));
42}
43
Andreas Gampe542451c2016-07-26 09:02:02 -070044template <PointerSize kPointerSize, bool kTransactionActive>
Vladimir Marko0eefb9b2019-03-27 15:04:31 +000045inline ObjPtr<mirror::Field> Field::CreateFromArtField(Thread* self,
46 ArtField* field,
47 bool force_resolve) {
Hiroshi Yamauchi2debd802015-05-20 15:51:29 -070048 StackHandleScope<2> hs(self);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070049 // Try to resolve type before allocating since this is a thread suspension point.
Vladimir Marko4098a7a2017-11-06 16:00:51 +000050 Handle<mirror::Class> type = hs.NewHandle(field->ResolveType());
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070051
Andreas Gampefa4333d2017-02-14 11:10:34 -080052 if (type == nullptr) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070053 if (force_resolve) {
54 if (kIsDebugBuild) {
55 self->AssertPendingException();
56 }
57 return nullptr;
58 } else {
59 // Can't resolve, clear the exception if it isn't OOME and continue with a null type.
60 mirror::Throwable* exception = self->GetException();
61 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) {
62 return nullptr;
63 }
64 self->ClearException();
65 }
66 }
Vladimir Marko679730e2018-05-25 15:06:48 +010067 auto ret = hs.NewHandle(ObjPtr<Field>::DownCast(GetClassRoot<Field>()->AllocObject(self)));
Andreas Gampefa4333d2017-02-14 11:10:34 -080068 if (UNLIKELY(ret == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070069 self->AssertPendingOOMException();
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070070 return nullptr;
71 }
72 auto dex_field_index = field->GetDexFieldIndex();
Andreas Gampee01e3642016-07-25 13:06:04 -070073 auto* resolved_field = field->GetDexCache()->GetResolvedField(dex_field_index, kPointerSize);
Nicolas Geoffray3a090922015-11-24 09:17:30 +000074 if (field->GetDeclaringClass()->IsProxyClass()) {
Hiroshi Yamauchi2debd802015-05-20 15:51:29 -070075 DCHECK(field->IsStatic());
76 DCHECK_LT(dex_field_index, 2U);
77 // The two static fields (interfaces, throws) of all proxy classes
78 // share the same dex file indices 0 and 1. So, we can't resolve
79 // them in the dex cache.
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070080 } else {
Hiroshi Yamauchi2debd802015-05-20 15:51:29 -070081 if (resolved_field != nullptr) {
82 DCHECK_EQ(resolved_field, field);
83 } else {
84 // We rely on the field being resolved so that we can back to the ArtField
85 // (i.e. FromReflectedMethod).
Andreas Gampee01e3642016-07-25 13:06:04 -070086 field->GetDexCache()->SetResolvedField(dex_field_index, field, kPointerSize);
Hiroshi Yamauchi2debd802015-05-20 15:51:29 -070087 }
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070088 }
Hiroshi Yamauchi2debd802015-05-20 15:51:29 -070089 ret->SetType<kTransactionActive>(type.Get());
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070090 ret->SetDeclaringClass<kTransactionActive>(field->GetDeclaringClass());
91 ret->SetAccessFlags<kTransactionActive>(field->GetAccessFlags());
92 ret->SetDexFieldIndex<kTransactionActive>(dex_field_index);
93 ret->SetOffset<kTransactionActive>(field->GetOffset().Int32Value());
94 return ret.Get();
95}
96
Mathieu Chartier3398c782016-09-30 10:27:43 -070097template<bool kTransactionActive>
Mathieu Chartier31e88222016-10-14 18:43:19 -070098inline void Field::SetDeclaringClass(ObjPtr<mirror::Class> c) {
Mathieu Chartier1a5337f2016-10-13 13:48:23 -070099 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_), c);
Mathieu Chartier3398c782016-09-30 10:27:43 -0700100}
101
Mathieu Chartier31e88222016-10-14 18:43:19 -0700102template<bool kTransactionActive>
103inline void Field::SetType(ObjPtr<mirror::Class> type) {
104 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, type_), type);
105}
106
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700107} // namespace mirror
108} // namespace art
109
110#endif // ART_RUNTIME_MIRROR_FIELD_INL_H_