Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame^] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
2 | |||||
3 | #ifndef ART_SRC_EXCEPTION_H_ | ||||
4 | #define ART_SRC_EXCEPTION_H_ | ||||
5 | |||||
6 | #include "class_linker.h" | ||||
7 | #include "dex_file.h" | ||||
8 | #include "object.h" | ||||
9 | #include "thread.h" | ||||
10 | |||||
11 | namespace art { | ||||
12 | |||||
13 | struct InternalStackTrace { | ||||
14 | const Method* method; | ||||
15 | const uint16_t* pc; | ||||
16 | }; | ||||
17 | |||||
18 | extern InternalStackTrace *GetStackTrace(uint16_t stack_depth); | ||||
19 | |||||
20 | } | ||||
21 | |||||
22 | #endif // ART_SRC_EXCEPTION_H_ |