src/share/vm/includeDB_core

Fri, 08 Jan 2010 11:09:46 +0100

author
twisti
date
Fri, 08 Jan 2010 11:09:46 +0100
changeset 1587
cd37471eaecc
parent 1573
dd57230ba8fe
child 1590
4e6abf09f540
permissions
-rw-r--r--

6914206: change way of permission checking for generated MethodHandle adapters
Summary: Put generated MH adapter in InvokeDynamic/MethodHandle classes to be able to indentify them easily in the compiler.
Reviewed-by: kvn, never, jrose

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

mercurial