src/share/vm/includeDB_core

Mon, 28 Jul 2008 14:07:44 -0400

author
kamg
date
Mon, 28 Jul 2008 14:07:44 -0400
changeset 677
d95b224e9f17
parent 631
d1605aabd0a1
child 705
b7f01ad69d30
permissions
-rw-r--r--

6721093: -XX:AppendRatio=N not supported
Summary: Add mechanism to ignore unsupported flags for a set period of time
Reviewed-by: acorn, never, coleenp

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

mercurial