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