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_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 | |
| 27 | namespace art { |
| 28 | |
| 29 | namespace mirror { |
| 30 | |
| 31 | // C++ mirror of java.lang.reflect.AccessibleObject |
| 32 | class 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 Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 39 | void SetAccessible(bool value) REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 40 | UNUSED(padding_); |
| 41 | return SetFieldBoolean<kTransactionActive>(FlagOffset(), value ? 1u : 0u); |
| 42 | } |
| 43 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 44 | bool IsAccessible() REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 45 | return GetFieldBoolean(FlagOffset()); |
| 46 | } |
| 47 | |
| 48 | private: |
| 49 | uint8_t flag_; |
Neil Fuller | 60458a0 | 2016-09-01 15:32:44 +0100 | [diff] [blame^] | 50 | // Padding required for correct alignment of subclasses like Executable, Field, etc. |
| 51 | uint8_t padding_[1]; |
Mathieu Chartier | daaf326 | 2015-03-24 13:30:28 -0700 | [diff] [blame] | 52 | |
| 53 | DISALLOW_IMPLICIT_CONSTRUCTORS(AccessibleObject); |
| 54 | }; |
| 55 | |
| 56 | } // namespace mirror |
| 57 | } // namespace art |
| 58 | |
| 59 | #endif // ART_RUNTIME_MIRROR_ACCESSIBLE_OBJECT_H_ |