blob: 90542160657714b454fe9ef219ef982bf317924e [file] [log] [blame]
Narayan Kamathafa48272016-08-03 12:46:58 +01001/*
2 * Copyright (C) 2016 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_METHOD_HANDLE_IMPL_H_
18#define ART_RUNTIME_MIRROR_METHOD_HANDLE_IMPL_H_
19
20#include "class.h"
21#include "gc_root.h"
22#include "object.h"
Narayan Kamath9823e782016-08-03 12:46:58 +010023#include "method_handles.h"
Narayan Kamathafa48272016-08-03 12:46:58 +010024#include "method_type.h"
25
26namespace art {
27
28struct MethodHandleImplOffsets;
29
30namespace mirror {
31
32// C++ mirror of java.lang.invoke.MethodHandle
33class MANAGED MethodHandle : public Object {
34 public:
35 mirror::MethodType* GetMethodType() REQUIRES_SHARED(Locks::mutator_lock_) {
36 return GetFieldObject<mirror::MethodType>(OFFSET_OF_OBJECT_MEMBER(MethodHandle, method_type_));
37 }
38
Narayan Kamath0a8485e2016-11-02 18:47:11 +000039 mirror::MethodType* GetNominalType() REQUIRES_SHARED(Locks::mutator_lock_) {
40 return GetFieldObject<mirror::MethodType>(OFFSET_OF_OBJECT_MEMBER(MethodHandle, nominal_type_));
41 }
42
Orion Hodson3d617ac2016-10-19 14:00:46 +010043 ArtField* GetTargetField() REQUIRES_SHARED(Locks::mutator_lock_) {
44 return reinterpret_cast<ArtField*>(
45 GetField64(OFFSET_OF_OBJECT_MEMBER(MethodHandle, art_field_or_method_)));
46 }
47
Narayan Kamathafa48272016-08-03 12:46:58 +010048 ArtMethod* GetTargetMethod() REQUIRES_SHARED(Locks::mutator_lock_) {
49 return reinterpret_cast<ArtMethod*>(
50 GetField64(OFFSET_OF_OBJECT_MEMBER(MethodHandle, art_field_or_method_)));
51 }
52
Narayan Kamath9823e782016-08-03 12:46:58 +010053 MethodHandleKind GetHandleKind() REQUIRES_SHARED(Locks::mutator_lock_) {
54 const int32_t handle_kind = GetField32(OFFSET_OF_OBJECT_MEMBER(MethodHandle, handle_kind_));
55
56 DCHECK(handle_kind >= 0 && handle_kind <= MethodHandleKind::kLastValidKind);
57 return static_cast<MethodHandleKind>(handle_kind);
58 }
59
Narayan Kamathafa48272016-08-03 12:46:58 +010060 private:
Narayan Kamath0a8485e2016-11-02 18:47:11 +000061 HeapReference<mirror::MethodType> nominal_type_;
Narayan Kamathafa48272016-08-03 12:46:58 +010062 HeapReference<mirror::MethodType> method_type_;
63 uint64_t art_field_or_method_;
64 uint32_t handle_kind_;
65
66 private:
Narayan Kamath0a8485e2016-11-02 18:47:11 +000067 static MemberOffset NominalTypeOffset() {
68 return MemberOffset(OFFSETOF_MEMBER(MethodHandle, nominal_type_));
Narayan Kamathafa48272016-08-03 12:46:58 +010069 }
70 static MemberOffset MethodTypeOffset() {
71 return MemberOffset(OFFSETOF_MEMBER(MethodHandle, method_type_));
72 }
73 static MemberOffset ArtFieldOrMethodOffset() {
74 return MemberOffset(OFFSETOF_MEMBER(MethodHandle, art_field_or_method_));
75 }
76 static MemberOffset HandleKindOffset() {
77 return MemberOffset(OFFSETOF_MEMBER(MethodHandle, handle_kind_));
78 }
79
80 friend struct art::MethodHandleImplOffsets; // for verifying offset information
81 DISALLOW_IMPLICIT_CONSTRUCTORS(MethodHandle);
82};
83
84// C++ mirror of java.lang.invoke.MethodHandleImpl
85class MANAGED MethodHandleImpl : public MethodHandle {
86 public:
87 static mirror::Class* StaticClass() REQUIRES_SHARED(Locks::mutator_lock_) {
88 return static_class_.Read();
89 }
90
91 static void SetClass(Class* klass) REQUIRES_SHARED(Locks::mutator_lock_);
92 static void ResetClass() REQUIRES_SHARED(Locks::mutator_lock_);
93 static void VisitRoots(RootVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_);
94
95 private:
96 static GcRoot<mirror::Class> static_class_; // java.lang.invoke.MethodHandleImpl.class
97
98 friend struct art::MethodHandleImplOffsets; // for verifying offset information
99 DISALLOW_IMPLICIT_CONSTRUCTORS(MethodHandleImpl);
100};
101
102} // namespace mirror
103} // namespace art
104
105#endif // ART_RUNTIME_MIRROR_METHOD_HANDLE_IMPL_H_