author | stefank |
Tue, 05 Apr 2016 10:35:39 +0200 | |
changeset 37254 | 8631304f255c |
parent 31352 | a6ab7217b5cc |
child 46630 | 75aa3e39d02c |
permissions | -rw-r--r-- |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
1 |
/* |
31352
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
2 |
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
4 |
* |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
8 |
* |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
13 |
* accompanied this code). |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
14 |
* |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
18 |
* |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
21 |
* questions. |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
22 |
* |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
23 |
*/ |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
24 |
|
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
25 |
|
11483 | 26 |
#ifndef SHARE_VM_UTILITIES_DECODER_HPP |
27 |
#define SHARE_VM_UTILITIES_DECODER_HPP |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
28 |
|
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
29 |
#include "memory/allocation.hpp" |
11483 | 30 |
#include "runtime/mutex.hpp" |
19952
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
31 |
#include "runtime/mutexLocker.hpp" |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
32 |
|
13195 | 33 |
class AbstractDecoder : public CHeapObj<mtInternal> { |
11483 | 34 |
public: |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
35 |
// status code for decoding native C frame |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
36 |
enum decoder_status { |
11483 | 37 |
not_available = -10, // real decoder is not available |
38 |
no_error = 0, // successfully decoded frames |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
39 |
out_of_memory, // out of memory |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
40 |
file_invalid, // invalid elf file |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
41 |
file_not_found, // could not found symbol file (on windows), such as jvm.pdb or jvm.map |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
42 |
helper_not_found, // could not load dbghelp.dll (Windows only) |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
43 |
helper_func_error, // decoding functions not found (Windows only) |
11483 | 44 |
helper_init_error // SymInitialize failed (Windows only) |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
45 |
}; |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
46 |
|
11761 | 47 |
// decode an pc address to corresponding function name and an offset from the beginning of |
48 |
// the function |
|
31352
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
49 |
// |
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
50 |
// Note: the 'base' variant does not demangle names. The |
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
51 |
// demangling that was done systematically in the 'modulepath' variant |
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
52 |
// is now optional. |
11761 | 53 |
virtual bool decode(address pc, char* buf, int buflen, int* offset, |
31352
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
54 |
const char* modulepath = NULL, bool demangle = true) = 0; |
13340 | 55 |
virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) = 0; |
56 |
||
11761 | 57 |
// demangle a C++ symbol |
58 |
virtual bool demangle(const char* symbol, char* buf, int buflen) = 0; |
|
59 |
// if the decoder can decode symbols in vm |
|
60 |
virtual bool can_decode_C_frame_in_vm() const = 0; |
|
61 |
||
62 |
virtual decoder_status status() const { |
|
63 |
return _decoder_status; |
|
64 |
} |
|
65 |
||
66 |
virtual bool has_error() const { |
|
67 |
return is_error(_decoder_status); |
|
68 |
} |
|
69 |
||
70 |
static bool is_error(decoder_status status) { |
|
71 |
return (status > 0); |
|
72 |
} |
|
73 |
||
74 |
protected: |
|
75 |
decoder_status _decoder_status; |
|
76 |
}; |
|
77 |
||
78 |
// Do nothing decoder |
|
79 |
class NullDecoder : public AbstractDecoder { |
|
80 |
public: |
|
11483 | 81 |
NullDecoder() { |
82 |
_decoder_status = not_available; |
|
83 |
} |
|
84 |
||
85 |
~NullDecoder() {}; |
|
86 |
||
87 |
virtual bool decode(address pc, char* buf, int buflen, int* offset, |
|
31352
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
88 |
const char* modulepath, bool demangle) { |
11483 | 89 |
return false; |
90 |
} |
|
91 |
||
13340 | 92 |
virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) { |
93 |
return false; |
|
94 |
} |
|
95 |
||
11483 | 96 |
virtual bool demangle(const char* symbol, char* buf, int buflen) { |
97 |
return false; |
|
98 |
} |
|
99 |
||
100 |
virtual bool can_decode_C_frame_in_vm() const { |
|
101 |
return false; |
|
102 |
} |
|
103 |
}; |
|
104 |
||
105 |
||
11761 | 106 |
class Decoder : AllStatic { |
11483 | 107 |
public: |
31352
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
108 |
static bool decode(address pc, char* buf, int buflen, int* offset, const char* modulepath = NULL, bool demangle = true); |
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
109 |
static bool decode(address pc, char* buf, int buflen, int* offset, bool demangle) { |
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
110 |
return decode(pc, buf, buflen, offset, (const char*) NULL, demangle); |
a6ab7217b5cc
8079473: allow demangling to be optional in dll_address_to_function_name
bdelsart
parents:
22234
diff
changeset
|
111 |
} |
13340 | 112 |
static bool decode(address pc, char* buf, int buflen, int* offset, const void* base); |
11483 | 113 |
static bool demangle(const char* symbol, char* buf, int buflen); |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
114 |
static bool can_decode_C_frame_in_vm(); |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
115 |
|
11761 | 116 |
// shutdown shared instance |
11483 | 117 |
static void shutdown(); |
118 |
protected: |
|
11761 | 119 |
// shared decoder instance, _shared_instance_lock is needed |
120 |
static AbstractDecoder* get_shared_instance(); |
|
121 |
// a private instance for error handler. Error handler can be |
|
122 |
// triggered almost everywhere, including signal handler, where |
|
123 |
// no lock can be taken. So the shared decoder can not be used |
|
124 |
// in this scenario. |
|
125 |
static AbstractDecoder* get_error_handler_instance(); |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
126 |
|
11761 | 127 |
static AbstractDecoder* create_decoder(); |
11483 | 128 |
private: |
11761 | 129 |
static AbstractDecoder* _shared_decoder; |
130 |
static AbstractDecoder* _error_handler_decoder; |
|
131 |
static NullDecoder _do_nothing_decoder; |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
132 |
|
11483 | 133 |
protected: |
11761 | 134 |
static Mutex* _shared_decoder_lock; |
19952
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
135 |
static Mutex* shared_decoder_lock(); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
136 |
|
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
137 |
friend class DecoderLocker; |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
138 |
}; |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
139 |
|
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
140 |
class DecoderLocker : public MutexLockerEx { |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
141 |
AbstractDecoder* _decoder; |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
142 |
inline bool is_first_error_thread(); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
143 |
public: |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
144 |
DecoderLocker(); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
145 |
AbstractDecoder* decoder() { |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
146 |
return _decoder; |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
13340
diff
changeset
|
147 |
} |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
148 |
}; |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
149 |
|
11483 | 150 |
#endif // SHARE_VM_UTILITIES_DECODER_HPP |