blob: 40716ad7c9e6857efaab0cd8e9eeac6479d9b520 [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
39 ArtMethod* GetTargetMethod() REQUIRES_SHARED(Locks::mutator_lock_) {
40 return reinterpret_cast<ArtMethod*>(
41 GetField64(OFFSET_OF_OBJECT_MEMBER(MethodHandle, art_field_or_method_)));
42 }
43
Narayan Kamath9823e782016-08-03 12:46:58 +010044 MethodHandleKind GetHandleKind() REQUIRES_SHARED(Locks::mutator_lock_) {
45 const int32_t handle_kind = GetField32(OFFSET_OF_OBJECT_MEMBER(MethodHandle, handle_kind_));
46
47 DCHECK(handle_kind >= 0 && handle_kind <= MethodHandleKind::kLastValidKind);
48 return static_cast<MethodHandleKind>(handle_kind);
49 }
50
Narayan Kamathafa48272016-08-03 12:46:58 +010051 private:
52 HeapReference<mirror::Object> as_type_cache_;
53 HeapReference<mirror::MethodType> method_type_;
54 uint64_t art_field_or_method_;
55 uint32_t handle_kind_;
56
57 private:
58 static MemberOffset AsTypeCacheOffset() {
59 return MemberOffset(OFFSETOF_MEMBER(MethodHandle, as_type_cache_));
60 }
61 static MemberOffset MethodTypeOffset() {
62 return MemberOffset(OFFSETOF_MEMBER(MethodHandle, method_type_));
63 }
64 static MemberOffset ArtFieldOrMethodOffset() {
65 return MemberOffset(OFFSETOF_MEMBER(MethodHandle, art_field_or_method_));
66 }
67 static MemberOffset HandleKindOffset() {
68 return MemberOffset(OFFSETOF_MEMBER(MethodHandle, handle_kind_));
69 }
70
71 friend struct art::MethodHandleImplOffsets; // for verifying offset information
72 DISALLOW_IMPLICIT_CONSTRUCTORS(MethodHandle);
73};
74
75// C++ mirror of java.lang.invoke.MethodHandleImpl
76class MANAGED MethodHandleImpl : public MethodHandle {
77 public:
78 static mirror::Class* StaticClass() REQUIRES_SHARED(Locks::mutator_lock_) {
79 return static_class_.Read();
80 }
81
82 static void SetClass(Class* klass) REQUIRES_SHARED(Locks::mutator_lock_);
83 static void ResetClass() REQUIRES_SHARED(Locks::mutator_lock_);
84 static void VisitRoots(RootVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_);
85
86 private:
87 static GcRoot<mirror::Class> static_class_; // java.lang.invoke.MethodHandleImpl.class
88
89 friend struct art::MethodHandleImplOffsets; // for verifying offset information
90 DISALLOW_IMPLICIT_CONSTRUCTORS(MethodHandleImpl);
91};
92
93} // namespace mirror
94} // namespace art
95
96#endif // ART_RUNTIME_MIRROR_METHOD_HANDLE_IMPL_H_