blob: 058865ee17a689154b21b8adc6f41486b2fd8bc2 [file] [log] [blame]
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001/*
2 * Copyright (C) 2008 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 */
Andy McFadden4fbba1f2010-02-03 07:21:14 -080016
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080017/*
18 * Stacks and their uses (e.g. native --> interpreted method calls).
19 *
20 * See the majestic ASCII art in Stack.h.
21 */
22#include "Dalvik.h"
23#include "jni.h"
24
25#include <stdlib.h>
26#include <stdarg.h>
27
28/*
29 * Initialize the interpreter stack in a new thread.
30 *
31 * Currently this doesn't do much, since we don't need to zero out the
32 * stack (and we really don't want to if it was created with mmap).
33 */
34bool dvmInitInterpStack(Thread* thread, int stackSize)
35{
36 assert(thread->interpStackStart != NULL);
37
38 assert(thread->curFrame == NULL);
39
40 return true;
41}
42
43/*
44 * We're calling an interpreted method from an internal VM function or
45 * via reflection.
46 *
47 * Push a frame for an interpreted method onto the stack. This is only
48 * used when calling into interpreted code from native code. (The
49 * interpreter does its own stack frame manipulation for interp-->interp
50 * calls.)
51 *
52 * The size we need to reserve is the sum of parameters, local variables,
53 * saved goodies, and outbound parameters.
54 *
55 * We start by inserting a "break" frame, which ensures that the interpreter
56 * hands control back to us after the function we call returns or an
57 * uncaught exception is thrown.
58 */
59static bool dvmPushInterpFrame(Thread* self, const Method* method)
60{
61 StackSaveArea* saveBlock;
62 StackSaveArea* breakSaveBlock;
63 int stackReq;
64 u1* stackPtr;
65
66 assert(!dvmIsNativeMethod(method));
67 assert(!dvmIsAbstractMethod(method));
68
69 stackReq = method->registersSize * 4 // params + locals
70 + sizeof(StackSaveArea) * 2 // break frame + regular frame
71 + method->outsSize * 4; // args to other methods
72
73 if (self->curFrame != NULL)
74 stackPtr = (u1*) SAVEAREA_FROM_FP(self->curFrame);
75 else
76 stackPtr = self->interpStackStart;
77
78 if (stackPtr - stackReq < self->interpStackEnd) {
79 /* not enough space */
The Android Open Source Project99409882009-03-18 22:20:24 -070080 LOGW("Stack overflow on call to interp "
81 "(req=%d top=%p cur=%p size=%d %s.%s)\n",
82 stackReq, self->interpStackStart, self->curFrame,
83 self->interpStackSize, method->clazz->descriptor, method->name);
Andy McFadden6ed1a0f2009-09-10 15:34:19 -070084 dvmHandleStackOverflow(self, method);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080085 assert(dvmCheckException(self));
86 return false;
87 }
88
89 /*
90 * Shift the stack pointer down, leaving space for the function's
91 * args/registers and save area.
92 */
93 stackPtr -= sizeof(StackSaveArea);
94 breakSaveBlock = (StackSaveArea*)stackPtr;
95 stackPtr -= method->registersSize * 4 + sizeof(StackSaveArea);
96 saveBlock = (StackSaveArea*) stackPtr;
97
98#if !defined(NDEBUG) && !defined(PAD_SAVE_AREA)
99 /* debug -- memset the new stack, unless we want valgrind's help */
100 memset(stackPtr - (method->outsSize*4), 0xaf, stackReq);
101#endif
102#ifdef EASY_GDB
103 breakSaveBlock->prevSave = FP_FROM_SAVEAREA(self->curFrame);
104 saveBlock->prevSave = breakSaveBlock;
105#endif
106
107 breakSaveBlock->prevFrame = self->curFrame;
108 breakSaveBlock->savedPc = NULL; // not required
Andy McFaddend5ab7262009-08-25 07:19:34 -0700109 breakSaveBlock->xtra.localRefCookie = 0; // not required
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800110 breakSaveBlock->method = NULL;
111 saveBlock->prevFrame = FP_FROM_SAVEAREA(breakSaveBlock);
112 saveBlock->savedPc = NULL; // not required
113 saveBlock->xtra.currentPc = NULL; // not required?
114 saveBlock->method = method;
115
116 LOGVV("PUSH frame: old=%p new=%p (size=%d)\n",
117 self->curFrame, FP_FROM_SAVEAREA(saveBlock),
118 (u1*)self->curFrame - (u1*)FP_FROM_SAVEAREA(saveBlock));
119
120 self->curFrame = FP_FROM_SAVEAREA(saveBlock);
121
122 return true;
123}
124
125/*
126 * We're calling a JNI native method from an internal VM fuction or
127 * via reflection. This is also used to create the "fake" native-method
128 * frames at the top of the interpreted stack.
129 *
130 * This actually pushes two frames; the first is a "break" frame.
131 *
132 * The top frame has additional space for JNI local reference tracking.
133 */
134bool dvmPushJNIFrame(Thread* self, const Method* method)
135{
136 StackSaveArea* saveBlock;
137 StackSaveArea* breakSaveBlock;
138 int stackReq;
139 u1* stackPtr;
140
141 assert(dvmIsNativeMethod(method));
142
143 stackReq = method->registersSize * 4 // params only
144 + sizeof(StackSaveArea) * 2; // break frame + regular frame
145
146 if (self->curFrame != NULL)
147 stackPtr = (u1*) SAVEAREA_FROM_FP(self->curFrame);
148 else
149 stackPtr = self->interpStackStart;
150
151 if (stackPtr - stackReq < self->interpStackEnd) {
152 /* not enough space */
The Android Open Source Project99409882009-03-18 22:20:24 -0700153 LOGW("Stack overflow on call to native "
154 "(req=%d top=%p cur=%p size=%d '%s')\n",
155 stackReq, self->interpStackStart, self->curFrame,
156 self->interpStackSize, method->name);
Andy McFadden6ed1a0f2009-09-10 15:34:19 -0700157 dvmHandleStackOverflow(self, method);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800158 assert(dvmCheckException(self));
159 return false;
160 }
161
162 /*
163 * Shift the stack pointer down, leaving space for just the stack save
164 * area for the break frame, then shift down farther for the full frame.
165 * We leave space for the method args, which are copied in later.
166 */
167 stackPtr -= sizeof(StackSaveArea);
168 breakSaveBlock = (StackSaveArea*)stackPtr;
169 stackPtr -= method->registersSize * 4 + sizeof(StackSaveArea);
170 saveBlock = (StackSaveArea*) stackPtr;
171
172#if !defined(NDEBUG) && !defined(PAD_SAVE_AREA)
173 /* debug -- memset the new stack */
174 memset(stackPtr, 0xaf, stackReq);
175#endif
176#ifdef EASY_GDB
177 if (self->curFrame == NULL)
178 breakSaveBlock->prevSave = NULL;
179 else
180 breakSaveBlock->prevSave = FP_FROM_SAVEAREA(self->curFrame);
181 saveBlock->prevSave = breakSaveBlock;
182#endif
183
184 breakSaveBlock->prevFrame = self->curFrame;
185 breakSaveBlock->savedPc = NULL; // not required
Andy McFaddend5ab7262009-08-25 07:19:34 -0700186 breakSaveBlock->xtra.localRefCookie = 0; // not required
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800187 breakSaveBlock->method = NULL;
188 saveBlock->prevFrame = FP_FROM_SAVEAREA(breakSaveBlock);
189 saveBlock->savedPc = NULL; // not required
Andy McFaddend5ab7262009-08-25 07:19:34 -0700190#ifdef USE_INDIRECT_REF
191 saveBlock->xtra.localRefCookie = self->jniLocalRefTable.segmentState.all;
192#else
193 saveBlock->xtra.localRefCookie = self->jniLocalRefTable.nextEntry;
194#endif
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800195 saveBlock->method = method;
196
197 LOGVV("PUSH JNI frame: old=%p new=%p (size=%d)\n",
198 self->curFrame, FP_FROM_SAVEAREA(saveBlock),
199 (u1*)self->curFrame - (u1*)FP_FROM_SAVEAREA(saveBlock));
200
201 self->curFrame = FP_FROM_SAVEAREA(saveBlock);
202
203 return true;
204}
205
206/*
207 * This is used by the JNI PushLocalFrame call. We push a new frame onto
208 * the stack that has no ins, outs, or locals, and no break frame above it.
209 * It's strictly used for tracking JNI local refs, and will be popped off
210 * by dvmPopFrame if it's not removed explicitly.
211 */
212bool dvmPushLocalFrame(Thread* self, const Method* method)
213{
214 StackSaveArea* saveBlock;
215 int stackReq;
216 u1* stackPtr;
217
218 assert(dvmIsNativeMethod(method));
219
220 stackReq = sizeof(StackSaveArea); // regular frame
221
222 assert(self->curFrame != NULL);
223 stackPtr = (u1*) SAVEAREA_FROM_FP(self->curFrame);
224
225 if (stackPtr - stackReq < self->interpStackEnd) {
226 /* not enough space; let JNI throw the exception */
The Android Open Source Project99409882009-03-18 22:20:24 -0700227 LOGW("Stack overflow on PushLocal "
228 "(req=%d top=%p cur=%p size=%d '%s')\n",
229 stackReq, self->interpStackStart, self->curFrame,
230 self->interpStackSize, method->name);
Andy McFadden6ed1a0f2009-09-10 15:34:19 -0700231 dvmHandleStackOverflow(self, method);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800232 assert(dvmCheckException(self));
233 return false;
234 }
235
236 /*
237 * Shift the stack pointer down, leaving space for just the stack save
238 * area for the break frame, then shift down farther for the full frame.
239 */
240 stackPtr -= sizeof(StackSaveArea);
241 saveBlock = (StackSaveArea*) stackPtr;
242
243#if !defined(NDEBUG) && !defined(PAD_SAVE_AREA)
244 /* debug -- memset the new stack */
245 memset(stackPtr, 0xaf, stackReq);
246#endif
247#ifdef EASY_GDB
248 saveBlock->prevSave = FP_FROM_SAVEAREA(self->curFrame);
249#endif
250
251 saveBlock->prevFrame = self->curFrame;
252 saveBlock->savedPc = NULL; // not required
Andy McFaddend5ab7262009-08-25 07:19:34 -0700253#ifdef USE_INDIRECT_REF
254 saveBlock->xtra.localRefCookie = self->jniLocalRefTable.segmentState.all;
255#else
256 saveBlock->xtra.localRefCookie = self->jniLocalRefTable.nextEntry;
257#endif
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800258 saveBlock->method = method;
259
260 LOGVV("PUSH JNI local frame: old=%p new=%p (size=%d)\n",
261 self->curFrame, FP_FROM_SAVEAREA(saveBlock),
262 (u1*)self->curFrame - (u1*)FP_FROM_SAVEAREA(saveBlock));
263
264 self->curFrame = FP_FROM_SAVEAREA(saveBlock);
265
266 return true;
267}
268
269/*
270 * Pop one frame pushed on by JNI PushLocalFrame.
271 *
272 * If we've gone too far, the previous frame is either a break frame or
273 * an interpreted frame. Either way, the method pointer won't match.
274 */
275bool dvmPopLocalFrame(Thread* self)
276{
277 StackSaveArea* saveBlock = SAVEAREA_FROM_FP(self->curFrame);
278
279 assert(!dvmIsBreakFrame(self->curFrame));
280 if (saveBlock->method != SAVEAREA_FROM_FP(saveBlock->prevFrame)->method) {
281 /*
282 * The previous frame doesn't have the same method pointer -- we've
283 * been asked to pop too much.
284 */
285 assert(dvmIsBreakFrame(saveBlock->prevFrame) ||
286 !dvmIsNativeMethod(
287 SAVEAREA_FROM_FP(saveBlock->prevFrame)->method));
288 return false;
289 }
290
291 LOGVV("POP JNI local frame: removing %s, now %s\n",
292 saveBlock->method->name,
293 SAVEAREA_FROM_FP(saveBlock->prevFrame)->method->name);
294 dvmPopJniLocals(self, saveBlock);
295 self->curFrame = saveBlock->prevFrame;
296
297 return true;
298}
299
300/*
301 * Pop a frame we added. There should be one method frame and one break
302 * frame.
303 *
304 * If JNI Push/PopLocalFrame calls were mismatched, we might end up
305 * popping multiple method frames before we find the break.
306 *
307 * Returns "false" if there was no frame to pop.
308 */
309static bool dvmPopFrame(Thread* self)
310{
311 StackSaveArea* saveBlock;
312
313 if (self->curFrame == NULL)
314 return false;
315
316 saveBlock = SAVEAREA_FROM_FP(self->curFrame);
317 assert(!dvmIsBreakFrame(self->curFrame));
318
319 /*
320 * Remove everything up to the break frame. If this was a call into
321 * native code, pop the JNI local references table.
322 */
323 while (saveBlock->prevFrame != NULL && saveBlock->method != NULL) {
324 /* probably a native->native JNI call */
325
326 if (dvmIsNativeMethod(saveBlock->method)) {
327 LOGVV("Popping JNI stack frame for %s.%s%s\n",
328 saveBlock->method->clazz->descriptor,
329 saveBlock->method->name,
330 (SAVEAREA_FROM_FP(saveBlock->prevFrame)->method == NULL) ?
331 "" : " (JNI local)");
Andy McFaddend5ab7262009-08-25 07:19:34 -0700332 assert(saveBlock->xtra.localRefCookie != 0);
333 //assert(saveBlock->xtra.localRefCookie >= self->jniLocalRefTable.table &&
334 // saveBlock->xtra.localRefCookie <=self->jniLocalRefTable.nextEntry);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800335
336 dvmPopJniLocals(self, saveBlock);
337 }
338
339 saveBlock = SAVEAREA_FROM_FP(saveBlock->prevFrame);
340 }
341 if (saveBlock->method != NULL) {
342 LOGE("PopFrame missed the break\n");
343 assert(false);
344 dvmAbort(); // stack trashed -- nowhere to go in this thread
345 }
346
347 LOGVV("POP frame: cur=%p new=%p\n",
348 self->curFrame, saveBlock->prevFrame);
349
350 self->curFrame = saveBlock->prevFrame;
351 return true;
352}
353
354/*
355 * Common code for dvmCallMethodV/A and dvmInvokeMethod.
356 *
357 * Pushes a call frame on, advancing self->curFrame.
358 */
359static ClassObject* callPrep(Thread* self, const Method* method, Object* obj,
360 bool checkAccess)
361{
362 ClassObject* clazz;
363
364#ifndef NDEBUG
365 if (self->status != THREAD_RUNNING) {
The Android Open Source Project99409882009-03-18 22:20:24 -0700366 LOGW("threadid=%d: status=%d on call to %s.%s -\n",
367 self->threadId, self->status,
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800368 method->clazz->descriptor, method->name);
369 }
370#endif
371
372 assert(self != NULL);
373 assert(method != NULL);
374
375 if (obj != NULL)
376 clazz = obj->clazz;
377 else
378 clazz = method->clazz;
379
380 IF_LOGVV() {
381 char* desc = dexProtoCopyMethodDescriptor(&method->prototype);
382 LOGVV("thread=%d native code calling %s.%s %s\n", self->threadId,
383 clazz->descriptor, method->name, desc);
384 free(desc);
385 }
386
387 if (checkAccess) {
388 /* needed for java.lang.reflect.Method.invoke */
389 if (!dvmCheckMethodAccess(dvmGetCaller2Class(self->curFrame),
390 method))
391 {
392 /* note this throws IAException, not IAError */
393 dvmThrowException("Ljava/lang/IllegalAccessException;",
394 "access to method denied");
395 return NULL;
396 }
397 }
398
399 /*
400 * Push a call frame on. If there isn't enough room for ins, locals,
401 * outs, and the saved state, it will throw an exception.
402 *
403 * This updates self->curFrame.
404 */
405 if (dvmIsNativeMethod(method)) {
406 /* native code calling native code the hard way */
407 if (!dvmPushJNIFrame(self, method)) {
408 assert(dvmCheckException(self));
409 return NULL;
410 }
411 } else {
412 /* native code calling interpreted code */
413 if (!dvmPushInterpFrame(self, method)) {
414 assert(dvmCheckException(self));
415 return NULL;
416 }
417 }
418
419 return clazz;
420}
421
422/*
423 * Issue a method call.
424 *
425 * Pass in NULL for "obj" on calls to static methods.
426 *
427 * (Note this can't be inlined because it takes a variable number of args.)
428 */
429void dvmCallMethod(Thread* self, const Method* method, Object* obj,
430 JValue* pResult, ...)
431{
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800432 va_list args;
433 va_start(args, pResult);
Andy McFaddend5ab7262009-08-25 07:19:34 -0700434 dvmCallMethodV(self, method, obj, false, pResult, args);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800435 va_end(args);
436}
437
438/*
439 * Issue a method call with a variable number of arguments. We process
440 * the contents of "args" by scanning the method signature.
441 *
442 * Pass in NULL for "obj" on calls to static methods.
443 *
444 * We don't need to take the class as an argument because, in Dalvik,
445 * we don't need to worry about static synchronized methods.
446 */
447void dvmCallMethodV(Thread* self, const Method* method, Object* obj,
Andy McFaddend5ab7262009-08-25 07:19:34 -0700448 bool fromJni, JValue* pResult, va_list args)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800449{
450 const char* desc = &(method->shorty[1]); // [0] is the return type.
451 int verifyCount = 0;
452 ClassObject* clazz;
453 u4* ins;
454
455 clazz = callPrep(self, method, obj, false);
456 if (clazz == NULL)
457 return;
458
459 /* "ins" for new frame start at frame pointer plus locals */
460 ins = ((u4*)self->curFrame) + (method->registersSize - method->insSize);
461
462 //LOGD(" FP is %p, INs live at >= %p\n", self->curFrame, ins);
463
464 /* put "this" pointer into in0 if appropriate */
465 if (!dvmIsStaticMethod(method)) {
466#ifdef WITH_EXTRA_OBJECT_VALIDATION
467 assert(obj != NULL && dvmIsValidObject(obj));
468#endif
469 *ins++ = (u4) obj;
470 verifyCount++;
471 }
472
Andy McFadden0083d372009-08-21 14:44:04 -0700473 JNIEnv* env = self->jniEnv;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800474 while (*desc != '\0') {
475 switch (*(desc++)) {
476 case 'D': case 'J': {
477 u8 val = va_arg(args, u8);
478 memcpy(ins, &val, 8); // EABI prevents direct store
479 ins += 2;
480 verifyCount += 2;
481 break;
482 }
483 case 'F': {
484 /* floats were normalized to doubles; convert back */
485 float f = (float) va_arg(args, double);
486 *ins++ = dvmFloatToU4(f);
487 verifyCount++;
488 break;
489 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800490 case 'L': { /* 'shorty' descr uses L for all refs, incl array */
Andy McFadden0083d372009-08-21 14:44:04 -0700491 void* argObj = va_arg(args, void*);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800492 assert(obj == NULL || dvmIsValidObject(obj));
Andy McFaddend5ab7262009-08-25 07:19:34 -0700493 if (fromJni)
494 *ins++ = (u4) dvmDecodeIndirectRef(env, argObj);
495 else
496 *ins++ = (u4) argObj;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800497 verifyCount++;
498 break;
499 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800500 default: {
Andy McFadden0083d372009-08-21 14:44:04 -0700501 /* Z B C S I -- all passed as 32-bit integers */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800502 *ins++ = va_arg(args, u4);
503 verifyCount++;
504 break;
505 }
506 }
507 }
508
509#ifndef NDEBUG
510 if (verifyCount != method->insSize) {
511 LOGE("Got vfycount=%d insSize=%d for %s.%s\n", verifyCount,
512 method->insSize, clazz->descriptor, method->name);
513 assert(false);
514 goto bail;
515 }
516#endif
517
518 //dvmDumpThreadStack(dvmThreadSelf());
519
520 if (dvmIsNativeMethod(method)) {
The Android Open Source Project99409882009-03-18 22:20:24 -0700521 TRACE_METHOD_ENTER(self, method);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800522 /*
523 * Because we leave no space for local variables, "curFrame" points
524 * directly at the method arguments.
525 */
526 (*method->nativeFunc)(self->curFrame, pResult, method, self);
The Android Open Source Project99409882009-03-18 22:20:24 -0700527 TRACE_METHOD_EXIT(self, method);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800528 } else {
529 dvmInterpret(self, method, pResult);
530 }
531
Carl Shapiroe3c01da2010-05-20 22:54:18 -0700532#ifndef NDEBUG
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800533bail:
Carl Shapiroe3c01da2010-05-20 22:54:18 -0700534#endif
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800535 dvmPopFrame(self);
536}
537
538/*
539 * Issue a method call with arguments provided in an array. We process
540 * the contents of "args" by scanning the method signature.
541 *
542 * The values were likely placed into an uninitialized jvalue array using
543 * the field specifiers, which means that sub-32-bit fields (e.g. short,
544 * boolean) may not have 32 or 64 bits of valid data. This is different
545 * from the varargs invocation where the C compiler does a widening
546 * conversion when calling a function. As a result, we have to be a
547 * little more precise when pulling stuff out.
Andy McFadden8e5c7842009-07-23 17:47:18 -0700548 *
549 * "args" may be NULL if the method has no arguments.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800550 */
551void dvmCallMethodA(Thread* self, const Method* method, Object* obj,
Andy McFaddend5ab7262009-08-25 07:19:34 -0700552 bool fromJni, JValue* pResult, const jvalue* args)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800553{
554 const char* desc = &(method->shorty[1]); // [0] is the return type.
555 int verifyCount = 0;
556 ClassObject* clazz;
557 u4* ins;
558
559 clazz = callPrep(self, method, obj, false);
560 if (clazz == NULL)
561 return;
562
563 /* "ins" for new frame start at frame pointer plus locals */
564 ins = ((u4*)self->curFrame) + (method->registersSize - method->insSize);
565
566 /* put "this" pointer into in0 if appropriate */
567 if (!dvmIsStaticMethod(method)) {
568 assert(obj != NULL);
Andy McFadden0083d372009-08-21 14:44:04 -0700569 *ins++ = (u4) obj; /* obj is a "real" ref */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800570 verifyCount++;
571 }
572
Andy McFadden0083d372009-08-21 14:44:04 -0700573 JNIEnv* env = self->jniEnv;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800574 while (*desc != '\0') {
Andy McFadden0083d372009-08-21 14:44:04 -0700575 switch (*desc++) {
576 case 'D': /* 64-bit quantity; have to use */
577 case 'J': /* memcpy() in case of mis-alignment */
578 memcpy(ins, &args->j, 8);
579 ins += 2;
580 verifyCount++; /* this needs an extra push */
581 break;
582 case 'L': /* includes array refs */
Andy McFaddend5ab7262009-08-25 07:19:34 -0700583 if (fromJni)
584 *ins++ = (u4) dvmDecodeIndirectRef(env, args->l);
585 else
586 *ins++ = (u4) args->l;
Andy McFadden0083d372009-08-21 14:44:04 -0700587 break;
588 case 'F':
589 case 'I':
590 *ins++ = args->i; /* full 32 bits */
591 break;
592 case 'S':
593 *ins++ = args->s; /* 16 bits, sign-extended */
594 break;
595 case 'C':
596 *ins++ = args->c; /* 16 bits, unsigned */
597 break;
598 case 'B':
599 *ins++ = args->b; /* 8 bits, sign-extended */
600 break;
601 case 'Z':
602 *ins++ = args->z; /* 8 bits, zero or non-zero */
603 break;
604 default:
605 LOGE("Invalid char %c in short signature of %s.%s\n",
606 *(desc-1), clazz->descriptor, method->name);
607 assert(false);
608 goto bail;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800609 }
Andy McFadden0083d372009-08-21 14:44:04 -0700610
611 verifyCount++;
612 args++;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800613 }
614
615#ifndef NDEBUG
616 if (verifyCount != method->insSize) {
617 LOGE("Got vfycount=%d insSize=%d for %s.%s\n", verifyCount,
618 method->insSize, clazz->descriptor, method->name);
619 assert(false);
620 goto bail;
621 }
622#endif
623
624 if (dvmIsNativeMethod(method)) {
The Android Open Source Project99409882009-03-18 22:20:24 -0700625 TRACE_METHOD_ENTER(self, method);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800626 /*
627 * Because we leave no space for local variables, "curFrame" points
628 * directly at the method arguments.
629 */
630 (*method->nativeFunc)(self->curFrame, pResult, method, self);
The Android Open Source Project99409882009-03-18 22:20:24 -0700631 TRACE_METHOD_EXIT(self, method);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800632 } else {
633 dvmInterpret(self, method, pResult);
634 }
635
636bail:
637 dvmPopFrame(self);
638}
639
640/*
641 * Invoke a method, using the specified arguments and return type, through
642 * one of the reflection interfaces. Could be a virtual or direct method
643 * (including constructors). Used for reflection.
644 *
645 * Deals with boxing/unboxing primitives and performs widening conversions.
646 *
647 * "invokeObj" will be null for a static method.
648 *
649 * If the invocation returns with an exception raised, we have to wrap it.
650 */
651Object* dvmInvokeMethod(Object* obj, const Method* method,
652 ArrayObject* argList, ArrayObject* params, ClassObject* returnType,
653 bool noAccessCheck)
654{
655 ClassObject* clazz;
656 Object* retObj = NULL;
657 Thread* self = dvmThreadSelf();
658 s4* ins;
659 int verifyCount, argListLength;
660 JValue retval;
Andy McFaddenbe420e72010-10-18 13:28:31 -0700661 bool needPop = false;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800662
663 /* verify arg count */
664 if (argList != NULL)
665 argListLength = argList->length;
666 else
667 argListLength = 0;
668 if (argListLength != (int) params->length) {
669 LOGI("invoke: expected %d args, received %d args\n",
670 params->length, argListLength);
671 dvmThrowException("Ljava/lang/IllegalArgumentException;",
672 "wrong number of arguments");
673 return NULL;
674 }
675
676 clazz = callPrep(self, method, obj, !noAccessCheck);
677 if (clazz == NULL)
678 return NULL;
Andy McFaddenbe420e72010-10-18 13:28:31 -0700679 needPop = true;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800680
681 /* "ins" for new frame start at frame pointer plus locals */
682 ins = ((s4*)self->curFrame) + (method->registersSize - method->insSize);
683 verifyCount = 0;
684
685 //LOGD(" FP is %p, INs live at >= %p\n", self->curFrame, ins);
686
687 /* put "this" pointer into in0 if appropriate */
688 if (!dvmIsStaticMethod(method)) {
689 assert(obj != NULL);
690 *ins++ = (s4) obj;
691 verifyCount++;
692 }
693
694 /*
695 * Copy the args onto the stack. Primitive types are converted when
696 * necessary, and object types are verified.
697 */
698 DataObject** args;
699 ClassObject** types;
700 int i;
701
702 args = (DataObject**) argList->contents;
703 types = (ClassObject**) params->contents;
704 for (i = 0; i < argListLength; i++) {
705 int width;
706
707 width = dvmConvertArgument(*args++, *types++, ins);
708 if (width < 0) {
709 if (*(args-1) != NULL) {
710 LOGV("invoke: type mismatch on arg %d ('%s' '%s')\n",
711 i, (*(args-1))->obj.clazz->descriptor,
712 (*(types-1))->descriptor);
713 }
714 dvmPopFrame(self); // throw wants to pull PC out of stack
Andy McFaddenbe420e72010-10-18 13:28:31 -0700715 needPop = false;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800716 dvmThrowException("Ljava/lang/IllegalArgumentException;",
717 "argument type mismatch");
Andy McFaddenbe420e72010-10-18 13:28:31 -0700718 goto bail;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800719 }
720
721 ins += width;
722 verifyCount += width;
723 }
724
Andy McFaddenc4ae06f2010-11-04 12:37:51 -0700725#ifndef NDEBUG
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800726 if (verifyCount != method->insSize) {
727 LOGE("Got vfycount=%d insSize=%d for %s.%s\n", verifyCount,
728 method->insSize, clazz->descriptor, method->name);
729 assert(false);
730 goto bail;
731 }
Andy McFaddenc4ae06f2010-11-04 12:37:51 -0700732#endif
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800733
734 if (dvmIsNativeMethod(method)) {
The Android Open Source Project99409882009-03-18 22:20:24 -0700735 TRACE_METHOD_ENTER(self, method);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800736 /*
737 * Because we leave no space for local variables, "curFrame" points
738 * directly at the method arguments.
739 */
740 (*method->nativeFunc)(self->curFrame, &retval, method, self);
The Android Open Source Project99409882009-03-18 22:20:24 -0700741 TRACE_METHOD_EXIT(self, method);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800742 } else {
743 dvmInterpret(self, method, &retval);
744 }
745
746 /*
Andy McFaddenbe420e72010-10-18 13:28:31 -0700747 * Pop the frame immediately. The "wrap" calls below can cause
748 * allocations, and we don't want the GC to walk the now-dead frame.
749 */
750 dvmPopFrame(self);
751 needPop = false;
752
753 /*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800754 * If an exception is raised, wrap and replace. This is necessary
755 * because the invoked method could have thrown a checked exception
756 * that the caller wasn't prepared for.
757 *
758 * We might be able to do this up in the interpreted code, but that will
759 * leave us with a shortened stack trace in the top-level exception.
760 */
761 if (dvmCheckException(self)) {
762 dvmWrapException("Ljava/lang/reflect/InvocationTargetException;");
763 } else {
764 /*
765 * If this isn't a void method or constructor, convert the return type
766 * to an appropriate object.
767 *
768 * We don't do this when an exception is raised because the value
769 * in "retval" is undefined.
770 */
771 if (returnType != NULL) {
Andy McFaddenc4ae06f2010-11-04 12:37:51 -0700772 retObj = (Object*)dvmBoxPrimitive(retval, returnType);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800773 dvmReleaseTrackedAlloc(retObj, NULL);
774 }
775 }
776
777bail:
Andy McFaddenbe420e72010-10-18 13:28:31 -0700778 if (needPop) {
779 dvmPopFrame(self);
780 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800781 return retObj;
782}
783
784typedef struct LineNumFromPcContext {
785 u4 address;
786 u4 lineNum;
787} LineNumFromPcContext;
788
789static int lineNumForPcCb(void *cnxt, u4 address, u4 lineNum)
790{
791 LineNumFromPcContext *pContext = (LineNumFromPcContext *)cnxt;
792
Carl Shapirode750892010-06-08 16:37:12 -0700793 // We know that this callback will be called in
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800794 // ascending address order, so keep going until we find
795 // a match or we've just gone past it.
796
797 if (address > pContext->address) {
798 // The line number from the previous positions callback
799 // wil be the final result.
800 return 1;
801 }
802
803 pContext->lineNum = lineNum;
804
805 return (address == pContext->address) ? 1 : 0;
806}
807
808/*
809 * Determine the source file line number based on the program counter.
810 * "pc" is an offset, in 16-bit units, from the start of the method's code.
811 *
812 * Returns -1 if no match was found (possibly because the source files were
813 * compiled without "-g", so no line number information is present).
814 * Returns -2 for native methods (as expected in exception traces).
815 */
816int dvmLineNumFromPC(const Method* method, u4 relPc)
817{
818 const DexCode* pDexCode = dvmGetMethodCode(method);
819
820 if (pDexCode == NULL) {
821 if (dvmIsNativeMethod(method) && !dvmIsAbstractMethod(method))
822 return -2;
823 return -1; /* can happen for abstract method stub */
824 }
825
826 LineNumFromPcContext context;
827 memset(&context, 0, sizeof(context));
828 context.address = relPc;
829 // A method with no line number info should return -1
830 context.lineNum = -1;
831
832 dexDecodeDebugInfo(method->clazz->pDvmDex->pDexFile, pDexCode,
833 method->clazz->descriptor,
834 method->prototype.protoIdx,
835 method->accessFlags,
836 lineNumForPcCb, NULL, &context);
Carl Shapirode750892010-06-08 16:37:12 -0700837
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800838 return context.lineNum;
839}
840
841/*
842 * Compute the frame depth.
843 *
844 * Excludes "break" frames.
845 */
846int dvmComputeExactFrameDepth(const void* fp)
847{
848 int count = 0;
849
850 for ( ; fp != NULL; fp = SAVEAREA_FROM_FP(fp)->prevFrame) {
851 if (!dvmIsBreakFrame(fp))
852 count++;
853 }
854
855 return count;
856}
857
858/*
859 * Compute the "vague" frame depth, which is just a pointer subtraction.
860 * The result is NOT an overly generous assessment of the number of
861 * frames; the only meaningful use is to compare against the result of
862 * an earlier invocation.
863 *
864 * Useful for implementing single-step debugger modes, which may need to
865 * call this for every instruction.
866 */
867int dvmComputeVagueFrameDepth(Thread* thread, const void* fp)
868{
869 const u1* interpStackStart = thread->interpStackStart;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800870
Carl Shapiroe3c01da2010-05-20 22:54:18 -0700871 assert((u1*) fp >= interpStackStart - thread->interpStackSize);
872 assert((u1*) fp < interpStackStart);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800873 return interpStackStart - (u1*) fp;
874}
875
876/*
877 * Get the calling frame. Pass in the current fp.
878 *
879 * Skip "break" frames and reflection invoke frames.
880 */
881void* dvmGetCallerFP(const void* curFrame)
882{
883 void* caller = SAVEAREA_FROM_FP(curFrame)->prevFrame;
884 StackSaveArea* saveArea;
885
886retry:
887 if (dvmIsBreakFrame(caller)) {
888 /* pop up one more */
889 caller = SAVEAREA_FROM_FP(caller)->prevFrame;
890 if (caller == NULL)
891 return NULL; /* hit the top */
892
893 /*
894 * If we got here by java.lang.reflect.Method.invoke(), we don't
895 * want to return Method's class loader. Shift up one and try
896 * again.
897 */
898 saveArea = SAVEAREA_FROM_FP(caller);
899 if (dvmIsReflectionMethod(saveArea->method)) {
900 caller = saveArea->prevFrame;
901 assert(caller != NULL);
902 goto retry;
903 }
904 }
905
906 return caller;
907}
908
909/*
910 * Get the caller's class. Pass in the current fp.
911 *
912 * This is used by e.g. java.lang.Class.
913 */
914ClassObject* dvmGetCallerClass(const void* curFrame)
915{
916 void* caller;
917
918 caller = dvmGetCallerFP(curFrame);
919 if (caller == NULL)
920 return NULL;
921
922 return SAVEAREA_FROM_FP(caller)->method->clazz;
923}
924
925/*
926 * Get the caller's caller's class. Pass in the current fp.
927 *
928 * This is used by e.g. java.lang.Class, which wants to know about the
929 * class loader of the method that called it.
930 */
931ClassObject* dvmGetCaller2Class(const void* curFrame)
932{
933 void* caller = SAVEAREA_FROM_FP(curFrame)->prevFrame;
934 void* callerCaller;
935
936 /* at the top? */
937 if (dvmIsBreakFrame(caller) && SAVEAREA_FROM_FP(caller)->prevFrame == NULL)
938 return NULL;
939
940 /* go one more */
941 callerCaller = dvmGetCallerFP(caller);
942 if (callerCaller == NULL)
943 return NULL;
944
945 return SAVEAREA_FROM_FP(callerCaller)->method->clazz;
946}
947
948/*
949 * Get the caller's caller's caller's class. Pass in the current fp.
950 *
951 * This is used by e.g. java.lang.Class, which wants to know about the
952 * class loader of the method that called it.
953 */
954ClassObject* dvmGetCaller3Class(const void* curFrame)
955{
956 void* caller = SAVEAREA_FROM_FP(curFrame)->prevFrame;
957 int i;
958
959 /* at the top? */
960 if (dvmIsBreakFrame(caller) && SAVEAREA_FROM_FP(caller)->prevFrame == NULL)
961 return NULL;
962
963 /* Walk up two frames if possible. */
964 for (i = 0; i < 2; i++) {
965 caller = dvmGetCallerFP(caller);
966 if (caller == NULL)
967 return NULL;
968 }
Carl Shapirode750892010-06-08 16:37:12 -0700969
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800970 return SAVEAREA_FROM_FP(caller)->method->clazz;
971}
972
973/*
974 * Create a flat array of methods that comprise the current interpreter
975 * stack trace. Pass in the current frame ptr.
976 *
977 * Allocates a new array and fills it with method pointers. Break frames
978 * are skipped, but reflection invocations are not. The caller must free
979 * "*pArray".
980 *
981 * The current frame will be in element 0.
982 *
983 * Returns "true" on success, "false" on failure (e.g. malloc failed).
984 */
985bool dvmCreateStackTraceArray(const void* fp, const Method*** pArray,
986 int* pLength)
987{
988 const Method** array;
989 int idx, depth;
990
991 depth = dvmComputeExactFrameDepth(fp);
992 array = (const Method**) malloc(depth * sizeof(Method*));
993 if (array == NULL)
994 return false;
995
996 for (idx = 0; fp != NULL; fp = SAVEAREA_FROM_FP(fp)->prevFrame) {
997 if (!dvmIsBreakFrame(fp))
998 array[idx++] = SAVEAREA_FROM_FP(fp)->method;
999 }
1000 assert(idx == depth);
1001
1002 *pArray = array;
1003 *pLength = depth;
1004 return true;
1005}
1006
1007/*
1008 * Open up the reserved area and throw an exception. The reserved area
1009 * should only be needed to create and initialize the exception itself.
1010 *
1011 * If we already opened it and we're continuing to overflow, abort the VM.
1012 *
1013 * We have to leave the "reserved" area open until the "catch" handler has
1014 * finished doing its processing. This is because the catch handler may
1015 * need to resolve classes, which requires calling into the class loader if
1016 * the classes aren't already in the "initiating loader" list.
1017 */
Andy McFadden6ed1a0f2009-09-10 15:34:19 -07001018void dvmHandleStackOverflow(Thread* self, const Method* method)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001019{
1020 /*
1021 * Can we make the reserved area available?
1022 */
1023 if (self->stackOverflowed) {
1024 /*
1025 * Already did, nothing to do but bail.
1026 */
1027 LOGE("DalvikVM: double-overflow of stack in threadid=%d; aborting\n",
1028 self->threadId);
1029 dvmDumpThread(self, false);
1030 dvmAbort();
1031 }
1032
1033 /* open it up to the full range */
Andy McFadden6ed1a0f2009-09-10 15:34:19 -07001034 LOGI("threadid=%d: stack overflow on call to %s.%s:%s\n",
1035 self->threadId,
1036 method->clazz->descriptor, method->name, method->shorty);
1037 StackSaveArea* saveArea = SAVEAREA_FROM_FP(self->curFrame);
1038 LOGI(" method requires %d+%d+%d=%d bytes, fp is %p (%d left)\n",
1039 method->registersSize * 4, sizeof(StackSaveArea), method->outsSize * 4,
1040 (method->registersSize + method->outsSize) * 4 + sizeof(StackSaveArea),
1041 saveArea, (u1*) saveArea - self->interpStackEnd);
1042 LOGI(" expanding stack end (%p to %p)\n", self->interpStackEnd,
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001043 self->interpStackStart - self->interpStackSize);
1044 //dvmDumpThread(self, false);
1045 self->interpStackEnd = self->interpStackStart - self->interpStackSize;
1046 self->stackOverflowed = true;
1047
1048 /*
1049 * If we were trying to throw an exception when the stack overflowed,
1050 * we will blow up when doing the class lookup on StackOverflowError
1051 * because of the pending exception. So, we clear it and make it
1052 * the cause of the SOE.
1053 */
1054 Object* excep = dvmGetException(self);
1055 if (excep != NULL) {
1056 LOGW("Stack overflow while throwing exception\n");
1057 dvmClearException(self);
1058 }
Andy McFadden4fbba1f2010-02-03 07:21:14 -08001059 dvmThrowChainedExceptionByClass(gDvm.classJavaLangStackOverflowError,
1060 NULL, excep);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001061}
1062
1063/*
1064 * Reduce the available stack size. By this point we should have finished
1065 * our overflow processing.
1066 */
Andy McFadden4fbba1f2010-02-03 07:21:14 -08001067void dvmCleanupStackOverflow(Thread* self, const Object* exception)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001068{
1069 const u1* newStackEnd;
1070
1071 assert(self->stackOverflowed);
1072
Andy McFadden4fbba1f2010-02-03 07:21:14 -08001073 if (exception->clazz != gDvm.classJavaLangStackOverflowError) {
1074 /* exception caused during SOE, not the SOE itself */
1075 return;
1076 }
1077
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001078 newStackEnd = (self->interpStackStart - self->interpStackSize)
1079 + STACK_OVERFLOW_RESERVE;
1080 if ((u1*)self->curFrame <= newStackEnd) {
1081 LOGE("Can't shrink stack: curFrame is in reserved area (%p %p)\n",
1082 self->interpStackEnd, self->curFrame);
1083 dvmDumpThread(self, false);
1084 dvmAbort();
1085 }
1086
1087 self->interpStackEnd = newStackEnd;
1088 self->stackOverflowed = false;
1089
1090 LOGI("Shrank stack (to %p, curFrame is %p)\n", self->interpStackEnd,
1091 self->curFrame);
1092}
1093
1094
1095/*
Andy McFaddenfd542662010-03-12 13:39:59 -08001096 * Extract the object that is the target of a monitor-enter instruction
1097 * in the top stack frame of "thread".
1098 *
1099 * The other thread might be alive, so this has to work carefully.
1100 *
Andy McFaddend19988d2010-10-22 13:32:12 -07001101 * The thread list lock must be held.
Andy McFaddenfd542662010-03-12 13:39:59 -08001102 *
1103 * Returns "true" if we successfully recover the object. "*pOwner" will
1104 * be NULL if we can't determine the owner for some reason (e.g. race
1105 * condition on ownership transfer).
1106 */
1107static bool extractMonitorEnterObject(Thread* thread, Object** pLockObj,
1108 Thread** pOwner)
1109{
1110 void* framePtr = thread->curFrame;
1111
1112 if (framePtr == NULL || dvmIsBreakFrame(framePtr))
1113 return false;
1114
1115 const StackSaveArea* saveArea = SAVEAREA_FROM_FP(framePtr);
1116 const Method* method = saveArea->method;
1117 const u2* currentPc = saveArea->xtra.currentPc;
1118
1119 /* check Method* */
1120 if (!dvmLinearAllocContains(method, sizeof(Method))) {
1121 LOGD("ExtrMon: method %p not valid\n", method);
1122 return false;
1123 }
1124
1125 /* check currentPc */
1126 u4 insnsSize = dvmGetMethodInsnsSize(method);
1127 if (currentPc < method->insns ||
1128 currentPc >= method->insns + insnsSize)
1129 {
1130 LOGD("ExtrMon: insns %p not valid (%p - %p)\n",
1131 currentPc, method->insns, method->insns + insnsSize);
1132 return false;
1133 }
1134
1135 /* check the instruction */
1136 if ((*currentPc & 0xff) != OP_MONITOR_ENTER) {
1137 LOGD("ExtrMon: insn at %p is not monitor-enter (0x%02x)\n",
1138 currentPc, *currentPc & 0xff);
1139 return false;
1140 }
1141
1142 /* get and check the register index */
1143 unsigned int reg = *currentPc >> 8;
1144 if (reg >= method->registersSize) {
1145 LOGD("ExtrMon: invalid register %d (max %d)\n",
1146 reg, method->registersSize);
1147 return false;
1148 }
1149
1150 /* get and check the object in that register */
1151 u4* fp = (u4*) framePtr;
1152 Object* obj = (Object*) fp[reg];
1153 if (!dvmIsValidObject(obj)) {
1154 LOGD("ExtrMon: invalid object %p at %p[%d]\n", obj, fp, reg);
1155 return false;
1156 }
1157 *pLockObj = obj;
1158
1159 /*
1160 * Try to determine the object's lock holder; it's okay if this fails.
1161 *
1162 * We're assuming the thread list lock is already held by this thread.
1163 * If it's not, we may be living dangerously if we have to scan through
1164 * the thread list to find a match. (The VM will generally be in a
1165 * suspended state when executing here, so this is a minor concern
1166 * unless we're dumping while threads are running, in which case there's
1167 * a good chance of stuff blowing up anyway.)
1168 */
1169 *pOwner = dvmGetObjectLockHolder(obj);
1170
1171 return true;
1172}
1173
1174/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001175 * Dump stack frames, starting from the specified frame and moving down.
1176 *
1177 * Each frame holds a pointer to the currently executing method, and the
1178 * saved program counter from the caller ("previous" frame). This means
1179 * we don't have the PC for the current method on the stack, which is
1180 * pretty reasonable since it's in the "PC register" for the VM. Because
1181 * exceptions need to show the correct line number we actually *do* have
1182 * an updated version in the fame's "xtra.currentPc", but it's unreliable.
1183 *
1184 * Note "framePtr" could be NULL in rare circumstances.
1185 */
1186static void dumpFrames(const DebugOutputTarget* target, void* framePtr,
1187 Thread* thread)
1188{
1189 const StackSaveArea* saveArea;
1190 const Method* method;
1191 int checkCount = 0;
1192 const u2* currentPc = NULL;
1193 bool first = true;
1194
1195 /*
Andy McFaddend19988d2010-10-22 13:32:12 -07001196 * We call functions that require us to be holding the thread list lock.
1197 * It's probable that the caller has already done so, but it's not
1198 * guaranteed. If it's not locked, lock it now.
1199 */
1200 bool needThreadUnlock = dvmTryLockThreadList();
1201
1202 /*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001203 * The "currentPc" is updated whenever we execute an instruction that
1204 * might throw an exception. Show it here.
1205 */
1206 if (framePtr != NULL && !dvmIsBreakFrame(framePtr)) {
1207 saveArea = SAVEAREA_FROM_FP(framePtr);
1208
1209 if (saveArea->xtra.currentPc != NULL)
1210 currentPc = saveArea->xtra.currentPc;
1211 }
1212
1213 while (framePtr != NULL) {
1214 saveArea = SAVEAREA_FROM_FP(framePtr);
1215 method = saveArea->method;
1216
1217 if (dvmIsBreakFrame(framePtr)) {
1218 //dvmPrintDebugMessage(target, " (break frame)\n");
1219 } else {
1220 int relPc;
1221
1222 if (currentPc != NULL)
1223 relPc = currentPc - saveArea->method->insns;
1224 else
1225 relPc = -1;
1226
1227 char* className = dvmDescriptorToDot(method->clazz->descriptor);
1228 if (dvmIsNativeMethod(method))
1229 dvmPrintDebugMessage(target,
1230 " at %s.%s(Native Method)\n", className, method->name);
1231 else {
1232 dvmPrintDebugMessage(target,
1233 " at %s.%s(%s:%s%d)\n",
1234 className, method->name, dvmGetMethodSourceFile(method),
1235 (relPc >= 0 && first) ? "~" : "",
1236 relPc < 0 ? -1 : dvmLineNumFromPC(method, relPc));
1237 }
1238 free(className);
1239
Andy McFaddenfd542662010-03-12 13:39:59 -08001240 if (first) {
1241 /*
1242 * Decorate WAIT and MONITOR threads with some detail on
1243 * the first frame.
1244 *
1245 * warning: wait status not stable, even in suspend
1246 */
1247 if (thread->status == THREAD_WAIT ||
1248 thread->status == THREAD_TIMED_WAIT)
1249 {
1250 Monitor* mon = thread->waitMonitor;
1251 Object* obj = dvmGetMonitorObject(mon);
1252 if (obj != NULL) {
Andy McFaddend19988d2010-10-22 13:32:12 -07001253 Thread* joinThread = NULL;
Andy McFaddenfd542662010-03-12 13:39:59 -08001254 className = dvmDescriptorToDot(obj->clazz->descriptor);
Andy McFaddend19988d2010-10-22 13:32:12 -07001255 if (strcmp(className, "java.lang.VMThread") == 0) {
1256 joinThread = dvmGetThreadFromThreadObject(obj);
1257 }
1258 if (joinThread == NULL) {
1259 dvmPrintDebugMessage(target,
1260 " - waiting on <%p> (a %s)\n", obj, className);
1261 } else {
1262 dvmPrintDebugMessage(target,
1263 " - waiting on <%p> (a %s) tid=%d\n",
1264 obj, className, joinThread->threadId);
1265 }
Andy McFaddenfd542662010-03-12 13:39:59 -08001266 free(className);
1267 }
1268 } else if (thread->status == THREAD_MONITOR) {
1269 Object* obj;
1270 Thread* owner;
1271 if (extractMonitorEnterObject(thread, &obj, &owner)) {
1272 className = dvmDescriptorToDot(obj->clazz->descriptor);
1273 if (owner != NULL) {
1274 char* threadName = dvmGetThreadName(owner);
1275 dvmPrintDebugMessage(target,
1276 " - waiting to lock <%p> (a %s) held by threadid=%d (%s)\n",
1277 obj, className, owner->threadId, threadName);
1278 free(threadName);
1279 } else {
1280 dvmPrintDebugMessage(target,
1281 " - waiting to lock <%p> (a %s) held by ???\n",
1282 obj, className);
1283 }
1284 free(className);
1285 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001286 }
1287 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001288 }
1289
1290 /*
1291 * Get saved PC for previous frame. There's no savedPc in a "break"
1292 * frame, because that represents native or interpreted code
1293 * invoked by the VM. The saved PC is sitting in the "PC register",
1294 * a local variable on the native stack.
1295 */
1296 currentPc = saveArea->savedPc;
1297
1298 first = false;
1299
Andy McFadden0083d372009-08-21 14:44:04 -07001300 if (saveArea->prevFrame != NULL && saveArea->prevFrame <= framePtr) {
1301 LOGW("Warning: loop in stack trace at frame %d (%p -> %p)\n",
1302 checkCount, framePtr, saveArea->prevFrame);
1303 break;
1304 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001305 framePtr = saveArea->prevFrame;
1306
1307 checkCount++;
Andy McFadden0083d372009-08-21 14:44:04 -07001308 if (checkCount > 300) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001309 dvmPrintDebugMessage(target,
1310 " ***** printed %d frames, not showing any more\n",
1311 checkCount);
1312 break;
1313 }
1314 }
1315 dvmPrintDebugMessage(target, "\n");
Andy McFaddend19988d2010-10-22 13:32:12 -07001316
1317 if (needThreadUnlock) {
1318 dvmUnlockThreadList();
1319 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001320}
1321
1322
1323/*
1324 * Dump the stack for the specified thread.
1325 */
1326void dvmDumpThreadStack(const DebugOutputTarget* target, Thread* thread)
1327{
1328 dumpFrames(target, thread->curFrame, thread);
1329}
1330
1331/*
1332 * Dump the stack for the specified thread, which is still running.
1333 *
1334 * This is very dangerous, because stack frames are being pushed on and
1335 * popped off, and if the thread exits we'll be looking at freed memory.
1336 * The plan here is to take a snapshot of the stack and then dump that
1337 * to try to minimize the chances of catching it mid-update. This should
1338 * work reasonably well on a single-CPU system.
1339 *
1340 * There is a small chance that calling here will crash the VM.
1341 */
1342void dvmDumpRunningThreadStack(const DebugOutputTarget* target, Thread* thread)
1343{
1344 StackSaveArea* saveArea;
1345 const u1* origStack;
1346 u1* stackCopy = NULL;
1347 int origSize, fpOffset;
1348 void* fp;
1349 int depthLimit = 200;
1350
1351 if (thread == NULL || thread->curFrame == NULL) {
1352 dvmPrintDebugMessage(target,
1353 "DumpRunning: Thread at %p has no curFrame (threadid=%d)\n",
1354 thread, (thread != NULL) ? thread->threadId : 0);
1355 return;
1356 }
1357
1358 /* wait for a full quantum */
1359 sched_yield();
1360
1361 /* copy the info we need, then the stack itself */
1362 origSize = thread->interpStackSize;
1363 origStack = (const u1*) thread->interpStackStart - origSize;
1364 stackCopy = (u1*) malloc(origSize);
1365 fpOffset = (u1*) thread->curFrame - origStack;
1366 memcpy(stackCopy, origStack, origSize);
1367
1368 /*
1369 * Run through the stack and rewrite the "prev" pointers.
1370 */
1371 //LOGI("DR: fpOff=%d (from %p %p)\n",fpOffset, origStack, thread->curFrame);
1372 fp = stackCopy + fpOffset;
1373 while (true) {
1374 int prevOffset;
1375
1376 if (depthLimit-- < 0) {
1377 /* we're probably screwed */
1378 dvmPrintDebugMessage(target, "DumpRunning: depth limit hit\n");
1379 dvmAbort();
1380 }
1381 saveArea = SAVEAREA_FROM_FP(fp);
1382 if (saveArea->prevFrame == NULL)
1383 break;
1384
1385 prevOffset = (u1*) saveArea->prevFrame - origStack;
1386 if (prevOffset < 0 || prevOffset > origSize) {
1387 dvmPrintDebugMessage(target,
1388 "DumpRunning: bad offset found: %d (from %p %p)\n",
1389 prevOffset, origStack, saveArea->prevFrame);
1390 saveArea->prevFrame = NULL;
1391 break;
1392 }
1393
1394 saveArea->prevFrame = stackCopy + prevOffset;
1395 fp = saveArea->prevFrame;
1396 }
1397
1398 /*
1399 * We still need to pass the Thread for some monitor wait stuff.
1400 */
1401 dumpFrames(target, stackCopy + fpOffset, thread);
1402 free(stackCopy);
1403}