annotate make/sa.files @ 6972:bd7a7ce2e264

6830717: replay of compilations would help with debugging Summary: When java process crashed in compiler thread, repeat the compilation process will help finding root cause. This is done with using SA dump application class data and replay data from core dump, then use debug version of jvm to recompile the problematic java method. Reviewed-by: kvn, twisti, sspitsyn Contributed-by: yumin.qi@oracle.com
author minqi
date Mon, 12 Nov 2012 14:03:53 -0800
parents 5a98bf7d847b
children 5ed317b25e23
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
6782
5a98bf7d847b 6879063: SA should use hsdis for disassembly
minqi
parents: 3987
diff changeset
2 # Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 311
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 311
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 311
diff changeset
21 # questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # This filelist macro is included in platform specific sa.make
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # included all packages/*.java. package list can be generated by
a61af66fc99e Initial load
duke
parents:
diff changeset
27 # $(GAMMADIR)/agent/make/build-pkglist. Then manually removed all
a61af66fc99e Initial load
duke
parents:
diff changeset
28 # classes in sun.jvm.hotspot.ui (and subpackages), all ui classes
a61af66fc99e Initial load
duke
parents:
diff changeset
29 # in sun.jvm.hotspot.bugspot/hotspot and SPARC and x86 disassembler
a61af66fc99e Initial load
duke
parents:
diff changeset
30 # classes and sun.jvm.hotspot.utilities.soql.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 # define AGENT_DIR before including this file in sa.make
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 AGENT_SRC_DIR = $(AGENT_DIR)/src/share/classes
a61af66fc99e Initial load
duke
parents:
diff changeset
35
311
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
36 # Splitted the set of files into two sets because on linux plaform
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
37 # listing or compiling all the files results in 'Argument list too long' error.
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
38
3963
098acdf97f09 7096016: SA build still produces "arg list too long" errors
never
parents: 3960
diff changeset
39 AGENT_FILES = \
311
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
40 $(AGENT_SRC_DIR)/sun/jvm/hotspot/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
41 $(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
42 $(AGENT_SRC_DIR)/sun/jvm/hotspot/asm/sparc/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
43 $(AGENT_SRC_DIR)/sun/jvm/hotspot/bugspot/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
44 $(AGENT_SRC_DIR)/sun/jvm/hotspot/bugspot/tree/*.java \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45 $(AGENT_SRC_DIR)/sun/jvm/hotspot/c1/*.java \
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 1552
diff changeset
46 $(AGENT_SRC_DIR)/sun/jvm/hotspot/ci/*.java \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47 $(AGENT_SRC_DIR)/sun/jvm/hotspot/code/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
48 $(AGENT_SRC_DIR)/sun/jvm/hotspot/compiler/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
49 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/*.java \
311
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
50 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/amd64/*.java \
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3939
diff changeset
51 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/bsd/*.java \
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3939
diff changeset
52 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/bsd/amd64/*.java \
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3939
diff changeset
53 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/bsd/x86/*.java \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/cdbg/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
55 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/cdbg/basic/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
56 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/cdbg/basic/x86/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
57 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/cdbg/basic/amd64/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
58 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/dummy/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
59 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/linux/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
60 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/linux/amd64/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
61 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/linux/x86/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
62 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/linux/sparc/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
63 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/posix/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
64 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/posix/elf/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
65 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/proc/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
66 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/proc/amd64/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
67 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/proc/sparc/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
68 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/proc/x86/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
69 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/remote/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
70 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/remote/amd64/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
71 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/remote/sparc/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
72 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/remote/x86/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
73 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/sparc/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
74 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/win32/coff/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
75 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/windbg/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
76 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/windbg/amd64/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
77 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/windbg/x86/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
78 $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/x86/*.java \
3972
4f93f0d00802 7059019: G1: add G1 support to the SA
tonyp
parents: 3939
diff changeset
79 $(AGENT_SRC_DIR)/sun/jvm/hotspot/gc_implementation/g1/*.java \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 $(AGENT_SRC_DIR)/sun/jvm/hotspot/gc_implementation/parallelScavenge/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
81 $(AGENT_SRC_DIR)/sun/jvm/hotspot/gc_implementation/shared/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
82 $(AGENT_SRC_DIR)/sun/jvm/hotspot/gc_interface/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
83 $(AGENT_SRC_DIR)/sun/jvm/hotspot/interpreter/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
84 $(AGENT_SRC_DIR)/sun/jvm/hotspot/jdi/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
85 $(AGENT_SRC_DIR)/sun/jvm/hotspot/livejvm/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
86 $(AGENT_SRC_DIR)/sun/jvm/hotspot/memory/*.java \
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 1552
diff changeset
87 $(AGENT_SRC_DIR)/sun/jvm/hotspot/oops/*.java \
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 1552
diff changeset
88 $(AGENT_SRC_DIR)/sun/jvm/hotspot/opto/*.java \
3963
098acdf97f09 7096016: SA build still produces "arg list too long" errors
never
parents: 3960
diff changeset
89 $(AGENT_SRC_DIR)/sun/jvm/hotspot/prims/*.java \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
90 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
91 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/amd64/*.java \
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3939
diff changeset
92 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/bsd/*.java \
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3939
diff changeset
93 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/bsd_amd64/*.java \
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3939
diff changeset
94 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/bsd_x86/*.java \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
95 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
96 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_amd64/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
97 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_x86/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
98 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_sparc/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
99 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/posix/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
100 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/solaris_amd64/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
101 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/solaris_sparc/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
102 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/solaris_x86/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
103 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/sparc/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
104 $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/x86/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
105 $(AGENT_SRC_DIR)/sun/jvm/hotspot/tools/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
106 $(AGENT_SRC_DIR)/sun/jvm/hotspot/tools/jcore/*.java \
311
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
107 $(AGENT_SRC_DIR)/sun/jvm/hotspot/tools/soql/*.java \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
108 $(AGENT_SRC_DIR)/sun/jvm/hotspot/types/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
109 $(AGENT_SRC_DIR)/sun/jvm/hotspot/types/basic/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
110 $(AGENT_SRC_DIR)/sun/jvm/hotspot/utilities/*.java \
a61af66fc99e Initial load
duke
parents:
diff changeset
111 $(AGENT_SRC_DIR)/sun/jvm/hotspot/utilities/memo/*.java \
311
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
112 $(AGENT_SRC_DIR)/sun/jvm/hotspot/utilities/soql/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
113 $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
114 $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/action/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
115 $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/classbrowser/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
116 $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/table/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
117 $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/tree/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
118 $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/treetable/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
119 $(AGENT_SRC_DIR)/com/sun/java/swing/action/*.java \
25c3145237c6 6731958: Include all the SA classes into sa-jdi.jar
poonam
parents: 196
diff changeset
120 $(AGENT_SRC_DIR)/com/sun/java/swing/ui/*.java