blob: 2581ac214fb06c50abc2aba17a288b9e2ef579d5 [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_ACCESSIBLE_OBJECT_H_
18#define ART_RUNTIME_MIRROR_ACCESSIBLE_OBJECT_H_
19
20#include "class.h"
21#include "gc_root.h"
22#include "object.h"
23#include "object_callbacks.h"
24#include "read_barrier_option.h"
25#include "thread.h"
26
27namespace art {
28
29namespace mirror {
30
31// C++ mirror of java.lang.reflect.AccessibleObject
32class MANAGED AccessibleObject : public Object {
33 public:
34 static MemberOffset FlagOffset() {
35 return OFFSET_OF_OBJECT_MEMBER(AccessibleObject, flag_);
36 }
37
38 template<bool kTransactionActive>
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070039 void SetAccessible(bool value) REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070040 UNUSED(padding_);
41 return SetFieldBoolean<kTransactionActive>(FlagOffset(), value ? 1u : 0u);
42 }
43
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070044 bool IsAccessible() REQUIRES_SHARED(Locks::mutator_lock_) {
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070045 return GetFieldBoolean(FlagOffset());
46 }
47
48 private:
49 uint8_t flag_;
Neil Fuller60458a02016-09-01 15:32:44 +010050 // Padding required for correct alignment of subclasses like Executable, Field, etc.
51 uint8_t padding_[1];
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070052
53 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessibleObject);
54};
55
56} // namespace mirror
57} // namespace art
58
59#endif // ART_RUNTIME_MIRROR_ACCESSIBLE_OBJECT_H_