src/share/vm/includeDB_core

Wed, 03 Mar 2010 14:48:26 -0800

author
jcoomes
date
Wed, 03 Mar 2010 14:48:26 -0800
changeset 1746
2a1472c30599
parent 1721
ab75c83d7c37
child 1751
cc98cc548f51
permissions
-rw-r--r--

4396719: Mark Sweep stack overflow on deeply nested Object arrays
Summary: Use an explicit stack for object arrays and process them in chunks.
Reviewed-by: iveresov, apetrusenko

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

mercurial