blob: 68c176a1da5b50f3f059a89c738c053ce9af35c6 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
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 Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_MIRROR_THROWABLE_H_
18#define ART_RUNTIME_MIRROR_THROWABLE_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
20#include "object.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021
22namespace art {
23
Andreas Gampe5d08fcc2017-06-05 17:56:46 -070024class RootVisitor;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025struct ThrowableOffsets;
26
27namespace mirror {
28
Andreas Gampe5d08fcc2017-06-05 17:56:46 -070029class String;
30
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031// C++ mirror of java.lang.Throwable
32class MANAGED Throwable : public Object {
33 public:
Mathieu Chartier31e88222016-10-14 18:43:19 -070034 void SetDetailMessage(ObjPtr<String> new_detail_message) REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070035
Vladimir Marko3b458902019-03-26 17:08:41 +000036 ObjPtr<String> GetDetailMessage() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070037
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070038 std::string Dump() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039
40 // This is a runtime version of initCause, you shouldn't use it if initCause may have been
41 // overridden. Also it asserts rather than throwing exceptions. Currently this is only used
42 // in cases like the verifier where the checks cannot fail and initCause isn't overridden.
Mathieu Chartier31e88222016-10-14 18:43:19 -070043 void SetCause(ObjPtr<Throwable> cause) REQUIRES_SHARED(Locks::mutator_lock_);
44 void SetStackState(ObjPtr<Object> state) REQUIRES_SHARED(Locks::mutator_lock_);
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070045 bool IsCheckedException() REQUIRES_SHARED(Locks::mutator_lock_);
Orion Hodsona5dca522018-02-27 12:42:11 +000046 bool IsError() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047
Andreas Gampebdf7f1c2016-08-30 16:38:47 -070048 int32_t GetStackDepth() REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffray7642cfc2015-02-26 10:56:09 +000049
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080050 private:
Vladimir Marko3b458902019-03-26 17:08:41 +000051 ObjPtr<Object> GetStackState() REQUIRES_SHARED(Locks::mutator_lock_);
52 ObjPtr<Object> GetStackTrace() REQUIRES_SHARED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080053
54 // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses".
Vladimir Marko3b458902019-03-26 17:08:41 +000055 HeapReference<Object> backtrace_;
Ian Rogersef7d42f2014-01-06 12:55:46 -080056 HeapReference<Throwable> cause_;
57 HeapReference<String> detail_message_;
Ian Rogersef7d42f2014-01-06 12:55:46 -080058 HeapReference<Object> stack_trace_;
59 HeapReference<Object> suppressed_exceptions_;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080060
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080061 friend struct art::ThrowableOffsets; // for verifying offset information
62 DISALLOW_IMPLICIT_CONSTRUCTORS(Throwable);
63};
64
65} // namespace mirror
66} // namespace art
67
Brian Carlstromfc0e3212013-07-17 14:40:12 -070068#endif // ART_RUNTIME_MIRROR_THROWABLE_H_