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