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