blob: 153f20f3f1e677b1409022af26599e17bd57f901 [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) {
buzbee4a3164f2011-09-03 11:25:10 -070059 LOG(INFO) << "DebugMe";
60 if (method != NULL)
61 LOG(INFO) << PrettyMethod(method);
62 LOG(INFO) << "Info: " << info;
63}
64
Ian Rogersbdb03912011-09-14 00:55:44 -070065} // namespace art
66
67// Called by generated call to throw an exception
Ian Rogers67375ac2011-09-14 00:55:44 -070068extern "C" void artDeliverExceptionHelper(art::Throwable* exception,
69 art::Thread* thread,
70 art::Method** sp) {
Elliott Hughesd369bb72011-09-12 14:41:14 -070071 /*
72 * exception may be NULL, in which case this routine should
73 * throw NPE. NOTE: this is a convenience for generated code,
74 * which previously did the null check inline and constructed
75 * and threw a NPE if NULL. This routine responsible for setting
Ian Rogersbdb03912011-09-14 00:55:44 -070076 * exception_ in thread and delivering the exception.
Elliott Hughesd369bb72011-09-12 14:41:14 -070077 */
Ian Rogers67375ac2011-09-14 00:55:44 -070078#if defined(__i386__)
79 thread = art::Thread::Current(); // TODO: fix passing this in as an argument
80#endif
81 // Place a special frame at the TOS that will save all callee saves
Ian Rogersbdb03912011-09-14 00:55:44 -070082 *sp = thread->CalleeSaveMethod();
83 thread->SetTopOfStack(sp, 0);
Ian Rogers93dd9662011-09-17 23:21:22 -070084 if (exception == NULL) {
85 thread->ThrowNewException("Ljava/lang/NullPointerException;", "throw with null exception");
86 exception = thread->GetException();
87 }
Ian Rogersbdb03912011-09-14 00:55:44 -070088 thread->DeliverException(exception);
buzbee1b4c8592011-08-31 10:43:51 -070089}
90
Ian Rogersbdb03912011-09-14 00:55:44 -070091namespace art {
92
buzbee1b4c8592011-08-31 10:43:51 -070093// TODO: placeholder. Helper function to type
Elliott Hughesd369bb72011-09-12 14:41:14 -070094Class* InitializeTypeFromCode(uint32_t type_idx, Method* method) {
buzbee1b4c8592011-08-31 10:43:51 -070095 /*
96 * Should initialize & fix up method->dex_cache_resolved_types_[].
97 * Returns initialized type. Does not return normally if an exception
98 * is thrown, but instead initiates the catch. Should be similar to
99 * ClassLinker::InitializeStaticStorageFromCode.
100 */
101 UNIMPLEMENTED(FATAL);
102 return NULL;
103}
104
buzbee561227c2011-09-02 15:28:19 -0700105// TODO: placeholder. Helper function to resolve virtual method
Elliott Hughesd369bb72011-09-12 14:41:14 -0700106void ResolveMethodFromCode(Method* method, uint32_t method_idx) {
buzbee561227c2011-09-02 15:28:19 -0700107 /*
108 * Slow-path handler on invoke virtual method path in which
109 * base method is unresolved at compile-time. Doesn't need to
110 * return anything - just either ensure that
111 * method->dex_cache_resolved_methods_(method_idx) != NULL or
112 * throw and unwind. The caller will restart call sequence
113 * from the beginning.
114 */
115}
116
buzbee1da522d2011-09-04 11:22:20 -0700117// TODO: placeholder. Helper function to alloc array for OP_FILLED_NEW_ARRAY
Elliott Hughesd369bb72011-09-12 14:41:14 -0700118Array* CheckAndAllocFromCode(uint32_t type_index, Method* method, int32_t component_count) {
buzbee1da522d2011-09-04 11:22:20 -0700119 /*
120 * Just a wrapper around Array::AllocFromCode() that additionally
121 * throws a runtime exception "bad Filled array req" for 'D' and 'J'.
122 */
123 UNIMPLEMENTED(WARNING) << "Need check that not 'D' or 'J'";
124 return Array::AllocFromCode(type_index, method, component_count);
125}
126
buzbee2a475e72011-09-07 17:19:17 -0700127// TODO: placeholder (throw on failure)
Elliott Hughesd369bb72011-09-12 14:41:14 -0700128void CheckCastFromCode(const Class* a, const Class* b) {
Brian Carlstromc2282522011-09-17 10:33:14 -0700129 DCHECK(a->IsClass());
130 DCHECK(b->IsClass());
131 if (b->IsAssignableFrom(a)) {
132 return;
133 }
134 UNIMPLEMENTED(FATAL);
buzbee2a475e72011-09-07 17:19:17 -0700135}
136
Elliott Hughesd369bb72011-09-12 14:41:14 -0700137void UnlockObjectFromCode(Thread* thread, Object* obj) {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700138 // TODO: throw and unwind if lock not held
139 // TODO: throw and unwind on NPE
140 obj->MonitorExit(thread);
buzbee2a475e72011-09-07 17:19:17 -0700141}
142
Elliott Hughesd369bb72011-09-12 14:41:14 -0700143void LockObjectFromCode(Thread* thread, Object* obj) {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700144 obj->MonitorEnter(thread);
145 // TODO: throw and unwind on failure.
buzbee2a475e72011-09-07 17:19:17 -0700146}
147
Elliott Hughesd369bb72011-09-12 14:41:14 -0700148void CheckSuspendFromCode(Thread* thread) {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700149 Runtime::Current()->GetThreadList()->FullSuspendCheck(thread);
buzbee0d966cf2011-09-08 17:34:58 -0700150}
151
buzbeecefd1872011-09-09 09:59:52 -0700152// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700153void StackOverflowFromCode(Method* method) {
Brian Carlstromfa3baf72011-09-18 15:44:15 -0700154 Thread::Current()->SetTopOfStackPC(reinterpret_cast<uintptr_t>(__builtin_return_address(0)));
Brian Carlstrom16192862011-09-12 17:50:06 -0700155 Thread::Current()->Dump(std::cerr);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700156 //NOTE: to save code space, this handler needs to look up its own Thread*
157 UNIMPLEMENTED(FATAL) << "Stack overflow: " << PrettyMethod(method);
buzbeecefd1872011-09-09 09:59:52 -0700158}
159
buzbee5ade1d22011-09-09 14:44:52 -0700160// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700161void ThrowNullPointerFromCode() {
Brian Carlstromfa3baf72011-09-18 15:44:15 -0700162 Thread::Current()->SetTopOfStackPC(reinterpret_cast<uintptr_t>(__builtin_return_address(0)));
Elliott Hughesd369bb72011-09-12 14:41:14 -0700163 Thread::Current()->Dump(std::cerr);
164 //NOTE: to save code space, this handler must look up caller's Method*
165 UNIMPLEMENTED(FATAL) << "Null pointer exception";
buzbee5ade1d22011-09-09 14:44:52 -0700166}
167
168// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700169void ThrowDivZeroFromCode() {
170 UNIMPLEMENTED(FATAL) << "Divide by zero";
buzbee5ade1d22011-09-09 14:44:52 -0700171}
172
173// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700174void ThrowArrayBoundsFromCode(int32_t index, int32_t limit) {
175 UNIMPLEMENTED(FATAL) << "Bound check exception, idx: " << index << ", limit: " << limit;
buzbee5ade1d22011-09-09 14:44:52 -0700176}
177
178// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700179void ThrowVerificationErrorFromCode(int32_t src1, int32_t ref) {
buzbee5ade1d22011-09-09 14:44:52 -0700180 UNIMPLEMENTED(FATAL) << "Verification error, src1: " << src1 <<
181 " ref: " << ref;
182}
183
184// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700185void ThrowNegArraySizeFromCode(int32_t index) {
buzbee5ade1d22011-09-09 14:44:52 -0700186 UNIMPLEMENTED(FATAL) << "Negative array size: " << index;
187}
188
189// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700190void ThrowInternalErrorFromCode(int32_t errnum) {
buzbee5ade1d22011-09-09 14:44:52 -0700191 UNIMPLEMENTED(FATAL) << "Internal error: " << errnum;
192}
193
194// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700195void ThrowRuntimeExceptionFromCode(int32_t errnum) {
buzbee5ade1d22011-09-09 14:44:52 -0700196 UNIMPLEMENTED(FATAL) << "Internal error: " << errnum;
197}
198
199// TODO: placeholder
Elliott Hughesd369bb72011-09-12 14:41:14 -0700200void ThrowNoSuchMethodFromCode(int32_t method_idx) {
buzbee5ade1d22011-09-09 14:44:52 -0700201 UNIMPLEMENTED(FATAL) << "No such method, idx: " << method_idx;
202}
203
Ian Rogersbdb03912011-09-14 00:55:44 -0700204void ThrowAbstractMethodErrorFromCode(Method* method, Thread* thread) {
205 thread->ThrowNewException("Ljava/lang/AbstractMethodError",
206 "abstract method \"%s\"",
207 PrettyMethod(method).c_str());
208 thread->DeliverException(thread->GetException());
209}
210
211
buzbee5ade1d22011-09-09 14:44:52 -0700212/*
213 * Temporary placeholder. Should include run-time checks for size
214 * of fill data <= size of array. If not, throw arrayOutOfBoundsException.
215 * As with other new "FromCode" routines, this should return to the caller
216 * only if no exception has been thrown.
217 *
218 * NOTE: When dealing with a raw dex file, the data to be copied uses
219 * little-endian ordering. Require that oat2dex do any required swapping
220 * so this routine can get by with a memcpy().
221 *
222 * Format of the data:
223 * ushort ident = 0x0300 magic value
224 * ushort width width of each element in the table
225 * uint size number of elements in the table
226 * ubyte data[size*width] table of data values (may contain a single-byte
227 * padding at the end)
228 */
Elliott Hughesd369bb72011-09-12 14:41:14 -0700229void HandleFillArrayDataFromCode(Array* array, const uint16_t* table) {
buzbee5ade1d22011-09-09 14:44:52 -0700230 uint32_t size = (uint32_t)table[2] | (((uint32_t)table[3]) << 16);
231 uint32_t size_in_bytes = size * table[1];
232 if (static_cast<int32_t>(size) > array->GetLength()) {
233 ThrowArrayBoundsFromCode(array->GetLength(), size);
234 }
235 memcpy((char*)array + art::Array::DataOffset().Int32Value(),
236 (char*)&table[4], size_in_bytes);
237}
238
Brian Carlstrom16192862011-09-12 17:50:06 -0700239/*
240 * TODO: placeholder for a method that can be called by the
241 * invoke-interface trampoline to unwind and handle exception. The
242 * trampoline will arrange it so that the caller appears to be the
243 * callsite of the failed invoke-interface. See comments in
244 * runtime_support.S
245 */
246extern "C" void artFailedInvokeInterface() {
247 UNIMPLEMENTED(FATAL) << "Unimplemented exception throw";
248}
249
250// See comments in runtime_support.S
251extern "C" uint64_t artFindInterfaceMethodInCache(uint32_t method_idx,
252 Object* this_object , Method* caller_method)
253{
254 if (this_object == NULL) {
255 ThrowNullPointerFromCode();
256 }
257 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
258 Method* interface_method = class_linker->ResolveMethod(method_idx, caller_method, false);
259 if (interface_method == NULL) {
260 UNIMPLEMENTED(FATAL) << "Could not resolve interface method. Throw error and unwind";
261 }
262 Method* method = this_object->GetClass()->FindVirtualMethodForInterface(interface_method);
263 const void* code = method->GetCode();
264
265 uint32_t method_uint = reinterpret_cast<uint32_t>(method);
266 uint64_t code_uint = reinterpret_cast<uint32_t>(code);
267 uint64_t result = ((code_uint << 32) | method_uint);
268 return result;
269}
270
buzbee5ade1d22011-09-09 14:44:52 -0700271// TODO: move to more appropriate location
272/*
273 * Float/double conversion requires clamping to min and max of integer form. If
274 * target doesn't support this normally, use these.
275 */
Elliott Hughesd369bb72011-09-12 14:41:14 -0700276int64_t D2L(double d) {
buzbee5ade1d22011-09-09 14:44:52 -0700277 static const double kMaxLong = (double)(int64_t)0x7fffffffffffffffULL;
278 static const double kMinLong = (double)(int64_t)0x8000000000000000ULL;
279 if (d >= kMaxLong)
280 return (int64_t)0x7fffffffffffffffULL;
281 else if (d <= kMinLong)
282 return (int64_t)0x8000000000000000ULL;
283 else if (d != d) // NaN case
284 return 0;
285 else
286 return (int64_t)d;
287}
288
Elliott Hughesd369bb72011-09-12 14:41:14 -0700289int64_t F2L(float f) {
buzbee5ade1d22011-09-09 14:44:52 -0700290 static const float kMaxLong = (float)(int64_t)0x7fffffffffffffffULL;
291 static const float kMinLong = (float)(int64_t)0x8000000000000000ULL;
292 if (f >= kMaxLong)
293 return (int64_t)0x7fffffffffffffffULL;
294 else if (f <= kMinLong)
295 return (int64_t)0x8000000000000000ULL;
296 else if (f != f) // NaN case
297 return 0;
298 else
299 return (int64_t)f;
300}
301
Brian Carlstrom16192862011-09-12 17:50:06 -0700302// Return value helper for jobject return types
303static Object* DecodeJObjectInThread(Thread* thread, jobject obj) {
304 return thread->DecodeJObject(obj);
305}
306
buzbee3ea4ec52011-08-22 17:37:19 -0700307void Thread::InitFunctionPointers() {
buzbee54330722011-08-23 16:46:55 -0700308#if defined(__arm__)
309 pShlLong = art_shl_long;
310 pShrLong = art_shr_long;
311 pUshrLong = art_ushr_long;
buzbee7b1b86d2011-08-26 18:59:10 -0700312 pIdiv = __aeabi_idiv;
313 pIdivmod = __aeabi_idivmod;
314 pI2f = __aeabi_i2f;
315 pF2iz = __aeabi_f2iz;
316 pD2f = __aeabi_d2f;
317 pF2d = __aeabi_f2d;
318 pD2iz = __aeabi_d2iz;
319 pL2f = __aeabi_l2f;
320 pL2d = __aeabi_l2d;
321 pFadd = __aeabi_fadd;
322 pFsub = __aeabi_fsub;
323 pFdiv = __aeabi_fdiv;
324 pFmul = __aeabi_fmul;
325 pFmodf = fmodf;
326 pDadd = __aeabi_dadd;
327 pDsub = __aeabi_dsub;
328 pDdiv = __aeabi_ddiv;
329 pDmul = __aeabi_dmul;
330 pFmod = fmod;
buzbee7b1b86d2011-08-26 18:59:10 -0700331 pLdivmod = __aeabi_ldivmod;
buzbee439c4fa2011-08-27 15:59:07 -0700332 pLmul = __aeabi_lmul;
buzbee4a3164f2011-09-03 11:25:10 -0700333 pInvokeInterfaceTrampoline = art_invoke_interface_trampoline;
Ian Rogers67375ac2011-09-14 00:55:44 -0700334#endif
Ian Rogers67375ac2011-09-14 00:55:44 -0700335 pDeliverException = art_deliver_exception;
buzbeec396efc2011-09-11 09:36:41 -0700336 pF2l = F2L;
337 pD2l = D2L;
buzbeedfd3d702011-08-28 12:56:51 -0700338 pAllocFromCode = Array::AllocFromCode;
buzbee1da522d2011-09-04 11:22:20 -0700339 pCheckAndAllocFromCode = CheckAndAllocFromCode;
Brian Carlstrom1f870082011-08-23 16:02:11 -0700340 pAllocObjectFromCode = Class::AllocObjectFromCode;
buzbee3ea4ec52011-08-22 17:37:19 -0700341 pMemcpy = memcpy;
buzbee1b4c8592011-08-31 10:43:51 -0700342 pHandleFillArrayDataFromCode = HandleFillArrayDataFromCode;
buzbeee1931742011-08-28 21:15:53 -0700343 pGet32Static = Field::Get32StaticFromCode;
344 pSet32Static = Field::Set32StaticFromCode;
345 pGet64Static = Field::Get64StaticFromCode;
346 pSet64Static = Field::Set64StaticFromCode;
347 pGetObjStatic = Field::GetObjStaticFromCode;
348 pSetObjStatic = Field::SetObjStaticFromCode;
buzbee1b4c8592011-08-31 10:43:51 -0700349 pCanPutArrayElementFromCode = Class::CanPutArrayElementFromCode;
buzbee1b4c8592011-08-31 10:43:51 -0700350 pInitializeTypeFromCode = InitializeTypeFromCode;
buzbee561227c2011-09-02 15:28:19 -0700351 pResolveMethodFromCode = ResolveMethodFromCode;
buzbee1da522d2011-09-04 11:22:20 -0700352 pInitializeStaticStorage = ClassLinker::InitializeStaticStorageFromCode;
buzbee2a475e72011-09-07 17:19:17 -0700353 pInstanceofNonTrivialFromCode = Object::InstanceOf;
354 pCheckCastFromCode = CheckCastFromCode;
355 pLockObjectFromCode = LockObjectFromCode;
356 pUnlockObjectFromCode = UnlockObjectFromCode;
buzbee34cd9e52011-09-08 14:31:52 -0700357 pFindFieldFromCode = Field::FindFieldFromCode;
buzbee0d966cf2011-09-08 17:34:58 -0700358 pCheckSuspendFromCode = CheckSuspendFromCode;
buzbeecefd1872011-09-09 09:59:52 -0700359 pStackOverflowFromCode = StackOverflowFromCode;
buzbee5ade1d22011-09-09 14:44:52 -0700360 pThrowNullPointerFromCode = ThrowNullPointerFromCode;
361 pThrowArrayBoundsFromCode = ThrowArrayBoundsFromCode;
362 pThrowDivZeroFromCode = ThrowDivZeroFromCode;
363 pThrowVerificationErrorFromCode = ThrowVerificationErrorFromCode;
364 pThrowNegArraySizeFromCode = ThrowNegArraySizeFromCode;
365 pThrowRuntimeExceptionFromCode = ThrowRuntimeExceptionFromCode;
366 pThrowInternalErrorFromCode = ThrowInternalErrorFromCode;
367 pThrowNoSuchMethodFromCode = ThrowNoSuchMethodFromCode;
Ian Rogersbdb03912011-09-14 00:55:44 -0700368 pThrowAbstractMethodErrorFromCode = ThrowAbstractMethodErrorFromCode;
Brian Carlstrom16192862011-09-12 17:50:06 -0700369 pFindNativeMethod = FindNativeMethod;
370 pDecodeJObjectInThread = DecodeJObjectInThread;
buzbee4a3164f2011-09-03 11:25:10 -0700371 pDebugMe = DebugMe;
buzbee3ea4ec52011-08-22 17:37:19 -0700372}
373
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700374void Frame::Next() {
Ian Rogers67375ac2011-09-14 00:55:44 -0700375 size_t frame_size = GetMethod()->GetFrameSizeInBytes();
376 DCHECK_NE(frame_size, 0u);
377 DCHECK_LT(frame_size, 1024u);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700378 byte* next_sp = reinterpret_cast<byte*>(sp_) +
Ian Rogers67375ac2011-09-14 00:55:44 -0700379 frame_size;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700380 sp_ = reinterpret_cast<Method**>(next_sp);
Ian Rogers67375ac2011-09-14 00:55:44 -0700381 DCHECK(*sp_ == NULL ||
382 (*sp_)->GetClass()->GetDescriptor()->Equals("Ljava/lang/reflect/Method;"));
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700383}
384
Ian Rogersbdb03912011-09-14 00:55:44 -0700385uintptr_t Frame::GetReturnPC() const {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700386 byte* pc_addr = reinterpret_cast<byte*>(sp_) +
Shih-wei Liaod11af152011-08-23 16:02:11 -0700387 GetMethod()->GetReturnPcOffsetInBytes();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700388 return *reinterpret_cast<uintptr_t*>(pc_addr);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700389}
390
Ian Rogersbdb03912011-09-14 00:55:44 -0700391uintptr_t Frame::LoadCalleeSave(int num) const {
392 // Callee saves are held at the top of the frame
393 Method* method = GetMethod();
394 DCHECK(method != NULL);
395 size_t frame_size = method->GetFrameSizeInBytes();
396 byte* save_addr = reinterpret_cast<byte*>(sp_) + frame_size -
397 ((num + 1) * kPointerSize);
Ian Rogers67375ac2011-09-14 00:55:44 -0700398#if defined(__i386__)
399 save_addr -= kPointerSize; // account for return address
400#endif
Ian Rogersbdb03912011-09-14 00:55:44 -0700401 return *reinterpret_cast<uintptr_t*>(save_addr);
402}
403
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700404Method* Frame::NextMethod() const {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700405 byte* next_sp = reinterpret_cast<byte*>(sp_) +
Shih-wei Liaod11af152011-08-23 16:02:11 -0700406 GetMethod()->GetFrameSizeInBytes();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700407 return *reinterpret_cast<Method**>(next_sp);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700408}
409
Brian Carlstrom78128a62011-09-15 17:21:19 -0700410void* Thread::CreateCallback(void* arg) {
Elliott Hughes93e74e82011-09-13 11:07:03 -0700411 Thread* self = reinterpret_cast<Thread*>(arg);
412 Runtime* runtime = Runtime::Current();
413
414 self->Attach(runtime);
415
Elliott Hughes038a8062011-09-18 14:12:41 -0700416 String* thread_name = reinterpret_cast<String*>(gThread_name->GetObject(self->peer_));
Elliott Hughes93e74e82011-09-13 11:07:03 -0700417 if (thread_name != NULL) {
418 SetThreadName(thread_name->ToModifiedUtf8().c_str());
419 }
420
421 // Wait until it's safe to start running code. (There may have been a suspend-all
422 // in progress while we were starting up.)
423 runtime->GetThreadList()->WaitForGo();
424
425 // TODO: say "hi" to the debugger.
426 //if (gDvm.debuggerConnected) {
427 // dvmDbgPostThreadStart(self);
428 //}
429
430 // Invoke the 'run' method of our java.lang.Thread.
431 CHECK(self->peer_ != NULL);
432 Object* receiver = self->peer_;
Elliott Hughes038a8062011-09-18 14:12:41 -0700433 Method* m = receiver->GetClass()->FindVirtualMethodForVirtualOrInterface(gThread_run);
Elliott Hughes93e74e82011-09-13 11:07:03 -0700434 m->Invoke(self, receiver, NULL, NULL);
435
436 // Detach.
437 runtime->GetThreadList()->Unregister();
438
Carl Shapirob5573532011-07-12 18:22:59 -0700439 return NULL;
440}
441
Elliott Hughes93e74e82011-09-13 11:07:03 -0700442void SetVmData(Object* managed_thread, Thread* native_thread) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700443 gThread_vmData->SetInt(managed_thread, reinterpret_cast<uintptr_t>(native_thread));
Elliott Hughes93e74e82011-09-13 11:07:03 -0700444}
445
Elliott Hughesd369bb72011-09-12 14:41:14 -0700446void Thread::Create(Object* peer, size_t stack_size) {
447 CHECK(peer != NULL);
Elliott Hughesdcc24742011-09-07 14:02:44 -0700448
Elliott Hughesd369bb72011-09-12 14:41:14 -0700449 if (stack_size == 0) {
450 stack_size = Runtime::Current()->GetDefaultStackSize();
451 }
Carl Shapiro61e019d2011-07-14 16:53:09 -0700452
Elliott Hughes93e74e82011-09-13 11:07:03 -0700453 Thread* native_thread = new Thread;
454 native_thread->peer_ = peer;
455
456 // Thread.start is synchronized, so we know that vmData is 0,
457 // and know that we're not racing to assign it.
458 SetVmData(peer, native_thread);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700459
460 pthread_attr_t attr;
Elliott Hughes8d768a92011-09-14 16:35:25 -0700461 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new thread");
462 CHECK_PTHREAD_CALL(pthread_attr_setdetachstate, (&attr, PTHREAD_CREATE_DETACHED), "PTHREAD_CREATE_DETACHED");
463 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), stack_size);
464 CHECK_PTHREAD_CALL(pthread_create, (&native_thread->pthread_, &attr, Thread::CreateCallback, native_thread), "new thread");
465 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new thread");
Elliott Hughes93e74e82011-09-13 11:07:03 -0700466
467 // Let the child know when it's safe to start running.
468 Runtime::Current()->GetThreadList()->SignalGo(native_thread);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700469}
470
Elliott Hughes93e74e82011-09-13 11:07:03 -0700471void Thread::Attach(const Runtime* runtime) {
472 InitCpu();
473 InitFunctionPointers();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700474
Elliott Hughes93e74e82011-09-13 11:07:03 -0700475 thin_lock_id_ = Runtime::Current()->GetThreadList()->AllocThreadId();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700476
Elliott Hughes93e74e82011-09-13 11:07:03 -0700477 tid_ = ::art::GetTid();
478 pthread_ = pthread_self();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700479
Elliott Hughes93e74e82011-09-13 11:07:03 -0700480 InitStackHwm();
Carl Shapiro61e019d2011-07-14 16:53:09 -0700481
Elliott Hughes8d768a92011-09-14 16:35:25 -0700482 CHECK_PTHREAD_CALL(pthread_setspecific, (Thread::pthread_key_self_, this), "attach");
Elliott Hughesa5780da2011-07-17 11:39:39 -0700483
Elliott Hughes93e74e82011-09-13 11:07:03 -0700484 jni_env_ = new JNIEnvExt(this, runtime->GetJavaVM());
Elliott Hughes330304d2011-08-12 14:28:05 -0700485
Elliott Hughes93e74e82011-09-13 11:07:03 -0700486 runtime->GetThreadList()->Register(this);
487}
488
489Thread* Thread::Attach(const Runtime* runtime, const char* name, bool as_daemon) {
490 Thread* self = new Thread;
491 self->Attach(runtime);
492
493 self->SetState(Thread::kRunnable);
494
495 SetThreadName(name);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700496
497 // If we're the main thread, ClassLinker won't be created until after we're attached,
498 // so that thread needs a two-stage attach. Regular threads don't need this hack.
499 if (self->thin_lock_id_ != ThreadList::kMainId) {
500 self->CreatePeer(name, as_daemon);
501 }
502
503 return self;
504}
505
Elliott Hughesd369bb72011-09-12 14:41:14 -0700506jobject GetWellKnownThreadGroup(JNIEnv* env, const char* field_name) {
507 jclass thread_group_class = env->FindClass("java/lang/ThreadGroup");
508 jfieldID fid = env->GetStaticFieldID(thread_group_class, field_name, "Ljava/lang/ThreadGroup;");
509 jobject thread_group = env->GetStaticObjectField(thread_group_class, fid);
510 // This will be null in the compiler (and tests), but never in a running system.
511 //CHECK(thread_group != NULL) << "java.lang.ThreadGroup." << field_name << " not initialized";
512 return thread_group;
513}
514
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700515void Thread::CreatePeer(const char* name, bool as_daemon) {
516 ScopedThreadStateChange tsc(Thread::Current(), Thread::kNative);
517
518 JNIEnv* env = jni_env_;
519
Elliott Hughesd369bb72011-09-12 14:41:14 -0700520 const char* field_name = (GetThinLockId() == ThreadList::kMainId) ? "mMain" : "mSystem";
521 jobject thread_group = GetWellKnownThreadGroup(env, field_name);
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700522 jobject thread_name = env->NewStringUTF(name);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700523 jint thread_priority = GetNativePriority();
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700524 jboolean thread_is_daemon = as_daemon;
525
526 jclass c = env->FindClass("java/lang/Thread");
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700527 jmethodID mid = env->GetMethodID(c, "<init>", "(Ljava/lang/ThreadGroup;Ljava/lang/String;IZ)V");
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700528
Elliott Hughes8daa0922011-09-11 13:46:25 -0700529 jobject peer = env->NewObject(c, mid, thread_group, thread_name, thread_priority, thread_is_daemon);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700530
531 // Because we mostly run without code available (in the compiler, in tests), we
532 // manually assign the fields the constructor should have set.
533 // TODO: lose this.
534 jfieldID fid;
535 fid = env->GetFieldID(c, "group", "Ljava/lang/ThreadGroup;");
536 env->SetObjectField(peer, fid, thread_group);
537 fid = env->GetFieldID(c, "name", "Ljava/lang/String;");
538 env->SetObjectField(peer, fid, thread_name);
539 fid = env->GetFieldID(c, "priority", "I");
540 env->SetIntField(peer, fid, thread_priority);
541 fid = env->GetFieldID(c, "daemon", "Z");
542 env->SetBooleanField(peer, fid, thread_is_daemon);
543
544 peer_ = DecodeJObject(peer);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700545}
546
Elliott Hughesbe759c62011-09-08 19:38:21 -0700547void Thread::InitStackHwm() {
548 pthread_attr_t attributes;
Elliott Hughes8d768a92011-09-14 16:35:25 -0700549 CHECK_PTHREAD_CALL(pthread_getattr_np, (pthread_, &attributes), __FUNCTION__);
Elliott Hughesbe759c62011-09-08 19:38:21 -0700550
Elliott Hughesbe759c62011-09-08 19:38:21 -0700551 void* stack_base;
552 size_t stack_size;
Elliott Hughes8d768a92011-09-14 16:35:25 -0700553 CHECK_PTHREAD_CALL(pthread_attr_getstack, (&attributes, &stack_base, &stack_size), __FUNCTION__);
Elliott Hughesbe759c62011-09-08 19:38:21 -0700554
Elliott Hughesbe759c62011-09-08 19:38:21 -0700555 if (stack_size <= kStackOverflowReservedBytes) {
556 LOG(FATAL) << "attempt to attach a thread with a too-small stack (" << stack_size << " bytes)";
557 }
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700558
559 // stack_base is the "lowest addressable byte" of the stack.
560 // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room
561 // to throw a StackOverflowError.
buzbeecefd1872011-09-09 09:59:52 -0700562 stack_end_ = reinterpret_cast<byte*>(stack_base) + kStackOverflowReservedBytes;
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700563
564 // Sanity check.
565 int stack_variable;
566 CHECK_GT(&stack_variable, (void*) stack_end_);
Elliott Hughesbe759c62011-09-08 19:38:21 -0700567
Elliott Hughes8d768a92011-09-14 16:35:25 -0700568 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__);
Elliott Hughesbe759c62011-09-08 19:38:21 -0700569}
570
Elliott Hughesa0957642011-09-02 14:27:33 -0700571void Thread::Dump(std::ostream& os) const {
Elliott Hughesd92bec42011-09-02 17:04:36 -0700572 DumpState(os);
573 DumpStack(os);
Elliott Hughesa0957642011-09-02 14:27:33 -0700574}
575
Elliott Hughesd92bec42011-09-02 17:04:36 -0700576std::string GetSchedulerGroup(pid_t tid) {
577 // /proc/<pid>/group looks like this:
578 // 2:devices:/
579 // 1:cpuacct,cpu:/
580 // We want the third field from the line whose second field contains the "cpu" token.
581 std::string cgroup_file;
582 if (!ReadFileToString("/proc/self/cgroup", &cgroup_file)) {
583 return "";
584 }
585 std::vector<std::string> cgroup_lines;
586 Split(cgroup_file, '\n', cgroup_lines);
587 for (size_t i = 0; i < cgroup_lines.size(); ++i) {
588 std::vector<std::string> cgroup_fields;
589 Split(cgroup_lines[i], ':', cgroup_fields);
590 std::vector<std::string> cgroups;
591 Split(cgroup_fields[1], ',', cgroups);
592 for (size_t i = 0; i < cgroups.size(); ++i) {
593 if (cgroups[i] == "cpu") {
594 return cgroup_fields[2].substr(1); // Skip the leading slash.
595 }
596 }
597 }
598 return "";
599}
600
601void Thread::DumpState(std::ostream& os) const {
Elliott Hughesd369bb72011-09-12 14:41:14 -0700602 std::string thread_name("<native thread without managed peer>");
603 std::string group_name;
604 int priority;
605 bool is_daemon = false;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700606
Elliott Hughesd369bb72011-09-12 14:41:14 -0700607 if (peer_ != NULL) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700608 String* thread_name_string = reinterpret_cast<String*>(gThread_name->GetObject(peer_));
Elliott Hughesd369bb72011-09-12 14:41:14 -0700609 thread_name = (thread_name_string != NULL) ? thread_name_string->ToModifiedUtf8() : "<null>";
Elliott Hughes038a8062011-09-18 14:12:41 -0700610 priority = gThread_priority->GetInt(peer_);
611 is_daemon = gThread_daemon->GetBoolean(peer_);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700612
Elliott Hughes038a8062011-09-18 14:12:41 -0700613 Object* thread_group = gThread_group->GetObject(peer_);
Elliott Hughesd369bb72011-09-12 14:41:14 -0700614 if (thread_group != NULL) {
Elliott Hughes038a8062011-09-18 14:12:41 -0700615 String* group_name_string = reinterpret_cast<String*>(gThreadGroup_name->GetObject(thread_group));
Elliott Hughesd369bb72011-09-12 14:41:14 -0700616 group_name = (group_name_string != NULL) ? group_name_string->ToModifiedUtf8() : "<null>";
617 }
618 } else {
619 // 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 -0700620 std::string stats;
621 if (ReadFileToString(StringPrintf("/proc/self/task/%d/stat", GetTid()).c_str(), &stats)) {
622 size_t start = stats.find('(') + 1;
623 size_t end = stats.find(')') - start;
624 thread_name = stats.substr(start, end);
625 }
Elliott Hughesd369bb72011-09-12 14:41:14 -0700626 priority = GetNativePriority();
Elliott Hughesdcc24742011-09-07 14:02:44 -0700627 }
Elliott Hughesd92bec42011-09-02 17:04:36 -0700628
629 int policy;
630 sched_param sp;
Elliott Hughes8d768a92011-09-14 16:35:25 -0700631 CHECK_PTHREAD_CALL(pthread_getschedparam, (pthread_, &policy, &sp), __FUNCTION__);
Elliott Hughesd92bec42011-09-02 17:04:36 -0700632
633 std::string scheduler_group(GetSchedulerGroup(GetTid()));
634 if (scheduler_group.empty()) {
635 scheduler_group = "default";
636 }
637
Elliott Hughesd92bec42011-09-02 17:04:36 -0700638 os << '"' << thread_name << '"';
Elliott Hughesd369bb72011-09-12 14:41:14 -0700639 if (is_daemon) {
Elliott Hughesd92bec42011-09-02 17:04:36 -0700640 os << " daemon";
641 }
642 os << " prio=" << priority
Elliott Hughesdcc24742011-09-07 14:02:44 -0700643 << " tid=" << GetThinLockId()
Elliott Hughes93e74e82011-09-13 11:07:03 -0700644 << " " << GetState() << "\n";
Elliott Hughesd92bec42011-09-02 17:04:36 -0700645
Elliott Hughesd92bec42011-09-02 17:04:36 -0700646 int debug_suspend_count = 0; // TODO
Elliott Hughesd92bec42011-09-02 17:04:36 -0700647 os << " | group=\"" << group_name << "\""
Elliott Hughes8d768a92011-09-14 16:35:25 -0700648 << " sCount=" << suspend_count_
Elliott Hughesd92bec42011-09-02 17:04:36 -0700649 << " dsCount=" << debug_suspend_count
Elliott Hughesdcc24742011-09-07 14:02:44 -0700650 << " obj=" << reinterpret_cast<void*>(peer_)
Elliott Hughesd92bec42011-09-02 17:04:36 -0700651 << " self=" << reinterpret_cast<const void*>(this) << "\n";
652 os << " | sysTid=" << GetTid()
653 << " nice=" << getpriority(PRIO_PROCESS, GetTid())
654 << " sched=" << policy << "/" << sp.sched_priority
655 << " cgrp=" << scheduler_group
656 << " handle=" << GetImpl() << "\n";
657
658 // Grab the scheduler stats for this thread.
659 std::string scheduler_stats;
660 if (ReadFileToString(StringPrintf("/proc/self/task/%d/schedstat", GetTid()).c_str(), &scheduler_stats)) {
661 scheduler_stats.resize(scheduler_stats.size() - 1); // Lose the trailing '\n'.
662 } else {
663 scheduler_stats = "0 0 0";
664 }
665
666 int utime = 0;
667 int stime = 0;
668 int task_cpu = 0;
669 std::string stats;
670 if (ReadFileToString(StringPrintf("/proc/self/task/%d/stat", GetTid()).c_str(), &stats)) {
671 // Skip the command, which may contain spaces.
672 stats = stats.substr(stats.find(')') + 2);
673 // Extract the three fields we care about.
674 std::vector<std::string> fields;
675 Split(stats, ' ', fields);
676 utime = strtoull(fields[11].c_str(), NULL, 10);
677 stime = strtoull(fields[12].c_str(), NULL, 10);
678 task_cpu = strtoull(fields[36].c_str(), NULL, 10);
679 }
680
681 os << " | schedstat=( " << scheduler_stats << " )"
682 << " utm=" << utime
683 << " stm=" << stime
684 << " core=" << task_cpu
685 << " HZ=" << sysconf(_SC_CLK_TCK) << "\n";
686}
687
Elliott Hughesd369bb72011-09-12 14:41:14 -0700688struct StackDumpVisitor : public Thread::StackVisitor {
689 StackDumpVisitor(std::ostream& os) : os(os) {
690 }
691
Ian Rogersbdb03912011-09-14 00:55:44 -0700692 virtual ~StackDumpVisitor() {
Elliott Hughesd369bb72011-09-12 14:41:14 -0700693 }
694
Ian Rogersbdb03912011-09-14 00:55:44 -0700695 void VisitFrame(const Frame& frame, uintptr_t pc) {
Elliott Hughesd369bb72011-09-12 14:41:14 -0700696 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
697
698 Method* m = frame.GetMethod();
699 Class* c = m->GetDeclaringClass();
700 const DexFile& dex_file = class_linker->FindDexFile(c->GetDexCache());
701
702 os << " at " << PrettyMethod(m, false);
703 if (m->IsNative()) {
704 os << "(Native method)";
705 } else {
Ian Rogersbdb03912011-09-14 00:55:44 -0700706 int line_number = dex_file.GetLineNumFromPC(m, m->ToDexPC(pc));
Elliott Hughesd369bb72011-09-12 14:41:14 -0700707 os << "(" << c->GetSourceFile()->ToModifiedUtf8() << ":" << line_number << ")";
708 }
709 os << "\n";
710 }
711
712 std::ostream& os;
713};
714
Elliott Hughesd92bec42011-09-02 17:04:36 -0700715void Thread::DumpStack(std::ostream& os) const {
Elliott Hughesd369bb72011-09-12 14:41:14 -0700716 StackDumpVisitor dumper(os);
717 WalkStack(&dumper);
Elliott Hughese27955c2011-08-26 15:21:24 -0700718}
719
Elliott Hughes8d768a92011-09-14 16:35:25 -0700720Thread::State Thread::SetState(Thread::State new_state) {
721 Thread::State old_state = state_;
722 if (old_state == new_state) {
723 return old_state;
724 }
725
726 volatile void* raw = reinterpret_cast<volatile void*>(&state_);
727 volatile int32_t* addr = reinterpret_cast<volatile int32_t*>(raw);
728
729 if (new_state == Thread::kRunnable) {
730 /*
731 * Change our status to Thread::kRunnable. The transition requires
732 * that we check for pending suspension, because the VM considers
733 * us to be "asleep" in all other states, and another thread could
734 * be performing a GC now.
735 *
736 * The order of operations is very significant here. One way to
737 * do this wrong is:
738 *
739 * GCing thread Our thread (in kNative)
740 * ------------ ----------------------
741 * check suspend count (== 0)
742 * SuspendAllThreads()
743 * grab suspend-count lock
744 * increment all suspend counts
745 * release suspend-count lock
746 * check thread state (== kNative)
747 * all are suspended, begin GC
748 * set state to kRunnable
749 * (continue executing)
750 *
751 * We can correct this by grabbing the suspend-count lock and
752 * performing both of our operations (check suspend count, set
753 * state) while holding it, now we need to grab a mutex on every
754 * transition to kRunnable.
755 *
756 * What we do instead is change the order of operations so that
757 * the transition to kRunnable happens first. If we then detect
758 * that the suspend count is nonzero, we switch to kSuspended.
759 *
760 * Appropriate compiler and memory barriers are required to ensure
761 * that the operations are observed in the expected order.
762 *
763 * This does create a small window of opportunity where a GC in
764 * progress could observe what appears to be a running thread (if
765 * it happens to look between when we set to kRunnable and when we
766 * switch to kSuspended). At worst this only affects assertions
767 * and thread logging. (We could work around it with some sort
768 * of intermediate "pre-running" state that is generally treated
769 * as equivalent to running, but that doesn't seem worthwhile.)
770 *
771 * We can also solve this by combining the "status" and "suspend
772 * count" fields into a single 32-bit value. This trades the
773 * store/load barrier on transition to kRunnable for an atomic RMW
774 * op on all transitions and all suspend count updates (also, all
775 * accesses to status or the thread count require bit-fiddling).
776 * It also eliminates the brief transition through kRunnable when
777 * the thread is supposed to be suspended. This is possibly faster
778 * on SMP and slightly more correct, but less convenient.
779 */
780 android_atomic_acquire_store(new_state, addr);
781 if (ANNOTATE_UNPROTECTED_READ(suspend_count_) != 0) {
782 Runtime::Current()->GetThreadList()->FullSuspendCheck(this);
783 }
784 } else {
785 /*
786 * Not changing to Thread::kRunnable. No additional work required.
787 *
788 * We use a releasing store to ensure that, if we were runnable,
789 * any updates we previously made to objects on the managed heap
790 * will be observed before the state change.
791 */
792 android_atomic_release_store(new_state, addr);
793 }
794
795 return old_state;
796}
797
798void Thread::WaitUntilSuspended() {
799 // TODO: dalvik dropped the waiting thread's priority after a while.
800 // TODO: dalvik timed out and aborted.
801 useconds_t delay = 0;
802 while (GetState() == Thread::kRunnable) {
803 useconds_t new_delay = delay * 2;
804 CHECK_GE(new_delay, delay);
805 delay = new_delay;
806 if (delay == 0) {
807 sched_yield();
808 delay = 10000;
809 } else {
810 usleep(delay);
811 }
812 }
813}
814
Elliott Hughesbe759c62011-09-08 19:38:21 -0700815void Thread::ThreadExitCallback(void* arg) {
816 Thread* self = reinterpret_cast<Thread*>(arg);
817 LOG(FATAL) << "Native thread exited without calling DetachCurrentThread: " << *self;
Carl Shapirob5573532011-07-12 18:22:59 -0700818}
819
Elliott Hughesbe759c62011-09-08 19:38:21 -0700820void Thread::Startup() {
Carl Shapirob5573532011-07-12 18:22:59 -0700821 // Allocate a TLS slot.
Elliott Hughes8d768a92011-09-14 16:35:25 -0700822 CHECK_PTHREAD_CALL(pthread_key_create, (&Thread::pthread_key_self_, Thread::ThreadExitCallback), "self key");
Carl Shapirob5573532011-07-12 18:22:59 -0700823
824 // Double-check the TLS slot allocation.
825 if (pthread_getspecific(pthread_key_self_) != NULL) {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700826 LOG(FATAL) << "newly-created pthread TLS slot is not NULL";
Carl Shapirob5573532011-07-12 18:22:59 -0700827 }
Elliott Hughes038a8062011-09-18 14:12:41 -0700828}
Carl Shapirob5573532011-07-12 18:22:59 -0700829
Elliott Hughes038a8062011-09-18 14:12:41 -0700830void Thread::FinishStartup() {
831 // Finish attaching the main thread.
832 Thread::Current()->CreatePeer("main", false);
833
834 // Now the ClassLinker is ready, we can find the various Class*, Field*, and Method*s we need.
835 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
836 Class* boolean_class = class_linker->FindPrimitiveClass('Z');
837 Class* int_class = class_linker->FindPrimitiveClass('I');
838 Class* String_class = class_linker->FindSystemClass("Ljava/lang/String;");
839 Class* Thread_class = class_linker->FindSystemClass("Ljava/lang/Thread;");
840 Class* ThreadGroup_class = class_linker->FindSystemClass("Ljava/lang/ThreadGroup;");
841 Class* ThreadLock_class = class_linker->FindSystemClass("Ljava/lang/ThreadLock;");
Elliott Hughes29f27422011-09-18 16:02:18 -0700842 Class* UncaughtExceptionHandler_class = class_linker->FindSystemClass("Ljava/lang/Thread$UncaughtExceptionHandler;");
843 gThrowable = class_linker->FindSystemClass("Ljava/lang/Throwable;");
Elliott Hughes038a8062011-09-18 14:12:41 -0700844 gThread_daemon = Thread_class->FindDeclaredInstanceField("daemon", boolean_class);
845 gThread_group = Thread_class->FindDeclaredInstanceField("group", ThreadGroup_class);
846 gThread_lock = Thread_class->FindDeclaredInstanceField("lock", ThreadLock_class);
847 gThread_name = Thread_class->FindDeclaredInstanceField("name", String_class);
848 gThread_priority = Thread_class->FindDeclaredInstanceField("priority", int_class);
849 gThread_run = Thread_class->FindVirtualMethod("run", "()V");
Elliott Hughes29f27422011-09-18 16:02:18 -0700850 gThread_uncaughtHandler = Thread_class->FindDeclaredInstanceField("uncaughtHandler", UncaughtExceptionHandler_class);
Elliott Hughes038a8062011-09-18 14:12:41 -0700851 gThread_vmData = Thread_class->FindDeclaredInstanceField("vmData", int_class);
852 gThreadGroup_name = ThreadGroup_class->FindDeclaredInstanceField("name", String_class);
Elliott Hughes29f27422011-09-18 16:02:18 -0700853 gThreadGroup_removeThread = ThreadGroup_class->FindVirtualMethod("removeThread", "(Ljava/lang/Thread;)V");
854 gUncaughtExceptionHandler_uncaughtException =
855 UncaughtExceptionHandler_class->FindVirtualMethod("uncaughtException", "(Ljava/lang/Thread;Ljava/lang/Throwable;)V");
Carl Shapirob5573532011-07-12 18:22:59 -0700856}
857
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700858void Thread::Shutdown() {
Elliott Hughes8d768a92011-09-14 16:35:25 -0700859 CHECK_PTHREAD_CALL(pthread_key_delete, (Thread::pthread_key_self_), "self key");
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700860}
861
Elliott Hughesdcc24742011-09-07 14:02:44 -0700862Thread::Thread()
Elliott Hughes02b48d12011-09-07 17:15:51 -0700863 : peer_(NULL),
Elliott Hughes85d15452011-09-16 17:33:01 -0700864 wait_mutex_(new Mutex("Thread wait mutex")),
865 wait_cond_(new ConditionVariable("Thread wait condition variable")),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700866 wait_monitor_(NULL),
867 interrupted_(false),
Elliott Hughesdc33ad52011-09-16 19:46:51 -0700868 wait_next_(NULL),
869 card_table_(0),
Elliott Hughes8daa0922011-09-11 13:46:25 -0700870 stack_end_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700871 top_of_managed_stack_(),
Elliott Hughesdc33ad52011-09-16 19:46:51 -0700872 top_of_managed_stack_pc_(0),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700873 native_to_managed_record_(NULL),
874 top_sirt_(NULL),
875 jni_env_(NULL),
Elliott Hughes93e74e82011-09-13 11:07:03 -0700876 state_(Thread::kUnknown),
Elliott Hughesdc33ad52011-09-16 19:46:51 -0700877 self_(NULL),
878 runtime_(NULL),
Elliott Hughesdcc24742011-09-07 14:02:44 -0700879 exception_(NULL),
880 suspend_count_(0),
Elliott Hughes85d15452011-09-16 17:33:01 -0700881 class_loader_override_(NULL),
882 long_jump_context_(NULL) {
Elliott Hughesdcc24742011-09-07 14:02:44 -0700883}
884
Elliott Hughes02b48d12011-09-07 17:15:51 -0700885void MonitorExitVisitor(const Object* object, void*) {
886 Object* entered_monitor = const_cast<Object*>(object);
Elliott Hughes5f791332011-09-15 17:45:30 -0700887 entered_monitor->MonitorExit(Thread::Current());
Elliott Hughes02b48d12011-09-07 17:15:51 -0700888}
889
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700890Thread::~Thread() {
Elliott Hughes02b48d12011-09-07 17:15:51 -0700891 // On thread detach, all monitors entered with JNI MonitorEnter are automatically exited.
Elliott Hughes93e74e82011-09-13 11:07:03 -0700892 if (jni_env_ != NULL) {
893 jni_env_->monitors.VisitRoots(MonitorExitVisitor, NULL);
894 }
Elliott Hughes02b48d12011-09-07 17:15:51 -0700895
Elliott Hughes93e74e82011-09-13 11:07:03 -0700896 if (peer_ != NULL) {
Elliott Hughes29f27422011-09-18 16:02:18 -0700897 Object* group = gThread_group->GetObject(peer_);
898
899 // Handle any pending exception.
900 if (IsExceptionPending()) {
901 // Get and clear the exception.
902 Object* exception = GetException();
903 ClearException();
904
905 // If the thread has its own handler, use that.
906 Object* handler = gThread_uncaughtHandler->GetObject(peer_);
907 if (handler == NULL) {
908 // Otherwise use the thread group's default handler.
909 handler = group;
910 }
911
912 // Call the handler.
913 Method* m = handler->GetClass()->FindVirtualMethodForVirtualOrInterface(gUncaughtExceptionHandler_uncaughtException);
914 Object* args[2];
915 args[0] = peer_;
916 args[1] = exception;
917 m->Invoke(this, handler, reinterpret_cast<byte*>(&args), NULL);
918
919 // If the handler threw, clear that exception too.
920 ClearException();
921 }
922
923 // this.group.removeThread(this);
Elliott Hughes081be7f2011-09-18 16:50:26 -0700924 // group can be null if we're in the compiler or a test.
925 if (group != NULL) {
926 Method* m = group->GetClass()->FindVirtualMethodForVirtualOrInterface(gThreadGroup_removeThread);
927 Object* args = peer_;
928 m->Invoke(this, group, reinterpret_cast<byte*>(&args), NULL);
929 }
Elliott Hughes29f27422011-09-18 16:02:18 -0700930
931 // this.vmData = 0;
Elliott Hughes93e74e82011-09-13 11:07:03 -0700932 SetVmData(peer_, NULL);
Elliott Hughes02b48d12011-09-07 17:15:51 -0700933
Elliott Hughes29f27422011-09-18 16:02:18 -0700934 // TODO: say "bye" to the debugger.
935 //if (gDvm.debuggerConnected) {
936 // dvmDbgPostThreadDeath(self);
937 //}
Elliott Hughes02b48d12011-09-07 17:15:51 -0700938
Elliott Hughes29f27422011-09-18 16:02:18 -0700939 // Thread.join() is implemented as an Object.wait() on the Thread.lock
940 // object. Signal anyone who is waiting.
Elliott Hughes5f791332011-09-15 17:45:30 -0700941 Thread* self = Thread::Current();
Elliott Hughes038a8062011-09-18 14:12:41 -0700942 Object* lock = gThread_lock->GetObject(peer_);
943 // (This conditional is only needed for tests, where Thread.lock won't have been set.)
Elliott Hughes5f791332011-09-15 17:45:30 -0700944 if (lock != NULL) {
945 lock->MonitorEnter(self);
946 lock->NotifyAll();
947 lock->MonitorExit(self);
948 }
949 }
Elliott Hughes02b48d12011-09-07 17:15:51 -0700950
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700951 delete jni_env_;
Elliott Hughes02b48d12011-09-07 17:15:51 -0700952 jni_env_ = NULL;
953
954 SetState(Thread::kTerminated);
Elliott Hughes85d15452011-09-16 17:33:01 -0700955
956 delete wait_cond_;
957 delete wait_mutex_;
958
959 delete long_jump_context_;
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700960}
961
Ian Rogers408f79a2011-08-23 18:22:33 -0700962size_t Thread::NumSirtReferences() {
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700963 size_t count = 0;
Ian Rogers408f79a2011-08-23 18:22:33 -0700964 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->Link()) {
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700965 count += cur->NumberOfReferences();
966 }
967 return count;
968}
969
Ian Rogers408f79a2011-08-23 18:22:33 -0700970bool Thread::SirtContains(jobject obj) {
971 Object** sirt_entry = reinterpret_cast<Object**>(obj);
972 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->Link()) {
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700973 size_t num_refs = cur->NumberOfReferences();
Ian Rogers408f79a2011-08-23 18:22:33 -0700974 // A SIRT should always have a jobject/jclass as a native method is passed
975 // in a this pointer or a class
976 DCHECK_GT(num_refs, 0u);
Shih-wei Liao2f0ce9d2011-09-01 02:07:58 -0700977 if ((&cur->References()[0] <= sirt_entry) &&
978 (sirt_entry <= (&cur->References()[num_refs - 1]))) {
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700979 return true;
980 }
981 }
982 return false;
983}
984
Ian Rogers67375ac2011-09-14 00:55:44 -0700985void Thread::PopSirt() {
986 CHECK(top_sirt_ != NULL);
987 top_sirt_ = top_sirt_->Link();
988}
989
Ian Rogers408f79a2011-08-23 18:22:33 -0700990Object* Thread::DecodeJObject(jobject obj) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700991 DCHECK(CanAccessDirectReferences());
Ian Rogers408f79a2011-08-23 18:22:33 -0700992 if (obj == NULL) {
993 return NULL;
994 }
995 IndirectRef ref = reinterpret_cast<IndirectRef>(obj);
996 IndirectRefKind kind = GetIndirectRefKind(ref);
997 Object* result;
998 switch (kind) {
999 case kLocal:
1000 {
Elliott Hughes69f5bc62011-08-24 09:26:14 -07001001 IndirectReferenceTable& locals = jni_env_->locals;
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001002 result = const_cast<Object*>(locals.Get(ref));
Ian Rogers408f79a2011-08-23 18:22:33 -07001003 break;
1004 }
1005 case kGlobal:
1006 {
1007 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
1008 IndirectReferenceTable& globals = vm->globals;
1009 MutexLock mu(vm->globals_lock);
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001010 result = const_cast<Object*>(globals.Get(ref));
Ian Rogers408f79a2011-08-23 18:22:33 -07001011 break;
1012 }
1013 case kWeakGlobal:
1014 {
1015 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
1016 IndirectReferenceTable& weak_globals = vm->weak_globals;
1017 MutexLock mu(vm->weak_globals_lock);
Elliott Hughescf4c6c42011-09-01 15:16:42 -07001018 result = const_cast<Object*>(weak_globals.Get(ref));
Ian Rogers408f79a2011-08-23 18:22:33 -07001019 if (result == kClearedJniWeakGlobal) {
1020 // This is a special case where it's okay to return NULL.
1021 return NULL;
1022 }
1023 break;
1024 }
1025 case kSirtOrInvalid:
1026 default:
1027 // TODO: make stack indirect reference table lookup more efficient
1028 // Check if this is a local reference in the SIRT
1029 if (SirtContains(obj)) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001030 result = *reinterpret_cast<Object**>(obj); // Read from SIRT
Elliott Hughesc5bfa8f2011-08-30 14:32:49 -07001031 } else if (jni_env_->work_around_app_jni_bugs) {
Ian Rogers408f79a2011-08-23 18:22:33 -07001032 // Assume an invalid local reference is actually a direct pointer.
1033 result = reinterpret_cast<Object*>(obj);
1034 } else {
Elliott Hughesa2501992011-08-26 19:39:54 -07001035 result = kInvalidIndirectRefObject;
Ian Rogers408f79a2011-08-23 18:22:33 -07001036 }
1037 }
1038
1039 if (result == NULL) {
Elliott Hughesa2501992011-08-26 19:39:54 -07001040 LOG(ERROR) << "JNI ERROR (app bug): use of deleted " << kind << ": " << obj;
1041 JniAbort(NULL);
1042 } else {
1043 if (result != kInvalidIndirectRefObject) {
1044 Heap::VerifyObject(result);
1045 }
Ian Rogers408f79a2011-08-23 18:22:33 -07001046 }
Ian Rogers408f79a2011-08-23 18:22:33 -07001047 return result;
1048}
1049
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001050class CountStackDepthVisitor : public Thread::StackVisitor {
1051 public:
Elliott Hughes29f27422011-09-18 16:02:18 -07001052 CountStackDepthVisitor() : depth_(0), skip_depth_(0), skipping_(true) {}
Elliott Hughesd369bb72011-09-12 14:41:14 -07001053
Elliott Hughes29f27422011-09-18 16:02:18 -07001054 virtual void VisitFrame(const Frame& frame, uintptr_t pc) {
1055 // We want to skip frames up to and including the exception's constructor.
Brian Carlstrom25c33252011-09-18 15:58:35 -07001056 DCHECK(gThrowable != NULL);
Elliott Hughes29f27422011-09-18 16:02:18 -07001057 if (skipping_ && !gThrowable->IsAssignableFrom(frame.GetMethod()->GetDeclaringClass())) {
1058 skipping_ = false;
1059 }
1060 if (!skipping_) {
1061 ++depth_;
1062 } else {
1063 ++skip_depth_;
1064 }
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001065 }
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001066
1067 int GetDepth() const {
Ian Rogersaaa20802011-09-11 21:47:37 -07001068 return depth_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001069 }
1070
Elliott Hughes29f27422011-09-18 16:02:18 -07001071 int GetSkipDepth() const {
1072 return skip_depth_;
1073 }
1074
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001075 private:
Ian Rogersaaa20802011-09-11 21:47:37 -07001076 uint32_t depth_;
Elliott Hughes29f27422011-09-18 16:02:18 -07001077 uint32_t skip_depth_;
1078 bool skipping_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001079};
1080
Ian Rogersaaa20802011-09-11 21:47:37 -07001081class BuildInternalStackTraceVisitor : public Thread::StackVisitor {
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001082 public:
Elliott Hughes29f27422011-09-18 16:02:18 -07001083 explicit BuildInternalStackTraceVisitor(int depth, int skip_depth, ScopedJniThreadState& ts)
1084 : skip_depth_(skip_depth), count_(0) {
Ian Rogersaaa20802011-09-11 21:47:37 -07001085 // Allocate method trace with an extra slot that will hold the PC trace
1086 method_trace_ = Runtime::Current()->GetClassLinker()->
1087 AllocObjectArray<Object>(depth + 1);
1088 // Register a local reference as IntArray::Alloc may trigger GC
1089 local_ref_ = AddLocalReference<jobject>(ts.Env(), method_trace_);
1090 pc_trace_ = IntArray::Alloc(depth);
1091#ifdef MOVING_GARBAGE_COLLECTOR
1092 // Re-read after potential GC
1093 method_trace = Decode<ObjectArray<Object>*>(ts.Env(), local_ref_);
1094#endif
1095 // Save PC trace in last element of method trace, also places it into the
1096 // object graph.
1097 method_trace_->Set(depth, pc_trace_);
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001098 }
1099
Ian Rogersaaa20802011-09-11 21:47:37 -07001100 virtual ~BuildInternalStackTraceVisitor() {}
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001101
Ian Rogersbdb03912011-09-14 00:55:44 -07001102 virtual void VisitFrame(const Frame& frame, uintptr_t pc) {
Elliott Hughes29f27422011-09-18 16:02:18 -07001103 if (skip_depth_ > 0) {
1104 skip_depth_--;
1105 return;
1106 }
Ian Rogersaaa20802011-09-11 21:47:37 -07001107 method_trace_->Set(count_, frame.GetMethod());
Ian Rogersbdb03912011-09-14 00:55:44 -07001108 pc_trace_->Set(count_, pc);
Ian Rogersaaa20802011-09-11 21:47:37 -07001109 ++count_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001110 }
1111
Ian Rogersaaa20802011-09-11 21:47:37 -07001112 jobject GetInternalStackTrace() const {
1113 return local_ref_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001114 }
1115
1116 private:
Elliott Hughes29f27422011-09-18 16:02:18 -07001117 // How many more frames to skip.
1118 int32_t skip_depth_;
Ian Rogersaaa20802011-09-11 21:47:37 -07001119 // Current position down stack trace
1120 uint32_t count_;
1121 // Array of return PC values
1122 IntArray* pc_trace_;
1123 // An array of the methods on the stack, the last entry is a reference to the
1124 // PC trace
1125 ObjectArray<Object>* method_trace_;
1126 // Local indirect reference table entry for method trace
1127 jobject local_ref_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001128};
1129
Ian Rogersaaa20802011-09-11 21:47:37 -07001130void Thread::WalkStack(StackVisitor* visitor) const {
Elliott Hughesd369bb72011-09-12 14:41:14 -07001131 Frame frame = GetTopOfStack();
Ian Rogersbdb03912011-09-14 00:55:44 -07001132 uintptr_t pc = top_of_managed_stack_pc_;
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001133 // TODO: enable this CHECK after native_to_managed_record_ is initialized during startup.
1134 // CHECK(native_to_managed_record_ != NULL);
1135 NativeToManagedRecord* record = native_to_managed_record_;
1136
Ian Rogersbdb03912011-09-14 00:55:44 -07001137 while (frame.GetSP() != 0) {
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001138 for ( ; frame.GetMethod() != 0; frame.Next()) {
Ian Rogersbdb03912011-09-14 00:55:44 -07001139 DCHECK(frame.GetMethod()->IsWithinCode(pc));
1140 visitor->VisitFrame(frame, pc);
1141 pc = frame.GetReturnPC();
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001142 }
1143 if (record == NULL) {
1144 break;
1145 }
Ian Rogersbdb03912011-09-14 00:55:44 -07001146 // last_tos should return Frame instead of sp?
1147 frame.SetSP(reinterpret_cast<art::Method**>(record->last_top_of_managed_stack_));
1148 pc = record->last_top_of_managed_stack_pc_;
1149 record = record->link_;
1150 }
1151}
1152
Ian Rogers67375ac2011-09-14 00:55:44 -07001153void Thread::WalkStackUntilUpCall(StackVisitor* visitor, bool include_upcall) const {
Ian Rogersbdb03912011-09-14 00:55:44 -07001154 Frame frame = GetTopOfStack();
1155 uintptr_t pc = top_of_managed_stack_pc_;
1156
1157 if (frame.GetSP() != 0) {
1158 for ( ; frame.GetMethod() != 0; frame.Next()) {
Ian Rogers67375ac2011-09-14 00:55:44 -07001159 DCHECK(frame.GetMethod()->IsWithinCode(pc));
Ian Rogersbdb03912011-09-14 00:55:44 -07001160 visitor->VisitFrame(frame, pc);
1161 pc = frame.GetReturnPC();
1162 }
Ian Rogers67375ac2011-09-14 00:55:44 -07001163 if (include_upcall) {
1164 visitor->VisitFrame(frame, pc);
1165 }
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001166 }
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001167}
1168
Ian Rogersaaa20802011-09-11 21:47:37 -07001169jobject Thread::CreateInternalStackTrace() const {
1170 // Compute depth of stack
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001171 CountStackDepthVisitor count_visitor;
1172 WalkStack(&count_visitor);
1173 int32_t depth = count_visitor.GetDepth();
Elliott Hughes29f27422011-09-18 16:02:18 -07001174 int32_t skip_depth = count_visitor.GetSkipDepth();
Shih-wei Liao44175362011-08-28 16:59:17 -07001175
Ian Rogersaaa20802011-09-11 21:47:37 -07001176 // Transition into runnable state to work on Object*/Array*
1177 ScopedJniThreadState ts(jni_env_);
1178
1179 // Build internal stack trace
Elliott Hughes29f27422011-09-18 16:02:18 -07001180 BuildInternalStackTraceVisitor build_trace_visitor(depth, skip_depth, ts);
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001181 WalkStack(&build_trace_visitor);
Shih-wei Liao44175362011-08-28 16:59:17 -07001182
Ian Rogersaaa20802011-09-11 21:47:37 -07001183 return build_trace_visitor.GetInternalStackTrace();
1184}
1185
1186jobjectArray Thread::InternalStackTraceToStackTraceElementArray(jobject internal,
1187 JNIEnv* env) {
1188 // Transition into runnable state to work on Object*/Array*
1189 ScopedJniThreadState ts(env);
1190
1191 // Decode the internal stack trace into the depth, method trace and PC trace
1192 ObjectArray<Object>* method_trace =
1193 down_cast<ObjectArray<Object>*>(Decode<Object*>(ts.Env(), internal));
1194 int32_t depth = method_trace->GetLength()-1;
1195 IntArray* pc_trace = down_cast<IntArray*>(method_trace->Get(depth));
1196
1197 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1198
1199 // Create java_trace array and place in local reference table
1200 ObjectArray<StackTraceElement>* java_traces =
1201 class_linker->AllocStackTraceElementArray(depth);
1202 jobjectArray result = AddLocalReference<jobjectArray>(ts.Env(), java_traces);
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001203
Shih-wei Liao9b576b42011-08-29 01:45:07 -07001204 for (int32_t i = 0; i < depth; ++i) {
Ian Rogersaaa20802011-09-11 21:47:37 -07001205 // Prepare parameters for StackTraceElement(String cls, String method, String file, int line)
1206 Method* method = down_cast<Method*>(method_trace->Get(i));
1207 uint32_t native_pc = pc_trace->Get(i);
1208 Class* klass = method->GetDeclaringClass();
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001209 const DexFile& dex_file = class_linker->FindDexFile(klass->GetDexCache());
Elliott Hughes38933572011-09-16 12:29:03 -07001210 std::string class_name(PrettyDescriptor(klass->GetDescriptor()));
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001211
Ian Rogersaaa20802011-09-11 21:47:37 -07001212 // Allocate element, potentially triggering GC
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001213 StackTraceElement* obj =
Elliott Hughes38933572011-09-16 12:29:03 -07001214 StackTraceElement::Alloc(String::AllocFromModifiedUtf8(class_name.c_str()),
Shih-wei Liao44175362011-08-28 16:59:17 -07001215 method->GetName(),
Brian Carlstrom4b620ff2011-09-11 01:11:01 -07001216 klass->GetSourceFile(),
Shih-wei Liao44175362011-08-28 16:59:17 -07001217 dex_file.GetLineNumFromPC(method,
Ian Rogersaaa20802011-09-11 21:47:37 -07001218 method->ToDexPC(native_pc)));
1219#ifdef MOVING_GARBAGE_COLLECTOR
1220 // Re-read after potential GC
1221 java_traces = Decode<ObjectArray<Object>*>(ts.Env(), result);
1222 method_trace = down_cast<ObjectArray<Object>*>(Decode<Object*>(ts.Env(), internal));
1223 pc_trace = down_cast<IntArray*>(method_trace->Get(depth));
1224#endif
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001225 java_traces->Set(i, obj);
1226 }
Ian Rogersaaa20802011-09-11 21:47:37 -07001227 return result;
Shih-wei Liao55df06b2011-08-26 14:39:27 -07001228}
1229
Elliott Hughese5b0dc82011-08-23 09:59:02 -07001230void Thread::ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...) {
Elliott Hughes37f7a402011-08-22 18:56:01 -07001231 std::string msg;
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001232 va_list args;
1233 va_start(args, fmt);
Elliott Hughes37f7a402011-08-22 18:56:01 -07001234 StringAppendV(&msg, fmt, args);
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001235 va_end(args);
Elliott Hughes37f7a402011-08-22 18:56:01 -07001236
Elliott Hughese5b0dc82011-08-23 09:59:02 -07001237 // Convert "Ljava/lang/Exception;" into JNI-style "java/lang/Exception".
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001238 CHECK_EQ('L', exception_class_descriptor[0]);
Elliott Hughese5b0dc82011-08-23 09:59:02 -07001239 std::string descriptor(exception_class_descriptor + 1);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07001240 CHECK_EQ(';', descriptor[descriptor.length() - 1]);
Elliott Hughese5b0dc82011-08-23 09:59:02 -07001241 descriptor.erase(descriptor.length() - 1);
1242
1243 JNIEnv* env = GetJniEnv();
1244 jclass exception_class = env->FindClass(descriptor.c_str());
1245 CHECK(exception_class != NULL) << "descriptor=\"" << descriptor << "\"";
1246 int rc = env->ThrowNew(exception_class, msg.c_str());
1247 CHECK_EQ(rc, JNI_OK);
Elliott Hughesa5b897e2011-08-16 11:33:06 -07001248}
1249
Elliott Hughes79082e32011-08-25 12:07:32 -07001250void Thread::ThrowOutOfMemoryError() {
1251 UNIMPLEMENTED(FATAL);
1252}
1253
Ian Rogersbdb03912011-09-14 00:55:44 -07001254Method* Thread::CalleeSaveMethod() const {
1255 // TODO: we should only allocate this once
Ian Rogersbdb03912011-09-14 00:55:44 -07001256 Method* method = Runtime::Current()->GetClassLinker()->AllocMethod();
Ian Rogers67375ac2011-09-14 00:55:44 -07001257#if defined(__arm__)
Ian Rogersbdb03912011-09-14 00:55:44 -07001258 method->SetCode(NULL, art::kThumb2, NULL);
1259 method->SetFrameSizeInBytes(64);
1260 method->SetReturnPcOffsetInBytes(60);
Ian Rogers67375ac2011-09-14 00:55:44 -07001261 method->SetCoreSpillMask((1 << art::arm::R1) |
1262 (1 << art::arm::R2) |
1263 (1 << art::arm::R3) |
1264 (1 << art::arm::R4) |
1265 (1 << art::arm::R5) |
1266 (1 << art::arm::R6) |
1267 (1 << art::arm::R7) |
1268 (1 << art::arm::R8) |
1269 (1 << art::arm::R9) |
1270 (1 << art::arm::R10) |
1271 (1 << art::arm::R11) |
1272 (1 << art::arm::LR));
Ian Rogersbdb03912011-09-14 00:55:44 -07001273 method->SetFpSpillMask(0);
Ian Rogers67375ac2011-09-14 00:55:44 -07001274#elif defined(__i386__)
1275 method->SetCode(NULL, art::kX86, NULL);
1276 method->SetFrameSizeInBytes(32);
1277 method->SetReturnPcOffsetInBytes(28);
1278 method->SetCoreSpillMask((1 << art::x86::EBX) |
1279 (1 << art::x86::EBP) |
1280 (1 << art::x86::ESI) |
1281 (1 << art::x86::EDI));
1282 method->SetFpSpillMask(0);
1283#else
1284 UNIMPLEMENTED(FATAL);
1285#endif
Ian Rogersbdb03912011-09-14 00:55:44 -07001286 return method;
1287}
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001288
Ian Rogersbdb03912011-09-14 00:55:44 -07001289class CatchBlockStackVisitor : public Thread::StackVisitor {
1290 public:
1291 CatchBlockStackVisitor(Class* to_find, Context* ljc)
Ian Rogers67375ac2011-09-14 00:55:44 -07001292 : found_(false), to_find_(to_find), long_jump_context_(ljc), native_method_count_(0) {
1293#ifndef NDEBUG
1294 handler_pc_ = 0xEBADC0DE;
1295 handler_frame_.SetSP(reinterpret_cast<Method**>(0xEBADF00D));
1296#endif
1297 }
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001298
Ian Rogersbdb03912011-09-14 00:55:44 -07001299 virtual void VisitFrame(const Frame& fr, uintptr_t pc) {
1300 if (!found_) {
Ian Rogersbdb03912011-09-14 00:55:44 -07001301 Method* method = fr.GetMethod();
Ian Rogers67375ac2011-09-14 00:55:44 -07001302 if (method == NULL) {
1303 // This is the upcall, we remember the frame and last_pc so that we may
1304 // long jump to them
1305 handler_pc_ = pc;
1306 handler_frame_ = fr;
1307 return;
Ian Rogersbdb03912011-09-14 00:55:44 -07001308 }
Ian Rogers67375ac2011-09-14 00:55:44 -07001309 uint32_t dex_pc = DexFile::kDexNoIndex;
1310 if (pc > 0) {
1311 if (method->IsNative()) {
1312 native_method_count_++;
1313 } else {
1314 // Move the PC back 2 bytes as a call will frequently terminate the
1315 // decoding of a particular instruction and we want to make sure we
1316 // get the Dex PC of the instruction with the call and not the
1317 // instruction following.
1318 pc -= 2;
1319 dex_pc = method->ToDexPC(pc);
1320 }
1321 }
Ian Rogersbdb03912011-09-14 00:55:44 -07001322 if (dex_pc != DexFile::kDexNoIndex) {
1323 uint32_t found_dex_pc = method->FindCatchBlock(to_find_, dex_pc);
1324 if (found_dex_pc != DexFile::kDexNoIndex) {
1325 found_ = true;
Ian Rogers67375ac2011-09-14 00:55:44 -07001326 handler_pc_ = method->ToNativePC(found_dex_pc);
1327 handler_frame_ = fr;
Ian Rogersbdb03912011-09-14 00:55:44 -07001328 }
1329 }
1330 if (!found_) {
1331 // Caller may be handler, fill in callee saves in context
1332 long_jump_context_->FillCalleeSaves(fr);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001333 }
1334 }
1335 }
Ian Rogersbdb03912011-09-14 00:55:44 -07001336
1337 // Did we find a catch block yet?
1338 bool found_;
1339 // The type of the exception catch block to find
1340 Class* to_find_;
1341 // Frame with found handler or last frame if no handler found
1342 Frame handler_frame_;
Ian Rogers67375ac2011-09-14 00:55:44 -07001343 // PC to branch to for the handler
1344 uintptr_t handler_pc_;
Ian Rogersbdb03912011-09-14 00:55:44 -07001345 // Context that will be the target of the long jump
1346 Context* long_jump_context_;
Ian Rogers67375ac2011-09-14 00:55:44 -07001347 // Number of native methods passed in crawl (equates to number of SIRTs to pop)
1348 uint32_t native_method_count_;
Ian Rogersbdb03912011-09-14 00:55:44 -07001349};
1350
1351void Thread::DeliverException(Throwable* exception) {
1352 SetException(exception); // Set exception on thread
1353
1354 Context* long_jump_context = GetLongJumpContext();
1355 CatchBlockStackVisitor catch_finder(exception->GetClass(), long_jump_context);
Ian Rogers67375ac2011-09-14 00:55:44 -07001356 WalkStackUntilUpCall(&catch_finder, true);
Ian Rogersbdb03912011-09-14 00:55:44 -07001357
Ian Rogers67375ac2011-09-14 00:55:44 -07001358 // Pop any SIRT
1359 if (catch_finder.native_method_count_ == 1) {
1360 PopSirt();
Ian Rogersbdb03912011-09-14 00:55:44 -07001361 } else {
Ian Rogersad42e132011-09-17 20:23:33 -07001362 // We only expect the stack crawl to have passed 1 native method as it's terminated
1363 // by an up call
Ian Rogers67375ac2011-09-14 00:55:44 -07001364 DCHECK_EQ(catch_finder.native_method_count_, 0u);
Ian Rogersbdb03912011-09-14 00:55:44 -07001365 }
Ian Rogers67375ac2011-09-14 00:55:44 -07001366 long_jump_context->SetSP(reinterpret_cast<intptr_t>(catch_finder.handler_frame_.GetSP()));
1367 long_jump_context->SetPC(catch_finder.handler_pc_);
Ian Rogersbdb03912011-09-14 00:55:44 -07001368 long_jump_context->DoLongJump();
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001369}
1370
Ian Rogersbdb03912011-09-14 00:55:44 -07001371Context* Thread::GetLongJumpContext() {
Elliott Hughes85d15452011-09-16 17:33:01 -07001372 Context* result = long_jump_context_;
Ian Rogersbdb03912011-09-14 00:55:44 -07001373 if (result == NULL) {
1374 result = Context::Create();
Elliott Hughes85d15452011-09-16 17:33:01 -07001375 long_jump_context_ = result;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001376 }
Ian Rogersbdb03912011-09-14 00:55:44 -07001377 return result;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001378}
1379
Elliott Hughes5f791332011-09-15 17:45:30 -07001380bool Thread::HoldsLock(Object* object) {
1381 if (object == NULL) {
1382 return false;
1383 }
1384 return object->GetLockOwner() == thin_lock_id_;
1385}
1386
Elliott Hughes038a8062011-09-18 14:12:41 -07001387bool Thread::IsDaemon() {
1388 return gThread_daemon->GetBoolean(peer_);
1389}
1390
Elliott Hughes410c0c82011-09-01 17:58:25 -07001391void Thread::VisitRoots(Heap::RootVisitor* visitor, void* arg) const {
Elliott Hughesd369bb72011-09-12 14:41:14 -07001392 if (exception_ != NULL) {
1393 visitor(exception_, arg);
1394 }
1395 if (peer_ != NULL) {
1396 visitor(peer_, arg);
1397 }
Elliott Hughes410c0c82011-09-01 17:58:25 -07001398 jni_env_->locals.VisitRoots(visitor, arg);
1399 jni_env_->monitors.VisitRoots(visitor, arg);
1400 // visitThreadStack(visitor, thread, arg);
1401 UNIMPLEMENTED(WARNING) << "some per-Thread roots not visited";
1402}
1403
Ian Rogersb033c752011-07-20 12:22:35 -07001404static const char* kStateNames[] = {
Elliott Hughes93e74e82011-09-13 11:07:03 -07001405 "Terminated",
Ian Rogersb033c752011-07-20 12:22:35 -07001406 "Runnable",
Elliott Hughes93e74e82011-09-13 11:07:03 -07001407 "TimedWaiting",
Ian Rogersb033c752011-07-20 12:22:35 -07001408 "Blocked",
1409 "Waiting",
Elliott Hughes93e74e82011-09-13 11:07:03 -07001410 "Initializing",
1411 "Starting",
Ian Rogersb033c752011-07-20 12:22:35 -07001412 "Native",
Elliott Hughes93e74e82011-09-13 11:07:03 -07001413 "VmWait",
1414 "Suspended",
Ian Rogersb033c752011-07-20 12:22:35 -07001415};
1416std::ostream& operator<<(std::ostream& os, const Thread::State& state) {
Elliott Hughes93e74e82011-09-13 11:07:03 -07001417 int int_state = static_cast<int>(state);
1418 if (state >= Thread::kTerminated && state <= Thread::kSuspended) {
1419 os << kStateNames[int_state];
Ian Rogersb033c752011-07-20 12:22:35 -07001420 } else {
Elliott Hughes93e74e82011-09-13 11:07:03 -07001421 os << "State[" << int_state << "]";
Ian Rogersb033c752011-07-20 12:22:35 -07001422 }
1423 return os;
1424}
1425
Elliott Hughes330304d2011-08-12 14:28:05 -07001426std::ostream& operator<<(std::ostream& os, const Thread& thread) {
1427 os << "Thread[" << &thread
Elliott Hughese27955c2011-08-26 15:21:24 -07001428 << ",pthread_t=" << thread.GetImpl()
1429 << ",tid=" << thread.GetTid()
Elliott Hughesdcc24742011-09-07 14:02:44 -07001430 << ",id=" << thread.GetThinLockId()
Elliott Hughes8daa0922011-09-11 13:46:25 -07001431 << ",state=" << thread.GetState()
1432 << ",peer=" << thread.GetPeer()
1433 << "]";
Elliott Hughes330304d2011-08-12 14:28:05 -07001434 return os;
1435}
1436
Elliott Hughes8daa0922011-09-11 13:46:25 -07001437} // namespace art