includeDB_core 225.1 KB
Newer Older
D
duke 已提交
1
//
2
// Copyright 1997-2010 Sun Microsystems, Inc.  All Rights Reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
//
// This code is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License version 2 only, as
// published by the Free Software Foundation.
//
// This code is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// version 2 for more details (a copy is included in the LICENSE file that
// accompanied this code).
//
// You should have received a copy of the GNU General Public License version
// 2 along with this work; if not, write to the Free Software Foundation,
// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
//
// Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
// CA 95054 USA or visit www.sun.com if you need additional information or
// have any questions.
22
//
D
duke 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
//

// NOTE: DO NOT CHANGE THIS COPYRIGHT TO NEW STYLE - IT WILL BREAK makeDeps!


// includeDB format:
// a comment starts with '// ' and goes to the end of the line
// anything else is a pair of filenames.  The line "x.cpp y.hpp" means
// "x.cpp must include y.hpp".  Similarly, "y.hpp z.hpp" means "any file including
// y.hpp must also include z.hpp, and z.hpp must be included before y.hpp".
//
// Style hint: we try to keep the entries ordered alphabetically, both
// globally (left-hand sides) and within a given file (right-hand sides)
//
// To avoid unnecessary conflicts with the work of other programmers,
// do not delete, move, or reformat pre-existing lines.  Do not attempt
// to "optimize" this file incrementally.
//
// ============ Platform dependent include files ===========
//
// Some header files occur in clusters.  Header files which depend
// on the token "generate_platform_dependent_include" are included
// directly by other header files, and should not be explicitly declared
// as dependencies.  Header files named H.inline.hpp generally contain
// bodies for inline functions declared in H.hpp.
//
49
// NOTE: Files that use the token "generate_platform_dependent_include"
D
duke 已提交
50 51
// are expected to contain macro references like <os>, <arch_model>, ... and
// makedeps has a dependency on these platform files looking like:
52
// foo_<macro>.trailing_string
D
duke 已提交
53 54
// (where "trailing_string" can be any legal filename strings but typically
// is "hpp" or "inline.hpp").
55
//
D
duke 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
// The dependency in makedeps (and enforced) is that an underscore
// will precedure the macro invocation. Note that this restriction
// is only enforced on filenames that have the dependency token
// "generate_platform_dependent_include" so other files using macro
// expansion (typically .cpp files) have no requirement to have
// an underscore precede the macro although this is encouraged for
// readibility.
//
// ======= Circular dependencies and inline functions ==========
//
// (Sometimes, circular dependencies prevent complex function bodies
// from being defined directly in H.hpp.  In such cases, a client S.cpp
// of H.hpp must always declare a dependency on H.inline.hpp, which in
// turn will declare a dependency on H.hpp.  If by some mischance S.cpp
// declares a dependency on H.hpp, the compiler may complain about missing
// inline function bodies, or (perhaps) the program may fail to link.
// The solution is to have S.cpp depend on H.inline.hpp instead of H.hpp.
//
// Generally, if in response to a source code change the compiler
// issues an error in a file F (which may be either a header or a
// source file), you should consider if the error arises from a missing
// class definition C.  If that is the case, find the header file H which
// contains C (often, H=C.hpp, but you may have to search for C's definition).
// Then, add a line to the includeDB file as appropriate.
//
//
// Here are some typical compiler errors that may require changes to includeDB.
// (Messages are taken from Sun's SPARC compiler.)
//
//   "klassVtable.cpp", line 96: Error: No_GC_Verifier is not defined.
// Source code:
//   No_GC_Verifier no_gc;
//
// The problem is that the class name No_GC_Verifier is not declared,
// so the compiler is confused by the syntax.  The solution:
//   klassVtable.cpp                    gcLocker.hpp
//
// Sometimes the compiler has only partial knowledge about a class:
//   "privilegedStack.cpp", line 60: Error: cast is not a member of instanceKlass.
// Source code:
//   if (_protection_domain != instanceKlass::cast(method->method_holder())->protection_domain()) return false;
//
// Here, instanceKlass is known to the compiler as a type, because of a
// forward declaration somewhere ("class instanceKlass;").  The problem
// is that the compiler has not seen the body of instanceKlass, and so it
// complains that it does not know about "instanceKlass::cast".  Solution:
//   privilegedStack.cpp             instanceKlass.hpp
//
// Here's another example of a missing declaration:
//   "privilegedStack.cpp", line 111: Error: The function AllocateHeap must have a prototype.
// Source code:
//   _array = NEW_C_HEAP_ARRAY(PrivilegedElement, initial_size);
//
// The problem is that the macro call expands to use a heap function
// which is defined (for technical reasons) in a different file.  Solution:
//   privilegedStack.cpp             allocation.inline.hpp
// The macro is defined in allocation.hpp, while the function is
// defined (as an inline) in allocation.inline.hpp.  Generally, if you
// find you need a header H.hpp, and there is also a header
// H.inline.hpp use the latter, because it contains inline definitions
// you will require.

abstractCompiler.cpp                    abstractCompiler.hpp
abstractCompiler.cpp                    mutexLocker.hpp

abstractCompiler.hpp                    compilerInterface.hpp

abstractInterpreter.hpp                 bytecodes.hpp
abstractInterpreter.hpp                 interp_masm_<arch_model>.hpp
abstractInterpreter.hpp                 stubs.hpp
abstractInterpreter.hpp                 thread_<os_family>.inline.hpp
abstractInterpreter.hpp                 top.hpp
abstractInterpreter.hpp                 vmThread.hpp

accessFlags.cpp                         accessFlags.hpp
accessFlags.cpp                         oop.inline.hpp
accessFlags.cpp                         os_<os_family>.inline.hpp

accessFlags.hpp                         jvm.h
accessFlags.hpp                         top.hpp

allocation.cpp                          allocation.hpp
allocation.cpp                          allocation.inline.hpp
allocation.cpp                          os.hpp
allocation.cpp                          os_<os_family>.inline.hpp
allocation.cpp                          ostream.hpp
allocation.cpp                          resourceArea.hpp
allocation.cpp                          task.hpp
allocation.cpp                          threadCritical.hpp

allocation.hpp                          globalDefinitions.hpp
allocation.hpp                          globals.hpp

allocation.inline.hpp                   os.hpp

aprofiler.cpp                           aprofiler.hpp
aprofiler.cpp                           collectedHeap.inline.hpp
aprofiler.cpp                           oop.inline.hpp
aprofiler.cpp                           oop.inline2.hpp
aprofiler.cpp                           permGen.hpp
aprofiler.cpp                           resourceArea.hpp
aprofiler.cpp                           space.hpp
aprofiler.cpp                           systemDictionary.hpp

aprofiler.hpp                           allocation.hpp
aprofiler.hpp                           klass.hpp
aprofiler.hpp                           klassOop.hpp
aprofiler.hpp                           top.hpp
aprofiler.hpp                           universe.hpp

arguments.cpp                           allocation.inline.hpp
arguments.cpp                           arguments.hpp
arguments.cpp                           cardTableRS.hpp
arguments.cpp                           compilerOracle.hpp
arguments.cpp                           defaultStream.hpp
arguments.cpp                           globals_extension.hpp
arguments.cpp                           java.hpp
arguments.cpp                           javaAssertions.hpp
arguments.cpp                           jvmtiExport.hpp
arguments.cpp                           management.hpp
arguments.cpp                           oop.inline.hpp
arguments.cpp                           os_<os_family>.inline.hpp
arguments.cpp                           universe.inline.hpp
179
arguments.cpp                           vm_version_<arch>.hpp
D
duke 已提交
180

K
kamg 已提交
181
arguments.hpp                           java.hpp
D
duke 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
arguments.hpp                           perfData.hpp
arguments.hpp                           top.hpp

array.cpp                               array.hpp
array.cpp                               resourceArea.hpp
array.cpp                               thread_<os_family>.inline.hpp

array.hpp                               allocation.hpp
array.hpp                               allocation.inline.hpp

arrayKlass.cpp                          arrayKlass.hpp
arrayKlass.cpp                          arrayKlassKlass.hpp
arrayKlass.cpp                          arrayOop.hpp
arrayKlass.cpp                          collectedHeap.inline.hpp
arrayKlass.cpp                          gcLocker.hpp
arrayKlass.cpp                          instanceKlass.hpp
arrayKlass.cpp                          javaClasses.hpp
arrayKlass.cpp                          jvmti.h
arrayKlass.cpp                          objArrayOop.hpp
arrayKlass.cpp                          oop.inline.hpp
arrayKlass.cpp                          systemDictionary.hpp
arrayKlass.cpp                          universe.inline.hpp
arrayKlass.cpp                          vmSymbols.hpp

arrayKlass.hpp                          klass.hpp
arrayKlass.hpp                          klassOop.hpp
arrayKlass.hpp                          klassVtable.hpp
arrayKlass.hpp                          universe.hpp

arrayKlassKlass.cpp                     arrayKlassKlass.hpp
arrayKlassKlass.cpp                     handles.inline.hpp
arrayKlassKlass.cpp                     javaClasses.hpp
214
arrayKlassKlass.cpp                     markSweep.inline.hpp
D
duke 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
arrayKlassKlass.cpp                     oop.inline.hpp

arrayKlassKlass.hpp                     arrayKlass.hpp
arrayKlassKlass.hpp                     klassKlass.hpp

arrayOop.cpp                            arrayOop.hpp
arrayOop.cpp                            objArrayOop.hpp
arrayOop.cpp                            oop.inline.hpp
arrayOop.cpp                            symbolOop.hpp

arrayOop.hpp                            oop.hpp
arrayOop.hpp                            universe.hpp
arrayOop.hpp                            universe.inline.hpp

assembler.cpp                           assembler.hpp
assembler.cpp                           assembler.inline.hpp
231
assembler.cpp                           assembler_<arch>.inline.hpp
D
duke 已提交
232 233 234 235 236 237 238 239 240 241 242 243
assembler.cpp                           codeBuffer.hpp
assembler.cpp                           icache.hpp
assembler.cpp                           os.hpp

assembler.hpp                           allocation.hpp
assembler.hpp                           allocation.inline.hpp
assembler.hpp                           debug.hpp
assembler.hpp                           growableArray.hpp
assembler.hpp                           oopRecorder.hpp
assembler.hpp                           register_<arch>.hpp
assembler.hpp                           relocInfo.hpp
assembler.hpp                           top.hpp
244
assembler.hpp                           vm_version_<arch>.hpp
D
duke 已提交
245 246 247

assembler.inline.hpp                    assembler.hpp
assembler.inline.hpp                    codeBuffer.hpp
248
assembler.inline.hpp                    disassembler.hpp
D
duke 已提交
249 250
assembler.inline.hpp                    threadLocalStorage.hpp

251 252 253 254 255 256
assembler_<arch>.cpp              assembler_<arch>.inline.hpp
assembler_<arch>.cpp              biasedLocking.hpp
assembler_<arch>.cpp              cardTableModRefBS.hpp
assembler_<arch>.cpp              collectedHeap.inline.hpp
assembler_<arch>.cpp              interfaceSupport.hpp
assembler_<arch>.cpp              interpreter.hpp
257
assembler_<arch>.cpp              methodHandles.hpp
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
assembler_<arch>.cpp              objectMonitor.hpp
assembler_<arch>.cpp              os.hpp
assembler_<arch>.cpp              resourceArea.hpp
assembler_<arch>.cpp              sharedRuntime.hpp
assembler_<arch>.cpp              stubRoutines.hpp

assembler_<arch>.hpp              generate_platform_dependent_include

assembler_<arch>.inline.hpp       assembler.inline.hpp
assembler_<arch>.inline.hpp       codeBuffer.hpp
assembler_<arch>.inline.hpp       codeCache.hpp
assembler_<arch>.inline.hpp       handles.inline.hpp

assembler_<os_arch>.cpp           assembler.hpp
assembler_<os_arch>.cpp           assembler_<arch>.inline.hpp
assembler_<os_arch>.cpp           os.hpp
assembler_<os_arch>.cpp           threadLocalStorage.hpp
D
duke 已提交
275 276 277 278 279 280 281 282 283

atomic.cpp                              atomic.hpp
atomic.cpp                              atomic_<os_arch>.inline.hpp
atomic.cpp                              os_<os_family>.inline.hpp

atomic.hpp                              allocation.hpp

atomic_<os_arch>.inline.hpp             atomic.hpp
atomic_<os_arch>.inline.hpp             os.hpp
284
atomic_<os_arch>.inline.hpp             vm_version_<arch>.hpp
D
duke 已提交
285 286 287 288 289 290 291

// attachListener is jck optional, put cpp deps in includeDB_features

attachListener.hpp                      allocation.hpp
attachListener.hpp                      debug.hpp
attachListener.hpp                      ostream.hpp

292
barrierSet.cpp				barrierSet.inline.hpp
293 294 295
barrierSet.cpp			        collectedHeap.hpp
barrierSet.cpp				universe.hpp

D
duke 已提交
296 297 298 299 300 301 302
barrierSet.hpp                          memRegion.hpp
barrierSet.hpp                          oopsHierarchy.hpp

barrierSet.inline.hpp                   barrierSet.hpp
barrierSet.inline.hpp                   cardTableModRefBS.hpp

bcEscapeAnalyzer.cpp                    bcEscapeAnalyzer.hpp
303
bcEscapeAnalyzer.cpp                    bitMap.inline.hpp
D
duke 已提交
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
bcEscapeAnalyzer.cpp                    bytecode.hpp
bcEscapeAnalyzer.cpp                    ciConstant.hpp
bcEscapeAnalyzer.cpp                    ciField.hpp
bcEscapeAnalyzer.cpp                    ciMethodBlocks.hpp
bcEscapeAnalyzer.cpp                    ciStreams.hpp

bcEscapeAnalyzer.hpp                    allocation.hpp
bcEscapeAnalyzer.hpp                    ciMethod.hpp
bcEscapeAnalyzer.hpp                    ciMethodData.hpp
bcEscapeAnalyzer.hpp                    dependencies.hpp
bcEscapeAnalyzer.hpp                    growableArray.hpp

biasedLocking.cpp                       biasedLocking.hpp
biasedLocking.cpp                       klass.inline.hpp
biasedLocking.cpp                       markOop.hpp
biasedLocking.cpp                       synchronizer.hpp
biasedLocking.cpp                       task.hpp
biasedLocking.cpp                       vframe.hpp
biasedLocking.cpp                       vmThread.hpp
biasedLocking.cpp                       vm_operations.hpp

biasedLocking.hpp                       growableArray.hpp
biasedLocking.hpp                       handles.hpp

328
bitMap.cpp                              allocation.inline.hpp
D
duke 已提交
329 330 331 332 333 334 335 336 337 338 339
bitMap.cpp                              bitMap.inline.hpp
bitMap.cpp                              copy.hpp
bitMap.cpp                              os_<os_family>.inline.hpp

bitMap.hpp                              allocation.hpp
bitMap.hpp                              top.hpp

bitMap.inline.hpp                       atomic.hpp
bitMap.inline.hpp                       bitMap.hpp

blockOffsetTable.cpp                    blockOffsetTable.inline.hpp
340
blockOffsetTable.cpp                    collectedHeap.inline.hpp
D
duke 已提交
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
blockOffsetTable.cpp                    iterator.hpp
blockOffsetTable.cpp                    java.hpp
blockOffsetTable.cpp                    oop.inline.hpp
blockOffsetTable.cpp                    space.hpp
blockOffsetTable.cpp                    universe.hpp

blockOffsetTable.hpp                    globalDefinitions.hpp
blockOffsetTable.hpp                    memRegion.hpp
blockOffsetTable.hpp                    virtualspace.hpp

blockOffsetTable.inline.hpp             blockOffsetTable.hpp
blockOffsetTable.inline.hpp             space.hpp

bytecode.cpp                            bytecode.hpp
bytecode.cpp                            constantPoolOop.hpp
bytecode.cpp                            fieldType.hpp
bytecode.cpp                            handles.inline.hpp
bytecode.cpp                            linkResolver.hpp
bytecode.cpp                            oop.inline.hpp
bytecode.cpp                            safepoint.hpp
bytecode.cpp                            signature.hpp

bytecode.hpp                            allocation.hpp
bytecode.hpp                            bytecodes.hpp
bytecode.hpp                            bytes_<arch>.hpp
bytecode.hpp                            methodOop.hpp

bytecodeHistogram.cpp                   bytecodeHistogram.hpp
bytecodeHistogram.cpp                   growableArray.hpp
bytecodeHistogram.cpp                   os.hpp
bytecodeHistogram.cpp                   resourceArea.hpp

bytecodeHistogram.hpp                   allocation.hpp
bytecodeHistogram.hpp                   bytecodes.hpp

bytecodeInterpreter.cpp                 no_precompiled_headers
bytecodeInterpreter.cpp                 bytecodeHistogram.hpp
bytecodeInterpreter.cpp                 bytecodeInterpreter.hpp
bytecodeInterpreter.cpp                 bytecodeInterpreter.inline.hpp
bytecodeInterpreter.cpp                 cardTableModRefBS.hpp
bytecodeInterpreter.cpp                 collectedHeap.hpp
bytecodeInterpreter.cpp                 exceptions.hpp
bytecodeInterpreter.cpp                 frame.inline.hpp
bytecodeInterpreter.cpp                 handles.inline.hpp
bytecodeInterpreter.cpp                 interfaceSupport.hpp
bytecodeInterpreter.cpp                 interpreterRuntime.hpp
bytecodeInterpreter.cpp                 interpreter.hpp
bytecodeInterpreter.cpp                 jvmtiExport.hpp
bytecodeInterpreter.cpp                 objArrayKlass.hpp
bytecodeInterpreter.cpp                 oop.inline.hpp
bytecodeInterpreter.cpp                 orderAccess_<os_arch>.inline.hpp
bytecodeInterpreter.cpp                 resourceArea.hpp
bytecodeInterpreter.cpp                 sharedRuntime.hpp
bytecodeInterpreter.cpp                 threadCritical.hpp
bytecodeInterpreter.cpp                 vmSymbols.hpp

bytecodeInterpreter_<arch>.cpp          assembler.hpp
bytecodeInterpreter_<arch>.cpp          bytecodeInterpreter.hpp
bytecodeInterpreter_<arch>.cpp          bytecodeInterpreter.inline.hpp
bytecodeInterpreter_<arch>.cpp          debug.hpp
bytecodeInterpreter_<arch>.cpp          deoptimization.hpp
bytecodeInterpreter_<arch>.cpp          frame.inline.hpp
bytecodeInterpreter_<arch>.cpp          interp_masm_<arch_model>.hpp
bytecodeInterpreter_<arch>.cpp          interpreterRuntime.hpp
bytecodeInterpreter_<arch>.cpp          interpreter.hpp
bytecodeInterpreter_<arch>.cpp          jvmtiExport.hpp
bytecodeInterpreter_<arch>.cpp          jvmtiThreadState.hpp
bytecodeInterpreter_<arch>.cpp          methodDataOop.hpp
bytecodeInterpreter_<arch>.cpp          methodOop.hpp
bytecodeInterpreter_<arch>.cpp          oop.inline.hpp
bytecodeInterpreter_<arch>.cpp          sharedRuntime.hpp
bytecodeInterpreter_<arch>.cpp          stubRoutines.hpp
bytecodeInterpreter_<arch>.cpp          synchronizer.hpp
bytecodeInterpreter_<arch>.cpp          vframeArray.hpp

bytecodeInterpreterWithChecks.cpp       bytecodeInterpreter.cpp

bytecodeInterpreter.hpp                 allocation.hpp
bytecodeInterpreter.hpp                 bytes_<arch>.hpp
bytecodeInterpreter.hpp                 frame.hpp
bytecodeInterpreter.hpp                 globalDefinitions.hpp
bytecodeInterpreter.hpp                 globals.hpp
bytecodeInterpreter.hpp                 methodDataOop.hpp
bytecodeInterpreter.hpp                 methodOop.hpp
bytecodeInterpreter.hpp                 synchronizer.hpp

bytecodeInterpreter.inline.hpp          bytecodeInterpreter.hpp
bytecodeInterpreter.inline.hpp          stubRoutines.hpp

bytecodeInterpreter_<arch>.hpp          generate_platform_dependent_include

bytecodeInterpreter_<arch>.inline.hpp   generate_platform_dependent_include

bytecodeStream.cpp                      bytecodeStream.hpp
bytecodeStream.cpp                      bytecodes.hpp

bytecodeStream.hpp                      allocation.hpp
bytecodeStream.hpp                      bytecode.hpp
bytecodeStream.hpp                      bytes_<arch>.hpp
bytecodeStream.hpp                      methodOop.hpp

bytecodeTracer.cpp                      bytecodeHistogram.hpp
bytecodeTracer.cpp                      bytecodeTracer.hpp
bytecodeTracer.cpp                      bytecodes.hpp
bytecodeTracer.cpp                      interpreter.hpp
bytecodeTracer.cpp                      interpreterRuntime.hpp
bytecodeTracer.cpp                      methodDataOop.hpp
bytecodeTracer.cpp                      methodOop.hpp
bytecodeTracer.cpp                      mutexLocker.hpp
bytecodeTracer.cpp                      resourceArea.hpp
bytecodeTracer.cpp                      timer.hpp

bytecodeTracer.hpp                      allocation.hpp

bytecodes.cpp                           bytecodes.hpp
bytecodes.cpp                           bytes_<arch>.hpp
bytecodes.cpp                           methodOop.hpp
bytecodes.cpp                           resourceArea.hpp

bytecodes.hpp                           allocation.hpp
bytecodes.hpp                           top.hpp

bytecodes_<arch>.cpp                    bytecodes.hpp

bytecodes_<arch>.hpp                    generate_platform_dependent_include

bytes_<arch>.hpp                        allocation.hpp

bytes_<os_arch>.inline.hpp              generate_platform_dependent_include

cardTableModRefBS.cpp                   allocation.inline.hpp
cardTableModRefBS.cpp                   cardTableModRefBS.hpp
cardTableModRefBS.cpp                   cardTableRS.hpp
cardTableModRefBS.cpp                   java.hpp
cardTableModRefBS.cpp                   mutexLocker.hpp
cardTableModRefBS.cpp                   sharedHeap.hpp
cardTableModRefBS.cpp                   space.hpp
478
cardTableModRefBS.cpp                   space.inline.hpp
D
duke 已提交
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
cardTableModRefBS.cpp                   universe.hpp
cardTableModRefBS.cpp                   virtualspace.hpp

cardTableModRefBS.hpp                   modRefBarrierSet.hpp
cardTableModRefBS.hpp                   oop.hpp
cardTableModRefBS.hpp                   oop.inline2.hpp

cardTableRS.cpp                         allocation.inline.hpp
cardTableRS.cpp                         cardTableRS.hpp
cardTableRS.cpp                         genCollectedHeap.hpp
cardTableRS.cpp                         generation.hpp
cardTableRS.cpp                         java.hpp
cardTableRS.cpp                         oop.inline.hpp
cardTableRS.cpp                         os.hpp
cardTableRS.cpp                         space.hpp

cardTableRS.hpp                         cardTableModRefBS.hpp
cardTableRS.hpp                         genRemSet.hpp
cardTableRS.hpp                         memRegion.hpp

ciArray.cpp                             ciArray.hpp
ciArray.cpp                             ciKlass.hpp
ciArray.cpp                             ciUtilities.hpp

ciArray.hpp                             arrayOop.hpp
ciArray.hpp                             ciObject.hpp
ciArray.hpp                             objArrayOop.hpp
ciArray.hpp                             typeArrayOop.hpp

ciArrayKlass.cpp                        ciArrayKlass.hpp
ciArrayKlass.cpp                        ciObjArrayKlass.hpp
ciArrayKlass.cpp                        ciTypeArrayKlass.hpp
ciArrayKlass.cpp                        ciUtilities.hpp

ciArrayKlass.hpp                        ciKlass.hpp

ciArrayKlassKlass.hpp                   ciKlassKlass.hpp

ciCallProfile.hpp                       ciClassList.hpp

519 520 521 522 523
ciCallSite.cpp                          ciCallSite.hpp
ciCallSite.cpp                          ciUtilities.hpp

ciCallSite.hpp                          ciInstance.hpp

D
duke 已提交
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
ciConstant.cpp                          allocation.hpp
ciConstant.cpp                          allocation.inline.hpp
ciConstant.cpp                          ciConstant.hpp
ciConstant.cpp                          ciUtilities.hpp

ciConstant.hpp                          ciClassList.hpp
ciConstant.hpp                          ciNullObject.hpp

ciConstantPoolCache.cpp                 allocation.hpp
ciConstantPoolCache.cpp                 allocation.inline.hpp
ciConstantPoolCache.cpp                 ciConstantPoolCache.hpp
ciConstantPoolCache.cpp                 ciUtilities.hpp

ciConstantPoolCache.hpp                 growableArray.hpp
ciConstantPoolCache.hpp                 resourceArea.hpp

540 541 542 543 544 545
ciCPCache.cpp                           cpCacheOop.hpp
ciCPCache.cpp                           ciCPCache.hpp

ciCPCache.hpp                           ciClassList.hpp
ciCPCache.hpp                           ciObject.hpp

D
duke 已提交
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
ciEnv.cpp                               allocation.inline.hpp
ciEnv.cpp                               ciConstant.hpp
ciEnv.cpp                               ciEnv.hpp
ciEnv.cpp                               ciField.hpp
ciEnv.cpp                               ciInstance.hpp
ciEnv.cpp                               ciInstanceKlass.hpp
ciEnv.cpp                               ciInstanceKlassKlass.hpp
ciEnv.cpp                               ciMethod.hpp
ciEnv.cpp                               ciNullObject.hpp
ciEnv.cpp                               ciObjArrayKlassKlass.hpp
ciEnv.cpp                               ciTypeArrayKlassKlass.hpp
ciEnv.cpp                               ciUtilities.hpp
ciEnv.cpp                               collectedHeap.inline.hpp
ciEnv.cpp                               compileBroker.hpp
ciEnv.cpp                               compileLog.hpp
ciEnv.cpp                               compilerOracle.hpp
ciEnv.cpp                               dtrace.hpp
ciEnv.cpp                               init.hpp
ciEnv.cpp                               jvmtiExport.hpp
ciEnv.cpp                               linkResolver.hpp
ciEnv.cpp                               methodDataOop.hpp
ciEnv.cpp                               objArrayKlass.hpp
ciEnv.cpp                               oop.inline.hpp
ciEnv.cpp                               oop.inline2.hpp
ciEnv.cpp                               oopFactory.hpp
ciEnv.cpp                               reflection.hpp
ciEnv.cpp                               scopeDesc.hpp
ciEnv.cpp                               sharedRuntime.hpp
ciEnv.cpp                               systemDictionary.hpp
ciEnv.cpp                               universe.inline.hpp
ciEnv.cpp                               vmSymbols.hpp

ciEnv.hpp                               ciClassList.hpp
ciEnv.hpp                               ciObjectFactory.hpp
ciEnv.hpp                               debugInfoRec.hpp
ciEnv.hpp                               dependencies.hpp
ciEnv.hpp                               exceptionHandlerTable.hpp
ciEnv.hpp                               oopMap.hpp
584
ciEnv.hpp                               systemDictionary.hpp
D
duke 已提交
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
ciEnv.hpp                               thread.hpp

ciExceptionHandler.cpp                  ciExceptionHandler.hpp
ciExceptionHandler.cpp                  ciUtilities.hpp

ciExceptionHandler.hpp                  ciClassList.hpp
ciExceptionHandler.hpp                  ciInstanceKlass.hpp

ciField.cpp                             ciField.hpp
ciField.cpp                             ciInstanceKlass.hpp
ciField.cpp                             ciUtilities.hpp
ciField.cpp                             collectedHeap.inline.hpp
ciField.cpp                             fieldDescriptor.hpp
ciField.cpp                             linkResolver.hpp
ciField.cpp                             oop.inline.hpp
ciField.cpp                             oop.inline2.hpp
ciField.cpp                             systemDictionary.hpp
ciField.cpp                             universe.inline.hpp

ciField.hpp                             ciClassList.hpp
ciField.hpp                             ciConstant.hpp
ciField.hpp                             ciFlags.hpp
607
ciField.hpp                             ciInstance.hpp
D
duke 已提交
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664

ciFlags.cpp                             ciFlags.hpp

ciFlags.hpp                             accessFlags.hpp
ciFlags.hpp                             allocation.hpp
ciFlags.hpp                             ciClassList.hpp
ciFlags.hpp                             jvm.h

ciInstance.cpp                          ciConstant.hpp
ciInstance.cpp                          ciField.hpp
ciInstance.cpp                          ciInstance.hpp
ciInstance.cpp                          ciInstanceKlass.hpp
ciInstance.cpp                          ciUtilities.hpp
ciInstance.cpp                          oop.inline.hpp
ciInstance.cpp                          systemDictionary.hpp

ciInstance.hpp                          ciObject.hpp
ciInstance.hpp                          instanceOop.hpp

ciInstanceKlass.cpp                     allocation.hpp
ciInstanceKlass.cpp                     allocation.inline.hpp
ciInstanceKlass.cpp                     ciField.hpp
ciInstanceKlass.cpp                     ciInstance.hpp
ciInstanceKlass.cpp                     ciInstanceKlass.hpp
ciInstanceKlass.cpp                     ciUtilities.hpp
ciInstanceKlass.cpp                     fieldDescriptor.hpp
ciInstanceKlass.cpp                     oop.inline.hpp
ciInstanceKlass.cpp                     systemDictionary.hpp

ciInstanceKlass.hpp                     ciConstantPoolCache.hpp
ciInstanceKlass.hpp                     ciFlags.hpp
ciInstanceKlass.hpp                     ciInstanceKlassKlass.hpp
ciInstanceKlass.hpp                     ciKlass.hpp
ciInstanceKlass.hpp                     ciSymbol.hpp

ciInstanceKlassKlass.cpp                ciInstanceKlassKlass.hpp
ciInstanceKlassKlass.cpp                ciUtilities.hpp

ciInstanceKlassKlass.hpp                ciKlassKlass.hpp

ciKlass.cpp                             ciKlass.hpp
ciKlass.cpp                             ciSymbol.hpp
ciKlass.cpp                             ciUtilities.hpp
ciKlass.cpp                             oop.inline.hpp

ciKlass.hpp                             ciType.hpp
ciKlass.hpp                             klassOop.hpp

ciKlassKlass.cpp                        ciKlassKlass.hpp
ciKlassKlass.cpp                        ciUtilities.hpp

ciKlassKlass.hpp                        ciKlass.hpp
ciKlassKlass.hpp                        ciSymbol.hpp

ciMethod.cpp                            abstractCompiler.hpp
ciMethod.cpp                            allocation.inline.hpp
ciMethod.cpp                            bcEscapeAnalyzer.hpp
665
ciMethod.cpp                            bitMap.inline.hpp
D
duke 已提交
666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
ciMethod.cpp                            ciCallProfile.hpp
ciMethod.cpp                            ciExceptionHandler.hpp
ciMethod.cpp                            ciInstanceKlass.hpp
ciMethod.cpp                            ciMethod.hpp
ciMethod.cpp                            ciMethodBlocks.hpp
ciMethod.cpp                            ciMethodData.hpp
ciMethod.cpp                            ciMethodKlass.hpp
ciMethod.cpp                            ciStreams.hpp
ciMethod.cpp                            ciSymbol.hpp
ciMethod.cpp                            ciUtilities.hpp
ciMethod.cpp                            compilerOracle.hpp
ciMethod.cpp                            deoptimization.hpp
ciMethod.cpp                            generateOopMap.hpp
ciMethod.cpp                            interpreter.hpp
ciMethod.cpp                            linkResolver.hpp
ciMethod.cpp                            methodLiveness.hpp
ciMethod.cpp                            nativeLookup.hpp
ciMethod.cpp                            oop.inline.hpp
ciMethod.cpp                            oopMapCache.hpp
ciMethod.cpp                            resourceArea.hpp
ciMethod.cpp                            systemDictionary.hpp
ciMethod.cpp                            xmlstream.hpp

ciMethod.hpp                            bitMap.hpp
ciMethod.hpp                            ciFlags.hpp
ciMethod.hpp                            ciInstanceKlass.hpp
ciMethod.hpp                            ciObject.hpp
ciMethod.hpp                            ciSignature.hpp
694
ciMethod.hpp                            methodHandles.hpp
D
duke 已提交
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
ciMethod.hpp                            methodLiveness.hpp

ciMethodBlocks.cpp                      bytecode.hpp
ciMethodBlocks.cpp                      ciMethodBlocks.hpp
ciMethodBlocks.cpp                      ciStreams.hpp
ciMethodBlocks.cpp                      copy.hpp

ciMethodBlocks.hpp                      ciMethod.hpp
ciMethodBlocks.hpp                      growableArray.hpp
ciMethodBlocks.hpp                      resourceArea.hpp

ciMethodData.cpp                        allocation.inline.hpp
ciMethodData.cpp                        ciMethodData.hpp
ciMethodData.cpp                        ciUtilities.hpp
ciMethodData.cpp                        copy.hpp
ciMethodData.cpp                        deoptimization.hpp
ciMethodData.cpp                        resourceArea.hpp

ciMethodData.hpp                        ciClassList.hpp
ciMethodData.hpp                        ciKlass.hpp
ciMethodData.hpp                        ciObject.hpp
ciMethodData.hpp                        ciUtilities.hpp
ciMethodData.hpp                        methodDataOop.hpp
ciMethodData.hpp                        oop.inline.hpp

ciMethodKlass.cpp                       ciMethodKlass.hpp
ciMethodKlass.cpp                       ciUtilities.hpp

ciMethodKlass.hpp                       ciKlass.hpp
ciMethodKlass.hpp                       ciSymbol.hpp

726 727 728 729 730 731 732 733 734
ciMethodHandle.cpp                      ciClassList.hpp
ciMethodHandle.cpp                      ciInstance.hpp
ciMethodHandle.cpp                      ciMethodHandle.hpp
ciMethodHandle.cpp                      ciUtilities.hpp
ciMethodHandle.cpp                      methodHandles.hpp
ciMethodHandle.cpp                      methodHandleWalk.hpp

ciMethodHandle.hpp                      methodHandles.hpp

D
duke 已提交
735 736 737 738 739 740 741 742 743 744
ciNullObject.cpp                        ciNullObject.hpp

ciNullObject.hpp                        ciClassList.hpp
ciNullObject.hpp                        ciObject.hpp
ciNullObject.hpp                        ciUtilities.hpp

ciObjArray.hpp                          ciArray.hpp
ciObjArray.hpp                          ciClassList.hpp
ciObjArray.hpp                          objArrayOop.hpp

745 746 747 748 749
ciObjArray.cpp                          ciObjArray.hpp
ciObjArray.cpp                          ciNullObject.hpp
ciObjArray.cpp                          ciUtilities.hpp
ciObjArray.cpp                          objArrayOop.hpp

750 751 752 753 754
ciObjArray.cpp                          ciObjArray.hpp
ciObjArray.cpp                          ciNullObject.hpp
ciObjArray.cpp                          ciUtilities.hpp
ciObjArray.cpp                          objArrayOop.hpp

D
duke 已提交
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
ciObjArrayKlass.cpp                     ciInstanceKlass.hpp
ciObjArrayKlass.cpp                     ciObjArrayKlass.hpp
ciObjArrayKlass.cpp                     ciObjArrayKlassKlass.hpp
ciObjArrayKlass.cpp                     ciSymbol.hpp
ciObjArrayKlass.cpp                     ciUtilities.hpp
ciObjArrayKlass.cpp                     objArrayKlass.hpp

ciObjArrayKlass.hpp                     ciArrayKlass.hpp

ciObjArrayKlassKlass.cpp                ciObjArrayKlassKlass.hpp
ciObjArrayKlassKlass.cpp                ciUtilities.hpp

ciObjArrayKlassKlass.hpp                ciArrayKlassKlass.hpp

ciObject.cpp                            ciObject.hpp
ciObject.cpp                            ciUtilities.hpp
ciObject.cpp                            collectedHeap.inline.hpp
ciObject.cpp                            oop.inline2.hpp

ciObject.hpp                            allocation.hpp
ciObject.hpp                            ciClassList.hpp
ciObject.hpp                            handles.hpp
ciObject.hpp                            jniHandles.hpp

ciObjectFactory.cpp                     allocation.inline.hpp
780
ciObjectFactory.cpp                     ciCallSite.hpp
781
ciObjectFactory.cpp                     ciCPCache.hpp
D
duke 已提交
782 783 784 785 786
ciObjectFactory.cpp                     ciInstance.hpp
ciObjectFactory.cpp                     ciInstanceKlass.hpp
ciObjectFactory.cpp                     ciInstanceKlassKlass.hpp
ciObjectFactory.cpp                     ciMethod.hpp
ciObjectFactory.cpp                     ciMethodData.hpp
787
ciObjectFactory.cpp                     ciMethodHandle.hpp
D
duke 已提交
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
ciObjectFactory.cpp                     ciMethodKlass.hpp
ciObjectFactory.cpp                     ciNullObject.hpp
ciObjectFactory.cpp                     ciObjArray.hpp
ciObjectFactory.cpp                     ciObjArrayKlass.hpp
ciObjectFactory.cpp                     ciObjArrayKlassKlass.hpp
ciObjectFactory.cpp                     ciObjectFactory.hpp
ciObjectFactory.cpp                     ciSymbol.hpp
ciObjectFactory.cpp                     ciSymbolKlass.hpp
ciObjectFactory.cpp                     ciTypeArray.hpp
ciObjectFactory.cpp                     ciTypeArrayKlass.hpp
ciObjectFactory.cpp                     ciTypeArrayKlassKlass.hpp
ciObjectFactory.cpp                     ciUtilities.hpp
ciObjectFactory.cpp                     collectedHeap.inline.hpp
ciObjectFactory.cpp                     fieldType.hpp
ciObjectFactory.cpp                     oop.inline.hpp
ciObjectFactory.cpp                     oop.inline2.hpp
ciObjectFactory.cpp                     systemDictionary.hpp

ciObjectFactory.hpp                     ciClassList.hpp
ciObjectFactory.hpp                     ciObject.hpp
ciObjectFactory.hpp                     growableArray.hpp

ciSignature.cpp                         allocation.inline.hpp
ciSignature.cpp                         ciSignature.hpp
ciSignature.cpp                         ciUtilities.hpp
ciSignature.cpp                         oop.inline.hpp
ciSignature.cpp                         signature.hpp

ciSignature.hpp                         ciClassList.hpp
ciSignature.hpp                         ciSymbol.hpp
ciSignature.hpp                         globalDefinitions.hpp
ciSignature.hpp                         growableArray.hpp

821
ciStreams.cpp                           ciCallSite.hpp
D
duke 已提交
822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901
ciStreams.cpp                           ciConstant.hpp
ciStreams.cpp                           ciField.hpp
ciStreams.cpp                           ciStreams.hpp
ciStreams.cpp                           ciUtilities.hpp

ciStreams.hpp                           ciClassList.hpp
ciStreams.hpp                           ciExceptionHandler.hpp
ciStreams.hpp                           ciInstanceKlass.hpp
ciStreams.hpp                           ciMethod.hpp

ciSymbol.cpp                            ciSymbol.hpp
ciSymbol.cpp                            ciUtilities.hpp
ciSymbol.cpp                            oopFactory.hpp

ciSymbol.hpp                            ciObject.hpp
ciSymbol.hpp                            ciObjectFactory.hpp
ciSymbol.hpp                            symbolOop.hpp
ciSymbol.hpp                            vmSymbols.hpp

ciSymbolKlass.cpp                       ciSymbolKlass.hpp
ciSymbolKlass.cpp                       ciUtilities.hpp

ciSymbolKlass.hpp                       ciKlass.hpp
ciSymbolKlass.hpp                       ciSymbol.hpp

ciType.cpp                              ciType.hpp
ciType.cpp                              ciUtilities.hpp
ciType.cpp                              oop.inline.hpp
ciType.cpp                              systemDictionary.hpp

ciType.hpp                              ciObject.hpp
ciType.hpp                              klassOop.hpp

ciTypeArray.cpp                         ciTypeArray.hpp
ciTypeArray.cpp                         ciUtilities.hpp

ciTypeArray.hpp                         ciArray.hpp
ciTypeArray.hpp                         ciClassList.hpp
ciTypeArray.hpp                         typeArrayOop.hpp

ciTypeArrayKlass.cpp                    ciTypeArrayKlass.hpp
ciTypeArrayKlass.cpp                    ciUtilities.hpp

ciTypeArrayKlass.hpp                    ciArrayKlass.hpp

ciTypeArrayKlassKlass.cpp               ciTypeArrayKlassKlass.hpp
ciTypeArrayKlassKlass.cpp               ciUtilities.hpp

ciTypeArrayKlassKlass.hpp               ciArrayKlassKlass.hpp

ciUtilities.cpp                         ciUtilities.hpp

ciUtilities.hpp                         ciEnv.hpp
ciUtilities.hpp                         interfaceSupport.hpp

classFileError.cpp                      classFileParser.hpp
classFileError.cpp                      stackMapTable.hpp
classFileError.cpp                      verifier.hpp

classFileParser.cpp                     allocation.hpp
classFileParser.cpp                     classFileParser.hpp
classFileParser.cpp                     classLoader.hpp
classFileParser.cpp                     classLoadingService.hpp
classFileParser.cpp                     constantPoolOop.hpp
classFileParser.cpp                     gcLocker.hpp
classFileParser.cpp                     instanceKlass.hpp
classFileParser.cpp                     javaCalls.hpp
classFileParser.cpp                     javaClasses.hpp
classFileParser.cpp                     jvmtiExport.hpp
classFileParser.cpp                     klass.inline.hpp
classFileParser.cpp                     klassOop.hpp
classFileParser.cpp                     klassVtable.hpp
classFileParser.cpp                     methodOop.hpp
classFileParser.cpp                     oopFactory.hpp
classFileParser.cpp                     perfData.hpp
classFileParser.cpp                     reflection.hpp
classFileParser.cpp                     signature.hpp
classFileParser.cpp                     symbolOop.hpp
classFileParser.cpp                     symbolTable.hpp
classFileParser.cpp                     systemDictionary.hpp
902
classFileParser.cpp                     threadService.hpp
D
duke 已提交
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
classFileParser.cpp                     timer.hpp
classFileParser.cpp                     universe.inline.hpp
classFileParser.cpp                     verificationType.hpp
classFileParser.cpp                     verifier.hpp
classFileParser.cpp                     vmSymbols.hpp

classFileParser.hpp                     accessFlags.hpp
classFileParser.hpp                     classFileStream.hpp
classFileParser.hpp                     handles.inline.hpp
classFileParser.hpp                     oop.inline.hpp
classFileParser.hpp                     resourceArea.hpp
classFileParser.hpp                     typeArrayOop.hpp

classFileStream.cpp                     classFileStream.hpp
classFileStream.cpp                     vmSymbols.hpp

classFileStream.hpp                     bytes_<arch>.hpp
classFileStream.hpp                     top.hpp

classLoader.cpp                         allocation.inline.hpp
classLoader.cpp                         arguments.hpp
924
classLoader.cpp                         bytecodeStream.hpp
D
duke 已提交
925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951
classLoader.cpp                         classFileParser.hpp
classLoader.cpp                         classFileStream.hpp
classLoader.cpp                         classLoader.hpp
classLoader.cpp                         collectedHeap.inline.hpp
classLoader.cpp                         compilationPolicy.hpp
classLoader.cpp                         compileBroker.hpp
classLoader.cpp                         constantPoolKlass.hpp
classLoader.cpp                         events.hpp
classLoader.cpp                         fprofiler.hpp
classLoader.cpp                         generation.hpp
classLoader.cpp                         handles.hpp
classLoader.cpp                         handles.inline.hpp
classLoader.cpp                         hashtable.hpp
classLoader.cpp                         hashtable.inline.hpp
classLoader.cpp                         hpi.hpp
classLoader.cpp                         hpi_<os_family>.hpp
classLoader.cpp                         init.hpp
classLoader.cpp                         instanceKlass.hpp
classLoader.cpp                         instanceRefKlass.hpp
classLoader.cpp                         interfaceSupport.hpp
classLoader.cpp                         java.hpp
classLoader.cpp                         javaCalls.hpp
classLoader.cpp                         javaClasses.hpp
classLoader.cpp                         jvm_misc.hpp
classLoader.cpp                         management.hpp
classLoader.cpp                         oop.inline.hpp
classLoader.cpp                         oopFactory.hpp
952
classLoader.cpp                         oopMapCache.hpp
D
duke 已提交
953 954 955 956
classLoader.cpp                         os_<os_family>.inline.hpp
classLoader.cpp                         symbolOop.hpp
classLoader.cpp                         systemDictionary.hpp
classLoader.cpp                         threadCritical.hpp
957
classLoader.cpp                         threadService.hpp
D
duke 已提交
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987
classLoader.cpp                         timer.hpp
classLoader.cpp                         universe.inline.hpp
classLoader.cpp                         vmSymbols.hpp
classLoader.cpp                         vtune.hpp

classLoader.hpp                         classFileParser.hpp
classLoader.hpp                         perfData.hpp

classLoadingService.cpp                 allocation.hpp
classLoadingService.cpp                 classLoadingService.hpp
classLoadingService.cpp                 dtrace.hpp
classLoadingService.cpp                 memoryService.hpp
classLoadingService.cpp                 mutexLocker.hpp
classLoadingService.cpp                 oop.inline.hpp
classLoadingService.cpp                 systemDictionary.hpp
classLoadingService.cpp                 universe.hpp

classLoadingService.hpp                 growableArray.hpp
classLoadingService.hpp                 handles.hpp
classLoadingService.hpp                 perfData.hpp

classify.cpp                            classify.hpp
classify.cpp                            systemDictionary.hpp

classify.hpp                            oop.inline.hpp

codeBlob.cpp                            allocation.inline.hpp
codeBlob.cpp                            bytecode.hpp
codeBlob.cpp                            codeBlob.hpp
codeBlob.cpp                            codeCache.hpp
988
codeBlob.cpp                            disassembler.hpp
D
duke 已提交
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
codeBlob.cpp                            forte.hpp
codeBlob.cpp                            handles.inline.hpp
codeBlob.cpp                            heap.hpp
codeBlob.cpp                            interfaceSupport.hpp
codeBlob.cpp                            memoryService.hpp
codeBlob.cpp                            mutexLocker.hpp
codeBlob.cpp                            nativeInst_<arch>.hpp
codeBlob.cpp                            oop.inline.hpp
codeBlob.cpp                            relocInfo.hpp
codeBlob.cpp                            safepoint.hpp
codeBlob.cpp                            sharedRuntime.hpp
codeBlob.cpp                            vframe.hpp
codeBlob.cpp                            vtune.hpp

codeBlob.hpp                            codeBuffer.hpp
codeBlob.hpp                            frame.hpp
codeBlob.hpp                            handles.hpp
codeBlob.hpp                            oopMap.hpp

codeBuffer.cpp                          codeBuffer.hpp
codeBuffer.cpp                          copy.hpp
1010
codeBuffer.cpp                          disassembler.hpp
D
duke 已提交
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031

codeBuffer.hpp                          assembler.hpp
codeBuffer.hpp                          oopRecorder.hpp
codeBuffer.hpp                          relocInfo.hpp

codeBuffer_<arch>.hpp                   generate_platform_dependent_include

codeCache.cpp                           allocation.inline.hpp
codeCache.cpp                           codeBlob.hpp
codeCache.cpp                           codeCache.hpp
codeCache.cpp                           dependencies.hpp
codeCache.cpp                           gcLocker.hpp
codeCache.cpp                           icache.hpp
codeCache.cpp                           iterator.hpp
codeCache.cpp                           java.hpp
codeCache.cpp                           markSweep.hpp
codeCache.cpp                           memoryService.hpp
codeCache.cpp                           methodOop.hpp
codeCache.cpp                           mutexLocker.hpp
codeCache.cpp                           nmethod.hpp
codeCache.cpp                           objArrayOop.hpp
1032
codeCache.cpp                           oop.inline.hpp
D
duke 已提交
1033 1034
codeCache.cpp                           pcDesc.hpp
codeCache.cpp                           resourceArea.hpp
1035
codeCache.cpp                           xmlstream.hpp
D
duke 已提交
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123

codeCache.hpp                           allocation.hpp
codeCache.hpp                           codeBlob.hpp
codeCache.hpp                           heap.hpp
codeCache.hpp                           instanceKlass.hpp
codeCache.hpp                           oopsHierarchy.hpp

collectorPolicy.cpp                     adaptiveSizePolicy.hpp
collectorPolicy.cpp                     arguments.hpp
collectorPolicy.cpp                     cardTableRS.hpp
collectorPolicy.cpp                     collectorPolicy.hpp
collectorPolicy.cpp                     gcLocker.inline.hpp
collectorPolicy.cpp                     genCollectedHeap.hpp
collectorPolicy.cpp                     gcPolicyCounters.hpp
collectorPolicy.cpp                     generationSpec.hpp
collectorPolicy.cpp                     globals_extension.hpp
collectorPolicy.cpp                     handles.inline.hpp
collectorPolicy.cpp                     java.hpp
collectorPolicy.cpp                     space.hpp
collectorPolicy.cpp                     thread_<os_family>.inline.hpp
collectorPolicy.cpp                     universe.hpp
collectorPolicy.cpp                     vmGCOperations.hpp
collectorPolicy.cpp                     vmThread.hpp

collectorPolicy.hpp                     barrierSet.hpp
collectorPolicy.hpp                     genRemSet.hpp
collectorPolicy.hpp                     permGen.hpp

compactPermGen.hpp                      generation.hpp
compactPermGen.hpp                      permGen.hpp

compactingPermGenGen.cpp                compactingPermGenGen.hpp
compactingPermGenGen.cpp                filemap.hpp
compactingPermGenGen.cpp                genOopClosures.inline.hpp
compactingPermGenGen.cpp                generation.inline.hpp
compactingPermGenGen.cpp                generationSpec.hpp
compactingPermGenGen.cpp                java.hpp
compactingPermGenGen.cpp                oop.inline.hpp
compactingPermGenGen.cpp                symbolTable.hpp
compactingPermGenGen.cpp                systemDictionary.hpp

compactingPermGenGen.hpp                generationCounters.hpp
compactingPermGenGen.hpp                space.hpp

compilationPolicy.cpp                   compilationPolicy.hpp
compilationPolicy.cpp                   compiledIC.hpp
compilationPolicy.cpp                   compilerOracle.hpp
compilationPolicy.cpp                   events.hpp
compilationPolicy.cpp                   frame.hpp
compilationPolicy.cpp                   globalDefinitions.hpp
compilationPolicy.cpp                   handles.inline.hpp
compilationPolicy.cpp                   interpreter.hpp
compilationPolicy.cpp                   methodDataOop.hpp
compilationPolicy.cpp                   methodOop.hpp
compilationPolicy.cpp                   nativeLookup.hpp
compilationPolicy.cpp                   nmethod.hpp
compilationPolicy.cpp                   oop.inline.hpp
compilationPolicy.cpp                   rframe.hpp
compilationPolicy.cpp                   stubRoutines.hpp
compilationPolicy.cpp                   thread.hpp
compilationPolicy.cpp                   timer.hpp
compilationPolicy.cpp                   vframe.hpp
compilationPolicy.cpp                   vm_operations.hpp

compilationPolicy.hpp                   allocation.hpp
compilationPolicy.hpp                   compileBroker.hpp
compilationPolicy.hpp                   growableArray.hpp
compilationPolicy.hpp                   nmethod.hpp
compilationPolicy.hpp                   vm_operations.hpp

compileBroker.cpp                       allocation.inline.hpp
compileBroker.cpp                       arguments.hpp
compileBroker.cpp                       codeCache.hpp
compileBroker.cpp                       compilationPolicy.hpp
compileBroker.cpp                       compileBroker.hpp
compileBroker.cpp                       compileLog.hpp
compileBroker.cpp                       compilerOracle.hpp
compileBroker.cpp                       dtrace.hpp
compileBroker.cpp                       init.hpp
compileBroker.cpp                       interfaceSupport.hpp
compileBroker.cpp                       javaCalls.hpp
compileBroker.cpp                       linkResolver.hpp
compileBroker.cpp                       methodDataOop.hpp
compileBroker.cpp                       methodOop.hpp
compileBroker.cpp                       nativeLookup.hpp
compileBroker.cpp                       oop.inline.hpp
compileBroker.cpp                       os.hpp
compileBroker.cpp                       sharedRuntime.hpp
1124
compileBroker.cpp                       sweeper.hpp
D
duke 已提交
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
compileBroker.cpp                       systemDictionary.hpp
compileBroker.cpp                       vmSymbols.hpp

compileBroker.hpp                       abstractCompiler.hpp
compileBroker.hpp                       compilerInterface.hpp
compileBroker.hpp                       perfData.hpp

compileLog.cpp                          allocation.inline.hpp
compileLog.cpp                          ciMethod.hpp
compileLog.cpp                          compileLog.hpp
compileLog.cpp                          methodOop.hpp
compileLog.cpp                          mutexLocker.hpp
compileLog.cpp                          os.hpp

compileLog.hpp                          xmlstream.hpp

compiledIC.cpp                          codeCache.hpp
compiledIC.cpp                          compiledIC.hpp
compiledIC.cpp                          events.hpp
compiledIC.cpp                          icBuffer.hpp
compiledIC.cpp                          icache.hpp
compiledIC.cpp                          interpreter.hpp
compiledIC.cpp                          linkResolver.hpp
compiledIC.cpp                          methodOop.hpp
compiledIC.cpp                          nmethod.hpp
compiledIC.cpp                          oop.inline.hpp
compiledIC.cpp                          oopFactory.hpp
compiledIC.cpp                          sharedRuntime.hpp
compiledIC.cpp                          stubRoutines.hpp
compiledIC.cpp                          symbolOop.hpp
compiledIC.cpp                          systemDictionary.hpp
compiledIC.cpp                          vtableStubs.hpp

compiledIC.hpp                          compiledICHolderKlass.hpp
compiledIC.hpp                          compiledICHolderOop.hpp
compiledIC.hpp                          klassOop.hpp
compiledIC.hpp                          linkResolver.hpp
compiledIC.hpp                          nativeInst_<arch>.hpp

compiledICHolderKlass.cpp               collectedHeap.hpp
compiledICHolderKlass.cpp               collectedHeap.inline.hpp
compiledICHolderKlass.cpp               compiledICHolderKlass.hpp
compiledICHolderKlass.cpp               handles.inline.hpp
compiledICHolderKlass.cpp               javaClasses.hpp
1169
compiledICHolderKlass.cpp               markSweep.inline.hpp
D
duke 已提交
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
compiledICHolderKlass.cpp               oop.inline.hpp
compiledICHolderKlass.cpp               oop.inline2.hpp
compiledICHolderKlass.cpp               permGen.hpp
compiledICHolderKlass.cpp               universe.inline.hpp

compiledICHolderKlass.hpp               compiledICHolderOop.hpp
compiledICHolderKlass.hpp               klass.hpp
compiledICHolderKlass.hpp               methodOop.hpp

compiledICHolderOop.cpp                 compiledICHolderOop.hpp

compiledICHolderOop.hpp                 oop.hpp

compilerInterface.hpp                   ciArray.hpp
compilerInterface.hpp                   ciArrayKlass.hpp
compilerInterface.hpp                   ciArrayKlassKlass.hpp
compilerInterface.hpp                   ciCallProfile.hpp
compilerInterface.hpp                   ciConstant.hpp
compilerInterface.hpp                   ciEnv.hpp
compilerInterface.hpp                   ciExceptionHandler.hpp
compilerInterface.hpp                   ciField.hpp
compilerInterface.hpp                   ciFlags.hpp
compilerInterface.hpp                   ciInstance.hpp
compilerInterface.hpp                   ciInstanceKlass.hpp
compilerInterface.hpp                   ciInstanceKlassKlass.hpp
compilerInterface.hpp                   ciKlass.hpp
compilerInterface.hpp                   ciKlassKlass.hpp
compilerInterface.hpp                   ciMethod.hpp
compilerInterface.hpp                   ciMethodKlass.hpp
compilerInterface.hpp                   ciNullObject.hpp
compilerInterface.hpp                   ciObjArray.hpp
compilerInterface.hpp                   ciObjArrayKlass.hpp
compilerInterface.hpp                   ciObjArrayKlassKlass.hpp
compilerInterface.hpp                   ciObject.hpp
compilerInterface.hpp                   ciSignature.hpp
compilerInterface.hpp                   ciStreams.hpp
compilerInterface.hpp                   ciSymbol.hpp
compilerInterface.hpp                   ciSymbolKlass.hpp
compilerInterface.hpp                   ciTypeArray.hpp
compilerInterface.hpp                   ciTypeArrayKlass.hpp
compilerInterface.hpp                   ciTypeArrayKlassKlass.hpp

compilerOracle.cpp                      allocation.inline.hpp
compilerOracle.cpp                      compilerOracle.hpp
compilerOracle.cpp                      handles.inline.hpp
compilerOracle.cpp                      jniHandles.hpp
compilerOracle.cpp                      klass.hpp
compilerOracle.cpp                      methodOop.hpp
compilerOracle.cpp                      oop.inline.hpp
compilerOracle.cpp                      oopFactory.hpp
compilerOracle.cpp                      resourceArea.hpp
compilerOracle.cpp                      symbolOop.hpp

compilerOracle.hpp                      allocation.hpp
compilerOracle.hpp                      oopsHierarchy.hpp

compressedStream.cpp                    compressedStream.hpp
compressedStream.cpp                    ostream.hpp

compressedStream.hpp                    allocation.hpp

constMethodKlass.cpp                    constMethodKlass.hpp
constMethodKlass.cpp                    constMethodOop.hpp
constMethodKlass.cpp                    gcLocker.hpp
constMethodKlass.cpp                    handles.inline.hpp
constMethodKlass.cpp                    interpreter.hpp
1236
constMethodKlass.cpp                    markSweep.inline.hpp
D
duke 已提交
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
constMethodKlass.cpp                    oop.inline.hpp
constMethodKlass.cpp                    oop.inline2.hpp
constMethodKlass.cpp                    resourceArea.hpp

constMethodKlass.hpp                    oop.hpp
constMethodKlass.hpp                    klass.hpp
constMethodKlass.hpp                    orderAccess.hpp

constMethodOop.cpp                      constMethodOop.hpp
constMethodOop.cpp                      methodOop.hpp

constMethodOop.hpp                      oop.hpp
constMethodOop.hpp                      typeArrayOop.hpp

constantPoolKlass.cpp                   collectedHeap.inline.hpp
constantPoolKlass.cpp                   constantPoolKlass.hpp
constantPoolKlass.cpp                   constantPoolOop.hpp
constantPoolKlass.cpp                   handles.inline.hpp
1255 1256
constantPoolKlass.cpp                   javaClasses.hpp
constantPoolKlass.cpp                   markSweep.inline.hpp
D
duke 已提交
1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
constantPoolKlass.cpp                   oop.inline.hpp
constantPoolKlass.cpp                   oop.inline2.hpp
constantPoolKlass.cpp                   oopFactory.hpp
constantPoolKlass.cpp                   permGen.hpp
constantPoolKlass.cpp                   symbolOop.hpp
constantPoolKlass.cpp                   thread_<os_family>.inline.hpp
constantPoolKlass.cpp                   universe.inline.hpp

constantPoolKlass.hpp                   arrayKlass.hpp
constantPoolKlass.hpp                   instanceKlass.hpp

constantPoolOop.cpp                     constantPoolOop.hpp
constantPoolOop.cpp                     fieldType.hpp
constantPoolOop.cpp                     init.hpp
constantPoolOop.cpp                     instanceKlass.hpp
constantPoolOop.cpp                     javaClasses.hpp
constantPoolOop.cpp                     linkResolver.hpp
constantPoolOop.cpp                     objArrayKlass.hpp
constantPoolOop.cpp                     oop.inline.hpp
constantPoolOop.cpp                     signature.hpp
constantPoolOop.cpp                     symbolTable.hpp
constantPoolOop.cpp                     systemDictionary.hpp
constantPoolOop.cpp                     universe.inline.hpp
constantPoolOop.cpp                     vframe.hpp
constantPoolOop.cpp                     vmSymbols.hpp

constantPoolOop.hpp                     arrayOop.hpp
constantPoolOop.hpp                     bytes_<arch>.hpp
constantPoolOop.hpp                     constantTag.hpp
constantPoolOop.hpp                     cpCacheOop.hpp
constantPoolOop.hpp                     typeArrayOop.hpp

constantTag.cpp                         constantTag.hpp

constantTag.hpp                         jvm.h
constantTag.hpp                         top.hpp

copy.cpp                                copy.hpp
copy.cpp                                sharedRuntime.hpp

copy.hpp                                stubRoutines.hpp

copy_<arch>.hpp                         generate_platform_dependent_include

copy_<os_arch>.inline.hpp               generate_platform_dependent_include

cpCacheKlass.cpp                        bytecodes.hpp
cpCacheKlass.cpp                        collectedHeap.hpp
cpCacheKlass.cpp                        constantPoolOop.hpp
cpCacheKlass.cpp                        cpCacheKlass.hpp
1307
cpCacheKlass.cpp                        genOopClosures.inline.hpp
D
duke 已提交
1308
cpCacheKlass.cpp                        handles.inline.hpp
1309 1310
cpCacheKlass.cpp                        javaClasses.hpp
cpCacheKlass.cpp                        markSweep.inline.hpp
D
duke 已提交
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
cpCacheKlass.cpp                        oop.inline.hpp
cpCacheKlass.cpp                        permGen.hpp

cpCacheKlass.hpp                        arrayKlass.hpp
cpCacheKlass.hpp                        cpCacheOop.hpp
cpCacheKlass.hpp                        instanceKlass.hpp

cpCacheOop.cpp                          cpCacheOop.hpp
cpCacheOop.cpp                          handles.inline.hpp
cpCacheOop.cpp                          interpreter.hpp
cpCacheOop.cpp                          jvmtiRedefineClassesTrace.hpp
cpCacheOop.cpp                          markSweep.inline.hpp
cpCacheOop.cpp                          objArrayOop.hpp
cpCacheOop.cpp                          oop.inline.hpp
1325
cpCacheOop.cpp                          rewriter.hpp
D
duke 已提交
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
cpCacheOop.cpp                          universe.inline.hpp

cpCacheOop.hpp                          allocation.hpp
cpCacheOop.hpp                          array.hpp
cpCacheOop.hpp                          arrayOop.hpp
cpCacheOop.hpp                          bytecodes.hpp

cppInterpreter.cpp                      bytecodeInterpreter.hpp
cppInterpreter.cpp                      interpreter.hpp
cppInterpreter.cpp                      interpreterGenerator.hpp
cppInterpreter.cpp                      interpreterRuntime.hpp

cppInterpreter.hpp                      abstractInterpreter.hpp

cppInterpreter_<arch>.cpp               arguments.hpp
cppInterpreter_<arch>.cpp               arrayOop.hpp
cppInterpreter_<arch>.cpp               assembler.hpp
cppInterpreter_<arch>.cpp               bytecodeHistogram.hpp
cppInterpreter_<arch>.cpp               debug.hpp
cppInterpreter_<arch>.cpp               deoptimization.hpp
cppInterpreter_<arch>.cpp               frame.inline.hpp
1347
cppInterpreter_<arch>.cpp               interfaceSupport.hpp
D
duke 已提交
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
cppInterpreter_<arch>.cpp               interpreterRuntime.hpp
cppInterpreter_<arch>.cpp               interpreter.hpp
cppInterpreter_<arch>.cpp               interpreterGenerator.hpp
cppInterpreter_<arch>.cpp               jvmtiExport.hpp
cppInterpreter_<arch>.cpp               jvmtiThreadState.hpp
cppInterpreter_<arch>.cpp               methodDataOop.hpp
cppInterpreter_<arch>.cpp               methodOop.hpp
cppInterpreter_<arch>.cpp               oop.inline.hpp
cppInterpreter_<arch>.cpp               sharedRuntime.hpp
cppInterpreter_<arch>.cpp               stubRoutines.hpp
cppInterpreter_<arch>.cpp               synchronizer.hpp
cppInterpreter_<arch>.cpp               cppInterpreter.hpp
cppInterpreter_<arch>.cpp               timer.hpp
cppInterpreter_<arch>.cpp               vframeArray.hpp

cppInterpreter_<arch>.hpp          generate_platform_dependent_include

cppInterpreterGenerator_<arch>.hpp generate_platform_dependent_include

debug.cpp                               arguments.hpp
debug.cpp                               bytecodeHistogram.hpp
debug.cpp                               codeCache.hpp
debug.cpp                               collectedHeap.hpp
debug.cpp                               compileBroker.hpp
debug.cpp                               defaultStream.hpp
1373
debug.cpp                               disassembler.hpp
D
duke 已提交
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
debug.cpp                               events.hpp
debug.cpp                               frame.hpp
debug.cpp                               heapDumper.hpp
debug.cpp                               icBuffer.hpp
debug.cpp                               interpreter.hpp
debug.cpp                               java.hpp
debug.cpp                               markSweep.hpp
debug.cpp                               nmethod.hpp
debug.cpp                               oop.inline.hpp
debug.cpp                               os_<os_family>.inline.hpp
debug.cpp                               privilegedStack.hpp
debug.cpp                               resourceArea.hpp
debug.cpp                               sharedRuntime.hpp
debug.cpp                               stubCodeGenerator.hpp
debug.cpp                               stubRoutines.hpp
debug.cpp                               systemDictionary.hpp
debug.cpp                               thread_<os_family>.inline.hpp
debug.cpp                               top.hpp
debug.cpp                               universe.hpp
debug.cpp                               vframe.hpp
debug.cpp                               vmError.hpp
debug.cpp                               vtableStubs.hpp

debug.hpp                               globalDefinitions.hpp

debugInfo.cpp                           debugInfo.hpp
debugInfo.cpp                           debugInfoRec.hpp
debugInfo.cpp                           handles.inline.hpp
debugInfo.cpp                           nmethod.hpp

debugInfo.hpp                           compressedStream.hpp
debugInfo.hpp                           growableArray.hpp
debugInfo.hpp                           location.hpp
debugInfo.hpp                           nmethod.hpp
debugInfo.hpp                           oopRecorder.hpp
debugInfo.hpp                           stackValue.hpp

debugInfoRec.cpp                        debugInfoRec.hpp
debugInfoRec.cpp                        jvmtiExport.hpp
debugInfoRec.cpp                        scopeDesc.hpp

debugInfoRec.hpp                        ciClassList.hpp
debugInfoRec.hpp                        ciInstanceKlass.hpp
debugInfoRec.hpp                        ciMethod.hpp
debugInfoRec.hpp                        debugInfo.hpp
debugInfoRec.hpp                        growableArray.hpp
debugInfoRec.hpp                        location.hpp
debugInfoRec.hpp                        oop.hpp
debugInfoRec.hpp                        oopMap.hpp
debugInfoRec.hpp                        pcDesc.hpp

debug_<arch>.cpp                        codeCache.hpp
debug_<arch>.cpp                        debug.hpp
debug_<arch>.cpp                        frame.hpp
debug_<arch>.cpp                        init.hpp
debug_<arch>.cpp                        nmethod.hpp
debug_<arch>.cpp                        os.hpp
debug_<arch>.cpp                        top.hpp

defNewGeneration.cpp                    collectorCounters.hpp
defNewGeneration.cpp                    copy.hpp
defNewGeneration.cpp                    defNewGeneration.inline.hpp
defNewGeneration.cpp                    gcLocker.inline.hpp
defNewGeneration.cpp                    gcPolicyCounters.hpp
defNewGeneration.cpp                    genCollectedHeap.hpp
defNewGeneration.cpp                    genOopClosures.inline.hpp
defNewGeneration.cpp                    generationSpec.hpp
defNewGeneration.cpp                    instanceRefKlass.hpp
defNewGeneration.cpp                    iterator.hpp
defNewGeneration.cpp                    java.hpp
defNewGeneration.cpp                    oop.inline.hpp
defNewGeneration.cpp                    referencePolicy.hpp
defNewGeneration.cpp                    space.inline.hpp
1447
defNewGeneration.cpp                    spaceDecorator.hpp
D
duke 已提交
1448 1449 1450 1451 1452 1453 1454
defNewGeneration.cpp                    thread_<os_family>.inline.hpp

defNewGeneration.hpp                    ageTable.hpp
defNewGeneration.hpp                    cSpaceCounters.hpp
defNewGeneration.hpp                    generation.inline.hpp
defNewGeneration.hpp                    generationCounters.hpp

1455
defNewGeneration.inline.hpp             cardTableRS.hpp
D
duke 已提交
1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
defNewGeneration.inline.hpp             defNewGeneration.hpp
defNewGeneration.inline.hpp             space.hpp

defaultStream.hpp                       xmlstream.hpp

deoptimization.cpp                      allocation.inline.hpp
deoptimization.cpp                      biasedLocking.hpp
deoptimization.cpp                      bytecode.hpp
deoptimization.cpp                      debugInfoRec.hpp
deoptimization.cpp                      deoptimization.hpp
deoptimization.cpp                      events.hpp
deoptimization.cpp                      interfaceSupport.hpp
deoptimization.cpp                      interpreter.hpp
deoptimization.cpp                      jvmtiThreadState.hpp
deoptimization.cpp                      methodOop.hpp
deoptimization.cpp                      nmethod.hpp
deoptimization.cpp                      oop.inline.hpp
deoptimization.cpp                      oopFactory.hpp
deoptimization.cpp                      oopMapCache.hpp
deoptimization.cpp                      pcDesc.hpp
deoptimization.cpp                      resourceArea.hpp
deoptimization.cpp                      scopeDesc.hpp
deoptimization.cpp                      sharedRuntime.hpp
deoptimization.cpp                      signature.hpp
deoptimization.cpp                      stubRoutines.hpp
deoptimization.cpp                      systemDictionary.hpp
deoptimization.cpp                      thread.hpp
deoptimization.cpp                      vframe.hpp
deoptimization.cpp                      vframeArray.hpp
deoptimization.cpp                      vframe_hp.hpp
1486
deoptimization.cpp                      vmreg_<arch>.inline.hpp
D
duke 已提交
1487 1488 1489 1490 1491 1492
deoptimization.cpp                      xmlstream.hpp

deoptimization.hpp                      allocation.hpp
deoptimization.hpp                      frame.inline.hpp

depChecker_<arch>.cpp                   depChecker_<arch>.hpp
1493
depChecker_<arch>.cpp                   disassembler.hpp
D
duke 已提交
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
depChecker_<arch>.cpp                   hpi.hpp

dependencies.cpp                        ciArrayKlass.hpp
dependencies.cpp                        ciEnv.hpp
dependencies.cpp                        ciKlass.hpp
dependencies.cpp                        ciMethod.hpp
dependencies.cpp                        compileLog.hpp
dependencies.cpp                        copy.hpp
dependencies.cpp                        dependencies.hpp
dependencies.cpp                        handles.inline.hpp
dependencies.cpp                        oop.inline.hpp

dependencies.hpp                        ciKlass.hpp
dependencies.hpp                        compressedStream.hpp
dependencies.hpp                        growableArray.hpp
dependencies.hpp                        nmethod.hpp

dictionary.cpp                          classLoadingService.hpp
dictionary.cpp                          dictionary.hpp
dictionary.cpp                          hashtable.inline.hpp
dictionary.cpp                          jvmtiRedefineClassesTrace.hpp
dictionary.cpp                          oop.inline.hpp
dictionary.cpp                          systemDictionary.hpp

dictionary.hpp                          hashtable.hpp
dictionary.hpp                          instanceKlass.hpp
dictionary.hpp                          oop.hpp
dictionary.hpp                          systemDictionary.hpp

1523
disassembler_<arch>.hpp                 generate_platform_dependent_include
D
duke 已提交
1524

1525 1526 1527 1528 1529 1530 1531 1532
disassembler.cpp                        cardTableModRefBS.hpp
disassembler.cpp                        codeCache.hpp
disassembler.cpp                        collectedHeap.hpp
disassembler.cpp                        depChecker_<arch>.hpp
disassembler.cpp                        disassembler.hpp
disassembler.cpp                        fprofiler.hpp
disassembler.cpp                        handles.inline.hpp
disassembler.cpp                        hpi.hpp
1533
disassembler.cpp                        javaClasses.hpp
1534 1535
disassembler.cpp                        stubCodeGenerator.hpp
disassembler.cpp                        stubRoutines.hpp
D
duke 已提交
1536

1537 1538
disassembler.hpp                        globals.hpp
disassembler.hpp                        os_<os_family>.inline.hpp
D
duke 已提交
1539 1540 1541 1542 1543 1544 1545 1546

dtraceAttacher.cpp                      codeCache.hpp
dtraceAttacher.cpp                      deoptimization.hpp
dtraceAttacher.cpp                      dtraceAttacher.hpp
dtraceAttacher.cpp                      resourceArea.hpp
dtraceAttacher.cpp                      vmThread.hpp
dtraceAttacher.cpp                      vm_operations.hpp

1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570
dtraceJSDT.cpp                          allocation.hpp
dtraceJSDT.cpp                          codeBlob.hpp
dtraceJSDT.cpp                          dtraceJSDT.hpp
dtraceJSDT.cpp                          exceptions.hpp
dtraceJSDT.cpp                          globalDefinitions.hpp
dtraceJSDT.cpp                          javaClasses.hpp
dtraceJSDT.cpp                          jniHandles.hpp
dtraceJSDT.cpp                          jvm.h
dtraceJSDT.cpp                          os.hpp
dtraceJSDT.cpp                          utf8.hpp

dtraceJSDT.hpp                          nativeInst_<arch>.hpp
dtraceJSDT.hpp                          nmethod.hpp

dtraceJSDT_<os_family>.cpp              allocation.hpp
dtraceJSDT_<os_family>.cpp              codeBlob.hpp
dtraceJSDT_<os_family>.cpp              dtraceJSDT.hpp
dtraceJSDT_<os_family>.cpp              globalDefinitions.hpp
dtraceJSDT_<os_family>.cpp              javaClasses.hpp
dtraceJSDT_<os_family>.cpp              jniHandles.hpp
dtraceJSDT_<os_family>.cpp              jvm.h
dtraceJSDT_<os_family>.cpp              os.hpp
dtraceJSDT_<os_family>.cpp              signature.hpp

D
duke 已提交
1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
// dump is jck optional, put cpp deps in includeDB_features

events.cpp                              allocation.inline.hpp
events.cpp                              events.hpp
events.cpp                              mutexLocker.hpp
events.cpp                              osThread.hpp
events.cpp                              threadLocalStorage.hpp
events.cpp                              thread_<os_family>.inline.hpp
events.cpp                              timer.hpp

events.hpp                              allocation.hpp
events.hpp                              top.hpp

evmCompat.cpp                           debug.hpp

exceptionHandlerTable.cpp               allocation.inline.hpp
exceptionHandlerTable.cpp               exceptionHandlerTable.hpp
exceptionHandlerTable.cpp               nmethod.hpp

exceptionHandlerTable.hpp               allocation.hpp
exceptionHandlerTable.hpp               methodOop.hpp

exceptions.cpp                          compileBroker.hpp
exceptions.cpp                          events.hpp
exceptions.cpp                          exceptions.hpp
exceptions.cpp                          init.hpp
exceptions.cpp                          java.hpp
exceptions.cpp                          javaCalls.hpp
exceptions.cpp                          oop.inline.hpp
exceptions.cpp                          systemDictionary.hpp
exceptions.cpp                          threadCritical.hpp
exceptions.cpp                          thread_<os_family>.inline.hpp
exceptions.cpp                          vmSymbols.hpp

exceptions.hpp                          allocation.hpp
exceptions.hpp                          oopsHierarchy.hpp
exceptions.hpp                          sizes.hpp

fieldDescriptor.cpp                     fieldDescriptor.hpp
fieldDescriptor.cpp                     handles.inline.hpp
fieldDescriptor.cpp                     instanceKlass.hpp
fieldDescriptor.cpp                     resourceArea.hpp
fieldDescriptor.cpp                     signature.hpp
fieldDescriptor.cpp                     systemDictionary.hpp
fieldDescriptor.cpp                     universe.inline.hpp
fieldDescriptor.cpp                     vmSymbols.hpp

fieldDescriptor.hpp                     accessFlags.hpp
fieldDescriptor.hpp                     constantPoolOop.hpp
fieldDescriptor.hpp                     constantTag.hpp
fieldDescriptor.hpp                     fieldType.hpp
fieldDescriptor.hpp                     klassOop.hpp
fieldDescriptor.hpp                     oop.inline.hpp
fieldDescriptor.hpp                     symbolOop.hpp

fieldType.cpp                           fieldType.hpp
fieldType.cpp                           oop.inline.hpp
fieldType.cpp                           oopFactory.hpp
fieldType.cpp                           signature.hpp
fieldType.cpp                           systemDictionary.hpp
fieldType.cpp                           typeArrayKlass.hpp

fieldType.hpp                           allocation.hpp
fieldType.hpp                           symbolOop.hpp

filemap.cpp                             arguments.hpp
filemap.cpp                             classLoader.hpp
filemap.cpp                             defaultStream.hpp
filemap.cpp                             filemap.hpp
filemap.cpp                             hpi_<os_family>.hpp
filemap.cpp                             java.hpp
filemap.cpp                             os.hpp
filemap.cpp                             symbolTable.hpp

filemap.hpp                             compactingPermGenGen.hpp
filemap.hpp                             space.hpp

// forte is jck optional, put cpp deps in includeDB_features
// fprofiler is jck optional, put cpp deps in includeDB_features

fprofiler.hpp                           thread_<os_family>.inline.hpp
fprofiler.hpp                           timer.hpp

frame.cpp                               collectedHeap.inline.hpp
frame.cpp                               frame.inline.hpp
frame.cpp                               handles.inline.hpp
frame.cpp                               interpreter.hpp
frame.cpp                               javaCalls.hpp
frame.cpp                               markOop.hpp
frame.cpp                               methodDataOop.hpp
frame.cpp                               methodOop.hpp
frame.cpp                               monitorChunk.hpp
frame.cpp                               nativeInst_<arch>.hpp
frame.cpp                               oop.inline.hpp
frame.cpp                               oop.inline2.hpp
frame.cpp                               oopMapCache.hpp
frame.cpp                               resourceArea.hpp
frame.cpp                               sharedRuntime.hpp
frame.cpp                               signature.hpp
frame.cpp                               stubCodeGenerator.hpp
frame.cpp                               stubRoutines.hpp
frame.cpp                               universe.inline.hpp

frame.hpp                               assembler.hpp
frame.hpp                               methodOop.hpp
frame.hpp                               monitorChunk.hpp
frame.hpp                               registerMap.hpp
frame.hpp                               synchronizer.hpp
frame.hpp                               top.hpp

frame.inline.hpp                        bytecodeInterpreter.hpp
frame.inline.hpp                        bytecodeInterpreter.inline.hpp
frame.inline.hpp                        frame.hpp
frame.inline.hpp                        interpreter.hpp
frame.inline.hpp                        jniTypes_<arch>.hpp
frame.inline.hpp                        methodOop.hpp
frame.inline.hpp                        signature.hpp

frame_<arch>.cpp                        frame.inline.hpp
frame_<arch>.cpp                        handles.inline.hpp
frame_<arch>.cpp                        interpreter.hpp
frame_<arch>.cpp                        javaCalls.hpp
frame_<arch>.cpp                        markOop.hpp
frame_<arch>.cpp                        methodOop.hpp
frame_<arch>.cpp                        monitorChunk.hpp
frame_<arch>.cpp                        oop.inline.hpp
frame_<arch>.cpp                        resourceArea.hpp
frame_<arch>.cpp                        signature.hpp
frame_<arch>.cpp                        stubCodeGenerator.hpp
frame_<arch>.cpp                        stubRoutines.hpp
frame_<arch>.cpp                        vmreg_<arch>.inline.hpp

frame_<arch>.hpp                        generate_platform_dependent_include
frame_<arch>.hpp                        synchronizer.hpp
frame_<arch>.hpp                        top.hpp

frame_<arch>.inline.hpp                 generate_platform_dependent_include

gcLocker.cpp                            gcLocker.inline.hpp
gcLocker.cpp                            sharedHeap.hpp
1711
gcLocker.cpp                            resourceArea.hpp
D
duke 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800

gcLocker.hpp                            collectedHeap.hpp
gcLocker.hpp                            genCollectedHeap.hpp
gcLocker.hpp                            oop.hpp
gcLocker.hpp                            os_<os_family>.inline.hpp
gcLocker.hpp                            thread_<os_family>.inline.hpp
gcLocker.hpp                            universe.hpp

gcLocker.inline.hpp                     gcLocker.hpp

genCollectedHeap.cpp                    aprofiler.hpp
genCollectedHeap.cpp                    biasedLocking.hpp
genCollectedHeap.cpp                    collectedHeap.inline.hpp
genCollectedHeap.cpp                    collectorCounters.hpp
genCollectedHeap.cpp                    compactPermGen.hpp
genCollectedHeap.cpp                    filemap.hpp
genCollectedHeap.cpp                    fprofiler.hpp
genCollectedHeap.cpp                    gcLocker.inline.hpp
genCollectedHeap.cpp                    genCollectedHeap.hpp
genCollectedHeap.cpp                    genOopClosures.inline.hpp
genCollectedHeap.cpp                    generation.inline.hpp
genCollectedHeap.cpp                    generationSpec.hpp
genCollectedHeap.cpp                    handles.hpp
genCollectedHeap.cpp                    handles.inline.hpp
genCollectedHeap.cpp                    icBuffer.hpp
genCollectedHeap.cpp                    java.hpp
genCollectedHeap.cpp                    memoryService.hpp
genCollectedHeap.cpp                    oop.inline.hpp
genCollectedHeap.cpp                    oop.inline2.hpp
genCollectedHeap.cpp                    permGen.hpp
genCollectedHeap.cpp                    resourceArea.hpp
genCollectedHeap.cpp                    sharedHeap.hpp
genCollectedHeap.cpp                    space.hpp
genCollectedHeap.cpp                    symbolTable.hpp
genCollectedHeap.cpp                    systemDictionary.hpp
genCollectedHeap.cpp                    vmGCOperations.hpp
genCollectedHeap.cpp                    vmSymbols.hpp
genCollectedHeap.cpp                    vmThread.hpp
genCollectedHeap.cpp                    workgroup.hpp

genCollectedHeap.hpp                    adaptiveSizePolicy.hpp
genCollectedHeap.hpp                    collectorPolicy.hpp
genCollectedHeap.hpp                    generation.hpp
genCollectedHeap.hpp                    sharedHeap.hpp

genMarkSweep.cpp                        codeCache.hpp
genMarkSweep.cpp                        collectedHeap.inline.hpp
genMarkSweep.cpp                        copy.hpp
genMarkSweep.cpp                        events.hpp
genMarkSweep.cpp                        fprofiler.hpp
genMarkSweep.cpp                        genCollectedHeap.hpp
genMarkSweep.cpp                        genMarkSweep.hpp
genMarkSweep.cpp                        genOopClosures.inline.hpp
genMarkSweep.cpp                        generation.inline.hpp
genMarkSweep.cpp                        handles.inline.hpp
genMarkSweep.cpp                        icBuffer.hpp
genMarkSweep.cpp                        instanceRefKlass.hpp
genMarkSweep.cpp                        javaClasses.hpp
genMarkSweep.cpp                        jvmtiExport.hpp
genMarkSweep.cpp                        modRefBarrierSet.hpp
genMarkSweep.cpp                        oop.inline.hpp
genMarkSweep.cpp                        referencePolicy.hpp
genMarkSweep.cpp                        space.hpp
genMarkSweep.cpp                        symbolTable.hpp
genMarkSweep.cpp                        synchronizer.hpp
genMarkSweep.cpp                        systemDictionary.hpp
genMarkSweep.cpp                        thread_<os_family>.inline.hpp
genMarkSweep.cpp                        vmSymbols.hpp
genMarkSweep.cpp                        vmThread.hpp

genMarkSweep.hpp                        markSweep.hpp

genOopClosures.hpp                      iterator.hpp
genOopClosures.hpp                      oop.hpp

genOopClosures.inline.hpp               cardTableRS.hpp
genOopClosures.inline.hpp               defNewGeneration.hpp
genOopClosures.inline.hpp               genCollectedHeap.hpp
genOopClosures.inline.hpp               genOopClosures.hpp
genOopClosures.inline.hpp               genRemSet.hpp
genOopClosures.inline.hpp               generation.hpp
genOopClosures.inline.hpp               sharedHeap.hpp
genOopClosures.inline.hpp               space.hpp

genRemSet.cpp                           cardTableRS.hpp
genRemSet.cpp                           genRemSet.hpp

genRemSet.hpp                           oop.hpp

1801
generateOopMap.cpp                      bitMap.inline.hpp
D
duke 已提交
1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
generateOopMap.cpp                      bytecodeStream.hpp
generateOopMap.cpp                      generateOopMap.hpp
generateOopMap.cpp                      handles.inline.hpp
generateOopMap.cpp                      java.hpp
generateOopMap.cpp                      oop.inline.hpp
generateOopMap.cpp                      relocator.hpp
generateOopMap.cpp                      symbolOop.hpp

generateOopMap.hpp                      allocation.inline.hpp
generateOopMap.hpp                      bytecodeStream.hpp
generateOopMap.hpp                      methodOop.hpp
generateOopMap.hpp                      oopsHierarchy.hpp
generateOopMap.hpp                      signature.hpp
generateOopMap.hpp                      universe.inline.hpp

generation.cpp                          allocation.inline.hpp
generation.cpp                          blockOffsetTable.hpp
generation.cpp                          cardTableRS.hpp
generation.cpp                          collectedHeap.inline.hpp
generation.cpp                          copy.hpp
generation.cpp                          events.hpp
generation.cpp                          gcLocker.inline.hpp
generation.cpp                          genCollectedHeap.hpp
generation.cpp                          genMarkSweep.hpp
generation.cpp                          genOopClosures.hpp
generation.cpp                          genOopClosures.inline.hpp
generation.cpp                          generation.hpp
generation.cpp                          generation.inline.hpp
generation.cpp                          java.hpp
generation.cpp                          oop.inline.hpp
1832
generation.cpp                          spaceDecorator.hpp
D
duke 已提交
1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848
generation.cpp                          space.inline.hpp

generation.hpp                          allocation.hpp
generation.hpp                          collectorCounters.hpp
generation.hpp                          memRegion.hpp
generation.hpp                          mutex.hpp
generation.hpp                          perfData.hpp
generation.hpp                          referenceProcessor.hpp
generation.hpp                          universe.hpp
generation.hpp                          virtualspace.hpp
generation.hpp                          watermark.hpp

generation.inline.hpp                   genCollectedHeap.hpp
generation.inline.hpp                   generation.hpp
generation.inline.hpp                   space.hpp

1849 1850
genOopClosures.hpp                      oop.hpp

D
duke 已提交
1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
generationSpec.cpp                      compactPermGen.hpp
generationSpec.cpp                      defNewGeneration.hpp
generationSpec.cpp                      filemap.hpp
generationSpec.cpp                      genRemSet.hpp
generationSpec.cpp                      generationSpec.hpp
generationSpec.cpp                      java.hpp
generationSpec.cpp                      tenuredGeneration.hpp

generationSpec.hpp                      generation.hpp
generationSpec.hpp                      permGen.hpp

globalDefinitions.cpp                   globalDefinitions.hpp
globalDefinitions.cpp                   os.hpp
globalDefinitions.cpp                   top.hpp

globalDefinitions.hpp                   globalDefinitions_<compiler>.hpp
globalDefinitions.hpp                   macros.hpp

globalDefinitions_<arch>.hpp            generate_platform_dependent_include

globalDefinitions_<compiler>.hpp        jni.h

globals.cpp                             allocation.inline.hpp
globals.cpp                             arguments.hpp
globals.cpp                             globals.hpp
globals.cpp                             globals_extension.hpp
globals.cpp                             oop.inline.hpp
globals.cpp                             ostream.hpp
globals.cpp                             top.hpp

globals.hpp                             debug.hpp
globals.hpp                             globals_<arch>.hpp
globals.hpp                             globals_<os_arch>.hpp
globals.hpp                             globals_<os_family>.hpp

globals_extension.hpp                   globals.hpp
globals_extension.hpp                   top.hpp

growableArray.cpp                       growableArray.hpp
growableArray.cpp                       resourceArea.hpp
growableArray.cpp                       thread_<os_family>.inline.hpp

growableArray.hpp                       allocation.hpp
growableArray.hpp                       allocation.inline.hpp
growableArray.hpp                       debug.hpp
growableArray.hpp                       globalDefinitions.hpp
growableArray.hpp                       top.hpp

handles.cpp                             allocation.inline.hpp
handles.cpp                             handles.inline.hpp
handles.cpp                             oop.inline.hpp
handles.cpp                             os_<os_family>.inline.hpp
handles.cpp                             thread_<os_family>.inline.hpp

handles.hpp                             klass.hpp
handles.hpp                             klassOop.hpp
handles.hpp                             top.hpp

handles.inline.hpp                      handles.hpp
handles.inline.hpp                      thread_<os_family>.inline.hpp

hashtable.cpp                           allocation.inline.hpp
hashtable.cpp                           dtrace.hpp
hashtable.cpp                           hashtable.hpp
hashtable.cpp                           hashtable.inline.hpp
hashtable.cpp                           oop.inline.hpp
hashtable.cpp                           resourceArea.hpp
hashtable.cpp                           safepoint.hpp

hashtable.hpp                           allocation.hpp
hashtable.hpp                           handles.hpp
hashtable.hpp                           oop.hpp
hashtable.hpp                           symbolOop.hpp

hashtable.inline.hpp                    allocation.inline.hpp
hashtable.inline.hpp                    hashtable.hpp

heap.cpp                                heap.hpp
heap.cpp                                oop.inline.hpp
heap.cpp                                os.hpp

heap.hpp                                allocation.hpp
heap.hpp                                virtualspace.hpp

// heapDumper is jck optional, put cpp deps in includeDB_features

heapDumper.hpp                          allocation.hpp
heapDumper.hpp                          klassOop.hpp
heapDumper.hpp                          oop.hpp
heapDumper.hpp                          os.hpp

// heapInspection is jck optional, put cpp deps in includeDB_features

heapInspection.hpp                      allocation.inline.hpp
heapInspection.hpp                      oop.inline.hpp

histogram.cpp                           histogram.hpp
histogram.cpp                           oop.inline.hpp

histogram.hpp                           allocation.hpp
histogram.hpp                           growableArray.hpp
histogram.hpp                           os.hpp
histogram.hpp                           os_<os_family>.inline.hpp

hpi.cpp                                 hpi.hpp
hpi.cpp                                 jvm.h

hpi.hpp                                 globalDefinitions.hpp
hpi.hpp                                 hpi_imported.h
hpi.hpp                                 os.hpp
hpi.hpp                                 top.hpp

hpi_<os_family>.cpp                     hpi.hpp
hpi_<os_family>.cpp                     oop.inline.hpp
hpi_<os_family>.cpp                     os.hpp

hpi_imported.h                          jni.h

1969
icBuffer.cpp                            assembler_<arch>.inline.hpp
D
duke 已提交
1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
icBuffer.cpp                            collectedHeap.inline.hpp
icBuffer.cpp                            compiledIC.hpp
icBuffer.cpp                            icBuffer.hpp
icBuffer.cpp                            interpreter.hpp
icBuffer.cpp                            linkResolver.hpp
icBuffer.cpp                            methodOop.hpp
icBuffer.cpp                            mutexLocker.hpp
icBuffer.cpp                            nmethod.hpp
icBuffer.cpp                            oop.inline.hpp
icBuffer.cpp                            oop.inline2.hpp
icBuffer.cpp                            resourceArea.hpp
icBuffer.cpp                            scopeDesc.hpp
icBuffer.cpp                            stubRoutines.hpp
icBuffer.cpp                            universe.inline.hpp

icBuffer.hpp                            allocation.hpp
icBuffer.hpp                            bytecodes.hpp
icBuffer.hpp                            stubs.hpp

icBuffer_<arch>.cpp                     assembler.hpp
1990
icBuffer_<arch>.cpp                     assembler_<arch>.inline.hpp
D
duke 已提交
1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
icBuffer_<arch>.cpp                     bytecodes.hpp
icBuffer_<arch>.cpp                     collectedHeap.inline.hpp
icBuffer_<arch>.cpp                     icBuffer.hpp
icBuffer_<arch>.cpp                     nativeInst_<arch>.hpp
icBuffer_<arch>.cpp                     oop.inline.hpp
icBuffer_<arch>.cpp                     oop.inline2.hpp
icBuffer_<arch>.cpp                     resourceArea.hpp

icache.cpp                              icache.hpp
icache.cpp                              resourceArea.hpp

icache.hpp                              allocation.hpp
icache.hpp                              stubCodeGenerator.hpp

2005
icache_<arch>.cpp                       assembler_<arch>.inline.hpp
D
duke 已提交
2006 2007 2008 2009 2010 2011
icache_<arch>.cpp                       icache.hpp

icache_<arch>.hpp                       generate_platform_dependent_include

init.cpp                                bytecodes.hpp
init.cpp                                collectedHeap.hpp
2012
init.cpp                                handles.inline.hpp
D
duke 已提交
2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033
init.cpp                                icBuffer.hpp
init.cpp                                icache.hpp
init.cpp                                init.hpp
init.cpp                                safepoint.hpp
init.cpp                                sharedRuntime.hpp
init.cpp                                universe.hpp

init.hpp                                top.hpp

instanceKlass.cpp                       collectedHeap.inline.hpp
instanceKlass.cpp                       compileBroker.hpp
instanceKlass.cpp                       fieldDescriptor.hpp
instanceKlass.cpp                       genOopClosures.inline.hpp
instanceKlass.cpp                       handles.inline.hpp
instanceKlass.cpp                       instanceKlass.hpp
instanceKlass.cpp                       instanceOop.hpp
instanceKlass.cpp                       javaCalls.hpp
instanceKlass.cpp                       javaClasses.hpp
instanceKlass.cpp                       jvmti.h
instanceKlass.cpp                       jvmtiExport.hpp
instanceKlass.cpp                       jvmtiRedefineClassesTrace.hpp
2034
instanceKlass.cpp                       markSweep.inline.hpp
D
duke 已提交
2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050
instanceKlass.cpp                       methodOop.hpp
instanceKlass.cpp                       mutexLocker.hpp
instanceKlass.cpp                       objArrayKlassKlass.hpp
instanceKlass.cpp                       oop.inline.hpp
instanceKlass.cpp                       oopFactory.hpp
instanceKlass.cpp                       oopMapCache.hpp
instanceKlass.cpp                       permGen.hpp
instanceKlass.cpp                       rewriter.hpp
instanceKlass.cpp                       symbolOop.hpp
instanceKlass.cpp                       systemDictionary.hpp
instanceKlass.cpp                       threadService.hpp
instanceKlass.cpp                       thread_<os_family>.inline.hpp
instanceKlass.cpp                       verifier.hpp
instanceKlass.cpp                       vmSymbols.hpp

instanceKlass.hpp                       accessFlags.hpp
2051
instanceKlass.hpp                       bitMap.inline.hpp
D
duke 已提交
2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069
instanceKlass.hpp                       constMethodOop.hpp
instanceKlass.hpp                       constantPoolOop.hpp
instanceKlass.hpp                       handles.hpp
instanceKlass.hpp                       instanceOop.hpp
instanceKlass.hpp                       klassOop.hpp
instanceKlass.hpp                       klassVtable.hpp
instanceKlass.hpp                       objArrayOop.hpp
instanceKlass.hpp                       os.hpp

instanceKlassKlass.cpp                  collectedHeap.inline.hpp
instanceKlassKlass.cpp                  constantPoolOop.hpp
instanceKlassKlass.cpp                  fieldDescriptor.hpp
instanceKlassKlass.cpp                  gcLocker.hpp
instanceKlassKlass.cpp                  instanceKlass.hpp
instanceKlassKlass.cpp                  instanceKlassKlass.hpp
instanceKlassKlass.cpp                  instanceRefKlass.hpp
instanceKlassKlass.cpp                  javaClasses.hpp
instanceKlassKlass.cpp                  jvmtiExport.hpp
2070
instanceKlassKlass.cpp                  markSweep.inline.hpp
D
duke 已提交
2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091
instanceKlassKlass.cpp                  objArrayKlassKlass.hpp
instanceKlassKlass.cpp                  objArrayOop.hpp
instanceKlassKlass.cpp                  oop.inline.hpp
instanceKlassKlass.cpp                  oop.inline2.hpp
instanceKlassKlass.cpp                  oopMapCache.hpp
instanceKlassKlass.cpp                  symbolOop.hpp
instanceKlassKlass.cpp                  systemDictionary.hpp
instanceKlassKlass.cpp                  typeArrayOop.hpp

instanceKlassKlass.hpp                  klassKlass.hpp

instanceOop.cpp                         instanceOop.hpp

instanceOop.hpp                         oop.hpp

instanceRefKlass.cpp                    collectedHeap.hpp
instanceRefKlass.cpp                    collectedHeap.inline.hpp
instanceRefKlass.cpp                    genCollectedHeap.hpp
instanceRefKlass.cpp                    genOopClosures.inline.hpp
instanceRefKlass.cpp                    instanceRefKlass.hpp
instanceRefKlass.cpp                    javaClasses.hpp
2092
instanceRefKlass.cpp                    markSweep.inline.hpp
D
duke 已提交
2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129
instanceRefKlass.cpp                    oop.inline.hpp
instanceRefKlass.cpp                    preserveException.hpp
instanceRefKlass.cpp                    systemDictionary.hpp

instanceRefKlass.hpp                    instanceKlass.hpp

interfaceSupport.cpp                    collectedHeap.hpp
interfaceSupport.cpp                    collectedHeap.inline.hpp
interfaceSupport.cpp                    genCollectedHeap.hpp
interfaceSupport.cpp                    init.hpp
interfaceSupport.cpp                    interfaceSupport.hpp
interfaceSupport.cpp                    markSweep.hpp
interfaceSupport.cpp                    preserveException.hpp
interfaceSupport.cpp                    resourceArea.hpp
interfaceSupport.cpp                    threadLocalStorage.hpp
interfaceSupport.cpp                    vframe.hpp

interfaceSupport.hpp                    gcLocker.hpp
interfaceSupport.hpp                    globalDefinitions.hpp
interfaceSupport.hpp                    handles.inline.hpp
interfaceSupport.hpp                    mutexLocker.hpp
interfaceSupport.hpp                    orderAccess.hpp
interfaceSupport.hpp                    os.hpp
interfaceSupport.hpp                    preserveException.hpp
interfaceSupport.hpp                    safepoint.hpp
interfaceSupport.hpp                    thread_<os_family>.inline.hpp
interfaceSupport.hpp                    top.hpp
interfaceSupport.hpp                    vmThread.hpp

interfaceSupport_<os_family>.hpp        generate_platform_dependent_include

interp_masm_<arch_model>.cpp            arrayOop.hpp
interp_masm_<arch_model>.cpp            biasedLocking.hpp
interp_masm_<arch_model>.cpp            interp_masm_<arch_model>.hpp
interp_masm_<arch_model>.cpp            interpreterRuntime.hpp
interp_masm_<arch_model>.cpp            interpreter.hpp
interp_masm_<arch_model>.cpp            jvmtiExport.hpp
2130
interp_masm_<arch_model>.cpp            jvmtiRedefineClassesTrace.hpp
D
duke 已提交
2131 2132 2133 2134 2135 2136 2137 2138
interp_masm_<arch_model>.cpp            jvmtiThreadState.hpp
interp_masm_<arch_model>.cpp            markOop.hpp
interp_masm_<arch_model>.cpp            methodDataOop.hpp
interp_masm_<arch_model>.cpp            methodOop.hpp
interp_masm_<arch_model>.cpp            sharedRuntime.hpp
interp_masm_<arch_model>.cpp            synchronizer.hpp
interp_masm_<arch_model>.cpp            thread_<os_family>.inline.hpp

2139
interp_masm_<arch_model>.hpp            assembler_<arch>.inline.hpp
D
duke 已提交
2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212
interp_masm_<arch_model>.hpp            invocationCounter.hpp

interpreter.cpp                         allocation.inline.hpp
interpreter.cpp                         arrayOop.hpp
interpreter.cpp                         assembler.hpp
interpreter.cpp                         bytecodeHistogram.hpp
interpreter.cpp                         bytecodeInterpreter.hpp
interpreter.cpp                         forte.hpp
interpreter.cpp                         handles.inline.hpp
interpreter.cpp                         interpreter.hpp
interpreter.cpp                         interpreterRuntime.hpp
interpreter.cpp                         interpreter.hpp
interpreter.cpp                         jvmtiExport.hpp
interpreter.cpp                         methodDataOop.hpp
interpreter.cpp                         methodOop.hpp
interpreter.cpp                         oop.inline.hpp
interpreter.cpp                         resourceArea.hpp
interpreter.cpp                         sharedRuntime.hpp
interpreter.cpp                         stubRoutines.hpp
interpreter.cpp                         templateTable.hpp
interpreter.cpp                         timer.hpp
interpreter.cpp                         vtune.hpp

interpreter.hpp                         cppInterpreter.hpp
interpreter.hpp                         stubs.hpp
interpreter.hpp                         templateInterpreter.hpp

interpreterRT_<arch_model>.cpp          allocation.inline.hpp
interpreterRT_<arch_model>.cpp          handles.inline.hpp
interpreterRT_<arch_model>.cpp          icache.hpp
interpreterRT_<arch_model>.cpp          interfaceSupport.hpp
interpreterRT_<arch_model>.cpp          interpreterRuntime.hpp
interpreterRT_<arch_model>.cpp          interpreter.hpp
interpreterRT_<arch_model>.cpp          methodOop.hpp
interpreterRT_<arch_model>.cpp          oop.inline.hpp
interpreterRT_<arch_model>.cpp          signature.hpp
interpreterRT_<arch_model>.cpp          universe.inline.hpp

interpreterRT_<arch>.hpp                allocation.hpp
interpreterRT_<arch>.hpp                generate_platform_dependent_include

interpreterRuntime.cpp                  biasedLocking.hpp
interpreterRuntime.cpp                  collectedHeap.hpp
interpreterRuntime.cpp                  compilationPolicy.hpp
interpreterRuntime.cpp                  constantPoolOop.hpp
interpreterRuntime.cpp                  cpCacheOop.hpp
interpreterRuntime.cpp                  deoptimization.hpp
interpreterRuntime.cpp                  events.hpp
interpreterRuntime.cpp                  fieldDescriptor.hpp
interpreterRuntime.cpp                  handles.inline.hpp
interpreterRuntime.cpp                  instanceKlass.hpp
interpreterRuntime.cpp                  interfaceSupport.hpp
interpreterRuntime.cpp                  interpreterRuntime.hpp
interpreterRuntime.cpp                  interpreter.hpp
interpreterRuntime.cpp                  java.hpp
interpreterRuntime.cpp                  jfieldIDWorkaround.hpp
interpreterRuntime.cpp                  jvmtiExport.hpp
interpreterRuntime.cpp                  linkResolver.hpp
interpreterRuntime.cpp                  methodDataOop.hpp
interpreterRuntime.cpp                  nativeLookup.hpp
interpreterRuntime.cpp                  objArrayKlass.hpp
interpreterRuntime.cpp                  oop.inline.hpp
interpreterRuntime.cpp                  oopFactory.hpp
interpreterRuntime.cpp                  osThread.hpp
interpreterRuntime.cpp                  sharedRuntime.hpp
interpreterRuntime.cpp                  stubRoutines.hpp
interpreterRuntime.cpp                  symbolOop.hpp
interpreterRuntime.cpp                  synchronizer.hpp
interpreterRuntime.cpp                  systemDictionary.hpp
interpreterRuntime.cpp                  templateTable.hpp
interpreterRuntime.cpp                  threadCritical.hpp
interpreterRuntime.cpp                  universe.inline.hpp
interpreterRuntime.cpp                  vmSymbols.hpp
2213
interpreterRuntime.cpp                  vm_version_<arch>.hpp
D
duke 已提交
2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236

interpreterRuntime.hpp                  bytecode.hpp
interpreterRuntime.hpp                  frame.inline.hpp
interpreterRuntime.hpp                  linkResolver.hpp
interpreterRuntime.hpp                  methodOop.hpp
interpreterRuntime.hpp                  signature.hpp
interpreterRuntime.hpp                  thread_<os_family>.inline.hpp
interpreterRuntime.hpp                  top.hpp
interpreterRuntime.hpp                  universe.hpp

interpreter_<arch_model>.cpp            arguments.hpp
interpreter_<arch_model>.cpp            arrayOop.hpp
interpreter_<arch_model>.cpp            assembler.hpp
interpreter_<arch_model>.cpp            bytecodeHistogram.hpp
interpreter_<arch_model>.cpp            debug.hpp
interpreter_<arch_model>.cpp            deoptimization.hpp
interpreter_<arch_model>.cpp            frame.inline.hpp
interpreter_<arch_model>.cpp            interpreterRuntime.hpp
interpreter_<arch_model>.cpp            interpreter.hpp
interpreter_<arch_model>.cpp            interpreterGenerator.hpp
interpreter_<arch_model>.cpp            jvmtiExport.hpp
interpreter_<arch_model>.cpp            jvmtiThreadState.hpp
interpreter_<arch_model>.cpp            methodDataOop.hpp
2237
interpreter_<arch_model>.cpp            methodHandles.hpp
D
duke 已提交
2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
interpreter_<arch_model>.cpp            methodOop.hpp
interpreter_<arch_model>.cpp            oop.inline.hpp
interpreter_<arch_model>.cpp            sharedRuntime.hpp
interpreter_<arch_model>.cpp            stubRoutines.hpp
interpreter_<arch_model>.cpp            synchronizer.hpp
interpreter_<arch_model>.cpp            templateTable.hpp
interpreter_<arch_model>.cpp            timer.hpp
interpreter_<arch_model>.cpp            vframeArray.hpp

interpreter_<arch>.hpp                  generate_platform_dependent_include

interpreterGenerator.hpp                cppInterpreter.hpp
interpreterGenerator.hpp                cppInterpreterGenerator.hpp
interpreterGenerator.hpp                templateInterpreter.hpp
interpreterGenerator.hpp                templateInterpreterGenerator.hpp

interpreterGenerator_<arch>.hpp         generate_platform_dependent_include

invocationCounter.cpp                   frame.hpp
invocationCounter.cpp                   handles.inline.hpp
invocationCounter.cpp                   invocationCounter.hpp

invocationCounter.hpp                   allocation.hpp
invocationCounter.hpp                   exceptions.hpp
invocationCounter.hpp                   handles.hpp

2264 2265 2266 2267 2268
intHisto.cpp				intHisto.hpp

intHisto.hpp				allocation.hpp
intHisto.hpp                            growableArray.hpp

D
duke 已提交
2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315
iterator.cpp                            iterator.hpp
iterator.cpp                            oop.inline.hpp

iterator.hpp                            allocation.hpp
iterator.hpp                            memRegion.hpp
iterator.hpp                            prefetch.hpp
iterator.hpp                            top.hpp

java.cpp                                aprofiler.hpp
java.cpp                                arguments.hpp
java.cpp                                biasedLocking.hpp
java.cpp                                bytecodeHistogram.hpp
java.cpp                                classLoader.hpp
java.cpp                                codeCache.hpp
java.cpp                                compilationPolicy.hpp
java.cpp                                compileBroker.hpp
java.cpp                                compilerOracle.hpp
java.cpp                                constantPoolOop.hpp
java.cpp                                dtrace.hpp
java.cpp                                fprofiler.hpp
java.cpp                                genCollectedHeap.hpp
java.cpp                                generateOopMap.hpp
java.cpp                                globalDefinitions.hpp
java.cpp                                histogram.hpp
java.cpp                                init.hpp
java.cpp                                instanceKlass.hpp
java.cpp                                instanceKlassKlass.hpp
java.cpp                                instanceOop.hpp
java.cpp                                interfaceSupport.hpp
java.cpp                                java.hpp
java.cpp                                jvmtiExport.hpp
java.cpp                                memprofiler.hpp
java.cpp                                methodOop.hpp
java.cpp                                objArrayOop.hpp
java.cpp                                oop.inline.hpp
java.cpp                                oopFactory.hpp
java.cpp                                sharedRuntime.hpp
java.cpp                                statSampler.hpp
java.cpp                                symbolOop.hpp
java.cpp                                symbolTable.hpp
java.cpp                                systemDictionary.hpp
java.cpp                                task.hpp
java.cpp                                thread_<os_family>.inline.hpp
java.cpp                                timer.hpp
java.cpp                                universe.hpp
java.cpp                                vmError.hpp
java.cpp                                vm_operations.hpp
2316
java.cpp                                vm_version_<arch>.hpp
D
duke 已提交
2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340
java.cpp                                vtune.hpp

java.hpp                                os.hpp

javaAssertions.cpp                      allocation.inline.hpp
javaAssertions.cpp                      handles.inline.hpp
javaAssertions.cpp                      javaAssertions.hpp
javaAssertions.cpp                      javaClasses.hpp
javaAssertions.cpp                      oop.inline.hpp
javaAssertions.cpp                      oopFactory.hpp
javaAssertions.cpp                      systemDictionary.hpp
javaAssertions.cpp                      vmSymbols.hpp

javaAssertions.hpp                      exceptions.hpp
javaAssertions.hpp                      objArrayOop.hpp
javaAssertions.hpp                      ostream.hpp
javaAssertions.hpp                      typeArrayOop.hpp

javaCalls.cpp                           compilationPolicy.hpp
javaCalls.cpp                           compileBroker.hpp
javaCalls.cpp                           handles.inline.hpp
javaCalls.cpp                           interfaceSupport.hpp
javaCalls.cpp                           interpreter.hpp
javaCalls.cpp                           javaCalls.hpp
2341
javaCalls.cpp                           jniCheck.hpp
D
duke 已提交
2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451
javaCalls.cpp                           linkResolver.hpp
javaCalls.cpp                           mutexLocker.hpp
javaCalls.cpp                           nmethod.hpp
javaCalls.cpp                           oop.inline.hpp
javaCalls.cpp                           signature.hpp
javaCalls.cpp                           stubRoutines.hpp
javaCalls.cpp                           systemDictionary.hpp
javaCalls.cpp                           thread_<os_family>.inline.hpp
javaCalls.cpp                           universe.inline.hpp
javaCalls.cpp                           vmSymbols.hpp
javaCalls.hpp                           allocation.hpp

javaCalls.hpp                           handles.hpp
javaCalls.hpp                           javaFrameAnchor.hpp
javaCalls.hpp                           jniTypes_<arch>.hpp
javaCalls.hpp                           methodOop.hpp
javaCalls.hpp                           thread_<os_family>.inline.hpp
javaCalls.hpp                           vmThread.hpp

javaClasses.cpp                         debugInfo.hpp
javaClasses.cpp                         fieldDescriptor.hpp
javaClasses.cpp                         handles.inline.hpp
javaClasses.cpp                         instanceKlass.hpp
javaClasses.cpp                         interfaceSupport.hpp
javaClasses.cpp                         interpreter.hpp
javaClasses.cpp                         java.hpp
javaClasses.cpp                         javaCalls.hpp
javaClasses.cpp                         javaClasses.hpp
javaClasses.cpp                         klass.hpp
javaClasses.cpp                         klassOop.hpp
javaClasses.cpp                         methodOop.hpp
javaClasses.cpp                         oopFactory.hpp
javaClasses.cpp                         pcDesc.hpp
javaClasses.cpp                         preserveException.hpp
javaClasses.cpp                         resourceArea.hpp
javaClasses.cpp                         safepoint.hpp
javaClasses.cpp                         symbolOop.hpp
javaClasses.cpp                         symbolTable.hpp
javaClasses.cpp                         thread_<os_family>.inline.hpp
javaClasses.cpp                         typeArrayOop.hpp
javaClasses.cpp                         universe.inline.hpp
javaClasses.cpp                         vframe.hpp
javaClasses.cpp                         vmSymbols.hpp

javaClasses.hpp                         jvmti.h
javaClasses.hpp                         oop.hpp
javaClasses.hpp                         os.hpp
javaClasses.hpp                         systemDictionary.hpp
javaClasses.hpp                         utf8.hpp

javaFrameAnchor.hpp                     globalDefinitions.hpp
javaFrameAnchor.hpp                     orderAccess_<os_arch>.inline.hpp

javaFrameAnchor_<arch>.hpp              generate_platform_dependent_include

jni.cpp                                 allocation.inline.hpp
jni.cpp                                 classLoader.hpp
jni.cpp                                 compilationPolicy.hpp
jni.cpp                                 defaultStream.hpp
jni.cpp                                 dtrace.hpp
jni.cpp                                 events.hpp
jni.cpp                                 fieldDescriptor.hpp
jni.cpp                                 fprofiler.hpp
jni.cpp                                 gcLocker.inline.hpp
jni.cpp                                 handles.inline.hpp
jni.cpp                                 histogram.hpp
jni.cpp                                 instanceKlass.hpp
jni.cpp                                 instanceOop.hpp
jni.cpp                                 interfaceSupport.hpp
jni.cpp                                 java.hpp
jni.cpp                                 javaCalls.hpp
jni.cpp                                 javaClasses.hpp
jni.cpp                                 jfieldIDWorkaround.hpp
jni.cpp                                 jni.h
jni.cpp                                 jniCheck.hpp
jni.cpp                                 jniFastGetField.hpp
jni.cpp                                 jniTypes_<arch>.hpp
jni.cpp                                 jvm.h
jni.cpp                                 jvm_misc.hpp
jni.cpp                                 jvmtiExport.hpp
jni.cpp                                 jvmtiThreadState.hpp
jni.cpp                                 linkResolver.hpp
jni.cpp                                 markOop.hpp
jni.cpp                                 methodOop.hpp
jni.cpp                                 objArrayKlass.hpp
jni.cpp                                 objArrayOop.hpp
jni.cpp                                 oop.inline.hpp
jni.cpp                                 oopFactory.hpp
jni.cpp                                 os_<os_family>.inline.hpp
jni.cpp                                 reflection.hpp
jni.cpp                                 runtimeService.hpp
jni.cpp                                 sharedRuntime.hpp
jni.cpp                                 signature.hpp
jni.cpp                                 symbolOop.hpp
jni.cpp                                 symbolTable.hpp
jni.cpp                                 systemDictionary.hpp
jni.cpp                                 thread_<os_family>.inline.hpp
jni.cpp                                 typeArrayKlass.hpp
jni.cpp                                 typeArrayOop.hpp
jni.cpp                                 universe.inline.hpp
jni.cpp                                 vmSymbols.hpp
jni.cpp                                 vm_operations.hpp

// jniCheck is jck optional, put cpp deps in includeDB_features

jniFastGetField.cpp                     jniFastGetField.hpp

jniFastGetField.hpp                     allocation.hpp
jniFastGetField.hpp                     jvm_misc.hpp

2452
jniFastGetField_<arch_model>.cpp        assembler_<arch>.inline.hpp
D
duke 已提交
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482
jniFastGetField_<arch_model>.cpp        jniFastGetField.hpp
jniFastGetField_<arch_model>.cpp        jvm_misc.hpp
jniFastGetField_<arch_model>.cpp        resourceArea.hpp
jniFastGetField_<arch_model>.cpp        safepoint.hpp

jniHandles.cpp                          jniHandles.hpp
jniHandles.cpp                          mutexLocker.hpp
jniHandles.cpp                          oop.inline.hpp
jniHandles.cpp                          systemDictionary.hpp
jniHandles.cpp                          thread_<os_family>.inline.hpp

jniHandles.hpp                          handles.hpp
jniHandles.hpp                          top.hpp

jniPeriodicChecker.cpp                  allocation.inline.hpp
jniPeriodicChecker.cpp                  jniPeriodicChecker.hpp
jniPeriodicChecker.cpp                  task.hpp

jniTypes_<arch>.hpp                     allocation.hpp
jniTypes_<arch>.hpp                     jni.h
jniTypes_<arch>.hpp                     oop.hpp

jni_<arch>.h                            generate_platform_dependent_include

jvm.cpp                                 arguments.hpp
jvm.cpp                                 attachListener.hpp
jvm.cpp                                 classLoader.hpp
jvm.cpp                                 collectedHeap.inline.hpp
jvm.cpp                                 copy.hpp
jvm.cpp                                 defaultStream.hpp
2483
jvm.cpp                                 dtraceJSDT.hpp
D
duke 已提交
2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537
jvm.cpp                                 events.hpp
jvm.cpp                                 handles.inline.hpp
jvm.cpp                                 histogram.hpp
jvm.cpp                                 hpi.hpp
jvm.cpp                                 hpi_<os_family>.hpp
jvm.cpp                                 init.hpp
jvm.cpp                                 instanceKlass.hpp
jvm.cpp                                 interfaceSupport.hpp
jvm.cpp                                 java.hpp
jvm.cpp                                 javaAssertions.hpp
jvm.cpp                                 javaCalls.hpp
jvm.cpp                                 javaClasses.hpp
jvm.cpp                                 jfieldIDWorkaround.hpp
jvm.cpp                                 jvm.h
jvm.cpp                                 jvm_<os_family>.h
jvm.cpp                                 jvm_misc.hpp
jvm.cpp                                 jvmtiExport.hpp
jvm.cpp                                 jvmtiThreadState.hpp
jvm.cpp                                 management.hpp
jvm.cpp                                 nativeLookup.hpp
jvm.cpp                                 objArrayKlass.hpp
jvm.cpp                                 oopFactory.hpp
jvm.cpp                                 os.hpp
jvm.cpp                                 perfData.hpp
jvm.cpp                                 privilegedStack.hpp
jvm.cpp                                 reflection.hpp
jvm.cpp                                 symbolTable.hpp
jvm.cpp                                 systemDictionary.hpp
jvm.cpp                                 threadService.hpp
jvm.cpp                                 top.hpp
jvm.cpp                                 universe.inline.hpp
jvm.cpp                                 utf8.hpp
jvm.cpp                                 vframe.hpp
jvm.cpp                                 vmSymbols.hpp
jvm.cpp                                 vm_operations.hpp

jvm.h                                   globalDefinitions.hpp
jvm.h                                   jni.h
jvm.h                                   jvm_<os_family>.h
jvm.h                                   reflectionCompat.hpp

jvm_<os_family>.cpp                     interfaceSupport.hpp
jvm_<os_family>.cpp                     jvm.h
jvm_<os_family>.cpp                     osThread.hpp

jvm_misc.hpp                            handles.hpp
jvm_misc.hpp                            jni.h

jvmtiExport.hpp                         allocation.hpp
jvmtiExport.hpp                         globalDefinitions.hpp
jvmtiExport.hpp                         growableArray.hpp
jvmtiExport.hpp                         handles.hpp
jvmtiExport.hpp                         iterator.hpp
jvmtiExport.hpp                         jvmti.h
2538
jvmtiExport.hpp                         jvmticmlr.h
D
duke 已提交
2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580
jvmtiExport.hpp                         oop.hpp
jvmtiExport.hpp                         oopsHierarchy.hpp

jvmtiThreadState.hpp                    allocation.hpp
jvmtiThreadState.hpp                    allocation.inline.hpp
jvmtiThreadState.hpp                    growableArray.hpp
jvmtiThreadState.hpp                    jvmti.h
jvmtiThreadState.hpp                    jvmtiEventController.hpp
jvmtiThreadState.hpp                    thread.hpp

klass.cpp                               atomic.hpp
klass.cpp                               collectedHeap.inline.hpp
klass.cpp                               instanceKlass.hpp
klass.cpp                               klass.inline.hpp
klass.cpp                               klassOop.hpp
klass.cpp                               oop.inline.hpp
klass.cpp                               oop.inline2.hpp
klass.cpp                               oopFactory.hpp
klass.cpp                               resourceArea.hpp
klass.cpp                               systemDictionary.hpp
klass.cpp                               vmSymbols.hpp

klass.hpp                               accessFlags.hpp
klass.hpp                               genOopClosures.hpp
klass.hpp                               iterator.hpp
klass.hpp                               klassOop.hpp
klass.hpp                               klassPS.hpp
klass.hpp                               memRegion.hpp
klass.hpp                               oop.hpp
klass.hpp                               specialized_oop_closures.hpp

klass.inline.hpp                        klass.hpp
klass.inline.hpp                        markOop.hpp

klassKlass.cpp                          collectedHeap.hpp
klassKlass.cpp                          collectedHeap.inline.hpp
klassKlass.cpp                          constantPoolKlass.hpp
klassKlass.cpp                          handles.inline.hpp
klassKlass.cpp                          instanceKlass.hpp
klassKlass.cpp                          instanceOop.hpp
klassKlass.cpp                          klassKlass.hpp
klassKlass.cpp                          klassOop.hpp
2581
klassKlass.cpp                          markSweep.inline.hpp
D
duke 已提交
2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607
klassKlass.cpp                          methodKlass.hpp
klassKlass.cpp                          objArrayKlass.hpp
klassKlass.cpp                          oop.inline.hpp
klassKlass.cpp                          oop.inline2.hpp
klassKlass.cpp                          oopFactory.hpp
klassKlass.cpp                          permGen.hpp
klassKlass.cpp                          symbolKlass.hpp
klassKlass.cpp                          symbolOop.hpp
klassKlass.cpp                          typeArrayKlass.hpp

klassKlass.hpp                          klass.hpp
klassKlass.hpp                          klassOop.hpp
klassKlass.hpp                          oopFactory.hpp

klassOop.cpp                            klassOop.hpp

klassOop.hpp                            oop.hpp

klassVtable.cpp                         arguments.hpp
klassVtable.cpp                         copy.hpp
klassVtable.cpp                         gcLocker.hpp
klassVtable.cpp                         handles.inline.hpp
klassVtable.cpp                         instanceKlass.hpp
klassVtable.cpp                         jvmtiRedefineClassesTrace.hpp
klassVtable.cpp                         klassOop.hpp
klassVtable.cpp                         klassVtable.hpp
2608
klassVtable.cpp                         markSweep.inline.hpp
D
duke 已提交
2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631
klassVtable.cpp                         methodOop.hpp
klassVtable.cpp                         objArrayOop.hpp
klassVtable.cpp                         oop.inline.hpp
klassVtable.cpp                         resourceArea.hpp
klassVtable.cpp                         systemDictionary.hpp
klassVtable.cpp                         universe.inline.hpp
klassVtable.cpp                         vmSymbols.hpp

klassVtable.hpp                         allocation.hpp
klassVtable.hpp                         growableArray.hpp
klassVtable.hpp                         handles.hpp
klassVtable.hpp                         oopsHierarchy.hpp

linkResolver.cpp                        bytecode.hpp
linkResolver.cpp                        collectedHeap.inline.hpp
linkResolver.cpp                        compilationPolicy.hpp
linkResolver.cpp                        compileBroker.hpp
linkResolver.cpp                        fieldDescriptor.hpp
linkResolver.cpp                        frame.inline.hpp
linkResolver.cpp                        handles.inline.hpp
linkResolver.cpp                        instanceKlass.hpp
linkResolver.cpp                        interpreterRuntime.hpp
linkResolver.cpp                        linkResolver.hpp
2632
linkResolver.cpp                        methodHandles.hpp
D
duke 已提交
2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721
linkResolver.cpp                        nativeLookup.hpp
linkResolver.cpp                        objArrayOop.hpp
linkResolver.cpp                        reflection.hpp
linkResolver.cpp                        resourceArea.hpp
linkResolver.cpp                        signature.hpp
linkResolver.cpp                        systemDictionary.hpp
linkResolver.cpp                        thread_<os_family>.inline.hpp
linkResolver.cpp                        universe.inline.hpp
linkResolver.cpp                        vmSymbols.hpp
linkResolver.cpp                        vmThread.hpp

linkResolver.hpp                        methodOop.hpp
linkResolver.hpp                        top.hpp

liveRange.hpp                           copy.hpp

loaderConstraints.cpp                   handles.inline.hpp
loaderConstraints.cpp                   hashtable.inline.hpp
loaderConstraints.cpp                   loaderConstraints.hpp
loaderConstraints.cpp                   oop.inline.hpp
loaderConstraints.cpp                   resourceArea.hpp
loaderConstraints.cpp                   safepoint.hpp

loaderConstraints.hpp                   dictionary.hpp
loaderConstraints.hpp                   hashtable.hpp

location.cpp                            debugInfo.hpp
location.cpp                            location.hpp

location.hpp                            allocation.hpp
location.hpp                            assembler.hpp
location.hpp                            vmreg.hpp

lowMemoryDetector.cpp                   interfaceSupport.hpp
lowMemoryDetector.cpp                   java.hpp
lowMemoryDetector.cpp                   javaCalls.hpp
lowMemoryDetector.cpp                   lowMemoryDetector.hpp
lowMemoryDetector.cpp                   management.hpp
lowMemoryDetector.cpp                   mutex.hpp
lowMemoryDetector.cpp                   mutexLocker.hpp
lowMemoryDetector.cpp                   oop.inline.hpp
lowMemoryDetector.cpp                   systemDictionary.hpp
lowMemoryDetector.cpp                   vmSymbols.hpp

lowMemoryDetector.hpp                   allocation.hpp
lowMemoryDetector.hpp                   memoryPool.hpp
lowMemoryDetector.hpp                   memoryService.hpp

management.cpp                          arguments.hpp
management.cpp                          classLoadingService.hpp
management.cpp                          compileBroker.hpp
management.cpp                          handles.inline.hpp
management.cpp                          heapDumper.hpp
management.cpp                          interfaceSupport.hpp
management.cpp                          iterator.hpp
management.cpp                          javaCalls.hpp
management.cpp                          jniHandles.hpp
management.cpp                          klass.hpp
management.cpp                          klassOop.hpp
management.cpp                          lowMemoryDetector.hpp
management.cpp                          management.hpp
management.cpp                          memoryManager.hpp
management.cpp                          memoryPool.hpp
management.cpp                          memoryService.hpp
management.cpp                          objArrayKlass.hpp
management.cpp                          oop.inline.hpp
management.cpp                          oopFactory.hpp
management.cpp                          os.hpp
management.cpp                          resourceArea.hpp
management.cpp                          runtimeService.hpp
management.cpp                          systemDictionary.hpp
management.cpp                          threadService.hpp

management.hpp                          allocation.hpp
management.hpp                          handles.hpp
management.hpp                          jmm.h
management.hpp                          timer.hpp

markOop.cpp                             markOop.hpp
markOop.cpp                             thread_<os_family>.inline.hpp

markOop.hpp                             oop.hpp

markOop.inline.hpp                      globals.hpp
markOop.inline.hpp                      klass.hpp
markOop.inline.hpp                      klassOop.hpp
markOop.inline.hpp                      markOop.hpp

markSweep.cpp                           compileBroker.hpp
Y
ysr 已提交
2722
markSweep.cpp                           methodDataOop.hpp
2723 2724 2725

markSweep.hpp                           collectedHeap.hpp

D
duke 已提交
2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824
memRegion.cpp                           globals.hpp
memRegion.cpp                           memRegion.hpp

memRegion.hpp                           allocation.hpp
memRegion.hpp                           debug.hpp
memRegion.hpp                           globalDefinitions.hpp

memoryManager.cpp                       systemDictionary.hpp
memoryManager.cpp                       vmSymbols.hpp
memoryManager.cpp                       dtrace.hpp
memoryManager.cpp                       handles.inline.hpp
memoryManager.cpp                       javaCalls.hpp
memoryManager.cpp                       lowMemoryDetector.hpp
memoryManager.cpp                       management.hpp
memoryManager.cpp                       memoryManager.hpp
memoryManager.cpp                       memoryPool.hpp
memoryManager.cpp                       memoryService.hpp
memoryManager.cpp                       oop.inline.hpp

memoryManager.hpp                       allocation.hpp
memoryManager.hpp                       memoryUsage.hpp
memoryManager.hpp                       timer.hpp

memoryPool.cpp                          systemDictionary.hpp
memoryPool.cpp                          vmSymbols.hpp
memoryPool.cpp                          handles.inline.hpp
memoryPool.cpp                          javaCalls.hpp
memoryPool.cpp                          lowMemoryDetector.hpp
memoryPool.cpp                          management.hpp
memoryPool.cpp                          memoryManager.hpp
memoryPool.cpp                          memoryPool.hpp
memoryPool.cpp                          oop.inline.hpp

memoryPool.hpp                          defNewGeneration.hpp
memoryPool.hpp                          heap.hpp
memoryPool.hpp                          memoryUsage.hpp
memoryPool.hpp                          mutableSpace.hpp
memoryPool.hpp                          space.hpp

memoryService.cpp                       classLoadingService.hpp
memoryService.cpp                       collectorPolicy.hpp
memoryService.cpp                       defNewGeneration.hpp
memoryService.cpp                       genCollectedHeap.hpp
memoryService.cpp                       generation.hpp
memoryService.cpp                       generationSpec.hpp
memoryService.cpp                       growableArray.hpp
memoryService.cpp                       heap.hpp
memoryService.cpp                       javaCalls.hpp
memoryService.cpp                       lowMemoryDetector.hpp
memoryService.cpp                       management.hpp
memoryService.cpp                       memRegion.hpp
memoryService.cpp                       memoryManager.hpp
memoryService.cpp                       memoryPool.hpp
memoryService.cpp                       memoryService.hpp
memoryService.cpp                       mutableSpace.hpp
memoryService.cpp                       oop.inline.hpp
memoryService.cpp                       permGen.hpp
memoryService.cpp                       systemDictionary.hpp
memoryService.cpp                       tenuredGeneration.hpp
memoryService.cpp                       vmSymbols.hpp

memoryService.hpp                       allocation.hpp
memoryService.hpp                       generation.hpp
memoryService.hpp                       handles.hpp
memoryService.hpp                       memoryUsage.hpp

memoryUsage.hpp                         globalDefinitions.hpp

memprofiler.cpp                         codeCache.hpp
memprofiler.cpp                         collectedHeap.inline.hpp
memprofiler.cpp                         generation.hpp
memprofiler.cpp                         handles.inline.hpp
memprofiler.cpp                         jniHandles.hpp
memprofiler.cpp                         memprofiler.hpp
memprofiler.cpp                         mutexLocker.hpp
memprofiler.cpp                         oopMapCache.hpp
memprofiler.cpp                         os.hpp
memprofiler.cpp                         permGen.hpp
memprofiler.cpp                         resourceArea.hpp
memprofiler.cpp                         systemDictionary.hpp
memprofiler.cpp                         task.hpp
memprofiler.cpp                         thread_<os_family>.inline.hpp
memprofiler.cpp                         vmThread.hpp

methodComparator.cpp                    globalDefinitions.hpp
methodComparator.cpp                    handles.inline.hpp
methodComparator.cpp                    jvmtiRedefineClassesTrace.hpp
methodComparator.cpp                    methodComparator.hpp
methodComparator.cpp                    oop.inline.hpp
methodComparator.cpp                    symbolOop.hpp

methodComparator.hpp                    bytecodeStream.hpp
methodComparator.hpp                    constantPoolOop.hpp
methodComparator.hpp                    methodOop.hpp

methodDataKlass.cpp                     collectedHeap.inline.hpp
methodDataKlass.cpp                     gcLocker.hpp
methodDataKlass.cpp                     handles.inline.hpp
methodDataKlass.cpp                     klassOop.hpp
2825
methodDataKlass.cpp                     markSweep.inline.hpp
D
duke 已提交
2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849
methodDataKlass.cpp                     methodDataKlass.hpp
methodDataKlass.cpp                     methodDataOop.hpp
methodDataKlass.cpp                     oop.inline.hpp
methodDataKlass.cpp                     oop.inline2.hpp
methodDataKlass.cpp                     resourceArea.hpp
methodDataKlass.cpp                     universe.inline.hpp

methodDataKlass.hpp                     klass.hpp

methodDataOop.cpp                       bytecode.hpp
methodDataOop.cpp                       bytecodeStream.hpp
methodDataOop.cpp                       deoptimization.hpp
methodDataOop.cpp                       handles.inline.hpp
methodDataOop.cpp                       linkResolver.hpp
methodDataOop.cpp                       markSweep.inline.hpp
methodDataOop.cpp                       methodDataOop.hpp
methodDataOop.cpp                       oop.inline.hpp
methodDataOop.cpp                       systemDictionary.hpp

methodDataOop.hpp                       bytecodes.hpp
methodDataOop.hpp                       oop.hpp
methodDataOop.hpp                       orderAccess.hpp
methodDataOop.hpp                       universe.hpp

2850 2851 2852
methodHandleWalk.hpp                    methodHandles.hpp

methodHandleWalk.cpp                    methodHandleWalk.hpp
2853 2854
methodHandleWalk.cpp                    oopFactory.hpp
methodHandleWalk.cpp                    rewriter.hpp
2855

2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874
methodHandles.hpp                       frame.inline.hpp
methodHandles.hpp                       globals.hpp
methodHandles.hpp                       interfaceSupport.hpp
methodHandles.hpp                       javaClasses.hpp
methodHandles.hpp                       vmSymbols.hpp

methodHandles.cpp                       allocation.inline.hpp
methodHandles.cpp                       interpreter.hpp
methodHandles.cpp                       javaCalls.hpp
methodHandles.cpp                       methodHandles.hpp
methodHandles.cpp                       oopFactory.hpp
methodHandles.cpp                       reflection.hpp
methodHandles.cpp                       signature.hpp
methodHandles.cpp                       symbolTable.hpp

methodHandles_<arch>.cpp                allocation.inline.hpp
methodHandles_<arch>.cpp                interpreter.hpp
methodHandles_<arch>.cpp                methodHandles.hpp

D
duke 已提交
2875 2876 2877 2878 2879 2880 2881
methodKlass.cpp                         collectedHeap.inline.hpp
methodKlass.cpp                         constMethodKlass.hpp
methodKlass.cpp                         gcLocker.hpp
methodKlass.cpp                         handles.inline.hpp
methodKlass.cpp                         interpreter.hpp
methodKlass.cpp                         javaClasses.hpp
methodKlass.cpp                         klassOop.hpp
2882
methodKlass.cpp                         markSweep.inline.hpp
D
duke 已提交
2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895
methodKlass.cpp                         methodDataOop.hpp
methodKlass.cpp                         methodKlass.hpp
methodKlass.cpp                         oop.inline.hpp
methodKlass.cpp                         oop.inline2.hpp
methodKlass.cpp                         resourceArea.hpp
methodKlass.cpp                         symbolOop.hpp
methodKlass.cpp                         universe.inline.hpp

methodKlass.hpp                         klass.hpp
methodKlass.hpp                         klassOop.hpp
methodKlass.hpp                         methodOop.hpp

methodLiveness.cpp                      allocation.inline.hpp
2896
methodLiveness.cpp                      bitMap.inline.hpp
D
duke 已提交
2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983
methodLiveness.cpp                      bytecode.hpp
methodLiveness.cpp                      bytecodes.hpp
methodLiveness.cpp                      ciMethod.hpp
methodLiveness.cpp                      ciMethodBlocks.hpp
methodLiveness.cpp                      ciStreams.hpp
methodLiveness.cpp                      methodLiveness.hpp

methodLiveness.hpp                      bitMap.hpp
methodLiveness.hpp                      growableArray.hpp

methodOop.cpp                           arguments.hpp
methodOop.cpp                           bytecodeStream.hpp
methodOop.cpp                           bytecodeTracer.hpp
methodOop.cpp                           bytecodes.hpp
methodOop.cpp                           collectedHeap.inline.hpp
methodOop.cpp                           debugInfoRec.hpp
methodOop.cpp                           frame.inline.hpp
methodOop.cpp                           gcLocker.hpp
methodOop.cpp                           gcTaskThread.hpp
methodOop.cpp                           generation.hpp
methodOop.cpp                           handles.inline.hpp
methodOop.cpp                           interpreter.hpp
methodOop.cpp                           jvmtiExport.hpp
methodOop.cpp                           klassOop.hpp
methodOop.cpp                           methodDataOop.hpp
methodOop.cpp                           methodOop.hpp
methodOop.cpp                           nativeLookup.hpp
methodOop.cpp                           oop.inline.hpp
methodOop.cpp                           oopFactory.hpp
methodOop.cpp                           oopMapCache.hpp
methodOop.cpp                           relocator.hpp
methodOop.cpp                           sharedRuntime.hpp
methodOop.cpp                           signature.hpp
methodOop.cpp                           symbolOop.hpp
methodOop.cpp                           systemDictionary.hpp
methodOop.cpp                           xmlstream.hpp

methodOop.hpp                           accessFlags.hpp
methodOop.hpp                           compressedStream.hpp
methodOop.hpp                           constMethodOop.hpp
methodOop.hpp                           constantPoolOop.hpp
methodOop.hpp                           growableArray.hpp
methodOop.hpp                           instanceKlass.hpp
methodOop.hpp                           invocationCounter.hpp
methodOop.hpp                           oop.hpp
methodOop.hpp                           oopMap.hpp
methodOop.hpp                           typeArrayOop.hpp
methodOop.hpp                           vmSymbols.hpp

modRefBarrierSet.hpp                    barrierSet.hpp

monitorChunk.cpp                        allocation.inline.hpp
monitorChunk.cpp                        monitorChunk.hpp
monitorChunk.cpp                        oop.inline.hpp

monitorChunk.hpp                        synchronizer.hpp

mutex.cpp                               events.hpp
mutex.cpp                               mutex.hpp
mutex.cpp                               mutex_<os_family>.inline.hpp
mutex.cpp                               osThread.hpp
mutex.cpp                               thread_<os_family>.inline.hpp

mutex.hpp                               allocation.hpp
mutex.hpp                               histogram.hpp
mutex.hpp                               os.hpp

mutexLocker.cpp                         mutexLocker.hpp
mutexLocker.cpp                         safepoint.hpp
mutexLocker.cpp                         threadLocalStorage.hpp
mutexLocker.cpp                         thread_<os_family>.inline.hpp
mutexLocker.cpp                         vmThread.hpp

mutexLocker.hpp                         allocation.hpp
mutexLocker.hpp                         mutex.hpp
mutexLocker.hpp                         os_<os_family>.inline.hpp

mutex_<os_family>.cpp                   events.hpp
mutex_<os_family>.cpp                   interfaceSupport.hpp
mutex_<os_family>.cpp                   mutex.hpp
mutex_<os_family>.cpp                   mutex_<os_family>.inline.hpp
mutex_<os_family>.cpp                   thread_<os_family>.inline.hpp

mutex_<os_family>.inline.hpp            interfaceSupport.hpp
mutex_<os_family>.inline.hpp            os_<os_family>.inline.hpp
mutex_<os_family>.inline.hpp            thread_<os_family>.inline.hpp

2984
nativeInst_<arch>.cpp                   assembler_<arch>.inline.hpp
D
duke 已提交
2985 2986
nativeInst_<arch>.cpp                   handles.hpp
nativeInst_<arch>.cpp                   nativeInst_<arch>.hpp
2987
nativeInst_<arch>.cpp                   oop.inline.hpp
D
duke 已提交
2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027
nativeInst_<arch>.cpp                   ostream.hpp
nativeInst_<arch>.cpp                   resourceArea.hpp
nativeInst_<arch>.cpp                   sharedRuntime.hpp
nativeInst_<arch>.cpp                   stubRoutines.hpp

nativeInst_<arch>.hpp                   allocation.hpp
nativeInst_<arch>.hpp                   assembler.hpp
nativeInst_<arch>.hpp                   icache.hpp
nativeInst_<arch>.hpp                   os.hpp
nativeInst_<arch>.hpp                   top.hpp

nativeLookup.cpp                        arguments.hpp
nativeLookup.cpp                        handles.inline.hpp
nativeLookup.cpp                        hpi.hpp
nativeLookup.cpp                        instanceKlass.hpp
nativeLookup.cpp                        javaCalls.hpp
nativeLookup.cpp                        javaClasses.hpp
nativeLookup.cpp                        jvm_misc.hpp
nativeLookup.cpp                        methodOop.hpp
nativeLookup.cpp                        nativeLookup.hpp
nativeLookup.cpp                        oop.inline.hpp
nativeLookup.cpp                        oopFactory.hpp
nativeLookup.cpp                        os_<os_family>.inline.hpp
nativeLookup.cpp                        resourceArea.hpp
nativeLookup.cpp                        sharedRuntime.hpp
nativeLookup.cpp                        signature.hpp
nativeLookup.cpp                        symbolOop.hpp
nativeLookup.cpp                        systemDictionary.hpp
nativeLookup.cpp                        universe.inline.hpp
nativeLookup.cpp                        vmSymbols.hpp

nativeLookup.hpp                        handles.hpp
nativeLookup.hpp                        top.hpp

nmethod.cpp                             abstractCompiler.hpp
nmethod.cpp                             bytecode.hpp
nmethod.cpp                             codeCache.hpp
nmethod.cpp                             compileLog.hpp
nmethod.cpp                             compiledIC.hpp
nmethod.cpp                             compilerOracle.hpp
3028
nmethod.cpp                             disassembler.hpp
D
duke 已提交
3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042
nmethod.cpp                             dtrace.hpp
nmethod.cpp                             events.hpp
nmethod.cpp                             jvmtiRedefineClassesTrace.hpp
nmethod.cpp                             methodDataOop.hpp
nmethod.cpp                             nmethod.hpp
nmethod.cpp                             scopeDesc.hpp
nmethod.cpp                             sharedRuntime.hpp
nmethod.cpp                             sweeper.hpp
nmethod.cpp                             vtune.hpp
nmethod.cpp                             xmlstream.hpp

nmethod.hpp                             codeBlob.hpp
nmethod.hpp                             pcDesc.hpp

3043 3044 3045 3046 3047
numberSeq.cpp				debug.hpp
numberSeq.cpp				numberSeq.hpp
numberSeq.cpp				globalDefinitions.hpp
numberSeq.cpp				allocation.inline.hpp

D
duke 已提交
3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064
objArrayKlass.cpp                       collectedHeap.inline.hpp
objArrayKlass.cpp                       copy.hpp
objArrayKlass.cpp                       genOopClosures.inline.hpp
objArrayKlass.cpp                       handles.inline.hpp
objArrayKlass.cpp                       instanceKlass.hpp
objArrayKlass.cpp                       mutexLocker.hpp
objArrayKlass.cpp                       objArrayKlass.hpp
objArrayKlass.cpp                       objArrayKlassKlass.hpp
objArrayKlass.cpp                       objArrayOop.hpp
objArrayKlass.cpp                       oop.inline.hpp
objArrayKlass.cpp                       oop.inline2.hpp
objArrayKlass.cpp                       resourceArea.hpp
objArrayKlass.cpp                       symbolOop.hpp
objArrayKlass.cpp                       systemDictionary.hpp
objArrayKlass.cpp                       universe.inline.hpp
objArrayKlass.cpp                       vmSymbols.hpp

3065

D
duke 已提交
3066 3067 3068 3069 3070 3071 3072
objArrayKlass.hpp                       arrayKlass.hpp
objArrayKlass.hpp                       instanceKlass.hpp
objArrayKlass.hpp                       specialized_oop_closures.hpp

objArrayKlassKlass.cpp                  collectedHeap.inline.hpp
objArrayKlassKlass.cpp                  instanceKlass.hpp
objArrayKlassKlass.cpp                  javaClasses.hpp
3073
objArrayKlassKlass.cpp                  markSweep.inline.hpp
D
duke 已提交
3074 3075 3076 3077 3078 3079 3080 3081
objArrayKlassKlass.cpp                  objArrayKlassKlass.hpp
objArrayKlassKlass.cpp                  oop.inline.hpp
objArrayKlassKlass.cpp                  oop.inline2.hpp
objArrayKlassKlass.cpp                  systemDictionary.hpp

objArrayKlassKlass.hpp                  arrayKlassKlass.hpp
objArrayKlassKlass.hpp                  objArrayKlass.hpp

3082
objArrayOop.cpp                         objArrayKlass.hpp
D
duke 已提交
3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123
objArrayOop.cpp                         objArrayOop.hpp
objArrayOop.cpp                         oop.inline.hpp

objArrayOop.hpp                         arrayOop.hpp

objectMonitor.hpp                       os.hpp

objectMonitor_<os_family>.cpp           dtrace.hpp
objectMonitor_<os_family>.cpp           interfaceSupport.hpp
objectMonitor_<os_family>.cpp           objectMonitor.hpp
objectMonitor_<os_family>.cpp           objectMonitor.inline.hpp
objectMonitor_<os_family>.cpp           oop.inline.hpp
objectMonitor_<os_family>.cpp           osThread.hpp
objectMonitor_<os_family>.cpp           os_<os_family>.inline.hpp
objectMonitor_<os_family>.cpp           threadService.hpp
objectMonitor_<os_family>.cpp           thread_<os_family>.inline.hpp
objectMonitor_<os_family>.cpp           vmSymbols.hpp

objectMonitor_<os_family>.hpp           generate_platform_dependent_include
objectMonitor_<os_family>.hpp           os_<os_family>.inline.hpp
objectMonitor_<os_family>.hpp           thread_<os_family>.inline.hpp
objectMonitor_<os_family>.hpp           top.hpp

objectMonitor_<os_family>.inline.hpp    generate_platform_dependent_include

oop.cpp                                 copy.hpp
oop.cpp                                 handles.inline.hpp
oop.cpp                                 javaClasses.hpp
oop.cpp                                 oop.inline.hpp
oop.cpp                                 thread_<os_family>.inline.hpp

oop.hpp                                 iterator.hpp
oop.hpp                                 memRegion.hpp
oop.hpp                                 specialized_oop_closures.hpp
oop.hpp                                 top.hpp

oop.inline.hpp                          ageTable.hpp
oop.inline.hpp                          arrayKlass.hpp
oop.inline.hpp                          arrayOop.hpp
oop.inline.hpp                          atomic.hpp
oop.inline.hpp                          barrierSet.inline.hpp
3124
oop.inline.hpp                          bytes_<arch>.hpp
D
duke 已提交
3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187
oop.inline.hpp                          cardTableModRefBS.hpp
oop.inline.hpp                          collectedHeap.inline.hpp
oop.inline.hpp                          compactingPermGenGen.hpp
oop.inline.hpp                          genCollectedHeap.hpp
oop.inline.hpp                          generation.hpp
oop.inline.hpp                          klass.hpp
oop.inline.hpp                          klassOop.hpp
oop.inline.hpp                          markOop.inline.hpp
oop.inline.hpp                          markSweep.inline.hpp
oop.inline.hpp                          oop.hpp
oop.inline.hpp                          os.hpp
oop.inline.hpp                          permGen.hpp
oop.inline.hpp                          specialized_oop_closures.hpp

oop.inline2.hpp                         collectedHeap.hpp
oop.inline2.hpp                         generation.hpp
oop.inline2.hpp                         oop.hpp
oop.inline2.hpp                         permGen.hpp
oop.inline2.hpp                         universe.hpp

oopFactory.cpp                          collectedHeap.inline.hpp
oopFactory.cpp                          compiledICHolderKlass.hpp
oopFactory.cpp                          constMethodKlass.hpp
oopFactory.cpp                          constantPoolKlass.hpp
oopFactory.cpp                          cpCacheKlass.hpp
oopFactory.cpp                          instanceKlass.hpp
oopFactory.cpp                          instanceKlassKlass.hpp
oopFactory.cpp                          instanceOop.hpp
oopFactory.cpp                          javaClasses.hpp
oopFactory.cpp                          klassKlass.hpp
oopFactory.cpp                          klassOop.hpp
oopFactory.cpp                          methodDataKlass.hpp
oopFactory.cpp                          methodKlass.hpp
oopFactory.cpp                          objArrayOop.hpp
oopFactory.cpp                          oop.inline.hpp
oopFactory.cpp                          oopFactory.hpp
oopFactory.cpp                          resourceArea.hpp
oopFactory.cpp                          symbolTable.hpp
oopFactory.cpp                          systemDictionary.hpp
oopFactory.cpp                          universe.inline.hpp
oopFactory.cpp                          vmSymbols.hpp

oopFactory.hpp                          growableArray.hpp
oopFactory.hpp                          klassOop.hpp
oopFactory.hpp                          objArrayKlass.hpp
oopFactory.hpp                          oop.hpp
oopFactory.hpp                          symbolTable.hpp
oopFactory.hpp                          systemDictionary.hpp
oopFactory.hpp                          typeArrayKlass.hpp
oopFactory.hpp                          universe.hpp

oopMap.cpp                              allocation.inline.hpp
oopMap.cpp                              codeBlob.hpp
oopMap.cpp                              codeCache.hpp
oopMap.cpp                              collectedHeap.hpp
oopMap.cpp                              frame.inline.hpp
oopMap.cpp                              nmethod.hpp
oopMap.cpp                              oopMap.hpp
oopMap.cpp                              resourceArea.hpp
oopMap.cpp                              scopeDesc.hpp
oopMap.cpp                              signature.hpp

oopMap.hpp                              allocation.hpp
3188
oopMapCache.cpp                         jvmtiRedefineClassesTrace.hpp
D
duke 已提交
3189 3190 3191 3192 3193
oopMap.hpp                              compressedStream.hpp
oopMap.hpp                              growableArray.hpp
oopMap.hpp                              vmreg.hpp

oopMapCache.cpp                         allocation.inline.hpp
3194
oopMapCache.cpp                         jvmtiRedefineClassesTrace.hpp
3195
oopMapCache.cpp                         handles.inline.hpp
D
duke 已提交
3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217
oopMapCache.cpp                         oop.inline.hpp
oopMapCache.cpp                         oopMapCache.hpp
oopMapCache.cpp                         resourceArea.hpp
oopMapCache.cpp                         signature.hpp

oopMapCache.hpp                         generateOopMap.hpp

oopRecorder.cpp                         allocation.inline.hpp
oopRecorder.cpp                         oop.inline.hpp
oopRecorder.cpp                         oopRecorder.hpp

oopRecorder.hpp                         growableArray.hpp
oopRecorder.hpp                         handles.hpp

oopsHierarchy.cpp                       collectedHeap.hpp
oopsHierarchy.cpp                       collectedHeap.inline.hpp
oopsHierarchy.cpp                       globalDefinitions.hpp
oopsHierarchy.cpp                       oopsHierarchy.hpp
oopsHierarchy.cpp                       thread.hpp
oopsHierarchy.cpp                       thread_<os_family>.inline.hpp

orderAccess.cpp                         orderAccess.hpp
3218 3219
orderAccess.cpp                         stubRoutines.hpp
orderAccess.cpp                         thread.hpp
D
duke 已提交
3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260

orderAccess.hpp                         allocation.hpp
orderAccess.hpp                         os.hpp

orderAccess_<os_arch>.inline.hpp        orderAccess.hpp

os.cpp                                  allocation.inline.hpp
os.cpp                                  arguments.hpp
os.cpp                                  attachListener.hpp
os.cpp                                  classLoader.hpp
os.cpp                                  defaultStream.hpp
os.cpp                                  events.hpp
os.cpp                                  frame.inline.hpp
os.cpp                                  hpi.hpp
os.cpp                                  interfaceSupport.hpp
os.cpp                                  interpreter.hpp
os.cpp                                  java.hpp
os.cpp                                  javaCalls.hpp
os.cpp                                  javaClasses.hpp
os.cpp                                  jvm.h
os.cpp                                  jvm_misc.hpp
os.cpp                                  mutexLocker.hpp
os.cpp                                  oop.inline.hpp
os.cpp                                  os.hpp
os.cpp                                  os_<os_family>.inline.hpp
os.cpp                                  stubRoutines.hpp
os.cpp                                  systemDictionary.hpp
os.cpp                                  threadService.hpp
os.cpp                                  thread_<os_family>.inline.hpp
os.cpp                                  vmGCOperations.hpp
os.cpp                                  vmSymbols.hpp
os.cpp                                  vtableStubs.hpp

os.hpp                                  atomic.hpp
os.hpp                                  extendedPC.hpp
os.hpp                                  handles.hpp
os.hpp                                  jvmti.h
os.hpp                                  top.hpp

os_<os_arch>.cpp                        allocation.inline.hpp
os_<os_arch>.cpp                        arguments.hpp
3261
os_<os_arch>.cpp                        assembler_<arch>.inline.hpp
D
duke 已提交
3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294
os_<os_arch>.cpp                        classLoader.hpp
os_<os_arch>.cpp                        events.hpp
os_<os_arch>.cpp                        extendedPC.hpp
os_<os_arch>.cpp                        frame.inline.hpp
os_<os_arch>.cpp                        hpi.hpp
os_<os_arch>.cpp                        icBuffer.hpp
os_<os_arch>.cpp                        interfaceSupport.hpp
os_<os_arch>.cpp                        interpreter.hpp
os_<os_arch>.cpp                        java.hpp
os_<os_arch>.cpp                        javaCalls.hpp
os_<os_arch>.cpp                        jniFastGetField.hpp
os_<os_arch>.cpp                        jvm.h
os_<os_arch>.cpp                        jvm_<os_family>.h
os_<os_arch>.cpp                        jvm_misc.hpp
os_<os_arch>.cpp                        mutexLocker.hpp
os_<os_arch>.cpp                        mutex_<os_family>.inline.hpp
os_<os_arch>.cpp                        nativeInst_<arch>.hpp
os_<os_arch>.cpp                        no_precompiled_headers
os_<os_arch>.cpp                        osThread.hpp
os_<os_arch>.cpp                        os_share_<os_family>.hpp
os_<os_arch>.cpp                        sharedRuntime.hpp
os_<os_arch>.cpp                        stubRoutines.hpp
os_<os_arch>.cpp                        systemDictionary.hpp
os_<os_arch>.cpp                        thread_<os_family>.inline.hpp
os_<os_arch>.cpp                        timer.hpp
os_<os_arch>.cpp                        vmError.hpp
os_<os_arch>.cpp                        vmSymbols.hpp
os_<os_arch>.cpp                        vtableStubs.hpp

os_<os_arch>.hpp                        generate_platform_dependent_include

os_<os_family>.cpp                      allocation.inline.hpp
os_<os_family>.cpp                      arguments.hpp
3295
os_<os_family>.cpp                      assembler_<arch>.inline.hpp
D
duke 已提交
3296 3297 3298 3299 3300 3301 3302 3303
os_<os_family>.cpp                      attachListener.hpp
os_<os_family>.cpp                      classLoader.hpp
os_<os_family>.cpp                      compileBroker.hpp
os_<os_family>.cpp                      defaultStream.hpp
os_<os_family>.cpp                      events.hpp
os_<os_family>.cpp                      extendedPC.hpp
os_<os_family>.cpp                      filemap.hpp
os_<os_family>.cpp                      globals.hpp
3304
os_<os_family>.cpp                      growableArray.hpp
D
duke 已提交
3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353
os_<os_family>.cpp                      hpi.hpp
os_<os_family>.cpp                      icBuffer.hpp
os_<os_family>.cpp                      interfaceSupport.hpp
os_<os_family>.cpp                      interpreter.hpp
os_<os_family>.cpp                      java.hpp
os_<os_family>.cpp                      javaCalls.hpp
os_<os_family>.cpp                      jniFastGetField.hpp
os_<os_family>.cpp                      jvm.h
os_<os_family>.cpp                      jvm_<os_family>.h
os_<os_family>.cpp                      jvm_misc.hpp
os_<os_family>.cpp                      mutexLocker.hpp
os_<os_family>.cpp                      mutex_<os_family>.inline.hpp
os_<os_family>.cpp                      nativeInst_<arch>.hpp
os_<os_family>.cpp                      no_precompiled_headers
os_<os_family>.cpp                      objectMonitor.hpp
os_<os_family>.cpp                      objectMonitor.inline.hpp
os_<os_family>.cpp                      oop.inline.hpp
os_<os_family>.cpp                      osThread.hpp
os_<os_family>.cpp                      os_share_<os_family>.hpp
os_<os_family>.cpp                      perfMemory.hpp
os_<os_family>.cpp                      runtimeService.hpp
os_<os_family>.cpp                      sharedRuntime.hpp
os_<os_family>.cpp                      statSampler.hpp
os_<os_family>.cpp                      stubRoutines.hpp
os_<os_family>.cpp                      systemDictionary.hpp
os_<os_family>.cpp                      threadCritical.hpp
os_<os_family>.cpp                      thread_<os_family>.inline.hpp
os_<os_family>.cpp                      timer.hpp
os_<os_family>.cpp                      vmError.hpp
os_<os_family>.cpp                      vmSymbols.hpp
os_<os_family>.cpp                      vtableStubs.hpp

os_<os_family>.hpp                      generate_platform_dependent_include

os_<os_family>.inline.hpp               atomic.hpp
os_<os_family>.inline.hpp               atomic_<os_arch>.inline.hpp
os_<os_family>.inline.hpp               orderAccess_<os_arch>.inline.hpp
os_<os_family>.inline.hpp               os.hpp

osThread.cpp                            oop.inline.hpp
osThread.cpp                            osThread.hpp

osThread.hpp                            frame.hpp
osThread.hpp                            handles.hpp
osThread.hpp                            hpi.hpp
osThread.hpp                            javaFrameAnchor.hpp
osThread.hpp                            objectMonitor.hpp
osThread.hpp                            top.hpp

3354
osThread_<os_family>.cpp                assembler_<arch>.inline.hpp
D
duke 已提交
3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445
osThread_<os_family>.cpp                atomic.hpp
osThread_<os_family>.cpp                handles.inline.hpp
osThread_<os_family>.cpp                mutexLocker.hpp
osThread_<os_family>.cpp                no_precompiled_headers
osThread_<os_family>.cpp                os.hpp
osThread_<os_family>.cpp                osThread.hpp
osThread_<os_family>.cpp                safepoint.hpp
osThread_<os_family>.cpp                vmThread.hpp

osThread_<os_family>.hpp                generate_platform_dependent_include

ostream.cpp                             arguments.hpp
ostream.cpp                             compileLog.hpp
ostream.cpp                             defaultStream.hpp
ostream.cpp                             oop.inline.hpp
ostream.cpp                             os_<os_family>.inline.hpp
ostream.cpp                             hpi.hpp
ostream.cpp                             hpi_<os_family>.hpp
ostream.cpp                             ostream.hpp
ostream.cpp                             top.hpp
ostream.cpp                             xmlstream.hpp

ostream.hpp                             allocation.hpp
ostream.hpp                             timer.hpp

pcDesc.cpp                              debugInfoRec.hpp
pcDesc.cpp                              nmethod.hpp
pcDesc.cpp                              pcDesc.hpp
pcDesc.cpp                              resourceArea.hpp
pcDesc.cpp                              scopeDesc.hpp

pcDesc.hpp                              allocation.hpp

perf.cpp                                allocation.inline.hpp
perf.cpp                                interfaceSupport.hpp
perf.cpp                                jni.h
perf.cpp                                jvm.h
perf.cpp                                oop.inline.hpp
perf.cpp                                perfData.hpp
perf.cpp                                perfMemory.hpp
perf.cpp                                resourceArea.hpp
perf.cpp                                vmSymbols.hpp

perfData.cpp                            exceptions.hpp
perfData.cpp                            globalDefinitions.hpp
perfData.cpp                            handles.inline.hpp
perfData.cpp                            java.hpp
perfData.cpp                            mutex.hpp
perfData.cpp                            mutexLocker.hpp
perfData.cpp                            oop.inline.hpp
perfData.cpp                            os.hpp
perfData.cpp                            perfData.hpp
perfData.cpp                            vmSymbols.hpp

perfData.hpp                            allocation.inline.hpp
perfData.hpp                            growableArray.hpp
perfData.hpp                            perfMemory.hpp
perfData.hpp                            timer.hpp

perfMemory.cpp                          allocation.inline.hpp
perfMemory.cpp                          arguments.hpp
perfMemory.cpp                          globalDefinitions.hpp
perfMemory.cpp                          java.hpp
perfMemory.cpp                          mutex.hpp
perfMemory.cpp                          mutexLocker.hpp
perfMemory.cpp                          os.hpp
perfMemory.cpp                          perfData.hpp
perfMemory.cpp                          perfMemory.hpp
perfMemory.cpp                          statSampler.hpp

perfMemory.hpp                          exceptions.hpp

perfMemory_<os_family>.cpp              allocation.inline.hpp
perfMemory_<os_family>.cpp              exceptions.hpp
perfMemory_<os_family>.cpp              handles.inline.hpp
perfMemory_<os_family>.cpp              oop.inline.hpp
perfMemory_<os_family>.cpp              os_<os_family>.inline.hpp
perfMemory_<os_family>.cpp              perfMemory.hpp
perfMemory_<os_family>.cpp              resourceArea.hpp
perfMemory_<os_family>.cpp              vmSymbols.hpp

permGen.cpp                             blockOffsetTable.hpp
permGen.cpp                             cSpaceCounters.hpp
permGen.cpp                             collectedHeap.inline.hpp
permGen.cpp                             compactPermGen.hpp
permGen.cpp                             genCollectedHeap.hpp
permGen.cpp                             generation.inline.hpp
permGen.cpp                             java.hpp
permGen.cpp                             oop.inline.hpp
permGen.cpp                             permGen.hpp
permGen.cpp                             universe.hpp
3446 3447 3448 3449
permGen.cpp                             gcLocker.hpp
permGen.cpp                             gcLocker.inline.hpp
permGen.cpp                             vmGCOperations.hpp
permGen.cpp                             vmThread.hpp
D
duke 已提交
3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503

permGen.hpp                             gcCause.hpp
permGen.hpp                             generation.hpp
permGen.hpp                             handles.hpp
permGen.hpp                             iterator.hpp
permGen.hpp                             virtualspace.hpp

placeholders.cpp                        fieldType.hpp
placeholders.cpp                        hashtable.inline.hpp
placeholders.cpp                        oop.inline.hpp
placeholders.cpp                        placeholders.hpp
placeholders.cpp                        systemDictionary.hpp

placeholders.hpp                        hashtable.hpp

prefetch.hpp                            allocation.hpp

prefetch_<os_arch>.inline.hpp           prefetch.hpp

preserveException.cpp                   handles.inline.hpp
preserveException.cpp                   preserveException.hpp

preserveException.hpp                   handles.hpp
preserveException.hpp                   thread_<os_family>.inline.hpp

privilegedStack.cpp                     allocation.inline.hpp
privilegedStack.cpp                     instanceKlass.hpp
privilegedStack.cpp                     methodOop.hpp
privilegedStack.cpp                     oop.inline.hpp
privilegedStack.cpp                     privilegedStack.hpp
privilegedStack.cpp                     vframe.hpp

privilegedStack.hpp                     allocation.hpp
privilegedStack.hpp                     growableArray.hpp
privilegedStack.hpp                     oopsHierarchy.hpp
privilegedStack.hpp                     vframe.hpp

referencePolicy.cpp                     arguments.hpp
referencePolicy.cpp                     globals.hpp
referencePolicy.cpp                     javaClasses.hpp
referencePolicy.cpp                     referencePolicy.hpp
referencePolicy.cpp                     universe.hpp

referenceProcessor.cpp                  collectedHeap.hpp
referenceProcessor.cpp                  collectedHeap.inline.hpp
referenceProcessor.cpp                  java.hpp
referenceProcessor.cpp                  javaClasses.hpp
referenceProcessor.cpp                  jniHandles.hpp
referenceProcessor.cpp                  oop.inline.hpp
referenceProcessor.cpp                  referencePolicy.hpp
referenceProcessor.cpp                  referenceProcessor.hpp
referenceProcessor.cpp                  systemDictionary.hpp

referenceProcessor.hpp                  instanceRefKlass.hpp
3504
referenceProcessor.hpp                  referencePolicy.hpp
D
duke 已提交
3505 3506 3507 3508 3509 3510 3511 3512

reflection.cpp                          arguments.hpp
reflection.cpp                          handles.inline.hpp
reflection.cpp                          instanceKlass.hpp
reflection.cpp                          javaCalls.hpp
reflection.cpp                          javaClasses.hpp
reflection.cpp                          jvm.h
reflection.cpp                          linkResolver.hpp
3513
reflection.cpp                          methodHandleWalk.hpp
D
duke 已提交
3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553
reflection.cpp                          objArrayKlass.hpp
reflection.cpp                          objArrayOop.hpp
reflection.cpp                          oopFactory.hpp
reflection.cpp                          reflection.hpp
reflection.cpp                          reflectionUtils.hpp
reflection.cpp                          resourceArea.hpp
reflection.cpp                          signature.hpp
reflection.cpp                          symbolTable.hpp
reflection.cpp                          systemDictionary.hpp
reflection.cpp                          universe.inline.hpp
reflection.cpp                          verifier.hpp
reflection.cpp                          vframe.hpp
reflection.cpp                          vmSymbols.hpp

reflection.hpp                          accessFlags.hpp
reflection.hpp                          fieldDescriptor.hpp
reflection.hpp                          growableArray.hpp
reflection.hpp                          oop.hpp
reflection.hpp                          reflectionCompat.hpp

reflectionUtils.cpp                     javaClasses.hpp
reflectionUtils.cpp                     reflectionUtils.hpp
reflectionUtils.cpp                     universe.inline.hpp

reflectionUtils.hpp                     accessFlags.hpp
reflectionUtils.hpp                     allocation.hpp
reflectionUtils.hpp                     globalDefinitions.hpp
reflectionUtils.hpp                     handles.inline.hpp
reflectionUtils.hpp                     instanceKlass.hpp
reflectionUtils.hpp                     objArrayOop.hpp
reflectionUtils.hpp                     oopsHierarchy.hpp
reflectionUtils.hpp                     reflection.hpp

register.cpp                            register.hpp

register.hpp                            top.hpp

register_<arch>.cpp                     register_<arch>.hpp

register_<arch>.hpp                     register.hpp
3554
register_<arch>.hpp                     vm_version_<arch>.hpp
D
duke 已提交
3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566

registerMap.hpp                         globalDefinitions.hpp
registerMap.hpp                         register_<arch>.hpp
registerMap.hpp                         vmreg.hpp

registerMap_<arch>.hpp                  generate_platform_dependent_include

register_definitions_<arch>.cpp         assembler.hpp
register_definitions_<arch>.cpp         interp_masm_<arch_model>.hpp
register_definitions_<arch>.cpp         register.hpp
register_definitions_<arch>.cpp         register_<arch>.hpp

3567
relocInfo.cpp                           assembler_<arch>.inline.hpp
D
duke 已提交
3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579
relocInfo.cpp                           compiledIC.hpp
relocInfo.cpp                           copy.hpp
relocInfo.cpp                           nativeInst_<arch>.hpp
relocInfo.cpp                           nmethod.hpp
relocInfo.cpp                           relocInfo.hpp
relocInfo.cpp                           resourceArea.hpp
relocInfo.cpp                           stubCodeGenerator.hpp

relocInfo.hpp                           allocation.hpp
relocInfo.hpp                           top.hpp

relocInfo_<arch>.cpp                    assembler.inline.hpp
3580
relocInfo_<arch>.cpp                    assembler_<arch>.inline.hpp
D
duke 已提交
3581
relocInfo_<arch>.cpp                    nativeInst_<arch>.hpp
3582
relocInfo_<arch>.cpp                    oop.inline.hpp
D
duke 已提交
3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724
relocInfo_<arch>.cpp                    relocInfo.hpp
relocInfo_<arch>.cpp                    safepoint.hpp

relocInfo_<arch>.hpp                    generate_platform_dependent_include

relocator.cpp                           bytecodes.hpp
relocator.cpp                           handles.inline.hpp
relocator.cpp                           oop.inline.hpp
relocator.cpp                           relocator.hpp
relocator.cpp                           universe.inline.hpp

relocator.hpp                           bytecodes.hpp
relocator.hpp                           bytes_<arch>.hpp
relocator.hpp                           methodOop.hpp

resolutionErrors.cpp                    handles.inline.hpp
resolutionErrors.cpp                    hashtable.inline.hpp
resolutionErrors.cpp                    oop.inline.hpp
resolutionErrors.cpp                    resolutionErrors.hpp
resolutionErrors.cpp                    resourceArea.hpp
resolutionErrors.cpp                    safepoint.hpp

resolutionErrors.hpp                    constantPoolOop.hpp
resolutionErrors.hpp                    hashtable.hpp

resourceArea.cpp                        allocation.inline.hpp
resourceArea.cpp                        mutexLocker.hpp
resourceArea.cpp                        resourceArea.hpp
resourceArea.cpp                        thread_<os_family>.inline.hpp

resourceArea.hpp                        allocation.hpp
resourceArea.hpp                        thread_<os_family>.inline.hpp

// restore is jck optional, put cpp deps in includeDB_features

rewriter.cpp                            bytecodes.hpp
rewriter.cpp                            gcLocker.hpp
rewriter.cpp                            generateOopMap.hpp
rewriter.cpp                            interpreter.hpp
rewriter.cpp                            objArrayOop.hpp
rewriter.cpp                            oop.inline.hpp
rewriter.cpp                            oopFactory.hpp
rewriter.cpp                            resourceArea.hpp
rewriter.cpp                            rewriter.hpp

rewriter.hpp                            allocation.hpp
rewriter.hpp                            growableArray.hpp
rewriter.hpp                            handles.inline.hpp

rframe.cpp                              frame.inline.hpp
rframe.cpp                              interpreter.hpp
rframe.cpp                              oop.inline.hpp
rframe.cpp                              rframe.hpp
rframe.cpp                              symbolOop.hpp
rframe.cpp                              vframe.hpp
rframe.cpp                              vframe_hp.hpp

rframe.hpp                              allocation.hpp
rframe.hpp                              frame.inline.hpp

runtimeService.cpp                      attachListener.hpp
runtimeService.cpp                      classLoader.hpp
runtimeService.cpp                      dtrace.hpp
runtimeService.cpp                      exceptions.hpp
runtimeService.cpp                      management.hpp
runtimeService.cpp                      runtimeService.hpp

runtimeService.hpp                      perfData.hpp
runtimeService.hpp                      timer.hpp

safepoint.cpp                           codeCache.hpp
safepoint.cpp                           collectedHeap.hpp
safepoint.cpp                           deoptimization.hpp
safepoint.cpp                           events.hpp
safepoint.cpp                           frame.inline.hpp
safepoint.cpp                           icBuffer.hpp
safepoint.cpp                           interfaceSupport.hpp
safepoint.cpp                           interpreter.hpp
safepoint.cpp                           mutexLocker.hpp
safepoint.cpp                           nativeInst_<arch>.hpp
safepoint.cpp                           nmethod.hpp
safepoint.cpp                           oop.inline.hpp
safepoint.cpp                           osThread.hpp
safepoint.cpp                           pcDesc.hpp
safepoint.cpp                           resourceArea.hpp
safepoint.cpp                           runtimeService.hpp
safepoint.cpp                           safepoint.hpp
safepoint.cpp                           scopeDesc.hpp
safepoint.cpp                           signature.hpp
safepoint.cpp                           stubCodeGenerator.hpp
safepoint.cpp                           stubRoutines.hpp
safepoint.cpp                           sweeper.hpp
safepoint.cpp                           symbolOop.hpp
safepoint.cpp                           synchronizer.hpp
safepoint.cpp                           systemDictionary.hpp
safepoint.cpp                           thread_<os_family>.inline.hpp
safepoint.cpp                           universe.inline.hpp
safepoint.cpp                           vmreg_<arch>.inline.hpp

safepoint.hpp                           allocation.hpp
safepoint.hpp                           assembler.hpp
safepoint.hpp                           extendedPC.hpp
safepoint.hpp                           nmethod.hpp
safepoint.hpp                           os.hpp
safepoint.hpp                           ostream.hpp

scopeDesc.cpp                           debugInfoRec.hpp
scopeDesc.cpp                           handles.inline.hpp
scopeDesc.cpp                           oop.inline.hpp
scopeDesc.cpp                           pcDesc.hpp
scopeDesc.cpp                           resourceArea.hpp
scopeDesc.cpp                           scopeDesc.hpp

scopeDesc.hpp                           debugInfo.hpp
scopeDesc.hpp                           growableArray.hpp
scopeDesc.hpp                           methodOop.hpp
scopeDesc.hpp                           pcDesc.hpp

// serialize is jck optional, put cpp deps in includeDB_features

serviceUtil.hpp                         objArrayOop.hpp
serviceUtil.hpp                         systemDictionary.hpp

sharedHeap.cpp                          codeCache.hpp
sharedHeap.cpp                          collectedHeap.inline.hpp
sharedHeap.cpp                          copy.hpp
sharedHeap.cpp                          fprofiler.hpp
sharedHeap.cpp                          java.hpp
sharedHeap.cpp                          management.hpp
sharedHeap.cpp                          oop.inline.hpp
sharedHeap.cpp                          sharedHeap.hpp
sharedHeap.cpp                          symbolTable.hpp
sharedHeap.cpp                          systemDictionary.hpp
sharedHeap.cpp                          workgroup.hpp

sharedHeap.hpp                          collectedHeap.hpp
sharedHeap.hpp                          generation.hpp
sharedHeap.hpp                          permGen.hpp

sharedRuntime.cpp                       abstractCompiler.hpp
sharedRuntime.cpp                       arguments.hpp
sharedRuntime.cpp                       biasedLocking.hpp
3725
sharedRuntime.cpp                       compileBroker.hpp
D
duke 已提交
3726 3727 3728 3729 3730 3731 3732 3733
sharedRuntime.cpp                       compiledIC.hpp
sharedRuntime.cpp                       compilerOracle.hpp
sharedRuntime.cpp                       copy.hpp
sharedRuntime.cpp                       dtrace.hpp
sharedRuntime.cpp                       events.hpp
sharedRuntime.cpp                       forte.hpp
sharedRuntime.cpp                       gcLocker.inline.hpp
sharedRuntime.cpp                       handles.inline.hpp
3734
sharedRuntime.cpp                       hashtable.inline.hpp
D
duke 已提交
3735 3736 3737 3738 3739 3740
sharedRuntime.cpp                       init.hpp
sharedRuntime.cpp                       interfaceSupport.hpp
sharedRuntime.cpp                       interpreterRuntime.hpp
sharedRuntime.cpp                       interpreter.hpp
sharedRuntime.cpp                       javaCalls.hpp
sharedRuntime.cpp                       jvmtiExport.hpp
3741
sharedRuntime.cpp                       methodHandles.hpp
3742
sharedRuntime.cpp                       jvmtiRedefineClassesTrace.hpp
D
duke 已提交
3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761
sharedRuntime.cpp                       nativeInst_<arch>.hpp
sharedRuntime.cpp                       nativeLookup.hpp
sharedRuntime.cpp                       oop.inline.hpp
sharedRuntime.cpp                       scopeDesc.hpp
sharedRuntime.cpp                       sharedRuntime.hpp
sharedRuntime.cpp                       stubRoutines.hpp
sharedRuntime.cpp                       systemDictionary.hpp
sharedRuntime.cpp                       universe.inline.hpp
sharedRuntime.cpp                       vframe.hpp
sharedRuntime.cpp                       vframeArray.hpp
sharedRuntime.cpp                       vmSymbols.hpp
sharedRuntime.cpp                       vmreg_<arch>.inline.hpp
sharedRuntime.cpp                       vtableStubs.hpp
sharedRuntime.cpp                       vtune.hpp
sharedRuntime.cpp                       xmlstream.hpp

sharedRuntime.hpp                       allocation.hpp
sharedRuntime.hpp                       bytecodeHistogram.hpp
sharedRuntime.hpp                       bytecodeTracer.hpp
3762
sharedRuntime.hpp                       hashtable.hpp
D
duke 已提交
3763 3764 3765 3766 3767
sharedRuntime.hpp                       linkResolver.hpp
sharedRuntime.hpp                       resourceArea.hpp
sharedRuntime.hpp                       threadLocalStorage.hpp

sharedRuntime_<arch_model>.cpp          assembler.hpp
3768
sharedRuntime_<arch_model>.cpp          assembler_<arch>.inline.hpp
D
duke 已提交
3769 3770 3771 3772
sharedRuntime_<arch_model>.cpp          compiledICHolderOop.hpp
sharedRuntime_<arch_model>.cpp          debugInfoRec.hpp
sharedRuntime_<arch_model>.cpp          icBuffer.hpp
sharedRuntime_<arch_model>.cpp          interpreter.hpp
3773
sharedRuntime_<arch_model>.cpp          jvmtiRedefineClassesTrace.hpp
D
duke 已提交
3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817
sharedRuntime_<arch_model>.cpp          sharedRuntime.hpp
sharedRuntime_<arch_model>.cpp          vframeArray.hpp
sharedRuntime_<arch_model>.cpp          vmreg_<arch>.inline.hpp
sharedRuntime_<arch_model>.cpp          vtableStubs.hpp

sharedRuntimeTrans.cpp                  interfaceSupport.hpp
sharedRuntimeTrans.cpp                  jni.h
sharedRuntimeTrans.cpp                  sharedRuntime.hpp

sharedRuntimeTrig.cpp                   interfaceSupport.hpp
sharedRuntimeTrig.cpp                   jni.h
sharedRuntimeTrig.cpp                   sharedRuntime.hpp

signature.cpp                           instanceKlass.hpp
signature.cpp                           oop.inline.hpp
signature.cpp                           oopFactory.hpp
signature.cpp                           signature.hpp
signature.cpp                           symbolOop.hpp
signature.cpp                           symbolTable.hpp
signature.cpp                           systemDictionary.hpp
signature.cpp                           typeArrayKlass.hpp

signature.hpp                           allocation.hpp
signature.hpp                           methodOop.hpp
signature.hpp                           top.hpp

sizes.cpp                               sizes.hpp

sizes.hpp                               allocation.hpp
sizes.hpp                               globalDefinitions.hpp

space.cpp                               blockOffsetTable.hpp
space.cpp                               copy.hpp
space.cpp                               defNewGeneration.hpp
space.cpp                               genCollectedHeap.hpp
space.cpp                               globalDefinitions.hpp
space.cpp                               java.hpp
space.cpp                               liveRange.hpp
space.cpp                               markSweep.hpp
space.cpp                               oop.inline.hpp
space.cpp                               oop.inline2.hpp
space.cpp                               safepoint.hpp
space.cpp                               space.hpp
space.cpp                               space.inline.hpp
3818
space.cpp                               spaceDecorator.hpp
D
duke 已提交
3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840
space.cpp                               systemDictionary.hpp
space.cpp                               universe.inline.hpp
space.cpp                               vmSymbols.hpp

space.hpp                               allocation.hpp
space.hpp                               blockOffsetTable.hpp
space.hpp                               cardTableModRefBS.hpp
space.hpp                               iterator.hpp
space.hpp                               markOop.hpp
space.hpp                               memRegion.hpp
space.hpp                               mutexLocker.hpp
space.hpp                               os_<os_family>.inline.hpp
space.hpp                               prefetch.hpp
space.hpp                               watermark.hpp
space.hpp                               workgroup.hpp

space.inline.hpp                        blockOffsetTable.inline.hpp
space.inline.hpp                        collectedHeap.hpp
space.inline.hpp                        safepoint.hpp
space.inline.hpp                        space.hpp
space.inline.hpp                        universe.hpp

3841 3842 3843 3844 3845 3846
spaceDecorator.hpp                      globalDefinitions.hpp
spaceDecorator.hpp                      mutableSpace.hpp
spaceDecorator.hpp                      space.hpp

spaceDecorator.cpp                      copy.hpp
spaceDecorator.cpp                      spaceDecorator.hpp
3847
spaceDecorator.cpp                      space.inline.hpp
3848

D
duke 已提交
3849 3850 3851
specialized_oop_closures.cpp            ostream.hpp
specialized_oop_closures.cpp            specialized_oop_closures.hpp

3852 3853
specialized_oop_closures.hpp            atomic.hpp

D
duke 已提交
3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885
stackMapFrame.cpp                       globalDefinitions.hpp
stackMapFrame.cpp                       handles.inline.hpp
stackMapFrame.cpp                       oop.inline.hpp
stackMapFrame.cpp                       resourceArea.hpp
stackMapFrame.cpp                       stackMapFrame.hpp
stackMapFrame.cpp                       symbolOop.hpp
stackMapFrame.cpp                       verifier.hpp

stackMapFrame.hpp                       exceptions.hpp
stackMapFrame.hpp                       handles.hpp
stackMapFrame.hpp                       methodOop.hpp
stackMapFrame.hpp                       signature.hpp
stackMapFrame.hpp                       verificationType.hpp
stackMapFrame.hpp                       verifier.hpp

stackMapTable.cpp                       fieldType.hpp
stackMapTable.cpp                       handles.inline.hpp
stackMapTable.cpp                       oop.inline.hpp
stackMapTable.cpp                       resourceArea.hpp
stackMapTable.cpp                       stackMapTable.hpp
stackMapTable.cpp                       verifier.hpp

stackMapTable.hpp                       allocation.hpp
stackMapTable.hpp                       bytes_<arch>.hpp
stackMapTable.hpp                       constantPoolOop.hpp
stackMapTable.hpp                       globalDefinitions.hpp
stackMapTable.hpp                       methodOop.hpp
stackMapTable.hpp                       stackMapFrame.hpp

stackValue.cpp                          debugInfo.hpp
stackValue.cpp                          frame.inline.hpp
stackValue.cpp                          handles.inline.hpp
3886
stackValue.cpp                          oop.inline.hpp
D
duke 已提交
3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909
stackValue.cpp                          stackValue.hpp

stackValue.hpp                          handles.hpp
stackValue.hpp                          location.hpp
stackValue.hpp                          top.hpp

stackValueCollection.cpp                jniTypes_<arch>.hpp
stackValueCollection.cpp                stackValueCollection.hpp

stackValueCollection.hpp                allocation.hpp
stackValueCollection.hpp                growableArray.hpp
stackValueCollection.hpp                stackValue.hpp

statSampler.cpp                         allocation.inline.hpp
statSampler.cpp                         arguments.hpp
statSampler.cpp                         java.hpp
statSampler.cpp                         javaCalls.hpp
statSampler.cpp                         oop.inline.hpp
statSampler.cpp                         os.hpp
statSampler.cpp                         resourceArea.hpp
statSampler.cpp                         statSampler.hpp
statSampler.cpp                         systemDictionary.hpp
statSampler.cpp                         vmSymbols.hpp
3910
statSampler.cpp                         vm_version_<arch>.hpp
D
duke 已提交
3911 3912 3913 3914

statSampler.hpp                         perfData.hpp
statSampler.hpp                         task.hpp

3915
stubCodeGenerator.cpp                   assembler_<arch>.inline.hpp
3916
stubCodeGenerator.cpp                   disassembler.hpp
D
duke 已提交
3917 3918 3919 3920 3921 3922 3923 3924 3925
stubCodeGenerator.cpp                   forte.hpp
stubCodeGenerator.cpp                   oop.inline.hpp
stubCodeGenerator.cpp                   stubCodeGenerator.hpp
stubCodeGenerator.cpp                   vtune.hpp

stubCodeGenerator.hpp                   allocation.hpp
stubCodeGenerator.hpp                   assembler.hpp

stubGenerator_<arch_model>.cpp          assembler.hpp
3926
stubGenerator_<arch_model>.cpp          assembler_<arch>.inline.hpp
D
duke 已提交
3927 3928 3929 3930
stubGenerator_<arch_model>.cpp          frame.inline.hpp
stubGenerator_<arch_model>.cpp          handles.inline.hpp
stubGenerator_<arch_model>.cpp          instanceOop.hpp
stubGenerator_<arch_model>.cpp          interpreter.hpp
3931
stubGenerator_<arch_model>.cpp          methodHandles.hpp
D
duke 已提交
3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979
stubGenerator_<arch_model>.cpp          methodOop.hpp
stubGenerator_<arch_model>.cpp          nativeInst_<arch>.hpp
stubGenerator_<arch_model>.cpp          objArrayKlass.hpp
stubGenerator_<arch_model>.cpp          oop.inline.hpp
stubGenerator_<arch_model>.cpp          sharedRuntime.hpp
stubGenerator_<arch_model>.cpp          stubCodeGenerator.hpp
stubGenerator_<arch_model>.cpp          stubRoutines.hpp
stubGenerator_<arch_model>.cpp          thread_<os_family>.inline.hpp
stubGenerator_<arch_model>.cpp          top.hpp

stubRoutines.cpp                        codeBuffer.hpp
stubRoutines.cpp                        copy.hpp
stubRoutines.cpp                        interfaceSupport.hpp
stubRoutines.cpp                        oop.inline.hpp
stubRoutines.cpp                        resourceArea.hpp
stubRoutines.cpp                        sharedRuntime.hpp
stubRoutines.cpp                        stubRoutines.hpp
stubRoutines.cpp                        timer.hpp

stubRoutines.hpp                        allocation.hpp
stubRoutines.hpp                        codeBlob.hpp
stubRoutines.hpp                        frame.hpp
stubRoutines.hpp                        mutexLocker.hpp
stubRoutines.hpp                        nativeInst_<arch>.hpp
stubRoutines.hpp                        stubCodeGenerator.hpp
stubRoutines.hpp                        top.hpp

stubRoutines_<arch_model>.cpp           deoptimization.hpp
stubRoutines_<arch_model>.cpp           frame.inline.hpp
stubRoutines_<arch_model>.cpp           stubRoutines.hpp
stubRoutines_<arch_model>.cpp           thread_<os_family>.inline.hpp

stubRoutines_<arch_model>.hpp           generate_platform_dependent_include

stubRoutines_<os_family>.cpp            os.hpp
stubRoutines_<os_family>.cpp            stubRoutines.hpp

stubs.cpp                               allocation.inline.hpp
stubs.cpp                               codeBlob.hpp
stubs.cpp                               mutexLocker.hpp
stubs.cpp                               oop.inline.hpp
stubs.cpp                               stubs.hpp

stubs.hpp                               allocation.hpp
stubs.hpp                               os_<os_family>.inline.hpp

sweeper.cpp                             atomic.hpp
sweeper.cpp                             codeCache.hpp
3980
sweeper.cpp                             compileBroker.hpp
D
duke 已提交
3981 3982 3983 3984 3985 3986 3987
sweeper.cpp                             events.hpp
sweeper.cpp                             methodOop.hpp
sweeper.cpp                             mutexLocker.hpp
sweeper.cpp                             nmethod.hpp
sweeper.cpp                             os.hpp
sweeper.cpp                             resourceArea.hpp
sweeper.cpp                             sweeper.hpp
3988 3989
sweeper.cpp                             vm_operations.hpp
sweeper.cpp                             xmlstream.hpp
D
duke 已提交
3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072

symbolKlass.cpp                         gcLocker.hpp
symbolKlass.cpp                         handles.inline.hpp
symbolKlass.cpp                         oop.inline.hpp
symbolKlass.cpp                         symbolKlass.hpp
symbolKlass.cpp                         symbolOop.hpp
symbolKlass.cpp                         symbolTable.hpp

symbolKlass.hpp                         typeArrayKlass.hpp

symbolOop.cpp                           oop.inline.hpp
symbolOop.cpp                           symbolOop.hpp

symbolOop.hpp                           typeArrayOop.hpp
symbolOop.hpp                           utf8.hpp

symbolTable.cpp                         collectedHeap.inline.hpp
symbolTable.cpp                         filemap.hpp
symbolTable.cpp                         gcLocker.inline.hpp
symbolTable.cpp                         hashtable.inline.hpp
symbolTable.cpp                         javaClasses.hpp
symbolTable.cpp                         mutexLocker.hpp
symbolTable.cpp                         oop.inline.hpp
symbolTable.cpp                         oop.inline2.hpp
symbolTable.cpp                         symbolKlass.hpp
symbolTable.cpp                         symbolTable.hpp
symbolTable.cpp                         systemDictionary.hpp

symbolTable.hpp                         allocation.inline.hpp
symbolTable.hpp                         hashtable.hpp
symbolTable.hpp                         symbolOop.hpp

synchronizer.cpp                        biasedLocking.hpp
synchronizer.cpp                        dtrace.hpp
synchronizer.cpp                        events.hpp
synchronizer.cpp                        handles.inline.hpp
synchronizer.cpp                        interfaceSupport.hpp
synchronizer.cpp                        markOop.hpp
synchronizer.cpp                        mutexLocker.hpp
synchronizer.cpp                        objectMonitor.hpp
synchronizer.cpp                        objectMonitor.inline.hpp
synchronizer.cpp                        oop.inline.hpp
synchronizer.cpp                        osThread.hpp
synchronizer.cpp                        os_<os_family>.inline.hpp
synchronizer.cpp                        preserveException.hpp
synchronizer.cpp                        resourceArea.hpp
synchronizer.cpp                        stubRoutines.hpp
synchronizer.cpp                        synchronizer.hpp
synchronizer.cpp                        threadService.hpp
synchronizer.cpp                        thread_<os_family>.inline.hpp
synchronizer.cpp                        vmSymbols.hpp

synchronizer.hpp                        handles.hpp
synchronizer.hpp                        markOop.hpp
synchronizer.hpp                        perfData.hpp
synchronizer.hpp                        top.hpp

systemDictionary.cpp                    biasedLocking.hpp
systemDictionary.cpp                    bytecodeStream.hpp
systemDictionary.cpp                    classLoadingService.hpp
systemDictionary.cpp                    dictionary.hpp
systemDictionary.cpp                    fieldType.hpp
systemDictionary.cpp                    gcLocker.hpp
systemDictionary.cpp                    handles.inline.hpp
systemDictionary.cpp                    instanceKlass.hpp
systemDictionary.cpp                    instanceRefKlass.hpp
systemDictionary.cpp                    interpreter.hpp
systemDictionary.cpp                    java.hpp
systemDictionary.cpp                    javaCalls.hpp
systemDictionary.cpp                    javaClasses.hpp
systemDictionary.cpp                    jvmtiEnvBase.hpp
systemDictionary.cpp                    klass.inline.hpp
systemDictionary.cpp                    loaderConstraints.hpp
systemDictionary.cpp                    methodDataOop.hpp
systemDictionary.cpp                    mutexLocker.hpp
systemDictionary.cpp                    objArrayKlass.hpp
systemDictionary.cpp                    oop.inline.hpp
systemDictionary.cpp                    oop.inline2.hpp
systemDictionary.cpp                    oopFactory.hpp
systemDictionary.cpp                    placeholders.hpp
systemDictionary.cpp                    resolutionErrors.hpp
systemDictionary.cpp                    signature.hpp
systemDictionary.cpp                    systemDictionary.hpp
4073
systemDictionary.cpp                    threadService.hpp
D
duke 已提交
4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137
systemDictionary.cpp                    typeArrayKlass.hpp
systemDictionary.cpp                    vmSymbols.hpp

systemDictionary.hpp                    classFileStream.hpp
systemDictionary.hpp                    classLoader.hpp
systemDictionary.hpp                    hashtable.hpp
systemDictionary.hpp                    java.hpp
systemDictionary.hpp                    objArrayOop.hpp
systemDictionary.hpp                    reflectionUtils.hpp
systemDictionary.hpp                    symbolOop.hpp

task.cpp                                allocation.hpp
task.cpp                                init.hpp
task.cpp                                os_<os_family>.inline.hpp
task.cpp                                task.hpp
task.cpp                                thread_<os_family>.inline.hpp
task.cpp                                timer.hpp

task.hpp                                top.hpp

taskqueue.cpp                           debug.hpp
taskqueue.cpp                           os.hpp
taskqueue.cpp                           taskqueue.hpp
taskqueue.cpp                           thread_<os_family>.inline.hpp

taskqueue.hpp                           allocation.hpp
taskqueue.hpp                           allocation.inline.hpp
taskqueue.hpp                           mutex.hpp
taskqueue.hpp                           orderAccess_<os_arch>.inline.hpp

templateInterpreter.cpp                 interpreter.hpp
templateInterpreter.cpp                 interpreterGenerator.hpp
templateInterpreter.cpp                 interpreterRuntime.hpp
templateInterpreter.cpp                 templateTable.hpp

templateInterpreter.hpp                 abstractInterpreter.hpp
templateInterpreter.hpp                 templateTable.hpp

templateInterpreter_<arch_model>.cpp    arguments.hpp
templateInterpreter_<arch_model>.cpp    arrayOop.hpp
templateInterpreter_<arch_model>.cpp    assembler.hpp
templateInterpreter_<arch_model>.cpp    bytecodeHistogram.hpp
templateInterpreter_<arch_model>.cpp    debug.hpp
templateInterpreter_<arch_model>.cpp    deoptimization.hpp
templateInterpreter_<arch_model>.cpp    frame.inline.hpp
templateInterpreter_<arch_model>.cpp    interpreterRuntime.hpp
templateInterpreter_<arch_model>.cpp    interpreter.hpp
templateInterpreter_<arch_model>.cpp    interpreterGenerator.hpp
templateInterpreter_<arch_model>.cpp    jvmtiExport.hpp
templateInterpreter_<arch_model>.cpp    jvmtiThreadState.hpp
templateInterpreter_<arch_model>.cpp    methodDataOop.hpp
templateInterpreter_<arch_model>.cpp    methodOop.hpp
templateInterpreter_<arch_model>.cpp    oop.inline.hpp
templateInterpreter_<arch_model>.cpp    sharedRuntime.hpp
templateInterpreter_<arch_model>.cpp    stubRoutines.hpp
templateInterpreter_<arch_model>.cpp    synchronizer.hpp
templateInterpreter_<arch_model>.cpp    templateTable.hpp
templateInterpreter_<arch_model>.cpp    timer.hpp
templateInterpreter_<arch_model>.cpp    vframeArray.hpp

templateInterpreter_<arch>.hpp          generate_platform_dependent_include

templateInterpreterGenerator_<arch>.hpp generate_platform_dependent_include

4138
templateTable.cpp                       collectedHeap.hpp
D
duke 已提交
4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149
templateTable.cpp                       templateTable.hpp
templateTable.cpp                       timer.hpp

templateTable.hpp                       allocation.hpp
templateTable.hpp                       bytecodes.hpp
templateTable.hpp                       frame.hpp
templateTable.hpp                       interp_masm_<arch_model>.hpp

templateTable_<arch_model>.cpp          interpreterRuntime.hpp
templateTable_<arch_model>.cpp          interpreter.hpp
templateTable_<arch_model>.cpp          methodDataOop.hpp
4150
templateTable_<arch_model>.cpp          methodHandles.hpp
D
duke 已提交
4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640
templateTable_<arch_model>.cpp          objArrayKlass.hpp
templateTable_<arch_model>.cpp          oop.inline.hpp
templateTable_<arch_model>.cpp          sharedRuntime.hpp
templateTable_<arch_model>.cpp          stubRoutines.hpp
templateTable_<arch_model>.cpp          synchronizer.hpp
templateTable_<arch_model>.cpp          templateTable.hpp
templateTable_<arch_model>.cpp          universe.inline.hpp

templateTable_<arch_model>.hpp          generate_platform_dependent_include

tenuredGeneration.cpp                   allocation.inline.hpp
tenuredGeneration.cpp                   blockOffsetTable.inline.hpp
tenuredGeneration.cpp                   collectorCounters.hpp
tenuredGeneration.cpp                   generation.inline.hpp
tenuredGeneration.cpp                   generationSpec.hpp
tenuredGeneration.cpp                   java.hpp
tenuredGeneration.cpp                   oop.inline.hpp
tenuredGeneration.cpp                   parGCAllocBuffer.hpp
tenuredGeneration.cpp                   space.hpp
tenuredGeneration.cpp                   tenuredGeneration.hpp

tenuredGeneration.hpp                   cSpaceCounters.hpp
tenuredGeneration.hpp                   gcStats.hpp
tenuredGeneration.hpp                   generation.hpp
tenuredGeneration.hpp                   generationCounters.hpp

thread.cpp                              aprofiler.hpp
thread.cpp                              arguments.hpp
thread.cpp                              attachListener.hpp
thread.cpp                              biasedLocking.hpp
thread.cpp                              classLoader.hpp
thread.cpp                              compileBroker.hpp
thread.cpp                              defaultStream.hpp
thread.cpp                              deoptimization.hpp
thread.cpp                              dtrace.hpp
thread.cpp                              events.hpp
thread.cpp                              fprofiler.hpp
thread.cpp                              frame.inline.hpp
thread.cpp                              gcTaskManager.hpp
thread.cpp                              hpi.hpp
thread.cpp                              init.hpp
thread.cpp                              instanceKlass.hpp
thread.cpp                              interfaceSupport.hpp
thread.cpp                              interpreter.hpp
thread.cpp                              interpreter.hpp
thread.cpp                              java.hpp
thread.cpp                              javaCalls.hpp
thread.cpp                              javaClasses.hpp
thread.cpp                              jniPeriodicChecker.hpp
thread.cpp                              jvm_misc.hpp
thread.cpp                              jvmtiExport.hpp
thread.cpp                              jvmtiThreadState.hpp
thread.cpp                              linkResolver.hpp
thread.cpp                              management.hpp
thread.cpp                              memprofiler.hpp
thread.cpp                              mutexLocker.hpp
thread.cpp                              objArrayOop.hpp
thread.cpp                              objectMonitor.hpp
thread.cpp                              objectMonitor.inline.hpp
thread.cpp                              oop.inline.hpp
thread.cpp                              oopFactory.hpp
thread.cpp                              osThread.hpp
thread.cpp                              os_<os_family>.inline.hpp
thread.cpp                              preserveException.hpp
thread.cpp                              privilegedStack.hpp
thread.cpp                              safepoint.hpp
thread.cpp                              scopeDesc.hpp
thread.cpp                              sharedRuntime.hpp
thread.cpp                              statSampler.hpp
thread.cpp                              stubRoutines.hpp
thread.cpp                              symbolOop.hpp
thread.cpp                              systemDictionary.hpp
thread.cpp                              task.hpp
thread.cpp                              threadCritical.hpp
thread.cpp                              threadLocalStorage.hpp
thread.cpp                              threadService.hpp
thread.cpp                              thread_<os_family>.inline.hpp
thread.cpp                              universe.inline.hpp
thread.cpp                              vframe.hpp
thread.cpp                              vframeArray.hpp
thread.cpp                              vframe_hp.hpp
thread.cpp                              vmSymbols.hpp
thread.cpp                              vmThread.hpp
thread.cpp                              vm_operations.hpp

thread.hpp                              allocation.hpp
thread.hpp                              exceptions.hpp
thread.hpp                              frame.hpp
thread.hpp                              javaFrameAnchor.hpp
thread.hpp                              jni.h
thread.hpp                              jniHandles.hpp
thread.hpp                              jvmtiExport.hpp
thread.hpp                              mutexLocker.hpp
thread.hpp                              oop.hpp
thread.hpp                              os.hpp
thread.hpp                              osThread.hpp
thread.hpp                              safepoint.hpp
thread.hpp                              stubRoutines.hpp
thread.hpp                              threadLocalAllocBuffer.hpp
thread.hpp                              threadLocalStorage.hpp
thread.hpp                              top.hpp
thread.hpp                              unhandledOops.hpp

thread_<os_arch>.cpp                    frame.inline.hpp
thread_<os_arch>.cpp                    thread_<os_family>.inline.hpp

thread_<os_arch>.hpp                    generate_platform_dependent_include

thread_<os_family>.inline.hpp           atomic.hpp
thread_<os_family>.inline.hpp           atomic_<os_arch>.inline.hpp
thread_<os_family>.inline.hpp           orderAccess_<os_arch>.inline.hpp
thread_<os_family>.inline.hpp           prefetch.hpp
thread_<os_family>.inline.hpp           prefetch_<os_arch>.inline.hpp
thread_<os_family>.inline.hpp           thread.hpp
thread_<os_family>.inline.hpp           threadLocalStorage.hpp

threadCritical.hpp                      allocation.hpp

threadCritical_<os_family>.cpp          threadCritical.hpp
threadCritical_<os_family>.cpp          thread_<os_family>.inline.hpp

threadLS_<os_arch>.cpp                  threadLocalStorage.hpp
threadLS_<os_arch>.cpp                  thread_<os_family>.inline.hpp

threadLS_<os_arch>.hpp                  generate_platform_dependent_include

threadLocalAllocBuffer.cpp              copy.hpp
threadLocalAllocBuffer.cpp              genCollectedHeap.hpp
threadLocalAllocBuffer.cpp              oop.inline.hpp
threadLocalAllocBuffer.cpp              resourceArea.hpp
threadLocalAllocBuffer.cpp              threadLocalAllocBuffer.inline.hpp
threadLocalAllocBuffer.cpp              thread_<os_family>.inline.hpp
threadLocalAllocBuffer.cpp              universe.inline.hpp

threadLocalAllocBuffer.hpp              gcUtil.hpp
threadLocalAllocBuffer.hpp              perfData.hpp
threadLocalAllocBuffer.hpp              typeArrayOop.hpp

threadLocalAllocBuffer.inline.hpp       atomic.hpp
threadLocalAllocBuffer.inline.hpp       collectedHeap.hpp
threadLocalAllocBuffer.inline.hpp       copy.hpp
threadLocalAllocBuffer.inline.hpp       threadLocalAllocBuffer.hpp

threadLocalStorage.cpp                  os_<os_family>.inline.hpp
threadLocalStorage.cpp                  threadLocalStorage.hpp
threadLocalStorage.cpp                  thread_<os_family>.inline.hpp

threadLocalStorage.hpp                  gcUtil.hpp
threadLocalStorage.hpp                  os.hpp
threadLocalStorage.hpp                  top.hpp

threadService.cpp                       allocation.hpp
threadService.cpp                       handles.inline.hpp
threadService.cpp                       heapInspection.hpp
threadService.cpp                       init.hpp
threadService.cpp                       instanceKlass.hpp
threadService.cpp                       oop.inline.hpp
threadService.cpp                       oopFactory.hpp
threadService.cpp                       systemDictionary.hpp
threadService.cpp                       thread.hpp
threadService.cpp                       threadService.hpp
threadService.cpp                       vframe.hpp
threadService.cpp                       vmThread.hpp
threadService.cpp                       vm_operations.hpp

threadService.hpp                       handles.hpp
threadService.hpp                       init.hpp
threadService.hpp                       javaClasses.hpp
threadService.hpp                       jniHandles.hpp
threadService.hpp                       management.hpp
threadService.hpp                       objectMonitor.hpp
threadService.hpp                       objectMonitor.inline.hpp
threadService.hpp                       perfData.hpp
threadService.hpp                       serviceUtil.hpp

timer.cpp                               oop.inline.hpp
timer.cpp                               os_<os_family>.inline.hpp
timer.cpp                               ostream.hpp
timer.cpp                               timer.hpp

timer.hpp                               globalDefinitions.hpp

top.hpp                                 debug.hpp
top.hpp                                 exceptions.hpp
top.hpp                                 globalDefinitions.hpp
top.hpp                                 globals.hpp
top.hpp                                 macros.hpp
top.hpp                                 oopsHierarchy.hpp
top.hpp                                 ostream.hpp
top.hpp                                 sizes.hpp

typeArrayKlass.cpp                      collectedHeap.hpp
typeArrayKlass.cpp                      collectedHeap.inline.hpp
typeArrayKlass.cpp                      handles.inline.hpp
typeArrayKlass.cpp                      instanceKlass.hpp
typeArrayKlass.cpp                      klassOop.hpp
typeArrayKlass.cpp                      objArrayKlassKlass.hpp
typeArrayKlass.cpp                      oop.inline.hpp
typeArrayKlass.cpp                      resourceArea.hpp
typeArrayKlass.cpp                      systemDictionary.hpp
typeArrayKlass.cpp                      typeArrayKlass.hpp
typeArrayKlass.cpp                      typeArrayOop.hpp
typeArrayKlass.cpp                      universe.hpp
typeArrayKlass.cpp                      universe.inline.hpp
typeArrayKlass.cpp                      vmSymbols.hpp

typeArrayKlass.hpp                      arrayKlass.hpp

typeArrayKlassKlass.cpp                 handles.inline.hpp
typeArrayKlassKlass.cpp                 javaClasses.hpp
typeArrayKlassKlass.cpp                 oop.inline.hpp
typeArrayKlassKlass.cpp                 typeArrayKlassKlass.hpp

typeArrayKlassKlass.hpp                 arrayKlassKlass.hpp
typeArrayKlassKlass.hpp                 typeArrayKlass.hpp

typeArrayOop.cpp                        oop.inline.hpp
typeArrayOop.cpp                        typeArrayOop.hpp

typeArrayOop.hpp                        arrayOop.hpp
typeArrayOop.hpp                        orderAccess_<os_arch>.inline.hpp
typeArrayOop.hpp                        typeArrayKlass.hpp

unhandledOops.cpp                       collectedHeap.hpp
unhandledOops.cpp                       gcLocker.inline.hpp
unhandledOops.cpp                       globalDefinitions.hpp
unhandledOops.cpp                       oop.inline.hpp
unhandledOops.cpp                       thread.hpp
unhandledOops.cpp                       unhandledOops.hpp
unhandledOops.cpp                       universe.hpp

universe.cpp                            aprofiler.hpp
universe.cpp                            arguments.hpp
universe.cpp                            arrayKlassKlass.hpp
universe.cpp                            cardTableModRefBS.hpp
universe.cpp                            classLoader.hpp
universe.cpp                            codeCache.hpp
universe.cpp                            collectedHeap.inline.hpp
universe.cpp                            compiledICHolderKlass.hpp
universe.cpp                            constMethodKlass.hpp
universe.cpp                            constantPoolKlass.hpp
universe.cpp                            constantPoolOop.hpp
universe.cpp                            copy.hpp
universe.cpp                            cpCacheKlass.hpp
universe.cpp                            cpCacheOop.hpp
universe.cpp                            deoptimization.hpp
universe.cpp                            dependencies.hpp
universe.cpp                            events.hpp
universe.cpp                            filemap.hpp
universe.cpp                            fprofiler.hpp
universe.cpp                            gcLocker.inline.hpp
universe.cpp                            genCollectedHeap.hpp
universe.cpp                            genRemSet.hpp
universe.cpp                            generation.hpp
universe.cpp                            handles.inline.hpp
universe.cpp                            hashtable.inline.hpp
universe.cpp                            instanceKlass.hpp
universe.cpp                            instanceKlassKlass.hpp
universe.cpp                            instanceRefKlass.hpp
universe.cpp                            interpreter.hpp
universe.cpp                            java.hpp
universe.cpp                            javaCalls.hpp
universe.cpp                            javaClasses.hpp
universe.cpp                            jvmtiRedefineClassesTrace.hpp
universe.cpp                            klassKlass.hpp
universe.cpp                            klassOop.hpp
universe.cpp                            memoryService.hpp
universe.cpp                            methodDataKlass.hpp
universe.cpp                            methodKlass.hpp
universe.cpp                            objArrayKlassKlass.hpp
universe.cpp                            oop.inline.hpp
universe.cpp                            oopFactory.hpp
universe.cpp                            permGen.hpp
universe.cpp                            preserveException.hpp
universe.cpp                            sharedRuntime.hpp
universe.cpp                            space.hpp
universe.cpp                            symbolKlass.hpp
universe.cpp                            symbolTable.hpp
universe.cpp                            synchronizer.hpp
universe.cpp                            systemDictionary.hpp
universe.cpp                            thread_<os_family>.inline.hpp
universe.cpp                            timer.hpp
universe.cpp                            typeArrayKlass.hpp
universe.cpp                            typeArrayKlassKlass.hpp
universe.cpp                            universe.hpp
universe.cpp                            universe.inline.hpp
universe.cpp                            vmSymbols.hpp
universe.cpp                            vm_operations.hpp
universe.cpp                            vtune.hpp

universe.hpp                            growableArray.hpp
universe.hpp                            handles.hpp

universe.inline.hpp                     universe.hpp

unsafe.cpp                              allocation.inline.hpp
unsafe.cpp                              copy.hpp
unsafe.cpp                              globals.hpp
unsafe.cpp                              interfaceSupport.hpp
unsafe.cpp                              jni.h
unsafe.cpp                              jvm.h
unsafe.cpp                              reflection.hpp
unsafe.cpp                              reflectionCompat.hpp
unsafe.cpp                              synchronizer.hpp
unsafe.cpp                              threadService.hpp
unsafe.cpp                              vmSymbols.hpp

utf8.cpp                                utf8.hpp

utf8.hpp                                allocation.hpp
utf8.hpp                                top.hpp

verificationType.cpp                    symbolTable.hpp
verificationType.cpp                    verificationType.hpp

verificationType.hpp                    allocation.hpp
verificationType.hpp                    handles.hpp
verificationType.hpp                    instanceKlass.hpp
verificationType.hpp                    oop.inline.hpp
verificationType.hpp                    signature.hpp
verificationType.hpp                    symbolOop.hpp
verificationType.hpp                    systemDictionary.hpp

verifier.cpp                            bytecodeStream.hpp
verifier.cpp                            bytes_<arch>.hpp
verifier.cpp                            classFileStream.hpp
verifier.cpp                            fieldDescriptor.hpp
verifier.cpp                            handles.inline.hpp
verifier.cpp                            hpi.hpp
verifier.cpp                            instanceKlass.hpp
verifier.cpp                            interfaceSupport.hpp
verifier.cpp                            javaCalls.hpp
verifier.cpp                            javaClasses.hpp
verifier.cpp                            jvm.h
verifier.cpp                            oop.inline.hpp
verifier.cpp                            oopFactory.hpp
verifier.cpp                            orderAccess.hpp
verifier.cpp                            os.hpp
verifier.cpp                            resourceArea.hpp
verifier.cpp                            stackMapTable.hpp
verifier.cpp                            systemDictionary.hpp
verifier.cpp                            typeArrayOop.hpp
verifier.cpp                            verifier.hpp
verifier.cpp                            vmSymbols.hpp

verifier.hpp                            exceptions.hpp
verifier.hpp                            gcLocker.hpp
verifier.hpp                            handles.hpp
verifier.hpp                            klass.hpp
verifier.hpp                            methodOop.hpp
verifier.hpp                            verificationType.hpp

vframe.cpp                              codeCache.hpp
vframe.cpp                              debugInfoRec.hpp
vframe.cpp                              handles.inline.hpp
vframe.cpp                              instanceKlass.hpp
vframe.cpp                              interpreter.hpp
vframe.cpp                              javaClasses.hpp
vframe.cpp                              nmethod.hpp
vframe.cpp                              objectMonitor.hpp
vframe.cpp                              objectMonitor.inline.hpp
vframe.cpp                              oop.inline.hpp
vframe.cpp                              oopMapCache.hpp
vframe.cpp                              pcDesc.hpp
vframe.cpp                              resourceArea.hpp
vframe.cpp                              scopeDesc.hpp
vframe.cpp                              signature.hpp
vframe.cpp                              stubRoutines.hpp
vframe.cpp                              synchronizer.hpp
vframe.cpp                              systemDictionary.hpp
vframe.cpp                              vframe.hpp
vframe.cpp                              vframeArray.hpp
vframe.cpp                              vframe_hp.hpp
vframe.cpp                              vmSymbols.hpp

vframe.hpp                              debugInfo.hpp
vframe.hpp                              debugInfoRec.hpp
vframe.hpp                              frame.hpp
vframe.hpp                              frame.inline.hpp
vframe.hpp                              growableArray.hpp
vframe.hpp                              location.hpp
vframe.hpp                              oop.hpp
vframe.hpp                              stackValue.hpp
vframe.hpp                              stackValueCollection.hpp

vframeArray.cpp                         allocation.inline.hpp
vframeArray.cpp                         events.hpp
vframeArray.cpp                         handles.inline.hpp
vframeArray.cpp                         interpreter.hpp
vframeArray.cpp                         jvmtiThreadState.hpp
vframeArray.cpp                         methodDataOop.hpp
vframeArray.cpp                         monitorChunk.hpp
vframeArray.cpp                         oop.inline.hpp
vframeArray.cpp                         resourceArea.hpp
vframeArray.cpp                         sharedRuntime.hpp
vframeArray.cpp                         universe.inline.hpp
vframeArray.cpp                         vframe.hpp
vframeArray.cpp                         vframeArray.hpp
vframeArray.cpp                         vframe_hp.hpp
vframeArray.cpp                         vmSymbols.hpp

vframeArray.hpp                         arrayOop.hpp
vframeArray.hpp                         deoptimization.hpp
vframeArray.hpp                         frame.inline.hpp
vframeArray.hpp                         growableArray.hpp
vframeArray.hpp                         monitorChunk.hpp

vframe_hp.cpp                           codeCache.hpp
vframe_hp.cpp                           debugInfoRec.hpp
vframe_hp.cpp                           handles.inline.hpp
vframe_hp.cpp                           instanceKlass.hpp
vframe_hp.cpp                           interpreter.hpp
vframe_hp.cpp                           monitorChunk.hpp
vframe_hp.cpp                           nmethod.hpp
vframe_hp.cpp                           oop.inline.hpp
vframe_hp.cpp                           oopMapCache.hpp
vframe_hp.cpp                           pcDesc.hpp
vframe_hp.cpp                           scopeDesc.hpp
vframe_hp.cpp                           signature.hpp
vframe_hp.cpp                           stubRoutines.hpp
vframe_hp.cpp                           synchronizer.hpp
vframe_hp.cpp                           vframeArray.hpp
vframe_hp.cpp                           vframe_hp.hpp

vframe_hp.hpp                           vframe.hpp

virtualspace.cpp                        markOop.hpp
virtualspace.cpp                        oop.inline.hpp
virtualspace.cpp                        os_<os_family>.inline.hpp
virtualspace.cpp                        virtualspace.hpp

virtualspace.hpp                        allocation.hpp

vmError.cpp                             arguments.hpp
vmError.cpp                             collectedHeap.hpp
vmError.cpp                             compileBroker.hpp
vmError.cpp                             debug.hpp
vmError.cpp                             defaultStream.hpp
vmError.cpp                             frame.inline.hpp
vmError.cpp                             init.hpp
vmError.cpp                             os.hpp
vmError.cpp                             thread.hpp
vmError.cpp                             top.hpp
vmError.cpp                             vmError.hpp
vmError.cpp                             vmThread.hpp
vmError.cpp                             vm_operations.hpp

vmError.hpp                             globalDefinitions.hpp

vmError_<os_family>.cpp                 arguments.hpp
vmError_<os_family>.cpp                 os.hpp
vmError_<os_family>.cpp                 thread.hpp
vmError_<os_family>.cpp                 vmError.hpp

// vmStructs is jck optional, put cpp deps in includeDB_features

vmStructs.hpp                           debug.hpp

vmSymbols.cpp                           handles.inline.hpp
vmSymbols.cpp                           oop.inline.hpp
vmSymbols.cpp                           oopFactory.hpp
vmSymbols.cpp                           vmSymbols.hpp
vmSymbols.cpp                           xmlstream.hpp

vmSymbols.hpp                           symbolOop.hpp

vmThread.cpp                            collectedHeap.hpp
vmThread.cpp                            compileBroker.hpp
vmThread.cpp                            events.hpp
vmThread.cpp                            interfaceSupport.hpp
vmThread.cpp                            methodOop.hpp
vmThread.cpp                            mutexLocker.hpp
vmThread.cpp                            oop.inline.hpp
vmThread.cpp                            os.hpp
vmThread.cpp                            resourceArea.hpp
vmThread.cpp                            runtimeService.hpp
vmThread.cpp                            thread_<os_family>.inline.hpp
vmThread.cpp                            vmThread.hpp
vmThread.cpp                            vm_operations.hpp
vmThread.cpp                            xmlstream.hpp

vmThread.hpp                            perfData.hpp
vmThread.hpp                            thread_<os_family>.inline.hpp
vmThread.hpp                            vm_operations.hpp

vm_operations.cpp                       arguments.hpp
vm_operations.cpp                       compileBroker.hpp
vm_operations.cpp                       compilerOracle.hpp
vm_operations.cpp                       deoptimization.hpp
vm_operations.cpp                       interfaceSupport.hpp
4641
vm_operations.cpp                       isGCActiveMark.hpp
D
duke 已提交
4642
vm_operations.cpp                       resourceArea.hpp
4643
vm_operations.cpp                       sweeper.hpp
D
duke 已提交
4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657
vm_operations.cpp                       threadService.hpp
vm_operations.cpp                       thread_<os_family>.inline.hpp
vm_operations.cpp                       vmSymbols.hpp
vm_operations.cpp                       vm_operations.hpp

vm_operations.hpp                       allocation.hpp
vm_operations.hpp                       javaClasses.hpp
vm_operations.hpp                       oop.hpp
vm_operations.hpp                       thread.hpp
vm_operations.hpp                       top.hpp

vm_version.cpp                          arguments.hpp
vm_version.cpp                          oop.inline.hpp
vm_version.cpp                          universe.hpp
4658
vm_version.cpp                          vm_version_<arch>.hpp
D
duke 已提交
4659 4660 4661 4662

vm_version.hpp                          allocation.hpp
vm_version.hpp                          ostream.hpp

4663 4664 4665 4666 4667 4668
vm_version_<arch>.cpp                   assembler_<arch>.inline.hpp
vm_version_<arch>.cpp                   java.hpp
vm_version_<arch>.cpp                   os_<os_family>.inline.hpp
vm_version_<arch>.cpp                   resourceArea.hpp
vm_version_<arch>.cpp                   stubCodeGenerator.hpp
vm_version_<arch>.cpp                   vm_version_<arch>.hpp
D
duke 已提交
4669

4670 4671
vm_version_<arch>.hpp                   globals_extension.hpp
vm_version_<arch>.hpp                   vm_version.hpp
D
duke 已提交
4672

4673
vm_version_<os_arch>.cpp                os.hpp
4674
vm_version_<os_arch>.cpp                vm_version_<arch>.hpp
D
duke 已提交
4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688

vmreg.cpp                               assembler.hpp
vmreg.cpp                               vmreg.hpp

vmreg.hpp                               allocation.hpp
vmreg.hpp                               globalDefinitions.hpp
vmreg.hpp                               register_<arch>.hpp

vmreg_<arch>.cpp                        assembler.hpp
vmreg_<arch>.cpp                        vmreg.hpp

vmreg_<arch>.hpp                        generate_platform_dependent_include

vtableStubs.cpp                         allocation.inline.hpp
4689
vtableStubs.cpp                         disassembler.hpp
D
duke 已提交
4690 4691 4692 4693 4694
vtableStubs.cpp                         forte.hpp
vtableStubs.cpp                         handles.inline.hpp
vtableStubs.cpp                         instanceKlass.hpp
vtableStubs.cpp                         jvmtiExport.hpp
vtableStubs.cpp                         klassVtable.hpp
4695
vtableStubs.cpp                         oop.inline.hpp
D
duke 已提交
4696 4697 4698 4699 4700 4701 4702 4703 4704
vtableStubs.cpp                         mutexLocker.hpp
vtableStubs.cpp                         resourceArea.hpp
vtableStubs.cpp                         sharedRuntime.hpp
vtableStubs.cpp                         vtableStubs.hpp
vtableStubs.cpp                         vtune.hpp

vtableStubs.hpp                         allocation.hpp

vtableStubs_<arch_model>.cpp            assembler.hpp
4705
vtableStubs_<arch_model>.cpp            assembler_<arch>.inline.hpp
D
duke 已提交
4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740
vtableStubs_<arch_model>.cpp            instanceKlass.hpp
vtableStubs_<arch_model>.cpp            interp_masm_<arch_model>.hpp
vtableStubs_<arch_model>.cpp            klassVtable.hpp
vtableStubs_<arch_model>.cpp            resourceArea.hpp
vtableStubs_<arch_model>.cpp            sharedRuntime.hpp
vtableStubs_<arch_model>.cpp            vmreg_<arch>.inline.hpp
vtableStubs_<arch_model>.cpp            vtableStubs.hpp

vtune.hpp                               allocation.hpp

vtune_<os_family>.cpp                   interpreter.hpp
vtune_<os_family>.cpp                   vtune.hpp

watermark.hpp                           allocation.hpp
watermark.hpp                           globalDefinitions.hpp

workgroup.cpp                           allocation.hpp
workgroup.cpp                           allocation.inline.hpp
workgroup.cpp                           os.hpp
workgroup.cpp                           workgroup.hpp

workgroup.hpp                           thread_<os_family>.inline.hpp

xmlstream.cpp                           allocation.hpp
xmlstream.cpp                           allocation.inline.hpp
xmlstream.cpp                           deoptimization.hpp
xmlstream.cpp                           methodDataOop.hpp
xmlstream.cpp                           methodOop.hpp
xmlstream.cpp                           nmethod.hpp
xmlstream.cpp                           oop.inline.hpp
xmlstream.cpp                           vmThread.hpp
xmlstream.cpp                           xmlstream.hpp

xmlstream.hpp                           handles.hpp
xmlstream.hpp                           ostream.hpp