blob: 4db0c40415123e23e2b9f089bb250b0fc2aedf33 [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_OBJECT_H_
18#define ART_RUNTIME_MIRROR_OBJECT_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
20#include "base/casts.h"
21#include "base/logging.h"
22#include "base/macros.h"
23#include "cutils/atomic-inline.h"
24#include "offsets.h"
25
26namespace art {
27
28class ImageWriter;
29struct ObjectOffsets;
30class Thread;
31
32namespace mirror {
33
Brian Carlstromea46f952013-07-30 01:26:50 -070034class ArtField;
35class ArtMethod;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036class Array;
37class Class;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038template<class T> class ObjectArray;
39template<class T> class PrimitiveArray;
40typedef PrimitiveArray<uint8_t> BooleanArray;
41typedef PrimitiveArray<int8_t> ByteArray;
42typedef PrimitiveArray<uint16_t> CharArray;
43typedef PrimitiveArray<double> DoubleArray;
44typedef PrimitiveArray<float> FloatArray;
45typedef PrimitiveArray<int32_t> IntArray;
46typedef PrimitiveArray<int64_t> LongArray;
47typedef PrimitiveArray<int16_t> ShortArray;
48class String;
49class Throwable;
50
51// Classes shared with the managed side of the world need to be packed so that they don't have
52// extra platform specific padding.
53#define MANAGED PACKED(4)
54
55// Fields within mirror objects aren't accessed directly so that the appropriate amount of
56// handshaking is done with GC (for example, read and write barriers). This macro is used to
57// compute an offset for the Set/Get methods defined in Object that can safely access fields.
58#define OFFSET_OF_OBJECT_MEMBER(type, field) \
59 MemberOffset(OFFSETOF_MEMBER(type, field))
60
Ian Rogers04d7aa92013-03-16 14:29:17 -070061const bool kCheckFieldAssignments = false;
62
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080063// C++ mirror of java.lang.Object
64class MANAGED Object {
65 public:
66 static MemberOffset ClassOffset() {
67 return OFFSET_OF_OBJECT_MEMBER(Object, klass_);
68 }
69
70 Class* GetClass() const;
71
72 void SetClass(Class* new_klass);
73
74 bool InstanceOf(const Class* klass) const
75 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
76
77 size_t SizeOf() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
78
79 Object* Clone(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
80
81 int32_t IdentityHashCode() const {
Ian Rogersa436fde2013-08-27 23:34:06 -070082#ifdef MOVING_GARBAGE_COLLECTOR
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080083 // TODO: we'll need to use the Object's internal concept of identity
Ian Rogersa436fde2013-08-27 23:34:06 -070084 UNIMPLEMENTED(FATAL);
85#endif
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080086 return reinterpret_cast<int32_t>(this);
87 }
88
89 static MemberOffset MonitorOffset() {
90 return OFFSET_OF_OBJECT_MEMBER(Object, monitor_);
91 }
92
93 volatile int32_t* GetRawLockWordAddress() {
94 byte* raw_addr = reinterpret_cast<byte*>(this) +
95 OFFSET_OF_OBJECT_MEMBER(Object, monitor_).Int32Value();
96 int32_t* word_addr = reinterpret_cast<int32_t*>(raw_addr);
97 return const_cast<volatile int32_t*>(word_addr);
98 }
99
100 uint32_t GetThinLockId();
101
Ian Rogers05f30572013-02-20 12:13:11 -0800102 void MonitorEnter(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800103 EXCLUSIVE_LOCK_FUNCTION(monitor_lock_);
104
Ian Rogers05f30572013-02-20 12:13:11 -0800105 bool MonitorExit(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800106 UNLOCK_FUNCTION(monitor_lock_);
107
Ian Rogers05f30572013-02-20 12:13:11 -0800108 void Notify(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800109
Ian Rogers05f30572013-02-20 12:13:11 -0800110 void NotifyAll(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800111
Ian Rogers05f30572013-02-20 12:13:11 -0800112 void Wait(Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800113
Ian Rogers05f30572013-02-20 12:13:11 -0800114 void Wait(Thread* self, int64_t timeout, int32_t nanos) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800115
116 bool IsClass() const;
117
118 Class* AsClass();
119
120 const Class* AsClass() const;
121
122 bool IsObjectArray() const;
123
124 template<class T>
125 ObjectArray<T>* AsObjectArray();
126
127 template<class T>
128 const ObjectArray<T>* AsObjectArray() const;
129
130 bool IsArrayInstance() const;
131
132 Array* AsArray();
133
134 const Array* AsArray() const;
135
136 BooleanArray* AsBooleanArray();
137 ByteArray* AsByteArray();
138 CharArray* AsCharArray();
139 ShortArray* AsShortArray();
140 IntArray* AsIntArray();
141 LongArray* AsLongArray();
142
143 String* AsString();
144
145 Throwable* AsThrowable() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
146
Brian Carlstromea46f952013-07-30 01:26:50 -0700147 bool IsArtMethod() const;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800148
Brian Carlstromea46f952013-07-30 01:26:50 -0700149 ArtMethod* AsArtMethod();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800150
Brian Carlstromea46f952013-07-30 01:26:50 -0700151 const ArtMethod* AsArtMethod() const;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800152
Brian Carlstromea46f952013-07-30 01:26:50 -0700153 bool IsArtField() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800154
Brian Carlstromea46f952013-07-30 01:26:50 -0700155 ArtField* AsArtField() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800156
Brian Carlstromea46f952013-07-30 01:26:50 -0700157 const ArtField* AsArtField() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800158
159 bool IsReferenceInstance() const;
160
161 bool IsWeakReferenceInstance() const;
162
163 bool IsSoftReferenceInstance() const;
164
165 bool IsFinalizerReferenceInstance() const;
166
167 bool IsPhantomReferenceInstance() const;
168
169 // Accessors for Java type fields
170 template<class T>
171 T GetFieldObject(MemberOffset field_offset, bool is_volatile) const {
172 T result = reinterpret_cast<T>(GetField32(field_offset, is_volatile));
173 VerifyObject(result);
174 return result;
175 }
176
177 void SetFieldObject(MemberOffset field_offset, const Object* new_value, bool is_volatile,
178 bool this_is_valid = true) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
179 VerifyObject(new_value);
180 SetField32(field_offset, reinterpret_cast<uint32_t>(new_value), is_volatile, this_is_valid);
181 if (new_value != NULL) {
182 CheckFieldAssignment(field_offset, new_value);
183 WriteBarrierField(this, field_offset, new_value);
184 }
185 }
186
Mathieu Chartier11409ae2013-09-23 11:49:36 -0700187 Object** GetFieldObjectAddr(MemberOffset field_offset) ALWAYS_INLINE {
188 VerifyObject(this);
189 return reinterpret_cast<Object**>(reinterpret_cast<byte*>(this) + field_offset.Int32Value());
190 }
191
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800192 uint32_t GetField32(MemberOffset field_offset, bool is_volatile) const {
193 VerifyObject(this);
194 const byte* raw_addr = reinterpret_cast<const byte*>(this) + field_offset.Int32Value();
195 const int32_t* word_addr = reinterpret_cast<const int32_t*>(raw_addr);
196 if (UNLIKELY(is_volatile)) {
197 return android_atomic_acquire_load(word_addr);
198 } else {
199 return *word_addr;
200 }
201 }
202
203 void SetField32(MemberOffset field_offset, uint32_t new_value, bool is_volatile,
204 bool this_is_valid = true) {
205 if (this_is_valid) {
206 VerifyObject(this);
207 }
208 byte* raw_addr = reinterpret_cast<byte*>(this) + field_offset.Int32Value();
209 uint32_t* word_addr = reinterpret_cast<uint32_t*>(raw_addr);
210 if (UNLIKELY(is_volatile)) {
211 /*
212 * TODO: add an android_atomic_synchronization_store() function and
213 * use it in the 32-bit volatile set handlers. On some platforms we
214 * can use a fast atomic instruction and avoid the barriers.
215 */
216 ANDROID_MEMBAR_STORE();
217 *word_addr = new_value;
218 ANDROID_MEMBAR_FULL();
219 } else {
220 *word_addr = new_value;
221 }
222 }
223
224 uint64_t GetField64(MemberOffset field_offset, bool is_volatile) const;
225
226 void SetField64(MemberOffset field_offset, uint64_t new_value, bool is_volatile);
227
228 protected:
229 // Accessors for non-Java type fields
230 template<class T>
231 T GetFieldPtr(MemberOffset field_offset, bool is_volatile) const {
232 return reinterpret_cast<T>(GetField32(field_offset, is_volatile));
233 }
234
235 template<typename T>
236 void SetFieldPtr(MemberOffset field_offset, T new_value, bool is_volatile, bool this_is_valid = true) {
237 SetField32(field_offset, reinterpret_cast<uint32_t>(new_value), is_volatile, this_is_valid);
238 }
239
240 private:
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700241 static void VerifyObject(const Object* obj) ALWAYS_INLINE;
Ian Rogers04d7aa92013-03-16 14:29:17 -0700242
243 // Verify the type correctness of stores to fields.
244 void CheckFieldAssignmentImpl(MemberOffset field_offset, const Object* new_value)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800245 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers04d7aa92013-03-16 14:29:17 -0700246 void CheckFieldAssignment(MemberOffset field_offset, const Object* new_value)
247 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
248 if (kCheckFieldAssignments) {
249 CheckFieldAssignmentImpl(field_offset, new_value);
250 }
251 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800252
253 // Write barrier called post update to a reference bearing field.
254 static void WriteBarrierField(const Object* dst, MemberOffset offset, const Object* new_value);
255
256 Class* klass_;
257
258 uint32_t monitor_;
259
260 friend class art::ImageWriter;
261 friend struct art::ObjectOffsets; // for verifying offset information
262 DISALLOW_IMPLICIT_CONSTRUCTORS(Object);
263};
264
265} // namespace mirror
266} // namespace art
267
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700268#endif // ART_RUNTIME_MIRROR_OBJECT_H_