src/share/vm/includeDB_core

Mon, 08 Feb 2010 09:58:32 -0800

author
johnc
date
Mon, 08 Feb 2010 09:58:32 -0800
changeset 1682
230fac611b50
parent 1637
5f24d0319e54
parent 1679
745c853ee57f
child 1692
7b4415a18c8a
child 1693
38836cf1d8d2
permissions
-rw-r--r--

Merge

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

mercurial