blob: aabf513060f96f2ec559f7347b8ff1341bf3a27a [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;
28class Object;
29
Jesse Wilson9a6bae82011-11-14 14:57:30 -050030void InitBoxingMethods();
Elliott Hughesdbac3092012-03-16 18:00:30 -070031void BoxPrimitive(Primitive::Type src_class, JValue& value);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -070032bool UnboxPrimitiveForArgument(Object* o, Class* dst_class, JValue& unboxed_value, size_t index);
33bool UnboxPrimitiveForField(Object* o, Class* dst_class, JValue& unboxed_value, Field* f);
34bool UnboxPrimitiveForResult(Object* o, Class* dst_class, JValue& unboxed_value);
Elliott Hughes418d20f2011-09-22 14:00:39 -070035
Brian Carlstrom6b4ef022011-10-23 14:59:04 -070036bool ConvertPrimitiveValue(Primitive::Type src_class, Primitive::Type dst_class, const JValue& src, JValue& dst);
Elliott Hughes418d20f2011-09-22 14:00:39 -070037
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080038jobject InvokeMethod(JNIEnv* env, jobject method, jobject receiver, jobject args);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070039
Elliott Hughes418d20f2011-09-22 14:00:39 -070040bool VerifyObjectInClass(JNIEnv* env, Object* o, Class* c);
41
42} // namespace art
43
44#endif // ART_SRC_REFLECTION_H_