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