blob: 2ed3452254164dc296524eb9374540bfba951e58 [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_H_
18#define ART_RUNTIME_MIRROR_FIELD_H_
19
20#include "accessible_object.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070021#include "base/enums.h"
David Sehr8c0961f2018-01-23 16:11:38 -080022#include "dex/modifiers.h"
David Sehr67bf42e2018-02-26 16:43:04 -080023#include "dex/primitive.h"
Mathieu Chartier3398c782016-09-30 10:27:43 -070024#include "obj_ptr.h"
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070025#include "object.h"
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070026#include "read_barrier_option.h"
27
28namespace art {
29
Mathieu Chartierc7853442015-03-27 14:35:38 -070030class ArtField;
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070031struct FieldOffsets;
Alex Lightc18eba32019-09-24 14:36:27 -070032class ReflectiveValueVisitor;
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070033
34namespace mirror {
35
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070036class Class;
37class String;
38
39// C++ mirror of java.lang.reflect.Field.
40class MANAGED Field : public AccessibleObject {
41 public:
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070042 ALWAYS_INLINE uint32_t GetDexFieldIndex() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070043 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, dex_field_index_));
44 }
45
Vladimir Marko0eefb9b2019-03-27 15:04:31 +000046 ObjPtr<mirror::Class> GetDeclaringClass() REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070047
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070048 uint32_t GetAccessFlags() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070049 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, access_flags_));
50 }
51
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070052 bool IsStatic() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070053 return (GetAccessFlags() & kAccStatic) != 0;
54 }
55
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070056 bool IsFinal() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070057 return (GetAccessFlags() & kAccFinal) != 0;
58 }
59
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070060 bool IsVolatile() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070061 return (GetAccessFlags() & kAccVolatile) != 0;
62 }
63
Andreas Gampe895f9222017-07-05 09:53:32 -070064 ALWAYS_INLINE Primitive::Type GetTypeAsPrimitiveType() REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070065
Vladimir Marko0eefb9b2019-03-27 15:04:31 +000066 ObjPtr<mirror::Class> GetType() REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070067
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070068 int32_t GetOffset() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070069 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_));
70 }
71
Nicolas Geoffray4ac0e152019-09-18 06:14:50 +000072 // Slow, try to use only for PrettyField and such. Set use-dex-cache to false to not utilize the
73 // dex-cache when finding the art-field. This is useful for cases where the dex-cache might be
74 // temporarally invalid.
75 ArtField* GetArtField(bool use_dex_cache = true) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070076
Andreas Gampe542451c2016-07-26 09:02:02 -070077 template <PointerSize kPointerSize, bool kTransactionActive = false>
Vladimir Marko0eefb9b2019-03-27 15:04:31 +000078 static ObjPtr<mirror::Field> CreateFromArtField(Thread* self,
79 ArtField* field,
80 bool force_resolve)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070081 REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!Roles::uninterruptible_);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070082
Nicolas Geoffray4ac0e152019-09-18 06:14:50 +000083
84 // Used to modify the target of this Field object, if required for structural redefinition or some
85 // other purpose.
Alex Lightc18eba32019-09-24 14:36:27 -070086 void VisitTarget(ReflectiveValueVisitor* v) REQUIRES(Locks::mutator_lock_);
Nicolas Geoffray4ac0e152019-09-18 06:14:50 +000087
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070088 private:
Neil Fuller60458a02016-09-01 15:32:44 +010089 // Padding required for matching alignment with the Java peer.
90 uint8_t padding_[2];
91
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070092 HeapReference<mirror::Class> declaring_class_;
93 HeapReference<mirror::Class> type_;
94 int32_t access_flags_;
95 int32_t dex_field_index_;
96 int32_t offset_;
97
98 template<bool kTransactionActive>
Mathieu Chartier3398c782016-09-30 10:27:43 -070099 void SetDeclaringClass(ObjPtr<mirror::Class> c) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700100
101 template<bool kTransactionActive>
Mathieu Chartier31e88222016-10-14 18:43:19 -0700102 void SetType(ObjPtr<mirror::Class> type) REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700103
104 template<bool kTransactionActive>
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700105 void SetAccessFlags(uint32_t flags) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700106 SetField32<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, access_flags_), flags);
107 }
108
109 template<bool kTransactionActive>
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700110 void SetDexFieldIndex(uint32_t idx) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700111 SetField32<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, dex_field_index_), idx);
112 }
113
114 template<bool kTransactionActive>
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700115 void SetOffset(uint32_t offset) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700116 SetField32<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, offset_), offset);
117 }
118
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700119 friend struct art::FieldOffsets; // for verifying offset information
120 DISALLOW_IMPLICIT_CONSTRUCTORS(Field);
121};
122
123} // namespace mirror
124} // namespace art
125
126#endif // ART_RUNTIME_MIRROR_FIELD_H_