annotate src/share/vm/includeDB_core @ 1836:894b1d7c7e01

6423256: GC stacks should use a better data structure 6942771: SEGV in ParScanThreadState::take_from_overflow_stack Reviewed-by: apetrusenko, ysr, pbk
author jcoomes
date Tue, 28 Sep 2010 15:56:15 -0700
parents 8b10f48633dc
children e41cd7fd68a6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 //
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1507
diff changeset
2 // Copyright (c) 1997, 2010, 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: 1507
diff changeset
19 // Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1507
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: 1507
diff changeset
21 // questions.
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
22 //
0
a61af66fc99e Initial load
duke
parents:
diff changeset
23 //
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // NOTE: DO NOT CHANGE THIS COPYRIGHT TO NEW STYLE - IT WILL BREAK makeDeps!
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // includeDB format:
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // a comment starts with '// ' and goes to the end of the line
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // anything else is a pair of filenames. The line "x.cpp y.hpp" means
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // "x.cpp must include y.hpp". Similarly, "y.hpp z.hpp" means "any file including
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // y.hpp must also include z.hpp, and z.hpp must be included before y.hpp".
a61af66fc99e Initial load
duke
parents:
diff changeset
33 //
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Style hint: we try to keep the entries ordered alphabetically, both
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // globally (left-hand sides) and within a given file (right-hand sides)
a61af66fc99e Initial load
duke
parents:
diff changeset
36 //
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // To avoid unnecessary conflicts with the work of other programmers,
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // do not delete, move, or reformat pre-existing lines. Do not attempt
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // to "optimize" this file incrementally.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 //
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // ============ Platform dependent include files ===========
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // Some header files occur in clusters. Header files which depend
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // on the token "generate_platform_dependent_include" are included
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // directly by other header files, and should not be explicitly declared
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // as dependencies. Header files named H.inline.hpp generally contain
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // bodies for inline functions declared in H.hpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
48 //
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
49 // NOTE: Files that use the token "generate_platform_dependent_include"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // are expected to contain macro references like <os>, <arch_model>, ... and
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // makedeps has a dependency on these platform files looking like:
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
52 // foo_<macro>.trailing_string
0
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // (where "trailing_string" can be any legal filename strings but typically
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // is "hpp" or "inline.hpp").
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
55 //
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // The dependency in makedeps (and enforced) is that an underscore
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // will precedure the macro invocation. Note that this restriction
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // is only enforced on filenames that have the dependency token
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // "generate_platform_dependent_include" so other files using macro
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // expansion (typically .cpp files) have no requirement to have
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // an underscore precede the macro although this is encouraged for
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // readibility.
a61af66fc99e Initial load
duke
parents:
diff changeset
63 //
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // ======= Circular dependencies and inline functions ==========
a61af66fc99e Initial load
duke
parents:
diff changeset
65 //
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // (Sometimes, circular dependencies prevent complex function bodies
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // from being defined directly in H.hpp. In such cases, a client S.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // of H.hpp must always declare a dependency on H.inline.hpp, which in
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // turn will declare a dependency on H.hpp. If by some mischance S.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // declares a dependency on H.hpp, the compiler may complain about missing
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // inline function bodies, or (perhaps) the program may fail to link.
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // The solution is to have S.cpp depend on H.inline.hpp instead of H.hpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 //
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Generally, if in response to a source code change the compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // issues an error in a file F (which may be either a header or a
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // source file), you should consider if the error arises from a missing
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // class definition C. If that is the case, find the header file H which
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // contains C (often, H=C.hpp, but you may have to search for C's definition).
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // Then, add a line to the includeDB file as appropriate.
a61af66fc99e Initial load
duke
parents:
diff changeset
80 //
a61af66fc99e Initial load
duke
parents:
diff changeset
81 //
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Here are some typical compiler errors that may require changes to includeDB.
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // (Messages are taken from Sun's SPARC compiler.)
a61af66fc99e Initial load
duke
parents:
diff changeset
84 //
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // "klassVtable.cpp", line 96: Error: No_GC_Verifier is not defined.
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Source code:
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // No_GC_Verifier no_gc;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 //
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // The problem is that the class name No_GC_Verifier is not declared,
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // so the compiler is confused by the syntax. The solution:
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // klassVtable.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
92 //
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // Sometimes the compiler has only partial knowledge about a class:
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // "privilegedStack.cpp", line 60: Error: cast is not a member of instanceKlass.
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Source code:
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // if (_protection_domain != instanceKlass::cast(method->method_holder())->protection_domain()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 //
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // Here, instanceKlass is known to the compiler as a type, because of a
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // forward declaration somewhere ("class instanceKlass;"). The problem
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // is that the compiler has not seen the body of instanceKlass, and so it
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // complains that it does not know about "instanceKlass::cast". Solution:
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // privilegedStack.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
103 //
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // Here's another example of a missing declaration:
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // "privilegedStack.cpp", line 111: Error: The function AllocateHeap must have a prototype.
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Source code:
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // _array = NEW_C_HEAP_ARRAY(PrivilegedElement, initial_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 //
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // The problem is that the macro call expands to use a heap function
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // which is defined (for technical reasons) in a different file. Solution:
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // privilegedStack.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // The macro is defined in allocation.hpp, while the function is
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // defined (as an inline) in allocation.inline.hpp. Generally, if you
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // find you need a header H.hpp, and there is also a header
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // H.inline.hpp use the latter, because it contains inline definitions
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // you will require.
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 abstractCompiler.cpp abstractCompiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
119 abstractCompiler.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 abstractCompiler.hpp compilerInterface.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 abstractInterpreter.hpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
124 abstractInterpreter.hpp interp_masm_<arch_model>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
125 abstractInterpreter.hpp stubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
126 abstractInterpreter.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
127 abstractInterpreter.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
128 abstractInterpreter.hpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 accessFlags.cpp accessFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
131 accessFlags.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
132 accessFlags.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 accessFlags.hpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
135 accessFlags.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 allocation.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
138 allocation.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
139 allocation.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
140 allocation.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
141 allocation.cpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
142 allocation.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
143 allocation.cpp task.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
144 allocation.cpp threadCritical.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 allocation.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
147 allocation.hpp globals.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 allocation.inline.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 aprofiler.cpp aprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
152 aprofiler.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
153 aprofiler.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
154 aprofiler.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
155 aprofiler.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
156 aprofiler.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
157 aprofiler.cpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
158 aprofiler.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 aprofiler.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
161 aprofiler.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
162 aprofiler.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
163 aprofiler.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
164 aprofiler.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 arguments.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
167 arguments.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
168 arguments.cpp cardTableRS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
169 arguments.cpp compilerOracle.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
170 arguments.cpp defaultStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
171 arguments.cpp globals_extension.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
172 arguments.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
173 arguments.cpp javaAssertions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
174 arguments.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
175 arguments.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
176 arguments.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
177 arguments.cpp os_<os_family>.inline.hpp
1244
745c853ee57f 6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents: 1189
diff changeset
178 arguments.cpp referenceProcessor.hpp
1284
5f1f51edaff6 6928081: G1: rename parameters common with CMS
jmasa
parents: 1262
diff changeset
179 arguments.cpp taskqueue.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
180 arguments.cpp universe.inline.hpp
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
181 arguments.cpp vm_version_<arch>.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
182
242
d95b224e9f17 6721093: -XX:AppendRatio=N not supported
kamg
parents: 196
diff changeset
183 arguments.hpp java.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
184 arguments.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
185 arguments.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 array.cpp array.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
188 array.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
189 array.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 array.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
192 array.hpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 arrayKlass.cpp arrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
195 arrayKlass.cpp arrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
196 arrayKlass.cpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
197 arrayKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
198 arrayKlass.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
199 arrayKlass.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
200 arrayKlass.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
201 arrayKlass.cpp jvmti.h
a61af66fc99e Initial load
duke
parents:
diff changeset
202 arrayKlass.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
203 arrayKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
204 arrayKlass.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
205 arrayKlass.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
206 arrayKlass.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208 arrayKlass.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
209 arrayKlass.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
210 arrayKlass.hpp klassVtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
211 arrayKlass.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 arrayKlassKlass.cpp arrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
214 arrayKlassKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
215 arrayKlassKlass.cpp javaClasses.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
216 arrayKlassKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217 arrayKlassKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 arrayKlassKlass.hpp arrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
220 arrayKlassKlass.hpp klassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 arrayOop.cpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
223 arrayOop.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
224 arrayOop.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
225 arrayOop.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 arrayOop.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
228 arrayOop.hpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 assembler.cpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
231 assembler.cpp assembler.inline.hpp
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
232 assembler.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
233 assembler.cpp codeBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
234 assembler.cpp icache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
235 assembler.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 assembler.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
238 assembler.hpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
239 assembler.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
240 assembler.hpp oopRecorder.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
241 assembler.hpp register_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
242 assembler.hpp relocInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
243 assembler.hpp top.hpp
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
244 assembler.hpp vm_version_<arch>.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 assembler.inline.hpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
247 assembler.inline.hpp codeBuffer.hpp
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
248 assembler.inline.hpp disassembler.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
249 assembler.inline.hpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
250
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
251 assembler_<arch>.cpp assembler_<arch>.inline.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
252 assembler_<arch>.cpp biasedLocking.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
253 assembler_<arch>.cpp cardTableModRefBS.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
254 assembler_<arch>.cpp collectedHeap.inline.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
255 assembler_<arch>.cpp interfaceSupport.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
256 assembler_<arch>.cpp interpreter.hpp
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
257 assembler_<arch>.cpp methodHandles.hpp
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
258 assembler_<arch>.cpp objectMonitor.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
259 assembler_<arch>.cpp os.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
260 assembler_<arch>.cpp resourceArea.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
261 assembler_<arch>.cpp sharedRuntime.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
262 assembler_<arch>.cpp stubRoutines.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
263
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
264 assembler_<arch>.hpp generate_platform_dependent_include
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
265
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
266 assembler_<arch>.inline.hpp assembler.inline.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
267 assembler_<arch>.inline.hpp codeBuffer.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
268 assembler_<arch>.inline.hpp codeCache.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
269 assembler_<arch>.inline.hpp handles.inline.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
270
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
271 assembler_<os_arch>.cpp assembler.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
272 assembler_<os_arch>.cpp assembler_<arch>.inline.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
273 assembler_<os_arch>.cpp os.hpp
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
274 assembler_<os_arch>.cpp threadLocalStorage.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 atomic.cpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
277 atomic.cpp atomic_<os_arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
278 atomic.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 atomic.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 atomic_<os_arch>.inline.hpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
283 atomic_<os_arch>.inline.hpp os.hpp
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
284 atomic_<os_arch>.inline.hpp vm_version_<arch>.hpp
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1648
diff changeset
285 atomic_<os_arch>.inline.hpp orderAccess_<os_arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // attachListener is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289 attachListener.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
290 attachListener.hpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
291 attachListener.hpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
292
1091
6aa7255741f3 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 941
diff changeset
293 barrierSet.cpp barrierSet.inline.hpp
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
294 barrierSet.cpp collectedHeap.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
295 barrierSet.cpp universe.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
296
0
a61af66fc99e Initial load
duke
parents:
diff changeset
297 barrierSet.hpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
298 barrierSet.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 barrierSet.inline.hpp barrierSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
301 barrierSet.inline.hpp cardTableModRefBS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 biasedLocking.cpp biasedLocking.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
304 biasedLocking.cpp klass.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
305 biasedLocking.cpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
306 biasedLocking.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
307 biasedLocking.cpp task.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
308 biasedLocking.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
309 biasedLocking.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
310 biasedLocking.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 biasedLocking.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
313 biasedLocking.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
314
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
315 bitMap.cpp allocation.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
316 bitMap.cpp bitMap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
317 bitMap.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
318 bitMap.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 bitMap.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
321 bitMap.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 bitMap.inline.hpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
324 bitMap.inline.hpp bitMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 blockOffsetTable.cpp blockOffsetTable.inline.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
327 blockOffsetTable.cpp collectedHeap.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
328 blockOffsetTable.cpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
329 blockOffsetTable.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
330 blockOffsetTable.cpp oop.inline.hpp
1716
be3f9c242c9d 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 1681
diff changeset
331 blockOffsetTable.cpp space.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
332 blockOffsetTable.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 blockOffsetTable.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
335 blockOffsetTable.hpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
336 blockOffsetTable.hpp virtualspace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
337
a61af66fc99e Initial load
duke
parents:
diff changeset
338 blockOffsetTable.inline.hpp blockOffsetTable.hpp
1716
be3f9c242c9d 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 1681
diff changeset
339 blockOffsetTable.inline.hpp safepoint.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
340 blockOffsetTable.inline.hpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 bytecode.cpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
343 bytecode.cpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
344 bytecode.cpp fieldType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
345 bytecode.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
346 bytecode.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
347 bytecode.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
348 bytecode.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
349 bytecode.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 bytecode.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
352 bytecode.hpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
353 bytecode.hpp bytes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
354 bytecode.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 bytecodeHistogram.cpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
357 bytecodeHistogram.cpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
358 bytecodeHistogram.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
359 bytecodeHistogram.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 bytecodeHistogram.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
362 bytecodeHistogram.hpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 bytecodeInterpreter.cpp no_precompiled_headers
a61af66fc99e Initial load
duke
parents:
diff changeset
365 bytecodeInterpreter.cpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
366 bytecodeInterpreter.cpp bytecodeInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
367 bytecodeInterpreter.cpp bytecodeInterpreter.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
368 bytecodeInterpreter.cpp cardTableModRefBS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
369 bytecodeInterpreter.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
370 bytecodeInterpreter.cpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
371 bytecodeInterpreter.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
372 bytecodeInterpreter.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
373 bytecodeInterpreter.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
374 bytecodeInterpreter.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
375 bytecodeInterpreter.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
376 bytecodeInterpreter.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
377 bytecodeInterpreter.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
378 bytecodeInterpreter.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
379 bytecodeInterpreter.cpp orderAccess_<os_arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
380 bytecodeInterpreter.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
381 bytecodeInterpreter.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
382 bytecodeInterpreter.cpp threadCritical.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
383 bytecodeInterpreter.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 bytecodeInterpreter_<arch>.cpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
386 bytecodeInterpreter_<arch>.cpp bytecodeInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
387 bytecodeInterpreter_<arch>.cpp bytecodeInterpreter.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
388 bytecodeInterpreter_<arch>.cpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
389 bytecodeInterpreter_<arch>.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
390 bytecodeInterpreter_<arch>.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
391 bytecodeInterpreter_<arch>.cpp interp_masm_<arch_model>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
392 bytecodeInterpreter_<arch>.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
393 bytecodeInterpreter_<arch>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
394 bytecodeInterpreter_<arch>.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
395 bytecodeInterpreter_<arch>.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
396 bytecodeInterpreter_<arch>.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
397 bytecodeInterpreter_<arch>.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
398 bytecodeInterpreter_<arch>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
399 bytecodeInterpreter_<arch>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
400 bytecodeInterpreter_<arch>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
401 bytecodeInterpreter_<arch>.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
402 bytecodeInterpreter_<arch>.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
403
a61af66fc99e Initial load
duke
parents:
diff changeset
404 bytecodeInterpreterWithChecks.cpp bytecodeInterpreter.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
405
a61af66fc99e Initial load
duke
parents:
diff changeset
406 bytecodeInterpreter.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
407 bytecodeInterpreter.hpp bytes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
408 bytecodeInterpreter.hpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
409 bytecodeInterpreter.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
410 bytecodeInterpreter.hpp globals.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
411 bytecodeInterpreter.hpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
412 bytecodeInterpreter.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
413 bytecodeInterpreter.hpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 bytecodeInterpreter.inline.hpp bytecodeInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
416 bytecodeInterpreter.inline.hpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 bytecodeInterpreter_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
419
a61af66fc99e Initial load
duke
parents:
diff changeset
420 bytecodeInterpreter_<arch>.inline.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 bytecodeStream.cpp bytecodeStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
423 bytecodeStream.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
424
a61af66fc99e Initial load
duke
parents:
diff changeset
425 bytecodeStream.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
426 bytecodeStream.hpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
427 bytecodeStream.hpp bytes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
428 bytecodeStream.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 bytecodeTracer.cpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
431 bytecodeTracer.cpp bytecodeTracer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
432 bytecodeTracer.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
433 bytecodeTracer.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
434 bytecodeTracer.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
435 bytecodeTracer.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
436 bytecodeTracer.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
437 bytecodeTracer.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
438 bytecodeTracer.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
439 bytecodeTracer.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 bytecodeTracer.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 bytecodes.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
444 bytecodes.cpp bytes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
445 bytecodes.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
446 bytecodes.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 bytecodes.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
449 bytecodes.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
450
a61af66fc99e Initial load
duke
parents:
diff changeset
451 bytecodes_<arch>.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 bytecodes_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
454
a61af66fc99e Initial load
duke
parents:
diff changeset
455 bytes_<arch>.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 bytes_<os_arch>.inline.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
458
a61af66fc99e Initial load
duke
parents:
diff changeset
459 cardTableModRefBS.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
460 cardTableModRefBS.cpp cardTableModRefBS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
461 cardTableModRefBS.cpp cardTableRS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
462 cardTableModRefBS.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
463 cardTableModRefBS.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
464 cardTableModRefBS.cpp sharedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
465 cardTableModRefBS.cpp space.hpp
603
dbbe28fc66b5 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 585
diff changeset
466 cardTableModRefBS.cpp space.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
467 cardTableModRefBS.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
468 cardTableModRefBS.cpp virtualspace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
469
a61af66fc99e Initial load
duke
parents:
diff changeset
470 cardTableModRefBS.hpp modRefBarrierSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
471 cardTableModRefBS.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
472 cardTableModRefBS.hpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
473
a61af66fc99e Initial load
duke
parents:
diff changeset
474 cardTableRS.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
475 cardTableRS.cpp cardTableRS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
476 cardTableRS.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
477 cardTableRS.cpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
478 cardTableRS.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
479 cardTableRS.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
480 cardTableRS.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
481 cardTableRS.cpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
482
a61af66fc99e Initial load
duke
parents:
diff changeset
483 cardTableRS.hpp cardTableModRefBS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
484 cardTableRS.hpp genRemSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
485 cardTableRS.hpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487 ciArray.cpp ciArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
488 ciArray.cpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
489 ciArray.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 ciArray.hpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
492 ciArray.hpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
493 ciArray.hpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
494 ciArray.hpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 ciArrayKlass.cpp ciArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
497 ciArrayKlass.cpp ciObjArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
498 ciArrayKlass.cpp ciTypeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
499 ciArrayKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 ciArrayKlass.hpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
502
a61af66fc99e Initial load
duke
parents:
diff changeset
503 ciArrayKlassKlass.hpp ciKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 ciCallProfile.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
506
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
507 ciCallSite.cpp ciCallSite.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
508 ciCallSite.cpp ciUtilities.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
509
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
510 ciCallSite.hpp ciInstance.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
511
0
a61af66fc99e Initial load
duke
parents:
diff changeset
512 ciConstant.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
513 ciConstant.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
514 ciConstant.cpp ciConstant.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
515 ciConstant.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 ciConstant.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
518 ciConstant.hpp ciNullObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
519
a61af66fc99e Initial load
duke
parents:
diff changeset
520 ciConstantPoolCache.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
521 ciConstantPoolCache.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
522 ciConstantPoolCache.cpp ciConstantPoolCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
523 ciConstantPoolCache.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 ciConstantPoolCache.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
526 ciConstantPoolCache.hpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
527
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1133
diff changeset
528 ciCPCache.cpp cpCacheOop.hpp
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1133
diff changeset
529 ciCPCache.cpp ciCPCache.hpp
1295
3cf667df43ef 6919934: JSR 292 needs to support x86 C1
twisti
parents: 1286
diff changeset
530 ciCPCache.cpp ciUtilities.hpp
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1133
diff changeset
531
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1133
diff changeset
532 ciCPCache.hpp ciClassList.hpp
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1133
diff changeset
533 ciCPCache.hpp ciObject.hpp
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
534 ciCPCache.hpp cpCacheOop.hpp
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1133
diff changeset
535
0
a61af66fc99e Initial load
duke
parents:
diff changeset
536 ciEnv.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
537 ciEnv.cpp ciConstant.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
538 ciEnv.cpp ciEnv.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
539 ciEnv.cpp ciField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
540 ciEnv.cpp ciInstance.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
541 ciEnv.cpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
542 ciEnv.cpp ciInstanceKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
543 ciEnv.cpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
544 ciEnv.cpp ciNullObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
545 ciEnv.cpp ciObjArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
546 ciEnv.cpp ciTypeArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
547 ciEnv.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
548 ciEnv.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
549 ciEnv.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
550 ciEnv.cpp compileLog.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
551 ciEnv.cpp compilerOracle.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
552 ciEnv.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
553 ciEnv.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
554 ciEnv.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
555 ciEnv.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
556 ciEnv.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
557 ciEnv.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
558 ciEnv.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
559 ciEnv.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
560 ciEnv.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
561 ciEnv.cpp reflection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
562 ciEnv.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
563 ciEnv.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
564 ciEnv.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
565 ciEnv.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
566 ciEnv.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
567
a61af66fc99e Initial load
duke
parents:
diff changeset
568 ciEnv.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
569 ciEnv.hpp ciObjectFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
570 ciEnv.hpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
571 ciEnv.hpp dependencies.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
572 ciEnv.hpp exceptionHandlerTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
573 ciEnv.hpp oopMap.hpp
1080
7c57aead6d3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1059
diff changeset
574 ciEnv.hpp systemDictionary.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
575 ciEnv.hpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
576
a61af66fc99e Initial load
duke
parents:
diff changeset
577 ciExceptionHandler.cpp ciExceptionHandler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
578 ciExceptionHandler.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
579
a61af66fc99e Initial load
duke
parents:
diff changeset
580 ciExceptionHandler.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
581 ciExceptionHandler.hpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
582
a61af66fc99e Initial load
duke
parents:
diff changeset
583 ciField.cpp ciField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
584 ciField.cpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
585 ciField.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
586 ciField.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
587 ciField.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
588 ciField.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
589 ciField.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
590 ciField.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
591 ciField.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
592 ciField.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
593
a61af66fc99e Initial load
duke
parents:
diff changeset
594 ciField.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
595 ciField.hpp ciConstant.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
596 ciField.hpp ciFlags.hpp
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
597 ciField.hpp ciInstance.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
598
a61af66fc99e Initial load
duke
parents:
diff changeset
599 ciFlags.cpp ciFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
600
a61af66fc99e Initial load
duke
parents:
diff changeset
601 ciFlags.hpp accessFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
602 ciFlags.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
603 ciFlags.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
604 ciFlags.hpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
605
a61af66fc99e Initial load
duke
parents:
diff changeset
606 ciInstance.cpp ciConstant.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
607 ciInstance.cpp ciField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
608 ciInstance.cpp ciInstance.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
609 ciInstance.cpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
610 ciInstance.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
611 ciInstance.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
612 ciInstance.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
613
a61af66fc99e Initial load
duke
parents:
diff changeset
614 ciInstance.hpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
615 ciInstance.hpp instanceOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
616
a61af66fc99e Initial load
duke
parents:
diff changeset
617 ciInstanceKlass.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
618 ciInstanceKlass.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
619 ciInstanceKlass.cpp ciField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
620 ciInstanceKlass.cpp ciInstance.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
621 ciInstanceKlass.cpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
622 ciInstanceKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
623 ciInstanceKlass.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
624 ciInstanceKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
625 ciInstanceKlass.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
626
a61af66fc99e Initial load
duke
parents:
diff changeset
627 ciInstanceKlass.hpp ciConstantPoolCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
628 ciInstanceKlass.hpp ciFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
629 ciInstanceKlass.hpp ciInstanceKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
630 ciInstanceKlass.hpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
631 ciInstanceKlass.hpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
632
a61af66fc99e Initial load
duke
parents:
diff changeset
633 ciInstanceKlassKlass.cpp ciInstanceKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
634 ciInstanceKlassKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 ciInstanceKlassKlass.hpp ciKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
637
a61af66fc99e Initial load
duke
parents:
diff changeset
638 ciKlass.cpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
639 ciKlass.cpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
640 ciKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
641 ciKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
642
a61af66fc99e Initial load
duke
parents:
diff changeset
643 ciKlass.hpp ciType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
644 ciKlass.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646 ciKlassKlass.cpp ciKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
647 ciKlassKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
648
a61af66fc99e Initial load
duke
parents:
diff changeset
649 ciKlassKlass.hpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
650 ciKlassKlass.hpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
651
a61af66fc99e Initial load
duke
parents:
diff changeset
652 ciMethod.cpp abstractCompiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
653 ciMethod.cpp allocation.inline.hpp
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
654 ciMethod.cpp bitMap.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
655 ciMethod.cpp ciCallProfile.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
656 ciMethod.cpp ciExceptionHandler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
657 ciMethod.cpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
658 ciMethod.cpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
659 ciMethod.cpp ciMethodBlocks.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
660 ciMethod.cpp ciMethodData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
661 ciMethod.cpp ciMethodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
662 ciMethod.cpp ciStreams.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
663 ciMethod.cpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
664 ciMethod.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
665 ciMethod.cpp compilerOracle.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
666 ciMethod.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
667 ciMethod.cpp generateOopMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
668 ciMethod.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
669 ciMethod.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
670 ciMethod.cpp methodLiveness.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
671 ciMethod.cpp nativeLookup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
672 ciMethod.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
673 ciMethod.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
674 ciMethod.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
675 ciMethod.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
676 ciMethod.cpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
677
a61af66fc99e Initial load
duke
parents:
diff changeset
678 ciMethod.hpp bitMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
679 ciMethod.hpp ciFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
680 ciMethod.hpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
681 ciMethod.hpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
682 ciMethod.hpp ciSignature.hpp
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
683 ciMethod.hpp methodHandles.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
684 ciMethod.hpp methodLiveness.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 ciMethodBlocks.cpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
687 ciMethodBlocks.cpp ciMethodBlocks.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
688 ciMethodBlocks.cpp ciStreams.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
689 ciMethodBlocks.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
690
a61af66fc99e Initial load
duke
parents:
diff changeset
691 ciMethodBlocks.hpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
692 ciMethodBlocks.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
693 ciMethodBlocks.hpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 ciMethodData.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
696 ciMethodData.cpp ciMethodData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
697 ciMethodData.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
698 ciMethodData.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
699 ciMethodData.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
700 ciMethodData.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
701
a61af66fc99e Initial load
duke
parents:
diff changeset
702 ciMethodData.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
703 ciMethodData.hpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
704 ciMethodData.hpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
705 ciMethodData.hpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
706 ciMethodData.hpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
707 ciMethodData.hpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
708
a61af66fc99e Initial load
duke
parents:
diff changeset
709 ciMethodKlass.cpp ciMethodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
710 ciMethodKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
711
a61af66fc99e Initial load
duke
parents:
diff changeset
712 ciMethodKlass.hpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
713 ciMethodKlass.hpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
714
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
715 ciMethodHandle.cpp ciClassList.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
716 ciMethodHandle.cpp ciInstance.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
717 ciMethodHandle.cpp ciMethodHandle.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
718 ciMethodHandle.cpp ciUtilities.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
719 ciMethodHandle.cpp methodHandles.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
720 ciMethodHandle.cpp methodHandleWalk.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
721
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
722 ciMethodHandle.hpp methodHandles.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
723
0
a61af66fc99e Initial load
duke
parents:
diff changeset
724 ciNullObject.cpp ciNullObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 ciNullObject.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
727 ciNullObject.hpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
728 ciNullObject.hpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
729
a61af66fc99e Initial load
duke
parents:
diff changeset
730 ciObjArray.hpp ciArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
731 ciObjArray.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
732 ciObjArray.hpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
733
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
734 ciObjArray.cpp ciObjArray.hpp
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
735 ciObjArray.cpp ciNullObject.hpp
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
736 ciObjArray.cpp ciUtilities.hpp
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
737 ciObjArray.cpp objArrayOop.hpp
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
738
139
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
739 ciObjArray.cpp ciObjArray.hpp
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
740 ciObjArray.cpp ciNullObject.hpp
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
741 ciObjArray.cpp ciUtilities.hpp
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
742 ciObjArray.cpp objArrayOop.hpp
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
743
0
a61af66fc99e Initial load
duke
parents:
diff changeset
744 ciObjArrayKlass.cpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
745 ciObjArrayKlass.cpp ciObjArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
746 ciObjArrayKlass.cpp ciObjArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
747 ciObjArrayKlass.cpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
748 ciObjArrayKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
749 ciObjArrayKlass.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
750
a61af66fc99e Initial load
duke
parents:
diff changeset
751 ciObjArrayKlass.hpp ciArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
752
a61af66fc99e Initial load
duke
parents:
diff changeset
753 ciObjArrayKlassKlass.cpp ciObjArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
754 ciObjArrayKlassKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
755
a61af66fc99e Initial load
duke
parents:
diff changeset
756 ciObjArrayKlassKlass.hpp ciArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
757
a61af66fc99e Initial load
duke
parents:
diff changeset
758 ciObject.cpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
759 ciObject.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
760 ciObject.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
761 ciObject.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
762
a61af66fc99e Initial load
duke
parents:
diff changeset
763 ciObject.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
764 ciObject.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
765 ciObject.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
766 ciObject.hpp jniHandles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
767
a61af66fc99e Initial load
duke
parents:
diff changeset
768 ciObjectFactory.cpp allocation.inline.hpp
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
769 ciObjectFactory.cpp ciCallSite.hpp
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 1133
diff changeset
770 ciObjectFactory.cpp ciCPCache.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
771 ciObjectFactory.cpp ciInstance.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
772 ciObjectFactory.cpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
773 ciObjectFactory.cpp ciInstanceKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
774 ciObjectFactory.cpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
775 ciObjectFactory.cpp ciMethodData.hpp
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
776 ciObjectFactory.cpp ciMethodHandle.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
777 ciObjectFactory.cpp ciMethodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
778 ciObjectFactory.cpp ciNullObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
779 ciObjectFactory.cpp ciObjArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
780 ciObjectFactory.cpp ciObjArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
781 ciObjectFactory.cpp ciObjArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
782 ciObjectFactory.cpp ciObjectFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
783 ciObjectFactory.cpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
784 ciObjectFactory.cpp ciSymbolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
785 ciObjectFactory.cpp ciTypeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
786 ciObjectFactory.cpp ciTypeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
787 ciObjectFactory.cpp ciTypeArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
788 ciObjectFactory.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
789 ciObjectFactory.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
790 ciObjectFactory.cpp fieldType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
791 ciObjectFactory.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
792 ciObjectFactory.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
793 ciObjectFactory.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
794
a61af66fc99e Initial load
duke
parents:
diff changeset
795 ciObjectFactory.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
796 ciObjectFactory.hpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
797 ciObjectFactory.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
798
a61af66fc99e Initial load
duke
parents:
diff changeset
799 ciSignature.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
800 ciSignature.cpp ciSignature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
801 ciSignature.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
802 ciSignature.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
803 ciSignature.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
804
a61af66fc99e Initial load
duke
parents:
diff changeset
805 ciSignature.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
806 ciSignature.hpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
807 ciSignature.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
808 ciSignature.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
809
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
810 ciStreams.cpp ciCallSite.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
811 ciStreams.cpp ciConstant.hpp
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
812 ciStreams.cpp ciCPCache.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
813 ciStreams.cpp ciField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
814 ciStreams.cpp ciStreams.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
815 ciStreams.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
816
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1507
diff changeset
817 ciStreams.hpp bytecode.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
818 ciStreams.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
819 ciStreams.hpp ciExceptionHandler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
820 ciStreams.hpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
821 ciStreams.hpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
822
a61af66fc99e Initial load
duke
parents:
diff changeset
823 ciSymbol.cpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
824 ciSymbol.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
825 ciSymbol.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
826
a61af66fc99e Initial load
duke
parents:
diff changeset
827 ciSymbol.hpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
828 ciSymbol.hpp ciObjectFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
829 ciSymbol.hpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
830 ciSymbol.hpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
831
a61af66fc99e Initial load
duke
parents:
diff changeset
832 ciSymbolKlass.cpp ciSymbolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
833 ciSymbolKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
834
a61af66fc99e Initial load
duke
parents:
diff changeset
835 ciSymbolKlass.hpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
836 ciSymbolKlass.hpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
837
a61af66fc99e Initial load
duke
parents:
diff changeset
838 ciType.cpp ciType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
839 ciType.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
840 ciType.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
841 ciType.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
842
a61af66fc99e Initial load
duke
parents:
diff changeset
843 ciType.hpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
844 ciType.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
845
a61af66fc99e Initial load
duke
parents:
diff changeset
846 ciTypeArray.cpp ciTypeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
847 ciTypeArray.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
848
a61af66fc99e Initial load
duke
parents:
diff changeset
849 ciTypeArray.hpp ciArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
850 ciTypeArray.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
851 ciTypeArray.hpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
852
a61af66fc99e Initial load
duke
parents:
diff changeset
853 ciTypeArrayKlass.cpp ciTypeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
854 ciTypeArrayKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
855
a61af66fc99e Initial load
duke
parents:
diff changeset
856 ciTypeArrayKlass.hpp ciArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
857
a61af66fc99e Initial load
duke
parents:
diff changeset
858 ciTypeArrayKlassKlass.cpp ciTypeArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
859 ciTypeArrayKlassKlass.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
860
a61af66fc99e Initial load
duke
parents:
diff changeset
861 ciTypeArrayKlassKlass.hpp ciArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
862
a61af66fc99e Initial load
duke
parents:
diff changeset
863 ciUtilities.cpp ciUtilities.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
864
a61af66fc99e Initial load
duke
parents:
diff changeset
865 ciUtilities.hpp ciEnv.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
866 ciUtilities.hpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
867
a61af66fc99e Initial load
duke
parents:
diff changeset
868 classFileError.cpp classFileParser.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
869 classFileError.cpp stackMapTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
870 classFileError.cpp verifier.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
871
a61af66fc99e Initial load
duke
parents:
diff changeset
872 classFileParser.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
873 classFileParser.cpp classFileParser.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
874 classFileParser.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
875 classFileParser.cpp classLoadingService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
876 classFileParser.cpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
877 classFileParser.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
878 classFileParser.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
879 classFileParser.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
880 classFileParser.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
881 classFileParser.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
882 classFileParser.cpp klass.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
883 classFileParser.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
884 classFileParser.cpp klassVtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
885 classFileParser.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
886 classFileParser.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
887 classFileParser.cpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
888 classFileParser.cpp reflection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
889 classFileParser.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
890 classFileParser.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
891 classFileParser.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
892 classFileParser.cpp systemDictionary.hpp
875
6a93908f268f 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 726
diff changeset
893 classFileParser.cpp threadService.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
894 classFileParser.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
895 classFileParser.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
896 classFileParser.cpp verificationType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
897 classFileParser.cpp verifier.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
898 classFileParser.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
899
a61af66fc99e Initial load
duke
parents:
diff changeset
900 classFileParser.hpp accessFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
901 classFileParser.hpp classFileStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
902 classFileParser.hpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
903 classFileParser.hpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
904 classFileParser.hpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
905 classFileParser.hpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
906
a61af66fc99e Initial load
duke
parents:
diff changeset
907 classFileStream.cpp classFileStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
908 classFileStream.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
909
a61af66fc99e Initial load
duke
parents:
diff changeset
910 classFileStream.hpp bytes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
911 classFileStream.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
912
a61af66fc99e Initial load
duke
parents:
diff changeset
913 classLoader.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
914 classLoader.cpp arguments.hpp
1187
cf0685d550f1 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 1155
diff changeset
915 classLoader.cpp bytecodeStream.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
916 classLoader.cpp classFileParser.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
917 classLoader.cpp classFileStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
918 classLoader.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
919 classLoader.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
920 classLoader.cpp compilationPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
921 classLoader.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
922 classLoader.cpp constantPoolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
923 classLoader.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
924 classLoader.cpp fprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
925 classLoader.cpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
926 classLoader.cpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
927 classLoader.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
928 classLoader.cpp hashtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
929 classLoader.cpp hashtable.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
930 classLoader.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
931 classLoader.cpp hpi_<os_family>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
932 classLoader.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
933 classLoader.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
934 classLoader.cpp instanceRefKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
935 classLoader.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
936 classLoader.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
937 classLoader.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
938 classLoader.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
939 classLoader.cpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
940 classLoader.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
941 classLoader.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
942 classLoader.cpp oopFactory.hpp
1187
cf0685d550f1 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 1155
diff changeset
943 classLoader.cpp oopMapCache.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
944 classLoader.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
945 classLoader.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
946 classLoader.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
947 classLoader.cpp threadCritical.hpp
875
6a93908f268f 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 726
diff changeset
948 classLoader.cpp threadService.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
949 classLoader.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
950 classLoader.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
951 classLoader.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
952
a61af66fc99e Initial load
duke
parents:
diff changeset
953 classLoader.hpp classFileParser.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
954 classLoader.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
955
a61af66fc99e Initial load
duke
parents:
diff changeset
956 classLoadingService.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
957 classLoadingService.cpp classLoadingService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
958 classLoadingService.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
959 classLoadingService.cpp memoryService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
960 classLoadingService.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
961 classLoadingService.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
962 classLoadingService.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
963 classLoadingService.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
964
a61af66fc99e Initial load
duke
parents:
diff changeset
965 classLoadingService.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
966 classLoadingService.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
967 classLoadingService.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
968
a61af66fc99e Initial load
duke
parents:
diff changeset
969 classify.cpp classify.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
970 classify.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
971
a61af66fc99e Initial load
duke
parents:
diff changeset
972 classify.hpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
973
a61af66fc99e Initial load
duke
parents:
diff changeset
974 codeBlob.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
975 codeBlob.cpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
976 codeBlob.cpp codeBlob.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
977 codeBlob.cpp codeCache.hpp
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
978 codeBlob.cpp disassembler.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
979 codeBlob.cpp forte.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
980 codeBlob.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
981 codeBlob.cpp heap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
982 codeBlob.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
983 codeBlob.cpp memoryService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
984 codeBlob.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
985 codeBlob.cpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
986 codeBlob.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
987 codeBlob.cpp relocInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
988 codeBlob.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
989 codeBlob.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
990 codeBlob.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
991
a61af66fc99e Initial load
duke
parents:
diff changeset
992 codeBlob.hpp codeBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
993 codeBlob.hpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
994 codeBlob.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
995 codeBlob.hpp oopMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
996
a61af66fc99e Initial load
duke
parents:
diff changeset
997 codeBuffer.cpp codeBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
998 codeBuffer.cpp copy.hpp
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
999 codeBuffer.cpp disassembler.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1000
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 codeBuffer.hpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 codeBuffer.hpp oopRecorder.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 codeBuffer.hpp relocInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1004
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 codeBuffer_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
1006
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 codeCache.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 codeCache.cpp codeBlob.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 codeCache.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 codeCache.cpp dependencies.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 codeCache.cpp gcLocker.hpp
1276
8b38237bae55 6928717: HS17 fails to build with SS11 C++
kvn
parents: 1262
diff changeset
1012 codeCache.cpp handles.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 codeCache.cpp icache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 codeCache.cpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 codeCache.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 codeCache.cpp markSweep.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 codeCache.cpp memoryService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 codeCache.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 codeCache.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 codeCache.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 codeCache.cpp objArrayOop.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
1022 codeCache.cpp oop.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 codeCache.cpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 codeCache.cpp resourceArea.hpp
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1189
diff changeset
1025 codeCache.cpp xmlstream.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1026
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 codeCache.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 codeCache.hpp codeBlob.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 codeCache.hpp heap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 codeCache.hpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 codeCache.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1032
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 collectorPolicy.cpp adaptiveSizePolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 collectorPolicy.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 collectorPolicy.cpp cardTableRS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 collectorPolicy.cpp collectorPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 collectorPolicy.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 collectorPolicy.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 collectorPolicy.cpp gcPolicyCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 collectorPolicy.cpp generationSpec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 collectorPolicy.cpp globals_extension.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 collectorPolicy.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 collectorPolicy.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 collectorPolicy.cpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 collectorPolicy.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 collectorPolicy.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 collectorPolicy.cpp vmGCOperations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 collectorPolicy.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1049
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 collectorPolicy.hpp barrierSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 collectorPolicy.hpp genRemSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 collectorPolicy.hpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1053
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 compactPermGen.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 compactPermGen.hpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1056
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 compactingPermGenGen.cpp compactingPermGenGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 compactingPermGenGen.cpp filemap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 compactingPermGenGen.cpp genOopClosures.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 compactingPermGenGen.cpp generation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 compactingPermGenGen.cpp generationSpec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 compactingPermGenGen.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 compactingPermGenGen.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 compactingPermGenGen.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 compactingPermGenGen.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1066
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 compactingPermGenGen.hpp generationCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 compactingPermGenGen.hpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1069
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 compilationPolicy.cpp compilationPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 compilationPolicy.cpp compiledIC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 compilationPolicy.cpp compilerOracle.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 compilationPolicy.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 compilationPolicy.cpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 compilationPolicy.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 compilationPolicy.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 compilationPolicy.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 compilationPolicy.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 compilationPolicy.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 compilationPolicy.cpp nativeLookup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 compilationPolicy.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 compilationPolicy.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 compilationPolicy.cpp rframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 compilationPolicy.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 compilationPolicy.cpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 compilationPolicy.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 compilationPolicy.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 compilationPolicy.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1089
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 compilationPolicy.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 compilationPolicy.hpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 compilationPolicy.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 compilationPolicy.hpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 compilationPolicy.hpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1095
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 compileBroker.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 compileBroker.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 compileBroker.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 compileBroker.cpp compilationPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 compileBroker.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 compileBroker.cpp compileLog.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 compileBroker.cpp compilerOracle.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 compileBroker.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 compileBroker.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 compileBroker.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 compileBroker.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 compileBroker.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 compileBroker.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 compileBroker.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 compileBroker.cpp nativeLookup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 compileBroker.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 compileBroker.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 compileBroker.cpp sharedRuntime.hpp
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1189
diff changeset
1114 compileBroker.cpp sweeper.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 compileBroker.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 compileBroker.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1117
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 compileBroker.hpp abstractCompiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 compileBroker.hpp compilerInterface.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 compileBroker.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1121
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 compileLog.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 compileLog.cpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 compileLog.cpp compileLog.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 compileLog.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 compileLog.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 compileLog.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1128
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 compileLog.hpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1130
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 compiledIC.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 compiledIC.cpp compiledIC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 compiledIC.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 compiledIC.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 compiledIC.cpp icache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 compiledIC.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 compiledIC.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 compiledIC.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 compiledIC.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 compiledIC.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 compiledIC.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 compiledIC.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 compiledIC.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 compiledIC.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 compiledIC.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 compiledIC.cpp vtableStubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1147
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 compiledIC.hpp compiledICHolderKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 compiledIC.hpp compiledICHolderOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 compiledIC.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 compiledIC.hpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 compiledIC.hpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1153
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 compiledICHolderKlass.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 compiledICHolderKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 compiledICHolderKlass.cpp compiledICHolderKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 compiledICHolderKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 compiledICHolderKlass.cpp javaClasses.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
1159 compiledICHolderKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 compiledICHolderKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 compiledICHolderKlass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 compiledICHolderKlass.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 compiledICHolderKlass.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1164
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 compiledICHolderKlass.hpp compiledICHolderOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 compiledICHolderKlass.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 compiledICHolderKlass.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1168
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 compiledICHolderOop.cpp compiledICHolderOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1170
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 compiledICHolderOop.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1172
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 compilerInterface.hpp ciArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 compilerInterface.hpp ciArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 compilerInterface.hpp ciArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 compilerInterface.hpp ciCallProfile.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 compilerInterface.hpp ciConstant.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 compilerInterface.hpp ciEnv.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 compilerInterface.hpp ciExceptionHandler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 compilerInterface.hpp ciField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 compilerInterface.hpp ciFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 compilerInterface.hpp ciInstance.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 compilerInterface.hpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 compilerInterface.hpp ciInstanceKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 compilerInterface.hpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 compilerInterface.hpp ciKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 compilerInterface.hpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 compilerInterface.hpp ciMethodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 compilerInterface.hpp ciNullObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 compilerInterface.hpp ciObjArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 compilerInterface.hpp ciObjArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 compilerInterface.hpp ciObjArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 compilerInterface.hpp ciObject.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 compilerInterface.hpp ciSignature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 compilerInterface.hpp ciStreams.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 compilerInterface.hpp ciSymbol.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 compilerInterface.hpp ciSymbolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 compilerInterface.hpp ciTypeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 compilerInterface.hpp ciTypeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 compilerInterface.hpp ciTypeArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1201
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 compilerOracle.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 compilerOracle.cpp compilerOracle.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 compilerOracle.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 compilerOracle.cpp jniHandles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 compilerOracle.cpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 compilerOracle.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 compilerOracle.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 compilerOracle.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 compilerOracle.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 compilerOracle.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1212
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 compilerOracle.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 compilerOracle.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1215
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 compressedStream.cpp compressedStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 compressedStream.cpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1218
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 compressedStream.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1220
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 constMethodKlass.cpp constMethodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 constMethodKlass.cpp constMethodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 constMethodKlass.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 constMethodKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 constMethodKlass.cpp interpreter.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
1226 constMethodKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 constMethodKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 constMethodKlass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 constMethodKlass.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1230
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 constMethodKlass.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 constMethodKlass.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 constMethodKlass.hpp orderAccess.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1234
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 constMethodOop.cpp constMethodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 constMethodOop.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1237
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 constMethodOop.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 constMethodOop.hpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1240
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 constantPoolKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 constantPoolKlass.cpp constantPoolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 constantPoolKlass.cpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 constantPoolKlass.cpp handles.inline.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
1245 constantPoolKlass.cpp javaClasses.hpp
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
1246 constantPoolKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 constantPoolKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 constantPoolKlass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 constantPoolKlass.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 constantPoolKlass.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 constantPoolKlass.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 constantPoolKlass.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 constantPoolKlass.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1254
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 constantPoolKlass.hpp arrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 constantPoolKlass.hpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1257
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 constantPoolOop.cpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 constantPoolOop.cpp fieldType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 constantPoolOop.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 constantPoolOop.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 constantPoolOop.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 constantPoolOop.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 constantPoolOop.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 constantPoolOop.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 constantPoolOop.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 constantPoolOop.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 constantPoolOop.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 constantPoolOop.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 constantPoolOop.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 constantPoolOop.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1272
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 constantPoolOop.hpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 constantPoolOop.hpp bytes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 constantPoolOop.hpp constantTag.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 constantPoolOop.hpp cpCacheOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 constantPoolOop.hpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1278
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 constantTag.cpp constantTag.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1280
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 constantTag.hpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 constantTag.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1283
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 copy.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 copy.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1286
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 copy.hpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1288
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 copy_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
1290
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 copy_<os_arch>.inline.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
1292
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 cpCacheKlass.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 cpCacheKlass.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 cpCacheKlass.cpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 cpCacheKlass.cpp cpCacheKlass.hpp
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
1297 cpCacheKlass.cpp genOopClosures.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 cpCacheKlass.cpp handles.inline.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
1299 cpCacheKlass.cpp javaClasses.hpp
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
1300 cpCacheKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 cpCacheKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 cpCacheKlass.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1303
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 cpCacheKlass.hpp arrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 cpCacheKlass.hpp cpCacheOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 cpCacheKlass.hpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1307
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 cpCacheOop.cpp cpCacheOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 cpCacheOop.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 cpCacheOop.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 cpCacheOop.cpp jvmtiRedefineClassesTrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 cpCacheOop.cpp markSweep.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 cpCacheOop.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 cpCacheOop.cpp oop.inline.hpp
1059
389049f3f393 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 941
diff changeset
1315 cpCacheOop.cpp rewriter.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 cpCacheOop.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1317
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 cpCacheOop.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 cpCacheOop.hpp array.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 cpCacheOop.hpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 cpCacheOop.hpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1322
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 cppInterpreter.cpp bytecodeInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 cppInterpreter.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 cppInterpreter.cpp interpreterGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 cppInterpreter.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1327
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 cppInterpreter.hpp abstractInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1329
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 cppInterpreter_<arch>.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 cppInterpreter_<arch>.cpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 cppInterpreter_<arch>.cpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 cppInterpreter_<arch>.cpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 cppInterpreter_<arch>.cpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 cppInterpreter_<arch>.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 cppInterpreter_<arch>.cpp frame.inline.hpp
528
37b3ca071522 6793825: Missing include dependancies for GCC without predefined headers
coleenp
parents: 467
diff changeset
1337 cppInterpreter_<arch>.cpp interfaceSupport.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 cppInterpreter_<arch>.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 cppInterpreter_<arch>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 cppInterpreter_<arch>.cpp interpreterGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 cppInterpreter_<arch>.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 cppInterpreter_<arch>.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 cppInterpreter_<arch>.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 cppInterpreter_<arch>.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 cppInterpreter_<arch>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 cppInterpreter_<arch>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 cppInterpreter_<arch>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 cppInterpreter_<arch>.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 cppInterpreter_<arch>.cpp cppInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 cppInterpreter_<arch>.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 cppInterpreter_<arch>.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1352
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 cppInterpreter_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
1354
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 cppInterpreterGenerator_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
1356
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 debug.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 debug.cpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 debug.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 debug.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 debug.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 debug.cpp defaultStream.hpp
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1363 debug.cpp disassembler.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 debug.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 debug.cpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 debug.cpp heapDumper.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 debug.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 debug.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 debug.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 debug.cpp markSweep.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 debug.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 debug.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 debug.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 debug.cpp privilegedStack.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 debug.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 debug.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 debug.cpp stubCodeGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 debug.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 debug.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 debug.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 debug.cpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 debug.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 debug.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 debug.cpp vmError.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 debug.cpp vtableStubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1386
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 debug.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1388
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 debugInfo.cpp debugInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 debugInfo.cpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 debugInfo.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 debugInfo.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1393
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 debugInfo.hpp compressedStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 debugInfo.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 debugInfo.hpp location.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 debugInfo.hpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 debugInfo.hpp oopRecorder.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 debugInfo.hpp stackValue.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1400
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 debugInfoRec.cpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 debugInfoRec.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 debugInfoRec.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1404
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 debugInfoRec.hpp ciClassList.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 debugInfoRec.hpp ciInstanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 debugInfoRec.hpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 debugInfoRec.hpp debugInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 debugInfoRec.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 debugInfoRec.hpp location.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 debugInfoRec.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 debugInfoRec.hpp oopMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 debugInfoRec.hpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1414
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 debug_<arch>.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 debug_<arch>.cpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 debug_<arch>.cpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 debug_<arch>.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 debug_<arch>.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 debug_<arch>.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 debug_<arch>.cpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1422
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 defNewGeneration.cpp collectorCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 defNewGeneration.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 defNewGeneration.cpp defNewGeneration.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 defNewGeneration.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 defNewGeneration.cpp gcPolicyCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 defNewGeneration.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 defNewGeneration.cpp genOopClosures.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 defNewGeneration.cpp generationSpec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 defNewGeneration.cpp instanceRefKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 defNewGeneration.cpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 defNewGeneration.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 defNewGeneration.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 defNewGeneration.cpp referencePolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 defNewGeneration.cpp space.inline.hpp
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
1437 defNewGeneration.cpp spaceDecorator.hpp
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
1438 defNewGeneration.cpp stack.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 defNewGeneration.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1440
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 defNewGeneration.hpp ageTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 defNewGeneration.hpp cSpaceCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 defNewGeneration.hpp generation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 defNewGeneration.hpp generationCounters.hpp
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
1445 defNewGeneration.hpp stack.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1446
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
1447 defNewGeneration.inline.hpp cardTableRS.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 defNewGeneration.inline.hpp defNewGeneration.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 defNewGeneration.inline.hpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1450
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 defaultStream.hpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1452
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 deoptimization.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 deoptimization.cpp biasedLocking.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 deoptimization.cpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 deoptimization.cpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 deoptimization.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 deoptimization.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 deoptimization.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 deoptimization.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 deoptimization.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 deoptimization.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 deoptimization.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 deoptimization.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 deoptimization.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 deoptimization.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 deoptimization.cpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 deoptimization.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 deoptimization.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 deoptimization.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 deoptimization.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 deoptimization.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 deoptimization.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 deoptimization.cpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 deoptimization.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 deoptimization.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 deoptimization.cpp vframe_hp.hpp
1253
f70b0d9ab095 6910618: C2: Error: assert(d->is_oop(),"JVM_ArrayCopy: dst not an oop")
kvn
parents: 1202
diff changeset
1478 deoptimization.cpp vmreg_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 deoptimization.cpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1480
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 deoptimization.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 deoptimization.hpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1483
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 depChecker_<arch>.cpp depChecker_<arch>.hpp
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1485 depChecker_<arch>.cpp disassembler.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 depChecker_<arch>.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1487
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 dependencies.cpp ciArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 dependencies.cpp ciEnv.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 dependencies.cpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 dependencies.cpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 dependencies.cpp compileLog.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 dependencies.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 dependencies.cpp dependencies.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 dependencies.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 dependencies.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1497
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 dependencies.hpp ciKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 dependencies.hpp compressedStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 dependencies.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 dependencies.hpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1502
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 dictionary.cpp classLoadingService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 dictionary.cpp dictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 dictionary.cpp hashtable.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 dictionary.cpp jvmtiRedefineClassesTrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 dictionary.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 dictionary.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1509
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 dictionary.hpp hashtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 dictionary.hpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 dictionary.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 dictionary.hpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1514
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1515 disassembler_<arch>.hpp generate_platform_dependent_include
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1516
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1517 disassembler.cpp cardTableModRefBS.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1518 disassembler.cpp codeCache.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1519 disassembler.cpp collectedHeap.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1520 disassembler.cpp depChecker_<arch>.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1521 disassembler.cpp disassembler.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1522 disassembler.cpp fprofiler.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1523 disassembler.cpp handles.inline.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1524 disassembler.cpp hpi.hpp
1155
4e6abf09f540 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 1152
diff changeset
1525 disassembler.cpp javaClasses.hpp
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1526 disassembler.cpp stubCodeGenerator.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1527 disassembler.cpp stubRoutines.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1528
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1529 disassembler.hpp globals.hpp
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
1530 disassembler.hpp os_<os_family>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1531
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 dtraceAttacher.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 dtraceAttacher.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 dtraceAttacher.cpp dtraceAttacher.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 dtraceAttacher.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 dtraceAttacher.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 dtraceAttacher.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1538
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1539 dtraceJSDT.cpp allocation.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1540 dtraceJSDT.cpp codeBlob.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1541 dtraceJSDT.cpp dtraceJSDT.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1542 dtraceJSDT.cpp exceptions.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1543 dtraceJSDT.cpp globalDefinitions.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1544 dtraceJSDT.cpp javaClasses.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1545 dtraceJSDT.cpp jniHandles.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1546 dtraceJSDT.cpp jvm.h
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1547 dtraceJSDT.cpp os.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1548 dtraceJSDT.cpp utf8.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1549
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1550 dtraceJSDT.hpp nativeInst_<arch>.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1551 dtraceJSDT.hpp nmethod.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1552
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1553 dtraceJSDT_<os_family>.cpp allocation.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1554 dtraceJSDT_<os_family>.cpp codeBlob.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1555 dtraceJSDT_<os_family>.cpp dtraceJSDT.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1556 dtraceJSDT_<os_family>.cpp globalDefinitions.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1557 dtraceJSDT_<os_family>.cpp javaClasses.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1558 dtraceJSDT_<os_family>.cpp jniHandles.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1559 dtraceJSDT_<os_family>.cpp jvm.h
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1560 dtraceJSDT_<os_family>.cpp os.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1561 dtraceJSDT_<os_family>.cpp signature.hpp
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
1562
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 // dump is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
1564
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 events.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 events.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 events.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 events.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 events.cpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 events.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 events.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1572
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 events.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 events.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1575
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 evmCompat.cpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1577
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 exceptionHandlerTable.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 exceptionHandlerTable.cpp exceptionHandlerTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 exceptionHandlerTable.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1581
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 exceptionHandlerTable.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 exceptionHandlerTable.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1584
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 exceptions.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 exceptions.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 exceptions.cpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 exceptions.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 exceptions.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 exceptions.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 exceptions.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 exceptions.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 exceptions.cpp threadCritical.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 exceptions.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 exceptions.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1596
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 exceptions.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 exceptions.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 exceptions.hpp sizes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1600
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 fieldDescriptor.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 fieldDescriptor.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 fieldDescriptor.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 fieldDescriptor.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 fieldDescriptor.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 fieldDescriptor.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 fieldDescriptor.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 fieldDescriptor.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1609
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 fieldDescriptor.hpp accessFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 fieldDescriptor.hpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 fieldDescriptor.hpp constantTag.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 fieldDescriptor.hpp fieldType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 fieldDescriptor.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 fieldDescriptor.hpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 fieldDescriptor.hpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1617
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 fieldType.cpp fieldType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 fieldType.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 fieldType.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 fieldType.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 fieldType.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 fieldType.cpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1624
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 fieldType.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 fieldType.hpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1627
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 filemap.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 filemap.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 filemap.cpp defaultStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 filemap.cpp filemap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 filemap.cpp hpi_<os_family>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 filemap.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 filemap.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 filemap.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1636
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 filemap.hpp compactingPermGenGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 filemap.hpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1639
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 // forte is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 // fprofiler is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
1642
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 fprofiler.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 fprofiler.hpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1645
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 frame.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 frame.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 frame.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 frame.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 frame.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 frame.cpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 frame.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 frame.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 frame.cpp monitorChunk.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 frame.cpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 frame.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 frame.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 frame.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 frame.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 frame.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 frame.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 frame.cpp stubCodeGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 frame.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 frame.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1665
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 frame.hpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 frame.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 frame.hpp monitorChunk.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 frame.hpp registerMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 frame.hpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 frame.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1672
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 frame.inline.hpp bytecodeInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 frame.inline.hpp bytecodeInterpreter.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 frame.inline.hpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 frame.inline.hpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 frame.inline.hpp jniTypes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 frame.inline.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 frame.inline.hpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1680
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 frame_<arch>.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 frame_<arch>.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 frame_<arch>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 frame_<arch>.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 frame_<arch>.cpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 frame_<arch>.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 frame_<arch>.cpp monitorChunk.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 frame_<arch>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 frame_<arch>.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 frame_<arch>.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 frame_<arch>.cpp stubCodeGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 frame_<arch>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 frame_<arch>.cpp vmreg_<arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1694
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 frame_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 frame_<arch>.hpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 frame_<arch>.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1698
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 frame_<arch>.inline.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
1700
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 gcLocker.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 gcLocker.cpp sharedHeap.hpp
139
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
1703 gcLocker.cpp resourceArea.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1704
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 gcLocker.hpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 gcLocker.hpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 gcLocker.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 gcLocker.hpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1709 gcLocker.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 gcLocker.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1711
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 gcLocker.inline.hpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1713
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 genCollectedHeap.cpp aprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 genCollectedHeap.cpp biasedLocking.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 genCollectedHeap.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 genCollectedHeap.cpp collectorCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 genCollectedHeap.cpp compactPermGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1719 genCollectedHeap.cpp filemap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 genCollectedHeap.cpp fprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 genCollectedHeap.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 genCollectedHeap.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 genCollectedHeap.cpp genOopClosures.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 genCollectedHeap.cpp generation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 genCollectedHeap.cpp generationSpec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 genCollectedHeap.cpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 genCollectedHeap.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 genCollectedHeap.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 genCollectedHeap.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 genCollectedHeap.cpp memoryService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1731 genCollectedHeap.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1732 genCollectedHeap.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 genCollectedHeap.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1734 genCollectedHeap.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 genCollectedHeap.cpp sharedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1736 genCollectedHeap.cpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1737 genCollectedHeap.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 genCollectedHeap.cpp systemDictionary.hpp
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1648
diff changeset
1739 genCollectedHeap.cpp vmError.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 genCollectedHeap.cpp vmGCOperations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 genCollectedHeap.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 genCollectedHeap.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 genCollectedHeap.cpp workgroup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1744
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 genCollectedHeap.hpp adaptiveSizePolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 genCollectedHeap.hpp collectorPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 genCollectedHeap.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 genCollectedHeap.hpp sharedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1749
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 genMarkSweep.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 genMarkSweep.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 genMarkSweep.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 genMarkSweep.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 genMarkSweep.cpp fprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 genMarkSweep.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 genMarkSweep.cpp genMarkSweep.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 genMarkSweep.cpp genOopClosures.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 genMarkSweep.cpp generation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 genMarkSweep.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 genMarkSweep.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 genMarkSweep.cpp instanceRefKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 genMarkSweep.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 genMarkSweep.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1764 genMarkSweep.cpp modRefBarrierSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 genMarkSweep.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 genMarkSweep.cpp referencePolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 genMarkSweep.cpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 genMarkSweep.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 genMarkSweep.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 genMarkSweep.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 genMarkSweep.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 genMarkSweep.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 genMarkSweep.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1774
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 genMarkSweep.hpp markSweep.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1776
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 genOopClosures.hpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 genOopClosures.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1779
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 genOopClosures.inline.hpp cardTableRS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 genOopClosures.inline.hpp defNewGeneration.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 genOopClosures.inline.hpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 genOopClosures.inline.hpp genOopClosures.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 genOopClosures.inline.hpp genRemSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 genOopClosures.inline.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 genOopClosures.inline.hpp sharedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 genOopClosures.inline.hpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1788
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 genRemSet.cpp cardTableRS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 genRemSet.cpp genRemSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1791
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 genRemSet.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1793
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
1794 generateOopMap.cpp bitMap.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 generateOopMap.cpp bytecodeStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1796 generateOopMap.cpp generateOopMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 generateOopMap.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 generateOopMap.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 generateOopMap.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 generateOopMap.cpp relocator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 generateOopMap.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1802
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 generateOopMap.hpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 generateOopMap.hpp bytecodeStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 generateOopMap.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 generateOopMap.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 generateOopMap.hpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 generateOopMap.hpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1809
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 generation.cpp allocation.inline.hpp
1716
be3f9c242c9d 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 1681
diff changeset
1811 generation.cpp blockOffsetTable.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 generation.cpp cardTableRS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1813 generation.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 generation.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 generation.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 generation.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 generation.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 generation.cpp genMarkSweep.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 generation.cpp genOopClosures.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 generation.cpp genOopClosures.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 generation.cpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 generation.cpp generation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 generation.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 generation.cpp oop.inline.hpp
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
1825 generation.cpp spaceDecorator.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1826 generation.cpp space.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1827
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 generation.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 generation.hpp collectorCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1830 generation.hpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1831 generation.hpp mutex.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1832 generation.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 generation.hpp referenceProcessor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 generation.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 generation.hpp virtualspace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 generation.hpp watermark.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1837
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 generation.inline.hpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1839 generation.inline.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 generation.inline.hpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1841
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
1842 genOopClosures.hpp oop.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
1843
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1844 generationSpec.cpp compactPermGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1845 generationSpec.cpp defNewGeneration.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 generationSpec.cpp filemap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1847 generationSpec.cpp genRemSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 generationSpec.cpp generationSpec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 generationSpec.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1850 generationSpec.cpp tenuredGeneration.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1851
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 generationSpec.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 generationSpec.hpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1854
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 globalDefinitions.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 globalDefinitions.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 globalDefinitions.cpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1858
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 globalDefinitions.hpp globalDefinitions_<compiler>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 globalDefinitions.hpp macros.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1861
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 globalDefinitions_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
1863
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 globalDefinitions_<compiler>.hpp jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
1865
a61af66fc99e Initial load
duke
parents:
diff changeset
1866 globals.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1867 globals.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 globals.cpp globals.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 globals.cpp globals_extension.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 globals.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 globals.cpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 globals.cpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1873
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 globals.hpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 globals.hpp globals_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 globals.hpp globals_<os_arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 globals.hpp globals_<os_family>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1878
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 globals_extension.hpp globals.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 globals_extension.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1881
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 growableArray.cpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 growableArray.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 growableArray.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1885
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 growableArray.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1887 growableArray.hpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 growableArray.hpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 growableArray.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 growableArray.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1891
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 handles.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 handles.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 handles.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 handles.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1896 handles.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1897
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 handles.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 handles.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 handles.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1901
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 handles.inline.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 handles.inline.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1904
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 hashtable.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 hashtable.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 hashtable.cpp hashtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 hashtable.cpp hashtable.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 hashtable.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 hashtable.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 hashtable.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1912
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 hashtable.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 hashtable.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 hashtable.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 hashtable.hpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1917
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 hashtable.inline.hpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 hashtable.inline.hpp hashtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1920
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 heap.cpp heap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 heap.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 heap.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1924
a61af66fc99e Initial load
duke
parents:
diff changeset
1925 heap.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 heap.hpp virtualspace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1927
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 // heapDumper is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
1929
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 heapDumper.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 heapDumper.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1932 heapDumper.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 heapDumper.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1934
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 // heapInspection is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
1936
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 heapInspection.hpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 heapInspection.hpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1939
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 histogram.cpp histogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1941 histogram.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1942
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 histogram.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 histogram.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 histogram.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 histogram.hpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1947
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 hpi.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 hpi.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
1950
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 hpi.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 hpi.hpp hpi_imported.h
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 hpi.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1954 hpi.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1955
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 hpi_<os_family>.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 hpi_<os_family>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 hpi_<os_family>.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1959
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 hpi_imported.h jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
1961
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
1962 icBuffer.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 icBuffer.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 icBuffer.cpp compiledIC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 icBuffer.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 icBuffer.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 icBuffer.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 icBuffer.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 icBuffer.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 icBuffer.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 icBuffer.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 icBuffer.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 icBuffer.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 icBuffer.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 icBuffer.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 icBuffer.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1977
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 icBuffer.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 icBuffer.hpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 icBuffer.hpp stubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1981
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 icBuffer_<arch>.cpp assembler.hpp
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
1983 icBuffer_<arch>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 icBuffer_<arch>.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 icBuffer_<arch>.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 icBuffer_<arch>.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 icBuffer_<arch>.cpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 icBuffer_<arch>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 icBuffer_<arch>.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 icBuffer_<arch>.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1991
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 icache.cpp icache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 icache.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1994
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 icache.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 icache.hpp stubCodeGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
1997
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
1998 icache_<arch>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 icache_<arch>.cpp icache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2000
a61af66fc99e Initial load
duke
parents:
diff changeset
2001 icache_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
2002
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 init.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 init.cpp collectedHeap.hpp
17
ff5961f4c095 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 0
diff changeset
2005 init.cpp handles.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 init.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 init.cpp icache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 init.cpp init.hpp
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1295
diff changeset
2009 init.cpp methodHandles.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 init.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 init.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 init.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2013
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 init.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2015
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 instanceKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2017 instanceKlass.cpp compileBroker.hpp
1324
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1286
diff changeset
2018 instanceKlass.cpp dtrace.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 instanceKlass.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 instanceKlass.cpp genOopClosures.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 instanceKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 instanceKlass.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2023 instanceKlass.cpp instanceOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 instanceKlass.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 instanceKlass.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 instanceKlass.cpp jvmti.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 instanceKlass.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 instanceKlass.cpp jvmtiRedefineClassesTrace.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2029 instanceKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 instanceKlass.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 instanceKlass.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 instanceKlass.cpp objArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 instanceKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 instanceKlass.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 instanceKlass.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 instanceKlass.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 instanceKlass.cpp rewriter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 instanceKlass.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 instanceKlass.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 instanceKlass.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2041 instanceKlass.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 instanceKlass.cpp verifier.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 instanceKlass.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2044
a61af66fc99e Initial load
duke
parents:
diff changeset
2045 instanceKlass.hpp accessFlags.hpp
528
37b3ca071522 6793825: Missing include dependancies for GCC without predefined headers
coleenp
parents: 467
diff changeset
2046 instanceKlass.hpp bitMap.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 instanceKlass.hpp constMethodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 instanceKlass.hpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 instanceKlass.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 instanceKlass.hpp instanceOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 instanceKlass.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 instanceKlass.hpp klassVtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 instanceKlass.hpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 instanceKlass.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2055
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 instanceKlassKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2057 instanceKlassKlass.cpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 instanceKlassKlass.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 instanceKlassKlass.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 instanceKlassKlass.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 instanceKlassKlass.cpp instanceKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 instanceKlassKlass.cpp instanceRefKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 instanceKlassKlass.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 instanceKlassKlass.cpp jvmtiExport.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2065 instanceKlassKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 instanceKlassKlass.cpp objArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 instanceKlassKlass.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 instanceKlassKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 instanceKlassKlass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 instanceKlassKlass.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 instanceKlassKlass.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 instanceKlassKlass.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 instanceKlassKlass.cpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2074
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 instanceKlassKlass.hpp klassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2076
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 instanceOop.cpp instanceOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2078
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 instanceOop.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2080
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 instanceRefKlass.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 instanceRefKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 instanceRefKlass.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 instanceRefKlass.cpp genOopClosures.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 instanceRefKlass.cpp instanceRefKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 instanceRefKlass.cpp javaClasses.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2087 instanceRefKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 instanceRefKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 instanceRefKlass.cpp preserveException.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 instanceRefKlass.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2091
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 instanceRefKlass.hpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2093
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 interfaceSupport.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 interfaceSupport.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 interfaceSupport.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 interfaceSupport.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 interfaceSupport.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 interfaceSupport.cpp markSweep.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 interfaceSupport.cpp preserveException.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 interfaceSupport.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 interfaceSupport.cpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 interfaceSupport.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2104
a61af66fc99e Initial load
duke
parents:
diff changeset
2105 interfaceSupport.hpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 interfaceSupport.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 interfaceSupport.hpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 interfaceSupport.hpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 interfaceSupport.hpp orderAccess.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 interfaceSupport.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 interfaceSupport.hpp preserveException.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 interfaceSupport.hpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 interfaceSupport.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 interfaceSupport.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 interfaceSupport.hpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2116
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 interfaceSupport_<os_family>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
2118
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 interp_masm_<arch_model>.cpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 interp_masm_<arch_model>.cpp biasedLocking.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 interp_masm_<arch_model>.cpp interp_masm_<arch_model>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 interp_masm_<arch_model>.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 interp_masm_<arch_model>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 interp_masm_<arch_model>.cpp jvmtiExport.hpp
610
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 467
diff changeset
2125 interp_masm_<arch_model>.cpp jvmtiRedefineClassesTrace.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 interp_masm_<arch_model>.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 interp_masm_<arch_model>.cpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 interp_masm_<arch_model>.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2129 interp_masm_<arch_model>.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 interp_masm_<arch_model>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 interp_masm_<arch_model>.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 interp_masm_<arch_model>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2133
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
2134 interp_masm_<arch_model>.hpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 interp_masm_<arch_model>.hpp invocationCounter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2136
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 interpreter.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 interpreter.cpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 interpreter.cpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 interpreter.cpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 interpreter.cpp bytecodeInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2142 interpreter.cpp forte.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 interpreter.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 interpreter.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 interpreter.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 interpreter.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 interpreter.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2148 interpreter.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 interpreter.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 interpreter.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 interpreter.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 interpreter.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 interpreter.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 interpreter.cpp templateTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 interpreter.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2156
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 interpreter.hpp cppInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 interpreter.hpp stubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 interpreter.hpp templateInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2160
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 interpreterRT_<arch_model>.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 interpreterRT_<arch_model>.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 interpreterRT_<arch_model>.cpp icache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 interpreterRT_<arch_model>.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 interpreterRT_<arch_model>.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 interpreterRT_<arch_model>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 interpreterRT_<arch_model>.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 interpreterRT_<arch_model>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 interpreterRT_<arch_model>.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 interpreterRT_<arch_model>.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2171
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 interpreterRT_<arch>.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 interpreterRT_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
2174
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 interpreterRuntime.cpp biasedLocking.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 interpreterRuntime.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 interpreterRuntime.cpp compilationPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 interpreterRuntime.cpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 interpreterRuntime.cpp cpCacheOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 interpreterRuntime.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 interpreterRuntime.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 interpreterRuntime.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 interpreterRuntime.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 interpreterRuntime.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 interpreterRuntime.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2186 interpreterRuntime.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 interpreterRuntime.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 interpreterRuntime.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 interpreterRuntime.cpp jfieldIDWorkaround.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 interpreterRuntime.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2191 interpreterRuntime.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 interpreterRuntime.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 interpreterRuntime.cpp nativeLookup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 interpreterRuntime.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2195 interpreterRuntime.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 interpreterRuntime.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2197 interpreterRuntime.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 interpreterRuntime.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 interpreterRuntime.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 interpreterRuntime.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 interpreterRuntime.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2202 interpreterRuntime.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2203 interpreterRuntime.cpp templateTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2204 interpreterRuntime.cpp threadCritical.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2205 interpreterRuntime.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 interpreterRuntime.cpp vmSymbols.hpp
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
2207 interpreterRuntime.cpp vm_version_<arch>.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2208
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 interpreterRuntime.hpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2210 interpreterRuntime.hpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 interpreterRuntime.hpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 interpreterRuntime.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 interpreterRuntime.hpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 interpreterRuntime.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 interpreterRuntime.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 interpreterRuntime.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2217
a61af66fc99e Initial load
duke
parents:
diff changeset
2218 interpreter_<arch_model>.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 interpreter_<arch_model>.cpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 interpreter_<arch_model>.cpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 interpreter_<arch_model>.cpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 interpreter_<arch_model>.cpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 interpreter_<arch_model>.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 interpreter_<arch_model>.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 interpreter_<arch_model>.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 interpreter_<arch_model>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 interpreter_<arch_model>.cpp interpreterGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 interpreter_<arch_model>.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 interpreter_<arch_model>.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 interpreter_<arch_model>.cpp methodDataOop.hpp
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2231 interpreter_<arch_model>.cpp methodHandles.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 interpreter_<arch_model>.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 interpreter_<arch_model>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 interpreter_<arch_model>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 interpreter_<arch_model>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2236 interpreter_<arch_model>.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 interpreter_<arch_model>.cpp templateTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2238 interpreter_<arch_model>.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2239 interpreter_<arch_model>.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2240
a61af66fc99e Initial load
duke
parents:
diff changeset
2241 interpreter_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
2242
a61af66fc99e Initial load
duke
parents:
diff changeset
2243 interpreterGenerator.hpp cppInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2244 interpreterGenerator.hpp cppInterpreterGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2245 interpreterGenerator.hpp templateInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2246 interpreterGenerator.hpp templateInterpreterGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2247
a61af66fc99e Initial load
duke
parents:
diff changeset
2248 interpreterGenerator_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
2249
a61af66fc99e Initial load
duke
parents:
diff changeset
2250 invocationCounter.cpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2251 invocationCounter.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2252 invocationCounter.cpp invocationCounter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2253
a61af66fc99e Initial load
duke
parents:
diff changeset
2254 invocationCounter.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2255 invocationCounter.hpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2256 invocationCounter.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2257
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
2258 intHisto.cpp intHisto.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
2259
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
2260 intHisto.hpp allocation.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
2261 intHisto.hpp growableArray.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
2262
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 iterator.cpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2264 iterator.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2265
a61af66fc99e Initial load
duke
parents:
diff changeset
2266 iterator.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2267 iterator.hpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2268 iterator.hpp prefetch.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2269 iterator.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2270
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 java.cpp aprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 java.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 java.cpp biasedLocking.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 java.cpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 java.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 java.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 java.cpp compilationPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2278 java.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 java.cpp compilerOracle.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 java.cpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2281 java.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 java.cpp fprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 java.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2284 java.cpp generateOopMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 java.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 java.cpp histogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2287 java.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 java.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 java.cpp instanceKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2290 java.cpp instanceOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2291 java.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 java.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2293 java.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 java.cpp memprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 java.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 java.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 java.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 java.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 java.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 java.cpp statSampler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 java.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 java.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 java.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 java.cpp task.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 java.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 java.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 java.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 java.cpp vmError.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 java.cpp vm_operations.hpp
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
2310 java.cpp vm_version_<arch>.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2311
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 java.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2313
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 javaAssertions.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 javaAssertions.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 javaAssertions.cpp javaAssertions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 javaAssertions.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 javaAssertions.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 javaAssertions.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 javaAssertions.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 javaAssertions.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2322
a61af66fc99e Initial load
duke
parents:
diff changeset
2323 javaAssertions.hpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2324 javaAssertions.hpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 javaAssertions.hpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 javaAssertions.hpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2327
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 javaCalls.cpp compilationPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 javaCalls.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 javaCalls.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 javaCalls.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 javaCalls.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 javaCalls.cpp javaCalls.hpp
465
dc16daa0329d 6739363: Xcheck jni doesn't check native function arguments
poonam
parents: 362
diff changeset
2334 javaCalls.cpp jniCheck.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 javaCalls.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 javaCalls.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 javaCalls.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 javaCalls.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 javaCalls.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 javaCalls.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2341 javaCalls.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2342 javaCalls.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 javaCalls.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2344 javaCalls.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2345 javaCalls.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2346
a61af66fc99e Initial load
duke
parents:
diff changeset
2347 javaCalls.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 javaCalls.hpp javaFrameAnchor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 javaCalls.hpp jniTypes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2350 javaCalls.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 javaCalls.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 javaCalls.hpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2353
a61af66fc99e Initial load
duke
parents:
diff changeset
2354 javaClasses.cpp debugInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2355 javaClasses.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2356 javaClasses.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 javaClasses.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2358 javaClasses.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 javaClasses.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2360 javaClasses.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2361 javaClasses.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2362 javaClasses.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2363 javaClasses.cpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 javaClasses.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2365 javaClasses.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2366 javaClasses.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2367 javaClasses.cpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 javaClasses.cpp preserveException.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 javaClasses.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2370 javaClasses.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 javaClasses.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 javaClasses.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 javaClasses.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2374 javaClasses.cpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2375 javaClasses.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2376 javaClasses.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 javaClasses.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2378
a61af66fc99e Initial load
duke
parents:
diff changeset
2379 javaClasses.hpp jvmti.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2380 javaClasses.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2381 javaClasses.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2382 javaClasses.hpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2383 javaClasses.hpp utf8.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2384
a61af66fc99e Initial load
duke
parents:
diff changeset
2385 javaFrameAnchor.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2386 javaFrameAnchor.hpp orderAccess_<os_arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2387
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 javaFrameAnchor_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
2389
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 jni.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2391 jni.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2392 jni.cpp compilationPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2393 jni.cpp defaultStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2394 jni.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2395 jni.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2396 jni.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2397 jni.cpp fprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2398 jni.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2399 jni.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 jni.cpp histogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2401 jni.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 jni.cpp instanceOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2403 jni.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2404 jni.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2405 jni.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2406 jni.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2407 jni.cpp jfieldIDWorkaround.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2408 jni.cpp jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2409 jni.cpp jniCheck.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2410 jni.cpp jniFastGetField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 jni.cpp jniTypes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2412 jni.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 jni.cpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2414 jni.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2415 jni.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2416 jni.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2417 jni.cpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2418 jni.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2419 jni.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2420 jni.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2421 jni.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2422 jni.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 jni.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2424 jni.cpp reflection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2425 jni.cpp runtimeService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2426 jni.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 jni.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 jni.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2429 jni.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2430 jni.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2431 jni.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 jni.cpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2433 jni.cpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2434 jni.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2435 jni.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2436 jni.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2437
a61af66fc99e Initial load
duke
parents:
diff changeset
2438 // jniCheck is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
2439
a61af66fc99e Initial load
duke
parents:
diff changeset
2440 jniFastGetField.cpp jniFastGetField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2441
a61af66fc99e Initial load
duke
parents:
diff changeset
2442 jniFastGetField.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2443 jniFastGetField.hpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2444
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
2445 jniFastGetField_<arch_model>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2446 jniFastGetField_<arch_model>.cpp jniFastGetField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2447 jniFastGetField_<arch_model>.cpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2448 jniFastGetField_<arch_model>.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2449 jniFastGetField_<arch_model>.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2450
a61af66fc99e Initial load
duke
parents:
diff changeset
2451 jniHandles.cpp jniHandles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2452 jniHandles.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 jniHandles.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2454 jniHandles.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2455 jniHandles.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2456
a61af66fc99e Initial load
duke
parents:
diff changeset
2457 jniHandles.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2458 jniHandles.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2459
a61af66fc99e Initial load
duke
parents:
diff changeset
2460 jniPeriodicChecker.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2461 jniPeriodicChecker.cpp jniPeriodicChecker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2462 jniPeriodicChecker.cpp task.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2463
a61af66fc99e Initial load
duke
parents:
diff changeset
2464 jniTypes_<arch>.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2465 jniTypes_<arch>.hpp jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2466 jniTypes_<arch>.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2467
a61af66fc99e Initial load
duke
parents:
diff changeset
2468 jni_<arch>.h generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
2469
a61af66fc99e Initial load
duke
parents:
diff changeset
2470 jvm.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2471 jvm.cpp attachListener.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2472 jvm.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2473 jvm.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2474 jvm.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2475 jvm.cpp defaultStream.hpp
1324
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1286
diff changeset
2476 jvm.cpp dtrace.hpp
116
018d5b58dd4f 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 113
diff changeset
2477 jvm.cpp dtraceJSDT.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2478 jvm.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2479 jvm.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2480 jvm.cpp histogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2481 jvm.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2482 jvm.cpp hpi_<os_family>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2483 jvm.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2484 jvm.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2485 jvm.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2486 jvm.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2487 jvm.cpp javaAssertions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2488 jvm.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2489 jvm.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2490 jvm.cpp jfieldIDWorkaround.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2491 jvm.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2492 jvm.cpp jvm_<os_family>.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2493 jvm.cpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2494 jvm.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2495 jvm.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2496 jvm.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2497 jvm.cpp nativeLookup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2498 jvm.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2499 jvm.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2500 jvm.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2501 jvm.cpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2502 jvm.cpp privilegedStack.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2503 jvm.cpp reflection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2504 jvm.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2505 jvm.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2506 jvm.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2507 jvm.cpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2508 jvm.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2509 jvm.cpp utf8.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2510 jvm.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2511 jvm.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2512 jvm.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2513
a61af66fc99e Initial load
duke
parents:
diff changeset
2514 jvm.h globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2515 jvm.h jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2516 jvm.h jvm_<os_family>.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2517 jvm.h reflectionCompat.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2518
a61af66fc99e Initial load
duke
parents:
diff changeset
2519 jvm_<os_family>.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2520 jvm_<os_family>.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2521 jvm_<os_family>.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2522
a61af66fc99e Initial load
duke
parents:
diff changeset
2523 jvm_misc.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 jvm_misc.hpp jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2525
a61af66fc99e Initial load
duke
parents:
diff changeset
2526 jvmtiExport.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 jvmtiExport.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 jvmtiExport.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2529 jvmtiExport.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2530 jvmtiExport.hpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2531 jvmtiExport.hpp jvmti.h
1184
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 467
diff changeset
2532 jvmtiExport.hpp jvmticmlr.h
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2533 jvmtiExport.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2534 jvmtiExport.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2535
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 jvmtiThreadState.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2537 jvmtiThreadState.hpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2538 jvmtiThreadState.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2539 jvmtiThreadState.hpp jvmti.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2540 jvmtiThreadState.hpp jvmtiEventController.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2541 jvmtiThreadState.hpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2542
a61af66fc99e Initial load
duke
parents:
diff changeset
2543 klass.cpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2544 klass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2545 klass.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2546 klass.cpp klass.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2547 klass.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2548 klass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2549 klass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2550 klass.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2551 klass.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2552 klass.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2553 klass.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2554
a61af66fc99e Initial load
duke
parents:
diff changeset
2555 klass.hpp accessFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2556 klass.hpp genOopClosures.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2557 klass.hpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2558 klass.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2559 klass.hpp klassPS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2560 klass.hpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2561 klass.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2562 klass.hpp specialized_oop_closures.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2563
a61af66fc99e Initial load
duke
parents:
diff changeset
2564 klass.inline.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2565 klass.inline.hpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2566
a61af66fc99e Initial load
duke
parents:
diff changeset
2567 klassKlass.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2568 klassKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2569 klassKlass.cpp constantPoolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2570 klassKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2571 klassKlass.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2572 klassKlass.cpp instanceOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2573 klassKlass.cpp klassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2574 klassKlass.cpp klassOop.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2575 klassKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2576 klassKlass.cpp methodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2577 klassKlass.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2578 klassKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2579 klassKlass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2580 klassKlass.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2581 klassKlass.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2582 klassKlass.cpp symbolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 klassKlass.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2584 klassKlass.cpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2585
a61af66fc99e Initial load
duke
parents:
diff changeset
2586 klassKlass.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2587 klassKlass.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2588 klassKlass.hpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2589
a61af66fc99e Initial load
duke
parents:
diff changeset
2590 klassOop.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2591
a61af66fc99e Initial load
duke
parents:
diff changeset
2592 klassOop.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2593
a61af66fc99e Initial load
duke
parents:
diff changeset
2594 klassVtable.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2595 klassVtable.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2596 klassVtable.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 klassVtable.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2598 klassVtable.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2599 klassVtable.cpp jvmtiRedefineClassesTrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2600 klassVtable.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2601 klassVtable.cpp klassVtable.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2602 klassVtable.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2603 klassVtable.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 klassVtable.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2605 klassVtable.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2606 klassVtable.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2607 klassVtable.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2608 klassVtable.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2609 klassVtable.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2610
a61af66fc99e Initial load
duke
parents:
diff changeset
2611 klassVtable.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2612 klassVtable.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 klassVtable.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2614 klassVtable.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2615
a61af66fc99e Initial load
duke
parents:
diff changeset
2616 linkResolver.cpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2617 linkResolver.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2618 linkResolver.cpp compilationPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2619 linkResolver.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2620 linkResolver.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2621 linkResolver.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2622 linkResolver.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2623 linkResolver.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2624 linkResolver.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2625 linkResolver.cpp linkResolver.hpp
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2626 linkResolver.cpp methodHandles.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2627 linkResolver.cpp nativeLookup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2628 linkResolver.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2629 linkResolver.cpp reflection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2630 linkResolver.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2631 linkResolver.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2632 linkResolver.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2633 linkResolver.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2634 linkResolver.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2635 linkResolver.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2636 linkResolver.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2637
a61af66fc99e Initial load
duke
parents:
diff changeset
2638 linkResolver.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2639 linkResolver.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2640
a61af66fc99e Initial load
duke
parents:
diff changeset
2641 liveRange.hpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2642
a61af66fc99e Initial load
duke
parents:
diff changeset
2643 loaderConstraints.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2644 loaderConstraints.cpp hashtable.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2645 loaderConstraints.cpp loaderConstraints.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2646 loaderConstraints.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2647 loaderConstraints.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2648 loaderConstraints.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2649
a61af66fc99e Initial load
duke
parents:
diff changeset
2650 loaderConstraints.hpp dictionary.hpp
1258
38836cf1d8d2 6920977: G1: guarantee(k == probe->klass(),"klass should be in dictionary") fails
tonyp
parents: 1247
diff changeset
2651 loaderConstraints.hpp placeholders.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2652 loaderConstraints.hpp hashtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2653
a61af66fc99e Initial load
duke
parents:
diff changeset
2654 location.cpp debugInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2655 location.cpp location.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2656
a61af66fc99e Initial load
duke
parents:
diff changeset
2657 location.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2658 location.hpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2659 location.hpp vmreg.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2660
a61af66fc99e Initial load
duke
parents:
diff changeset
2661 lowMemoryDetector.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2662 lowMemoryDetector.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2663 lowMemoryDetector.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2664 lowMemoryDetector.cpp lowMemoryDetector.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2665 lowMemoryDetector.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2666 lowMemoryDetector.cpp mutex.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2667 lowMemoryDetector.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2668 lowMemoryDetector.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2669 lowMemoryDetector.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2670 lowMemoryDetector.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2671
a61af66fc99e Initial load
duke
parents:
diff changeset
2672 lowMemoryDetector.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2673 lowMemoryDetector.hpp memoryPool.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2674 lowMemoryDetector.hpp memoryService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2675
a61af66fc99e Initial load
duke
parents:
diff changeset
2676 management.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2677 management.cpp classLoadingService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2678 management.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2679 management.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2680 management.cpp heapDumper.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2681 management.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2682 management.cpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2683 management.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2684 management.cpp jniHandles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2685 management.cpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2686 management.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2687 management.cpp lowMemoryDetector.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2688 management.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2689 management.cpp memoryManager.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2690 management.cpp memoryPool.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2691 management.cpp memoryService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2692 management.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2693 management.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2694 management.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2695 management.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2696 management.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2697 management.cpp runtimeService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2698 management.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2699 management.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2700
a61af66fc99e Initial load
duke
parents:
diff changeset
2701 management.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2702 management.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2703 management.hpp jmm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
2704 management.hpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2705
a61af66fc99e Initial load
duke
parents:
diff changeset
2706 markOop.cpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2707 markOop.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2708
a61af66fc99e Initial load
duke
parents:
diff changeset
2709 markOop.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2710
a61af66fc99e Initial load
duke
parents:
diff changeset
2711 markOop.inline.hpp globals.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2712 markOop.inline.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2713 markOop.inline.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2714 markOop.inline.hpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2715
a61af66fc99e Initial load
duke
parents:
diff changeset
2716 markSweep.cpp compileBroker.hpp
941
8b46c4d82093 4957990: Perm heap bloat in JVM
ysr
parents: 879
diff changeset
2717 markSweep.cpp methodDataOop.hpp
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1286
diff changeset
2718 markSweep.cpp objArrayKlass.inline.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2719
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2720 markSweep.hpp collectedHeap.hpp
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1286
diff changeset
2721 markSweep.hpp taskqueue.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2722
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2723 memRegion.cpp globals.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2724 memRegion.cpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2725
a61af66fc99e Initial load
duke
parents:
diff changeset
2726 memRegion.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2727 memRegion.hpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2728 memRegion.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2729
a61af66fc99e Initial load
duke
parents:
diff changeset
2730 memoryManager.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2731 memoryManager.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2732 memoryManager.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2733 memoryManager.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2734 memoryManager.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2735 memoryManager.cpp lowMemoryDetector.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2736 memoryManager.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2737 memoryManager.cpp memoryManager.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2738 memoryManager.cpp memoryPool.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2739 memoryManager.cpp memoryService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2740 memoryManager.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2741
a61af66fc99e Initial load
duke
parents:
diff changeset
2742 memoryManager.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2743 memoryManager.hpp memoryUsage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2744 memoryManager.hpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2745
a61af66fc99e Initial load
duke
parents:
diff changeset
2746 memoryPool.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2747 memoryPool.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2748 memoryPool.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2749 memoryPool.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2750 memoryPool.cpp lowMemoryDetector.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2751 memoryPool.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2752 memoryPool.cpp memoryManager.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2753 memoryPool.cpp memoryPool.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2754 memoryPool.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2755
a61af66fc99e Initial load
duke
parents:
diff changeset
2756 memoryPool.hpp defNewGeneration.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2757 memoryPool.hpp heap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2758 memoryPool.hpp memoryUsage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2759 memoryPool.hpp mutableSpace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 memoryPool.hpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2761
a61af66fc99e Initial load
duke
parents:
diff changeset
2762 memoryService.cpp classLoadingService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 memoryService.cpp collectorPolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2764 memoryService.cpp defNewGeneration.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2765 memoryService.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2766 memoryService.cpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2767 memoryService.cpp generationSpec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2768 memoryService.cpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2769 memoryService.cpp heap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2770 memoryService.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2771 memoryService.cpp lowMemoryDetector.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2772 memoryService.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2773 memoryService.cpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2774 memoryService.cpp memoryManager.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2775 memoryService.cpp memoryPool.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2776 memoryService.cpp memoryService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2777 memoryService.cpp mutableSpace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2778 memoryService.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2779 memoryService.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2780 memoryService.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2781 memoryService.cpp tenuredGeneration.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2782 memoryService.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2783
a61af66fc99e Initial load
duke
parents:
diff changeset
2784 memoryService.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2785 memoryService.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2786 memoryService.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2787 memoryService.hpp memoryUsage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2788
a61af66fc99e Initial load
duke
parents:
diff changeset
2789 memoryUsage.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2790
a61af66fc99e Initial load
duke
parents:
diff changeset
2791 memprofiler.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2792 memprofiler.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2793 memprofiler.cpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2794 memprofiler.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2795 memprofiler.cpp jniHandles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2796 memprofiler.cpp memprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2797 memprofiler.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2798 memprofiler.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2799 memprofiler.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2800 memprofiler.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2801 memprofiler.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2802 memprofiler.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2803 memprofiler.cpp task.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2804 memprofiler.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2805 memprofiler.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2806
a61af66fc99e Initial load
duke
parents:
diff changeset
2807 methodComparator.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 methodComparator.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2809 methodComparator.cpp jvmtiRedefineClassesTrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2810 methodComparator.cpp methodComparator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2811 methodComparator.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2812 methodComparator.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2813
a61af66fc99e Initial load
duke
parents:
diff changeset
2814 methodComparator.hpp bytecodeStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2815 methodComparator.hpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2816 methodComparator.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2817
a61af66fc99e Initial load
duke
parents:
diff changeset
2818 methodDataKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2819 methodDataKlass.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2820 methodDataKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2821 methodDataKlass.cpp klassOop.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2822 methodDataKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2823 methodDataKlass.cpp methodDataKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2824 methodDataKlass.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2825 methodDataKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2826 methodDataKlass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2827 methodDataKlass.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2828 methodDataKlass.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2829
a61af66fc99e Initial load
duke
parents:
diff changeset
2830 methodDataKlass.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2831
a61af66fc99e Initial load
duke
parents:
diff changeset
2832 methodDataOop.cpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2833 methodDataOop.cpp bytecodeStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2834 methodDataOop.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 methodDataOop.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2836 methodDataOop.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 methodDataOop.cpp markSweep.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2838 methodDataOop.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2839 methodDataOop.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2840 methodDataOop.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2841
a61af66fc99e Initial load
duke
parents:
diff changeset
2842 methodDataOop.hpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2843 methodDataOop.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2844 methodDataOop.hpp orderAccess.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2845 methodDataOop.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2846
1133
aa62b9388fce 6894206: JVM needs a way to traverse method handle structures
twisti
parents: 1096
diff changeset
2847 methodHandleWalk.hpp methodHandles.hpp
aa62b9388fce 6894206: JVM needs a way to traverse method handle structures
twisti
parents: 1096
diff changeset
2848
aa62b9388fce 6894206: JVM needs a way to traverse method handle structures
twisti
parents: 1096
diff changeset
2849 methodHandleWalk.cpp methodHandleWalk.hpp
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
2850 methodHandleWalk.cpp oopFactory.hpp
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
2851 methodHandleWalk.cpp rewriter.hpp
1133
aa62b9388fce 6894206: JVM needs a way to traverse method handle structures
twisti
parents: 1096
diff changeset
2852
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2853 methodHandles.hpp frame.inline.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2854 methodHandles.hpp globals.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2855 methodHandles.hpp interfaceSupport.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2856 methodHandles.hpp javaClasses.hpp
1507
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 1330
diff changeset
2857 methodHandles.hpp no_precompiled_headers
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2858 methodHandles.hpp vmSymbols.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2859
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2860 methodHandles.cpp allocation.inline.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2861 methodHandles.cpp interpreter.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2862 methodHandles.cpp javaCalls.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2863 methodHandles.cpp methodHandles.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2864 methodHandles.cpp oopFactory.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2865 methodHandles.cpp reflection.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2866 methodHandles.cpp signature.hpp
1299
9eba43136cb5 6934494: JSR 292 MethodHandles adapters should be generated into their own CodeBlob
twisti
parents: 1295
diff changeset
2867 methodHandles.cpp stubRoutines.hpp
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2868 methodHandles.cpp symbolTable.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2869
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2870 methodHandles_<arch>.cpp allocation.inline.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2871 methodHandles_<arch>.cpp interpreter.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2872 methodHandles_<arch>.cpp methodHandles.hpp
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
2873
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2874 methodKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2875 methodKlass.cpp constMethodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2876 methodKlass.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2877 methodKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2878 methodKlass.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2879 methodKlass.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2880 methodKlass.cpp klassOop.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
2881 methodKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2882 methodKlass.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2883 methodKlass.cpp methodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2884 methodKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2885 methodKlass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2886 methodKlass.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2887 methodKlass.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2888 methodKlass.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2889
a61af66fc99e Initial load
duke
parents:
diff changeset
2890 methodKlass.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2891 methodKlass.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2892 methodKlass.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2893
a61af66fc99e Initial load
duke
parents:
diff changeset
2894 methodLiveness.cpp allocation.inline.hpp
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
2895 methodLiveness.cpp bitMap.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2896 methodLiveness.cpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2897 methodLiveness.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2898 methodLiveness.cpp ciMethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2899 methodLiveness.cpp ciMethodBlocks.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2900 methodLiveness.cpp ciStreams.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2901 methodLiveness.cpp methodLiveness.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2902
a61af66fc99e Initial load
duke
parents:
diff changeset
2903 methodLiveness.hpp bitMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2904 methodLiveness.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2905
a61af66fc99e Initial load
duke
parents:
diff changeset
2906 methodOop.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2907 methodOop.cpp bytecodeStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2908 methodOop.cpp bytecodeTracer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 methodOop.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2910 methodOop.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2911 methodOop.cpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2912 methodOop.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2913 methodOop.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2914 methodOop.cpp gcTaskThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2915 methodOop.cpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2916 methodOop.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2917 methodOop.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2918 methodOop.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2919 methodOop.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2920 methodOop.cpp methodDataOop.hpp
1507
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 1330
diff changeset
2921 methodOop.cpp methodHandleWalk.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2922 methodOop.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2923 methodOop.cpp nativeLookup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2924 methodOop.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 methodOop.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2926 methodOop.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2927 methodOop.cpp relocator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2928 methodOop.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2929 methodOop.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2930 methodOop.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2931 methodOop.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2932 methodOop.cpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2933
a61af66fc99e Initial load
duke
parents:
diff changeset
2934 methodOop.hpp accessFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2935 methodOop.hpp compressedStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2936 methodOop.hpp constMethodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2937 methodOop.hpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2938 methodOop.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2939 methodOop.hpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2940 methodOop.hpp invocationCounter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2941 methodOop.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2942 methodOop.hpp oopMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2943 methodOop.hpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2944 methodOop.hpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2945
a61af66fc99e Initial load
duke
parents:
diff changeset
2946 modRefBarrierSet.hpp barrierSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2947
a61af66fc99e Initial load
duke
parents:
diff changeset
2948 monitorChunk.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2949 monitorChunk.cpp monitorChunk.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2950 monitorChunk.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2951
a61af66fc99e Initial load
duke
parents:
diff changeset
2952 monitorChunk.hpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2953
a61af66fc99e Initial load
duke
parents:
diff changeset
2954 mutex.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2955 mutex.cpp mutex.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2956 mutex.cpp mutex_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2957 mutex.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2958 mutex.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2959
a61af66fc99e Initial load
duke
parents:
diff changeset
2960 mutex.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2961 mutex.hpp histogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2962 mutex.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2963
a61af66fc99e Initial load
duke
parents:
diff changeset
2964 mutexLocker.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2965 mutexLocker.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2966 mutexLocker.cpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2967 mutexLocker.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2968 mutexLocker.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2969
a61af66fc99e Initial load
duke
parents:
diff changeset
2970 mutexLocker.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2971 mutexLocker.hpp mutex.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2972 mutexLocker.hpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2973
a61af66fc99e Initial load
duke
parents:
diff changeset
2974 mutex_<os_family>.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2975 mutex_<os_family>.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2976 mutex_<os_family>.cpp mutex.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2977 mutex_<os_family>.cpp mutex_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2978 mutex_<os_family>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2979
a61af66fc99e Initial load
duke
parents:
diff changeset
2980 mutex_<os_family>.inline.hpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2981 mutex_<os_family>.inline.hpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2982 mutex_<os_family>.inline.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2983
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
2984 nativeInst_<arch>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2985 nativeInst_<arch>.cpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2986 nativeInst_<arch>.cpp nativeInst_<arch>.hpp
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 726
diff changeset
2987 nativeInst_<arch>.cpp oop.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2988 nativeInst_<arch>.cpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2989 nativeInst_<arch>.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2990 nativeInst_<arch>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2991 nativeInst_<arch>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2992
a61af66fc99e Initial load
duke
parents:
diff changeset
2993 nativeInst_<arch>.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2994 nativeInst_<arch>.hpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2995 nativeInst_<arch>.hpp icache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2996 nativeInst_<arch>.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2997 nativeInst_<arch>.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
2998
a61af66fc99e Initial load
duke
parents:
diff changeset
2999 nativeLookup.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3000 nativeLookup.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3001 nativeLookup.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3002 nativeLookup.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3003 nativeLookup.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3004 nativeLookup.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3005 nativeLookup.cpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3006 nativeLookup.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3007 nativeLookup.cpp nativeLookup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3008 nativeLookup.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3009 nativeLookup.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3010 nativeLookup.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3011 nativeLookup.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3012 nativeLookup.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3013 nativeLookup.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3014 nativeLookup.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3015 nativeLookup.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3016 nativeLookup.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3017 nativeLookup.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3018
a61af66fc99e Initial load
duke
parents:
diff changeset
3019 nativeLookup.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3020 nativeLookup.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3021
a61af66fc99e Initial load
duke
parents:
diff changeset
3022 nmethod.cpp abstractCompiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3023 nmethod.cpp bytecode.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3024 nmethod.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3025 nmethod.cpp compileLog.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3026 nmethod.cpp compiledIC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3027 nmethod.cpp compilerOracle.hpp
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
3028 nmethod.cpp disassembler.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3029 nmethod.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3030 nmethod.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3031 nmethod.cpp jvmtiRedefineClassesTrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3032 nmethod.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3033 nmethod.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3034 nmethod.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3035 nmethod.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3036 nmethod.cpp sweeper.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3037 nmethod.cpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3038
a61af66fc99e Initial load
duke
parents:
diff changeset
3039 nmethod.hpp codeBlob.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3040 nmethod.hpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3041
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
3042 numberSeq.cpp debug.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
3043 numberSeq.cpp numberSeq.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
3044 numberSeq.cpp globalDefinitions.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
3045 numberSeq.cpp allocation.inline.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
3046
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3047 objArrayKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3048 objArrayKlass.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3049 objArrayKlass.cpp genOopClosures.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3050 objArrayKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3051 objArrayKlass.cpp instanceKlass.hpp
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1286
diff changeset
3052 objArrayKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3053 objArrayKlass.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3054 objArrayKlass.cpp objArrayKlass.hpp
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1286
diff changeset
3055 objArrayKlass.cpp objArrayKlass.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3056 objArrayKlass.cpp objArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3057 objArrayKlass.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3058 objArrayKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3059 objArrayKlass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3060 objArrayKlass.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3061 objArrayKlass.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3062 objArrayKlass.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3063 objArrayKlass.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3064 objArrayKlass.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3065
a61af66fc99e Initial load
duke
parents:
diff changeset
3066 objArrayKlass.hpp arrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3067 objArrayKlass.hpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3068 objArrayKlass.hpp specialized_oop_closures.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3069
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1286
diff changeset
3070 objArrayKlass.inline.hpp objArrayKlass.hpp
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1286
diff changeset
3071
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3072 objArrayKlassKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3073 objArrayKlassKlass.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3074 objArrayKlassKlass.cpp javaClasses.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
3075 objArrayKlassKlass.cpp markSweep.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3076 objArrayKlassKlass.cpp objArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3077 objArrayKlassKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3078 objArrayKlassKlass.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3079 objArrayKlassKlass.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3080
a61af66fc99e Initial load
duke
parents:
diff changeset
3081 objArrayKlassKlass.hpp arrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3082 objArrayKlassKlass.hpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3083
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
3084 objArrayOop.cpp objArrayKlass.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3085 objArrayOop.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3086 objArrayOop.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3087
a61af66fc99e Initial load
duke
parents:
diff changeset
3088 objArrayOop.hpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3089
a61af66fc99e Initial load
duke
parents:
diff changeset
3090 objectMonitor.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3091
a61af66fc99e Initial load
duke
parents:
diff changeset
3092 objectMonitor_<os_family>.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3093 objectMonitor_<os_family>.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3094 objectMonitor_<os_family>.cpp objectMonitor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3095 objectMonitor_<os_family>.cpp objectMonitor.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3096 objectMonitor_<os_family>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3097 objectMonitor_<os_family>.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3098 objectMonitor_<os_family>.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3099 objectMonitor_<os_family>.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3100 objectMonitor_<os_family>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3101 objectMonitor_<os_family>.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3102
a61af66fc99e Initial load
duke
parents:
diff changeset
3103 objectMonitor_<os_family>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
3104 objectMonitor_<os_family>.hpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3105 objectMonitor_<os_family>.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3106 objectMonitor_<os_family>.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3107
a61af66fc99e Initial load
duke
parents:
diff changeset
3108 objectMonitor_<os_family>.inline.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
3109
a61af66fc99e Initial load
duke
parents:
diff changeset
3110 oop.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3111 oop.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3112 oop.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3113 oop.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3114 oop.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3115
a61af66fc99e Initial load
duke
parents:
diff changeset
3116 oop.hpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3117 oop.hpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3118 oop.hpp specialized_oop_closures.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3119 oop.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3120
a61af66fc99e Initial load
duke
parents:
diff changeset
3121 oop.inline.hpp ageTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3122 oop.inline.hpp arrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3123 oop.inline.hpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3124 oop.inline.hpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3125 oop.inline.hpp barrierSet.inline.hpp
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
3126 oop.inline.hpp bytes_<arch>.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3127 oop.inline.hpp cardTableModRefBS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3128 oop.inline.hpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3129 oop.inline.hpp compactingPermGenGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3130 oop.inline.hpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3131 oop.inline.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3132 oop.inline.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3133 oop.inline.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3134 oop.inline.hpp markOop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3135 oop.inline.hpp markSweep.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3136 oop.inline.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3137 oop.inline.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3138 oop.inline.hpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3139 oop.inline.hpp specialized_oop_closures.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3140
a61af66fc99e Initial load
duke
parents:
diff changeset
3141 oop.inline2.hpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3142 oop.inline2.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3143 oop.inline2.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3144 oop.inline2.hpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3145 oop.inline2.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3146
a61af66fc99e Initial load
duke
parents:
diff changeset
3147 oopFactory.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3148 oopFactory.cpp compiledICHolderKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3149 oopFactory.cpp constMethodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3150 oopFactory.cpp constantPoolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3151 oopFactory.cpp cpCacheKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3152 oopFactory.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3153 oopFactory.cpp instanceKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3154 oopFactory.cpp instanceOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3155 oopFactory.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3156 oopFactory.cpp klassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3157 oopFactory.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3158 oopFactory.cpp methodDataKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3159 oopFactory.cpp methodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3160 oopFactory.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3161 oopFactory.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3162 oopFactory.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3163 oopFactory.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3164 oopFactory.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3165 oopFactory.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3166 oopFactory.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3167 oopFactory.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3168
a61af66fc99e Initial load
duke
parents:
diff changeset
3169 oopFactory.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3170 oopFactory.hpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3171 oopFactory.hpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3172 oopFactory.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3173 oopFactory.hpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3174 oopFactory.hpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3175 oopFactory.hpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3176 oopFactory.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3177
a61af66fc99e Initial load
duke
parents:
diff changeset
3178 oopMap.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3179 oopMap.cpp codeBlob.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3180 oopMap.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3181 oopMap.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3182 oopMap.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3183 oopMap.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3184 oopMap.cpp oopMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3185 oopMap.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3186 oopMap.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3187 oopMap.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3188
a61af66fc99e Initial load
duke
parents:
diff changeset
3189 oopMap.hpp allocation.hpp
139
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
3190 oopMapCache.cpp jvmtiRedefineClassesTrace.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3191 oopMap.hpp compressedStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3192 oopMap.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3193 oopMap.hpp vmreg.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3194
a61af66fc99e Initial load
duke
parents:
diff changeset
3195 oopMapCache.cpp allocation.inline.hpp
139
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
3196 oopMapCache.cpp jvmtiRedefineClassesTrace.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3197 oopMapCache.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3198 oopMapCache.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3199 oopMapCache.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3200 oopMapCache.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3201 oopMapCache.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3202
a61af66fc99e Initial load
duke
parents:
diff changeset
3203 oopMapCache.hpp generateOopMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3204
a61af66fc99e Initial load
duke
parents:
diff changeset
3205 oopRecorder.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3206 oopRecorder.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3207 oopRecorder.cpp oopRecorder.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3208
a61af66fc99e Initial load
duke
parents:
diff changeset
3209 oopRecorder.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3210 oopRecorder.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3211
a61af66fc99e Initial load
duke
parents:
diff changeset
3212 oopsHierarchy.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3213 oopsHierarchy.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3214 oopsHierarchy.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3215 oopsHierarchy.cpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3216 oopsHierarchy.cpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3217 oopsHierarchy.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3218
a61af66fc99e Initial load
duke
parents:
diff changeset
3219 orderAccess.cpp orderAccess.hpp
671
d0994e5bebce 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 647
diff changeset
3220 orderAccess.cpp stubRoutines.hpp
d0994e5bebce 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 647
diff changeset
3221 orderAccess.cpp thread.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3222
a61af66fc99e Initial load
duke
parents:
diff changeset
3223 orderAccess.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3224 orderAccess.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3225
a61af66fc99e Initial load
duke
parents:
diff changeset
3226 orderAccess_<os_arch>.inline.hpp orderAccess.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3227
a61af66fc99e Initial load
duke
parents:
diff changeset
3228 os.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3229 os.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3230 os.cpp attachListener.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3231 os.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3232 os.cpp defaultStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3233 os.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3234 os.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3235 os.cpp hpi.hpp
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1648
diff changeset
3236 os.cpp icBuffer.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3237 os.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3238 os.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3239 os.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3240 os.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3241 os.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3242 os.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3243 os.cpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3244 os.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3245 os.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3246 os.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3247 os.cpp os_<os_family>.inline.hpp
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1648
diff changeset
3248 os.cpp privilegedStack.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3249 os.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3250 os.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3251 os.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3252 os.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3253 os.cpp vmGCOperations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3254 os.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3255 os.cpp vtableStubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3256
a61af66fc99e Initial load
duke
parents:
diff changeset
3257 os.hpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3258 os.hpp extendedPC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3259 os.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3260 os.hpp jvmti.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3261 os.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3262
a61af66fc99e Initial load
duke
parents:
diff changeset
3263 os_<os_arch>.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3264 os_<os_arch>.cpp arguments.hpp
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
3265 os_<os_arch>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3266 os_<os_arch>.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3267 os_<os_arch>.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3268 os_<os_arch>.cpp extendedPC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3269 os_<os_arch>.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3270 os_<os_arch>.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3271 os_<os_arch>.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3272 os_<os_arch>.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3273 os_<os_arch>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3274 os_<os_arch>.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3275 os_<os_arch>.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3276 os_<os_arch>.cpp jniFastGetField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3277 os_<os_arch>.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3278 os_<os_arch>.cpp jvm_<os_family>.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3279 os_<os_arch>.cpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3280 os_<os_arch>.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3281 os_<os_arch>.cpp mutex_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3282 os_<os_arch>.cpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3283 os_<os_arch>.cpp no_precompiled_headers
a61af66fc99e Initial load
duke
parents:
diff changeset
3284 os_<os_arch>.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3285 os_<os_arch>.cpp os_share_<os_family>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3286 os_<os_arch>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3287 os_<os_arch>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3288 os_<os_arch>.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3289 os_<os_arch>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3290 os_<os_arch>.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3291 os_<os_arch>.cpp vmError.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3292 os_<os_arch>.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3293 os_<os_arch>.cpp vtableStubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3294
a61af66fc99e Initial load
duke
parents:
diff changeset
3295 os_<os_arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
3296
a61af66fc99e Initial load
duke
parents:
diff changeset
3297 os_<os_family>.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3298 os_<os_family>.cpp arguments.hpp
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
3299 os_<os_family>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3300 os_<os_family>.cpp attachListener.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3301 os_<os_family>.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3302 os_<os_family>.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3303 os_<os_family>.cpp defaultStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3304 os_<os_family>.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3305 os_<os_family>.cpp extendedPC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3306 os_<os_family>.cpp filemap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3307 os_<os_family>.cpp globals.hpp
141
fcbfc50865ab 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 140
diff changeset
3308 os_<os_family>.cpp growableArray.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3309 os_<os_family>.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3310 os_<os_family>.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3311 os_<os_family>.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3312 os_<os_family>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3313 os_<os_family>.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3314 os_<os_family>.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3315 os_<os_family>.cpp jniFastGetField.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3316 os_<os_family>.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3317 os_<os_family>.cpp jvm_<os_family>.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3318 os_<os_family>.cpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3319 os_<os_family>.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3320 os_<os_family>.cpp mutex_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3321 os_<os_family>.cpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3322 os_<os_family>.cpp no_precompiled_headers
a61af66fc99e Initial load
duke
parents:
diff changeset
3323 os_<os_family>.cpp objectMonitor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3324 os_<os_family>.cpp objectMonitor.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3325 os_<os_family>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3326 os_<os_family>.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3327 os_<os_family>.cpp os_share_<os_family>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3328 os_<os_family>.cpp perfMemory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3329 os_<os_family>.cpp runtimeService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3330 os_<os_family>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3331 os_<os_family>.cpp statSampler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3332 os_<os_family>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3333 os_<os_family>.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3334 os_<os_family>.cpp threadCritical.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3335 os_<os_family>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3336 os_<os_family>.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3337 os_<os_family>.cpp vmError.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3338 os_<os_family>.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3339 os_<os_family>.cpp vtableStubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3340
a61af66fc99e Initial load
duke
parents:
diff changeset
3341 os_<os_family>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
3342
a61af66fc99e Initial load
duke
parents:
diff changeset
3343 os_<os_family>.inline.hpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3344 os_<os_family>.inline.hpp atomic_<os_arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3345 os_<os_family>.inline.hpp orderAccess_<os_arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3346 os_<os_family>.inline.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3347
a61af66fc99e Initial load
duke
parents:
diff changeset
3348 osThread.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3349 osThread.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3350
a61af66fc99e Initial load
duke
parents:
diff changeset
3351 osThread.hpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3352 osThread.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3353 osThread.hpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3354 osThread.hpp javaFrameAnchor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3355 osThread.hpp objectMonitor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3356 osThread.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3357
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
3358 osThread_<os_family>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3359 osThread_<os_family>.cpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3360 osThread_<os_family>.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3361 osThread_<os_family>.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3362 osThread_<os_family>.cpp no_precompiled_headers
a61af66fc99e Initial load
duke
parents:
diff changeset
3363 osThread_<os_family>.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3364 osThread_<os_family>.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3365 osThread_<os_family>.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3366 osThread_<os_family>.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3367
a61af66fc99e Initial load
duke
parents:
diff changeset
3368 osThread_<os_family>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
3369
a61af66fc99e Initial load
duke
parents:
diff changeset
3370 ostream.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3371 ostream.cpp compileLog.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3372 ostream.cpp defaultStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3373 ostream.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3374 ostream.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3375 ostream.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3376 ostream.cpp hpi_<os_family>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3377 ostream.cpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3378 ostream.cpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3379 ostream.cpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3380
a61af66fc99e Initial load
duke
parents:
diff changeset
3381 ostream.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3382 ostream.hpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3383
a61af66fc99e Initial load
duke
parents:
diff changeset
3384 pcDesc.cpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3385 pcDesc.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3386 pcDesc.cpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3387 pcDesc.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3388 pcDesc.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3389
a61af66fc99e Initial load
duke
parents:
diff changeset
3390 pcDesc.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3391
a61af66fc99e Initial load
duke
parents:
diff changeset
3392 perf.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3393 perf.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3394 perf.cpp jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3395 perf.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3396 perf.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3397 perf.cpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3398 perf.cpp perfMemory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3399 perf.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3400 perf.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3401
a61af66fc99e Initial load
duke
parents:
diff changeset
3402 perfData.cpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3403 perfData.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3404 perfData.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3405 perfData.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3406 perfData.cpp mutex.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3407 perfData.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3408 perfData.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3409 perfData.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3410 perfData.cpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3411 perfData.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3412
a61af66fc99e Initial load
duke
parents:
diff changeset
3413 perfData.hpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3414 perfData.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3415 perfData.hpp perfMemory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3416 perfData.hpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3417
a61af66fc99e Initial load
duke
parents:
diff changeset
3418 perfMemory.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3419 perfMemory.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3420 perfMemory.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3421 perfMemory.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3422 perfMemory.cpp mutex.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3423 perfMemory.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3424 perfMemory.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3425 perfMemory.cpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3426 perfMemory.cpp perfMemory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3427 perfMemory.cpp statSampler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3428
a61af66fc99e Initial load
duke
parents:
diff changeset
3429 perfMemory.hpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3430
a61af66fc99e Initial load
duke
parents:
diff changeset
3431 perfMemory_<os_family>.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3432 perfMemory_<os_family>.cpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3433 perfMemory_<os_family>.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3434 perfMemory_<os_family>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3435 perfMemory_<os_family>.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3436 perfMemory_<os_family>.cpp perfMemory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3437 perfMemory_<os_family>.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3438 perfMemory_<os_family>.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3439
1716
be3f9c242c9d 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 1681
diff changeset
3440 permGen.cpp blockOffsetTable.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3441 permGen.cpp cSpaceCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3442 permGen.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3443 permGen.cpp compactPermGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3444 permGen.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3445 permGen.cpp generation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3446 permGen.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3447 permGen.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3448 permGen.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3449 permGen.cpp universe.hpp
139
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
3450 permGen.cpp gcLocker.hpp
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
3451 permGen.cpp gcLocker.inline.hpp
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
3452 permGen.cpp vmGCOperations.hpp
c0492d52d55b 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 52
diff changeset
3453 permGen.cpp vmThread.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3454
a61af66fc99e Initial load
duke
parents:
diff changeset
3455 permGen.hpp gcCause.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3456 permGen.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3457 permGen.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3458 permGen.hpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3459 permGen.hpp virtualspace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3460
a61af66fc99e Initial load
duke
parents:
diff changeset
3461 placeholders.cpp fieldType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3462 placeholders.cpp hashtable.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3463 placeholders.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3464 placeholders.cpp placeholders.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3465 placeholders.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3466
a61af66fc99e Initial load
duke
parents:
diff changeset
3467 placeholders.hpp hashtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3468
a61af66fc99e Initial load
duke
parents:
diff changeset
3469 prefetch.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3470
a61af66fc99e Initial load
duke
parents:
diff changeset
3471 prefetch_<os_arch>.inline.hpp prefetch.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3472
a61af66fc99e Initial load
duke
parents:
diff changeset
3473 preserveException.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3474 preserveException.cpp preserveException.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3475
a61af66fc99e Initial load
duke
parents:
diff changeset
3476 preserveException.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3477 preserveException.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3478
a61af66fc99e Initial load
duke
parents:
diff changeset
3479 privilegedStack.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3480 privilegedStack.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3481 privilegedStack.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3482 privilegedStack.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3483 privilegedStack.cpp privilegedStack.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3484 privilegedStack.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3485
a61af66fc99e Initial load
duke
parents:
diff changeset
3486 privilegedStack.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3487 privilegedStack.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3488 privilegedStack.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3489 privilegedStack.hpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3490
a61af66fc99e Initial load
duke
parents:
diff changeset
3491 referencePolicy.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3492 referencePolicy.cpp globals.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3493 referencePolicy.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3494 referencePolicy.cpp referencePolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3495 referencePolicy.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3496
a61af66fc99e Initial load
duke
parents:
diff changeset
3497 referenceProcessor.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3498 referenceProcessor.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3499 referenceProcessor.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3500 referenceProcessor.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3501 referenceProcessor.cpp jniHandles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3502 referenceProcessor.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3503 referenceProcessor.cpp referencePolicy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3504 referenceProcessor.cpp referenceProcessor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3505 referenceProcessor.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3506
a61af66fc99e Initial load
duke
parents:
diff changeset
3507 referenceProcessor.hpp instanceRefKlass.hpp
453
c96030fff130 6684579: SoftReference processing can be made more efficient
ysr
parents: 362
diff changeset
3508 referenceProcessor.hpp referencePolicy.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3509
a61af66fc99e Initial load
duke
parents:
diff changeset
3510 reflection.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3511 reflection.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3512 reflection.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3513 reflection.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3514 reflection.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3515 reflection.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3516 reflection.cpp linkResolver.hpp
1152
cd37471eaecc 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 1138
diff changeset
3517 reflection.cpp methodHandleWalk.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3518 reflection.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3519 reflection.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3520 reflection.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3521 reflection.cpp reflection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3522 reflection.cpp reflectionUtils.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3523 reflection.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3524 reflection.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3525 reflection.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3526 reflection.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3527 reflection.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3528 reflection.cpp verifier.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3529 reflection.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3530 reflection.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3531
a61af66fc99e Initial load
duke
parents:
diff changeset
3532 reflection.hpp accessFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3533 reflection.hpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3534 reflection.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3535 reflection.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3536 reflection.hpp reflectionCompat.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3537
a61af66fc99e Initial load
duke
parents:
diff changeset
3538 reflectionUtils.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3539 reflectionUtils.cpp reflectionUtils.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3540 reflectionUtils.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3541
a61af66fc99e Initial load
duke
parents:
diff changeset
3542 reflectionUtils.hpp accessFlags.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3543 reflectionUtils.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3544 reflectionUtils.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3545 reflectionUtils.hpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3546 reflectionUtils.hpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3547 reflectionUtils.hpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3548 reflectionUtils.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3549 reflectionUtils.hpp reflection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3550
a61af66fc99e Initial load
duke
parents:
diff changeset
3551 register.cpp register.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3552
a61af66fc99e Initial load
duke
parents:
diff changeset
3553 register.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3554
a61af66fc99e Initial load
duke
parents:
diff changeset
3555 register_<arch>.cpp register_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3556
a61af66fc99e Initial load
duke
parents:
diff changeset
3557 register_<arch>.hpp register.hpp
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
3558 register_<arch>.hpp vm_version_<arch>.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3559
a61af66fc99e Initial load
duke
parents:
diff changeset
3560 registerMap.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3561 registerMap.hpp register_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3562 registerMap.hpp vmreg.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3563
a61af66fc99e Initial load
duke
parents:
diff changeset
3564 registerMap_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
3565
a61af66fc99e Initial load
duke
parents:
diff changeset
3566 register_definitions_<arch>.cpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3567 register_definitions_<arch>.cpp interp_masm_<arch_model>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3568 register_definitions_<arch>.cpp register.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3569 register_definitions_<arch>.cpp register_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3570
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
3571 relocInfo.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3572 relocInfo.cpp compiledIC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3573 relocInfo.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3574 relocInfo.cpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3575 relocInfo.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3576 relocInfo.cpp relocInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3577 relocInfo.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3578 relocInfo.cpp stubCodeGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3579
a61af66fc99e Initial load
duke
parents:
diff changeset
3580 relocInfo.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3581 relocInfo.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3582
a61af66fc99e Initial load
duke
parents:
diff changeset
3583 relocInfo_<arch>.cpp assembler.inline.hpp
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
3584 relocInfo_<arch>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3585 relocInfo_<arch>.cpp nativeInst_<arch>.hpp
164
c436414a719e 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 142
diff changeset
3586 relocInfo_<arch>.cpp oop.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3587 relocInfo_<arch>.cpp relocInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3588 relocInfo_<arch>.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3589
a61af66fc99e Initial load
duke
parents:
diff changeset
3590 relocInfo_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
3591
a61af66fc99e Initial load
duke
parents:
diff changeset
3592 relocator.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3593 relocator.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3594 relocator.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3595 relocator.cpp relocator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3596 relocator.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3597
a61af66fc99e Initial load
duke
parents:
diff changeset
3598 relocator.hpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3599 relocator.hpp bytes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3600 relocator.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3601
a61af66fc99e Initial load
duke
parents:
diff changeset
3602 resolutionErrors.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3603 resolutionErrors.cpp hashtable.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3604 resolutionErrors.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3605 resolutionErrors.cpp resolutionErrors.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3606 resolutionErrors.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3607 resolutionErrors.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3608
a61af66fc99e Initial load
duke
parents:
diff changeset
3609 resolutionErrors.hpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3610 resolutionErrors.hpp hashtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3611
a61af66fc99e Initial load
duke
parents:
diff changeset
3612 resourceArea.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3613 resourceArea.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3614 resourceArea.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3615 resourceArea.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3616
a61af66fc99e Initial load
duke
parents:
diff changeset
3617 resourceArea.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3618 resourceArea.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3619
a61af66fc99e Initial load
duke
parents:
diff changeset
3620 // restore is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
3621
a61af66fc99e Initial load
duke
parents:
diff changeset
3622 rewriter.cpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3623 rewriter.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3624 rewriter.cpp generateOopMap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3625 rewriter.cpp interpreter.hpp
1574
1eb493f33423 6957080: MethodComparator needs stress testing
jrose
parents: 1565
diff changeset
3626 rewriter.cpp methodComparator.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3627 rewriter.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3628 rewriter.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3629 rewriter.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3630 rewriter.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3631 rewriter.cpp rewriter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3632
a61af66fc99e Initial load
duke
parents:
diff changeset
3633 rewriter.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3634 rewriter.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3635 rewriter.hpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3636
a61af66fc99e Initial load
duke
parents:
diff changeset
3637 rframe.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3638 rframe.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3639 rframe.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3640 rframe.cpp rframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3641 rframe.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3642 rframe.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3643 rframe.cpp vframe_hp.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3644
a61af66fc99e Initial load
duke
parents:
diff changeset
3645 rframe.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3646 rframe.hpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3647
a61af66fc99e Initial load
duke
parents:
diff changeset
3648 runtimeService.cpp attachListener.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3649 runtimeService.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3650 runtimeService.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3651 runtimeService.cpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3652 runtimeService.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3653 runtimeService.cpp runtimeService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3654
a61af66fc99e Initial load
duke
parents:
diff changeset
3655 runtimeService.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3656 runtimeService.hpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3657
a61af66fc99e Initial load
duke
parents:
diff changeset
3658 safepoint.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3659 safepoint.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3660 safepoint.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3661 safepoint.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3662 safepoint.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3663 safepoint.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3664 safepoint.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3665 safepoint.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3666 safepoint.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3667 safepoint.cpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3668 safepoint.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3669 safepoint.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3670 safepoint.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3671 safepoint.cpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3672 safepoint.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3673 safepoint.cpp runtimeService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3674 safepoint.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3675 safepoint.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3676 safepoint.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3677 safepoint.cpp stubCodeGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3678 safepoint.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3679 safepoint.cpp sweeper.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3680 safepoint.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3681 safepoint.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3682 safepoint.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3683 safepoint.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3684 safepoint.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3685 safepoint.cpp vmreg_<arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3686
a61af66fc99e Initial load
duke
parents:
diff changeset
3687 safepoint.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3688 safepoint.hpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3689 safepoint.hpp extendedPC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3690 safepoint.hpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3691 safepoint.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3692 safepoint.hpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3693
a61af66fc99e Initial load
duke
parents:
diff changeset
3694 scopeDesc.cpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3695 scopeDesc.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3696 scopeDesc.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3697 scopeDesc.cpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3698 scopeDesc.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3699 scopeDesc.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3700
a61af66fc99e Initial load
duke
parents:
diff changeset
3701 scopeDesc.hpp debugInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3702 scopeDesc.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3703 scopeDesc.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3704 scopeDesc.hpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3705
a61af66fc99e Initial load
duke
parents:
diff changeset
3706 // serialize is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
3707
a61af66fc99e Initial load
duke
parents:
diff changeset
3708 serviceUtil.hpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3709 serviceUtil.hpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3710
a61af66fc99e Initial load
duke
parents:
diff changeset
3711 sharedHeap.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3712 sharedHeap.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3713 sharedHeap.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3714 sharedHeap.cpp fprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3715 sharedHeap.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3716 sharedHeap.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3717 sharedHeap.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3718 sharedHeap.cpp sharedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3719 sharedHeap.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3720 sharedHeap.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3721 sharedHeap.cpp workgroup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3722
a61af66fc99e Initial load
duke
parents:
diff changeset
3723 sharedHeap.hpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3724 sharedHeap.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3725 sharedHeap.hpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3726
a61af66fc99e Initial load
duke
parents:
diff changeset
3727 sharedRuntime.cpp abstractCompiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3728 sharedRuntime.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3729 sharedRuntime.cpp biasedLocking.hpp
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1189
diff changeset
3730 sharedRuntime.cpp compileBroker.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3731 sharedRuntime.cpp compiledIC.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3732 sharedRuntime.cpp compilerOracle.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3733 sharedRuntime.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3734 sharedRuntime.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3735 sharedRuntime.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3736 sharedRuntime.cpp forte.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3737 sharedRuntime.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3738 sharedRuntime.cpp handles.inline.hpp
1187
cf0685d550f1 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 1155
diff changeset
3739 sharedRuntime.cpp hashtable.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3740 sharedRuntime.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3741 sharedRuntime.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3742 sharedRuntime.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3743 sharedRuntime.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3744 sharedRuntime.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3745 sharedRuntime.cpp jvmtiExport.hpp
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
3746 sharedRuntime.cpp methodHandles.hpp
610
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 467
diff changeset
3747 sharedRuntime.cpp jvmtiRedefineClassesTrace.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3748 sharedRuntime.cpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3749 sharedRuntime.cpp nativeLookup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3750 sharedRuntime.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3751 sharedRuntime.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3752 sharedRuntime.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3753 sharedRuntime.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3754 sharedRuntime.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3755 sharedRuntime.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3756 sharedRuntime.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3757 sharedRuntime.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3758 sharedRuntime.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3759 sharedRuntime.cpp vmreg_<arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3760 sharedRuntime.cpp vtableStubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3761 sharedRuntime.cpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3762
a61af66fc99e Initial load
duke
parents:
diff changeset
3763 sharedRuntime.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3764 sharedRuntime.hpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3765 sharedRuntime.hpp bytecodeTracer.hpp
1187
cf0685d550f1 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 1155
diff changeset
3766 sharedRuntime.hpp hashtable.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3767 sharedRuntime.hpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3768 sharedRuntime.hpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3769 sharedRuntime.hpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3770
a61af66fc99e Initial load
duke
parents:
diff changeset
3771 sharedRuntime_<arch_model>.cpp assembler.hpp
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
3772 sharedRuntime_<arch_model>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3773 sharedRuntime_<arch_model>.cpp compiledICHolderOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3774 sharedRuntime_<arch_model>.cpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3775 sharedRuntime_<arch_model>.cpp icBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3776 sharedRuntime_<arch_model>.cpp interpreter.hpp
610
70998f2e05ef 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 467
diff changeset
3777 sharedRuntime_<arch_model>.cpp jvmtiRedefineClassesTrace.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3778 sharedRuntime_<arch_model>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3779 sharedRuntime_<arch_model>.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3780 sharedRuntime_<arch_model>.cpp vmreg_<arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3781 sharedRuntime_<arch_model>.cpp vtableStubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3782
a61af66fc99e Initial load
duke
parents:
diff changeset
3783 sharedRuntimeTrans.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3784 sharedRuntimeTrans.cpp jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3785 sharedRuntimeTrans.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3786
a61af66fc99e Initial load
duke
parents:
diff changeset
3787 sharedRuntimeTrig.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3788 sharedRuntimeTrig.cpp jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
3789 sharedRuntimeTrig.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3790
a61af66fc99e Initial load
duke
parents:
diff changeset
3791 signature.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3792 signature.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3793 signature.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3794 signature.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3795 signature.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3796 signature.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3797 signature.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3798 signature.cpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3799
a61af66fc99e Initial load
duke
parents:
diff changeset
3800 signature.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3801 signature.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3802 signature.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3803
a61af66fc99e Initial load
duke
parents:
diff changeset
3804 sizes.cpp sizes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3805
a61af66fc99e Initial load
duke
parents:
diff changeset
3806 sizes.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3807 sizes.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3808
1716
be3f9c242c9d 6948538: CMS: BOT walkers can fall into object allocation and initialization cracks
ysr
parents: 1681
diff changeset
3809 space.cpp blockOffsetTable.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3810 space.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3811 space.cpp defNewGeneration.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3812 space.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3813 space.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3814 space.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3815 space.cpp liveRange.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3816 space.cpp markSweep.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3817 space.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3818 space.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3819 space.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3820 space.cpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3821 space.cpp space.inline.hpp
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
3822 space.cpp spaceDecorator.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3823 space.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3824 space.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3825 space.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3826
a61af66fc99e Initial load
duke
parents:
diff changeset
3827 space.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3828 space.hpp blockOffsetTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3829 space.hpp cardTableModRefBS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3830 space.hpp iterator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3831 space.hpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3832 space.hpp memRegion.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3833 space.hpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3834 space.hpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3835 space.hpp prefetch.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3836 space.hpp watermark.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3837 space.hpp workgroup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3838
a61af66fc99e Initial load
duke
parents:
diff changeset
3839 space.inline.hpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3840 space.inline.hpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3841 space.inline.hpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3842 space.inline.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3843
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
3844 spaceDecorator.hpp globalDefinitions.hpp
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
3845 spaceDecorator.hpp mutableSpace.hpp
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
3846 spaceDecorator.hpp space.hpp
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
3847
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
3848 spaceDecorator.cpp copy.hpp
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
3849 spaceDecorator.cpp spaceDecorator.hpp
528
37b3ca071522 6793825: Missing include dependancies for GCC without predefined headers
coleenp
parents: 467
diff changeset
3850 spaceDecorator.cpp space.inline.hpp
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 164
diff changeset
3851
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3852 specialized_oop_closures.cpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3853 specialized_oop_closures.cpp specialized_oop_closures.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3854
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
3855 specialized_oop_closures.hpp atomic.hpp
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
3856
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
3857 stack.hpp allocation.inline.hpp
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
3858
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
3859 stack.inline.hpp stack.hpp
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
3860
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3861 stackMapFrame.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3862 stackMapFrame.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3863 stackMapFrame.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3864 stackMapFrame.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3865 stackMapFrame.cpp stackMapFrame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3866 stackMapFrame.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3867 stackMapFrame.cpp verifier.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3868
a61af66fc99e Initial load
duke
parents:
diff changeset
3869 stackMapFrame.hpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3870 stackMapFrame.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3871 stackMapFrame.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3872 stackMapFrame.hpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3873 stackMapFrame.hpp verificationType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3874 stackMapFrame.hpp verifier.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3875
a61af66fc99e Initial load
duke
parents:
diff changeset
3876 stackMapTable.cpp fieldType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3877 stackMapTable.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3878 stackMapTable.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3879 stackMapTable.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3880 stackMapTable.cpp stackMapTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3881 stackMapTable.cpp verifier.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3882
a61af66fc99e Initial load
duke
parents:
diff changeset
3883 stackMapTable.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3884 stackMapTable.hpp bytes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3885 stackMapTable.hpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3886 stackMapTable.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3887 stackMapTable.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3888 stackMapTable.hpp stackMapFrame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3889
a61af66fc99e Initial load
duke
parents:
diff changeset
3890 stackValue.cpp debugInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3891 stackValue.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3892 stackValue.cpp handles.inline.hpp
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 726
diff changeset
3893 stackValue.cpp oop.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3894 stackValue.cpp stackValue.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3895
a61af66fc99e Initial load
duke
parents:
diff changeset
3896 stackValue.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3897 stackValue.hpp location.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3898 stackValue.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3899
a61af66fc99e Initial load
duke
parents:
diff changeset
3900 stackValueCollection.cpp jniTypes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3901 stackValueCollection.cpp stackValueCollection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3902
a61af66fc99e Initial load
duke
parents:
diff changeset
3903 stackValueCollection.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3904 stackValueCollection.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3905 stackValueCollection.hpp stackValue.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3906
a61af66fc99e Initial load
duke
parents:
diff changeset
3907 statSampler.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3908 statSampler.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3909 statSampler.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3910 statSampler.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3911 statSampler.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3912 statSampler.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3913 statSampler.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3914 statSampler.cpp statSampler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3915 statSampler.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3916 statSampler.cpp vmSymbols.hpp
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
3917 statSampler.cpp vm_version_<arch>.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3918
a61af66fc99e Initial load
duke
parents:
diff changeset
3919 statSampler.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3920 statSampler.hpp task.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3921
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
3922 stubCodeGenerator.cpp assembler_<arch>.inline.hpp
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
3923 stubCodeGenerator.cpp disassembler.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3924 stubCodeGenerator.cpp forte.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3925 stubCodeGenerator.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3926 stubCodeGenerator.cpp stubCodeGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3927
a61af66fc99e Initial load
duke
parents:
diff changeset
3928 stubCodeGenerator.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3929 stubCodeGenerator.hpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3930
a61af66fc99e Initial load
duke
parents:
diff changeset
3931 stubGenerator_<arch_model>.cpp assembler.hpp
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
3932 stubGenerator_<arch_model>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3933 stubGenerator_<arch_model>.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3934 stubGenerator_<arch_model>.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3935 stubGenerator_<arch_model>.cpp instanceOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3936 stubGenerator_<arch_model>.cpp interpreter.hpp
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 671
diff changeset
3937 stubGenerator_<arch_model>.cpp methodHandles.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3938 stubGenerator_<arch_model>.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3939 stubGenerator_<arch_model>.cpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3940 stubGenerator_<arch_model>.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3941 stubGenerator_<arch_model>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3942 stubGenerator_<arch_model>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3943 stubGenerator_<arch_model>.cpp stubCodeGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3944 stubGenerator_<arch_model>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3945 stubGenerator_<arch_model>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3946 stubGenerator_<arch_model>.cpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3947
a61af66fc99e Initial load
duke
parents:
diff changeset
3948 stubRoutines.cpp codeBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3949 stubRoutines.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3950 stubRoutines.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3951 stubRoutines.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3952 stubRoutines.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3953 stubRoutines.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3954 stubRoutines.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3955 stubRoutines.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3956
a61af66fc99e Initial load
duke
parents:
diff changeset
3957 stubRoutines.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3958 stubRoutines.hpp codeBlob.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3959 stubRoutines.hpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3960 stubRoutines.hpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3961 stubRoutines.hpp nativeInst_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3962 stubRoutines.hpp stubCodeGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3963 stubRoutines.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3964
a61af66fc99e Initial load
duke
parents:
diff changeset
3965 stubRoutines_<arch_model>.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3966 stubRoutines_<arch_model>.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3967 stubRoutines_<arch_model>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3968 stubRoutines_<arch_model>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3969
a61af66fc99e Initial load
duke
parents:
diff changeset
3970 stubRoutines_<arch_model>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
3971
a61af66fc99e Initial load
duke
parents:
diff changeset
3972 stubRoutines_<os_family>.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3973 stubRoutines_<os_family>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3974
a61af66fc99e Initial load
duke
parents:
diff changeset
3975 stubs.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3976 stubs.cpp codeBlob.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3977 stubs.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3978 stubs.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3979 stubs.cpp stubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3980
a61af66fc99e Initial load
duke
parents:
diff changeset
3981 stubs.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3982 stubs.hpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3983
a61af66fc99e Initial load
duke
parents:
diff changeset
3984 sweeper.cpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3985 sweeper.cpp codeCache.hpp
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1189
diff changeset
3986 sweeper.cpp compileBroker.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3987 sweeper.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3988 sweeper.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3989 sweeper.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3990 sweeper.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3991 sweeper.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3992 sweeper.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3993 sweeper.cpp sweeper.hpp
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1189
diff changeset
3994 sweeper.cpp vm_operations.hpp
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1189
diff changeset
3995 sweeper.cpp xmlstream.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3996
a61af66fc99e Initial load
duke
parents:
diff changeset
3997 symbolKlass.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3998 symbolKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
3999 symbolKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4000 symbolKlass.cpp symbolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4001 symbolKlass.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4002 symbolKlass.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4003
a61af66fc99e Initial load
duke
parents:
diff changeset
4004 symbolKlass.hpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4005
a61af66fc99e Initial load
duke
parents:
diff changeset
4006 symbolOop.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4007 symbolOop.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4008
a61af66fc99e Initial load
duke
parents:
diff changeset
4009 symbolOop.hpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4010 symbolOop.hpp utf8.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4011
a61af66fc99e Initial load
duke
parents:
diff changeset
4012 symbolTable.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4013 symbolTable.cpp filemap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4014 symbolTable.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4015 symbolTable.cpp hashtable.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4016 symbolTable.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4017 symbolTable.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4018 symbolTable.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4019 symbolTable.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4020 symbolTable.cpp symbolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4021 symbolTable.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4022 symbolTable.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4023
a61af66fc99e Initial load
duke
parents:
diff changeset
4024 symbolTable.hpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4025 symbolTable.hpp hashtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4026 symbolTable.hpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4027
a61af66fc99e Initial load
duke
parents:
diff changeset
4028 synchronizer.cpp biasedLocking.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4029 synchronizer.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4030 synchronizer.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4031 synchronizer.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4032 synchronizer.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4033 synchronizer.cpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4034 synchronizer.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4035 synchronizer.cpp objectMonitor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4036 synchronizer.cpp objectMonitor.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4037 synchronizer.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4038 synchronizer.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4039 synchronizer.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4040 synchronizer.cpp preserveException.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4041 synchronizer.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4042 synchronizer.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4043 synchronizer.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4044 synchronizer.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4045 synchronizer.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4046 synchronizer.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4047
a61af66fc99e Initial load
duke
parents:
diff changeset
4048 synchronizer.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4049 synchronizer.hpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4050 synchronizer.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4051 synchronizer.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4052
a61af66fc99e Initial load
duke
parents:
diff changeset
4053 systemDictionary.cpp biasedLocking.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4054 systemDictionary.cpp bytecodeStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4055 systemDictionary.cpp classLoadingService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4056 systemDictionary.cpp dictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4057 systemDictionary.cpp fieldType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4058 systemDictionary.cpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4059 systemDictionary.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4060 systemDictionary.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4061 systemDictionary.cpp instanceRefKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4062 systemDictionary.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4063 systemDictionary.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4064 systemDictionary.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4065 systemDictionary.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4066 systemDictionary.cpp jvmtiEnvBase.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4067 systemDictionary.cpp klass.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4068 systemDictionary.cpp loaderConstraints.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4069 systemDictionary.cpp methodDataOop.hpp
1507
cd5dbf694d45 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 1330
diff changeset
4070 systemDictionary.cpp methodHandles.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4071 systemDictionary.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4072 systemDictionary.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4073 systemDictionary.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4074 systemDictionary.cpp oop.inline2.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4075 systemDictionary.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4076 systemDictionary.cpp placeholders.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4077 systemDictionary.cpp resolutionErrors.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4078 systemDictionary.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4079 systemDictionary.cpp systemDictionary.hpp
875
6a93908f268f 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 726
diff changeset
4080 systemDictionary.cpp threadService.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4081 systemDictionary.cpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4082 systemDictionary.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4083
a61af66fc99e Initial load
duke
parents:
diff changeset
4084 systemDictionary.hpp classFileStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4085 systemDictionary.hpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4086 systemDictionary.hpp hashtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4087 systemDictionary.hpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4088 systemDictionary.hpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4089 systemDictionary.hpp reflectionUtils.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4090 systemDictionary.hpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4091
a61af66fc99e Initial load
duke
parents:
diff changeset
4092 task.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4093 task.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4094 task.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4095 task.cpp task.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4096 task.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4097 task.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4098
a61af66fc99e Initial load
duke
parents:
diff changeset
4099 task.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4100
a61af66fc99e Initial load
duke
parents:
diff changeset
4101 taskqueue.cpp debug.hpp
1311
2a1472c30599 4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents: 1286
diff changeset
4102 taskqueue.cpp oop.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4103 taskqueue.cpp os.hpp
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
4104 taskqueue.cpp stack.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4105 taskqueue.cpp taskqueue.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4106 taskqueue.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4107
a61af66fc99e Initial load
duke
parents:
diff changeset
4108 taskqueue.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4109 taskqueue.hpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4110 taskqueue.hpp mutex.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4111 taskqueue.hpp orderAccess_<os_arch>.inline.hpp
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1833
diff changeset
4112 taskqueue.hpp stack.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4113
a61af66fc99e Initial load
duke
parents:
diff changeset
4114 templateInterpreter.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4115 templateInterpreter.cpp interpreterGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4116 templateInterpreter.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4117 templateInterpreter.cpp templateTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4118
a61af66fc99e Initial load
duke
parents:
diff changeset
4119 templateInterpreter.hpp abstractInterpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4120 templateInterpreter.hpp templateTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4121
a61af66fc99e Initial load
duke
parents:
diff changeset
4122 templateInterpreter_<arch_model>.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4123 templateInterpreter_<arch_model>.cpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4124 templateInterpreter_<arch_model>.cpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4125 templateInterpreter_<arch_model>.cpp bytecodeHistogram.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4126 templateInterpreter_<arch_model>.cpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4127 templateInterpreter_<arch_model>.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4128 templateInterpreter_<arch_model>.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4129 templateInterpreter_<arch_model>.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4130 templateInterpreter_<arch_model>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4131 templateInterpreter_<arch_model>.cpp interpreterGenerator.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4132 templateInterpreter_<arch_model>.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4133 templateInterpreter_<arch_model>.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4134 templateInterpreter_<arch_model>.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4135 templateInterpreter_<arch_model>.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4136 templateInterpreter_<arch_model>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4137 templateInterpreter_<arch_model>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4138 templateInterpreter_<arch_model>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4139 templateInterpreter_<arch_model>.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4140 templateInterpreter_<arch_model>.cpp templateTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4141 templateInterpreter_<arch_model>.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4142 templateInterpreter_<arch_model>.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4143
a61af66fc99e Initial load
duke
parents:
diff changeset
4144 templateInterpreter_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
4145
a61af66fc99e Initial load
duke
parents:
diff changeset
4146 templateInterpreterGenerator_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
4147
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
4148 templateTable.cpp collectedHeap.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4149 templateTable.cpp templateTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4150 templateTable.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4151
a61af66fc99e Initial load
duke
parents:
diff changeset
4152 templateTable.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4153 templateTable.hpp bytecodes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4154 templateTable.hpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4155 templateTable.hpp interp_masm_<arch_model>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4156
a61af66fc99e Initial load
duke
parents:
diff changeset
4157 templateTable_<arch_model>.cpp interpreterRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4158 templateTable_<arch_model>.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4159 templateTable_<arch_model>.cpp methodDataOop.hpp
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 710
diff changeset
4160 templateTable_<arch_model>.cpp methodHandles.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4161 templateTable_<arch_model>.cpp objArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4162 templateTable_<arch_model>.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4163 templateTable_<arch_model>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4164 templateTable_<arch_model>.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4165 templateTable_<arch_model>.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4166 templateTable_<arch_model>.cpp templateTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4167 templateTable_<arch_model>.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4168
a61af66fc99e Initial load
duke
parents:
diff changeset
4169 templateTable_<arch_model>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
4170
a61af66fc99e Initial load
duke
parents:
diff changeset
4171 tenuredGeneration.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4172 tenuredGeneration.cpp blockOffsetTable.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4173 tenuredGeneration.cpp collectorCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4174 tenuredGeneration.cpp generation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4175 tenuredGeneration.cpp generationSpec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4176 tenuredGeneration.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4177 tenuredGeneration.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4178 tenuredGeneration.cpp parGCAllocBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4179 tenuredGeneration.cpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4180 tenuredGeneration.cpp tenuredGeneration.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4181
a61af66fc99e Initial load
duke
parents:
diff changeset
4182 tenuredGeneration.hpp cSpaceCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4183 tenuredGeneration.hpp gcStats.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4184 tenuredGeneration.hpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4185 tenuredGeneration.hpp generationCounters.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4186
a61af66fc99e Initial load
duke
parents:
diff changeset
4187 thread.cpp aprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4188 thread.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4189 thread.cpp attachListener.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4190 thread.cpp biasedLocking.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4191 thread.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4192 thread.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4193 thread.cpp defaultStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4194 thread.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4195 thread.cpp dtrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4196 thread.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4197 thread.cpp fprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4198 thread.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4199 thread.cpp gcTaskManager.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4200 thread.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4201 thread.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4202 thread.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4203 thread.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4204 thread.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4205 thread.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4206 thread.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4207 thread.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4208 thread.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4209 thread.cpp jniPeriodicChecker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4210 thread.cpp jvm_misc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4211 thread.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4212 thread.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4213 thread.cpp linkResolver.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4214 thread.cpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4215 thread.cpp memprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4216 thread.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4217 thread.cpp objArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4218 thread.cpp objectMonitor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4219 thread.cpp objectMonitor.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4220 thread.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4221 thread.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4222 thread.cpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4223 thread.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4224 thread.cpp preserveException.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4225 thread.cpp privilegedStack.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4226 thread.cpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4227 thread.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4228 thread.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4229 thread.cpp statSampler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4230 thread.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4231 thread.cpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4232 thread.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4233 thread.cpp task.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4234 thread.cpp threadCritical.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4235 thread.cpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4236 thread.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4237 thread.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4238 thread.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4239 thread.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4240 thread.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4241 thread.cpp vframe_hp.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4242 thread.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4243 thread.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4244 thread.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4245
a61af66fc99e Initial load
duke
parents:
diff changeset
4246 thread.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4247 thread.hpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4248 thread.hpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4249 thread.hpp javaFrameAnchor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4250 thread.hpp jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
4251 thread.hpp jniHandles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4252 thread.hpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4253 thread.hpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4254 thread.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4255 thread.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4256 thread.hpp osThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4257 thread.hpp safepoint.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4258 thread.hpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4259 thread.hpp threadLocalAllocBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4260 thread.hpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4261 thread.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4262 thread.hpp unhandledOops.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4263
a61af66fc99e Initial load
duke
parents:
diff changeset
4264 thread_<os_arch>.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4265 thread_<os_arch>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4266
a61af66fc99e Initial load
duke
parents:
diff changeset
4267 thread_<os_arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
4268
a61af66fc99e Initial load
duke
parents:
diff changeset
4269 thread_<os_family>.inline.hpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4270 thread_<os_family>.inline.hpp atomic_<os_arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4271 thread_<os_family>.inline.hpp orderAccess_<os_arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4272 thread_<os_family>.inline.hpp prefetch.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4273 thread_<os_family>.inline.hpp prefetch_<os_arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4274 thread_<os_family>.inline.hpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4275 thread_<os_family>.inline.hpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4276
a61af66fc99e Initial load
duke
parents:
diff changeset
4277 threadCritical.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4278
a61af66fc99e Initial load
duke
parents:
diff changeset
4279 threadCritical_<os_family>.cpp threadCritical.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4280 threadCritical_<os_family>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4281
a61af66fc99e Initial load
duke
parents:
diff changeset
4282 threadLS_<os_arch>.cpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4283 threadLS_<os_arch>.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4284
a61af66fc99e Initial load
duke
parents:
diff changeset
4285 threadLS_<os_arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
4286
a61af66fc99e Initial load
duke
parents:
diff changeset
4287 threadLocalAllocBuffer.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4288 threadLocalAllocBuffer.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4289 threadLocalAllocBuffer.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4290 threadLocalAllocBuffer.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4291 threadLocalAllocBuffer.cpp threadLocalAllocBuffer.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4292 threadLocalAllocBuffer.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4293 threadLocalAllocBuffer.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4294
a61af66fc99e Initial load
duke
parents:
diff changeset
4295 threadLocalAllocBuffer.hpp gcUtil.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4296 threadLocalAllocBuffer.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4297 threadLocalAllocBuffer.hpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4298
a61af66fc99e Initial load
duke
parents:
diff changeset
4299 threadLocalAllocBuffer.inline.hpp atomic.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4300 threadLocalAllocBuffer.inline.hpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4301 threadLocalAllocBuffer.inline.hpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4302 threadLocalAllocBuffer.inline.hpp threadLocalAllocBuffer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4303
a61af66fc99e Initial load
duke
parents:
diff changeset
4304 threadLocalStorage.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4305 threadLocalStorage.cpp threadLocalStorage.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4306 threadLocalStorage.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4307
a61af66fc99e Initial load
duke
parents:
diff changeset
4308 threadLocalStorage.hpp gcUtil.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4309 threadLocalStorage.hpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4310 threadLocalStorage.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4311
a61af66fc99e Initial load
duke
parents:
diff changeset
4312 threadService.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4313 threadService.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4314 threadService.cpp heapInspection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4315 threadService.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4316 threadService.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4317 threadService.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4318 threadService.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4319 threadService.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4320 threadService.cpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4321 threadService.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4322 threadService.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4323 threadService.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4324 threadService.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4325
a61af66fc99e Initial load
duke
parents:
diff changeset
4326 threadService.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4327 threadService.hpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4328 threadService.hpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4329 threadService.hpp jniHandles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4330 threadService.hpp management.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4331 threadService.hpp objectMonitor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4332 threadService.hpp objectMonitor.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4333 threadService.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4334 threadService.hpp serviceUtil.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4335
a61af66fc99e Initial load
duke
parents:
diff changeset
4336 timer.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4337 timer.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4338 timer.cpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4339 timer.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4340
a61af66fc99e Initial load
duke
parents:
diff changeset
4341 timer.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4342
a61af66fc99e Initial load
duke
parents:
diff changeset
4343 top.hpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4344 top.hpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4345 top.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4346 top.hpp globals.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4347 top.hpp macros.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4348 top.hpp oopsHierarchy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4349 top.hpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4350 top.hpp sizes.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4351
a61af66fc99e Initial load
duke
parents:
diff changeset
4352 typeArrayKlass.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4353 typeArrayKlass.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4354 typeArrayKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4355 typeArrayKlass.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4356 typeArrayKlass.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4357 typeArrayKlass.cpp objArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4358 typeArrayKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4359 typeArrayKlass.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4360 typeArrayKlass.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4361 typeArrayKlass.cpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4362 typeArrayKlass.cpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4363 typeArrayKlass.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4364 typeArrayKlass.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4365 typeArrayKlass.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4366
a61af66fc99e Initial load
duke
parents:
diff changeset
4367 typeArrayKlass.hpp arrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4368
a61af66fc99e Initial load
duke
parents:
diff changeset
4369 typeArrayKlassKlass.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4370 typeArrayKlassKlass.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4371 typeArrayKlassKlass.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4372 typeArrayKlassKlass.cpp typeArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4373
a61af66fc99e Initial load
duke
parents:
diff changeset
4374 typeArrayKlassKlass.hpp arrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4375 typeArrayKlassKlass.hpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4376
a61af66fc99e Initial load
duke
parents:
diff changeset
4377 typeArrayOop.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4378 typeArrayOop.cpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4379
a61af66fc99e Initial load
duke
parents:
diff changeset
4380 typeArrayOop.hpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4381 typeArrayOop.hpp orderAccess_<os_arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4382 typeArrayOop.hpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4383
a61af66fc99e Initial load
duke
parents:
diff changeset
4384 unhandledOops.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4385 unhandledOops.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4386 unhandledOops.cpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4387 unhandledOops.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4388 unhandledOops.cpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4389 unhandledOops.cpp unhandledOops.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4390 unhandledOops.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4391
a61af66fc99e Initial load
duke
parents:
diff changeset
4392 universe.cpp aprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4393 universe.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4394 universe.cpp arrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4395 universe.cpp cardTableModRefBS.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4396 universe.cpp classLoader.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4397 universe.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4398 universe.cpp collectedHeap.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4399 universe.cpp compiledICHolderKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4400 universe.cpp constMethodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4401 universe.cpp constantPoolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4402 universe.cpp constantPoolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4403 universe.cpp copy.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4404 universe.cpp cpCacheKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4405 universe.cpp cpCacheOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4406 universe.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4407 universe.cpp dependencies.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4408 universe.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4409 universe.cpp filemap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4410 universe.cpp fprofiler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4411 universe.cpp gcLocker.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4412 universe.cpp genCollectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4413 universe.cpp genRemSet.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4414 universe.cpp generation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4415 universe.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4416 universe.cpp hashtable.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4417 universe.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4418 universe.cpp instanceKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4419 universe.cpp instanceRefKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4420 universe.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4421 universe.cpp java.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4422 universe.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4423 universe.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4424 universe.cpp jvmtiRedefineClassesTrace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4425 universe.cpp klassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4426 universe.cpp klassOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4427 universe.cpp memoryService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4428 universe.cpp methodDataKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4429 universe.cpp methodKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4430 universe.cpp objArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4431 universe.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4432 universe.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4433 universe.cpp permGen.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4434 universe.cpp preserveException.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4435 universe.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4436 universe.cpp space.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4437 universe.cpp symbolKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4438 universe.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4439 universe.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4440 universe.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4441 universe.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4442 universe.cpp timer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4443 universe.cpp typeArrayKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4444 universe.cpp typeArrayKlassKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4445 universe.cpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4446 universe.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4447 universe.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4448 universe.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4449
a61af66fc99e Initial load
duke
parents:
diff changeset
4450 universe.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4451 universe.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4452
a61af66fc99e Initial load
duke
parents:
diff changeset
4453 universe.inline.hpp universe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4454
a61af66fc99e Initial load
duke
parents:
diff changeset
4455 unsafe.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4456 unsafe.cpp copy.hpp
1324
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1286
diff changeset
4457 unsafe.cpp dtrace.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4458 unsafe.cpp globals.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4459 unsafe.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4460 unsafe.cpp jni.h
a61af66fc99e Initial load
duke
parents:
diff changeset
4461 unsafe.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
4462 unsafe.cpp reflection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4463 unsafe.cpp reflectionCompat.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4464 unsafe.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4465 unsafe.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4466 unsafe.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4467
a61af66fc99e Initial load
duke
parents:
diff changeset
4468 utf8.cpp utf8.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4469
a61af66fc99e Initial load
duke
parents:
diff changeset
4470 utf8.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4471 utf8.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4472
a61af66fc99e Initial load
duke
parents:
diff changeset
4473 verificationType.cpp symbolTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4474 verificationType.cpp verificationType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4475
a61af66fc99e Initial load
duke
parents:
diff changeset
4476 verificationType.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4477 verificationType.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4478 verificationType.hpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4479 verificationType.hpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4480 verificationType.hpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4481 verificationType.hpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4482 verificationType.hpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4483
a61af66fc99e Initial load
duke
parents:
diff changeset
4484 verifier.cpp bytecodeStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4485 verifier.cpp bytes_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4486 verifier.cpp classFileStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4487 verifier.cpp fieldDescriptor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4488 verifier.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4489 verifier.cpp hpi.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4490 verifier.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4491 verifier.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4492 verifier.cpp javaCalls.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4493 verifier.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4494 verifier.cpp jvm.h
a61af66fc99e Initial load
duke
parents:
diff changeset
4495 verifier.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4496 verifier.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4497 verifier.cpp orderAccess.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4498 verifier.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4499 verifier.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4500 verifier.cpp stackMapTable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4501 verifier.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4502 verifier.cpp typeArrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4503 verifier.cpp verifier.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4504 verifier.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4505
a61af66fc99e Initial load
duke
parents:
diff changeset
4506 verifier.hpp exceptions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4507 verifier.hpp gcLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4508 verifier.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4509 verifier.hpp klass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4510 verifier.hpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4511 verifier.hpp verificationType.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4512
a61af66fc99e Initial load
duke
parents:
diff changeset
4513 vframe.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4514 vframe.cpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4515 vframe.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4516 vframe.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4517 vframe.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4518 vframe.cpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4519 vframe.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4520 vframe.cpp objectMonitor.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4521 vframe.cpp objectMonitor.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4522 vframe.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4523 vframe.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4524 vframe.cpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4525 vframe.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4526 vframe.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4527 vframe.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4528 vframe.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4529 vframe.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4530 vframe.cpp systemDictionary.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4531 vframe.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4532 vframe.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4533 vframe.cpp vframe_hp.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4534 vframe.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4535
a61af66fc99e Initial load
duke
parents:
diff changeset
4536 vframe.hpp debugInfo.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4537 vframe.hpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4538 vframe.hpp frame.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4539 vframe.hpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4540 vframe.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4541 vframe.hpp location.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4542 vframe.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4543 vframe.hpp stackValue.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4544 vframe.hpp stackValueCollection.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4545
a61af66fc99e Initial load
duke
parents:
diff changeset
4546 vframeArray.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4547 vframeArray.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4548 vframeArray.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4549 vframeArray.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4550 vframeArray.cpp jvmtiThreadState.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4551 vframeArray.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4552 vframeArray.cpp monitorChunk.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4553 vframeArray.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4554 vframeArray.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4555 vframeArray.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4556 vframeArray.cpp universe.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4557 vframeArray.cpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4558 vframeArray.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4559 vframeArray.cpp vframe_hp.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4560 vframeArray.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4561
a61af66fc99e Initial load
duke
parents:
diff changeset
4562 vframeArray.hpp arrayOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4563 vframeArray.hpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4564 vframeArray.hpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4565 vframeArray.hpp growableArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4566 vframeArray.hpp monitorChunk.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4567
a61af66fc99e Initial load
duke
parents:
diff changeset
4568 vframe_hp.cpp codeCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4569 vframe_hp.cpp debugInfoRec.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4570 vframe_hp.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4571 vframe_hp.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4572 vframe_hp.cpp interpreter.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4573 vframe_hp.cpp monitorChunk.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4574 vframe_hp.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4575 vframe_hp.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4576 vframe_hp.cpp oopMapCache.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4577 vframe_hp.cpp pcDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4578 vframe_hp.cpp scopeDesc.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4579 vframe_hp.cpp signature.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4580 vframe_hp.cpp stubRoutines.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4581 vframe_hp.cpp synchronizer.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4582 vframe_hp.cpp vframeArray.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4583 vframe_hp.cpp vframe_hp.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4584
a61af66fc99e Initial load
duke
parents:
diff changeset
4585 vframe_hp.hpp vframe.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4586
a61af66fc99e Initial load
duke
parents:
diff changeset
4587 virtualspace.cpp markOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4588 virtualspace.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4589 virtualspace.cpp os_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4590 virtualspace.cpp virtualspace.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4591
a61af66fc99e Initial load
duke
parents:
diff changeset
4592 virtualspace.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4593
a61af66fc99e Initial load
duke
parents:
diff changeset
4594 vmError.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4595 vmError.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4596 vmError.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4597 vmError.cpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4598 vmError.cpp defaultStream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4599 vmError.cpp frame.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4600 vmError.cpp init.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4601 vmError.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4602 vmError.cpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4603 vmError.cpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4604 vmError.cpp vmError.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4605 vmError.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4606 vmError.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4607
a61af66fc99e Initial load
duke
parents:
diff changeset
4608 vmError.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4609
a61af66fc99e Initial load
duke
parents:
diff changeset
4610 vmError_<os_family>.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4611 vmError_<os_family>.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4612 vmError_<os_family>.cpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4613 vmError_<os_family>.cpp vmError.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4614
a61af66fc99e Initial load
duke
parents:
diff changeset
4615 // vmStructs is jck optional, put cpp deps in includeDB_features
a61af66fc99e Initial load
duke
parents:
diff changeset
4616
a61af66fc99e Initial load
duke
parents:
diff changeset
4617 vmStructs.hpp debug.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4618
a61af66fc99e Initial load
duke
parents:
diff changeset
4619 vmSymbols.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4620 vmSymbols.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4621 vmSymbols.cpp oopFactory.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4622 vmSymbols.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4623 vmSymbols.cpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4624
a61af66fc99e Initial load
duke
parents:
diff changeset
4625 vmSymbols.hpp symbolOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4626
a61af66fc99e Initial load
duke
parents:
diff changeset
4627 vmThread.cpp collectedHeap.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4628 vmThread.cpp compileBroker.hpp
1324
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 1286
diff changeset
4629 vmThread.cpp dtrace.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4630 vmThread.cpp events.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4631 vmThread.cpp interfaceSupport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4632 vmThread.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4633 vmThread.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4634 vmThread.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4635 vmThread.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4636 vmThread.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4637 vmThread.cpp runtimeService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4638 vmThread.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4639 vmThread.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4640 vmThread.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4641 vmThread.cpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4642
a61af66fc99e Initial load
duke
parents:
diff changeset
4643 vmThread.hpp perfData.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4644 vmThread.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4645 vmThread.hpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4646
a61af66fc99e Initial load
duke
parents:
diff changeset
4647 vm_operations.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4648 vm_operations.cpp compileBroker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4649 vm_operations.cpp compilerOracle.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4650 vm_operations.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4651 vm_operations.cpp interfaceSupport.hpp
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 142
diff changeset
4652 vm_operations.cpp isGCActiveMark.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4653 vm_operations.cpp resourceArea.hpp
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 1189
diff changeset
4654 vm_operations.cpp sweeper.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4655 vm_operations.cpp threadService.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4656 vm_operations.cpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4657 vm_operations.cpp vmSymbols.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4658 vm_operations.cpp vm_operations.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4659
a61af66fc99e Initial load
duke
parents:
diff changeset
4660 vm_operations.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4661 vm_operations.hpp javaClasses.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4662 vm_operations.hpp oop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4663 vm_operations.hpp thread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4664 vm_operations.hpp top.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4665
a61af66fc99e Initial load
duke
parents:
diff changeset
4666 vm_version.cpp arguments.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4667 vm_version.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4668 vm_version.cpp universe.hpp
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4669 vm_version.cpp vm_version_<arch>.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4670
a61af66fc99e Initial load
duke
parents:
diff changeset
4671 vm_version.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4672 vm_version.hpp ostream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4673
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4674 vm_version_<arch>.cpp assembler_<arch>.inline.hpp
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4675 vm_version_<arch>.cpp java.hpp
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4676 vm_version_<arch>.cpp os_<os_family>.inline.hpp
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4677 vm_version_<arch>.cpp resourceArea.hpp
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4678 vm_version_<arch>.cpp stubCodeGenerator.hpp
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4679 vm_version_<arch>.cpp vm_version_<arch>.hpp
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4680
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4681 vm_version_<arch>.hpp globals_extension.hpp
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4682 vm_version_<arch>.hpp vm_version.hpp
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4683
641
6af0a709d52b 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 614
diff changeset
4684 vm_version_<os_arch>.cpp os.hpp
585
22e09c0f4b47 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 528
diff changeset
4685 vm_version_<os_arch>.cpp vm_version_<arch>.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4686
a61af66fc99e Initial load
duke
parents:
diff changeset
4687 vmreg.cpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4688 vmreg.cpp vmreg.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4689
a61af66fc99e Initial load
duke
parents:
diff changeset
4690 vmreg.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4691 vmreg.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4692 vmreg.hpp register_<arch>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4693
a61af66fc99e Initial load
duke
parents:
diff changeset
4694 vmreg_<arch>.cpp assembler.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4695 vmreg_<arch>.cpp vmreg.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4696
a61af66fc99e Initial load
duke
parents:
diff changeset
4697 vmreg_<arch>.hpp generate_platform_dependent_include
a61af66fc99e Initial load
duke
parents:
diff changeset
4698
a61af66fc99e Initial load
duke
parents:
diff changeset
4699 vtableStubs.cpp allocation.inline.hpp
100
c7c777385a15 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 52
diff changeset
4700 vtableStubs.cpp disassembler.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4701 vtableStubs.cpp forte.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4702 vtableStubs.cpp handles.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4703 vtableStubs.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4704 vtableStubs.cpp jvmtiExport.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4705 vtableStubs.cpp klassVtable.hpp
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 100
diff changeset
4706 vtableStubs.cpp oop.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4707 vtableStubs.cpp mutexLocker.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4708 vtableStubs.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4709 vtableStubs.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4710 vtableStubs.cpp vtableStubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4711
a61af66fc99e Initial load
duke
parents:
diff changeset
4712 vtableStubs.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4713
a61af66fc99e Initial load
duke
parents:
diff changeset
4714 vtableStubs_<arch_model>.cpp assembler.hpp
304
dc7f315e41f7 5108146: Merge i486 and amd64 cpu directories
never
parents: 270
diff changeset
4715 vtableStubs_<arch_model>.cpp assembler_<arch>.inline.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4716 vtableStubs_<arch_model>.cpp instanceKlass.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4717 vtableStubs_<arch_model>.cpp interp_masm_<arch_model>.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4718 vtableStubs_<arch_model>.cpp klassVtable.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4719 vtableStubs_<arch_model>.cpp resourceArea.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4720 vtableStubs_<arch_model>.cpp sharedRuntime.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4721 vtableStubs_<arch_model>.cpp vmreg_<arch>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4722 vtableStubs_<arch_model>.cpp vtableStubs.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4723
a61af66fc99e Initial load
duke
parents:
diff changeset
4724 watermark.hpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4725 watermark.hpp globalDefinitions.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4726
a61af66fc99e Initial load
duke
parents:
diff changeset
4727 workgroup.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4728 workgroup.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4729 workgroup.cpp os.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4730 workgroup.cpp workgroup.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4731
1833
8b10f48633dc 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 1716
diff changeset
4732 workgroup.hpp taskqueue.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4733 workgroup.hpp thread_<os_family>.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4734
a61af66fc99e Initial load
duke
parents:
diff changeset
4735 xmlstream.cpp allocation.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4736 xmlstream.cpp allocation.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4737 xmlstream.cpp deoptimization.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4738 xmlstream.cpp methodDataOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4739 xmlstream.cpp methodOop.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4740 xmlstream.cpp nmethod.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4741 xmlstream.cpp oop.inline.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4742 xmlstream.cpp vmThread.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4743 xmlstream.cpp xmlstream.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4744
a61af66fc99e Initial load
duke
parents:
diff changeset
4745 xmlstream.hpp handles.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
4746 xmlstream.hpp ostream.hpp