src/share/vm/includeDB_core

Tue, 01 Apr 2008 15:13:47 +0400

author
apetrusenko
date
Tue, 01 Apr 2008 15:13:47 +0400
changeset 574
c0492d52d55b
parent 487
75b0f3cb1943
child 575
3febac328d82
permissions
-rw-r--r--

6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
Reviewed-by: ysr, jmasa

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

mercurial