blob: 12ecbe195d020d18afae74e674da81e2866be2ed [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#include "reflection.h"
18
19#include "class_linker.h"
20#include "jni_internal.h"
21#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080022#include "object_utils.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070023
24#include "JniConstants.h" // Last to avoid problems with LOG redefinition.
25
26namespace art {
27
28Method* gBoolean_valueOf;
29Method* gByte_valueOf;
30Method* gCharacter_valueOf;
31Method* gDouble_valueOf;
32Method* gFloat_valueOf;
33Method* gInteger_valueOf;
34Method* gLong_valueOf;
35Method* gShort_valueOf;
36
Jesse Wilson9a6bae82011-11-14 14:57:30 -050037void InitBoxingMethods() {
38 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
39 gBoolean_valueOf = class_linker->FindSystemClass("Ljava/lang/Boolean;")->FindDeclaredDirectMethod("valueOf", "(Z)Ljava/lang/Boolean;");
40 gByte_valueOf = class_linker->FindSystemClass("Ljava/lang/Byte;")->FindDeclaredDirectMethod("valueOf", "(B)Ljava/lang/Byte;");
41 gCharacter_valueOf = class_linker->FindSystemClass("Ljava/lang/Character;")->FindDeclaredDirectMethod("valueOf", "(C)Ljava/lang/Character;");
42 gDouble_valueOf = class_linker->FindSystemClass("Ljava/lang/Double;")->FindDeclaredDirectMethod("valueOf", "(D)Ljava/lang/Double;");
43 gFloat_valueOf = class_linker->FindSystemClass("Ljava/lang/Float;")->FindDeclaredDirectMethod("valueOf", "(F)Ljava/lang/Float;");
44 gInteger_valueOf = class_linker->FindSystemClass("Ljava/lang/Integer;")->FindDeclaredDirectMethod("valueOf", "(I)Ljava/lang/Integer;");
45 gLong_valueOf = class_linker->FindSystemClass("Ljava/lang/Long;")->FindDeclaredDirectMethod("valueOf", "(J)Ljava/lang/Long;");
46 gShort_valueOf = class_linker->FindSystemClass("Ljava/lang/Short;")->FindDeclaredDirectMethod("valueOf", "(S)Ljava/lang/Short;");
Elliott Hughes418d20f2011-09-22 14:00:39 -070047}
48
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080049jobject InvokeMethod(JNIEnv* env, jobject javaMethod, jobject javaReceiver, jobject javaArgs) {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070050 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -070051 ScopedThreadStateChange tsc(self, kRunnable);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070052
53 jmethodID mid = env->FromReflectedMethod(javaMethod);
54 Method* m = reinterpret_cast<Method*>(mid);
55
56 Class* declaring_class = m->GetDeclaringClass();
Ian Rogers0045a292012-03-31 21:08:41 -070057 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(declaring_class, true, true)) {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070058 return NULL;
59 }
60
61 Object* receiver = NULL;
62 if (!m->IsStatic()) {
63 // Check that the receiver is non-null and an instance of the field's declaring class.
64 receiver = Decode<Object*>(env, javaReceiver);
65 if (!VerifyObjectInClass(env, receiver, declaring_class)) {
66 return NULL;
67 }
68
69 // Find the actual implementation of the virtual method.
70 m = receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(m);
Ian Rogers466bb252011-10-14 03:29:56 -070071 mid = reinterpret_cast<jmethodID>(m);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070072 }
73
74 // Get our arrays of arguments and their types, and check they're the same size.
75 ObjectArray<Object>* objects = Decode<ObjectArray<Object>*>(env, javaArgs);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080076 MethodHelper mh(m);
77 const DexFile::TypeList* classes = mh.GetParameterTypeList();
78 uint32_t classes_size = classes == NULL ? 0 : classes->Size();
79 uint32_t arg_count = (objects != NULL) ? objects->GetLength() : 0;
80 if (arg_count != classes_size) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -070081 self->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070082 "wrong number of arguments; expected %d, got %d",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080083 classes_size, arg_count);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070084 return NULL;
85 }
86
87 // Translate javaArgs to a jvalue[].
88 UniquePtr<jvalue[]> args(new jvalue[arg_count]);
89 JValue* decoded_args = reinterpret_cast<JValue*>(args.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080090 for (uint32_t i = 0; i < arg_count; ++i) {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070091 Object* arg = objects->Get(i);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080092 Class* dst_class = mh.GetClassFromTypeIdx(classes->GetTypeItem(i).type_idx_);
Elliott Hughes84a5bb42012-05-16 17:52:15 -070093 if (dst_class->IsPrimitive() || (arg != NULL && !arg->InstanceOf(dst_class))) {
94 // We want to actually unbox primitives, but only reuse the error reporting for reference types.
95 if (!UnboxPrimitiveForArgument(arg, dst_class, decoded_args[i], m, i)) {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070096 return NULL;
97 }
98 } else {
Elliott Hughes84a5bb42012-05-16 17:52:15 -070099 // We already tested that these types are compatible.
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700100 args[i].l = AddLocalReference<jobject>(env, arg);
101 }
102 }
103
104 // Invoke the method.
Elliott Hughes1d878f32012-04-11 15:17:54 -0700105 JValue value(InvokeWithJValues(env, javaReceiver, mid, args.get()));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700106
107 // Wrap any exception with "Ljava/lang/reflect/InvocationTargetException;" and return early.
108 if (self->IsExceptionPending()) {
109 jthrowable th = env->ExceptionOccurred();
110 env->ExceptionClear();
111 jclass exception_class = env->FindClass("java/lang/reflect/InvocationTargetException");
112 jmethodID mid = env->GetMethodID(exception_class, "<init>", "(Ljava/lang/Throwable;)V");
113 jobject exception_instance = env->NewObject(exception_class, mid, th);
114 env->Throw(reinterpret_cast<jthrowable>(exception_instance));
115 return NULL;
116 }
117
118 // Box if necessary and return.
Elliott Hughesdbac3092012-03-16 18:00:30 -0700119 BoxPrimitive(mh.GetReturnType()->GetPrimitiveType(), value);
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700120 return AddLocalReference<jobject>(env, value.GetL());
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700121}
122
Elliott Hughes418d20f2011-09-22 14:00:39 -0700123bool VerifyObjectInClass(JNIEnv* env, Object* o, Class* c) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700124 const char* exception = NULL;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700125 if (o == NULL) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700126 exception = "java/lang/NullPointerException";
127 } else if (!o->InstanceOf(c)) {
128 exception = "java/lang/IllegalArgumentException";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700129 }
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700130 if (exception != NULL) {
131 std::string expected_class_name(PrettyDescriptor(c));
132 std::string actual_class_name(PrettyTypeOf(o));
133 jniThrowExceptionFmt(env, exception, "expected receiver of type %s, but got %s",
134 expected_class_name.c_str(), actual_class_name.c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700135 return false;
136 }
137 return true;
138}
139
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700140bool ConvertPrimitiveValue(Primitive::Type srcType, Primitive::Type dstType,
141 const JValue& src, JValue& dst) {
Jesse Wilsonc129a6b2011-11-24 14:47:46 -0500142 CHECK(srcType != Primitive::kPrimNot && dstType != Primitive::kPrimNot);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700143 switch (dstType) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700144 case Primitive::kPrimBoolean:
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700145 if (srcType == Primitive::kPrimBoolean) {
146 dst.SetZ(src.GetZ());
147 return true;
148 }
149 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700150 case Primitive::kPrimChar:
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700151 if (srcType == Primitive::kPrimChar) {
152 dst.SetC(src.GetC());
153 return true;
154 }
155 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700156 case Primitive::kPrimByte:
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700157 if (srcType == Primitive::kPrimByte) {
158 dst.SetB(src.GetB());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700159 return true;
160 }
161 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700162 case Primitive::kPrimShort:
163 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimShort) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700164 dst.SetS(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700165 return true;
166 }
167 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700168 case Primitive::kPrimInt:
169 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
170 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700171 dst.SetI(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700172 return true;
173 }
174 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700175 case Primitive::kPrimLong:
176 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
177 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700178 dst.SetJ(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700179 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700180 } else if (srcType == Primitive::kPrimLong) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700181 dst.SetJ(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700182 return true;
183 }
184 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700185 case Primitive::kPrimFloat:
186 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
187 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700188 dst.SetF(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700189 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700190 } else if (srcType == Primitive::kPrimLong) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700191 dst.SetF(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700192 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700193 } else if (srcType == Primitive::kPrimFloat) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700194 dst.SetF(src.GetF());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700195 return true;
196 }
197 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700198 case Primitive::kPrimDouble:
199 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
200 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700201 dst.SetD(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700202 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700203 } else if (srcType == Primitive::kPrimLong) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700204 dst.SetD(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700205 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700206 } else if (srcType == Primitive::kPrimFloat) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700207 dst.SetD(src.GetF());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700208 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700209 } else if (srcType == Primitive::kPrimDouble) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700210 dst.SetJ(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700211 return true;
212 }
213 break;
214 default:
215 break;
216 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700217 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700218 "invalid primitive conversion from %s to %s",
219 PrettyDescriptor(srcType).c_str(),
220 PrettyDescriptor(dstType).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700221 return false;
222}
223
Elliott Hughesdbac3092012-03-16 18:00:30 -0700224void BoxPrimitive(Primitive::Type src_class, JValue& value) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700225 if (src_class == Primitive::kPrimNot) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700226 return;
227 }
228
229 Method* m = NULL;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700230 switch (src_class) {
231 case Primitive::kPrimBoolean:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700232 m = gBoolean_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700233 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700234 case Primitive::kPrimByte:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700235 m = gByte_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700236 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700237 case Primitive::kPrimChar:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700238 m = gCharacter_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700239 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700240 case Primitive::kPrimDouble:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700241 m = gDouble_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700242 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700243 case Primitive::kPrimFloat:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700244 m = gFloat_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700245 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700246 case Primitive::kPrimInt:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700247 m = gInteger_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700248 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700249 case Primitive::kPrimLong:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700250 m = gLong_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700251 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700252 case Primitive::kPrimShort:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700253 m = gShort_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700254 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700255 case Primitive::kPrimVoid:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700256 // There's no such thing as a void field, and void methods invoked via reflection return null.
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700257 value.SetL(NULL);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700258 return;
259 default:
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700260 LOG(FATAL) << static_cast<int>(src_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700261 }
262
263 Thread* self = Thread::Current();
Elliott Hughes34e06962012-04-09 13:55:55 -0700264 ScopedThreadStateChange tsc(self, kRunnable);
Elliott Hughesdbac3092012-03-16 18:00:30 -0700265 JValue args[1] = { value };
Elliott Hughes77405792012-03-15 15:22:12 -0700266 m->Invoke(self, NULL, args, &value);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700267}
268
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700269static std::string UnboxingFailureKind(Method* m, int index, Field* f) {
270 if (m != NULL && index != -1) {
271 ++index; // Humans count from 1.
272 return StringPrintf("method %s argument %d", PrettyMethod(m, false).c_str(), index);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700273 }
274 if (f != NULL) {
275 return "field " + PrettyField(f, false);
276 }
277 return "result";
278}
279
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700280static bool UnboxPrimitive(Object* o, Class* dst_class, JValue& unboxed_value, Method* m, int index, Field* f) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700281 if (!dst_class->IsPrimitive()) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700282 if (o != NULL && !o->InstanceOf(dst_class)) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700283 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700284 "%s has type %s, got %s",
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700285 UnboxingFailureKind(m, index, f).c_str(),
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700286 PrettyDescriptor(dst_class).c_str(),
287 PrettyTypeOf(o).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700288 return false;
289 }
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700290 unboxed_value.SetL(o);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700291 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700292 } else if (dst_class->GetPrimitiveType() == Primitive::kPrimVoid) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700293 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
294 "can't unbox %s to void",
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700295 UnboxingFailureKind(m, index, f).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700296 return false;
297 }
298
299 if (o == NULL) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700300 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700301 "%s has type %s, got null",
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700302 UnboxingFailureKind(m, index, f).c_str(),
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700303 PrettyDescriptor(dst_class).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700304 return false;
305 }
306
Elliott Hughes1d878f32012-04-11 15:17:54 -0700307 JValue boxed_value;
Elliott Hughes95572412011-12-13 18:14:20 -0800308 std::string src_descriptor(ClassHelper(o->GetClass()).GetDescriptor());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700309 Class* src_class = NULL;
310 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
311 Field* primitive_field = o->GetClass()->GetIFields()->Get(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800312 if (src_descriptor == "Ljava/lang/Boolean;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700313 src_class = class_linker->FindPrimitiveClass('Z');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700314 boxed_value.SetZ(primitive_field->GetBoolean(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800315 } else if (src_descriptor == "Ljava/lang/Byte;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700316 src_class = class_linker->FindPrimitiveClass('B');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700317 boxed_value.SetB(primitive_field->GetByte(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800318 } else if (src_descriptor == "Ljava/lang/Character;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700319 src_class = class_linker->FindPrimitiveClass('C');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700320 boxed_value.SetC(primitive_field->GetChar(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800321 } else if (src_descriptor == "Ljava/lang/Float;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700322 src_class = class_linker->FindPrimitiveClass('F');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700323 boxed_value.SetF(primitive_field->GetFloat(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800324 } else if (src_descriptor == "Ljava/lang/Double;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700325 src_class = class_linker->FindPrimitiveClass('D');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700326 boxed_value.SetD(primitive_field->GetDouble(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800327 } else if (src_descriptor == "Ljava/lang/Integer;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700328 src_class = class_linker->FindPrimitiveClass('I');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700329 boxed_value.SetI(primitive_field->GetInt(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800330 } else if (src_descriptor == "Ljava/lang/Long;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700331 src_class = class_linker->FindPrimitiveClass('J');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700332 boxed_value.SetJ(primitive_field->GetLong(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800333 } else if (src_descriptor == "Ljava/lang/Short;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700334 src_class = class_linker->FindPrimitiveClass('S');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700335 boxed_value.SetS(primitive_field->GetShort(o));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700336 } else {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700337 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700338 "%s has type %s, got %s",
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700339 UnboxingFailureKind(m, index, f).c_str(),
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700340 PrettyDescriptor(dst_class).c_str(),
341 PrettyDescriptor(src_descriptor.c_str()).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700342 return false;
343 }
344
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700345 return ConvertPrimitiveValue(src_class->GetPrimitiveType(), dst_class->GetPrimitiveType(),
346 boxed_value, unboxed_value);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700347}
348
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700349bool UnboxPrimitiveForArgument(Object* o, Class* dst_class, JValue& unboxed_value, Method* m, size_t index) {
350 CHECK(m != NULL);
351 return UnboxPrimitive(o, dst_class, unboxed_value, m, index, NULL);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700352}
353
354bool UnboxPrimitiveForField(Object* o, Class* dst_class, JValue& unboxed_value, Field* f) {
355 CHECK(f != NULL);
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700356 return UnboxPrimitive(o, dst_class, unboxed_value, NULL, -1, f);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700357}
358
359bool UnboxPrimitiveForResult(Object* o, Class* dst_class, JValue& unboxed_value) {
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700360 return UnboxPrimitive(o, dst_class, unboxed_value, NULL, -1, NULL);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700361}
362
Elliott Hughes418d20f2011-09-22 14:00:39 -0700363} // namespace art