author | sla |
Wed, 04 Dec 2013 14:43:50 +0100 | |
changeset 22216 | 888245fbd0a5 |
parent 19952 | bc974e92f881 |
child 22234 | da823d78ad65 |
permissions | -rw-r--r-- |
11483 | 1 |
/* |
13963
e5b53c306fb5
7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents:
13340
diff
changeset
|
2 |
* Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved. |
11483 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#ifndef OS_WINDOWS_VM_DECODER_WINDOWS_HPP |
|
26 |
#define OS_WINDOWS_VM_DECIDER_WINDOWS_HPP |
|
27 |
||
28 |
#include <windows.h> |
|
29 |
#include <imagehlp.h> |
|
30 |
||
31 |
#include "utilities/decoder.hpp" |
|
32 |
||
33 |
// functions needed for decoding symbols |
|
34 |
typedef DWORD (WINAPI *pfn_SymSetOptions)(DWORD); |
|
35 |
typedef BOOL (WINAPI *pfn_SymInitialize)(HANDLE, PCTSTR, BOOL); |
|
36 |
typedef BOOL (WINAPI *pfn_SymGetSymFromAddr64)(HANDLE, DWORD64, PDWORD64, PIMAGEHLP_SYMBOL64); |
|
37 |
typedef DWORD (WINAPI *pfn_UndecorateSymbolName)(const char*, char*, DWORD, DWORD); |
|
15186
1a255c84cf6a
7152671: RFE: Windows decoder should add some std dirs to the symbol search path
zgu
parents:
13963
diff
changeset
|
38 |
typedef BOOL (WINAPI *pfn_SymSetSearchPath)(HANDLE, PCTSTR); |
1a255c84cf6a
7152671: RFE: Windows decoder should add some std dirs to the symbol search path
zgu
parents:
13963
diff
changeset
|
39 |
typedef BOOL (WINAPI *pfn_SymGetSearchPath)(HANDLE, PTSTR, int); |
11483 | 40 |
|
19952
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
41 |
#ifdef AMD64 |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
42 |
typedef BOOL (WINAPI *pfn_StackWalk64)(DWORD MachineType, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
43 |
HANDLE hProcess, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
44 |
HANDLE hThread, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
45 |
LPSTACKFRAME64 StackFrame, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
46 |
PVOID ContextRecord, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
47 |
PREAD_PROCESS_MEMORY_ROUTINE64 ReadMemoryRoutine, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
48 |
PFUNCTION_TABLE_ACCESS_ROUTINE64 FunctionTableAccessRoutine, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
49 |
PGET_MODULE_BASE_ROUTINE64 GetModuleBaseRoutine, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
50 |
PTRANSLATE_ADDRESS_ROUTINE64 TranslateAddress); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
51 |
typedef PVOID (WINAPI *pfn_SymFunctionTableAccess64)(HANDLE hProcess, DWORD64 AddrBase); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
52 |
typedef DWORD64 (WINAPI *pfn_SymGetModuleBase64)(HANDLE hProcess, DWORD64 dwAddr); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
53 |
#endif |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
54 |
|
11761 | 55 |
class WindowsDecoder : public AbstractDecoder { |
11483 | 56 |
|
57 |
public: |
|
58 |
WindowsDecoder(); |
|
59 |
~WindowsDecoder() { uninitialize(); }; |
|
60 |
||
61 |
bool can_decode_C_frame_in_vm() const; |
|
62 |
bool demangle(const char* symbol, char *buf, int buflen); |
|
63 |
bool decode(address addr, char *buf, int buflen, int* offset, const char* modulepath = NULL); |
|
13340 | 64 |
bool decode(address addr, char *buf, int buflen, int* offset, const void* base) { |
65 |
ShouldNotReachHere(); |
|
66 |
return false; |
|
67 |
} |
|
11483 | 68 |
|
69 |
private: |
|
70 |
void initialize(); |
|
71 |
void uninitialize(); |
|
72 |
||
73 |
private: |
|
74 |
HMODULE _dbghelp_handle; |
|
75 |
bool _can_decode_in_vm; |
|
76 |
pfn_SymGetSymFromAddr64 _pfnSymGetSymFromAddr64; |
|
77 |
pfn_UndecorateSymbolName _pfnUndecorateSymbolName; |
|
19952
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
78 |
#ifdef AMD64 |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
79 |
pfn_StackWalk64 _pfnStackWalk64; |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
80 |
pfn_SymFunctionTableAccess64 _pfnSymFunctionTableAccess64; |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
81 |
pfn_SymGetModuleBase64 _pfnSymGetModuleBase64; |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
82 |
|
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
83 |
friend class WindowsDbgHelp; |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
84 |
#endif |
11483 | 85 |
}; |
86 |
||
19952
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
87 |
#ifdef AMD64 |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
88 |
// TODO: refactor and move the handling of dbghelp.dll outside of Decoder |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
89 |
class WindowsDbgHelp : public Decoder { |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
90 |
public: |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
91 |
static BOOL StackWalk64(DWORD MachineType, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
92 |
HANDLE hProcess, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
93 |
HANDLE hThread, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
94 |
LPSTACKFRAME64 StackFrame, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
95 |
PVOID ContextRecord, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
96 |
PREAD_PROCESS_MEMORY_ROUTINE64 ReadMemoryRoutine, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
97 |
PFUNCTION_TABLE_ACCESS_ROUTINE64 FunctionTableAccessRoutine, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
98 |
PGET_MODULE_BASE_ROUTINE64 GetModuleBaseRoutine, |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
99 |
PTRANSLATE_ADDRESS_ROUTINE64 TranslateAddress); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
100 |
static PVOID SymFunctionTableAccess64(HANDLE hProcess, DWORD64 AddrBase); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
101 |
|
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
102 |
static pfn_SymFunctionTableAccess64 pfnSymFunctionTableAccess64(); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
103 |
static pfn_SymGetModuleBase64 pfnSymGetModuleBase64(); |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
104 |
}; |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
105 |
#endif |
bc974e92f881
8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents:
15186
diff
changeset
|
106 |
|
11483 | 107 |
#endif // OS_WINDOWS_VM_DECODER_WINDOWS_HPP |
108 |