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