src/share/vm/includeDB_core

Thu, 12 Nov 2009 09:24:21 -0800

author
never
date
Thu, 12 Nov 2009 09:24:21 -0800
changeset 1515
7c57aead6d3e
parent 1494
389049f3f393
child 1531
84a2da7f454c
permissions
-rw-r--r--

6892658: C2 should optimize some stringbuilder patterns
Reviewed-by: kvn, twisti

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

mercurial