blob: 574e3022091bb03b8c23be9e233b8cf03c4c4dc5 [file] [log] [blame]
Elliott Hughes418d20f2011-09-22 14:00:39 -07001/*
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_REFLECTION_H_
18#define ART_RUNTIME_REFLECTION_H_
Elliott Hughes418d20f2011-09-22 14:00:39 -070019
Andreas Gampe7fbc4a52018-11-28 08:26:47 -080020#include "base/locks.h"
David Sehr67bf42e2018-02-26 16:43:04 -080021#include "dex/primitive.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070022#include "jni.h"
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070023#include "obj_ptr.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070024
25namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026namespace mirror {
Igor Murashkin2ffb7032017-11-08 13:35:21 -080027class Class;
28class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029} // namespace mirror
Mathieu Chartierc7853442015-03-27 14:35:38 -070030class ArtField;
Mathieu Chartiere401d142015-04-22 13:56:20 -070031class ArtMethod;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032union JValue;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070033class ScopedObjectAccessAlreadyRunnable;
Ian Rogers53b8b092014-03-13 23:45:53 -070034class ShadowFrame;
Elliott Hughes418d20f2011-09-22 14:00:39 -070035
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070036ObjPtr<mirror::Object> BoxPrimitive(Primitive::Type src_class, const JValue& value)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070037 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070038
39bool UnboxPrimitiveForField(ObjPtr<mirror::Object> o,
40 ObjPtr<mirror::Class> dst_class,
41 ArtField* f,
Ian Rogers84956ff2014-03-26 23:52:41 -070042 JValue* unboxed_value)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070043 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070044
45bool UnboxPrimitiveForResult(ObjPtr<mirror::Object> o,
46 ObjPtr<mirror::Class> dst_class,
47 JValue* unboxed_value)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070048 REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070049
Orion Hodsonba28f9f2016-10-26 10:56:25 +010050ALWAYS_INLINE bool ConvertPrimitiveValueNoThrow(Primitive::Type src_class,
51 Primitive::Type dst_class,
52 const JValue& src,
53 JValue* dst)
54 REQUIRES_SHARED(Locks::mutator_lock_);
55
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000056ALWAYS_INLINE bool ConvertPrimitiveValue(bool unbox_for_result,
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070057 Primitive::Type src_class,
58 Primitive::Type dst_class,
59 const JValue& src,
60 JValue* dst)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070061 REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070062
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070063JValue InvokeWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
64 jobject obj,
65 jmethodID mid,
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070066 va_list args)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070067 REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070068
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070069JValue InvokeWithJValues(const ScopedObjectAccessAlreadyRunnable& soa,
70 jobject obj,
71 jmethodID mid,
Elliott Hughes22352f32018-06-15 17:33:58 -070072 const jvalue* args)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070073 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers53b8b092014-03-13 23:45:53 -070074
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070075JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccessAlreadyRunnable& soa,
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070076 jobject obj,
77 jmethodID mid,
Elliott Hughes22352f32018-06-15 17:33:58 -070078 const jvalue* args)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070079 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers53b8b092014-03-13 23:45:53 -070080
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070081JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070082 jobject obj,
83 jmethodID mid,
84 va_list args)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070085 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers53b8b092014-03-13 23:45:53 -070086
Mathieu Chartierfc58af42015-04-16 18:00:39 -070087// num_frames is number of frames we look up for access check.
Mathieu Chartiera59d9b22016-09-26 18:13:17 -070088jobject InvokeMethod(const ScopedObjectAccessAlreadyRunnable& soa,
89 jobject method,
90 jobject receiver,
91 jobject args,
92 size_t num_frames = 1)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070093 REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers53b8b092014-03-13 23:45:53 -070094
Andreas Gampe8ad7a3b2017-05-22 16:08:52 -070095// Special-casing of the above. Assumes that the method is the correct constructor, the class is
96// initialized, and that the receiver is an instance of the class.
97void InvokeConstructor(const ScopedObjectAccessAlreadyRunnable& soa,
98 ArtMethod* constructor,
99 ObjPtr<mirror::Object> receiver,
100 jobject args)
101 REQUIRES_SHARED(Locks::mutator_lock_);
102
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700103ALWAYS_INLINE bool VerifyObjectIsClass(ObjPtr<mirror::Object> o, ObjPtr<mirror::Class> c)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700104 REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700105
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700106bool VerifyAccess(Thread* self,
107 ObjPtr<mirror::Object> obj,
108 ObjPtr<mirror::Class> declaring_class,
109 uint32_t access_flags,
110 ObjPtr<mirror::Class>* calling_class,
111 size_t num_frames)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700112 REQUIRES_SHARED(Locks::mutator_lock_);
Jeff Hao11d5d8f2014-03-26 15:08:20 -0700113
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -0700114// This version takes a known calling class.
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700115bool VerifyAccess(ObjPtr<mirror::Object> obj,
116 ObjPtr<mirror::Class> declaring_class,
Mathieu Chartier268764d2016-09-13 12:09:38 -0700117 uint32_t access_flags,
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700118 ObjPtr<mirror::Class> calling_class)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700119 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -0700120
121// Get the calling class by using a stack visitor, may return null for unattached native threads.
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700122ObjPtr<mirror::Class> GetCallingClass(Thread* self, size_t num_frames)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700123 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -0700124
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700125void InvalidReceiverError(ObjPtr<mirror::Object> o, ObjPtr<mirror::Class> c)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700126 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartierdaaf3262015-03-24 13:30:28 -0700127
Mathieu Chartiera59d9b22016-09-26 18:13:17 -0700128void UpdateReference(Thread* self, jobject obj, ObjPtr<mirror::Object> result)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700129 REQUIRES_SHARED(Locks::mutator_lock_);
Jeff Hao83c81952015-05-27 19:29:29 -0700130
Elliott Hughes418d20f2011-09-22 14:00:39 -0700131} // namespace art
132
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700133#endif // ART_RUNTIME_REFLECTION_H_