blob: 50c36d7a6c0f178b739582f61050696d44eba478 [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;
Elliott Hughes84a5bb42012-05-16 17:52:15 -070028class Method;
Elliott Hughes418d20f2011-09-22 14:00:39 -070029class Object;
30
Jesse Wilson9a6bae82011-11-14 14:57:30 -050031void InitBoxingMethods();
Elliott Hughesdbac3092012-03-16 18:00:30 -070032void BoxPrimitive(Primitive::Type src_class, JValue& value);
Elliott Hughes84a5bb42012-05-16 17:52:15 -070033bool UnboxPrimitiveForArgument(Object* o, Class* dst_class, JValue& unboxed_value, Method* m, size_t index);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -070034bool UnboxPrimitiveForField(Object* o, Class* dst_class, JValue& unboxed_value, Field* f);
35bool UnboxPrimitiveForResult(Object* o, Class* dst_class, JValue& unboxed_value);
Elliott Hughes418d20f2011-09-22 14:00:39 -070036
Brian Carlstrom6b4ef022011-10-23 14:59:04 -070037bool ConvertPrimitiveValue(Primitive::Type src_class, Primitive::Type dst_class, const JValue& src, JValue& dst);
Elliott Hughes418d20f2011-09-22 14:00:39 -070038
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080039jobject InvokeMethod(JNIEnv* env, jobject method, jobject receiver, jobject args);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070040
Elliott Hughes418d20f2011-09-22 14:00:39 -070041bool VerifyObjectInClass(JNIEnv* env, Object* o, Class* c);
42
43} // namespace art
44
45#endif // ART_SRC_REFLECTION_H_