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