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