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