annotate src/share/vm/ci/ciClassList.hpp @ 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 f6b0eb4e44cf
children d13d7aba8c12
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
2 * Copyright (c) 1999, 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: 1138
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
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: 1138
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
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
25 #ifndef SHARE_VM_CI_CICLASSLIST_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
26 #define SHARE_VM_CI_CICLASSLIST_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
27
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28 class ciEnv;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class ciObjectFactory;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class ciConstantPoolCache;
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class ciField;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class ciConstant;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class ciFlags;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class ciExceptionHandler;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 class ciCallProfile;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 class ciSignature;
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class ciBytecodeStream;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class ciSignatureStream;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class ciExceptionHandlerStream;
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class ciTypeFlow;
a61af66fc99e Initial load
duke
parents:
diff changeset
44
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
45 class ciBaseObject;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46 class ciObject;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 class ciNullObject;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 class ciInstance;
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
49 class ciCallSite;
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 3939
diff changeset
50 class ciMemberName;
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
51 class ciMethodHandle;
6822
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
52 class ciMethodType;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
53 class ciArray;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
54 class ciObjArray;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
55 class ciTypeArray;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
56 class ciSymbol;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
57 class ciMetadata;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 class ciMethod;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 class ciMethodData;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 class ciReceiverTypeData; // part of ciMethodData
a61af66fc99e Initial load
duke
parents:
diff changeset
61 class ciType;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 class ciReturnAddress;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 class ciKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 class ciInstanceKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 class ciArrayKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 class ciObjArrayKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 class ciTypeArrayKlass;
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Simulate Java Language style package-private access with
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // friend declarations.
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // This is a great idea but gcc and other C++ compilers give an
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // error for being friends with yourself, so this macro does not
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // compile on some platforms.
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // Everyone gives access to ciObjectFactory
a61af66fc99e Initial load
duke
parents:
diff changeset
76 #define CI_PACKAGE_ACCESS \
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 2426
diff changeset
77 friend class ciObjectFactory; \
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 2426
diff changeset
78 friend class VMStructs;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // These are the packages that have access to ciEnv
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // Any more access must be given explicitly.
a61af66fc99e Initial load
duke
parents:
diff changeset
82 #define CI_PACKAGE_ACCESS_TO \
a61af66fc99e Initial load
duke
parents:
diff changeset
83 friend class ciObjectFactory; \
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 2426
diff changeset
84 friend class VMStructs; \
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
85 friend class ciCallSite; \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
86 friend class ciConstantPoolCache; \
a61af66fc99e Initial load
duke
parents:
diff changeset
87 friend class ciField; \
a61af66fc99e Initial load
duke
parents:
diff changeset
88 friend class ciConstant; \
a61af66fc99e Initial load
duke
parents:
diff changeset
89 friend class ciFlags; \
a61af66fc99e Initial load
duke
parents:
diff changeset
90 friend class ciExceptionHandler; \
a61af66fc99e Initial load
duke
parents:
diff changeset
91 friend class ciCallProfile; \
a61af66fc99e Initial load
duke
parents:
diff changeset
92 friend class ciSignature; \
a61af66fc99e Initial load
duke
parents:
diff changeset
93 friend class ciBytecodeStream; \
a61af66fc99e Initial load
duke
parents:
diff changeset
94 friend class ciSignatureStream; \
a61af66fc99e Initial load
duke
parents:
diff changeset
95 friend class ciExceptionHandlerStream; \
a61af66fc99e Initial load
duke
parents:
diff changeset
96 friend class ciObject; \
a61af66fc99e Initial load
duke
parents:
diff changeset
97 friend class ciNullObject; \
a61af66fc99e Initial load
duke
parents:
diff changeset
98 friend class ciInstance; \
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 3939
diff changeset
99 friend class ciMemberName; \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
100 friend class ciMethod; \
a61af66fc99e Initial load
duke
parents:
diff changeset
101 friend class ciMethodData; \
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
102 friend class ciMethodHandle; \
6822
f6b0eb4e44cf 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 6725
diff changeset
103 friend class ciMethodType; \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104 friend class ciReceiverTypeData; \
a61af66fc99e Initial load
duke
parents:
diff changeset
105 friend class ciSymbol; \
a61af66fc99e Initial load
duke
parents:
diff changeset
106 friend class ciArray; \
a61af66fc99e Initial load
duke
parents:
diff changeset
107 friend class ciObjArray; \
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
108 friend class ciMetadata; \
6972
bd7a7ce2e264 6830717: replay of compilations would help with debugging
minqi
parents: 6822
diff changeset
109 friend class ciReplay; \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 friend class ciTypeArray; \
a61af66fc99e Initial load
duke
parents:
diff changeset
111 friend class ciType; \
a61af66fc99e Initial load
duke
parents:
diff changeset
112 friend class ciReturnAddress; \
a61af66fc99e Initial load
duke
parents:
diff changeset
113 friend class ciKlass; \
a61af66fc99e Initial load
duke
parents:
diff changeset
114 friend class ciInstanceKlass; \
a61af66fc99e Initial load
duke
parents:
diff changeset
115 friend class ciArrayKlass; \
a61af66fc99e Initial load
duke
parents:
diff changeset
116 friend class ciObjArrayKlass; \
a61af66fc99e Initial load
duke
parents:
diff changeset
117 friend class ciTypeArrayKlass; \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
118
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
119 #endif // SHARE_VM_CI_CICLASSLIST_HPP