src/share/vm/includeDB_core

Fri, 11 Dec 2009 08:39:30 -0800

author
jmasa
date
Fri, 11 Dec 2009 08:39:30 -0800
changeset 1531
84a2da7f454c
parent 1515
7c57aead6d3e
parent 1526
6aa7255741f3
child 1568
aa62b9388fce
permissions
-rw-r--r--

Merge

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

mercurial