blob: 6305d68bd509992f247760fbe42c19c73f191a90 [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
Ian Rogers68d8b422014-07-17 11:09:10 -070020#include "base/mutex.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070021#include "jni.h"
Brian Carlstrom6b4ef022011-10-23 14:59:04 -070022#include "primitive.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070023
24namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070026 class ArtMethod;
27 class Class;
28 class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029} // namespace mirror
Mathieu Chartierc7853442015-03-27 14:35:38 -070030class ArtField;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031union JValue;
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070032class ScopedObjectAccessAlreadyRunnable;
Ian Rogers53b8b092014-03-13 23:45:53 -070033class ShadowFrame;
Elliott Hughes418d20f2011-09-22 14:00:39 -070034
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070036 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartierc7853442015-03-27 14:35:38 -070037bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, ArtField* f,
Ian Rogers84956ff2014-03-26 23:52:41 -070038 JValue* unboxed_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070039 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000040bool UnboxPrimitiveForResult(mirror::Object* o, mirror::Class* dst_class, JValue* unboxed_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070041 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070042
Nicolas Geoffray0aa50ce2015-03-10 11:03:29 +000043ALWAYS_INLINE bool ConvertPrimitiveValue(bool unbox_for_result,
Mathieu Chartier76433272014-09-26 14:32:37 -070044 Primitive::Type src_class, Primitive::Type dst_class,
45 const JValue& src, JValue* dst)
Ian Rogersb726dcb2012-09-05 08:57:23 -070046 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070047
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070048JValue InvokeWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa, jobject obj, jmethodID mid,
49 va_list args)
Ian Rogersb726dcb2012-09-05 08:57:23 -070050 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070051
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070052JValue InvokeWithJValues(const ScopedObjectAccessAlreadyRunnable& soa, mirror::Object* receiver,
Ian Rogers53b8b092014-03-13 23:45:53 -070053 jmethodID mid, jvalue* args)
54 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
55
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070056JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccessAlreadyRunnable& soa,
Ian Rogers53b8b092014-03-13 23:45:53 -070057 mirror::Object* receiver, jmethodID mid, jvalue* args)
58 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
59
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070060JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccessAlreadyRunnable& soa,
Ian Rogers53b8b092014-03-13 23:45:53 -070061 jobject obj, jmethodID mid, va_list args)
62 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
63
64void InvokeWithShadowFrame(Thread* self, ShadowFrame* shadow_frame, uint16_t arg_offset,
Ian Rogerse94652f2014-12-02 11:13:19 -080065 JValue* result)
Ian Rogers53b8b092014-03-13 23:45:53 -070066 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
67
Mathieu Chartierfc58af42015-04-16 18:00:39 -070068// num_frames is number of frames we look up for access check.
Mathieu Chartier2b7c4d12014-05-19 10:52:16 -070069jobject InvokeMethod(const ScopedObjectAccessAlreadyRunnable& soa, jobject method, jobject receiver,
Mathieu Chartierfc58af42015-04-16 18:00:39 -070070 jobject args, size_t num_frames = 1)
Ian Rogers53b8b092014-03-13 23:45:53 -070071 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
72
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070073ALWAYS_INLINE bool VerifyObjectIsClass(mirror::Object* o, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -070074 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070075
Mathieu Chartier76433272014-09-26 14:32:37 -070076bool VerifyAccess(Thread* self, mirror::Object* obj, mirror::Class* declaring_class,
Mathieu Chartierca239af2015-03-29 18:27:50 -070077 uint32_t access_flags, mirror::Class** calling_class, size_t num_frames)
Jeff Hao11d5d8f2014-03-26 15:08:20 -070078 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
79
Mathieu Chartierf36cb5f2015-04-24 16:55:16 -070080// This version takes a known calling class.
81bool VerifyAccess(Thread* self, mirror::Object* obj, mirror::Class* declaring_class,
82 uint32_t access_flags, mirror::Class* calling_class)
83 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
84
85// Get the calling class by using a stack visitor, may return null for unattached native threads.
86mirror::Class* GetCallingClass(Thread* self, size_t num_frames)
87 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
88
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070089void InvalidReceiverError(mirror::Object* o, mirror::Class* c)
90 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
91
Elliott Hughes418d20f2011-09-22 14:00:39 -070092} // namespace art
93
Brian Carlstromfc0e3212013-07-17 14:40:12 -070094#endif // ART_RUNTIME_REFLECTION_H_