blob: 16a55020616830b503e9eae0cbfa78ece9e7ec92 [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"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021#include "mirror/abstract_method.h"
22#include "mirror/abstract_method-inl.h"
23#include "mirror/class.h"
24#include "mirror/class-inl.h"
25#include "mirror/object-inl.h"
26#include "mirror/object_array.h"
27#include "mirror/object_array-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080028#include "object_utils.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070029#include "scoped_thread_state_change.h"
30#include "well_known_classes.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070031
Elliott Hughes418d20f2011-09-22 14:00:39 -070032namespace art {
33
Ian Rogers00f7d0e2012-07-19 15:28:27 -070034jobject InvokeMethod(const ScopedObjectAccess& soa, jobject javaMethod, jobject javaReceiver,
Ian Rogers365c1022012-06-22 15:05:28 -070035 jobject javaArgs) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070036 jmethodID mid = soa.Env()->FromReflectedMethod(javaMethod);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037 mirror::AbstractMethod* m = soa.DecodeMethod(mid);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070038
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039 mirror::Class* declaring_class = m->GetDeclaringClass();
Ian Rogers0045a292012-03-31 21:08:41 -070040 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(declaring_class, true, true)) {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070041 return NULL;
42 }
43
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080044 mirror::Object* receiver = NULL;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070045 if (!m->IsStatic()) {
46 // Check that the receiver is non-null and an instance of the field's declaring class.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047 receiver = soa.Decode<mirror::Object*>(javaReceiver);
Elliott Hugheseac76672012-05-24 21:56:51 -070048 if (!VerifyObjectInClass(receiver, declaring_class)) {
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070049 return NULL;
50 }
51
52 // Find the actual implementation of the virtual method.
53 m = receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(m);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070054 mid = soa.EncodeMethod(m);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070055 }
56
57 // Get our arrays of arguments and their types, and check they're the same size.
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080058 mirror::ObjectArray<mirror::Object>* objects =
59 soa.Decode<mirror::ObjectArray<mirror::Object>*>(javaArgs);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080060 MethodHelper mh(m);
61 const DexFile::TypeList* classes = mh.GetParameterTypeList();
62 uint32_t classes_size = classes == NULL ? 0 : classes->Size();
63 uint32_t arg_count = (objects != NULL) ? objects->GetLength() : 0;
64 if (arg_count != classes_size) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070065 soa.Self()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070066 "wrong number of arguments; expected %d, got %d",
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080067 classes_size, arg_count);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070068 return NULL;
69 }
70
71 // Translate javaArgs to a jvalue[].
72 UniquePtr<jvalue[]> args(new jvalue[arg_count]);
73 JValue* decoded_args = reinterpret_cast<JValue*>(args.get());
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080074 for (uint32_t i = 0; i < arg_count; ++i) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080075 mirror::Object* arg = objects->Get(i);
76 mirror::Class* dst_class = mh.GetClassFromTypeIdx(classes->GetTypeItem(i).type_idx_);
Elliott Hughes37f77752012-05-21 15:12:47 -070077 if (!UnboxPrimitiveForArgument(arg, dst_class, decoded_args[i], m, i)) {
78 return NULL;
79 }
80 if (!dst_class->IsPrimitive()) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070081 args[i].l = soa.AddLocalReference<jobject>(arg);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070082 }
83 }
84
85 // Invoke the method.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070086 JValue value(InvokeWithJValues(soa, javaReceiver, mid, args.get()));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070087
88 // Wrap any exception with "Ljava/lang/reflect/InvocationTargetException;" and return early.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070089 if (soa.Self()->IsExceptionPending()) {
90 jthrowable th = soa.Env()->ExceptionOccurred();
91 soa.Env()->ExceptionClear();
92 jclass exception_class = soa.Env()->FindClass("java/lang/reflect/InvocationTargetException");
93 jmethodID mid = soa.Env()->GetMethodID(exception_class, "<init>", "(Ljava/lang/Throwable;)V");
94 jobject exception_instance = soa.Env()->NewObject(exception_class, mid, th);
95 soa.Env()->Throw(reinterpret_cast<jthrowable>(exception_instance));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070096 return NULL;
97 }
98
99 // Box if necessary and return.
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800100 return soa.AddLocalReference<jobject>(BoxPrimitive(mh.GetReturnType()->GetPrimitiveType(), value));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -0700101}
102
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800103bool VerifyObjectInClass(mirror::Object* o, mirror::Class* c) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700104 const char* exception = NULL;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700105 if (o == NULL) {
Elliott Hugheseac76672012-05-24 21:56:51 -0700106 exception = "Ljava/lang/NullPointerException;";
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700107 } else if (!o->InstanceOf(c)) {
Elliott Hugheseac76672012-05-24 21:56:51 -0700108 exception = "Ljava/lang/IllegalArgumentException;";
Elliott Hughes418d20f2011-09-22 14:00:39 -0700109 }
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700110 if (exception != NULL) {
111 std::string expected_class_name(PrettyDescriptor(c));
112 std::string actual_class_name(PrettyTypeOf(o));
Elliott Hugheseac76672012-05-24 21:56:51 -0700113 Thread::Current()->ThrowNewExceptionF(exception, "expected receiver of type %s, but got %s",
114 expected_class_name.c_str(), actual_class_name.c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700115 return false;
116 }
117 return true;
118}
119
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700120bool ConvertPrimitiveValue(Primitive::Type srcType, Primitive::Type dstType,
121 const JValue& src, JValue& dst) {
Jesse Wilsonc129a6b2011-11-24 14:47:46 -0500122 CHECK(srcType != Primitive::kPrimNot && dstType != Primitive::kPrimNot);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700123 switch (dstType) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700124 case Primitive::kPrimBoolean:
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700125 if (srcType == Primitive::kPrimBoolean) {
126 dst.SetZ(src.GetZ());
127 return true;
128 }
129 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700130 case Primitive::kPrimChar:
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700131 if (srcType == Primitive::kPrimChar) {
132 dst.SetC(src.GetC());
133 return true;
134 }
135 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700136 case Primitive::kPrimByte:
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700137 if (srcType == Primitive::kPrimByte) {
138 dst.SetB(src.GetB());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700139 return true;
140 }
141 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700142 case Primitive::kPrimShort:
143 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimShort) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700144 dst.SetS(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700145 return true;
146 }
147 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700148 case Primitive::kPrimInt:
149 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
150 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700151 dst.SetI(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700152 return true;
153 }
154 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700155 case Primitive::kPrimLong:
156 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
157 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700158 dst.SetJ(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700159 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700160 } else if (srcType == Primitive::kPrimLong) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700161 dst.SetJ(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700162 return true;
163 }
164 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700165 case Primitive::kPrimFloat:
166 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
167 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700168 dst.SetF(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700169 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700170 } else if (srcType == Primitive::kPrimLong) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700171 dst.SetF(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700172 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700173 } else if (srcType == Primitive::kPrimFloat) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700174 dst.SetF(src.GetF());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700175 return true;
176 }
177 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700178 case Primitive::kPrimDouble:
179 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
180 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700181 dst.SetD(src.GetI());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700182 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700183 } else if (srcType == Primitive::kPrimLong) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700184 dst.SetD(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700185 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700186 } else if (srcType == Primitive::kPrimFloat) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700187 dst.SetD(src.GetF());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700188 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700189 } else if (srcType == Primitive::kPrimDouble) {
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700190 dst.SetJ(src.GetJ());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700191 return true;
192 }
193 break;
194 default:
195 break;
196 }
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700197 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700198 "invalid primitive conversion from %s to %s",
199 PrettyDescriptor(srcType).c_str(),
200 PrettyDescriptor(dstType).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700201 return false;
202}
203
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800204mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700205 if (src_class == Primitive::kPrimNot) {
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800206 return value.GetL();
Elliott Hughes418d20f2011-09-22 14:00:39 -0700207 }
208
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700209 jmethodID m = NULL;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700210 switch (src_class) {
211 case Primitive::kPrimBoolean:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700212 m = WellKnownClasses::java_lang_Boolean_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700213 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700214 case Primitive::kPrimByte:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700215 m = WellKnownClasses::java_lang_Byte_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700216 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700217 case Primitive::kPrimChar:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700218 m = WellKnownClasses::java_lang_Character_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700219 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700220 case Primitive::kPrimDouble:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700221 m = WellKnownClasses::java_lang_Double_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700222 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700223 case Primitive::kPrimFloat:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700224 m = WellKnownClasses::java_lang_Float_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700225 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700226 case Primitive::kPrimInt:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700227 m = WellKnownClasses::java_lang_Integer_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700228 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700229 case Primitive::kPrimLong:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700230 m = WellKnownClasses::java_lang_Long_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700231 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700232 case Primitive::kPrimShort:
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700233 m = WellKnownClasses::java_lang_Short_valueOf;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700234 break;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700235 case Primitive::kPrimVoid:
Elliott Hughes418d20f2011-09-22 14:00:39 -0700236 // There's no such thing as a void field, and void methods invoked via reflection return null.
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800237 return NULL;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700238 default:
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700239 LOG(FATAL) << static_cast<int>(src_class);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700240 }
241
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700242 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers50b35e22012-10-04 10:09:15 -0700243 if (kIsDebugBuild) {
244 CHECK_EQ(soa.Self()->GetState(), kRunnable);
245 }
Elliott Hughesdbac3092012-03-16 18:00:30 -0700246 JValue args[1] = { value };
Ian Rogersaf6e67a2013-01-16 08:38:37 -0800247 JValue result;
248 soa.DecodeMethod(m)->Invoke(soa.Self(), NULL, args, &result);
249 return result.GetL();
Elliott Hughes418d20f2011-09-22 14:00:39 -0700250}
251
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800252static std::string UnboxingFailureKind(mirror::AbstractMethod* m, int index, mirror::Field* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700253 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700254 if (m != NULL && index != -1) {
255 ++index; // Humans count from 1.
256 return StringPrintf("method %s argument %d", PrettyMethod(m, false).c_str(), index);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700257 }
258 if (f != NULL) {
259 return "field " + PrettyField(f, false);
260 }
261 return "result";
262}
263
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800264static bool UnboxPrimitive(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
265 mirror::AbstractMethod* m, int index, mirror::Field* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -0700266 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700267 if (!dst_class->IsPrimitive()) {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700268 if (o != NULL && !o->InstanceOf(dst_class)) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700269 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700270 "%s has type %s, got %s",
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700271 UnboxingFailureKind(m, index, f).c_str(),
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700272 PrettyDescriptor(dst_class).c_str(),
273 PrettyTypeOf(o).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700274 return false;
275 }
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700276 unboxed_value.SetL(o);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700277 return true;
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700278 } else if (dst_class->GetPrimitiveType() == Primitive::kPrimVoid) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700279 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
280 "can't unbox %s to void",
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700281 UnboxingFailureKind(m, index, f).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700282 return false;
283 }
284
285 if (o == NULL) {
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700286 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700287 "%s has type %s, got null",
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700288 UnboxingFailureKind(m, index, f).c_str(),
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700289 PrettyDescriptor(dst_class).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700290 return false;
291 }
292
Elliott Hughes1d878f32012-04-11 15:17:54 -0700293 JValue boxed_value;
Elliott Hughes95572412011-12-13 18:14:20 -0800294 std::string src_descriptor(ClassHelper(o->GetClass()).GetDescriptor());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800295 mirror::Class* src_class = NULL;
Elliott Hughes418d20f2011-09-22 14:00:39 -0700296 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800297 mirror::Field* primitive_field = o->GetClass()->GetIFields()->Get(0);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800298 if (src_descriptor == "Ljava/lang/Boolean;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700299 src_class = class_linker->FindPrimitiveClass('Z');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700300 boxed_value.SetZ(primitive_field->GetBoolean(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800301 } else if (src_descriptor == "Ljava/lang/Byte;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700302 src_class = class_linker->FindPrimitiveClass('B');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700303 boxed_value.SetB(primitive_field->GetByte(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800304 } else if (src_descriptor == "Ljava/lang/Character;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700305 src_class = class_linker->FindPrimitiveClass('C');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700306 boxed_value.SetC(primitive_field->GetChar(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800307 } else if (src_descriptor == "Ljava/lang/Float;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700308 src_class = class_linker->FindPrimitiveClass('F');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700309 boxed_value.SetF(primitive_field->GetFloat(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800310 } else if (src_descriptor == "Ljava/lang/Double;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700311 src_class = class_linker->FindPrimitiveClass('D');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700312 boxed_value.SetD(primitive_field->GetDouble(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800313 } else if (src_descriptor == "Ljava/lang/Integer;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700314 src_class = class_linker->FindPrimitiveClass('I');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700315 boxed_value.SetI(primitive_field->GetInt(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800316 } else if (src_descriptor == "Ljava/lang/Long;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700317 src_class = class_linker->FindPrimitiveClass('J');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700318 boxed_value.SetJ(primitive_field->GetLong(o));
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800319 } else if (src_descriptor == "Ljava/lang/Short;") {
Elliott Hughes418d20f2011-09-22 14:00:39 -0700320 src_class = class_linker->FindPrimitiveClass('S');
Elliott Hughesf24d3ce2012-04-11 17:43:37 -0700321 boxed_value.SetS(primitive_field->GetShort(o));
Elliott Hughes418d20f2011-09-22 14:00:39 -0700322 } else {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700323 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700324 "%s has type %s, got %s",
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700325 UnboxingFailureKind(m, index, f).c_str(),
Elliott Hughesb600b3f2012-03-14 13:57:24 -0700326 PrettyDescriptor(dst_class).c_str(),
327 PrettyDescriptor(src_descriptor.c_str()).c_str());
Elliott Hughes418d20f2011-09-22 14:00:39 -0700328 return false;
329 }
330
Brian Carlstrom6b4ef022011-10-23 14:59:04 -0700331 return ConvertPrimitiveValue(src_class->GetPrimitiveType(), dst_class->GetPrimitiveType(),
332 boxed_value, unboxed_value);
Elliott Hughes418d20f2011-09-22 14:00:39 -0700333}
334
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800335bool UnboxPrimitiveForArgument(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
336 mirror::AbstractMethod* m, size_t index) {
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700337 CHECK(m != NULL);
338 return UnboxPrimitive(o, dst_class, unboxed_value, m, index, NULL);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700339}
340
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800341bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
342 mirror::Field* f) {
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700343 CHECK(f != NULL);
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700344 return UnboxPrimitive(o, dst_class, unboxed_value, NULL, -1, f);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700345}
346
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800347bool UnboxPrimitiveForResult(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value) {
Elliott Hughes84a5bb42012-05-16 17:52:15 -0700348 return UnboxPrimitive(o, dst_class, unboxed_value, NULL, -1, NULL);
Elliott Hughesaaa5edc2012-05-16 15:54:30 -0700349}
350
Elliott Hughes418d20f2011-09-22 14:00:39 -0700351} // namespace art