blob: b61acda2671bc3e24511f617c39d7d27ec75aca5 [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 {
24
25class Class;
Elliott Hughesaaa5edc2012-05-16 15:54:30 -070026class Field;
Elliott Hughes418d20f2011-09-22 14:00:39 -070027union JValue;
Mathieu Chartier66f19252012-09-18 08:57:04 -070028class AbstractMethod;
Elliott Hughes418d20f2011-09-22 14:00:39 -070029class Object;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070030class ScopedObjectAccess;
Elliott Hughes418d20f2011-09-22 14:00:39 -070031
Ian Rogers00f7d0e2012-07-19 15:28:27 -070032void BoxPrimitive(Primitive::Type src_class, JValue& value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070033 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Mathieu Chartier66f19252012-09-18 08:57:04 -070034bool UnboxPrimitiveForArgument(Object* o, Class* dst_class, JValue& unboxed_value, AbstractMethod* m,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070035 size_t index)
Ian Rogersb726dcb2012-09-05 08:57:23 -070036 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070037bool UnboxPrimitiveForField(Object* o, Class* dst_class, JValue& unboxed_value, Field* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -070038 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070039bool UnboxPrimitiveForResult(Object* o, Class* dst_class, JValue& unboxed_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070040 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070041
Ian Rogers00f7d0e2012-07-19 15:28:27 -070042bool ConvertPrimitiveValue(Primitive::Type src_class, Primitive::Type dst_class, const JValue& src,
43 JValue& dst)
Ian Rogersb726dcb2012-09-05 08:57:23 -070044 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070045
Ian Rogers00f7d0e2012-07-19 15:28:27 -070046jobject InvokeMethod(const ScopedObjectAccess& soa, jobject method, jobject receiver, jobject args)
Ian Rogersb726dcb2012-09-05 08:57:23 -070047 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070048
Ian Rogers00f7d0e2012-07-19 15:28:27 -070049bool VerifyObjectInClass(Object* o, Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -070050 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070051
52} // namespace art
53
54#endif // ART_SRC_REFLECTION_H_