Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 1 | /* |
| 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 Gampe | 70f5fd0 | 2018-10-24 19:58:37 -0700 | [diff] [blame^] | 23 | #include "class-alloc-inl.h" |
Vladimir Marko | 679730e | 2018-05-25 15:06:48 +0100 | [diff] [blame] | 24 | #include "class_root.h" |
Andreas Gampe | 895f922 | 2017-07-05 09:53:32 -0700 | [diff] [blame] | 25 | #include "dex_cache-inl.h" |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 26 | |
| 27 | namespace art { |
| 28 | |
| 29 | namespace mirror { |
| 30 | |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 31 | template <PointerSize kPointerSize, bool kTransactionActive> |
| 32 | inline mirror::Field* Field::CreateFromArtField(Thread* self, ArtField* field, bool force_resolve) { |
Hiroshi Yamauchi | 2debd80 | 2015-05-20 15:51:29 -0700 | [diff] [blame] | 33 | StackHandleScope<2> hs(self); |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 34 | // Try to resolve type before allocating since this is a thread suspension point. |
Vladimir Marko | 4098a7a | 2017-11-06 16:00:51 +0000 | [diff] [blame] | 35 | Handle<mirror::Class> type = hs.NewHandle(field->ResolveType()); |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 36 | |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 37 | if (type == nullptr) { |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 38 | if (force_resolve) { |
| 39 | if (kIsDebugBuild) { |
| 40 | self->AssertPendingException(); |
| 41 | } |
| 42 | return nullptr; |
| 43 | } else { |
| 44 | // Can't resolve, clear the exception if it isn't OOME and continue with a null type. |
| 45 | mirror::Throwable* exception = self->GetException(); |
| 46 | if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) { |
| 47 | return nullptr; |
| 48 | } |
| 49 | self->ClearException(); |
| 50 | } |
| 51 | } |
Vladimir Marko | 679730e | 2018-05-25 15:06:48 +0100 | [diff] [blame] | 52 | auto ret = hs.NewHandle(ObjPtr<Field>::DownCast(GetClassRoot<Field>()->AllocObject(self))); |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 53 | if (UNLIKELY(ret == nullptr)) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 54 | self->AssertPendingOOMException(); |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 55 | return nullptr; |
| 56 | } |
| 57 | auto dex_field_index = field->GetDexFieldIndex(); |
Andreas Gampe | e01e364 | 2016-07-25 13:06:04 -0700 | [diff] [blame] | 58 | auto* resolved_field = field->GetDexCache()->GetResolvedField(dex_field_index, kPointerSize); |
Nicolas Geoffray | 3a09092 | 2015-11-24 09:17:30 +0000 | [diff] [blame] | 59 | if (field->GetDeclaringClass()->IsProxyClass()) { |
Hiroshi Yamauchi | 2debd80 | 2015-05-20 15:51:29 -0700 | [diff] [blame] | 60 | DCHECK(field->IsStatic()); |
| 61 | DCHECK_LT(dex_field_index, 2U); |
| 62 | // The two static fields (interfaces, throws) of all proxy classes |
| 63 | // share the same dex file indices 0 and 1. So, we can't resolve |
| 64 | // them in the dex cache. |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 65 | } else { |
Hiroshi Yamauchi | 2debd80 | 2015-05-20 15:51:29 -0700 | [diff] [blame] | 66 | if (resolved_field != nullptr) { |
| 67 | DCHECK_EQ(resolved_field, field); |
| 68 | } else { |
| 69 | // We rely on the field being resolved so that we can back to the ArtField |
| 70 | // (i.e. FromReflectedMethod). |
Andreas Gampe | e01e364 | 2016-07-25 13:06:04 -0700 | [diff] [blame] | 71 | field->GetDexCache()->SetResolvedField(dex_field_index, field, kPointerSize); |
Hiroshi Yamauchi | 2debd80 | 2015-05-20 15:51:29 -0700 | [diff] [blame] | 72 | } |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 73 | } |
Hiroshi Yamauchi | 2debd80 | 2015-05-20 15:51:29 -0700 | [diff] [blame] | 74 | ret->SetType<kTransactionActive>(type.Get()); |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 75 | ret->SetDeclaringClass<kTransactionActive>(field->GetDeclaringClass()); |
| 76 | ret->SetAccessFlags<kTransactionActive>(field->GetAccessFlags()); |
| 77 | ret->SetDexFieldIndex<kTransactionActive>(dex_field_index); |
| 78 | ret->SetOffset<kTransactionActive>(field->GetOffset().Int32Value()); |
| 79 | return ret.Get(); |
| 80 | } |
| 81 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 82 | template<bool kTransactionActive> |
Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 83 | inline void Field::SetDeclaringClass(ObjPtr<mirror::Class> c) { |
Mathieu Chartier | 1a5337f | 2016-10-13 13:48:23 -0700 | [diff] [blame] | 84 | SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_), c); |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Mathieu Chartier | 31e8822 | 2016-10-14 18:43:19 -0700 | [diff] [blame] | 87 | template<bool kTransactionActive> |
| 88 | inline void Field::SetType(ObjPtr<mirror::Class> type) { |
| 89 | SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, type_), type); |
| 90 | } |
| 91 | |
Andreas Gampe | 895f922 | 2017-07-05 09:53:32 -0700 | [diff] [blame] | 92 | inline Primitive::Type Field::GetTypeAsPrimitiveType() { |
| 93 | return GetType()->GetPrimitiveType(); |
| 94 | } |
| 95 | |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 96 | } // namespace mirror |
| 97 | } // namespace art |
| 98 | |
| 99 | #endif // ART_RUNTIME_MIRROR_FIELD_INL_H_ |