blob: 8ab10aff3c3c384803d72e44c488553c1feff220 [file] [log] [blame]
Elliott Hughes8d768a92011-09-14 16:35:25 -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 */
Carl Shapirob5573532011-07-12 18:22:59 -070016
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "thread.h"
Carl Shapirob5573532011-07-12 18:22:59 -070018
Elliott Hughes8d768a92011-09-14 16:35:25 -070019#include <dynamic_annotations.h>
Ian Rogersb033c752011-07-20 12:22:35 -070020#include <pthread.h>
21#include <sys/mman.h>
Elliott Hughesa0957642011-09-02 14:27:33 -070022
Carl Shapirob5573532011-07-12 18:22:59 -070023#include <algorithm>
Elliott Hughesdcc24742011-09-07 14:02:44 -070024#include <bitset>
Elliott Hugheseb4f6142011-07-15 17:43:51 -070025#include <cerrno>
Elliott Hughesa0957642011-09-02 14:27:33 -070026#include <iostream>
Carl Shapirob5573532011-07-12 18:22:59 -070027#include <list>
Carl Shapirob5573532011-07-12 18:22:59 -070028
Elliott Hughesa5b897e2011-08-16 11:33:06 -070029#include "class_linker.h"
Ian Rogersbdb03912011-09-14 00:55:44 -070030#include "context.h"
Ian Rogers408f79a2011-08-23 18:22:33 -070031#include "heap.h"
Elliott Hughesc5f7c912011-08-18 14:00:42 -070032#include "jni_internal.h"
Elliott Hughesa5b897e2011-08-16 11:33:06 -070033#include "object.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070034#include "runtime.h"
buzbee54330722011-08-23 16:46:55 -070035#include "runtime_support.h"
Ian Rogersaaa20802011-09-11 21:47:37 -070036#include "scoped_jni_thread_state.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070037#include "thread_list.h"
Elliott Hughesa0957642011-09-02 14:27:33 -070038#include "utils.h"
Carl Shapirob5573532011-07-12 18:22:59 -070039
40namespace art {
41
42pthread_key_t Thread::pthread_key_self_;
43
Elliott Hughes29f27422011-09-18 16:02:18 -070044static Class* gThrowable = NULL;
Elliott Hughes038a8062011-09-18 14:12:41 -070045static Field* gThread_daemon = NULL;
46static Field* gThread_group = NULL;
47static Field* gThread_lock = NULL;
48static Field* gThread_name = NULL;
49static Field* gThread_priority = NULL;
Elliott Hughes29f27422011-09-18 16:02:18 -070050static Field* gThread_uncaughtHandler = NULL;
Elliott Hughes038a8062011-09-18 14:12:41 -070051static Field* gThread_vmData = NULL;
52static Field* gThreadGroup_name = NULL;
53static Method* gThread_run = NULL;
Elliott Hughes29f27422011-09-18 16:02:18 -070054static Method* gThreadGroup_removeThread = NULL;
55static Method* gUncaughtExceptionHandler_uncaughtException = NULL;
Elliott Hughes038a8062011-09-18 14:12:41 -070056
buzbee4a3164f2011-09-03 11:25:10 -070057// Temporary debugging hook for compiler.
Elliott Hughesd369bb72011-09-12 14:41:14 -070058void DebugMe(Method* method, uint32_t info) {
Elliott Hughes01158d72011-09-19 19:47:10 -070059 LOG(INFO) << "DebugMe";
60 if (method != NULL) {
61 LOG(INFO) << PrettyMethod(method);
62 }
63 LOG(INFO) << "Info: " << info;
buzbee4a3164f2011-09-03 11:25:10 -070064}
65
Ian Rogersbdb03912011-09-14 00:55:44 -070066} // namespace art
67
68// Called by generated call to throw an exception
Ian Rogers67375ac2011-09-14 00:55:44 -070069extern "C" void artDeliverExceptionHelper(art::Throwable* exception,
70 art::Thread* thread,
71 art::Method** sp) {
Elliott Hughesd369bb72011-09-12 14:41:14 -070072 /*
73 * exception may be NULL, in which case this routine should
74 * throw NPE. NOTE: this is a convenience for generated code,
75 * which previously did the null check inline and constructed
76 * and threw a NPE if NULL. This routine responsible for setting
Ian Rogersbdb03912011-09-14 00:55:44 -070077 * exception_ in thread and delivering the exception.
Elliott Hughesd369bb72011-09-12 14:41:14 -070078 */
Ian Rogers67375ac2011-09-14 00:55:44 -070079 // Place a special frame at the TOS that will save all callee saves
Ian Rogersbdb03912011-09-14 00:55:44 -070080 *sp = thread->CalleeSaveMethod();
81 thread->SetTopOfStack(sp, 0);
Ian Rogers93dd9662011-09-17 23:21:22 -070082 if (exception == NULL) {
83 thread->ThrowNewException("Ljava/lang/NullPointerException;", "throw with null exception");
84 exception = thread->GetException();
85 }
Ian Rogersbdb03912011-09-14 00:55:44 -070086 thread->DeliverException(exception);
buzbee1b4c8592011-08-31 10:43:51 -070087}
88
Ian Rogers9651f422011-09-19 20:26:07 -070089// Called by generated call to throw a NPE exception
90extern "C" void artThrowNullPointerExceptionFromCodeHelper(art::Thread* thread,
91 art::Method** sp) {
92 // Place a special frame at the TOS that will save all callee saves
93 *sp = thread->CalleeSaveMethod();
94 thread->SetTopOfStack(sp, 0);
95 thread->ThrowNewException("Ljava/lang/NullPointerException;", "unexpected null reference");
96 art::Throwable* exception = thread->GetException();
97 thread->DeliverException(exception);
98}
99
100// Called by generated call to throw an arithmetic divide by zero exception
101extern "C" void artThrowDivZeroFromCodeHelper(art::Thread* thread,
102 art::Method** sp) {
103 // Place a special frame at the TOS that will save all callee saves
104 *sp = thread->CalleeSaveMethod();
105 thread->SetTopOfStack(sp, 0);
106 thread->ThrowNewException("Ljava/lang/ArithmeticException;", "divide by zero");
107 art::Throwable* exception = thread->GetException();
108 thread->DeliverException(exception);
109}
110
111// Called by generated call to throw an arithmetic divide by zero exception
112extern "C" void artThrowArrayBoundsFromCodeHelper(int index, int limit,
113 art::Thread* thread,
114 art::Method** sp) {
115 // Place a special frame at the TOS that will save all callee saves
116 *sp = thread->CalleeSaveMethod();
117 thread->SetTopOfStack(sp, 0);
118 thread->ThrowNewException("Ljava/lang/ArrayIndexOutOfBoundsException;",
119 "length=%d; index=%d", limit, index);
120 art::Throwable* exception = thread->GetException();
121 thread->DeliverException(exception);
122}
123
Ian Rogersbdb03912011-09-14 00:55:44 -0700124namespace art {
125
buzbee1b4c8592011-08-31 10:43:51 -0700126// TODO: placeholder. Helper function to type
Elliott Hughesd369bb72011-09-12 14:41:14 -0700127Class* InitializeTypeFromCode(uint32_t type_idx, Method* method) {
buzbee1b4c8592011-08-31 10:43:51 -0700128 /*
129 * Should initialize & fix up method->dex_cache_resolved_types_[].
130 * Returns initialized type. Does not return normally if an exception
131 * is thrown, but instead initiates the catch. Should be similar to
132 * ClassLinker::InitializeStaticStorageFromCode.
133 */
134 UNIMPLEMENTED(FATAL);
135 return NULL;
136}
137
buzbee561227c2011-09-02 15:28:19 -0700138// TODO: placeholder. Helper function to resolve virtual method
Elliott Hughesd369bb72011-09-12 14:41:14 -0700139void ResolveMethodFromCode(Method* method, uint32_t method_idx) {
buzbee561227c2011-09-02 15:28:19 -0700140 /*
141 * Slow-path handler on invoke virtual method path in which
142 * base method is unresolved at compile-time. Doesn't need to
143 * return anything - just either ensure that
144 * method->dex_cache_resolved_methods_(method_idx) != NULL or
145 * throw and unwind. The caller will restart call sequence
146 * from the beginning.
147 */
148}
149
buzbee1da522d2011-09-04 11:22:20 -0700150// TODO: placeholder. Helper function to alloc array for OP_FILLED_NEW_ARRAY
Elliott Hughesd369bb72011-09-12 14:41:14 -0700151Array* CheckAndAllocFromCode(uint32_t type_index, Method* method, int32_t component_count) {
buzbee1da522d2011-09-04 11:22:20 -0700152 /*
153 * Just a wrapper around Array::AllocFromCode() that additionally
154 * throws a runtime exception "bad Filled array req" for 'D' and 'J'.
155 */
156 UNIMPLEMENTED(WARNING) << "Need check that not 'D' or 'J'";
157 return Array::AllocFromCode(type_index, method, component_count);
158}
159
buzbee2a475e72011-09-07 17:19:17 -0700160// TODO: placeholder (throw on failure)
Elliott Hughesd369bb72011-09-12 14:41:14 -0700161void CheckCastFromCode(const Class* a, const Class* b) {
Brian Carlstromc2282522011-09-17 10:33:14 -0700162 DCHECK(a->IsClass());
163 DCHECK(b->IsClass());
164 if (b->IsAssignableFrom(a)) {
165 return;
166 }
167 UNIMPLEMENTED(FATAL);
buzbee2a475e72011-09-07 17:19:17 -0700168}
169
Elliott Hughesd369bb72011-09-12 14:41:14 -0700170void UnlockObjectFromCode(Thread* thread, Object* obj) {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700171 // TODO: throw and unwind if lock not held
172 // TODO: throw and unwind on NPE
173 obj->MonitorExit(thread);
buzbee2a475e72011-09-07 17:19:17 -0700174}
175
Elliott Hughesd369bb72011-09-12 14:41:14 -0700176void LockObjectFromCode(Thread* thread, Object* obj) {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700177 obj->MonitorEnter(thread);
178 // TODO: throw and unwind on failure.
buzbee2a475e72011-09-07 17:19:17 -0700179}
180
buzbeec1f45042011-09-21 16:03:19 -0700181extern "C" void artCheckSuspendFromCode(Thread* thread) {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700182 Runtime::Current()->GetThreadList()->FullSuspendCheck(thread);
buzbee0d966cf2011-09-08 17:34:58 -0700183}
184
buzbeecefd1872011-09-09 09:59:52 -0700185// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700186void StackOverflowFromCode(Method* method) {
Brian Carlstromfa3baf72011-09-18 15:44:15 -0700187 Thread::Current()->SetTopOfStackPC(reinterpret_cast<uintptr_t>(__builtin_return_address(0)));
Brian Carlstrom16192862011-09-12 17:50:06 -0700188 Thread::Current()->Dump(std::cerr);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700189 //NOTE: to save code space, this handler needs to look up its own Thread*
190 UNIMPLEMENTED(FATAL) << "Stack overflow: " << PrettyMethod(method);
buzbeecefd1872011-09-09 09:59:52 -0700191}
192
buzbee5ade1d22011-09-09 14:44:52 -0700193// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700194void ThrowNullPointerFromCode() {
Brian Carlstromfa3baf72011-09-18 15:44:15 -0700195 Thread::Current()->SetTopOfStackPC(reinterpret_cast<uintptr_t>(__builtin_return_address(0)));
Elliott Hughesd369bb72011-09-12 14:41:14 -0700196 Thread::Current()->Dump(std::cerr);
197 //NOTE: to save code space, this handler must look up caller's Method*
198 UNIMPLEMENTED(FATAL) << "Null pointer exception";
buzbee5ade1d22011-09-09 14:44:52 -0700199}
200
201// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700202void ThrowDivZeroFromCode() {
203 UNIMPLEMENTED(FATAL) << "Divide by zero";
buzbee5ade1d22011-09-09 14:44:52 -0700204}
205
206// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700207void ThrowArrayBoundsFromCode(int32_t index, int32_t limit) {
208 UNIMPLEMENTED(FATAL) << "Bound check exception, idx: " << index << ", limit: " << limit;
buzbee5ade1d22011-09-09 14:44:52 -0700209}
210
211// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700212void ThrowVerificationErrorFromCode(int32_t src1, int32_t ref) {
buzbee5ade1d22011-09-09 14:44:52 -0700213 UNIMPLEMENTED(FATAL) << "Verification error, src1: " << src1 <<
214 " ref: " << ref;
215}
216
217// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700218void ThrowNegArraySizeFromCode(int32_t index) {
buzbee5ade1d22011-09-09 14:44:52 -0700219 UNIMPLEMENTED(FATAL) << "Negative array size: " << index;
220}
221
222// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700223void ThrowInternalErrorFromCode(int32_t errnum) {
buzbee5ade1d22011-09-09 14:44:52 -0700224 UNIMPLEMENTED(FATAL) << "Internal error: " << errnum;
225}
226
227// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700228void ThrowRuntimeExceptionFromCode(int32_t errnum) {
buzbee5ade1d22011-09-09 14:44:52 -0700229 UNIMPLEMENTED(FATAL) << "Internal error: " << errnum;
230}
231
232// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700233void ThrowNoSuchMethodFromCode(int32_t method_idx) {
buzbee5ade1d22011-09-09 14:44:52 -0700234 UNIMPLEMENTED(FATAL) << "No such method, idx: " << method_idx;
235}
236
Ian Rogersbdb03912011-09-14 00:55:44 -0700237void ThrowAbstractMethodErrorFromCode(Method* method, Thread* thread) {
238 thread->ThrowNewException("Ljava/lang/AbstractMethodError",
239 "abstract method \"%s\"",
240 PrettyMethod(method).c_str());
241 thread->DeliverException(thread->GetException());
242}
243
244
buzbee5ade1d22011-09-09 14:44:52 -0700245/*
246 * Temporary placeholder. Should include run-time checks for size
247 * of fill data <= size of array. If not, throw arrayOutOfBoundsException.
248 * As with other new "FromCode" routines, this should return to the caller
249 * only if no exception has been thrown.
250 *
251 * NOTE: When dealing with a raw dex file, the data to be copied uses
252 * little-endian ordering. Require that oat2dex do any required swapping
253 * so this routine can get by with a memcpy().
254 *
255 * Format of the data:
256 * ushort ident = 0x0300 magic value
257 * ushort width width of each element in the table
258 * uint size number of elements in the table
259 * ubyte data[size*width] table of data values (may contain a single-byte
260 * padding at the end)
261 */
Elliott Hughesd369bb72011-09-12 14:41:14 -0700262void HandleFillArrayDataFromCode(Array* array, const uint16_t* table) {
buzbee5ade1d22011-09-09 14:44:52 -0700263 uint32_t size = (uint32_t)table[2] | (((uint32_t)table[3]) << 16);
264 uint32_t size_in_bytes = size * table[1];
265 if (static_cast<int32_t>(size) > array->GetLength()) {
266 ThrowArrayBoundsFromCode(array->GetLength(), size);
267 }
268 memcpy((char*)array + art::Array::DataOffset().Int32Value(),
269 (char*)&table[4], size_in_bytes);
270}
271
Brian Carlstrom16192862011-09-12 17:50:06 -0700272/*
273 * TODO: placeholder for a method that can be called by the
274 * invoke-interface trampoline to unwind and handle exception. The
275 * trampoline will arrange it so that the caller appears to be the
276 * callsite of the failed invoke-interface. See comments in
277 * runtime_support.S
278 */
279extern "C" void artFailedInvokeInterface() {
280 UNIMPLEMENTED(FATAL) << "Unimplemented exception throw";
281}
282
283// See comments in runtime_support.S
284extern "C" uint64_t artFindInterfaceMethodInCache(uint32_t method_idx,
285 Object* this_object , Method* caller_method)
286{
287 if (this_object == NULL) {
288 ThrowNullPointerFromCode();
289 }
290 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
291 Method* interface_method = class_linker->ResolveMethod(method_idx, caller_method, false);
292 if (interface_method == NULL) {
293 UNIMPLEMENTED(FATAL) << "Could not resolve interface method. Throw error and unwind";
294 }
295 Method* method = this_object->GetClass()->FindVirtualMethodForInterface(interface_method);
296 const void* code = method->GetCode();
297
298 uint32_t method_uint = reinterpret_cast<uint32_t>(method);
299 uint64_t code_uint = reinterpret_cast<uint32_t>(code);
300 uint64_t result = ((code_uint << 32) | method_uint);
301 return result;
302}
303
buzbee5ade1d22011-09-09 14:44:52 -0700304// TODO: move to more appropriate location
305/*
306 * Float/double conversion requires clamping to min and max of integer form. If
307 * target doesn't support this normally, use these.
308 */
Elliott Hughesd369bb72011-09-12 14:41:14 -0700309int64_t D2L(double d) {
buzbee5ade1d22011-09-09 14:44:52 -0700310 static const double kMaxLong = (double)(int64_t)0x7fffffffffffffffULL;
311 static const double kMinLong = (double)(int64_t)0x8000000000000000ULL;
312 if (d >= kMaxLong)
313 return (int64_t)0x7fffffffffffffffULL;
314 else if (d <= kMinLong)
315 return (int64_t)0x8000000000000000ULL;
316 else if (d != d) // NaN case
317 return 0;
318 else
319 return (int64_t)d;
320}
321
Elliott Hughesd369bb72011-09-12 14:41:14 -0700322int64_t F2L(float f) {
buzbee5ade1d22011-09-09 14:44:52 -0700323 static const float kMaxLong = (float)(int64_t)0x7fffffffffffffffULL;
324 static const float kMinLong = (float)(int64_t)0x8000000000000000ULL;
325 if (f >= kMaxLong)
326 return (int64_t)0x7fffffffffffffffULL;
327 else if (f <= kMinLong)
328 return (int64_t)0x8000000000000000ULL;
329 else if (f != f) // NaN case
330 return 0;
331 else
332 return (int64_t)f;
333}
334
Brian Carlstrom16192862011-09-12 17:50:06 -0700335// Return value helper for jobject return types
336static Object* DecodeJObjectInThread(Thread* thread, jobject obj) {
337 return thread->DecodeJObject(obj);
338}
339
buzbee3ea4ec52011-08-22 17:37:19 -0700340void Thread::InitFunctionPointers() {
buzbee54330722011-08-23 16:46:55 -0700341#if defined(__arm__)
342 pShlLong = art_shl_long;
343 pShrLong = art_shr_long;
344 pUshrLong = art_ushr_long;
buzbee7b1b86d2011-08-26 18:59:10 -0700345 pIdiv = __aeabi_idiv;
346 pIdivmod = __aeabi_idivmod;
347 pI2f = __aeabi_i2f;
348 pF2iz = __aeabi_f2iz;
349 pD2f = __aeabi_d2f;
350 pF2d = __aeabi_f2d;
351 pD2iz = __aeabi_d2iz;
352 pL2f = __aeabi_l2f;
353 pL2d = __aeabi_l2d;
354 pFadd = __aeabi_fadd;
355 pFsub = __aeabi_fsub;
356 pFdiv = __aeabi_fdiv;
357 pFmul = __aeabi_fmul;
358 pFmodf = fmodf;
359 pDadd = __aeabi_dadd;
360 pDsub = __aeabi_dsub;
361 pDdiv = __aeabi_ddiv;
362 pDmul = __aeabi_dmul;
363 pFmod = fmod;
buzbee7b1b86d2011-08-26 18:59:10 -0700364 pLdivmod = __aeabi_ldivmod;
buzbee439c4fa2011-08-27 15:59:07 -0700365 pLmul = __aeabi_lmul;
Ian Rogers9651f422011-09-19 20:26:07 -0700366 pThrowNullPointerFromCode = art_throw_null_pointer_exception_from_code;
367 pThrowArrayBoundsFromCode = art_throw_array_bounds_from_code;
368 pThrowDivZeroFromCode = art_throw_div_zero_from_code;
buzbee4a3164f2011-09-03 11:25:10 -0700369 pInvokeInterfaceTrampoline = art_invoke_interface_trampoline;
buzbeec1f45042011-09-21 16:03:19 -0700370 pTestSuspendFromCode = art_test_suspend;
Ian Rogers67375ac2011-09-14 00:55:44 -0700371#endif
Ian Rogers67375ac2011-09-14 00:55:44 -0700372 pDeliverException = art_deliver_exception;
buzbeec396efc2011-09-11 09:36:41 -0700373 pF2l = F2L;
374 pD2l = D2L;
buzbeedfd3d702011-08-28 12:56:51 -0700375 pAllocFromCode = Array::AllocFromCode;
buzbee1da522d2011-09-04 11:22:20 -0700376 pCheckAndAllocFromCode = CheckAndAllocFromCode;
Brian Carlstrom1f870082011-08-23 16:02:11 -0700377 pAllocObjectFromCode = Class::AllocObjectFromCode;
buzbee3ea4ec52011-08-22 17:37:19 -0700378 pMemcpy = memcpy;
buzbee1b4c8592011-08-31 10:43:51 -0700379 pHandleFillArrayDataFromCode = HandleFillArrayDataFromCode;
buzbeee1931742011-08-28 21:15:53 -0700380 pGet32Static = Field::Get32StaticFromCode;
381 pSet32Static = Field::Set32StaticFromCode;
382 pGet64Static = Field::Get64StaticFromCode;
383 pSet64Static = Field::Set64StaticFromCode;
384 pGetObjStatic = Field::GetObjStaticFromCode;
385 pSetObjStatic = Field::SetObjStaticFromCode;
buzbee1b4c8592011-08-31 10:43:51 -0700386 pCanPutArrayElementFromCode = Class::CanPutArrayElementFromCode;
buzbee1b4c8592011-08-31 10:43:51 -0700387 pInitializeTypeFromCode = InitializeTypeFromCode;
buzbee561227c2011-09-02 15:28:19 -0700388 pResolveMethodFromCode = ResolveMethodFromCode;
buzbee1da522d2011-09-04 11:22:20 -0700389 pInitializeStaticStorage = ClassLinker::InitializeStaticStorageFromCode;
buzbee2a475e72011-09-07 17:19:17 -0700390 pInstanceofNonTrivialFromCode = Object::InstanceOf;
391 pCheckCastFromCode = CheckCastFromCode;
392 pLockObjectFromCode = LockObjectFromCode;
393 pUnlockObjectFromCode = UnlockObjectFromCode;
Brian Carlstrom845490b2011-09-19 15:56:53 -0700394 pFindInstanceFieldFromCode = Field::FindInstanceFieldFromCode;
buzbeec1f45042011-09-21 16:03:19 -0700395 pCheckSuspendFromCode = artCheckSuspendFromCode;
buzbeecefd1872011-09-09 09:59:52 -0700396 pStackOverflowFromCode = StackOverflowFromCode;
buzbee5ade1d22011-09-09 14:44:52 -0700397 pThrowVerificationErrorFromCode = ThrowVerificationErrorFromCode;
398 pThrowNegArraySizeFromCode = ThrowNegArraySizeFromCode;
399 pThrowRuntimeExceptionFromCode = ThrowRuntimeExceptionFromCode;
400 pThrowInternalErrorFromCode = ThrowInternalErrorFromCode;
401 pThrowNoSuchMethodFromCode = ThrowNoSuchMethodFromCode;
Ian Rogersbdb03912011-09-14 00:55:44 -0700402 pThrowAbstractMethodErrorFromCode = ThrowAbstractMethodErrorFromCode;
Brian Carlstrom16192862011-09-12 17:50:06 -0700403 pFindNativeMethod = FindNativeMethod;
404 pDecodeJObjectInThread = DecodeJObjectInThread;
buzbee4a3164f2011-09-03 11:25:10 -0700405 pDebugMe = DebugMe;
buzbee3ea4ec52011-08-22 17:37:19 -0700406}
407
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700408void Frame::Next() {
Ian Rogers67375ac2011-09-14 00:55:44 -0700409 size_t frame_size = GetMethod()->GetFrameSizeInBytes();
410 DCHECK_NE(frame_size, 0u);
411 DCHECK_LT(frame_size, 1024u);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700412 byte* next_sp = reinterpret_cast<byte*>(sp_) +
Ian Rogers67375ac2011-09-14 00:55:44 -0700413 frame_size;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700414 sp_ = reinterpret_cast<Method**>(next_sp);
Ian Rogers67375ac2011-09-14 00:55:44 -0700415 DCHECK(*sp_ == NULL ||
416 (*sp_)->GetClass()->GetDescriptor()->Equals("Ljava/lang/reflect/Method;"));
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700417}
418
Ian Rogers90865722011-09-19 11:11:44 -0700419bool Frame::HasMethod() const {
420 return GetMethod() != NULL && (!GetMethod()->IsPhony());
421}
422
Ian Rogersbdb03912011-09-14 00:55:44 -0700423uintptr_t Frame::GetReturnPC() const {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700424 byte* pc_addr = reinterpret_cast<byte*>(sp_) +
Shih-wei Liaod11af152011-08-23 16:02:11 -0700425 GetMethod()->GetReturnPcOffsetInBytes();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700426 return *reinterpret_cast<uintptr_t*>(pc_addr);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700427}
428
Ian Rogersbdb03912011-09-14 00:55:44 -0700429uintptr_t Frame::LoadCalleeSave(int num) const {
430 // Callee saves are held at the top of the frame
431 Method* method = GetMethod();
432 DCHECK(method != NULL);
433 size_t frame_size = method->GetFrameSizeInBytes();
434 byte* save_addr = reinterpret_cast<byte*>(sp_) + frame_size -
435 ((num + 1) * kPointerSize);
Ian Rogers67375ac2011-09-14 00:55:44 -0700436#if defined(__i386__)
437 save_addr -= kPointerSize; // account for return address
438#endif
Ian Rogersbdb03912011-09-14 00:55:44 -0700439 return *reinterpret_cast<uintptr_t*>(save_addr);
440}
441
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700442Method* Frame::NextMethod() const {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700443 byte* next_sp = reinterpret_cast<byte*>(sp_) +
Shih-wei Liaod11af152011-08-23 16:02:11 -0700444 GetMethod()->GetFrameSizeInBytes();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700445 return *reinterpret_cast<Method**>(next_sp);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700446}
447
Brian Carlstrom78128a62011-09-15 17:21:19 -0700448void* Thread::CreateCallback(void* arg) {
Elliott Hughes93e74e82011-09-13 11:07:03 -0700449 Thread* self = reinterpret_cast<Thread*>(arg);
450 Runtime* runtime = Runtime::Current();
451
452 self->Attach(runtime);
453
Elliott Hughes038a8062011-09-18 14:12:41 -0700454 String* thread_name = reinterpret_cast<String*>(gThread_name->GetObject(self->peer_));
Elliott Hughes93e74e82011-09-13 11:07:03 -0700455 if (thread_name != NULL) {
456 SetThreadName(thread_name->ToModifiedUtf8().c_str());
457 }
458
459 // Wait until it's safe to start running code. (There may have been a suspend-all
460 // in progress while we were starting up.)
461 runtime->GetThreadList()->WaitForGo();
462
463 // TODO: say "hi" to the debugger.
464 //if (gDvm.debuggerConnected) {
465 // dvmDbgPostThreadStart(self);
466 //}
467
468 // Invoke the 'run' method of our java.lang.Thread.
469 CHECK(self->peer_ != NULL);
470 Object* receiver = self->peer_;
Elliott Hughes038a8062011-09-18 14:12:41 -0700471 Method* m = receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(gThread_run);
Elliott Hughes93e74e82011-09-13 11:07:03 -0700472 m->Invoke(self, receiver, NULL, NULL);
473
474 // Detach.
475 runtime->GetThreadList()->Unregister();
476
Carl Shapirob5573532011-07-12 18:22:59 -0700477 return NULL;
478}
479
Elliott Hughes93e74e82011-09-13 11:07:03 -0700480void SetVmData(Object* managed_thread, Thread* native_thread) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700481 gThread_vmData->SetInt(managed_thread, reinterpret_cast<uintptr_t>(native_thread));
Elliott Hughes93e74e82011-09-13 11:07:03 -0700482}
483
Elliott Hughes01158d72011-09-19 19:47:10 -0700484Thread* Thread::FromManagedThread(JNIEnv* env, jobject java_thread) {
485 Object* thread = Decode<Object*>(env, java_thread);
486 return reinterpret_cast<Thread*>(static_cast<uintptr_t>(gThread_vmData->GetInt(thread)));
487}
488
Elliott Hughesd369bb72011-09-12 14:41:14 -0700489void Thread::Create(Object* peer, size_t stack_size) {
490 CHECK(peer != NULL);
Elliott Hughesdcc24742011-09-07 14:02:44 -0700491
Elliott Hughesd369bb72011-09-12 14:41:14 -0700492 if (stack_size == 0) {
493 stack_size = Runtime::Current()->GetDefaultStackSize();
494 }
Carl Shapiro61e019d2011-07-14 16:53:09 -0700495
Elliott Hughes93e74e82011-09-13 11:07:03 -0700496 Thread* native_thread = new Thread;
497 native_thread->peer_ = peer;
498
499 // Thread.start is synchronized, so we know that vmData is 0,
500 // and know that we're not racing to assign it.
501 SetVmData(peer, native_thread);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700502
503 pthread_attr_t attr;
Elliott Hughes8d768a92011-09-14 16:35:25 -0700504 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new thread");
505 CHECK_PTHREAD_CALL(pthread_attr_setdetachstate, (&attr, PTHREAD_CREATE_DETACHED), "PTHREAD_CREATE_DETACHED");
506 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), stack_size);
507 CHECK_PTHREAD_CALL(pthread_create, (&native_thread->pthread_, &attr, Thread::CreateCallback, native_thread), "new thread");
508 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new thread");
Elliott Hughes93e74e82011-09-13 11:07:03 -0700509
510 // Let the child know when it's safe to start running.
511 Runtime::Current()->GetThreadList()->SignalGo(native_thread);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700512}
513
Elliott Hughes93e74e82011-09-13 11:07:03 -0700514void Thread::Attach(const Runtime* runtime) {
515 InitCpu();
516 InitFunctionPointers();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700517
Elliott Hughes93e74e82011-09-13 11:07:03 -0700518 thin_lock_id_ = Runtime::Current()->GetThreadList()->AllocThreadId();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700519
Elliott Hughes93e74e82011-09-13 11:07:03 -0700520 tid_ = ::art::GetTid();
521 pthread_ = pthread_self();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700522
Elliott Hughes93e74e82011-09-13 11:07:03 -0700523 InitStackHwm();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700524
Elliott Hughes8d768a92011-09-14 16:35:25 -0700525 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach");
Elliott Hughesa5780da2011-07-17 11:39:39 -0700526
Elliott Hughes93e74e82011-09-13 11:07:03 -0700527 jni_env_ = new JNIEnvExt(this, runtime->GetJavaVM());
Elliott Hughes330304d2011-08-12 14:28:05 -0700528
Elliott Hughes93e74e82011-09-13 11:07:03 -0700529 runtime->GetThreadList()->Register(this);
530}
531
532Thread* Thread::Attach(const Runtime* runtime, const char* name, bool as_daemon) {
533 Thread* self = new Thread;
534 self->Attach(runtime);
535
536 self->SetState(Thread::kRunnable);
537
538 SetThreadName(name);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700539
540 // If we're the main thread, ClassLinker won't be created until after we're attached,
541 // so that thread needs a two-stage attach. Regular threads don't need this hack.
542 if (self->thin_lock_id_ != ThreadList::kMainId) {
543 self->CreatePeer(name, as_daemon);
544 }
545
546 return self;
547}
548
Elliott Hughesd369bb72011-09-12 14:41:14 -0700549jobject GetWellKnownThreadGroup(JNIEnv* env, const char* field_name) {
550 jclass thread_group_class = env->FindClass("java/lang/ThreadGroup");
551 jfieldID fid = env->GetStaticFieldID(thread_group_class, field_name, "Ljava/lang/ThreadGroup;");
552 jobject thread_group = env->GetStaticObjectField(thread_group_class, fid);
553 // This will be null in the compiler (and tests), but never in a running system.
554 //CHECK(thread_group != NULL) << "java.lang.ThreadGroup." << field_name << " not initialized";
555 return thread_group;
556}
557
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700558void Thread::CreatePeer(const char* name, bool as_daemon) {
Elliott Hughes01158d72011-09-19 19:47:10 -0700559 Thread* self = Thread::Current();
560 ScopedThreadStateChange tsc(self, Thread::kNative);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700561
562 JNIEnv* env = jni_env_;
563
Elliott Hughesd369bb72011-09-12 14:41:14 -0700564 const char* field_name = (GetThinLockId() == ThreadList::kMainId) ? "mMain" : "mSystem";
565 jobject thread_group = GetWellKnownThreadGroup(env, field_name);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700566 jobject thread_name = env->NewStringUTF(name);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700567 jint thread_priority = GetNativePriority();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700568 jboolean thread_is_daemon = as_daemon;
569
570 jclass c = env->FindClass("java/lang/Thread");
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700571 jmethodID mid = env->GetMethodID(c, "<init>", "(Ljava/lang/ThreadGroup;Ljava/lang/String;IZ)V");
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700572
Elliott Hughes8daa0922011-09-11 13:46:25 -0700573 jobject peer = env->NewObject(c, mid, thread_group, thread_name, thread_priority, thread_is_daemon);
Elliott Hughes01158d72011-09-19 19:47:10 -0700574 peer_ = DecodeJObject(peer);
575 SetVmData(peer_, self);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700576
577 // Because we mostly run without code available (in the compiler, in tests), we
578 // manually assign the fields the constructor should have set.
579 // TODO: lose this.
Elliott Hughes01158d72011-09-19 19:47:10 -0700580 gThread_daemon->SetBoolean(peer_, thread_is_daemon);
581 gThread_group->SetObject(peer_, Decode<Object*>(env, thread_group));
582 gThread_name->SetObject(peer_, Decode<Object*>(env, thread_name));
583 gThread_priority->SetInt(peer_, thread_priority);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700584}
585
Elliott Hughesbe759c62011-09-08 19:38:21 -0700586void Thread::InitStackHwm() {
587 pthread_attr_t attributes;
Elliott Hughes8d768a92011-09-14 16:35:25 -0700588 CHECK_PTHREAD_CALL(pthread_getattr_np, (pthread_, &attributes), __FUNCTION__);
Elliott Hughesbe759c62011-09-08 19:38:21 -0700589
Elliott Hughesbe759c62011-09-08 19:38:21 -0700590 void* stack_base;
591 size_t stack_size;
Elliott Hughes8d768a92011-09-14 16:35:25 -0700592 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, &stack_base, &stack_size), __FUNCTION__);
Elliott Hughesbe759c62011-09-08 19:38:21 -0700593
Elliott Hughesbe759c62011-09-08 19:38:21 -0700594 if (stack_size <= kStackOverflowReservedBytes) {
595 LOG(FATAL) << "attempt to attach a thread with a too-small stack (" << stack_size << " bytes)";
596 }
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700597
598 // stack_base is the "lowest addressable byte" of the stack.
599 // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room
600 // to throw a StackOverflowError.
buzbeecefd1872011-09-09 09:59:52 -0700601 stack_end_ = reinterpret_cast<byte*>(stack_base) + kStackOverflowReservedBytes;
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700602
603 // Sanity check.
604 int stack_variable;
605 CHECK_GT(&stack_variable, (void*) stack_end_);
Elliott Hughesbe759c62011-09-08 19:38:21 -0700606
Elliott Hughes8d768a92011-09-14 16:35:25 -0700607 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__);
Elliott Hughesbe759c62011-09-08 19:38:21 -0700608}
609
Elliott Hughesa0957642011-09-02 14:27:33 -0700610void Thread::Dump(std::ostream& os) const {
Elliott Hughesd92bec42011-09-02 17:04:36 -0700611 DumpState(os);
612 DumpStack(os);
Elliott Hughesa0957642011-09-02 14:27:33 -0700613}
614
Elliott Hughesd92bec42011-09-02 17:04:36 -0700615std::string GetSchedulerGroup(pid_t tid) {
616 // /proc/<pid>/group looks like this:
617 // 2:devices:/
618 // 1:cpuacct,cpu:/
619 // We want the third field from the line whose second field contains the "cpu" token.
620 std::string cgroup_file;
621 if (!ReadFileToString("/proc/self/cgroup", &cgroup_file)) {
622 return "";
623 }
624 std::vector<std::string> cgroup_lines;
625 Split(cgroup_file, '\n', cgroup_lines);
626 for (size_t i = 0; i < cgroup_lines.size(); ++i) {
627 std::vector<std::string> cgroup_fields;
628 Split(cgroup_lines[i], ':', cgroup_fields);
629 std::vector<std::string> cgroups;
630 Split(cgroup_fields[1], ',', cgroups);
631 for (size_t i = 0; i < cgroups.size(); ++i) {
632 if (cgroups[i] == "cpu") {
633 return cgroup_fields[2].substr(1); // Skip the leading slash.
634 }
635 }
636 }
637 return "";
638}
639
640void Thread::DumpState(std::ostream& os) const {
Elliott Hughesd369bb72011-09-12 14:41:14 -0700641 std::string thread_name("<native thread without managed peer>");
642 std::string group_name;
643 int priority;
644 bool is_daemon = false;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700645
Elliott Hughesd369bb72011-09-12 14:41:14 -0700646 if (peer_ != NULL) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700647 String* thread_name_string = reinterpret_cast<String*>(gThread_name->GetObject(peer_));
Elliott Hughesd369bb72011-09-12 14:41:14 -0700648 thread_name = (thread_name_string != NULL) ? thread_name_string->ToModifiedUtf8() : "<null>";
Elliott Hughes038a8062011-09-18 14:12:41 -0700649 priority = gThread_priority->GetInt(peer_);
650 is_daemon = gThread_daemon->GetBoolean(peer_);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700651
Elliott Hughes038a8062011-09-18 14:12:41 -0700652 Object* thread_group = gThread_group->GetObject(peer_);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700653 if (thread_group != NULL) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700654 String* group_name_string = reinterpret_cast<String*>(gThreadGroup_name->GetObject(thread_group));
Elliott Hughesd369bb72011-09-12 14:41:14 -0700655 group_name = (group_name_string != NULL) ? group_name_string->ToModifiedUtf8() : "<null>";
656 }
657 } else {
658 // This name may be truncated, but it's the best we can do in the absence of a managed peer.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700659 std::string stats;
660 if (ReadFileToString(StringPrintf("/proc/self/task/%d/stat", GetTid()).c_str(), &stats)) {
661 size_t start = stats.find('(') + 1;
662 size_t end = stats.find(')') - start;
663 thread_name = stats.substr(start, end);
664 }
Elliott Hughesd369bb72011-09-12 14:41:14 -0700665 priority = GetNativePriority();
Elliott Hughesdcc24742011-09-07 14:02:44 -0700666 }
Elliott Hughesd92bec42011-09-02 17:04:36 -0700667
668 int policy;
669 sched_param sp;
Elliott Hughes8d768a92011-09-14 16:35:25 -0700670 CHECK_PTHREAD_CALL(pthread_getschedparam, (pthread_, &policy, &sp), __FUNCTION__);
Elliott Hughesd92bec42011-09-02 17:04:36 -0700671
672 std::string scheduler_group(GetSchedulerGroup(GetTid()));
673 if (scheduler_group.empty()) {
674 scheduler_group = "default";
675 }
676
Elliott Hughesd92bec42011-09-02 17:04:36 -0700677 os << '"' << thread_name << '"';
Elliott Hughesd369bb72011-09-12 14:41:14 -0700678 if (is_daemon) {
Elliott Hughesd92bec42011-09-02 17:04:36 -0700679 os << " daemon";
680 }
681 os << " prio=" << priority
Elliott Hughesdcc24742011-09-07 14:02:44 -0700682 << " tid=" << GetThinLockId()
Elliott Hughes93e74e82011-09-13 11:07:03 -0700683 << " " << GetState() << "\n";
Elliott Hughesd92bec42011-09-02 17:04:36 -0700684
Elliott Hughesd92bec42011-09-02 17:04:36 -0700685 int debug_suspend_count = 0; // TODO
Elliott Hughesd92bec42011-09-02 17:04:36 -0700686 os << " | group=\"" << group_name << "\""
Elliott Hughes8d768a92011-09-14 16:35:25 -0700687 << " sCount=" << suspend_count_
Elliott Hughesd92bec42011-09-02 17:04:36 -0700688 << " dsCount=" << debug_suspend_count
Elliott Hughesdcc24742011-09-07 14:02:44 -0700689 << " obj=" << reinterpret_cast<void*>(peer_)
Elliott Hughesd92bec42011-09-02 17:04:36 -0700690 << " self=" << reinterpret_cast<const void*>(this) << "\n";
691 os << " | sysTid=" << GetTid()
692 << " nice=" << getpriority(PRIO_PROCESS, GetTid())
693 << " sched=" << policy << "/" << sp.sched_priority
694 << " cgrp=" << scheduler_group
695 << " handle=" << GetImpl() << "\n";
696
697 // Grab the scheduler stats for this thread.
698 std::string scheduler_stats;
699 if (ReadFileToString(StringPrintf("/proc/self/task/%d/schedstat", GetTid()).c_str(), &scheduler_stats)) {
700 scheduler_stats.resize(scheduler_stats.size() - 1); // Lose the trailing '\n'.
701 } else {
702 scheduler_stats = "0 0 0";
703 }
704
705 int utime = 0;
706 int stime = 0;
707 int task_cpu = 0;
708 std::string stats;
709 if (ReadFileToString(StringPrintf("/proc/self/task/%d/stat", GetTid()).c_str(), &stats)) {
710 // Skip the command, which may contain spaces.
711 stats = stats.substr(stats.find(')') + 2);
712 // Extract the three fields we care about.
713 std::vector<std::string> fields;
714 Split(stats, ' ', fields);
715 utime = strtoull(fields[11].c_str(), NULL, 10);
716 stime = strtoull(fields[12].c_str(), NULL, 10);
717 task_cpu = strtoull(fields[36].c_str(), NULL, 10);
718 }
719
720 os << " | schedstat=( " << scheduler_stats << " )"
721 << " utm=" << utime
722 << " stm=" << stime
723 << " core=" << task_cpu
724 << " HZ=" << sysconf(_SC_CLK_TCK) << "\n";
725}
726
Elliott Hughesd369bb72011-09-12 14:41:14 -0700727struct StackDumpVisitor : public Thread::StackVisitor {
728 StackDumpVisitor(std::ostream& os) : os(os) {
729 }
730
Ian Rogersbdb03912011-09-14 00:55:44 -0700731 virtual ~StackDumpVisitor() {
Elliott Hughesd369bb72011-09-12 14:41:14 -0700732 }
733
Ian Rogersbdb03912011-09-14 00:55:44 -0700734 void VisitFrame(const Frame& frame, uintptr_t pc) {
Ian Rogers90865722011-09-19 11:11:44 -0700735 if (!frame.HasMethod()) {
736 return;
737 }
Elliott Hughesd369bb72011-09-12 14:41:14 -0700738 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
739
740 Method* m = frame.GetMethod();
741 Class* c = m->GetDeclaringClass();
742 const DexFile& dex_file = class_linker->FindDexFile(c->GetDexCache());
743
744 os << " at " << PrettyMethod(m, false);
745 if (m->IsNative()) {
746 os << "(Native method)";
747 } else {
Ian Rogersbdb03912011-09-14 00:55:44 -0700748 int line_number = dex_file.GetLineNumFromPC(m, m->ToDexPC(pc));
Elliott Hughesd369bb72011-09-12 14:41:14 -0700749 os << "(" << c->GetSourceFile()->ToModifiedUtf8() << ":" << line_number << ")";
750 }
751 os << "\n";
752 }
753
754 std::ostream& os;
755};
756
Elliott Hughesd92bec42011-09-02 17:04:36 -0700757void Thread::DumpStack(std::ostream& os) const {
Elliott Hughesd369bb72011-09-12 14:41:14 -0700758 StackDumpVisitor dumper(os);
759 WalkStack(&dumper);
Elliott Hughese27955c2011-08-26 15:21:24 -0700760}
761
Elliott Hughes8d768a92011-09-14 16:35:25 -0700762Thread::State Thread::SetState(Thread::State new_state) {
763 Thread::State old_state = state_;
764 if (old_state == new_state) {
765 return old_state;
766 }
767
768 volatile void* raw = reinterpret_cast<volatile void*>(&state_);
769 volatile int32_t* addr = reinterpret_cast<volatile int32_t*>(raw);
770
771 if (new_state == Thread::kRunnable) {
772 /*
773 * Change our status to Thread::kRunnable. The transition requires
774 * that we check for pending suspension, because the VM considers
775 * us to be "asleep" in all other states, and another thread could
776 * be performing a GC now.
777 *
778 * The order of operations is very significant here. One way to
779 * do this wrong is:
780 *
781 * GCing thread Our thread (in kNative)
782 * ------------ ----------------------
783 * check suspend count (== 0)
784 * SuspendAllThreads()
785 * grab suspend-count lock
786 * increment all suspend counts
787 * release suspend-count lock
788 * check thread state (== kNative)
789 * all are suspended, begin GC
790 * set state to kRunnable
791 * (continue executing)
792 *
793 * We can correct this by grabbing the suspend-count lock and
794 * performing both of our operations (check suspend count, set
795 * state) while holding it, now we need to grab a mutex on every
796 * transition to kRunnable.
797 *
798 * What we do instead is change the order of operations so that
799 * the transition to kRunnable happens first. If we then detect
800 * that the suspend count is nonzero, we switch to kSuspended.
801 *
802 * Appropriate compiler and memory barriers are required to ensure
803 * that the operations are observed in the expected order.
804 *
805 * This does create a small window of opportunity where a GC in
806 * progress could observe what appears to be a running thread (if
807 * it happens to look between when we set to kRunnable and when we
808 * switch to kSuspended). At worst this only affects assertions
809 * and thread logging. (We could work around it with some sort
810 * of intermediate "pre-running" state that is generally treated
811 * as equivalent to running, but that doesn't seem worthwhile.)
812 *
813 * We can also solve this by combining the "status" and "suspend
814 * count" fields into a single 32-bit value. This trades the
815 * store/load barrier on transition to kRunnable for an atomic RMW
816 * op on all transitions and all suspend count updates (also, all
817 * accesses to status or the thread count require bit-fiddling).
818 * It also eliminates the brief transition through kRunnable when
819 * the thread is supposed to be suspended. This is possibly faster
820 * on SMP and slightly more correct, but less convenient.
821 */
822 android_atomic_acquire_store(new_state, addr);
823 if (ANNOTATE_UNPROTECTED_READ(suspend_count_) != 0) {
824 Runtime::Current()->GetThreadList()->FullSuspendCheck(this);
825 }
826 } else {
827 /*
828 * Not changing to Thread::kRunnable. No additional work required.
829 *
830 * We use a releasing store to ensure that, if we were runnable,
831 * any updates we previously made to objects on the managed heap
832 * will be observed before the state change.
833 */
834 android_atomic_release_store(new_state, addr);
835 }
836
837 return old_state;
838}
839
840void Thread::WaitUntilSuspended() {
841 // TODO: dalvik dropped the waiting thread's priority after a while.
842 // TODO: dalvik timed out and aborted.
843 useconds_t delay = 0;
844 while (GetState() == Thread::kRunnable) {
845 useconds_t new_delay = delay * 2;
846 CHECK_GE(new_delay, delay);
847 delay = new_delay;
848 if (delay == 0) {
849 sched_yield();
850 delay = 10000;
851 } else {
852 usleep(delay);
853 }
854 }
855}
856
Elliott Hughesbe759c62011-09-08 19:38:21 -0700857void Thread::ThreadExitCallback(void* arg) {
858 Thread* self = reinterpret_cast<Thread*>(arg);
859 LOG(FATAL) << "Native thread exited without calling DetachCurrentThread: " << *self;
Carl Shapirob5573532011-07-12 18:22:59 -0700860}
861
Elliott Hughesbe759c62011-09-08 19:38:21 -0700862void Thread::Startup() {
Carl Shapirob5573532011-07-12 18:22:59 -0700863 // Allocate a TLS slot.
Elliott Hughes8d768a92011-09-14 16:35:25 -0700864 CHECK_PTHREAD_CALL(pthread_key_create, (&Thread::pthread_key_self_, Thread::ThreadExitCallback), "self key");
Carl Shapirob5573532011-07-12 18:22:59 -0700865
866 // Double-check the TLS slot allocation.
867 if (pthread_getspecific(pthread_key_self_) != NULL) {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700868 LOG(FATAL) << "newly-created pthread TLS slot is not NULL";
Carl Shapirob5573532011-07-12 18:22:59 -0700869 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700870}
Carl Shapirob5573532011-07-12 18:22:59 -0700871
Elliott Hughes038a8062011-09-18 14:12:41 -0700872void Thread::FinishStartup() {
Elliott Hughes038a8062011-09-18 14:12:41 -0700873 // Now the ClassLinker is ready, we can find the various Class*, Field*, and Method*s we need.
874 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
875 Class* boolean_class = class_linker->FindPrimitiveClass('Z');
876 Class* int_class = class_linker->FindPrimitiveClass('I');
877 Class* String_class = class_linker->FindSystemClass("Ljava/lang/String;");
878 Class* Thread_class = class_linker->FindSystemClass("Ljava/lang/Thread;");
879 Class* ThreadGroup_class = class_linker->FindSystemClass("Ljava/lang/ThreadGroup;");
880 Class* ThreadLock_class = class_linker->FindSystemClass("Ljava/lang/ThreadLock;");
Elliott Hughes29f27422011-09-18 16:02:18 -0700881 Class* UncaughtExceptionHandler_class = class_linker->FindSystemClass("Ljava/lang/Thread$UncaughtExceptionHandler;");
882 gThrowable = class_linker->FindSystemClass("Ljava/lang/Throwable;");
Elliott Hughes038a8062011-09-18 14:12:41 -0700883 gThread_daemon = Thread_class->FindDeclaredInstanceField("daemon", boolean_class);
884 gThread_group = Thread_class->FindDeclaredInstanceField("group", ThreadGroup_class);
885 gThread_lock = Thread_class->FindDeclaredInstanceField("lock", ThreadLock_class);
886 gThread_name = Thread_class->FindDeclaredInstanceField("name", String_class);
887 gThread_priority = Thread_class->FindDeclaredInstanceField("priority", int_class);
888 gThread_run = Thread_class->FindVirtualMethod("run", "()V");
Elliott Hughes29f27422011-09-18 16:02:18 -0700889 gThread_uncaughtHandler = Thread_class->FindDeclaredInstanceField("uncaughtHandler", UncaughtExceptionHandler_class);
Elliott Hughes038a8062011-09-18 14:12:41 -0700890 gThread_vmData = Thread_class->FindDeclaredInstanceField("vmData", int_class);
891 gThreadGroup_name = ThreadGroup_class->FindDeclaredInstanceField("name", String_class);
Elliott Hughes29f27422011-09-18 16:02:18 -0700892 gThreadGroup_removeThread = ThreadGroup_class->FindVirtualMethod("removeThread", "(Ljava/lang/Thread;)V");
893 gUncaughtExceptionHandler_uncaughtException =
894 UncaughtExceptionHandler_class->FindVirtualMethod("uncaughtException", "(Ljava/lang/Thread;Ljava/lang/Throwable;)V");
Elliott Hughes01158d72011-09-19 19:47:10 -0700895
896 // Finish attaching the main thread.
897 Thread::Current()->CreatePeer("main", false);
Carl Shapirob5573532011-07-12 18:22:59 -0700898}
899
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700900void Thread::Shutdown() {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700901 CHECK_PTHREAD_CALL(pthread_key_delete, (Thread::pthread_key_self_), "self key");
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700902}
903
Elliott Hughesdcc24742011-09-07 14:02:44 -0700904Thread::Thread()
Elliott Hughes02b48d12011-09-07 17:15:51 -0700905 : peer_(NULL),
Elliott Hughes85d15452011-09-16 17:33:01 -0700906 wait_mutex_(new Mutex("Thread wait mutex")),
907 wait_cond_(new ConditionVariable("Thread wait condition variable")),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700908 wait_monitor_(NULL),
909 interrupted_(false),
Elliott Hughesdc33ad52011-09-16 19:46:51 -0700910 wait_next_(NULL),
911 card_table_(0),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700912 stack_end_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700913 top_of_managed_stack_(),
Elliott Hughesdc33ad52011-09-16 19:46:51 -0700914 top_of_managed_stack_pc_(0),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700915 native_to_managed_record_(NULL),
916 top_sirt_(NULL),
917 jni_env_(NULL),
Elliott Hughes93e74e82011-09-13 11:07:03 -0700918 state_(Thread::kUnknown),
Elliott Hughesdc33ad52011-09-16 19:46:51 -0700919 self_(NULL),
920 runtime_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700921 exception_(NULL),
922 suspend_count_(0),
Elliott Hughes85d15452011-09-16 17:33:01 -0700923 class_loader_override_(NULL),
924 long_jump_context_(NULL) {
Elliott Hughesdcc24742011-09-07 14:02:44 -0700925}
926
Elliott Hughes02b48d12011-09-07 17:15:51 -0700927void MonitorExitVisitor(const Object* object, void*) {
928 Object* entered_monitor = const_cast<Object*>(object);
Elliott Hughes5f791332011-09-15 17:45:30 -0700929 entered_monitor->MonitorExit(Thread::Current());
Elliott Hughes02b48d12011-09-07 17:15:51 -0700930}
931
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700932Thread::~Thread() {
Elliott Hughes02b48d12011-09-07 17:15:51 -0700933 // On thread detach, all monitors entered with JNI MonitorEnter are automatically exited.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700934 if (jni_env_ != NULL) {
935 jni_env_->monitors.VisitRoots(MonitorExitVisitor, NULL);
936 }
Elliott Hughes02b48d12011-09-07 17:15:51 -0700937
Elliott Hughes93e74e82011-09-13 11:07:03 -0700938 if (peer_ != NULL) {
Elliott Hughes29f27422011-09-18 16:02:18 -0700939 Object* group = gThread_group->GetObject(peer_);
940
941 // Handle any pending exception.
942 if (IsExceptionPending()) {
943 // Get and clear the exception.
944 Object* exception = GetException();
945 ClearException();
946
947 // If the thread has its own handler, use that.
948 Object* handler = gThread_uncaughtHandler->GetObject(peer_);
949 if (handler == NULL) {
950 // Otherwise use the thread group's default handler.
951 handler = group;
952 }
953
954 // Call the handler.
955 Method* m = handler->GetClass()->FindVirtualMethodForVirtualOrInterface(gUncaughtExceptionHandler_uncaughtException);
956 Object* args[2];
957 args[0] = peer_;
958 args[1] = exception;
959 m->Invoke(this, handler, reinterpret_cast<byte*>(&args), NULL);
960
961 // If the handler threw, clear that exception too.
962 ClearException();
963 }
964
965 // this.group.removeThread(this);
Elliott Hughes081be7f2011-09-18 16:50:26 -0700966 // group can be null if we're in the compiler or a test.
967 if (group != NULL) {
968 Method* m = group->GetClass()->FindVirtualMethodForVirtualOrInterface(gThreadGroup_removeThread);
969 Object* args = peer_;
970 m->Invoke(this, group, reinterpret_cast<byte*>(&args), NULL);
971 }
Elliott Hughes29f27422011-09-18 16:02:18 -0700972
973 // this.vmData = 0;
Elliott Hughes93e74e82011-09-13 11:07:03 -0700974 SetVmData(peer_, NULL);
Elliott Hughes02b48d12011-09-07 17:15:51 -0700975
Elliott Hughes29f27422011-09-18 16:02:18 -0700976 // TODO: say "bye" to the debugger.
977 //if (gDvm.debuggerConnected) {
978 // dvmDbgPostThreadDeath(self);
979 //}
Elliott Hughes02b48d12011-09-07 17:15:51 -0700980
Elliott Hughes29f27422011-09-18 16:02:18 -0700981 // Thread.join() is implemented as an Object.wait() on the Thread.lock
982 // object. Signal anyone who is waiting.
Elliott Hughes5f791332011-09-15 17:45:30 -0700983 Thread* self = Thread::Current();
Elliott Hughes038a8062011-09-18 14:12:41 -0700984 Object* lock = gThread_lock->GetObject(peer_);
985 // (This conditional is only needed for tests, where Thread.lock won't have been set.)
Elliott Hughes5f791332011-09-15 17:45:30 -0700986 if (lock != NULL) {
987 lock->MonitorEnter(self);
988 lock->NotifyAll();
989 lock->MonitorExit(self);
990 }
991 }
Elliott Hughes02b48d12011-09-07 17:15:51 -0700992
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700993 delete jni_env_;
Elliott Hughes02b48d12011-09-07 17:15:51 -0700994 jni_env_ = NULL;
995
996 SetState(Thread::kTerminated);
Elliott Hughes85d15452011-09-16 17:33:01 -0700997
998 delete wait_cond_;
999 delete wait_mutex_;
1000
1001 delete long_jump_context_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -07001002}
1003
Ian Rogers408f79a2011-08-23 18:22:33 -07001004size_t Thread::NumSirtReferences() {
Ian Rogersa8cd9f42011-08-19 16:43:41 -07001005 size_t count = 0;
Ian Rogers408f79a2011-08-23 18:22:33 -07001006 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->Link()) {
Ian Rogersa8cd9f42011-08-19 16:43:41 -07001007 count += cur->NumberOfReferences();
1008 }
1009 return count;
1010}
1011
Ian Rogers408f79a2011-08-23 18:22:33 -07001012bool Thread::SirtContains(jobject obj) {
1013 Object** sirt_entry = reinterpret_cast<Object**>(obj);
1014 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->Link()) {
Ian Rogersa8cd9f42011-08-19 16:43:41 -07001015 size_t num_refs = cur->NumberOfReferences();
Ian Rogers408f79a2011-08-23 18:22:33 -07001016 // A SIRT should always have a jobject/jclass as a native method is passed
1017 // in a this pointer or a class
1018 DCHECK_GT(num_refs, 0u);
Shih-wei Liao2f0ce9d2011-09-01 02:07:58 -07001019 if ((&cur->References()[0] <= sirt_entry) &&
1020 (sirt_entry <= (&cur->References()[num_refs - 1]))) {
Ian Rogersa8cd9f42011-08-19 16:43:41 -07001021 return true;
1022 }
1023 }
1024 return false;
1025}
1026
Ian Rogers67375ac2011-09-14 00:55:44 -07001027void Thread::PopSirt() {
1028 CHECK(top_sirt_ != NULL);
1029 top_sirt_ = top_sirt_->Link();
1030}
1031
Ian Rogers408f79a2011-08-23 18:22:33 -07001032Object* Thread::DecodeJObject(jobject obj) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001033 DCHECK(CanAccessDirectReferences());
Ian Rogers408f79a2011-08-23 18:22:33 -07001034 if (obj == NULL) {
1035 return NULL;
1036 }
1037 IndirectRef ref = reinterpret_cast<IndirectRef>(obj);
1038 IndirectRefKind kind = GetIndirectRefKind(ref);
1039 Object* result;
1040 switch (kind) {
1041 case kLocal:
1042 {
Elliott Hughes69f5bc62011-08-24 09:26:14 -07001043 IndirectReferenceTable& locals = jni_env_->locals;
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001044 result = const_cast<Object*>(locals.Get(ref));
Ian Rogers408f79a2011-08-23 18:22:33 -07001045 break;
1046 }
1047 case kGlobal:
1048 {
1049 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
1050 IndirectReferenceTable& globals = vm->globals;
1051 MutexLock mu(vm->globals_lock);
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001052 result = const_cast<Object*>(globals.Get(ref));
Ian Rogers408f79a2011-08-23 18:22:33 -07001053 break;
1054 }
1055 case kWeakGlobal:
1056 {
1057 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
1058 IndirectReferenceTable& weak_globals = vm->weak_globals;
1059 MutexLock mu(vm->weak_globals_lock);
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001060 result = const_cast<Object*>(weak_globals.Get(ref));
Ian Rogers408f79a2011-08-23 18:22:33 -07001061 if (result == kClearedJniWeakGlobal) {
1062 // This is a special case where it's okay to return NULL.
1063 return NULL;
1064 }
1065 break;
1066 }
1067 case kSirtOrInvalid:
1068 default:
1069 // TODO: make stack indirect reference table lookup more efficient
1070 // Check if this is a local reference in the SIRT
1071 if (SirtContains(obj)) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001072 result = *reinterpret_cast<Object**>(obj); // Read from SIRT
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07001073 } else if (jni_env_->work_around_app_jni_bugs) {
Ian Rogers408f79a2011-08-23 18:22:33 -07001074 // Assume an invalid local reference is actually a direct pointer.
1075 result = reinterpret_cast<Object*>(obj);
1076 } else {
Elliott Hughesa2501992011-08-26 19:39:54 -07001077 result = kInvalidIndirectRefObject;
Ian Rogers408f79a2011-08-23 18:22:33 -07001078 }
1079 }
1080
1081 if (result == NULL) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001082 LOG(ERROR) << "JNI ERROR (app bug): use of deleted " << kind << ": " << obj;
1083 JniAbort(NULL);
1084 } else {
1085 if (result != kInvalidIndirectRefObject) {
1086 Heap::VerifyObject(result);
1087 }
Ian Rogers408f79a2011-08-23 18:22:33 -07001088 }
Ian Rogers408f79a2011-08-23 18:22:33 -07001089 return result;
1090}
1091
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001092class CountStackDepthVisitor : public Thread::StackVisitor {
1093 public:
Elliott Hughes29f27422011-09-18 16:02:18 -07001094 CountStackDepthVisitor() : depth_(0), skip_depth_(0), skipping_(true) {}
Elliott Hughesd369bb72011-09-12 14:41:14 -07001095
Elliott Hughes29f27422011-09-18 16:02:18 -07001096 virtual void VisitFrame(const Frame& frame, uintptr_t pc) {
1097 // We want to skip frames up to and including the exception's constructor.
Ian Rogers90865722011-09-19 11:11:44 -07001098 // Note we also skip the frame if it doesn't have a method (namely the callee
1099 // save frame)
Brian Carlstrom25c33252011-09-18 15:58:35 -07001100 DCHECK(gThrowable != NULL);
Ian Rogers90865722011-09-19 11:11:44 -07001101 if (skipping_ && frame.HasMethod() && !gThrowable->IsAssignableFrom(frame.GetMethod()->GetDeclaringClass())) {
Elliott Hughes29f27422011-09-18 16:02:18 -07001102 skipping_ = false;
1103 }
1104 if (!skipping_) {
1105 ++depth_;
1106 } else {
1107 ++skip_depth_;
1108 }
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001109 }
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001110
1111 int GetDepth() const {
Ian Rogersaaa20802011-09-11 21:47:37 -07001112 return depth_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001113 }
1114
Elliott Hughes29f27422011-09-18 16:02:18 -07001115 int GetSkipDepth() const {
1116 return skip_depth_;
1117 }
1118
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001119 private:
Ian Rogersaaa20802011-09-11 21:47:37 -07001120 uint32_t depth_;
Elliott Hughes29f27422011-09-18 16:02:18 -07001121 uint32_t skip_depth_;
1122 bool skipping_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001123};
1124
Ian Rogersaaa20802011-09-11 21:47:37 -07001125class BuildInternalStackTraceVisitor : public Thread::StackVisitor {
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001126 public:
Elliott Hughes29f27422011-09-18 16:02:18 -07001127 explicit BuildInternalStackTraceVisitor(int depth, int skip_depth, ScopedJniThreadState& ts)
1128 : skip_depth_(skip_depth), count_(0) {
Ian Rogersaaa20802011-09-11 21:47:37 -07001129 // Allocate method trace with an extra slot that will hold the PC trace
Elliott Hughes01158d72011-09-19 19:47:10 -07001130 method_trace_ = Runtime::Current()->GetClassLinker()->AllocObjectArray<Object>(depth + 1);
Ian Rogersaaa20802011-09-11 21:47:37 -07001131 // Register a local reference as IntArray::Alloc may trigger GC
1132 local_ref_ = AddLocalReference<jobject>(ts.Env(), method_trace_);
1133 pc_trace_ = IntArray::Alloc(depth);
1134#ifdef MOVING_GARBAGE_COLLECTOR
1135 // Re-read after potential GC
1136 method_trace = Decode<ObjectArray<Object>*>(ts.Env(), local_ref_);
1137#endif
1138 // Save PC trace in last element of method trace, also places it into the
1139 // object graph.
1140 method_trace_->Set(depth, pc_trace_);
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001141 }
1142
Ian Rogersaaa20802011-09-11 21:47:37 -07001143 virtual ~BuildInternalStackTraceVisitor() {}
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001144
Ian Rogersbdb03912011-09-14 00:55:44 -07001145 virtual void VisitFrame(const Frame& frame, uintptr_t pc) {
Elliott Hughes29f27422011-09-18 16:02:18 -07001146 if (skip_depth_ > 0) {
1147 skip_depth_--;
1148 return;
1149 }
Ian Rogersaaa20802011-09-11 21:47:37 -07001150 method_trace_->Set(count_, frame.GetMethod());
Ian Rogersbdb03912011-09-14 00:55:44 -07001151 pc_trace_->Set(count_, pc);
Ian Rogersaaa20802011-09-11 21:47:37 -07001152 ++count_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001153 }
1154
Ian Rogersaaa20802011-09-11 21:47:37 -07001155 jobject GetInternalStackTrace() const {
1156 return local_ref_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001157 }
1158
1159 private:
Elliott Hughes29f27422011-09-18 16:02:18 -07001160 // How many more frames to skip.
1161 int32_t skip_depth_;
Ian Rogersaaa20802011-09-11 21:47:37 -07001162 // Current position down stack trace
1163 uint32_t count_;
1164 // Array of return PC values
1165 IntArray* pc_trace_;
1166 // An array of the methods on the stack, the last entry is a reference to the
1167 // PC trace
1168 ObjectArray<Object>* method_trace_;
1169 // Local indirect reference table entry for method trace
1170 jobject local_ref_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001171};
1172
Ian Rogersaaa20802011-09-11 21:47:37 -07001173void Thread::WalkStack(StackVisitor* visitor) const {
Elliott Hughesd369bb72011-09-12 14:41:14 -07001174 Frame frame = GetTopOfStack();
Ian Rogersbdb03912011-09-14 00:55:44 -07001175 uintptr_t pc = top_of_managed_stack_pc_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001176 // TODO: enable this CHECK after native_to_managed_record_ is initialized during startup.
1177 // CHECK(native_to_managed_record_ != NULL);
1178 NativeToManagedRecord* record = native_to_managed_record_;
1179
Ian Rogersbdb03912011-09-14 00:55:44 -07001180 while (frame.GetSP() != 0) {
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001181 for ( ; frame.GetMethod() != 0; frame.Next()) {
Ian Rogersbdb03912011-09-14 00:55:44 -07001182 DCHECK(frame.GetMethod()->IsWithinCode(pc));
1183 visitor->VisitFrame(frame, pc);
1184 pc = frame.GetReturnPC();
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001185 }
1186 if (record == NULL) {
1187 break;
1188 }
Ian Rogersbdb03912011-09-14 00:55:44 -07001189 // last_tos should return Frame instead of sp?
1190 frame.SetSP(reinterpret_cast<art::Method**>(record->last_top_of_managed_stack_));
1191 pc = record->last_top_of_managed_stack_pc_;
1192 record = record->link_;
1193 }
1194}
1195
Ian Rogers67375ac2011-09-14 00:55:44 -07001196void Thread::WalkStackUntilUpCall(StackVisitor* visitor, bool include_upcall) const {
Ian Rogersbdb03912011-09-14 00:55:44 -07001197 Frame frame = GetTopOfStack();
1198 uintptr_t pc = top_of_managed_stack_pc_;
1199
1200 if (frame.GetSP() != 0) {
1201 for ( ; frame.GetMethod() != 0; frame.Next()) {
Ian Rogers67375ac2011-09-14 00:55:44 -07001202 DCHECK(frame.GetMethod()->IsWithinCode(pc));
Ian Rogersbdb03912011-09-14 00:55:44 -07001203 visitor->VisitFrame(frame, pc);
1204 pc = frame.GetReturnPC();
1205 }
Ian Rogers67375ac2011-09-14 00:55:44 -07001206 if (include_upcall) {
1207 visitor->VisitFrame(frame, pc);
1208 }
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001209 }
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001210}
1211
Elliott Hughes01158d72011-09-19 19:47:10 -07001212jobject Thread::CreateInternalStackTrace(JNIEnv* env) const {
Ian Rogersaaa20802011-09-11 21:47:37 -07001213 // Compute depth of stack
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001214 CountStackDepthVisitor count_visitor;
1215 WalkStack(&count_visitor);
1216 int32_t depth = count_visitor.GetDepth();
Elliott Hughes29f27422011-09-18 16:02:18 -07001217 int32_t skip_depth = count_visitor.GetSkipDepth();
Shih-wei Liao44175362011-08-28 16:59:17 -07001218
Ian Rogersaaa20802011-09-11 21:47:37 -07001219 // Transition into runnable state to work on Object*/Array*
Elliott Hughes01158d72011-09-19 19:47:10 -07001220 ScopedJniThreadState ts(env);
Ian Rogersaaa20802011-09-11 21:47:37 -07001221
1222 // Build internal stack trace
Elliott Hughes29f27422011-09-18 16:02:18 -07001223 BuildInternalStackTraceVisitor build_trace_visitor(depth, skip_depth, ts);
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001224 WalkStack(&build_trace_visitor);
Shih-wei Liao44175362011-08-28 16:59:17 -07001225
Ian Rogersaaa20802011-09-11 21:47:37 -07001226 return build_trace_visitor.GetInternalStackTrace();
1227}
1228
Elliott Hughes01158d72011-09-19 19:47:10 -07001229jobjectArray Thread::InternalStackTraceToStackTraceElementArray(JNIEnv* env, jobject internal,
1230 jobjectArray output_array, int* stack_depth) {
Ian Rogersaaa20802011-09-11 21:47:37 -07001231 // Transition into runnable state to work on Object*/Array*
1232 ScopedJniThreadState ts(env);
1233
1234 // Decode the internal stack trace into the depth, method trace and PC trace
1235 ObjectArray<Object>* method_trace =
1236 down_cast<ObjectArray<Object>*>(Decode<Object*>(ts.Env(), internal));
1237 int32_t depth = method_trace->GetLength()-1;
1238 IntArray* pc_trace = down_cast<IntArray*>(method_trace->Get(depth));
1239
1240 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1241
Elliott Hughes01158d72011-09-19 19:47:10 -07001242 jobjectArray result;
1243 ObjectArray<StackTraceElement>* java_traces;
1244 if (output_array != NULL) {
1245 // Reuse the array we were given.
1246 result = output_array;
1247 java_traces = reinterpret_cast<ObjectArray<StackTraceElement>*>(Decode<Array*>(env,
1248 output_array));
1249 // ...adjusting the number of frames we'll write to not exceed the array length.
1250 depth = std::min(depth, java_traces->GetLength());
1251 } else {
1252 // Create java_trace array and place in local reference table
1253 java_traces = class_linker->AllocStackTraceElementArray(depth);
1254 result = AddLocalReference<jobjectArray>(ts.Env(), java_traces);
1255 }
1256
1257 if (stack_depth != NULL) {
1258 *stack_depth = depth;
1259 }
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001260
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001261 for (int32_t i = 0; i < depth; ++i) {
Ian Rogersaaa20802011-09-11 21:47:37 -07001262 // Prepare parameters for StackTraceElement(String cls, String method, String file, int line)
1263 Method* method = down_cast<Method*>(method_trace->Get(i));
1264 uint32_t native_pc = pc_trace->Get(i);
1265 Class* klass = method->GetDeclaringClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001266 const DexFile& dex_file = class_linker->FindDexFile(klass->GetDexCache());
Elliott Hughes38933572011-09-16 12:29:03 -07001267 std::string class_name(PrettyDescriptor(klass->GetDescriptor()));
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001268
Ian Rogersaaa20802011-09-11 21:47:37 -07001269 // Allocate element, potentially triggering GC
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001270 StackTraceElement* obj =
Elliott Hughes38933572011-09-16 12:29:03 -07001271 StackTraceElement::Alloc(String::AllocFromModifiedUtf8(class_name.c_str()),
Shih-wei Liao44175362011-08-28 16:59:17 -07001272 method->GetName(),
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001273 klass->GetSourceFile(),
Shih-wei Liao44175362011-08-28 16:59:17 -07001274 dex_file.GetLineNumFromPC(method,
Ian Rogersaaa20802011-09-11 21:47:37 -07001275 method->ToDexPC(native_pc)));
1276#ifdef MOVING_GARBAGE_COLLECTOR
1277 // Re-read after potential GC
1278 java_traces = Decode<ObjectArray<Object>*>(ts.Env(), result);
1279 method_trace = down_cast<ObjectArray<Object>*>(Decode<Object*>(ts.Env(), internal));
1280 pc_trace = down_cast<IntArray*>(method_trace->Get(depth));
1281#endif
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001282 java_traces->Set(i, obj);
1283 }
Ian Rogersaaa20802011-09-11 21:47:37 -07001284 return result;
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001285}
1286
Elliott Hughese5b0dc82011-08-23 09:59:02 -07001287void Thread::ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...) {
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001288 va_list args;
1289 va_start(args, fmt);
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001290 ThrowNewExceptionV(exception_class_descriptor, fmt, args);
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001291 va_end(args);
Elliott Hughes4a2b4172011-09-20 17:08:25 -07001292}
1293
1294void Thread::ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap) {
1295 std::string msg;
1296 StringAppendV(&msg, fmt, ap);
Elliott Hughes37f7a402011-08-22 18:56:01 -07001297
Elliott Hughese5b0dc82011-08-23 09:59:02 -07001298 // Convert "Ljava/lang/Exception;" into JNI-style "java/lang/Exception".
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001299 CHECK_EQ('L', exception_class_descriptor[0]);
Elliott Hughese5b0dc82011-08-23 09:59:02 -07001300 std::string descriptor(exception_class_descriptor + 1);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001301 CHECK_EQ(';', descriptor[descriptor.length() - 1]);
Elliott Hughese5b0dc82011-08-23 09:59:02 -07001302 descriptor.erase(descriptor.length() - 1);
1303
1304 JNIEnv* env = GetJniEnv();
1305 jclass exception_class = env->FindClass(descriptor.c_str());
1306 CHECK(exception_class != NULL) << "descriptor=\"" << descriptor << "\"";
1307 int rc = env->ThrowNew(exception_class, msg.c_str());
1308 CHECK_EQ(rc, JNI_OK);
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001309}
1310
Elliott Hughes79082e32011-08-25 12:07:32 -07001311void Thread::ThrowOutOfMemoryError() {
1312 UNIMPLEMENTED(FATAL);
1313}
1314
Ian Rogersbdb03912011-09-14 00:55:44 -07001315Method* Thread::CalleeSaveMethod() const {
1316 // TODO: we should only allocate this once
Ian Rogersbdb03912011-09-14 00:55:44 -07001317 Method* method = Runtime::Current()->GetClassLinker()->AllocMethod();
Ian Rogers67375ac2011-09-14 00:55:44 -07001318#if defined(__arm__)
Ian Rogersbdb03912011-09-14 00:55:44 -07001319 method->SetCode(NULL, art::kThumb2, NULL);
1320 method->SetFrameSizeInBytes(64);
1321 method->SetReturnPcOffsetInBytes(60);
Ian Rogers67375ac2011-09-14 00:55:44 -07001322 method->SetCoreSpillMask((1 << art::arm::R1) |
1323 (1 << art::arm::R2) |
1324 (1 << art::arm::R3) |
1325 (1 << art::arm::R4) |
1326 (1 << art::arm::R5) |
1327 (1 << art::arm::R6) |
1328 (1 << art::arm::R7) |
1329 (1 << art::arm::R8) |
1330 (1 << art::arm::R9) |
1331 (1 << art::arm::R10) |
1332 (1 << art::arm::R11) |
1333 (1 << art::arm::LR));
Ian Rogersbdb03912011-09-14 00:55:44 -07001334 method->SetFpSpillMask(0);
Ian Rogers67375ac2011-09-14 00:55:44 -07001335#elif defined(__i386__)
1336 method->SetCode(NULL, art::kX86, NULL);
1337 method->SetFrameSizeInBytes(32);
1338 method->SetReturnPcOffsetInBytes(28);
1339 method->SetCoreSpillMask((1 << art::x86::EBX) |
1340 (1 << art::x86::EBP) |
1341 (1 << art::x86::ESI) |
1342 (1 << art::x86::EDI));
1343 method->SetFpSpillMask(0);
1344#else
1345 UNIMPLEMENTED(FATAL);
1346#endif
Ian Rogersbdb03912011-09-14 00:55:44 -07001347 return method;
1348}
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001349
Ian Rogersbdb03912011-09-14 00:55:44 -07001350class CatchBlockStackVisitor : public Thread::StackVisitor {
1351 public:
1352 CatchBlockStackVisitor(Class* to_find, Context* ljc)
Ian Rogers67375ac2011-09-14 00:55:44 -07001353 : found_(false), to_find_(to_find), long_jump_context_(ljc), native_method_count_(0) {
1354#ifndef NDEBUG
1355 handler_pc_ = 0xEBADC0DE;
1356 handler_frame_.SetSP(reinterpret_cast<Method**>(0xEBADF00D));
1357#endif
1358 }
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001359
Ian Rogersbdb03912011-09-14 00:55:44 -07001360 virtual void VisitFrame(const Frame& fr, uintptr_t pc) {
1361 if (!found_) {
Ian Rogersbdb03912011-09-14 00:55:44 -07001362 Method* method = fr.GetMethod();
Ian Rogers67375ac2011-09-14 00:55:44 -07001363 if (method == NULL) {
1364 // This is the upcall, we remember the frame and last_pc so that we may
1365 // long jump to them
1366 handler_pc_ = pc;
1367 handler_frame_ = fr;
1368 return;
Ian Rogersbdb03912011-09-14 00:55:44 -07001369 }
Ian Rogers67375ac2011-09-14 00:55:44 -07001370 uint32_t dex_pc = DexFile::kDexNoIndex;
Ian Rogers90865722011-09-19 11:11:44 -07001371 if (method->IsPhony()) {
1372 // ignore callee save method
1373 } else if (method->IsNative()) {
1374 native_method_count_++;
1375 } else {
1376 // Move the PC back 2 bytes as a call will frequently terminate the
1377 // decoding of a particular instruction and we want to make sure we
1378 // get the Dex PC of the instruction with the call and not the
1379 // instruction following.
1380 pc -= 2;
1381 dex_pc = method->ToDexPC(pc);
Ian Rogers67375ac2011-09-14 00:55:44 -07001382 }
Ian Rogersbdb03912011-09-14 00:55:44 -07001383 if (dex_pc != DexFile::kDexNoIndex) {
1384 uint32_t found_dex_pc = method->FindCatchBlock(to_find_, dex_pc);
1385 if (found_dex_pc != DexFile::kDexNoIndex) {
1386 found_ = true;
Ian Rogers67375ac2011-09-14 00:55:44 -07001387 handler_pc_ = method->ToNativePC(found_dex_pc);
1388 handler_frame_ = fr;
Ian Rogersbdb03912011-09-14 00:55:44 -07001389 }
1390 }
1391 if (!found_) {
1392 // Caller may be handler, fill in callee saves in context
1393 long_jump_context_->FillCalleeSaves(fr);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001394 }
1395 }
1396 }
Ian Rogersbdb03912011-09-14 00:55:44 -07001397
1398 // Did we find a catch block yet?
1399 bool found_;
1400 // The type of the exception catch block to find
1401 Class* to_find_;
1402 // Frame with found handler or last frame if no handler found
1403 Frame handler_frame_;
Ian Rogers67375ac2011-09-14 00:55:44 -07001404 // PC to branch to for the handler
1405 uintptr_t handler_pc_;
Ian Rogersbdb03912011-09-14 00:55:44 -07001406 // Context that will be the target of the long jump
1407 Context* long_jump_context_;
Ian Rogers67375ac2011-09-14 00:55:44 -07001408 // Number of native methods passed in crawl (equates to number of SIRTs to pop)
1409 uint32_t native_method_count_;
Ian Rogersbdb03912011-09-14 00:55:44 -07001410};
1411
1412void Thread::DeliverException(Throwable* exception) {
1413 SetException(exception); // Set exception on thread
1414
1415 Context* long_jump_context = GetLongJumpContext();
1416 CatchBlockStackVisitor catch_finder(exception->GetClass(), long_jump_context);
Ian Rogers67375ac2011-09-14 00:55:44 -07001417 WalkStackUntilUpCall(&catch_finder, true);
Ian Rogersbdb03912011-09-14 00:55:44 -07001418
Ian Rogers67375ac2011-09-14 00:55:44 -07001419 // Pop any SIRT
1420 if (catch_finder.native_method_count_ == 1) {
1421 PopSirt();
Ian Rogersbdb03912011-09-14 00:55:44 -07001422 } else {
Ian Rogersad42e132011-09-17 20:23:33 -07001423 // We only expect the stack crawl to have passed 1 native method as it's terminated
1424 // by an up call
Ian Rogers67375ac2011-09-14 00:55:44 -07001425 DCHECK_EQ(catch_finder.native_method_count_, 0u);
Ian Rogersbdb03912011-09-14 00:55:44 -07001426 }
Ian Rogers67375ac2011-09-14 00:55:44 -07001427 long_jump_context->SetSP(reinterpret_cast<intptr_t>(catch_finder.handler_frame_.GetSP()));
1428 long_jump_context->SetPC(catch_finder.handler_pc_);
Ian Rogersbdb03912011-09-14 00:55:44 -07001429 long_jump_context->DoLongJump();
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001430}
1431
Ian Rogersbdb03912011-09-14 00:55:44 -07001432Context* Thread::GetLongJumpContext() {
Elliott Hughes85d15452011-09-16 17:33:01 -07001433 Context* result = long_jump_context_;
Ian Rogersbdb03912011-09-14 00:55:44 -07001434 if (result == NULL) {
1435 result = Context::Create();
Elliott Hughes85d15452011-09-16 17:33:01 -07001436 long_jump_context_ = result;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001437 }
Ian Rogersbdb03912011-09-14 00:55:44 -07001438 return result;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001439}
1440
Elliott Hughes5f791332011-09-15 17:45:30 -07001441bool Thread::HoldsLock(Object* object) {
1442 if (object == NULL) {
1443 return false;
1444 }
1445 return object->GetLockOwner() == thin_lock_id_;
1446}
1447
Elliott Hughes038a8062011-09-18 14:12:41 -07001448bool Thread::IsDaemon() {
1449 return gThread_daemon->GetBoolean(peer_);
1450}
1451
Elliott Hughes410c0c82011-09-01 17:58:25 -07001452void Thread::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
Elliott Hughesd369bb72011-09-12 14:41:14 -07001453 if (exception_ != NULL) {
1454 visitor(exception_, arg);
1455 }
1456 if (peer_ != NULL) {
1457 visitor(peer_, arg);
1458 }
Elliott Hughes410c0c82011-09-01 17:58:25 -07001459 jni_env_->locals.VisitRoots(visitor, arg);
1460 jni_env_->monitors.VisitRoots(visitor, arg);
1461 // visitThreadStack(visitor, thread, arg);
1462 UNIMPLEMENTED(WARNING) << "some per-Thread roots not visited";
1463}
1464
Ian Rogersb033c752011-07-20 12:22:35 -07001465static const char* kStateNames[] = {
Elliott Hughes93e74e82011-09-13 11:07:03 -07001466 "Terminated",
Ian Rogersb033c752011-07-20 12:22:35 -07001467 "Runnable",
Elliott Hughes93e74e82011-09-13 11:07:03 -07001468 "TimedWaiting",
Ian Rogersb033c752011-07-20 12:22:35 -07001469 "Blocked",
1470 "Waiting",
Elliott Hughes93e74e82011-09-13 11:07:03 -07001471 "Initializing",
1472 "Starting",
Ian Rogersb033c752011-07-20 12:22:35 -07001473 "Native",
Elliott Hughes93e74e82011-09-13 11:07:03 -07001474 "VmWait",
1475 "Suspended",
Ian Rogersb033c752011-07-20 12:22:35 -07001476};
1477std::ostream& operator<<(std::ostream& os, const Thread::State& state) {
Elliott Hughes93e74e82011-09-13 11:07:03 -07001478 int int_state = static_cast<int>(state);
1479 if (state >= Thread::kTerminated && state <= Thread::kSuspended) {
1480 os << kStateNames[int_state];
Ian Rogersb033c752011-07-20 12:22:35 -07001481 } else {
Elliott Hughes93e74e82011-09-13 11:07:03 -07001482 os << "State[" << int_state << "]";
Ian Rogersb033c752011-07-20 12:22:35 -07001483 }
1484 return os;
1485}
1486
Elliott Hughes330304d2011-08-12 14:28:05 -07001487std::ostream& operator<<(std::ostream& os, const Thread& thread) {
1488 os << "Thread[" << &thread
Elliott Hughese27955c2011-08-26 15:21:24 -07001489 << ",pthread_t=" << thread.GetImpl()
1490 << ",tid=" << thread.GetTid()
Elliott Hughesdcc24742011-09-07 14:02:44 -07001491 << ",id=" << thread.GetThinLockId()
Elliott Hughes8daa0922011-09-11 13:46:25 -07001492 << ",state=" << thread.GetState()
1493 << ",peer=" << thread.GetPeer()
1494 << "]";
Elliott Hughes330304d2011-08-12 14:28:05 -07001495 return os;
1496}
1497
Elliott Hughes8daa0922011-09-11 13:46:25 -07001498} // namespace art