src/share/vm/includeDB_core

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

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

Merge

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

mercurial