author | mcimadamore |
Fri, 31 Aug 2018 18:01:47 +0100 | |
changeset 51612 | bdac20c6c8dd |
parent 51273 | 5064f30ac015 |
child 53109 | b99b41325d89 |
permissions | -rw-r--r-- |
51273
5064f30ac015
8191006: hsdis disassembler plugin does not compile with binutils 2.29+
dbuck
parents:
51271
diff
changeset
|
1 |
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
|
2 |
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
|
3 |
|
51202 | 4 |
The Universal Permissive License (UPL), Version 1.0 |
5 |
||
6 |
Subject to the condition set forth below, permission is hereby granted to |
|
7 |
any person obtaining a copy of this software, associated documentation |
|
8 |
and/or data (collectively the "Software"), free of charge and under any |
|
9 |
and all copyright rights in the Software, and any and all patent rights |
|
10 |
owned or freely licensable by each licensor hereunder covering either (i) |
|
11 |
the unmodified Software as contributed to or provided by such licensor, |
|
12 |
or (ii) the Larger Works (as defined below), to deal in both |
|
13 |
||
14 |
(a) the Software, and |
|
15 |
||
16 |
(b) any piece of software and/or hardware listed in the lrgrwrks.txt file |
|
51271 | 17 |
if one is included with the Software (each a "Larger Work" to which the |
51202 | 18 |
Software is contributed by such licensors), |
19 |
||
20 |
without restriction, including without limitation the rights to copy, |
|
21 |
create derivative works of, display, perform, and distribute the Software |
|
22 |
and make, use, sell, offer for sale, import, export, have made, and have |
|
23 |
sold the Software and the Larger Work(s), and to sublicense the foregoing |
|
24 |
rights on either these or other terms. |
|
25 |
||
26 |
This license is subject to the following condition: |
|
27 |
||
28 |
The above copyright notice and either this complete permission notice or |
|
29 |
at a minimum a reference to the UPL must be included in all copies or |
|
30 |
substantial portions of the Software. |
|
31 |
||
32 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
|
33 |
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
|
34 |
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN |
|
35 |
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
|
36 |
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
|
37 |
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
|
38 |
USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
39 |
||
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2564
diff
changeset
|
40 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2564
diff
changeset
|
41 |
or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2564
diff
changeset
|
42 |
questions. |
347
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 |
________________________________________________________________________ |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
45 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
46 |
'hsdis': A HotSpot plugin for disassembling dynamically generated code. |
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 files in this directory (Makefile, hsdis.[ch], hsdis-demo.c) |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
49 |
are built independently of the HotSpot JVM. |
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 |
To use the plugin with a JVM, you need a new version that can load it. |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
52 |
If the product mode of your JVM does not accept -XX:+PrintAssembly, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
53 |
you do not have a version that is new enough. |
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 |
* Building |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
56 |
|
51273
5064f30ac015
8191006: hsdis disassembler plugin does not compile with binutils 2.29+
dbuck
parents:
51271
diff
changeset
|
57 |
To build this project you need a copy of GNU binutils to build against. |
5064f30ac015
8191006: hsdis disassembler plugin does not compile with binutils 2.29+
dbuck
parents:
51271
diff
changeset
|
58 |
It is known to work with binutils 2.29.1, 2.30, and 2.31.1. Building |
5064f30ac015
8191006: hsdis disassembler plugin does not compile with binutils 2.29+
dbuck
parents:
51271
diff
changeset
|
59 |
against versions older than 2.29 is no longer supported. Download a |
2564
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
60 |
copy of the software from http://directory.fsf.org/project/binutils or |
51273
5064f30ac015
8191006: hsdis disassembler plugin does not compile with binutils 2.29+
dbuck
parents:
51271
diff
changeset
|
61 |
one of its mirrors. Builds targetting windows currently require the |
5064f30ac015
8191006: hsdis disassembler plugin does not compile with binutils 2.29+
dbuck
parents:
51271
diff
changeset
|
62 |
use of a cross compiler. |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
63 |
|
13873 | 64 |
Binutils should be configured with the '--disable-nls' flag to disable |
65 |
Native Language Support, otherwise you might get an "undefined |
|
66 |
reference to `libintl_gettext'" if you try to load hsdis.so on systems |
|
67 |
which don't have NLS by default. It also avoids build problems on |
|
68 |
other configurations that don't include the full NLS support. |
|
69 |
||
2564
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
70 |
The makefile looks for the sources in build/binutils or you can |
13873 | 71 |
specify it's location to the makefile using BINUTILS=path. It will |
2564
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
72 |
configure binutils and build it first and then build and link the |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
73 |
disasembly adapter. Make all will build the default target for your |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
74 |
platform. If you platform support both 32 and 64 simultaneously then |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
75 |
"make both" will build them both at once. "make all64" will |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
76 |
explicitly build the 64 bit version. By default this will build the |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
77 |
disassembler library only. If you build demo it will build a demo |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
78 |
program that attempts to exercise the library. |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
79 |
|
22822
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
80 |
With recent version of binutils (i.e. binutils-2.23.2) you may get the |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
81 |
following build error: |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
82 |
|
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
83 |
WARNING: `makeinfo' is missing on your system. You should only need it if |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
84 |
you modified a `.texi' or `.texinfo' file, or any other file |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
85 |
... |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
86 |
|
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
87 |
This is because of "Bug 15345 - binutils-2.23.2 tarball doesn't build |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
88 |
without makeinfo" [2]. The easiest way to work around this problem is |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
89 |
by doing a "touch $BINUTILS/bfd/doc/bfd.info". |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
90 |
|
2564
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
91 |
Windows |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
92 |
|
2564
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
93 |
In theory this should be buildable on Windows but getting a working |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
94 |
GNU build environment on Windows has proven difficult. MINGW should |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
95 |
be able to do it but at the time of this writing I was unable to get |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
96 |
this working. Instead you can use the mingw cross compiler on linux |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
97 |
to produce the windows binaries. For 32-bit windows you can install |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
98 |
mingw32 using your package manager and it will be added to your path |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
99 |
automatically. For 64-bit you need to download the 64 bit mingw from |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
100 |
http://sourceforge.net/projects/mingw-w64. Grab a copy of the |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
101 |
complete toolchain and unpack it somewhere. Put the bin directory of |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
102 |
the toolchain in your path. The mingw installs contain cross compile |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
103 |
versions of gcc that are named with a prefix to indicate what they are |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
104 |
targetting and you must tell the Makefile which one to use. This |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
105 |
should either be i586-mingw32msvc or x86_64-pc-mingw32 depending on |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
106 |
which on you are targetting and there should be a version of gcc in |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
107 |
your path named i586-mingw32msvc-gcc or x86_64-pc-mingw32-gcc. Tell |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
108 |
the makefile what prefix to use to find the mingw tools by using |
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
109 |
MINGW=. For example: |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
110 |
|
51273
5064f30ac015
8191006: hsdis disassembler plugin does not compile with binutils 2.29+
dbuck
parents:
51271
diff
changeset
|
111 |
make MINGW=i586-mingw32msvc BINUTILS=build/binutils-2.31.1 |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
112 |
|
51273
5064f30ac015
8191006: hsdis disassembler plugin does not compile with binutils 2.29+
dbuck
parents:
51271
diff
changeset
|
113 |
will build the Win32 cross compiled version of hsdis based on 2.31.1. |
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 |
* Installing |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
116 |
|
2564
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
117 |
Products are named like build/$OS-$LIBARCH/hsdis-$LIBARCH.so. You can |
10017
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
5547
diff
changeset
|
118 |
install them on your LD_LIBRARY_PATH, or inside of your JRE/JDK. The |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
5547
diff
changeset
|
119 |
search path in the JVM is: |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
5547
diff
changeset
|
120 |
|
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
5547
diff
changeset
|
121 |
1. <home>/jre/lib/<arch>/<vm>/libhsdis-<arch>.so |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
5547
diff
changeset
|
122 |
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:
5547
diff
changeset
|
123 |
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:
5547
diff
changeset
|
124 |
4. hsdis-<arch>.so (using LD_LIBRARY_PATH) |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
5547
diff
changeset
|
125 |
|
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
5547
diff
changeset
|
126 |
Note that there's a bug in hotspot versions prior to hs22 that causes |
34ddce3361b7
7062856: Disassembler needs to be smarter about finding hsdis after 1.7 launcher changes
never
parents:
5547
diff
changeset
|
127 |
steps 2 and 3 to fail when used with JDK7. |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
128 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
129 |
Now test: |
2564
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
130 |
|
85c3ae53ca1c
6684007: PrintAssembly plugin not available for linux or windows
never
parents:
347
diff
changeset
|
131 |
export LD_LIBRARY_PATH .../hsdis/build/$OS-$LIBARCH:$LD_LIBRARY_PATH |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
132 |
dargs='-XX:+UnlockDiagnosticVMOptions -XX:+PrintAssembly' |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
133 |
dargs=$dargs' -XX:PrintAssemblyOptions=hsdis-print-bytes' |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
134 |
java $dargs -Xbatch CompileCommand=print,*String.hashCode HelloWorld |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
135 |
|
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
136 |
If the product mode of the JVM does not accept -XX:+PrintAssembly, |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
diff
changeset
|
137 |
you do not have a version new enough to use the hsdis plugin. |
22822
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
138 |
|
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
139 |
* Wiki |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
140 |
|
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
141 |
More information can be found in the OpenJDK HotSpot Wiki [1]. |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
142 |
|
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
143 |
|
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
144 |
Resources: |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
145 |
|
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
146 |
[1] https://wiki.openjdk.java.net/display/HotSpot/PrintAssembly |
696e77cc8e7b
8019926: PPC64 (part 106): Make hsdis build and work on Linux/PPC64
simonis
parents:
13873
diff
changeset
|
147 |
[2] http://sourceware.org/bugzilla/show_bug.cgi?id=15345 |