author | goetz |
Thu, 12 Jul 2018 16:31:28 +0200 | |
changeset 51078 | fc6cfe40e32a |
parent 50528 | 1fd4844371bb |
child 51092 | 3b5fd72147c9 |
permissions | -rw-r--r-- |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
1 |
/* |
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47687
diff
changeset
|
2 |
* Copyright (c) 2008, 2018, 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:
4584
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4584
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:
4584
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 |
#include "precompiled.hpp" |
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47687
diff
changeset
|
26 |
#include "ci/ciUtilities.hpp" |
7397 | 27 |
#include "classfile/javaClasses.hpp" |
28 |
#include "code/codeCache.hpp" |
|
29 |
#include "compiler/disassembler.hpp" |
|
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47687
diff
changeset
|
30 |
#include "gc/shared/cardTable.hpp" |
49455
848864ed9b17
8199604: Rename CardTableModRefBS to CardTableBarrierSet
eosterlund
parents:
49164
diff
changeset
|
31 |
#include "gc/shared/cardTableBarrierSet.hpp" |
30764 | 32 |
#include "gc/shared/collectedHeap.hpp" |
37248 | 33 |
#include "memory/resourceArea.hpp" |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
26432
diff
changeset
|
34 |
#include "oops/oop.inline.hpp" |
7397 | 35 |
#include "runtime/handles.inline.hpp" |
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
24460
diff
changeset
|
36 |
#include "runtime/os.hpp" |
7397 | 37 |
#include "runtime/stubCodeGenerator.hpp" |
38 |
#include "runtime/stubRoutines.hpp" |
|
40010 | 39 |
#include CPU_HEADER(depChecker) |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
40 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
41 |
void* Disassembler::_library = NULL; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
42 |
bool Disassembler::_tried_to_load_library = false; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
43 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
44 |
// This routine is in the shared library: |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
45 |
Disassembler::decode_func_virtual Disassembler::_decode_instructions_virtual = NULL; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
46 |
Disassembler::decode_func Disassembler::_decode_instructions = NULL; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
47 |
|
31592
43f48e165466
8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents:
30764
diff
changeset
|
48 |
static const char hsdis_library_name[] = "hsdis-" HOTSPOT_LIB_ARCH; |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
49 |
static const char decode_instructions_virtual_name[] = "decode_instructions_virtual"; |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
50 |
static const char decode_instructions_name[] = "decode_instructions"; |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
51 |
static bool use_new_version = true; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
52 |
#define COMMENT_COLUMN 40 LP64_ONLY(+8) /*could be an option*/ |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
53 |
#define BYTES_COMMENT ";..." /* funky byte display comment */ |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
54 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
55 |
bool Disassembler::load_library() { |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
56 |
if (_decode_instructions_virtual != NULL || _decode_instructions != NULL) { |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
57 |
// Already succeeded. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
58 |
return true; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
59 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
60 |
if (_tried_to_load_library) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
61 |
// Do not try twice. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
62 |
// To force retry in debugger: assign _tried_to_load_library=0 |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
63 |
return false; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
64 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
65 |
// Try to load it. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
66 |
char ebuf[1024]; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
67 |
char buf[JVM_MAXPATHLEN]; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
68 |
os::jvm_path(buf, sizeof(buf)); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
69 |
int jvm_offset = -1; |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
70 |
int lib_offset = -1; |
33583
af842015bfaa
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31592
diff
changeset
|
71 |
#ifdef STATIC_BUILD |
af842015bfaa
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31592
diff
changeset
|
72 |
char* p = strrchr(buf, '/'); |
af842015bfaa
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31592
diff
changeset
|
73 |
*p = '\0'; |
af842015bfaa
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31592
diff
changeset
|
74 |
strcat(p, "/lib/"); |
af842015bfaa
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31592
diff
changeset
|
75 |
lib_offset = jvm_offset = strlen(buf); |
af842015bfaa
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31592
diff
changeset
|
76 |
#else |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
77 |
{ |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
78 |
// Match "jvm[^/]*" in jvm_path. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
79 |
const char* base = buf; |
24460
ec55671cfdc2
8043264: hsdis library not picked up correctly on expected paths
sspitsyn
parents:
24424
diff
changeset
|
80 |
const char* p = strrchr(buf, *os::file_separator()); |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
81 |
if (p != NULL) lib_offset = p - base + 1; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
82 |
p = strstr(p ? p : base, "jvm"); |
38658
34f9c45625d8
8140594: Various minor code improvements (compiler)
goetz
parents:
37248
diff
changeset
|
83 |
if (p != NULL) jvm_offset = p - base; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
84 |
} |
33583
af842015bfaa
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31592
diff
changeset
|
85 |
#endif |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
86 |
// Find the disassembler shared library. |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
87 |
// Search for several paths derived from libjvm, in this order: |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
88 |
// 1. <home>/jre/lib/<arch>/<vm>/libhsdis-<arch>.so (for compatibility) |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
89 |
// 2. <home>/jre/lib/<arch>/<vm>/hsdis-<arch>.so |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
90 |
// 3. <home>/jre/lib/<arch>/hsdis-<arch>.so |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
91 |
// 4. hsdis-<arch>.so (using LD_LIBRARY_PATH) |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
92 |
if (jvm_offset >= 0) { |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
93 |
// 1. <home>/jre/lib/<arch>/<vm>/libhsdis-<arch>.so |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
94 |
strcpy(&buf[jvm_offset], hsdis_library_name); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
95 |
strcat(&buf[jvm_offset], os::dll_file_extension()); |
7405
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
96 |
_library = os::dll_load(buf, ebuf, sizeof ebuf); |
38658
34f9c45625d8
8140594: Various minor code improvements (compiler)
goetz
parents:
37248
diff
changeset
|
97 |
if (_library == NULL && lib_offset >= 0) { |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
98 |
// 2. <home>/jre/lib/<arch>/<vm>/hsdis-<arch>.so |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
99 |
strcpy(&buf[lib_offset], hsdis_library_name); |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
100 |
strcat(&buf[lib_offset], os::dll_file_extension()); |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
101 |
_library = os::dll_load(buf, ebuf, sizeof ebuf); |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
102 |
} |
38658
34f9c45625d8
8140594: Various minor code improvements (compiler)
goetz
parents:
37248
diff
changeset
|
103 |
if (_library == NULL && lib_offset > 0) { |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
104 |
// 3. <home>/jre/lib/<arch>/hsdis-<arch>.so |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
105 |
buf[lib_offset - 1] = '\0'; |
24460
ec55671cfdc2
8043264: hsdis library not picked up correctly on expected paths
sspitsyn
parents:
24424
diff
changeset
|
106 |
const char* p = strrchr(buf, *os::file_separator()); |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
107 |
if (p != NULL) { |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
108 |
lib_offset = p - buf + 1; |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
109 |
strcpy(&buf[lib_offset], hsdis_library_name); |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
110 |
strcat(&buf[lib_offset], os::dll_file_extension()); |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
111 |
_library = os::dll_load(buf, ebuf, sizeof ebuf); |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
112 |
} |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
113 |
} |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
114 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
115 |
if (_library == NULL) { |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
116 |
// 4. hsdis-<arch>.so (using LD_LIBRARY_PATH) |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
117 |
strcpy(&buf[0], hsdis_library_name); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
118 |
strcat(&buf[0], os::dll_file_extension()); |
7405
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
119 |
_library = os::dll_load(buf, ebuf, sizeof ebuf); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
120 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
121 |
if (_library != NULL) { |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
122 |
_decode_instructions_virtual = CAST_TO_FN_PTR(Disassembler::decode_func_virtual, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
123 |
os::dll_lookup(_library, decode_instructions_virtual_name)); |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
124 |
} |
51078 | 125 |
if (_decode_instructions_virtual == NULL && _library != NULL) { |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
126 |
// could not spot in new version, try old version |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
127 |
_decode_instructions = CAST_TO_FN_PTR(Disassembler::decode_func, |
7405
e6fc8d3926f8
6348631: remove the use of the HPI library from Hotspot
ikrylov
parents:
7397
diff
changeset
|
128 |
os::dll_lookup(_library, decode_instructions_name)); |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
129 |
use_new_version = false; |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
130 |
} else { |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
131 |
use_new_version = true; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
132 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
133 |
_tried_to_load_library = true; |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
134 |
if (_decode_instructions_virtual == NULL && _decode_instructions == NULL) { |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
135 |
tty->print_cr("Could not load %s; %s; %s", buf, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
136 |
((_library != NULL) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
137 |
? "entry point is missing" |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
138 |
: (WizardMode || PrintMiscellaneous) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
139 |
? (const char*)ebuf |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
140 |
: "library not loadable"), |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
141 |
"PrintAssembly is disabled"); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
142 |
return false; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
143 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
144 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
145 |
// Success. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
146 |
tty->print_cr("Loaded disassembler from %s", buf); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
147 |
return true; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
148 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
149 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
150 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
151 |
class decode_env { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
152 |
private: |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
153 |
nmethod* _nm; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
154 |
CodeBlob* _code; |
16368
713209c45a82
8008555: Debugging code in compiled method sometimes leaks memory
roland
parents:
14488
diff
changeset
|
155 |
CodeStrings _strings; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
156 |
outputStream* _output; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
157 |
address _start, _end; |
50528
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
158 |
ptrdiff_t _offset; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
159 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
160 |
char _option_buf[512]; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
161 |
char _print_raw; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
162 |
bool _print_pc; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
163 |
bool _print_bytes; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
164 |
address _cur_insn; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
165 |
int _bytes_per_line; // arch-specific formatting option |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
166 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
167 |
static bool match(const char* event, const char* tag) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
168 |
size_t taglen = strlen(tag); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
169 |
if (strncmp(event, tag, taglen) != 0) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
170 |
return false; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
171 |
char delim = event[taglen]; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
172 |
return delim == '\0' || delim == ' ' || delim == '/' || delim == '='; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
173 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
174 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
175 |
void collect_options(const char* p) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
176 |
if (p == NULL || p[0] == '\0') return; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
177 |
size_t opt_so_far = strlen(_option_buf); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
178 |
if (opt_so_far + 1 + strlen(p) + 1 > sizeof(_option_buf)) return; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
179 |
char* fillp = &_option_buf[opt_so_far]; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
180 |
if (opt_so_far > 0) *fillp++ = ','; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
181 |
strcat(fillp, p); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
182 |
// replace white space by commas: |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
183 |
char* q = fillp; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
184 |
while ((q = strpbrk(q, " \t\n")) != NULL) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
185 |
*q++ = ','; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
186 |
// Note that multiple PrintAssemblyOptions flags accumulate with \n, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
187 |
// which we want to be changed to a comma... |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
188 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
189 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
190 |
void print_insn_labels(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
191 |
void print_insn_bytes(address pc0, address pc); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
192 |
void print_address(address value); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
193 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
194 |
public: |
50528
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
195 |
decode_env(CodeBlob* code, outputStream* output, |
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
196 |
CodeStrings c = CodeStrings(), ptrdiff_t offset = 0); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
197 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
198 |
address decode_instructions(address start, address end); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
199 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
200 |
void start_insn(address pc) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
201 |
_cur_insn = pc; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
202 |
output()->bol(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
203 |
print_insn_labels(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
204 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
205 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
206 |
void end_insn(address pc) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
207 |
address pc0 = cur_insn(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
208 |
outputStream* st = output(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
209 |
if (_print_bytes && pc > pc0) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
210 |
print_insn_bytes(pc0, pc); |
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
347
diff
changeset
|
211 |
if (_nm != NULL) { |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
212 |
_nm->print_code_comment_on(st, COMMENT_COLUMN, pc0, pc); |
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
347
diff
changeset
|
213 |
// this calls reloc_string_for which calls oop::print_value_on |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
347
diff
changeset
|
214 |
} |
13873 | 215 |
// follow each complete insn by a nice newline |
216 |
st->cr(); |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
217 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
218 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
219 |
address handle_event(const char* event, address arg); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
220 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
221 |
outputStream* output() { return _output; } |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
222 |
address cur_insn() { return _cur_insn; } |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
223 |
const char* options() { return _option_buf; } |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
224 |
}; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
225 |
|
50528
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
226 |
decode_env::decode_env(CodeBlob* code, outputStream* output, CodeStrings c, |
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
227 |
ptrdiff_t offset) { |
26432 | 228 |
memset(this, 0, sizeof(*this)); // Beware, this zeroes bits of fields. |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
229 |
_output = output ? output : tty; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
230 |
_code = code; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
231 |
if (code != NULL && code->is_nmethod()) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
232 |
_nm = (nmethod*) code; |
26432 | 233 |
_strings.copy(c); |
50528
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
234 |
_offset = offset; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
235 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
236 |
// by default, output pc but not bytes: |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
237 |
_print_pc = true; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
238 |
_print_bytes = false; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
239 |
_bytes_per_line = Disassembler::pd_instruction_alignment(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
240 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
241 |
// parse the global option string: |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
242 |
collect_options(Disassembler::pd_cpu_opts()); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
243 |
collect_options(PrintAssemblyOptions); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
244 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
245 |
if (strstr(options(), "hsdis-")) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
246 |
if (strstr(options(), "hsdis-print-raw")) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
247 |
_print_raw = (strstr(options(), "xml") ? 2 : 1); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
248 |
if (strstr(options(), "hsdis-print-pc")) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
249 |
_print_pc = !_print_pc; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
250 |
if (strstr(options(), "hsdis-print-bytes")) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
251 |
_print_bytes = !_print_bytes; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
252 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
253 |
if (strstr(options(), "help")) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
254 |
tty->print_cr("PrintAssemblyOptions help:"); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
255 |
tty->print_cr(" hsdis-print-raw test plugin by requesting raw output"); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
256 |
tty->print_cr(" hsdis-print-raw-xml test plugin by requesting raw xml"); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
257 |
tty->print_cr(" hsdis-print-pc turn off PC printing (on by default)"); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
258 |
tty->print_cr(" hsdis-print-bytes turn on instruction byte output"); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
259 |
tty->print_cr("combined options: %s", options()); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
260 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
261 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
262 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
263 |
address decode_env::handle_event(const char* event, address arg) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
264 |
if (match(event, "insn")) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
265 |
start_insn(arg); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
266 |
} else if (match(event, "/insn")) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
267 |
end_insn(arg); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
268 |
} else if (match(event, "addr")) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
269 |
if (arg != NULL) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
270 |
print_address(arg); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
271 |
return arg; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
272 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
273 |
} else if (match(event, "mach")) { |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
274 |
static char buffer[32] = { 0, }; |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
275 |
if (strcmp(buffer, (const char*)arg) != 0 || |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
276 |
strlen((const char*)arg) > sizeof(buffer) - 1) { |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
277 |
// Only print this when the mach changes |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
278 |
strncpy(buffer, (const char*)arg, sizeof(buffer) - 1); |
30281 | 279 |
buffer[sizeof(buffer) - 1] = '\0'; |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
280 |
output()->print_cr("[Disassembling for mach='%s']", arg); |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
9630
diff
changeset
|
281 |
} |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
282 |
} else if (match(event, "format bytes-per-line")) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
283 |
_bytes_per_line = (int) (intptr_t) arg; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
284 |
} else { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
285 |
// ignore unrecognized markup |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
286 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
287 |
return NULL; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
288 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
289 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
290 |
// called by the disassembler to print out jump targets and data addresses |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
291 |
void decode_env::print_address(address adr) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
292 |
outputStream* st = _output; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
293 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
294 |
if (adr == NULL) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
295 |
st->print("NULL"); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
296 |
return; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
297 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
298 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
299 |
int small_num = (int)(intptr_t)adr; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
300 |
if ((intptr_t)adr == (intptr_t)small_num |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
301 |
&& -1 <= small_num && small_num <= 9) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
302 |
st->print("%d", small_num); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
303 |
return; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
304 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
305 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
306 |
if (Universe::is_fully_initialized()) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
307 |
if (StubRoutines::contains(adr)) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
308 |
StubCodeDesc* desc = StubCodeDesc::desc_for(adr); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
309 |
if (desc == NULL) { |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
310 |
desc = StubCodeDesc::desc_for(adr + frame::pc_return_offset); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
311 |
} |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
312 |
if (desc != NULL) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
313 |
st->print("Stub::%s", desc->name()); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
314 |
if (desc->begin() != adr) { |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
315 |
st->print(INTX_FORMAT_W(+) " " PTR_FORMAT, adr - desc->begin(), p2i(adr)); |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
316 |
} else if (WizardMode) { |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
317 |
st->print(" " PTR_FORMAT, p2i(adr)); |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
318 |
} |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
319 |
return; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
320 |
} |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
321 |
st->print("Stub::<unknown> " PTR_FORMAT, p2i(adr)); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
322 |
return; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
323 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
324 |
|
49754 | 325 |
BarrierSet* bs = BarrierSet::barrier_set(); |
49455
848864ed9b17
8199604: Rename CardTableModRefBS to CardTableBarrierSet
eosterlund
parents:
49164
diff
changeset
|
326 |
if (bs->is_a(BarrierSet::CardTableBarrierSet) && |
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
47687
diff
changeset
|
327 |
adr == ci_card_table_address_as<address>()) { |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
328 |
st->print("word_map_base"); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
329 |
if (WizardMode) st->print(" " INTPTR_FORMAT, p2i(adr)); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
330 |
return; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
331 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
332 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
333 |
|
35175
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
334 |
if (_nm == NULL) { |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
335 |
// Don't do this for native methods, as the function name will be printed in |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
336 |
// nmethod::reloc_string_for(). |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
337 |
ResourceMark rm; |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
338 |
const int buflen = 1024; |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
339 |
char* buf = NEW_RESOURCE_ARRAY(char, buflen); |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
340 |
int offset; |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
341 |
if (os::dll_address_to_function_name(adr, buf, buflen, &offset)) { |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
342 |
st->print(PTR_FORMAT " = %s", p2i(adr), buf); |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
343 |
if (offset != 0) { |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
344 |
st->print("+%d", offset); |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
345 |
} |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
346 |
return; |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
347 |
} |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
348 |
} |
382588e9104a
8144853: Print the names of callees in PrintAssembly/PrintInterpreter
iklam
parents:
33585
diff
changeset
|
349 |
|
9630
d6419e4395e3
6939861: JVM should handle more conversion operations
never
parents:
8921
diff
changeset
|
350 |
// Fall through to a simple (hexadecimal) numeral. |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
351 |
st->print(PTR_FORMAT, p2i(adr)); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
352 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
353 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
354 |
void decode_env::print_insn_labels() { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
355 |
address p = cur_insn(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
356 |
outputStream* st = output(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
357 |
CodeBlob* cb = _code; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
358 |
if (cb != NULL) { |
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
347
diff
changeset
|
359 |
cb->print_block_comment(st, p); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
360 |
} |
50528
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
361 |
_strings.print_block_comment(st, (intptr_t)(p - _start + _offset)); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
362 |
if (_print_pc) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
363 |
st->print(" " PTR_FORMAT ": ", p2i(p)); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
364 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
365 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
366 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
367 |
void decode_env::print_insn_bytes(address pc, address pc_limit) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
368 |
outputStream* st = output(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
369 |
size_t incr = 1; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
370 |
size_t perline = _bytes_per_line; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
371 |
if ((size_t) Disassembler::pd_instruction_alignment() >= sizeof(int) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
372 |
&& !((uintptr_t)pc % sizeof(int)) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
373 |
&& !((uintptr_t)pc_limit % sizeof(int))) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
374 |
incr = sizeof(int); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
375 |
if (perline % incr) perline += incr - (perline % incr); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
376 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
377 |
while (pc < pc_limit) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
378 |
// tab to the desired column: |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
379 |
st->move_to(COMMENT_COLUMN); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
380 |
address pc0 = pc; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
381 |
address pc1 = pc + perline; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
382 |
if (pc1 > pc_limit) pc1 = pc_limit; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
383 |
for (; pc < pc1; pc += incr) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
384 |
if (pc == pc0) { |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
385 |
st->print(BYTES_COMMENT); |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
386 |
} else if ((uint)(pc - pc0) % sizeof(int) == 0) { |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
387 |
st->print(" "); // put out a space on word boundaries |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
388 |
} |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
389 |
if (incr == sizeof(int)) { |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
390 |
st->print("%08x", *(int*)pc); |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
391 |
} else { |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
392 |
st->print("%02x", (*pc)&0xFF); |
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
393 |
} |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
394 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
395 |
st->cr(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
396 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
397 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
398 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
399 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
400 |
static void* event_to_env(void* env_pv, const char* event, void* arg) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
401 |
decode_env* env = (decode_env*) env_pv; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
402 |
return env->handle_event(event, (address) arg); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
403 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
404 |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22234
diff
changeset
|
405 |
ATTRIBUTE_PRINTF(2, 3) |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
406 |
static int printf_to_env(void* env_pv, const char* format, ...) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
407 |
decode_env* env = (decode_env*) env_pv; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
408 |
outputStream* st = env->output(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
409 |
size_t flen = strlen(format); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
410 |
const char* raw = NULL; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
411 |
if (flen == 0) return 0; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
412 |
if (flen == 1 && format[0] == '\n') { st->bol(); return 1; } |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
413 |
if (flen < 2 || |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
414 |
strchr(format, '%') == NULL) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
415 |
raw = format; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
416 |
} else if (format[0] == '%' && format[1] == '%' && |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
417 |
strchr(format+2, '%') == NULL) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
418 |
// happens a lot on machines with names like %foo |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
419 |
flen--; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
420 |
raw = format+1; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
421 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
422 |
if (raw != NULL) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
423 |
st->print_raw(raw, (int) flen); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
424 |
return (int) flen; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
425 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
426 |
va_list ap; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
427 |
va_start(ap, format); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
428 |
julong cnt0 = st->count(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
429 |
st->vprint(format, ap); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
430 |
julong cnt1 = st->count(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
431 |
va_end(ap); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
432 |
return (int)(cnt1 - cnt0); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
433 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
434 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
435 |
address decode_env::decode_instructions(address start, address end) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
436 |
_start = start; _end = end; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
437 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
438 |
assert(((((intptr_t)start | (intptr_t)end) % Disassembler::pd_instruction_alignment()) == 0), "misaligned insn addr"); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
439 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
440 |
const int show_bytes = false; // for disassembler debugging |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
441 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
442 |
//_version = Disassembler::pd_cpu_version(); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
443 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
444 |
if (!Disassembler::can_decode()) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
445 |
return NULL; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
446 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
447 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
448 |
// decode a series of instructions and return the end of the last instruction |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
449 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
450 |
if (_print_raw) { |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
451 |
// Print whatever the library wants to print, w/o fancy callbacks. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
452 |
// This is mainly for debugging the library itself. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
453 |
FILE* out = stdout; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
454 |
FILE* xmlout = (_print_raw > 1 ? out : NULL); |
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
455 |
return use_new_version ? |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
456 |
(address) |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
457 |
(*Disassembler::_decode_instructions_virtual)((uintptr_t)start, (uintptr_t)end, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
458 |
start, end - start, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
459 |
NULL, (void*) xmlout, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
460 |
NULL, (void*) out, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
461 |
options(), 0/*nice new line*/) |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
462 |
: |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
463 |
(address) |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
464 |
(*Disassembler::_decode_instructions)(start, end, |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
465 |
NULL, (void*) xmlout, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
466 |
NULL, (void*) out, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
467 |
options()); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
468 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
469 |
|
14384
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
470 |
return use_new_version ? |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
471 |
(address) |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
472 |
(*Disassembler::_decode_instructions_virtual)((uintptr_t)start, (uintptr_t)end, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
473 |
start, end - start, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
474 |
&event_to_env, (void*) this, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
475 |
&printf_to_env, (void*) this, |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
476 |
options(), 0/*nice new line*/) |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
477 |
: |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
478 |
(address) |
801df8025142
8000489: older builds of hsdis don't work anymore after 6879063
minqi
parents:
13897
diff
changeset
|
479 |
(*Disassembler::_decode_instructions)(start, end, |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
480 |
&event_to_env, (void*) this, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
481 |
&printf_to_env, (void*) this, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
482 |
options()); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
483 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
484 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
485 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
486 |
void Disassembler::decode(CodeBlob* cb, outputStream* st) { |
35542
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
33585
diff
changeset
|
487 |
ttyLocker ttyl; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
488 |
if (!load_library()) return; |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
489 |
if (cb->is_nmethod()) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
490 |
decode((nmethod*)cb, st); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
491 |
return; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
492 |
} |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
493 |
decode_env env(cb, st); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
494 |
env.output()->print_cr("----------------------------------------------------------------------"); |
42650 | 495 |
if (cb->is_aot()) { |
496 |
env.output()->print("A "); |
|
497 |
if (cb->is_compiled()) { |
|
498 |
CompiledMethod* cm = (CompiledMethod*)cb; |
|
499 |
env.output()->print("%d ",cm->compile_id()); |
|
500 |
cm->method()->method_holder()->name()->print_symbol_on(env.output()); |
|
501 |
env.output()->print("."); |
|
502 |
cm->method()->name()->print_symbol_on(env.output()); |
|
503 |
cm->method()->signature()->print_symbol_on(env.output()); |
|
504 |
} else { |
|
505 |
env.output()->print_cr("%s", cb->name()); |
|
506 |
} |
|
507 |
} else { |
|
508 |
env.output()->print_cr("%s", cb->name()); |
|
509 |
} |
|
33198 | 510 |
env.output()->print_cr(" at [" PTR_FORMAT ", " PTR_FORMAT "] " JLONG_FORMAT " bytes", p2i(cb->code_begin()), p2i(cb->code_end()), ((jlong)(cb->code_end() - cb->code_begin())) * sizeof(unsigned char*)); |
6418 | 511 |
env.decode_instructions(cb->code_begin(), cb->code_end()); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
512 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
513 |
|
50528
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
514 |
void Disassembler::decode(address start, address end, outputStream* st, CodeStrings c, |
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
515 |
ptrdiff_t offset) { |
35542
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
33585
diff
changeset
|
516 |
ttyLocker ttyl; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
517 |
if (!load_library()) return; |
50528
1fd4844371bb
8204680: Disassembly does not display code strings in stubs
aph
parents:
49754
diff
changeset
|
518 |
decode_env env(CodeCache::find_blob_unsafe(start), st, c, offset); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
519 |
env.decode_instructions(start, end); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
520 |
} |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
521 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
522 |
void Disassembler::decode(nmethod* nm, outputStream* st) { |
35542
9dccb7f9f656
8071374: -XX:+PrintAssembly -XX:+PrintSignatureHandlers crash fastdebug VM with assert(limit == __null || limit <= nm->code_end()) in RelocIterator::initialize
vlivanov
parents:
33585
diff
changeset
|
523 |
ttyLocker ttyl; |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
524 |
if (!load_library()) return; |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
525 |
decode_env env(nm, st); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
526 |
env.output()->print_cr("----------------------------------------------------------------------"); |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
527 |
|
6418 | 528 |
unsigned char* p = nm->code_begin(); |
529 |
unsigned char* end = nm->code_end(); |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
530 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
531 |
nm->method()->method_holder()->name()->print_symbol_on(env.output()); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
532 |
env.output()->print("."); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
533 |
nm->method()->name()->print_symbol_on(env.output()); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
534 |
nm->method()->signature()->print_symbol_on(env.output()); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
535 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
536 |
{ |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
537 |
char buffer[O_BUFLEN]; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
538 |
char* jvmciName = nm->jvmci_installed_code_name(buffer, O_BUFLEN); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
539 |
if (jvmciName != NULL) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
540 |
env.output()->print(" (%s)", jvmciName); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
541 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
542 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
543 |
#endif |
33198 | 544 |
env.output()->print_cr(" [" PTR_FORMAT ", " PTR_FORMAT "] " JLONG_FORMAT " bytes", p2i(p), p2i(end), ((jlong)(end - p))); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
31592
diff
changeset
|
545 |
|
7433 | 546 |
// Print constant table. |
547 |
if (nm->consts_size() > 0) { |
|
548 |
nm->print_nmethod_labels(env.output(), nm->consts_begin()); |
|
549 |
int offset = 0; |
|
550 |
for (address p = nm->consts_begin(); p < nm->consts_end(); p += 4, offset += 4) { |
|
551 |
if ((offset % 8) == 0) { |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
552 |
env.output()->print_cr(" " PTR_FORMAT " (offset: %4d): " PTR32_FORMAT " " PTR64_FORMAT, p2i(p), offset, *((int32_t*) p), *((int64_t*) p)); |
7433 | 553 |
} else { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
31592
diff
changeset
|
554 |
env.output()->print_cr(" " PTR_FORMAT " (offset: %4d): " PTR32_FORMAT, p2i(p), offset, *((int32_t*) p)); |
7433 | 555 |
} |
556 |
} |
|
557 |
} |
|
558 |
||
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
559 |
env.decode_instructions(p, end); |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
560 |
} |