| Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2008 The Android Open Source Project | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
| Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 17 | #include "java_lang_Throwable.h" | 
|  | 18 |  | 
| Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 19 | #include "jni_internal.h" | 
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 20 | #include "scoped_fast_native_object_access.h" | 
| Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 21 | #include "thread.h" | 
| Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 22 |  | 
| Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 23 | namespace art { | 
|  | 24 |  | 
| Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 25 | static jobject Throwable_nativeFillInStackTrace(JNIEnv* env, jclass) { | 
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 26 | ScopedFastNativeObjectAccess soa(env); | 
| Sebastien Hertz | ee1d79a | 2014-02-21 15:46:30 +0100 | [diff] [blame] | 27 | return soa.Self()->CreateInternalStackTrace<false>(soa); | 
| Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 28 | } | 
|  | 29 |  | 
| Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 30 | static jobjectArray Throwable_nativeGetStackTrace(JNIEnv* env, jclass, jobject javaStackState) { | 
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 31 | if (javaStackState == nullptr) { | 
|  | 32 | return nullptr; | 
| Jesse Wilson | 32f8569 | 2011-11-22 11:00:41 -0500 | [diff] [blame] | 33 | } | 
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 34 | ScopedFastNativeObjectAccess soa(env); | 
|  | 35 | return Thread::InternalStackTraceToStackTraceElementArray(soa, javaStackState); | 
| Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 36 | } | 
|  | 37 |  | 
| Elliott Hughes | 0512f02 | 2012-03-15 22:10:52 -0700 | [diff] [blame] | 38 | static JNINativeMethod gMethods[] = { | 
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 39 | NATIVE_METHOD(Throwable, nativeFillInStackTrace, "!()Ljava/lang/Object;"), | 
|  | 40 | NATIVE_METHOD(Throwable, nativeGetStackTrace, "!(Ljava/lang/Object;)[Ljava/lang/StackTraceElement;"), | 
| Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 41 | }; | 
|  | 42 |  | 
| Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 43 | void register_java_lang_Throwable(JNIEnv* env) { | 
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 44 | REGISTER_NATIVE_METHODS("java/lang/Throwable"); | 
| Elliott Hughes | 1240dad | 2011-09-09 16:24:50 -0700 | [diff] [blame] | 45 | } | 
|  | 46 |  | 
|  | 47 | }  // namespace art |