src/share/vm/includeDB_core

Fri, 08 Oct 2010 09:29:09 -0700

author
jcoomes
date
Fri, 08 Oct 2010 09:29:09 -0700
changeset 2198
0715f0cf171d
parent 2138
d5d065957597
parent 2194
e41cd7fd68a6
child 2226
75b0735b4d04
permissions
-rw-r--r--

Merge

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

mercurial