blob: e9f4e0893e2f2b210fe0fe4207f68b8d7d8f4310 [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
17#ifndef ART_SRC_REFLECTION_H_
18#define ART_SRC_REFLECTION_H_
19
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 {
25class AbstractMethod;
Elliott Hughes418d20f2011-09-22 14:00:39 -070026class Class;
Elliott Hughesaaa5edc2012-05-16 15:54:30 -070027class Field;
Elliott Hughes418d20f2011-09-22 14:00:39 -070028class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029} // namespace mirror
30union JValue;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070031class ScopedObjectAccess;
Ian Rogers62d6c772013-02-27 08:32:07 -080032class ThrowLocation;
Elliott Hughes418d20f2011-09-22 14:00:39 -070033
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080034mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070035 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036bool UnboxPrimitiveForArgument(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
37 mirror::AbstractMethod* m, size_t index)
Ian Rogersb726dcb2012-09-05 08:57:23 -070038 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
40 mirror::Field* f)
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,
43 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,
48 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 Rogers00f7d0e2012-07-19 15:28:27 -070051jobject InvokeMethod(const ScopedObjectAccess& soa, jobject method, jobject receiver, jobject args)
Ian Rogersb726dcb2012-09-05 08:57:23 -070052 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070053
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080054bool VerifyObjectInClass(mirror::Object* o, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -070055 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070056
57} // namespace art
58
59#endif // ART_SRC_REFLECTION_H_