Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | #include "art_field.h" |
| 18 | |
| 19 | #include "art_field-inl.h" |
Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 20 | #include "class_linker-inl.h" |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 21 | #include "gc/accounting/card_table-inl.h" |
Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 22 | #include "handle_scope.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 23 | #include "mirror/class-inl.h" |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 24 | #include "mirror/object-inl.h" |
| 25 | #include "mirror/object_array-inl.h" |
| 26 | #include "runtime.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 27 | #include "scoped_thread_state_change-inl.h" |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 28 | #include "utils.h" |
| 29 | #include "well_known_classes.h" |
| 30 | |
| 31 | namespace art { |
| 32 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 33 | void ArtField::SetOffset(MemberOffset num_bytes) { |
| 34 | DCHECK(GetDeclaringClass()->IsLoaded() || GetDeclaringClass()->IsErroneous()); |
| 35 | if (kIsDebugBuild && Runtime::Current()->IsAotCompiler() && |
| 36 | Runtime::Current()->IsCompilingBootImage()) { |
| 37 | Primitive::Type type = GetTypeAsPrimitiveType(); |
| 38 | if (type == Primitive::kPrimDouble || type == Primitive::kPrimLong) { |
| 39 | DCHECK_ALIGNED(num_bytes.Uint32Value(), 8); |
| 40 | } |
| 41 | } |
| 42 | // Not called within a transaction. |
| 43 | offset_ = num_bytes.Uint32Value(); |
| 44 | } |
| 45 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 46 | ObjPtr<mirror::Class> ArtField::ProxyFindSystemClass(const char* descriptor) { |
Nicolas Geoffray | 3a09092 | 2015-11-24 09:17:30 +0000 | [diff] [blame] | 47 | DCHECK(GetDeclaringClass()->IsProxyClass()); |
Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 48 | return Runtime::Current()->GetClassLinker()->FindSystemClass(Thread::Current(), descriptor); |
| 49 | } |
| 50 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 51 | ObjPtr<mirror::Class> ArtField::ResolveGetType(uint32_t type_idx) { |
Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 52 | return Runtime::Current()->GetClassLinker()->ResolveType(type_idx, this); |
| 53 | } |
| 54 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 55 | ObjPtr<mirror::String> ArtField::ResolveGetStringName(Thread* self, |
| 56 | const DexFile& dex_file, |
| 57 | uint32_t string_idx, |
| 58 | ObjPtr<mirror::DexCache> dex_cache) { |
Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 59 | StackHandleScope<1> hs(self); |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 60 | return Runtime::Current()->GetClassLinker()->ResolveString(dex_file, |
| 61 | string_idx, |
| 62 | hs.NewHandle(dex_cache)); |
Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 63 | } |
| 64 | |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 65 | std::string ArtField::PrettyField(ArtField* f, bool with_type) { |
| 66 | if (f == nullptr) { |
| 67 | return "null"; |
| 68 | } |
| 69 | return f->PrettyField(with_type); |
| 70 | } |
| 71 | |
| 72 | std::string ArtField::PrettyField(bool with_type) { |
| 73 | std::string result; |
| 74 | if (with_type) { |
| 75 | result += PrettyDescriptor(GetTypeDescriptor()); |
| 76 | result += ' '; |
| 77 | } |
| 78 | std::string temp; |
| 79 | result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp)); |
| 80 | result += '.'; |
| 81 | result += GetName(); |
| 82 | return result; |
| 83 | } |
| 84 | |
| 85 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 86 | } // namespace art |