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