blob: d9a722825aa814a444214f7fab5ceb21f8c9dca5 [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
20#include "jni.h"
Brian Carlstrom6b4ef022011-10-23 14:59:04 -070021#include "primitive.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070022
23namespace art {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024namespace mirror {
Brian Carlstromea46f952013-07-30 01:26:50 -070025 class ArtField;
26 class ArtMethod;
27 class Class;
28 class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029} // namespace mirror
30union JValue;
Ian Rogers53b8b092014-03-13 23:45:53 -070031class MethodHelper;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070032class ScopedObjectAccess;
Ian Rogers53b8b092014-03-13 23:45:53 -070033class ScopedObjectAccessUnchecked;
34class ShadowFrame;
Ian Rogers62d6c772013-02-27 08:32:07 -080035class ThrowLocation;
Elliott Hughes418d20f2011-09-22 14:00:39 -070036
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070038 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers84956ff2014-03-26 23:52:41 -070039bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, mirror::ArtField* f,
40 JValue* unboxed_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070041 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers62d6c772013-02-27 08:32:07 -080042bool UnboxPrimitiveForResult(const ThrowLocation& throw_location, mirror::Object* o,
Ian Rogers84956ff2014-03-26 23:52:41 -070043 mirror::Class* dst_class, JValue* unboxed_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070044 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070045
Ian Rogers62d6c772013-02-27 08:32:07 -080046bool ConvertPrimitiveValue(const ThrowLocation* throw_location, bool unbox_for_result,
47 Primitive::Type src_class, Primitive::Type dst_class,
Ian Rogers84956ff2014-03-26 23:52:41 -070048 const JValue& src, JValue* dst)
Ian Rogersb726dcb2012-09-05 08:57:23 -070049 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070050
Ian Rogers53b8b092014-03-13 23:45:53 -070051JValue InvokeWithVarArgs(const ScopedObjectAccess& soa, jobject obj, jmethodID mid, va_list args)
Ian Rogersb726dcb2012-09-05 08:57:23 -070052 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070053
Ian Rogers53b8b092014-03-13 23:45:53 -070054JValue InvokeWithJValues(const ScopedObjectAccessUnchecked& soa, mirror::Object* receiver,
55 jmethodID mid, jvalue* args)
56 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
57
58JValue InvokeVirtualOrInterfaceWithJValues(const ScopedObjectAccess& soa,
59 mirror::Object* receiver, jmethodID mid, jvalue* args)
60 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
61
62JValue InvokeVirtualOrInterfaceWithVarArgs(const ScopedObjectAccess& soa,
63 jobject obj, jmethodID mid, va_list args)
64 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
65
66void InvokeWithShadowFrame(Thread* self, ShadowFrame* shadow_frame, uint16_t arg_offset,
67 MethodHelper& mh, JValue* result)
68 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
69
70jobject InvokeMethod(const ScopedObjectAccess& soa, jobject method, jobject receiver,
Jeff Hao11d5d8f2014-03-26 15:08:20 -070071 jobject args, bool accessible)
Ian Rogers53b8b092014-03-13 23:45:53 -070072 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
73
74bool VerifyObjectIsClass(mirror::Object* o, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -070075 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070076
Jeff Haocb4581a2014-03-28 15:43:37 -070077bool VerifyAccess(mirror::Object* obj, mirror::Class* declaring_class, uint32_t access_flags)
Jeff Hao11d5d8f2014-03-26 15:08:20 -070078 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
79
Elliott Hughes418d20f2011-09-22 14:00:39 -070080} // namespace art
81
Brian Carlstromfc0e3212013-07-17 14:40:12 -070082#endif // ART_RUNTIME_REFLECTION_H_