Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_MIRROR_THROWABLE_H_ |
| 18 | #define ART_RUNTIME_MIRROR_THROWABLE_H_ |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 19 | |
| 20 | #include "object.h" |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 21 | #include "object_callbacks.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 22 | #include "string.h" |
| 23 | |
| 24 | namespace art { |
| 25 | |
| 26 | struct ThrowableOffsets; |
| 27 | |
| 28 | namespace mirror { |
| 29 | |
| 30 | // C++ mirror of java.lang.Throwable |
| 31 | class MANAGED Throwable : public Object { |
| 32 | public: |
| 33 | void SetDetailMessage(String* new_detail_message) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 34 | if (Runtime::Current()->IsActiveTransaction()) { |
| 35 | SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), new_detail_message, |
| 36 | false); |
| 37 | } else { |
| 38 | SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), new_detail_message, |
| 39 | false); |
| 40 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 41 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 42 | String* GetDetailMessage() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 43 | return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), false); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 44 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 45 | std::string Dump() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 46 | |
| 47 | // This is a runtime version of initCause, you shouldn't use it if initCause may have been |
| 48 | // overridden. Also it asserts rather than throwing exceptions. Currently this is only used |
| 49 | // in cases like the verifier where the checks cannot fail and initCause isn't overridden. |
| 50 | void SetCause(Throwable* cause) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 51 | bool IsCheckedException() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 52 | |
| 53 | static Class* GetJavaLangThrowable() { |
| 54 | DCHECK(java_lang_Throwable_ != NULL); |
| 55 | return java_lang_Throwable_; |
| 56 | } |
| 57 | |
| 58 | static void SetClass(Class* java_lang_Throwable); |
| 59 | static void ResetClass(); |
Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 60 | static void VisitRoots(RootCallback* callback, void* arg) |
Mathieu Chartier | c528dba | 2013-11-26 12:00:11 -0800 | [diff] [blame] | 61 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 62 | |
| 63 | private: |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 64 | Object* GetStackState() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 65 | return GetFieldObject<Object>(OFFSET_OF_OBJECT_MEMBER(Throwable, stack_state_), true); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses". |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 69 | HeapReference<Throwable> cause_; |
| 70 | HeapReference<String> detail_message_; |
| 71 | HeapReference<Object> stack_state_; // Note this is Java volatile: |
| 72 | HeapReference<Object> stack_trace_; |
| 73 | HeapReference<Object> suppressed_exceptions_; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 74 | |
| 75 | static Class* java_lang_Throwable_; |
| 76 | |
| 77 | friend struct art::ThrowableOffsets; // for verifying offset information |
| 78 | DISALLOW_IMPLICIT_CONSTRUCTORS(Throwable); |
| 79 | }; |
| 80 | |
| 81 | } // namespace mirror |
| 82 | } // namespace art |
| 83 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 84 | #endif // ART_RUNTIME_MIRROR_THROWABLE_H_ |