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