author | jprovino |
Wed, 23 Jan 2013 13:02:39 -0500 | |
changeset 15482 | 470d0b0c09f1 |
parent 13963 | e5b53c306fb5 |
child 19952 | bc974e92f881 |
child 22827 | 07d991d45a51 |
permissions | -rw-r--r-- |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
1 |
/* |
13963
e5b53c306fb5
7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents:
13340
diff
changeset
|
2 |
* Copyright (c) 1997, 2012, 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 |
#include "precompiled.hpp" |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
26 |
#include "prims/jvm.h" |
11483 | 27 |
#include "runtime/mutexLocker.hpp" |
11761 | 28 |
#include "runtime/os.hpp" |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
29 |
#include "utilities/decoder.hpp" |
11761 | 30 |
#include "utilities/vmError.hpp" |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
31 |
|
11483 | 32 |
#if defined(_WINDOWS) |
33 |
#include "decoder_windows.hpp" |
|
34 |
#elif defined(__APPLE__) |
|
35 |
#include "decoder_machO.hpp" |
|
36 |
#else |
|
37 |
#include "decoder_elf.hpp" |
|
38 |
#endif |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
39 |
|
11761 | 40 |
AbstractDecoder* Decoder::_shared_decoder = NULL; |
41 |
AbstractDecoder* Decoder::_error_handler_decoder = NULL; |
|
42 |
NullDecoder Decoder::_do_nothing_decoder; |
|
43 |
Mutex* Decoder::_shared_decoder_lock = new Mutex(Mutex::native, |
|
44 |
"SharedDecoderLock"); |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
45 |
|
11761 | 46 |
AbstractDecoder* Decoder::get_shared_instance() { |
47 |
assert(_shared_decoder_lock != NULL && _shared_decoder_lock->owned_by_self(), |
|
11483 | 48 |
"Require DecoderLock to enter"); |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
49 |
|
11761 | 50 |
if (_shared_decoder == NULL) { |
51 |
_shared_decoder = create_decoder(); |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
52 |
} |
11761 | 53 |
return _shared_decoder; |
54 |
} |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
55 |
|
11761 | 56 |
AbstractDecoder* Decoder::get_error_handler_instance() { |
57 |
if (_error_handler_decoder == NULL) { |
|
58 |
_error_handler_decoder = create_decoder(); |
|
59 |
} |
|
60 |
return _error_handler_decoder; |
|
61 |
} |
|
62 |
||
63 |
||
64 |
AbstractDecoder* Decoder::create_decoder() { |
|
65 |
AbstractDecoder* decoder; |
|
11483 | 66 |
#if defined(_WINDOWS) |
11761 | 67 |
decoder = new (std::nothrow) WindowsDecoder(); |
11483 | 68 |
#elif defined (__APPLE__) |
11761 | 69 |
decoder = new (std::nothrow)MachODecoder(); |
11483 | 70 |
#else |
11761 | 71 |
decoder = new (std::nothrow)ElfDecoder(); |
11483 | 72 |
#endif |
73 |
||
11761 | 74 |
if (decoder == NULL || decoder->has_error()) { |
75 |
if (decoder != NULL) { |
|
76 |
delete decoder; |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
77 |
} |
11761 | 78 |
decoder = &_do_nothing_decoder; |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
79 |
} |
11761 | 80 |
return decoder; |
11483 | 81 |
} |
82 |
||
83 |
bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const char* modulepath) { |
|
11761 | 84 |
assert(_shared_decoder_lock != NULL, "Just check"); |
85 |
bool error_handling_thread = os::current_thread_id() == VMError::first_error_tid; |
|
86 |
MutexLockerEx locker(error_handling_thread ? NULL : _shared_decoder_lock, true); |
|
87 |
AbstractDecoder* decoder = error_handling_thread ? |
|
88 |
get_error_handler_instance(): get_shared_instance(); |
|
11483 | 89 |
assert(decoder != NULL, "null decoder"); |
90 |
||
91 |
return decoder->decode(addr, buf, buflen, offset, modulepath); |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
92 |
} |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
93 |
|
13340 | 94 |
bool Decoder::decode(address addr, char* buf, int buflen, int* offset, const void* base) { |
95 |
assert(_shared_decoder_lock != NULL, "Just check"); |
|
96 |
bool error_handling_thread = os::current_thread_id() == VMError::first_error_tid; |
|
97 |
MutexLockerEx locker(error_handling_thread ? NULL : _shared_decoder_lock, true); |
|
98 |
AbstractDecoder* decoder = error_handling_thread ? |
|
99 |
get_error_handler_instance(): get_shared_instance(); |
|
100 |
assert(decoder != NULL, "null decoder"); |
|
101 |
||
102 |
return decoder->decode(addr, buf, buflen, offset, base); |
|
103 |
} |
|
104 |
||
105 |
||
11483 | 106 |
bool Decoder::demangle(const char* symbol, char* buf, int buflen) { |
11761 | 107 |
assert(_shared_decoder_lock != NULL, "Just check"); |
108 |
bool error_handling_thread = os::current_thread_id() == VMError::first_error_tid; |
|
109 |
MutexLockerEx locker(error_handling_thread ? NULL : _shared_decoder_lock, true); |
|
110 |
AbstractDecoder* decoder = error_handling_thread ? |
|
111 |
get_error_handler_instance(): get_shared_instance(); |
|
11483 | 112 |
assert(decoder != NULL, "null decoder"); |
113 |
return decoder->demangle(symbol, buf, buflen); |
|
114 |
} |
|
115 |
||
116 |
bool Decoder::can_decode_C_frame_in_vm() { |
|
11761 | 117 |
assert(_shared_decoder_lock != NULL, "Just check"); |
118 |
bool error_handling_thread = os::current_thread_id() == VMError::first_error_tid; |
|
119 |
MutexLockerEx locker(error_handling_thread ? NULL : _shared_decoder_lock, true); |
|
120 |
AbstractDecoder* decoder = error_handling_thread ? |
|
121 |
get_error_handler_instance(): get_shared_instance(); |
|
11483 | 122 |
assert(decoder != NULL, "null decoder"); |
123 |
return decoder->can_decode_C_frame_in_vm(); |
|
124 |
} |
|
125 |
||
11761 | 126 |
/* |
127 |
* Shutdown shared decoder and replace it with |
|
128 |
* _do_nothing_decoder. Do nothing with error handler |
|
129 |
* instance, since the JVM is going down. |
|
130 |
*/ |
|
11483 | 131 |
void Decoder::shutdown() { |
11761 | 132 |
assert(_shared_decoder_lock != NULL, "Just check"); |
133 |
MutexLockerEx locker(_shared_decoder_lock, true); |
|
11483 | 134 |
|
11761 | 135 |
if (_shared_decoder != NULL && |
136 |
_shared_decoder != &_do_nothing_decoder) { |
|
137 |
delete _shared_decoder; |
|
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
138 |
} |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
139 |
|
11761 | 140 |
_shared_decoder = &_do_nothing_decoder; |
7447
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
141 |
} |
32c42d627f41
7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents:
diff
changeset
|
142 |