author | kvn |
Tue, 28 Jan 2014 12:25:34 -0800 | |
changeset 22872 | b6902ee5bc8d |
parent 22234 | da823d78ad65 |
parent 22827 | 07d991d45a51 |
child 25468 | 5331df506290 |
permissions | -rw-r--r-- |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
16368
diff
changeset
|
2 |
* Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
4 |
* |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
8 |
* |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
13 |
* accompanied this code). |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
14 |
* |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
18 |
* |
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
347
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
347
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
347
diff
changeset
|
21 |
* questions. |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
22 |
* |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
23 |
*/ |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
24 |
|
7397 | 25 |
#ifndef SHARE_VM_COMPILER_DISASSEMBLER_HPP |
26 |
#define SHARE_VM_COMPILER_DISASSEMBLER_HPP |
|
27 |
||
13887
89b873bcc55b
7200163: add CodeComments functionality to assember stubs
kvn
parents:
10565
diff
changeset
|
28 |
#include "asm/codeBuffer.hpp" |
7397 | 29 |
#include "runtime/globals.hpp" |
30 |
#ifdef TARGET_OS_FAMILY_linux |
|
31 |
# include "os_linux.inline.hpp" |
|
32 |
#endif |
|
33 |
#ifdef TARGET_OS_FAMILY_solaris |
|
34 |
# include "os_solaris.inline.hpp" |
|
35 |
#endif |
|
36 |
#ifdef TARGET_OS_FAMILY_windows |
|
37 |
# include "os_windows.inline.hpp" |
|
38 |
#endif |
|
22827 | 39 |
#ifdef TARGET_OS_FAMILY_aix |
40 |
# include "os_aix.inline.hpp" |
|
41 |
#endif |
|
10565 | 42 |
#ifdef TARGET_OS_FAMILY_bsd |
43 |
# include "os_bsd.inline.hpp" |
|
44 |
#endif |
|
7397 | 45 |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
46 |
class decode_env; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
47 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
48 |
// The disassembler prints out assembly code annotated |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
49 |
// with Java specific information. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
50 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
51 |
class Disassembler { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
52 |
friend class decode_env; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
53 |
private: |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
54 |
// this is the type of the dll entry point: |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
55 |
typedef void* (*decode_func_virtual)(uintptr_t start_va, uintptr_t end_va, |
13873 | 56 |
unsigned char* buffer, uintptr_t length, |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
57 |
void* (*event_callback)(void*, const char*, void*), |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
58 |
void* event_stream, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
59 |
int (*printf_callback)(void*, const char*, ...), |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
60 |
void* printf_stream, |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
61 |
const char* options, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
62 |
int newline); |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
63 |
// this is the type of the dll entry point for old version: |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
64 |
typedef void* (*decode_func)(void* start_va, void* end_va, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
65 |
void* (*event_callback)(void*, const char*, void*), |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
66 |
void* event_stream, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
67 |
int (*printf_callback)(void*, const char*, ...), |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
68 |
void* printf_stream, |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
69 |
const char* options); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
70 |
// points to the library. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
71 |
static void* _library; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
72 |
// bailout |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
73 |
static bool _tried_to_load_library; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
74 |
// points to the decode function. |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
75 |
static decode_func_virtual _decode_instructions_virtual; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
76 |
static decode_func _decode_instructions; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
77 |
// tries to load library and return whether it succedded. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
78 |
static bool load_library(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
79 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
80 |
// Machine dependent stuff |
7397 | 81 |
#ifdef TARGET_ARCH_x86 |
82 |
# include "disassembler_x86.hpp" |
|
83 |
#endif |
|
84 |
#ifdef TARGET_ARCH_sparc |
|
85 |
# include "disassembler_sparc.hpp" |
|
86 |
#endif |
|
87 |
#ifdef TARGET_ARCH_zero |
|
88 |
# include "disassembler_zero.hpp" |
|
89 |
#endif |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
90 |
#ifdef TARGET_ARCH_arm |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
91 |
# include "disassembler_arm.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
92 |
#endif |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
93 |
#ifdef TARGET_ARCH_ppc |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
94 |
# include "disassembler_ppc.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
95 |
#endif |
7397 | 96 |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
97 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
98 |
public: |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
99 |
static bool can_decode() { |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
100 |
return (_decode_instructions_virtual != NULL) || |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
101 |
(_decode_instructions != NULL) || |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
102 |
load_library(); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
103 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
104 |
static void decode(CodeBlob *cb, outputStream* st = NULL); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
105 |
static void decode(nmethod* nm, outputStream* st = NULL); |
16368
713209c45a82
8008555: Debugging code in compiled method sometimes leaks memory
roland
parents:
14384
diff
changeset
|
106 |
static void decode(address begin, address end, outputStream* st = NULL, CodeStrings c = CodeStrings()); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
107 |
}; |
7397 | 108 |
|
109 |
#endif // SHARE_VM_COMPILER_DISASSEMBLER_HPP |