duke@435: // xdono@631: // Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved. duke@435: // DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: // duke@435: // This code is free software; you can redistribute it and/or modify it duke@435: // under the terms of the GNU General Public License version 2 only, as duke@435: // published by the Free Software Foundation. duke@435: // duke@435: // This code is distributed in the hope that it will be useful, but WITHOUT duke@435: // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: // version 2 for more details (a copy is included in the LICENSE file that duke@435: // accompanied this code). duke@435: // duke@435: // You should have received a copy of the GNU General Public License version duke@435: // 2 along with this work; if not, write to the Free Software Foundation, duke@435: // Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: // duke@435: // Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, duke@435: // CA 95054 USA or visit www.sun.com if you need additional information or duke@435: // have any questions. never@452: // duke@435: // duke@435: duke@435: // NOTE: DO NOT CHANGE THIS COPYRIGHT TO NEW STYLE - IT WILL BREAK makeDeps! duke@435: duke@435: duke@435: // includeDB format: duke@435: // a comment starts with '// ' and goes to the end of the line duke@435: // anything else is a pair of filenames. The line "x.cpp y.hpp" means duke@435: // "x.cpp must include y.hpp". Similarly, "y.hpp z.hpp" means "any file including duke@435: // y.hpp must also include z.hpp, and z.hpp must be included before y.hpp". duke@435: // duke@435: // Style hint: we try to keep the entries ordered alphabetically, both duke@435: // globally (left-hand sides) and within a given file (right-hand sides) duke@435: // duke@435: // To avoid unnecessary conflicts with the work of other programmers, duke@435: // do not delete, move, or reformat pre-existing lines. Do not attempt duke@435: // to "optimize" this file incrementally. duke@435: // duke@435: // ============ Platform dependent include files =========== duke@435: // duke@435: // Some header files occur in clusters. Header files which depend duke@435: // on the token "generate_platform_dependent_include" are included duke@435: // directly by other header files, and should not be explicitly declared duke@435: // as dependencies. Header files named H.inline.hpp generally contain duke@435: // bodies for inline functions declared in H.hpp. duke@435: // never@452: // NOTE: Files that use the token "generate_platform_dependent_include" duke@435: // are expected to contain macro references like , , ... and duke@435: // makedeps has a dependency on these platform files looking like: never@452: // foo_.trailing_string duke@435: // (where "trailing_string" can be any legal filename strings but typically duke@435: // is "hpp" or "inline.hpp"). never@452: // duke@435: // The dependency in makedeps (and enforced) is that an underscore duke@435: // will precedure the macro invocation. Note that this restriction duke@435: // is only enforced on filenames that have the dependency token duke@435: // "generate_platform_dependent_include" so other files using macro duke@435: // expansion (typically .cpp files) have no requirement to have duke@435: // an underscore precede the macro although this is encouraged for duke@435: // readibility. duke@435: // duke@435: // ======= Circular dependencies and inline functions ========== duke@435: // duke@435: // (Sometimes, circular dependencies prevent complex function bodies duke@435: // from being defined directly in H.hpp. In such cases, a client S.cpp duke@435: // of H.hpp must always declare a dependency on H.inline.hpp, which in duke@435: // turn will declare a dependency on H.hpp. If by some mischance S.cpp duke@435: // declares a dependency on H.hpp, the compiler may complain about missing duke@435: // inline function bodies, or (perhaps) the program may fail to link. duke@435: // The solution is to have S.cpp depend on H.inline.hpp instead of H.hpp. duke@435: // duke@435: // Generally, if in response to a source code change the compiler duke@435: // issues an error in a file F (which may be either a header or a duke@435: // source file), you should consider if the error arises from a missing duke@435: // class definition C. If that is the case, find the header file H which duke@435: // contains C (often, H=C.hpp, but you may have to search for C's definition). duke@435: // Then, add a line to the includeDB file as appropriate. duke@435: // duke@435: // duke@435: // Here are some typical compiler errors that may require changes to includeDB. duke@435: // (Messages are taken from Sun's SPARC compiler.) duke@435: // duke@435: // "klassVtable.cpp", line 96: Error: No_GC_Verifier is not defined. duke@435: // Source code: duke@435: // No_GC_Verifier no_gc; duke@435: // duke@435: // The problem is that the class name No_GC_Verifier is not declared, duke@435: // so the compiler is confused by the syntax. The solution: duke@435: // klassVtable.cpp gcLocker.hpp duke@435: // duke@435: // Sometimes the compiler has only partial knowledge about a class: duke@435: // "privilegedStack.cpp", line 60: Error: cast is not a member of instanceKlass. duke@435: // Source code: duke@435: // if (_protection_domain != instanceKlass::cast(method->method_holder())->protection_domain()) return false; duke@435: // duke@435: // Here, instanceKlass is known to the compiler as a type, because of a duke@435: // forward declaration somewhere ("class instanceKlass;"). The problem duke@435: // is that the compiler has not seen the body of instanceKlass, and so it duke@435: // complains that it does not know about "instanceKlass::cast". Solution: duke@435: // privilegedStack.cpp instanceKlass.hpp duke@435: // duke@435: // Here's another example of a missing declaration: duke@435: // "privilegedStack.cpp", line 111: Error: The function AllocateHeap must have a prototype. duke@435: // Source code: duke@435: // _array = NEW_C_HEAP_ARRAY(PrivilegedElement, initial_size); duke@435: // duke@435: // The problem is that the macro call expands to use a heap function duke@435: // which is defined (for technical reasons) in a different file. Solution: duke@435: // privilegedStack.cpp allocation.inline.hpp duke@435: // The macro is defined in allocation.hpp, while the function is duke@435: // defined (as an inline) in allocation.inline.hpp. Generally, if you duke@435: // find you need a header H.hpp, and there is also a header duke@435: // H.inline.hpp use the latter, because it contains inline definitions duke@435: // you will require. duke@435: duke@435: abstractCompiler.cpp abstractCompiler.hpp duke@435: abstractCompiler.cpp mutexLocker.hpp duke@435: duke@435: abstractCompiler.hpp compilerInterface.hpp duke@435: duke@435: abstractInterpreter.hpp bytecodes.hpp duke@435: abstractInterpreter.hpp interp_masm_.hpp duke@435: abstractInterpreter.hpp stubs.hpp duke@435: abstractInterpreter.hpp thread_.inline.hpp duke@435: abstractInterpreter.hpp top.hpp duke@435: abstractInterpreter.hpp vmThread.hpp duke@435: duke@435: accessFlags.cpp accessFlags.hpp duke@435: accessFlags.cpp oop.inline.hpp duke@435: accessFlags.cpp os_.inline.hpp duke@435: duke@435: accessFlags.hpp jvm.h duke@435: accessFlags.hpp top.hpp duke@435: duke@435: allocation.cpp allocation.hpp duke@435: allocation.cpp allocation.inline.hpp duke@435: allocation.cpp os.hpp duke@435: allocation.cpp os_.inline.hpp duke@435: allocation.cpp ostream.hpp duke@435: allocation.cpp resourceArea.hpp duke@435: allocation.cpp task.hpp duke@435: allocation.cpp threadCritical.hpp duke@435: duke@435: allocation.hpp globalDefinitions.hpp duke@435: allocation.hpp globals.hpp duke@435: duke@435: allocation.inline.hpp os.hpp duke@435: duke@435: aprofiler.cpp aprofiler.hpp duke@435: aprofiler.cpp collectedHeap.inline.hpp duke@435: aprofiler.cpp oop.inline.hpp duke@435: aprofiler.cpp oop.inline2.hpp duke@435: aprofiler.cpp permGen.hpp duke@435: aprofiler.cpp resourceArea.hpp duke@435: aprofiler.cpp space.hpp duke@435: aprofiler.cpp systemDictionary.hpp duke@435: duke@435: aprofiler.hpp allocation.hpp duke@435: aprofiler.hpp klass.hpp duke@435: aprofiler.hpp klassOop.hpp duke@435: aprofiler.hpp top.hpp duke@435: aprofiler.hpp universe.hpp duke@435: duke@435: arguments.cpp allocation.inline.hpp duke@435: arguments.cpp arguments.hpp duke@435: arguments.cpp cardTableRS.hpp duke@435: arguments.cpp compilerOracle.hpp duke@435: arguments.cpp defaultStream.hpp duke@435: arguments.cpp globals_extension.hpp duke@435: arguments.cpp java.hpp duke@435: arguments.cpp javaAssertions.hpp duke@435: arguments.cpp jvmtiExport.hpp duke@435: arguments.cpp management.hpp duke@435: arguments.cpp oop.inline.hpp duke@435: arguments.cpp os_.inline.hpp duke@435: arguments.cpp universe.inline.hpp duke@435: arguments.cpp vm_version_.hpp duke@435: kamg@677: arguments.hpp java.hpp duke@435: arguments.hpp perfData.hpp duke@435: arguments.hpp top.hpp duke@435: duke@435: array.cpp array.hpp duke@435: array.cpp resourceArea.hpp duke@435: array.cpp thread_.inline.hpp duke@435: duke@435: array.hpp allocation.hpp duke@435: array.hpp allocation.inline.hpp duke@435: duke@435: arrayKlass.cpp arrayKlass.hpp duke@435: arrayKlass.cpp arrayKlassKlass.hpp duke@435: arrayKlass.cpp arrayOop.hpp duke@435: arrayKlass.cpp collectedHeap.inline.hpp duke@435: arrayKlass.cpp gcLocker.hpp duke@435: arrayKlass.cpp instanceKlass.hpp duke@435: arrayKlass.cpp javaClasses.hpp duke@435: arrayKlass.cpp jvmti.h duke@435: arrayKlass.cpp objArrayOop.hpp duke@435: arrayKlass.cpp oop.inline.hpp duke@435: arrayKlass.cpp systemDictionary.hpp duke@435: arrayKlass.cpp universe.inline.hpp duke@435: arrayKlass.cpp vmSymbols.hpp duke@435: duke@435: arrayKlass.hpp klass.hpp duke@435: arrayKlass.hpp klassOop.hpp duke@435: arrayKlass.hpp klassVtable.hpp duke@435: arrayKlass.hpp universe.hpp duke@435: duke@435: arrayKlassKlass.cpp arrayKlassKlass.hpp duke@435: arrayKlassKlass.cpp handles.inline.hpp duke@435: arrayKlassKlass.cpp javaClasses.hpp coleenp@548: arrayKlassKlass.cpp markSweep.inline.hpp duke@435: arrayKlassKlass.cpp oop.inline.hpp duke@435: duke@435: arrayKlassKlass.hpp arrayKlass.hpp duke@435: arrayKlassKlass.hpp klassKlass.hpp duke@435: duke@435: arrayOop.cpp arrayOop.hpp duke@435: arrayOop.cpp objArrayOop.hpp duke@435: arrayOop.cpp oop.inline.hpp duke@435: arrayOop.cpp symbolOop.hpp duke@435: duke@435: arrayOop.hpp oop.hpp duke@435: arrayOop.hpp universe.hpp duke@435: arrayOop.hpp universe.inline.hpp duke@435: duke@435: assembler.cpp assembler.hpp duke@435: assembler.cpp assembler.inline.hpp never@739: assembler.cpp assembler_.inline.hpp duke@435: assembler.cpp codeBuffer.hpp duke@435: assembler.cpp icache.hpp duke@435: assembler.cpp os.hpp duke@435: duke@435: assembler.hpp allocation.hpp duke@435: assembler.hpp allocation.inline.hpp duke@435: assembler.hpp debug.hpp duke@435: assembler.hpp growableArray.hpp duke@435: assembler.hpp oopRecorder.hpp duke@435: assembler.hpp register_.hpp duke@435: assembler.hpp relocInfo.hpp duke@435: assembler.hpp top.hpp duke@435: assembler.hpp vm_version_.hpp duke@435: duke@435: assembler.inline.hpp assembler.hpp duke@435: assembler.inline.hpp codeBuffer.hpp jrose@535: assembler.inline.hpp disassembler.hpp duke@435: assembler.inline.hpp threadLocalStorage.hpp duke@435: never@739: assembler_.cpp assembler_.inline.hpp never@739: assembler_.cpp biasedLocking.hpp never@739: assembler_.cpp cardTableModRefBS.hpp never@739: assembler_.cpp collectedHeap.inline.hpp never@739: assembler_.cpp interfaceSupport.hpp never@739: assembler_.cpp interpreter.hpp never@739: assembler_.cpp objectMonitor.hpp never@739: assembler_.cpp os.hpp never@739: assembler_.cpp resourceArea.hpp never@739: assembler_.cpp sharedRuntime.hpp never@739: assembler_.cpp stubRoutines.hpp never@739: never@739: assembler_.hpp generate_platform_dependent_include never@739: never@739: assembler_.inline.hpp assembler.inline.hpp never@739: assembler_.inline.hpp codeBuffer.hpp never@739: assembler_.inline.hpp codeCache.hpp never@739: assembler_.inline.hpp handles.inline.hpp never@739: never@739: assembler_.cpp assembler.hpp never@739: assembler_.cpp assembler_.inline.hpp never@739: assembler_.cpp os.hpp never@739: assembler_.cpp threadLocalStorage.hpp duke@435: duke@435: atomic.cpp atomic.hpp duke@435: atomic.cpp atomic_.inline.hpp duke@435: atomic.cpp os_.inline.hpp duke@435: duke@435: atomic.hpp allocation.hpp duke@435: duke@435: atomic_.inline.hpp atomic.hpp duke@435: atomic_.inline.hpp os.hpp duke@435: atomic_.inline.hpp vm_version_.hpp duke@435: duke@435: // attachListener is jck optional, put cpp deps in includeDB_features duke@435: duke@435: attachListener.hpp allocation.hpp duke@435: attachListener.hpp debug.hpp duke@435: attachListener.hpp ostream.hpp duke@435: ysr@777: barrierSet.cpp barrierSet.hpp ysr@777: barrierSet.cpp collectedHeap.hpp ysr@777: barrierSet.cpp universe.hpp ysr@777: duke@435: barrierSet.hpp memRegion.hpp duke@435: barrierSet.hpp oopsHierarchy.hpp duke@435: duke@435: barrierSet.inline.hpp barrierSet.hpp duke@435: barrierSet.inline.hpp cardTableModRefBS.hpp duke@435: duke@435: bcEscapeAnalyzer.cpp bcEscapeAnalyzer.hpp ysr@777: bcEscapeAnalyzer.cpp bitMap.inline.hpp duke@435: bcEscapeAnalyzer.cpp bytecode.hpp duke@435: bcEscapeAnalyzer.cpp ciConstant.hpp duke@435: bcEscapeAnalyzer.cpp ciField.hpp duke@435: bcEscapeAnalyzer.cpp ciMethodBlocks.hpp duke@435: bcEscapeAnalyzer.cpp ciStreams.hpp duke@435: duke@435: bcEscapeAnalyzer.hpp allocation.hpp duke@435: bcEscapeAnalyzer.hpp ciMethod.hpp duke@435: bcEscapeAnalyzer.hpp ciMethodData.hpp duke@435: bcEscapeAnalyzer.hpp dependencies.hpp duke@435: bcEscapeAnalyzer.hpp growableArray.hpp duke@435: duke@435: biasedLocking.cpp biasedLocking.hpp duke@435: biasedLocking.cpp klass.inline.hpp duke@435: biasedLocking.cpp markOop.hpp duke@435: biasedLocking.cpp synchronizer.hpp duke@435: biasedLocking.cpp task.hpp duke@435: biasedLocking.cpp vframe.hpp duke@435: biasedLocking.cpp vmThread.hpp duke@435: biasedLocking.cpp vm_operations.hpp duke@435: duke@435: biasedLocking.hpp growableArray.hpp duke@435: biasedLocking.hpp handles.hpp duke@435: ysr@777: bitMap.cpp allocation.inline.hpp duke@435: bitMap.cpp bitMap.inline.hpp duke@435: bitMap.cpp copy.hpp duke@435: bitMap.cpp os_.inline.hpp duke@435: duke@435: bitMap.hpp allocation.hpp duke@435: bitMap.hpp top.hpp duke@435: duke@435: bitMap.inline.hpp atomic.hpp duke@435: bitMap.inline.hpp bitMap.hpp duke@435: duke@435: blockOffsetTable.cpp blockOffsetTable.inline.hpp coleenp@548: blockOffsetTable.cpp collectedHeap.inline.hpp duke@435: blockOffsetTable.cpp iterator.hpp duke@435: blockOffsetTable.cpp java.hpp duke@435: blockOffsetTable.cpp oop.inline.hpp duke@435: blockOffsetTable.cpp space.hpp duke@435: blockOffsetTable.cpp universe.hpp duke@435: duke@435: blockOffsetTable.hpp globalDefinitions.hpp duke@435: blockOffsetTable.hpp memRegion.hpp duke@435: blockOffsetTable.hpp virtualspace.hpp duke@435: duke@435: blockOffsetTable.inline.hpp blockOffsetTable.hpp duke@435: blockOffsetTable.inline.hpp space.hpp duke@435: duke@435: bytecode.cpp bytecode.hpp duke@435: bytecode.cpp constantPoolOop.hpp duke@435: bytecode.cpp fieldType.hpp duke@435: bytecode.cpp handles.inline.hpp duke@435: bytecode.cpp linkResolver.hpp duke@435: bytecode.cpp oop.inline.hpp duke@435: bytecode.cpp safepoint.hpp duke@435: bytecode.cpp signature.hpp duke@435: duke@435: bytecode.hpp allocation.hpp duke@435: bytecode.hpp bytecodes.hpp duke@435: bytecode.hpp bytes_.hpp duke@435: bytecode.hpp methodOop.hpp duke@435: duke@435: bytecodeHistogram.cpp bytecodeHistogram.hpp duke@435: bytecodeHistogram.cpp growableArray.hpp duke@435: bytecodeHistogram.cpp os.hpp duke@435: bytecodeHistogram.cpp resourceArea.hpp duke@435: duke@435: bytecodeHistogram.hpp allocation.hpp duke@435: bytecodeHistogram.hpp bytecodes.hpp duke@435: duke@435: bytecodeInterpreter.cpp no_precompiled_headers duke@435: bytecodeInterpreter.cpp bytecodeHistogram.hpp duke@435: bytecodeInterpreter.cpp bytecodeInterpreter.hpp duke@435: bytecodeInterpreter.cpp bytecodeInterpreter.inline.hpp duke@435: bytecodeInterpreter.cpp cardTableModRefBS.hpp duke@435: bytecodeInterpreter.cpp collectedHeap.hpp duke@435: bytecodeInterpreter.cpp exceptions.hpp duke@435: bytecodeInterpreter.cpp frame.inline.hpp duke@435: bytecodeInterpreter.cpp handles.inline.hpp duke@435: bytecodeInterpreter.cpp interfaceSupport.hpp duke@435: bytecodeInterpreter.cpp interpreterRuntime.hpp duke@435: bytecodeInterpreter.cpp interpreter.hpp duke@435: bytecodeInterpreter.cpp jvmtiExport.hpp duke@435: bytecodeInterpreter.cpp objArrayKlass.hpp duke@435: bytecodeInterpreter.cpp oop.inline.hpp duke@435: bytecodeInterpreter.cpp orderAccess_.inline.hpp duke@435: bytecodeInterpreter.cpp resourceArea.hpp duke@435: bytecodeInterpreter.cpp sharedRuntime.hpp duke@435: bytecodeInterpreter.cpp threadCritical.hpp duke@435: bytecodeInterpreter.cpp vmSymbols.hpp duke@435: duke@435: bytecodeInterpreter_.cpp assembler.hpp duke@435: bytecodeInterpreter_.cpp bytecodeInterpreter.hpp duke@435: bytecodeInterpreter_.cpp bytecodeInterpreter.inline.hpp duke@435: bytecodeInterpreter_.cpp debug.hpp duke@435: bytecodeInterpreter_.cpp deoptimization.hpp duke@435: bytecodeInterpreter_.cpp frame.inline.hpp duke@435: bytecodeInterpreter_.cpp interp_masm_.hpp duke@435: bytecodeInterpreter_.cpp interpreterRuntime.hpp duke@435: bytecodeInterpreter_.cpp interpreter.hpp duke@435: bytecodeInterpreter_.cpp jvmtiExport.hpp duke@435: bytecodeInterpreter_.cpp jvmtiThreadState.hpp duke@435: bytecodeInterpreter_.cpp methodDataOop.hpp duke@435: bytecodeInterpreter_.cpp methodOop.hpp duke@435: bytecodeInterpreter_.cpp oop.inline.hpp duke@435: bytecodeInterpreter_.cpp sharedRuntime.hpp duke@435: bytecodeInterpreter_.cpp stubRoutines.hpp duke@435: bytecodeInterpreter_.cpp synchronizer.hpp duke@435: bytecodeInterpreter_.cpp vframeArray.hpp duke@435: duke@435: bytecodeInterpreterWithChecks.cpp bytecodeInterpreter.cpp duke@435: duke@435: bytecodeInterpreter.hpp allocation.hpp duke@435: bytecodeInterpreter.hpp bytes_.hpp duke@435: bytecodeInterpreter.hpp frame.hpp duke@435: bytecodeInterpreter.hpp globalDefinitions.hpp duke@435: bytecodeInterpreter.hpp globals.hpp duke@435: bytecodeInterpreter.hpp methodDataOop.hpp duke@435: bytecodeInterpreter.hpp methodOop.hpp duke@435: bytecodeInterpreter.hpp synchronizer.hpp duke@435: duke@435: bytecodeInterpreter.inline.hpp bytecodeInterpreter.hpp duke@435: bytecodeInterpreter.inline.hpp stubRoutines.hpp duke@435: duke@435: bytecodeInterpreter_.hpp generate_platform_dependent_include duke@435: duke@435: bytecodeInterpreter_.inline.hpp generate_platform_dependent_include duke@435: duke@435: bytecodeStream.cpp bytecodeStream.hpp duke@435: bytecodeStream.cpp bytecodes.hpp duke@435: duke@435: bytecodeStream.hpp allocation.hpp duke@435: bytecodeStream.hpp bytecode.hpp duke@435: bytecodeStream.hpp bytes_.hpp duke@435: bytecodeStream.hpp methodOop.hpp duke@435: duke@435: bytecodeTracer.cpp bytecodeHistogram.hpp duke@435: bytecodeTracer.cpp bytecodeTracer.hpp duke@435: bytecodeTracer.cpp bytecodes.hpp duke@435: bytecodeTracer.cpp interpreter.hpp duke@435: bytecodeTracer.cpp interpreterRuntime.hpp duke@435: bytecodeTracer.cpp methodDataOop.hpp duke@435: bytecodeTracer.cpp methodOop.hpp duke@435: bytecodeTracer.cpp mutexLocker.hpp duke@435: bytecodeTracer.cpp resourceArea.hpp duke@435: bytecodeTracer.cpp timer.hpp duke@435: duke@435: bytecodeTracer.hpp allocation.hpp duke@435: duke@435: bytecodes.cpp bytecodes.hpp duke@435: bytecodes.cpp bytes_.hpp duke@435: bytecodes.cpp methodOop.hpp duke@435: bytecodes.cpp resourceArea.hpp duke@435: duke@435: bytecodes.hpp allocation.hpp duke@435: bytecodes.hpp top.hpp duke@435: duke@435: bytecodes_.cpp bytecodes.hpp duke@435: duke@435: bytecodes_.hpp generate_platform_dependent_include duke@435: duke@435: bytes_.hpp allocation.hpp duke@435: duke@435: bytes_.inline.hpp generate_platform_dependent_include duke@435: duke@435: cardTableModRefBS.cpp allocation.inline.hpp duke@435: cardTableModRefBS.cpp cardTableModRefBS.hpp duke@435: cardTableModRefBS.cpp cardTableRS.hpp duke@435: cardTableModRefBS.cpp java.hpp duke@435: cardTableModRefBS.cpp mutexLocker.hpp duke@435: cardTableModRefBS.cpp sharedHeap.hpp duke@435: cardTableModRefBS.cpp space.hpp duke@435: cardTableModRefBS.cpp universe.hpp duke@435: cardTableModRefBS.cpp virtualspace.hpp duke@435: duke@435: cardTableModRefBS.hpp modRefBarrierSet.hpp duke@435: cardTableModRefBS.hpp oop.hpp duke@435: cardTableModRefBS.hpp oop.inline2.hpp duke@435: duke@435: cardTableRS.cpp allocation.inline.hpp duke@435: cardTableRS.cpp cardTableRS.hpp duke@435: cardTableRS.cpp genCollectedHeap.hpp duke@435: cardTableRS.cpp generation.hpp duke@435: cardTableRS.cpp java.hpp duke@435: cardTableRS.cpp oop.inline.hpp duke@435: cardTableRS.cpp os.hpp duke@435: cardTableRS.cpp space.hpp duke@435: duke@435: cardTableRS.hpp cardTableModRefBS.hpp duke@435: cardTableRS.hpp genRemSet.hpp duke@435: cardTableRS.hpp memRegion.hpp duke@435: duke@435: ciArray.cpp ciArray.hpp duke@435: ciArray.cpp ciKlass.hpp duke@435: ciArray.cpp ciUtilities.hpp duke@435: duke@435: ciArray.hpp arrayOop.hpp duke@435: ciArray.hpp ciObject.hpp duke@435: ciArray.hpp objArrayOop.hpp duke@435: ciArray.hpp typeArrayOop.hpp duke@435: duke@435: ciArrayKlass.cpp ciArrayKlass.hpp duke@435: ciArrayKlass.cpp ciObjArrayKlass.hpp duke@435: ciArrayKlass.cpp ciTypeArrayKlass.hpp duke@435: ciArrayKlass.cpp ciUtilities.hpp duke@435: duke@435: ciArrayKlass.hpp ciKlass.hpp duke@435: duke@435: ciArrayKlassKlass.hpp ciKlassKlass.hpp duke@435: duke@435: ciCallProfile.hpp ciClassList.hpp duke@435: duke@435: ciConstant.cpp allocation.hpp duke@435: ciConstant.cpp allocation.inline.hpp duke@435: ciConstant.cpp ciConstant.hpp duke@435: ciConstant.cpp ciUtilities.hpp duke@435: duke@435: ciConstant.hpp ciClassList.hpp duke@435: ciConstant.hpp ciNullObject.hpp duke@435: duke@435: ciConstantPoolCache.cpp allocation.hpp duke@435: ciConstantPoolCache.cpp allocation.inline.hpp duke@435: ciConstantPoolCache.cpp ciConstantPoolCache.hpp duke@435: ciConstantPoolCache.cpp ciUtilities.hpp duke@435: duke@435: ciConstantPoolCache.hpp growableArray.hpp duke@435: ciConstantPoolCache.hpp resourceArea.hpp duke@435: duke@435: ciEnv.cpp allocation.inline.hpp duke@435: ciEnv.cpp ciConstant.hpp duke@435: ciEnv.cpp ciEnv.hpp duke@435: ciEnv.cpp ciField.hpp duke@435: ciEnv.cpp ciInstance.hpp duke@435: ciEnv.cpp ciInstanceKlass.hpp duke@435: ciEnv.cpp ciInstanceKlassKlass.hpp duke@435: ciEnv.cpp ciMethod.hpp duke@435: ciEnv.cpp ciNullObject.hpp duke@435: ciEnv.cpp ciObjArrayKlassKlass.hpp duke@435: ciEnv.cpp ciTypeArrayKlassKlass.hpp duke@435: ciEnv.cpp ciUtilities.hpp duke@435: ciEnv.cpp collectedHeap.inline.hpp duke@435: ciEnv.cpp compileBroker.hpp duke@435: ciEnv.cpp compileLog.hpp duke@435: ciEnv.cpp compilerOracle.hpp duke@435: ciEnv.cpp dtrace.hpp duke@435: ciEnv.cpp init.hpp duke@435: ciEnv.cpp jvmtiExport.hpp duke@435: ciEnv.cpp linkResolver.hpp duke@435: ciEnv.cpp methodDataOop.hpp duke@435: ciEnv.cpp objArrayKlass.hpp duke@435: ciEnv.cpp oop.hpp duke@435: ciEnv.cpp oop.inline.hpp duke@435: ciEnv.cpp oop.inline2.hpp duke@435: ciEnv.cpp oopFactory.hpp duke@435: ciEnv.cpp reflection.hpp duke@435: ciEnv.cpp scopeDesc.hpp duke@435: ciEnv.cpp sharedRuntime.hpp duke@435: ciEnv.cpp systemDictionary.hpp duke@435: ciEnv.cpp universe.inline.hpp duke@435: ciEnv.cpp vmSymbols.hpp duke@435: duke@435: ciEnv.hpp ciClassList.hpp duke@435: ciEnv.hpp ciObjectFactory.hpp duke@435: ciEnv.hpp debugInfoRec.hpp duke@435: ciEnv.hpp dependencies.hpp duke@435: ciEnv.hpp exceptionHandlerTable.hpp duke@435: ciEnv.hpp oopMap.hpp duke@435: ciEnv.hpp thread.hpp duke@435: duke@435: ciExceptionHandler.cpp ciExceptionHandler.hpp duke@435: ciExceptionHandler.cpp ciUtilities.hpp duke@435: duke@435: ciExceptionHandler.hpp ciClassList.hpp duke@435: ciExceptionHandler.hpp ciInstanceKlass.hpp duke@435: duke@435: ciField.cpp ciField.hpp duke@435: ciField.cpp ciInstanceKlass.hpp duke@435: ciField.cpp ciUtilities.hpp duke@435: ciField.cpp collectedHeap.inline.hpp duke@435: ciField.cpp fieldDescriptor.hpp duke@435: ciField.cpp linkResolver.hpp duke@435: ciField.cpp oop.inline.hpp duke@435: ciField.cpp oop.inline2.hpp duke@435: ciField.cpp systemDictionary.hpp duke@435: ciField.cpp universe.inline.hpp duke@435: duke@435: ciField.hpp ciClassList.hpp duke@435: ciField.hpp ciConstant.hpp duke@435: ciField.hpp ciFlags.hpp duke@435: duke@435: ciFlags.cpp ciFlags.hpp duke@435: duke@435: ciFlags.hpp accessFlags.hpp duke@435: ciFlags.hpp allocation.hpp duke@435: ciFlags.hpp ciClassList.hpp duke@435: ciFlags.hpp jvm.h duke@435: duke@435: ciInstance.cpp ciConstant.hpp duke@435: ciInstance.cpp ciField.hpp duke@435: ciInstance.cpp ciInstance.hpp duke@435: ciInstance.cpp ciInstanceKlass.hpp duke@435: ciInstance.cpp ciUtilities.hpp duke@435: ciInstance.cpp oop.inline.hpp duke@435: ciInstance.cpp systemDictionary.hpp duke@435: duke@435: ciInstance.hpp ciObject.hpp duke@435: ciInstance.hpp instanceOop.hpp duke@435: duke@435: ciInstanceKlass.cpp allocation.hpp duke@435: ciInstanceKlass.cpp allocation.inline.hpp duke@435: ciInstanceKlass.cpp ciField.hpp duke@435: ciInstanceKlass.cpp ciInstance.hpp duke@435: ciInstanceKlass.cpp ciInstanceKlass.hpp duke@435: ciInstanceKlass.cpp ciUtilities.hpp duke@435: ciInstanceKlass.cpp fieldDescriptor.hpp duke@435: ciInstanceKlass.cpp oop.inline.hpp duke@435: ciInstanceKlass.cpp systemDictionary.hpp duke@435: duke@435: ciInstanceKlass.hpp ciConstantPoolCache.hpp duke@435: ciInstanceKlass.hpp ciFlags.hpp duke@435: ciInstanceKlass.hpp ciInstanceKlassKlass.hpp duke@435: ciInstanceKlass.hpp ciKlass.hpp duke@435: ciInstanceKlass.hpp ciSymbol.hpp duke@435: duke@435: ciInstanceKlassKlass.cpp ciInstanceKlassKlass.hpp duke@435: ciInstanceKlassKlass.cpp ciUtilities.hpp duke@435: duke@435: ciInstanceKlassKlass.hpp ciKlassKlass.hpp duke@435: duke@435: ciKlass.cpp ciKlass.hpp duke@435: ciKlass.cpp ciSymbol.hpp duke@435: ciKlass.cpp ciUtilities.hpp duke@435: ciKlass.cpp oop.inline.hpp duke@435: duke@435: ciKlass.hpp ciType.hpp duke@435: ciKlass.hpp klassOop.hpp duke@435: duke@435: ciKlassKlass.cpp ciKlassKlass.hpp duke@435: ciKlassKlass.cpp ciUtilities.hpp duke@435: duke@435: ciKlassKlass.hpp ciKlass.hpp duke@435: ciKlassKlass.hpp ciSymbol.hpp duke@435: duke@435: ciMethod.cpp abstractCompiler.hpp duke@435: ciMethod.cpp allocation.inline.hpp duke@435: ciMethod.cpp bcEscapeAnalyzer.hpp ysr@777: ciMethod.cpp bitMap.inline.hpp duke@435: ciMethod.cpp ciCallProfile.hpp duke@435: ciMethod.cpp ciExceptionHandler.hpp duke@435: ciMethod.cpp ciInstanceKlass.hpp duke@435: ciMethod.cpp ciMethod.hpp duke@435: ciMethod.cpp ciMethodBlocks.hpp duke@435: ciMethod.cpp ciMethodData.hpp duke@435: ciMethod.cpp ciMethodKlass.hpp duke@435: ciMethod.cpp ciStreams.hpp duke@435: ciMethod.cpp ciSymbol.hpp duke@435: ciMethod.cpp ciUtilities.hpp duke@435: ciMethod.cpp compilerOracle.hpp duke@435: ciMethod.cpp deoptimization.hpp duke@435: ciMethod.cpp generateOopMap.hpp duke@435: ciMethod.cpp interpreter.hpp duke@435: ciMethod.cpp linkResolver.hpp duke@435: ciMethod.cpp methodLiveness.hpp duke@435: ciMethod.cpp nativeLookup.hpp duke@435: ciMethod.cpp oop.inline.hpp duke@435: ciMethod.cpp oopMapCache.hpp duke@435: ciMethod.cpp resourceArea.hpp duke@435: ciMethod.cpp systemDictionary.hpp duke@435: ciMethod.cpp xmlstream.hpp duke@435: duke@435: ciMethod.hpp bitMap.hpp duke@435: ciMethod.hpp ciFlags.hpp duke@435: ciMethod.hpp ciInstanceKlass.hpp duke@435: ciMethod.hpp ciObject.hpp duke@435: ciMethod.hpp ciSignature.hpp duke@435: ciMethod.hpp methodLiveness.hpp duke@435: duke@435: ciMethodBlocks.cpp bytecode.hpp duke@435: ciMethodBlocks.cpp ciMethodBlocks.hpp duke@435: ciMethodBlocks.cpp ciStreams.hpp duke@435: ciMethodBlocks.cpp copy.hpp duke@435: duke@435: ciMethodBlocks.hpp ciMethod.hpp duke@435: ciMethodBlocks.hpp growableArray.hpp duke@435: ciMethodBlocks.hpp resourceArea.hpp duke@435: duke@435: ciMethodData.cpp allocation.inline.hpp duke@435: ciMethodData.cpp ciMethodData.hpp duke@435: ciMethodData.cpp ciUtilities.hpp duke@435: ciMethodData.cpp copy.hpp duke@435: ciMethodData.cpp deoptimization.hpp duke@435: ciMethodData.cpp resourceArea.hpp duke@435: duke@435: ciMethodData.hpp ciClassList.hpp duke@435: ciMethodData.hpp ciKlass.hpp duke@435: ciMethodData.hpp ciObject.hpp duke@435: ciMethodData.hpp ciUtilities.hpp duke@435: ciMethodData.hpp methodDataOop.hpp duke@435: ciMethodData.hpp oop.inline.hpp duke@435: duke@435: ciMethodKlass.cpp ciMethodKlass.hpp duke@435: ciMethodKlass.cpp ciUtilities.hpp duke@435: duke@435: ciMethodKlass.hpp ciKlass.hpp duke@435: ciMethodKlass.hpp ciSymbol.hpp duke@435: duke@435: ciNullObject.cpp ciNullObject.hpp duke@435: duke@435: ciNullObject.hpp ciClassList.hpp duke@435: ciNullObject.hpp ciObject.hpp duke@435: ciNullObject.hpp ciUtilities.hpp duke@435: duke@435: ciObjArray.hpp ciArray.hpp duke@435: ciObjArray.hpp ciClassList.hpp duke@435: ciObjArray.hpp objArrayOop.hpp duke@435: never@452: ciObjArray.cpp ciObjArray.hpp never@452: ciObjArray.cpp ciNullObject.hpp never@452: ciObjArray.cpp ciUtilities.hpp never@452: ciObjArray.cpp objArrayOop.hpp never@452: apetrusenko@574: ciObjArray.cpp ciObjArray.hpp apetrusenko@574: ciObjArray.cpp ciNullObject.hpp apetrusenko@574: ciObjArray.cpp ciUtilities.hpp apetrusenko@574: ciObjArray.cpp objArrayOop.hpp apetrusenko@574: duke@435: ciObjArrayKlass.cpp ciInstanceKlass.hpp duke@435: ciObjArrayKlass.cpp ciObjArrayKlass.hpp duke@435: ciObjArrayKlass.cpp ciObjArrayKlassKlass.hpp duke@435: ciObjArrayKlass.cpp ciSymbol.hpp duke@435: ciObjArrayKlass.cpp ciUtilities.hpp duke@435: ciObjArrayKlass.cpp objArrayKlass.hpp duke@435: duke@435: ciObjArrayKlass.hpp ciArrayKlass.hpp duke@435: duke@435: ciObjArrayKlassKlass.cpp ciObjArrayKlassKlass.hpp duke@435: ciObjArrayKlassKlass.cpp ciUtilities.hpp duke@435: duke@435: ciObjArrayKlassKlass.hpp ciArrayKlassKlass.hpp duke@435: duke@435: ciObject.cpp ciObject.hpp duke@435: ciObject.cpp ciUtilities.hpp duke@435: ciObject.cpp collectedHeap.inline.hpp duke@435: ciObject.cpp oop.inline2.hpp duke@435: duke@435: ciObject.hpp allocation.hpp duke@435: ciObject.hpp ciClassList.hpp duke@435: ciObject.hpp handles.hpp duke@435: ciObject.hpp jniHandles.hpp duke@435: duke@435: ciObjectFactory.cpp allocation.inline.hpp duke@435: ciObjectFactory.cpp ciInstance.hpp duke@435: ciObjectFactory.cpp ciInstanceKlass.hpp duke@435: ciObjectFactory.cpp ciInstanceKlassKlass.hpp duke@435: ciObjectFactory.cpp ciMethod.hpp duke@435: ciObjectFactory.cpp ciMethodData.hpp duke@435: ciObjectFactory.cpp ciMethodKlass.hpp duke@435: ciObjectFactory.cpp ciNullObject.hpp duke@435: ciObjectFactory.cpp ciObjArray.hpp duke@435: ciObjectFactory.cpp ciObjArrayKlass.hpp duke@435: ciObjectFactory.cpp ciObjArrayKlassKlass.hpp duke@435: ciObjectFactory.cpp ciObjectFactory.hpp duke@435: ciObjectFactory.cpp ciSymbol.hpp duke@435: ciObjectFactory.cpp ciSymbolKlass.hpp duke@435: ciObjectFactory.cpp ciTypeArray.hpp duke@435: ciObjectFactory.cpp ciTypeArrayKlass.hpp duke@435: ciObjectFactory.cpp ciTypeArrayKlassKlass.hpp duke@435: ciObjectFactory.cpp ciUtilities.hpp duke@435: ciObjectFactory.cpp collectedHeap.inline.hpp duke@435: ciObjectFactory.cpp fieldType.hpp duke@435: ciObjectFactory.cpp oop.inline.hpp duke@435: ciObjectFactory.cpp oop.inline2.hpp duke@435: ciObjectFactory.cpp systemDictionary.hpp duke@435: duke@435: ciObjectFactory.hpp ciClassList.hpp duke@435: ciObjectFactory.hpp ciObject.hpp duke@435: ciObjectFactory.hpp growableArray.hpp duke@435: duke@435: ciSignature.cpp allocation.inline.hpp duke@435: ciSignature.cpp ciSignature.hpp duke@435: ciSignature.cpp ciUtilities.hpp duke@435: ciSignature.cpp oop.hpp duke@435: ciSignature.cpp oop.inline.hpp duke@435: ciSignature.cpp signature.hpp duke@435: duke@435: ciSignature.hpp ciClassList.hpp duke@435: ciSignature.hpp ciSymbol.hpp duke@435: ciSignature.hpp globalDefinitions.hpp duke@435: ciSignature.hpp growableArray.hpp duke@435: duke@435: ciStreams.cpp ciConstant.hpp duke@435: ciStreams.cpp ciField.hpp duke@435: ciStreams.cpp ciStreams.hpp duke@435: ciStreams.cpp ciUtilities.hpp duke@435: duke@435: ciStreams.hpp ciClassList.hpp duke@435: ciStreams.hpp ciExceptionHandler.hpp duke@435: ciStreams.hpp ciInstanceKlass.hpp duke@435: ciStreams.hpp ciMethod.hpp duke@435: duke@435: ciSymbol.cpp ciSymbol.hpp duke@435: ciSymbol.cpp ciUtilities.hpp duke@435: ciSymbol.cpp oopFactory.hpp duke@435: duke@435: ciSymbol.hpp ciObject.hpp duke@435: ciSymbol.hpp ciObjectFactory.hpp duke@435: ciSymbol.hpp symbolOop.hpp duke@435: ciSymbol.hpp vmSymbols.hpp duke@435: duke@435: ciSymbolKlass.cpp ciSymbolKlass.hpp duke@435: ciSymbolKlass.cpp ciUtilities.hpp duke@435: duke@435: ciSymbolKlass.hpp ciKlass.hpp duke@435: ciSymbolKlass.hpp ciSymbol.hpp duke@435: duke@435: ciType.cpp ciType.hpp duke@435: ciType.cpp ciUtilities.hpp duke@435: ciType.cpp oop.inline.hpp duke@435: ciType.cpp systemDictionary.hpp duke@435: duke@435: ciType.hpp ciObject.hpp duke@435: ciType.hpp klassOop.hpp duke@435: duke@435: ciTypeArray.cpp ciTypeArray.hpp duke@435: ciTypeArray.cpp ciUtilities.hpp duke@435: duke@435: ciTypeArray.hpp ciArray.hpp duke@435: ciTypeArray.hpp ciClassList.hpp duke@435: ciTypeArray.hpp typeArrayOop.hpp duke@435: duke@435: ciTypeArrayKlass.cpp ciTypeArrayKlass.hpp duke@435: ciTypeArrayKlass.cpp ciUtilities.hpp duke@435: duke@435: ciTypeArrayKlass.hpp ciArrayKlass.hpp duke@435: duke@435: ciTypeArrayKlassKlass.cpp ciTypeArrayKlassKlass.hpp duke@435: ciTypeArrayKlassKlass.cpp ciUtilities.hpp duke@435: duke@435: ciTypeArrayKlassKlass.hpp ciArrayKlassKlass.hpp duke@435: duke@435: ciUtilities.cpp ciUtilities.hpp duke@435: duke@435: ciUtilities.hpp ciEnv.hpp duke@435: ciUtilities.hpp interfaceSupport.hpp duke@435: duke@435: classFileError.cpp classFileParser.hpp duke@435: classFileError.cpp stackMapTable.hpp duke@435: classFileError.cpp verifier.hpp duke@435: duke@435: classFileParser.cpp allocation.hpp duke@435: classFileParser.cpp classFileParser.hpp duke@435: classFileParser.cpp classLoader.hpp duke@435: classFileParser.cpp classLoadingService.hpp duke@435: classFileParser.cpp constantPoolOop.hpp duke@435: classFileParser.cpp gcLocker.hpp duke@435: classFileParser.cpp instanceKlass.hpp duke@435: classFileParser.cpp javaCalls.hpp duke@435: classFileParser.cpp javaClasses.hpp duke@435: classFileParser.cpp jvmtiExport.hpp duke@435: classFileParser.cpp klass.inline.hpp duke@435: classFileParser.cpp klassOop.hpp duke@435: classFileParser.cpp klassVtable.hpp duke@435: classFileParser.cpp methodOop.hpp duke@435: classFileParser.cpp oopFactory.hpp duke@435: classFileParser.cpp perfData.hpp duke@435: classFileParser.cpp reflection.hpp duke@435: classFileParser.cpp signature.hpp duke@435: classFileParser.cpp symbolOop.hpp duke@435: classFileParser.cpp symbolTable.hpp duke@435: classFileParser.cpp systemDictionary.hpp duke@435: classFileParser.cpp timer.hpp duke@435: classFileParser.cpp universe.inline.hpp duke@435: classFileParser.cpp verificationType.hpp duke@435: classFileParser.cpp verifier.hpp duke@435: classFileParser.cpp vmSymbols.hpp duke@435: duke@435: classFileParser.hpp accessFlags.hpp duke@435: classFileParser.hpp classFileStream.hpp duke@435: classFileParser.hpp handles.inline.hpp duke@435: classFileParser.hpp oop.inline.hpp duke@435: classFileParser.hpp resourceArea.hpp duke@435: classFileParser.hpp typeArrayOop.hpp duke@435: duke@435: classFileStream.cpp classFileStream.hpp duke@435: classFileStream.cpp vmSymbols.hpp duke@435: duke@435: classFileStream.hpp bytes_.hpp duke@435: classFileStream.hpp top.hpp duke@435: duke@435: classLoader.cpp allocation.inline.hpp duke@435: classLoader.cpp arguments.hpp duke@435: classLoader.cpp classFileParser.hpp duke@435: classLoader.cpp classFileStream.hpp duke@435: classLoader.cpp classLoader.hpp duke@435: classLoader.cpp collectedHeap.inline.hpp duke@435: classLoader.cpp compilationPolicy.hpp duke@435: classLoader.cpp compileBroker.hpp duke@435: classLoader.cpp constantPoolKlass.hpp duke@435: classLoader.cpp events.hpp duke@435: classLoader.cpp fprofiler.hpp duke@435: classLoader.cpp generation.hpp duke@435: classLoader.cpp handles.hpp duke@435: classLoader.cpp handles.inline.hpp duke@435: classLoader.cpp hashtable.hpp duke@435: classLoader.cpp hashtable.inline.hpp duke@435: classLoader.cpp hpi.hpp duke@435: classLoader.cpp hpi_.hpp duke@435: classLoader.cpp init.hpp duke@435: classLoader.cpp instanceKlass.hpp duke@435: classLoader.cpp instanceRefKlass.hpp duke@435: classLoader.cpp interfaceSupport.hpp duke@435: classLoader.cpp java.hpp duke@435: classLoader.cpp javaCalls.hpp duke@435: classLoader.cpp javaClasses.hpp duke@435: classLoader.cpp jvm_misc.hpp duke@435: classLoader.cpp management.hpp duke@435: classLoader.cpp oop.inline.hpp duke@435: classLoader.cpp oopFactory.hpp duke@435: classLoader.cpp os_.inline.hpp duke@435: classLoader.cpp symbolOop.hpp duke@435: classLoader.cpp systemDictionary.hpp duke@435: classLoader.cpp threadCritical.hpp duke@435: classLoader.cpp timer.hpp duke@435: classLoader.cpp universe.inline.hpp duke@435: classLoader.cpp vmSymbols.hpp duke@435: classLoader.cpp vtune.hpp duke@435: duke@435: classLoader.hpp classFileParser.hpp duke@435: classLoader.hpp perfData.hpp duke@435: duke@435: classLoadingService.cpp allocation.hpp duke@435: classLoadingService.cpp classLoadingService.hpp duke@435: classLoadingService.cpp dtrace.hpp duke@435: classLoadingService.cpp memoryService.hpp duke@435: classLoadingService.cpp mutexLocker.hpp duke@435: classLoadingService.cpp oop.inline.hpp duke@435: classLoadingService.cpp systemDictionary.hpp duke@435: classLoadingService.cpp universe.hpp duke@435: duke@435: classLoadingService.hpp growableArray.hpp duke@435: classLoadingService.hpp handles.hpp duke@435: classLoadingService.hpp perfData.hpp duke@435: duke@435: classify.cpp classify.hpp duke@435: classify.cpp systemDictionary.hpp duke@435: duke@435: classify.hpp oop.hpp duke@435: classify.hpp oop.inline.hpp duke@435: duke@435: codeBlob.cpp allocation.inline.hpp duke@435: codeBlob.cpp bytecode.hpp duke@435: codeBlob.cpp codeBlob.hpp duke@435: codeBlob.cpp codeCache.hpp jrose@535: codeBlob.cpp disassembler.hpp duke@435: codeBlob.cpp forte.hpp duke@435: codeBlob.cpp handles.inline.hpp duke@435: codeBlob.cpp heap.hpp duke@435: codeBlob.cpp interfaceSupport.hpp duke@435: codeBlob.cpp memoryService.hpp duke@435: codeBlob.cpp mutexLocker.hpp duke@435: codeBlob.cpp nativeInst_.hpp duke@435: codeBlob.cpp oop.inline.hpp duke@435: codeBlob.cpp relocInfo.hpp duke@435: codeBlob.cpp safepoint.hpp duke@435: codeBlob.cpp sharedRuntime.hpp duke@435: codeBlob.cpp vframe.hpp duke@435: codeBlob.cpp vtune.hpp duke@435: duke@435: codeBlob.hpp codeBuffer.hpp duke@435: codeBlob.hpp frame.hpp duke@435: codeBlob.hpp handles.hpp duke@435: codeBlob.hpp oopMap.hpp duke@435: duke@435: codeBuffer.cpp codeBuffer.hpp duke@435: codeBuffer.cpp copy.hpp jrose@535: codeBuffer.cpp disassembler.hpp duke@435: duke@435: codeBuffer.hpp assembler.hpp duke@435: codeBuffer.hpp oopRecorder.hpp duke@435: codeBuffer.hpp relocInfo.hpp duke@435: duke@435: codeBuffer_.hpp generate_platform_dependent_include duke@435: duke@435: codeCache.cpp allocation.inline.hpp duke@435: codeCache.cpp codeBlob.hpp duke@435: codeCache.cpp codeCache.hpp duke@435: codeCache.cpp dependencies.hpp duke@435: codeCache.cpp gcLocker.hpp duke@435: codeCache.cpp icache.hpp duke@435: codeCache.cpp iterator.hpp duke@435: codeCache.cpp java.hpp duke@435: codeCache.cpp markSweep.hpp duke@435: codeCache.cpp memoryService.hpp duke@435: codeCache.cpp methodOop.hpp duke@435: codeCache.cpp mutexLocker.hpp duke@435: codeCache.cpp nmethod.hpp duke@435: codeCache.cpp objArrayOop.hpp coleenp@548: codeCache.cpp oop.inline.hpp duke@435: codeCache.cpp pcDesc.hpp duke@435: codeCache.cpp resourceArea.hpp duke@435: duke@435: codeCache.hpp allocation.hpp duke@435: codeCache.hpp codeBlob.hpp duke@435: codeCache.hpp heap.hpp duke@435: codeCache.hpp instanceKlass.hpp duke@435: codeCache.hpp oopsHierarchy.hpp duke@435: duke@435: collectorPolicy.cpp adaptiveSizePolicy.hpp duke@435: collectorPolicy.cpp arguments.hpp duke@435: collectorPolicy.cpp cardTableRS.hpp duke@435: collectorPolicy.cpp collectorPolicy.hpp duke@435: collectorPolicy.cpp gcLocker.inline.hpp duke@435: collectorPolicy.cpp genCollectedHeap.hpp duke@435: collectorPolicy.cpp gcPolicyCounters.hpp duke@435: collectorPolicy.cpp generationSpec.hpp duke@435: collectorPolicy.cpp globals_extension.hpp duke@435: collectorPolicy.cpp handles.inline.hpp duke@435: collectorPolicy.cpp java.hpp duke@435: collectorPolicy.cpp space.hpp duke@435: collectorPolicy.cpp thread_.inline.hpp duke@435: collectorPolicy.cpp universe.hpp duke@435: collectorPolicy.cpp vmGCOperations.hpp duke@435: collectorPolicy.cpp vmThread.hpp duke@435: duke@435: collectorPolicy.hpp barrierSet.hpp duke@435: collectorPolicy.hpp genRemSet.hpp duke@435: collectorPolicy.hpp permGen.hpp duke@435: duke@435: compactPermGen.hpp generation.hpp duke@435: compactPermGen.hpp permGen.hpp duke@435: duke@435: compactingPermGenGen.cpp compactingPermGenGen.hpp duke@435: compactingPermGenGen.cpp filemap.hpp duke@435: compactingPermGenGen.cpp genOopClosures.inline.hpp duke@435: compactingPermGenGen.cpp generation.inline.hpp duke@435: compactingPermGenGen.cpp generationSpec.hpp duke@435: compactingPermGenGen.cpp java.hpp duke@435: compactingPermGenGen.cpp oop.inline.hpp duke@435: compactingPermGenGen.cpp symbolTable.hpp duke@435: compactingPermGenGen.cpp systemDictionary.hpp duke@435: duke@435: compactingPermGenGen.hpp generationCounters.hpp duke@435: compactingPermGenGen.hpp space.hpp duke@435: duke@435: compilationPolicy.cpp compilationPolicy.hpp duke@435: compilationPolicy.cpp compiledIC.hpp duke@435: compilationPolicy.cpp compilerOracle.hpp duke@435: compilationPolicy.cpp events.hpp duke@435: compilationPolicy.cpp frame.hpp duke@435: compilationPolicy.cpp globalDefinitions.hpp duke@435: compilationPolicy.cpp handles.inline.hpp duke@435: compilationPolicy.cpp interpreter.hpp duke@435: compilationPolicy.cpp methodDataOop.hpp duke@435: compilationPolicy.cpp methodOop.hpp duke@435: compilationPolicy.cpp nativeLookup.hpp duke@435: compilationPolicy.cpp nmethod.hpp duke@435: compilationPolicy.cpp oop.inline.hpp duke@435: compilationPolicy.cpp rframe.hpp duke@435: compilationPolicy.cpp stubRoutines.hpp duke@435: compilationPolicy.cpp thread.hpp duke@435: compilationPolicy.cpp timer.hpp duke@435: compilationPolicy.cpp vframe.hpp duke@435: compilationPolicy.cpp vm_operations.hpp duke@435: duke@435: compilationPolicy.hpp allocation.hpp duke@435: compilationPolicy.hpp compileBroker.hpp duke@435: compilationPolicy.hpp growableArray.hpp duke@435: compilationPolicy.hpp nmethod.hpp duke@435: compilationPolicy.hpp vm_operations.hpp duke@435: duke@435: compileBroker.cpp allocation.inline.hpp duke@435: compileBroker.cpp arguments.hpp duke@435: compileBroker.cpp codeCache.hpp duke@435: compileBroker.cpp compilationPolicy.hpp duke@435: compileBroker.cpp compileBroker.hpp duke@435: compileBroker.cpp compileLog.hpp duke@435: compileBroker.cpp compilerOracle.hpp duke@435: compileBroker.cpp dtrace.hpp duke@435: compileBroker.cpp init.hpp duke@435: compileBroker.cpp interfaceSupport.hpp duke@435: compileBroker.cpp javaCalls.hpp duke@435: compileBroker.cpp linkResolver.hpp duke@435: compileBroker.cpp methodDataOop.hpp duke@435: compileBroker.cpp methodOop.hpp duke@435: compileBroker.cpp nativeLookup.hpp duke@435: compileBroker.cpp oop.inline.hpp duke@435: compileBroker.cpp os.hpp duke@435: compileBroker.cpp sharedRuntime.hpp duke@435: compileBroker.cpp systemDictionary.hpp duke@435: compileBroker.cpp vmSymbols.hpp duke@435: duke@435: compileBroker.hpp abstractCompiler.hpp duke@435: compileBroker.hpp compilerInterface.hpp duke@435: compileBroker.hpp perfData.hpp duke@435: duke@435: compileLog.cpp allocation.inline.hpp duke@435: compileLog.cpp ciMethod.hpp duke@435: compileLog.cpp compileLog.hpp duke@435: compileLog.cpp methodOop.hpp duke@435: compileLog.cpp mutexLocker.hpp duke@435: compileLog.cpp os.hpp duke@435: duke@435: compileLog.hpp xmlstream.hpp duke@435: duke@435: compiledIC.cpp codeCache.hpp duke@435: compiledIC.cpp compiledIC.hpp duke@435: compiledIC.cpp events.hpp duke@435: compiledIC.cpp icBuffer.hpp duke@435: compiledIC.cpp icache.hpp duke@435: compiledIC.cpp interpreter.hpp duke@435: compiledIC.cpp linkResolver.hpp duke@435: compiledIC.cpp methodOop.hpp duke@435: compiledIC.cpp nmethod.hpp duke@435: compiledIC.cpp oop.inline.hpp duke@435: compiledIC.cpp oopFactory.hpp duke@435: compiledIC.cpp sharedRuntime.hpp duke@435: compiledIC.cpp stubRoutines.hpp duke@435: compiledIC.cpp symbolOop.hpp duke@435: compiledIC.cpp systemDictionary.hpp duke@435: compiledIC.cpp vtableStubs.hpp duke@435: duke@435: compiledIC.hpp compiledICHolderKlass.hpp duke@435: compiledIC.hpp compiledICHolderOop.hpp duke@435: compiledIC.hpp klassOop.hpp duke@435: compiledIC.hpp linkResolver.hpp duke@435: compiledIC.hpp nativeInst_.hpp duke@435: duke@435: compiledICHolderKlass.cpp collectedHeap.hpp duke@435: compiledICHolderKlass.cpp collectedHeap.inline.hpp duke@435: compiledICHolderKlass.cpp compiledICHolderKlass.hpp duke@435: compiledICHolderKlass.cpp handles.inline.hpp duke@435: compiledICHolderKlass.cpp javaClasses.hpp coleenp@548: compiledICHolderKlass.cpp markSweep.inline.hpp duke@435: compiledICHolderKlass.cpp oop.inline.hpp duke@435: compiledICHolderKlass.cpp oop.inline2.hpp duke@435: compiledICHolderKlass.cpp permGen.hpp duke@435: compiledICHolderKlass.cpp universe.inline.hpp duke@435: duke@435: compiledICHolderKlass.hpp compiledICHolderOop.hpp duke@435: compiledICHolderKlass.hpp klass.hpp duke@435: compiledICHolderKlass.hpp methodOop.hpp duke@435: duke@435: compiledICHolderOop.cpp compiledICHolderOop.hpp duke@435: duke@435: compiledICHolderOop.hpp oop.hpp duke@435: duke@435: compilerInterface.hpp ciArray.hpp duke@435: compilerInterface.hpp ciArrayKlass.hpp duke@435: compilerInterface.hpp ciArrayKlassKlass.hpp duke@435: compilerInterface.hpp ciCallProfile.hpp duke@435: compilerInterface.hpp ciConstant.hpp duke@435: compilerInterface.hpp ciEnv.hpp duke@435: compilerInterface.hpp ciExceptionHandler.hpp duke@435: compilerInterface.hpp ciField.hpp duke@435: compilerInterface.hpp ciFlags.hpp duke@435: compilerInterface.hpp ciInstance.hpp duke@435: compilerInterface.hpp ciInstanceKlass.hpp duke@435: compilerInterface.hpp ciInstanceKlassKlass.hpp duke@435: compilerInterface.hpp ciKlass.hpp duke@435: compilerInterface.hpp ciKlassKlass.hpp duke@435: compilerInterface.hpp ciMethod.hpp duke@435: compilerInterface.hpp ciMethodKlass.hpp duke@435: compilerInterface.hpp ciNullObject.hpp duke@435: compilerInterface.hpp ciObjArray.hpp duke@435: compilerInterface.hpp ciObjArrayKlass.hpp duke@435: compilerInterface.hpp ciObjArrayKlassKlass.hpp duke@435: compilerInterface.hpp ciObject.hpp duke@435: compilerInterface.hpp ciSignature.hpp duke@435: compilerInterface.hpp ciStreams.hpp duke@435: compilerInterface.hpp ciSymbol.hpp duke@435: compilerInterface.hpp ciSymbolKlass.hpp duke@435: compilerInterface.hpp ciTypeArray.hpp duke@435: compilerInterface.hpp ciTypeArrayKlass.hpp duke@435: compilerInterface.hpp ciTypeArrayKlassKlass.hpp duke@435: duke@435: compilerOracle.cpp allocation.inline.hpp duke@435: compilerOracle.cpp compilerOracle.hpp duke@435: compilerOracle.cpp handles.inline.hpp duke@435: compilerOracle.cpp jniHandles.hpp duke@435: compilerOracle.cpp klass.hpp duke@435: compilerOracle.cpp methodOop.hpp duke@435: compilerOracle.cpp oop.hpp duke@435: compilerOracle.cpp oop.inline.hpp duke@435: compilerOracle.cpp oopFactory.hpp duke@435: compilerOracle.cpp resourceArea.hpp duke@435: compilerOracle.cpp symbolOop.hpp duke@435: duke@435: compilerOracle.hpp allocation.hpp duke@435: compilerOracle.hpp oopsHierarchy.hpp duke@435: duke@435: compressedStream.cpp compressedStream.hpp duke@435: compressedStream.cpp ostream.hpp duke@435: duke@435: compressedStream.hpp allocation.hpp duke@435: duke@435: constMethodKlass.cpp constMethodKlass.hpp duke@435: constMethodKlass.cpp constMethodOop.hpp duke@435: constMethodKlass.cpp gcLocker.hpp duke@435: constMethodKlass.cpp handles.inline.hpp duke@435: constMethodKlass.cpp interpreter.hpp coleenp@548: constMethodKlass.cpp markSweep.inline.hpp duke@435: constMethodKlass.cpp oop.inline.hpp duke@435: constMethodKlass.cpp oop.inline2.hpp duke@435: constMethodKlass.cpp resourceArea.hpp duke@435: duke@435: constMethodKlass.hpp oop.hpp duke@435: constMethodKlass.hpp klass.hpp duke@435: constMethodKlass.hpp orderAccess.hpp duke@435: duke@435: constMethodOop.cpp constMethodOop.hpp duke@435: constMethodOop.cpp methodOop.hpp duke@435: duke@435: constMethodOop.hpp oop.hpp duke@435: constMethodOop.hpp typeArrayOop.hpp duke@435: duke@435: constantPoolKlass.cpp collectedHeap.inline.hpp duke@435: constantPoolKlass.cpp constantPoolKlass.hpp duke@435: constantPoolKlass.cpp constantPoolOop.hpp duke@435: constantPoolKlass.cpp handles.inline.hpp coleenp@548: constantPoolKlass.cpp javaClasses.hpp coleenp@548: constantPoolKlass.cpp markSweep.inline.hpp duke@435: constantPoolKlass.cpp oop.inline.hpp duke@435: constantPoolKlass.cpp oop.inline2.hpp duke@435: constantPoolKlass.cpp oopFactory.hpp duke@435: constantPoolKlass.cpp permGen.hpp duke@435: constantPoolKlass.cpp symbolOop.hpp duke@435: constantPoolKlass.cpp thread_.inline.hpp duke@435: constantPoolKlass.cpp universe.inline.hpp duke@435: duke@435: constantPoolKlass.hpp arrayKlass.hpp duke@435: constantPoolKlass.hpp instanceKlass.hpp duke@435: duke@435: constantPoolOop.cpp constantPoolOop.hpp duke@435: constantPoolOop.cpp fieldType.hpp duke@435: constantPoolOop.cpp init.hpp duke@435: constantPoolOop.cpp instanceKlass.hpp duke@435: constantPoolOop.cpp javaClasses.hpp duke@435: constantPoolOop.cpp linkResolver.hpp duke@435: constantPoolOop.cpp objArrayKlass.hpp duke@435: constantPoolOop.cpp oop.inline.hpp duke@435: constantPoolOop.cpp signature.hpp duke@435: constantPoolOop.cpp symbolTable.hpp duke@435: constantPoolOop.cpp systemDictionary.hpp duke@435: constantPoolOop.cpp universe.inline.hpp duke@435: constantPoolOop.cpp vframe.hpp duke@435: constantPoolOop.cpp vmSymbols.hpp duke@435: duke@435: constantPoolOop.hpp arrayOop.hpp duke@435: constantPoolOop.hpp bytes_.hpp duke@435: constantPoolOop.hpp constantTag.hpp duke@435: constantPoolOop.hpp cpCacheOop.hpp duke@435: constantPoolOop.hpp typeArrayOop.hpp duke@435: duke@435: constantTag.cpp constantTag.hpp duke@435: duke@435: constantTag.hpp jvm.h duke@435: constantTag.hpp top.hpp duke@435: duke@435: copy.cpp copy.hpp duke@435: copy.cpp sharedRuntime.hpp duke@435: duke@435: copy.hpp stubRoutines.hpp duke@435: duke@435: copy_.hpp generate_platform_dependent_include duke@435: duke@435: copy_.inline.hpp generate_platform_dependent_include duke@435: duke@435: cpCacheKlass.cpp bytecodes.hpp duke@435: cpCacheKlass.cpp collectedHeap.hpp duke@435: cpCacheKlass.cpp constantPoolOop.hpp duke@435: cpCacheKlass.cpp cpCacheKlass.hpp duke@435: cpCacheKlass.cpp handles.inline.hpp coleenp@548: cpCacheKlass.cpp javaClasses.hpp coleenp@548: cpCacheKlass.cpp markSweep.inline.hpp duke@435: cpCacheKlass.cpp oop.inline.hpp duke@435: cpCacheKlass.cpp permGen.hpp duke@435: duke@435: cpCacheKlass.hpp arrayKlass.hpp duke@435: cpCacheKlass.hpp cpCacheOop.hpp duke@435: cpCacheKlass.hpp instanceKlass.hpp duke@435: duke@435: cpCacheOop.cpp cpCacheOop.hpp duke@435: cpCacheOop.cpp handles.inline.hpp duke@435: cpCacheOop.cpp interpreter.hpp duke@435: cpCacheOop.cpp jvmtiRedefineClassesTrace.hpp duke@435: cpCacheOop.cpp markSweep.inline.hpp duke@435: cpCacheOop.cpp objArrayOop.hpp duke@435: cpCacheOop.cpp oop.inline.hpp duke@435: cpCacheOop.cpp universe.inline.hpp duke@435: duke@435: cpCacheOop.hpp allocation.hpp duke@435: cpCacheOop.hpp array.hpp duke@435: cpCacheOop.hpp arrayOop.hpp duke@435: cpCacheOop.hpp bytecodes.hpp duke@435: duke@435: cppInterpreter.cpp bytecodeInterpreter.hpp duke@435: cppInterpreter.cpp interpreter.hpp duke@435: cppInterpreter.cpp interpreterGenerator.hpp duke@435: cppInterpreter.cpp interpreterRuntime.hpp duke@435: duke@435: cppInterpreter.hpp abstractInterpreter.hpp duke@435: duke@435: cppInterpreter_.cpp arguments.hpp duke@435: cppInterpreter_.cpp arrayOop.hpp duke@435: cppInterpreter_.cpp assembler.hpp duke@435: cppInterpreter_.cpp bytecodeHistogram.hpp duke@435: cppInterpreter_.cpp debug.hpp duke@435: cppInterpreter_.cpp deoptimization.hpp duke@435: cppInterpreter_.cpp frame.inline.hpp duke@435: cppInterpreter_.cpp interpreterRuntime.hpp duke@435: cppInterpreter_.cpp interpreter.hpp duke@435: cppInterpreter_.cpp interpreterGenerator.hpp duke@435: cppInterpreter_.cpp jvmtiExport.hpp duke@435: cppInterpreter_.cpp jvmtiThreadState.hpp duke@435: cppInterpreter_.cpp methodDataOop.hpp duke@435: cppInterpreter_.cpp methodOop.hpp duke@435: cppInterpreter_.cpp oop.inline.hpp duke@435: cppInterpreter_.cpp sharedRuntime.hpp duke@435: cppInterpreter_.cpp stubRoutines.hpp duke@435: cppInterpreter_.cpp synchronizer.hpp duke@435: cppInterpreter_.cpp cppInterpreter.hpp duke@435: cppInterpreter_.cpp timer.hpp duke@435: cppInterpreter_.cpp vframeArray.hpp duke@435: duke@435: cppInterpreter_.hpp generate_platform_dependent_include duke@435: duke@435: cppInterpreterGenerator_.hpp generate_platform_dependent_include duke@435: duke@435: debug.cpp arguments.hpp duke@435: debug.cpp bytecodeHistogram.hpp duke@435: debug.cpp codeCache.hpp duke@435: debug.cpp collectedHeap.hpp duke@435: debug.cpp compileBroker.hpp duke@435: debug.cpp defaultStream.hpp jrose@535: debug.cpp disassembler.hpp duke@435: debug.cpp events.hpp duke@435: debug.cpp frame.hpp duke@435: debug.cpp heapDumper.hpp duke@435: debug.cpp icBuffer.hpp duke@435: debug.cpp interpreter.hpp duke@435: debug.cpp java.hpp duke@435: debug.cpp markSweep.hpp duke@435: debug.cpp nmethod.hpp duke@435: debug.cpp oop.inline.hpp duke@435: debug.cpp os_.inline.hpp duke@435: debug.cpp privilegedStack.hpp duke@435: debug.cpp resourceArea.hpp duke@435: debug.cpp sharedRuntime.hpp duke@435: debug.cpp stubCodeGenerator.hpp duke@435: debug.cpp stubRoutines.hpp duke@435: debug.cpp systemDictionary.hpp duke@435: debug.cpp thread_.inline.hpp duke@435: debug.cpp top.hpp duke@435: debug.cpp universe.hpp duke@435: debug.cpp vframe.hpp duke@435: debug.cpp vmError.hpp duke@435: debug.cpp vtableStubs.hpp duke@435: duke@435: debug.hpp globalDefinitions.hpp duke@435: duke@435: debugInfo.cpp debugInfo.hpp duke@435: debugInfo.cpp debugInfoRec.hpp duke@435: debugInfo.cpp handles.inline.hpp duke@435: debugInfo.cpp nmethod.hpp duke@435: duke@435: debugInfo.hpp compressedStream.hpp duke@435: debugInfo.hpp growableArray.hpp duke@435: debugInfo.hpp location.hpp duke@435: debugInfo.hpp nmethod.hpp duke@435: debugInfo.hpp oopRecorder.hpp duke@435: debugInfo.hpp stackValue.hpp duke@435: duke@435: debugInfoRec.cpp debugInfoRec.hpp duke@435: debugInfoRec.cpp jvmtiExport.hpp duke@435: debugInfoRec.cpp scopeDesc.hpp duke@435: duke@435: debugInfoRec.hpp ciClassList.hpp duke@435: debugInfoRec.hpp ciInstanceKlass.hpp duke@435: debugInfoRec.hpp ciMethod.hpp duke@435: debugInfoRec.hpp debugInfo.hpp duke@435: debugInfoRec.hpp growableArray.hpp duke@435: debugInfoRec.hpp location.hpp duke@435: debugInfoRec.hpp oop.hpp duke@435: debugInfoRec.hpp oopMap.hpp duke@435: debugInfoRec.hpp pcDesc.hpp duke@435: duke@435: debug_.cpp codeCache.hpp duke@435: debug_.cpp debug.hpp duke@435: debug_.cpp frame.hpp duke@435: debug_.cpp init.hpp duke@435: debug_.cpp nmethod.hpp duke@435: debug_.cpp os.hpp duke@435: debug_.cpp top.hpp duke@435: duke@435: defNewGeneration.cpp collectorCounters.hpp duke@435: defNewGeneration.cpp copy.hpp duke@435: defNewGeneration.cpp defNewGeneration.inline.hpp duke@435: defNewGeneration.cpp gcLocker.inline.hpp duke@435: defNewGeneration.cpp gcPolicyCounters.hpp duke@435: defNewGeneration.cpp genCollectedHeap.hpp duke@435: defNewGeneration.cpp genOopClosures.inline.hpp duke@435: defNewGeneration.cpp generationSpec.hpp duke@435: defNewGeneration.cpp instanceRefKlass.hpp duke@435: defNewGeneration.cpp iterator.hpp duke@435: defNewGeneration.cpp java.hpp duke@435: defNewGeneration.cpp oop.inline.hpp duke@435: defNewGeneration.cpp referencePolicy.hpp duke@435: defNewGeneration.cpp space.inline.hpp jmasa@698: defNewGeneration.cpp spaceDecorator.hpp duke@435: defNewGeneration.cpp thread_.inline.hpp duke@435: duke@435: defNewGeneration.hpp ageTable.hpp duke@435: defNewGeneration.hpp cSpaceCounters.hpp duke@435: defNewGeneration.hpp generation.inline.hpp duke@435: defNewGeneration.hpp generationCounters.hpp duke@435: coleenp@548: defNewGeneration.inline.hpp cardTableRS.hpp duke@435: defNewGeneration.inline.hpp defNewGeneration.hpp duke@435: defNewGeneration.inline.hpp space.hpp duke@435: duke@435: defaultStream.hpp xmlstream.hpp duke@435: duke@435: deoptimization.cpp allocation.inline.hpp duke@435: deoptimization.cpp biasedLocking.hpp duke@435: deoptimization.cpp bytecode.hpp duke@435: deoptimization.cpp debugInfoRec.hpp duke@435: deoptimization.cpp deoptimization.hpp duke@435: deoptimization.cpp events.hpp duke@435: deoptimization.cpp interfaceSupport.hpp duke@435: deoptimization.cpp interpreter.hpp duke@435: deoptimization.cpp jvmtiThreadState.hpp duke@435: deoptimization.cpp methodOop.hpp duke@435: deoptimization.cpp nmethod.hpp duke@435: deoptimization.cpp oop.inline.hpp duke@435: deoptimization.cpp oopFactory.hpp duke@435: deoptimization.cpp oopMapCache.hpp duke@435: deoptimization.cpp pcDesc.hpp duke@435: deoptimization.cpp resourceArea.hpp duke@435: deoptimization.cpp scopeDesc.hpp duke@435: deoptimization.cpp sharedRuntime.hpp duke@435: deoptimization.cpp signature.hpp duke@435: deoptimization.cpp stubRoutines.hpp duke@435: deoptimization.cpp systemDictionary.hpp duke@435: deoptimization.cpp thread.hpp duke@435: deoptimization.cpp vframe.hpp duke@435: deoptimization.cpp vframeArray.hpp duke@435: deoptimization.cpp vframe_hp.hpp duke@435: deoptimization.cpp xmlstream.hpp duke@435: duke@435: deoptimization.hpp allocation.hpp duke@435: deoptimization.hpp frame.inline.hpp duke@435: duke@435: depChecker_.cpp depChecker_.hpp jrose@535: depChecker_.cpp disassembler.hpp duke@435: depChecker_.cpp hpi.hpp duke@435: duke@435: dependencies.cpp ciArrayKlass.hpp duke@435: dependencies.cpp ciEnv.hpp duke@435: dependencies.cpp ciKlass.hpp duke@435: dependencies.cpp ciMethod.hpp duke@435: dependencies.cpp compileLog.hpp duke@435: dependencies.cpp copy.hpp duke@435: dependencies.cpp dependencies.hpp duke@435: dependencies.cpp handles.inline.hpp duke@435: dependencies.cpp oop.inline.hpp duke@435: duke@435: dependencies.hpp ciKlass.hpp duke@435: dependencies.hpp compressedStream.hpp duke@435: dependencies.hpp growableArray.hpp duke@435: dependencies.hpp nmethod.hpp duke@435: duke@435: dictionary.cpp classLoadingService.hpp duke@435: dictionary.cpp dictionary.hpp duke@435: dictionary.cpp hashtable.inline.hpp duke@435: dictionary.cpp jvmtiRedefineClassesTrace.hpp duke@435: dictionary.cpp oop.inline.hpp duke@435: dictionary.cpp systemDictionary.hpp duke@435: duke@435: dictionary.hpp hashtable.hpp duke@435: dictionary.hpp instanceKlass.hpp duke@435: dictionary.hpp oop.hpp duke@435: dictionary.hpp systemDictionary.hpp duke@435: jrose@535: disassembler_.hpp generate_platform_dependent_include jrose@535: jrose@535: disassembler.cpp cardTableModRefBS.hpp jrose@535: disassembler.cpp codeCache.hpp jrose@535: disassembler.cpp collectedHeap.hpp jrose@535: disassembler.cpp depChecker_.hpp jrose@535: disassembler.cpp disassembler.hpp jrose@535: disassembler.cpp fprofiler.hpp jrose@535: disassembler.cpp handles.inline.hpp jrose@535: disassembler.cpp hpi.hpp jrose@535: disassembler.cpp stubCodeGenerator.hpp jrose@535: disassembler.cpp stubRoutines.hpp jrose@535: jrose@535: disassembler.hpp globals.hpp jrose@535: disassembler.hpp os_.inline.hpp duke@435: duke@435: dtraceAttacher.cpp codeCache.hpp duke@435: dtraceAttacher.cpp deoptimization.hpp duke@435: dtraceAttacher.cpp dtraceAttacher.hpp duke@435: dtraceAttacher.cpp resourceArea.hpp duke@435: dtraceAttacher.cpp vmThread.hpp duke@435: dtraceAttacher.cpp vm_operations.hpp duke@435: kamg@551: dtraceJSDT.cpp allocation.hpp kamg@551: dtraceJSDT.cpp codeBlob.hpp kamg@551: dtraceJSDT.cpp dtraceJSDT.hpp kamg@551: dtraceJSDT.cpp exceptions.hpp kamg@551: dtraceJSDT.cpp globalDefinitions.hpp kamg@551: dtraceJSDT.cpp javaClasses.hpp kamg@551: dtraceJSDT.cpp jniHandles.hpp kamg@551: dtraceJSDT.cpp jvm.h kamg@551: dtraceJSDT.cpp os.hpp kamg@551: dtraceJSDT.cpp utf8.hpp kamg@551: kamg@551: dtraceJSDT.hpp nativeInst_.hpp kamg@551: dtraceJSDT.hpp nmethod.hpp kamg@551: kamg@551: dtraceJSDT_.cpp allocation.hpp kamg@551: dtraceJSDT_.cpp codeBlob.hpp kamg@551: dtraceJSDT_.cpp dtraceJSDT.hpp kamg@551: dtraceJSDT_.cpp globalDefinitions.hpp kamg@551: dtraceJSDT_.cpp javaClasses.hpp kamg@551: dtraceJSDT_.cpp jniHandles.hpp kamg@551: dtraceJSDT_.cpp jvm.h kamg@551: dtraceJSDT_.cpp os.hpp kamg@551: dtraceJSDT_.cpp signature.hpp kamg@551: duke@435: // dump is jck optional, put cpp deps in includeDB_features duke@435: duke@435: events.cpp allocation.inline.hpp duke@435: events.cpp events.hpp duke@435: events.cpp mutexLocker.hpp duke@435: events.cpp osThread.hpp duke@435: events.cpp threadLocalStorage.hpp duke@435: events.cpp thread_.inline.hpp duke@435: events.cpp timer.hpp duke@435: duke@435: events.hpp allocation.hpp duke@435: events.hpp top.hpp duke@435: duke@435: evmCompat.cpp debug.hpp duke@435: duke@435: exceptionHandlerTable.cpp allocation.inline.hpp duke@435: exceptionHandlerTable.cpp exceptionHandlerTable.hpp duke@435: exceptionHandlerTable.cpp nmethod.hpp duke@435: duke@435: exceptionHandlerTable.hpp allocation.hpp duke@435: exceptionHandlerTable.hpp methodOop.hpp duke@435: duke@435: exceptions.cpp compileBroker.hpp duke@435: exceptions.cpp events.hpp duke@435: exceptions.cpp exceptions.hpp duke@435: exceptions.cpp init.hpp duke@435: exceptions.cpp java.hpp duke@435: exceptions.cpp javaCalls.hpp duke@435: exceptions.cpp oop.inline.hpp duke@435: exceptions.cpp systemDictionary.hpp duke@435: exceptions.cpp threadCritical.hpp duke@435: exceptions.cpp thread_.inline.hpp duke@435: exceptions.cpp vmSymbols.hpp duke@435: duke@435: exceptions.hpp allocation.hpp duke@435: exceptions.hpp oopsHierarchy.hpp duke@435: exceptions.hpp sizes.hpp duke@435: duke@435: fieldDescriptor.cpp fieldDescriptor.hpp duke@435: fieldDescriptor.cpp handles.inline.hpp duke@435: fieldDescriptor.cpp instanceKlass.hpp duke@435: fieldDescriptor.cpp resourceArea.hpp duke@435: fieldDescriptor.cpp signature.hpp duke@435: fieldDescriptor.cpp systemDictionary.hpp duke@435: fieldDescriptor.cpp universe.inline.hpp duke@435: fieldDescriptor.cpp vmSymbols.hpp duke@435: duke@435: fieldDescriptor.hpp accessFlags.hpp duke@435: fieldDescriptor.hpp constantPoolOop.hpp duke@435: fieldDescriptor.hpp constantTag.hpp duke@435: fieldDescriptor.hpp fieldType.hpp duke@435: fieldDescriptor.hpp klassOop.hpp duke@435: fieldDescriptor.hpp oop.inline.hpp duke@435: fieldDescriptor.hpp symbolOop.hpp duke@435: duke@435: fieldType.cpp fieldType.hpp duke@435: fieldType.cpp oop.inline.hpp duke@435: fieldType.cpp oopFactory.hpp duke@435: fieldType.cpp signature.hpp duke@435: fieldType.cpp systemDictionary.hpp duke@435: fieldType.cpp typeArrayKlass.hpp duke@435: duke@435: fieldType.hpp allocation.hpp duke@435: fieldType.hpp symbolOop.hpp duke@435: duke@435: filemap.cpp arguments.hpp duke@435: filemap.cpp classLoader.hpp duke@435: filemap.cpp defaultStream.hpp duke@435: filemap.cpp filemap.hpp duke@435: filemap.cpp hpi_.hpp duke@435: filemap.cpp java.hpp duke@435: filemap.cpp os.hpp duke@435: filemap.cpp symbolTable.hpp duke@435: duke@435: filemap.hpp compactingPermGenGen.hpp duke@435: filemap.hpp space.hpp duke@435: duke@435: // forte is jck optional, put cpp deps in includeDB_features duke@435: // fprofiler is jck optional, put cpp deps in includeDB_features duke@435: duke@435: fprofiler.hpp thread_.inline.hpp duke@435: fprofiler.hpp timer.hpp duke@435: duke@435: frame.cpp collectedHeap.inline.hpp duke@435: frame.cpp frame.inline.hpp duke@435: frame.cpp handles.inline.hpp duke@435: frame.cpp interpreter.hpp duke@435: frame.cpp javaCalls.hpp duke@435: frame.cpp markOop.hpp duke@435: frame.cpp methodDataOop.hpp duke@435: frame.cpp methodOop.hpp duke@435: frame.cpp monitorChunk.hpp duke@435: frame.cpp nativeInst_.hpp duke@435: frame.cpp oop.hpp duke@435: frame.cpp oop.inline.hpp duke@435: frame.cpp oop.inline2.hpp duke@435: frame.cpp oopMapCache.hpp duke@435: frame.cpp resourceArea.hpp duke@435: frame.cpp sharedRuntime.hpp duke@435: frame.cpp signature.hpp duke@435: frame.cpp stubCodeGenerator.hpp duke@435: frame.cpp stubRoutines.hpp duke@435: frame.cpp universe.inline.hpp duke@435: duke@435: frame.hpp assembler.hpp duke@435: frame.hpp methodOop.hpp duke@435: frame.hpp monitorChunk.hpp duke@435: frame.hpp registerMap.hpp duke@435: frame.hpp synchronizer.hpp duke@435: frame.hpp top.hpp duke@435: duke@435: frame.inline.hpp bytecodeInterpreter.hpp duke@435: frame.inline.hpp bytecodeInterpreter.inline.hpp duke@435: frame.inline.hpp frame.hpp duke@435: frame.inline.hpp interpreter.hpp duke@435: frame.inline.hpp jniTypes_.hpp duke@435: frame.inline.hpp methodOop.hpp duke@435: frame.inline.hpp signature.hpp duke@435: duke@435: frame_.cpp frame.inline.hpp duke@435: frame_.cpp handles.inline.hpp duke@435: frame_.cpp interpreter.hpp duke@435: frame_.cpp javaCalls.hpp duke@435: frame_.cpp markOop.hpp duke@435: frame_.cpp methodOop.hpp duke@435: frame_.cpp monitorChunk.hpp duke@435: frame_.cpp oop.inline.hpp duke@435: frame_.cpp resourceArea.hpp duke@435: frame_.cpp signature.hpp duke@435: frame_.cpp stubCodeGenerator.hpp duke@435: frame_.cpp stubRoutines.hpp duke@435: frame_.cpp vmreg_.inline.hpp duke@435: duke@435: frame_.hpp generate_platform_dependent_include duke@435: frame_.hpp synchronizer.hpp duke@435: frame_.hpp top.hpp duke@435: duke@435: frame_.inline.hpp generate_platform_dependent_include duke@435: duke@435: gcLocker.cpp gcLocker.inline.hpp duke@435: gcLocker.cpp sharedHeap.hpp apetrusenko@574: gcLocker.cpp resourceArea.hpp duke@435: duke@435: gcLocker.hpp collectedHeap.hpp duke@435: gcLocker.hpp genCollectedHeap.hpp duke@435: gcLocker.hpp oop.hpp duke@435: gcLocker.hpp os_.inline.hpp duke@435: gcLocker.hpp thread_.inline.hpp duke@435: gcLocker.hpp universe.hpp duke@435: duke@435: gcLocker.inline.hpp gcLocker.hpp duke@435: duke@435: genCollectedHeap.cpp aprofiler.hpp duke@435: genCollectedHeap.cpp biasedLocking.hpp duke@435: genCollectedHeap.cpp collectedHeap.inline.hpp duke@435: genCollectedHeap.cpp collectorCounters.hpp duke@435: genCollectedHeap.cpp compactPermGen.hpp duke@435: genCollectedHeap.cpp filemap.hpp duke@435: genCollectedHeap.cpp fprofiler.hpp duke@435: genCollectedHeap.cpp gcLocker.inline.hpp duke@435: genCollectedHeap.cpp genCollectedHeap.hpp duke@435: genCollectedHeap.cpp genOopClosures.inline.hpp duke@435: genCollectedHeap.cpp generation.inline.hpp duke@435: genCollectedHeap.cpp generationSpec.hpp duke@435: genCollectedHeap.cpp handles.hpp duke@435: genCollectedHeap.cpp handles.inline.hpp duke@435: genCollectedHeap.cpp icBuffer.hpp duke@435: genCollectedHeap.cpp java.hpp duke@435: genCollectedHeap.cpp memoryService.hpp duke@435: genCollectedHeap.cpp oop.inline.hpp duke@435: genCollectedHeap.cpp oop.inline2.hpp duke@435: genCollectedHeap.cpp permGen.hpp duke@435: genCollectedHeap.cpp resourceArea.hpp duke@435: genCollectedHeap.cpp sharedHeap.hpp duke@435: genCollectedHeap.cpp space.hpp duke@435: genCollectedHeap.cpp symbolTable.hpp duke@435: genCollectedHeap.cpp systemDictionary.hpp duke@435: genCollectedHeap.cpp vmGCOperations.hpp duke@435: genCollectedHeap.cpp vmSymbols.hpp duke@435: genCollectedHeap.cpp vmThread.hpp duke@435: genCollectedHeap.cpp workgroup.hpp duke@435: duke@435: genCollectedHeap.hpp adaptiveSizePolicy.hpp duke@435: genCollectedHeap.hpp collectorPolicy.hpp duke@435: genCollectedHeap.hpp generation.hpp duke@435: genCollectedHeap.hpp sharedHeap.hpp duke@435: duke@435: genMarkSweep.cpp codeCache.hpp duke@435: genMarkSweep.cpp collectedHeap.inline.hpp duke@435: genMarkSweep.cpp copy.hpp duke@435: genMarkSweep.cpp events.hpp duke@435: genMarkSweep.cpp fprofiler.hpp duke@435: genMarkSweep.cpp genCollectedHeap.hpp duke@435: genMarkSweep.cpp genMarkSweep.hpp duke@435: genMarkSweep.cpp genOopClosures.inline.hpp duke@435: genMarkSweep.cpp generation.inline.hpp duke@435: genMarkSweep.cpp handles.inline.hpp duke@435: genMarkSweep.cpp icBuffer.hpp duke@435: genMarkSweep.cpp instanceRefKlass.hpp duke@435: genMarkSweep.cpp javaClasses.hpp duke@435: genMarkSweep.cpp jvmtiExport.hpp duke@435: genMarkSweep.cpp modRefBarrierSet.hpp duke@435: genMarkSweep.cpp oop.inline.hpp duke@435: genMarkSweep.cpp referencePolicy.hpp duke@435: genMarkSweep.cpp space.hpp duke@435: genMarkSweep.cpp symbolTable.hpp duke@435: genMarkSweep.cpp synchronizer.hpp duke@435: genMarkSweep.cpp systemDictionary.hpp duke@435: genMarkSweep.cpp thread_.inline.hpp duke@435: genMarkSweep.cpp vmSymbols.hpp duke@435: genMarkSweep.cpp vmThread.hpp duke@435: duke@435: genMarkSweep.hpp markSweep.hpp duke@435: duke@435: genOopClosures.hpp iterator.hpp duke@435: genOopClosures.hpp oop.hpp duke@435: duke@435: genOopClosures.inline.hpp cardTableRS.hpp duke@435: genOopClosures.inline.hpp defNewGeneration.hpp duke@435: genOopClosures.inline.hpp genCollectedHeap.hpp duke@435: genOopClosures.inline.hpp genOopClosures.hpp duke@435: genOopClosures.inline.hpp genRemSet.hpp duke@435: genOopClosures.inline.hpp generation.hpp duke@435: genOopClosures.inline.hpp sharedHeap.hpp duke@435: genOopClosures.inline.hpp space.hpp duke@435: duke@435: genRemSet.cpp cardTableRS.hpp duke@435: genRemSet.cpp genRemSet.hpp duke@435: duke@435: genRemSet.hpp oop.hpp duke@435: ysr@777: generateOopMap.cpp bitMap.inline.hpp duke@435: generateOopMap.cpp bytecodeStream.hpp duke@435: generateOopMap.cpp generateOopMap.hpp duke@435: generateOopMap.cpp handles.inline.hpp duke@435: generateOopMap.cpp java.hpp duke@435: generateOopMap.cpp oop.inline.hpp duke@435: generateOopMap.cpp relocator.hpp duke@435: generateOopMap.cpp symbolOop.hpp duke@435: duke@435: generateOopMap.hpp allocation.inline.hpp duke@435: generateOopMap.hpp bytecodeStream.hpp duke@435: generateOopMap.hpp methodOop.hpp duke@435: generateOopMap.hpp oopsHierarchy.hpp duke@435: generateOopMap.hpp signature.hpp duke@435: generateOopMap.hpp universe.inline.hpp duke@435: duke@435: generation.cpp allocation.inline.hpp duke@435: generation.cpp blockOffsetTable.hpp duke@435: generation.cpp cardTableRS.hpp duke@435: generation.cpp collectedHeap.inline.hpp duke@435: generation.cpp copy.hpp duke@435: generation.cpp events.hpp duke@435: generation.cpp gcLocker.inline.hpp duke@435: generation.cpp genCollectedHeap.hpp duke@435: generation.cpp genMarkSweep.hpp duke@435: generation.cpp genOopClosures.hpp duke@435: generation.cpp genOopClosures.inline.hpp duke@435: generation.cpp generation.hpp duke@435: generation.cpp generation.inline.hpp duke@435: generation.cpp java.hpp duke@435: generation.cpp oop.hpp duke@435: generation.cpp oop.inline.hpp jmasa@698: generation.cpp spaceDecorator.hpp duke@435: generation.cpp space.inline.hpp duke@435: duke@435: generation.hpp allocation.hpp duke@435: generation.hpp collectorCounters.hpp duke@435: generation.hpp memRegion.hpp duke@435: generation.hpp mutex.hpp duke@435: generation.hpp perfData.hpp duke@435: generation.hpp referenceProcessor.hpp duke@435: generation.hpp universe.hpp duke@435: generation.hpp virtualspace.hpp duke@435: generation.hpp watermark.hpp duke@435: duke@435: generation.inline.hpp genCollectedHeap.hpp duke@435: generation.inline.hpp generation.hpp duke@435: generation.inline.hpp space.hpp duke@435: ysr@777: genOopClosures.hpp oop.hpp ysr@777: duke@435: generationSpec.cpp compactPermGen.hpp duke@435: generationSpec.cpp defNewGeneration.hpp duke@435: generationSpec.cpp filemap.hpp duke@435: generationSpec.cpp genRemSet.hpp duke@435: generationSpec.cpp generationSpec.hpp duke@435: generationSpec.cpp java.hpp duke@435: generationSpec.cpp tenuredGeneration.hpp duke@435: duke@435: generationSpec.hpp generation.hpp duke@435: generationSpec.hpp permGen.hpp duke@435: duke@435: globalDefinitions.cpp globalDefinitions.hpp duke@435: globalDefinitions.cpp os.hpp duke@435: globalDefinitions.cpp top.hpp duke@435: duke@435: globalDefinitions.hpp globalDefinitions_.hpp duke@435: globalDefinitions.hpp macros.hpp duke@435: duke@435: globalDefinitions_.hpp generate_platform_dependent_include duke@435: duke@435: globalDefinitions_.hpp jni.h duke@435: duke@435: globals.cpp allocation.inline.hpp duke@435: globals.cpp arguments.hpp duke@435: globals.cpp globals.hpp duke@435: globals.cpp globals_extension.hpp duke@435: globals.cpp oop.inline.hpp duke@435: globals.cpp ostream.hpp duke@435: globals.cpp top.hpp duke@435: duke@435: globals.hpp debug.hpp duke@435: globals.hpp globals_.hpp duke@435: globals.hpp globals_.hpp duke@435: globals.hpp globals_.hpp duke@435: duke@435: globals_extension.hpp globals.hpp duke@435: globals_extension.hpp top.hpp duke@435: duke@435: growableArray.cpp growableArray.hpp duke@435: growableArray.cpp resourceArea.hpp duke@435: growableArray.cpp thread_.inline.hpp duke@435: duke@435: growableArray.hpp allocation.hpp duke@435: growableArray.hpp allocation.inline.hpp duke@435: growableArray.hpp debug.hpp duke@435: growableArray.hpp globalDefinitions.hpp duke@435: growableArray.hpp top.hpp duke@435: duke@435: handles.cpp allocation.inline.hpp duke@435: handles.cpp handles.inline.hpp duke@435: handles.cpp oop.inline.hpp duke@435: handles.cpp os_.inline.hpp duke@435: handles.cpp thread_.inline.hpp duke@435: duke@435: handles.hpp klass.hpp duke@435: handles.hpp klassOop.hpp duke@435: handles.hpp top.hpp duke@435: duke@435: handles.inline.hpp handles.hpp duke@435: handles.inline.hpp thread_.inline.hpp duke@435: duke@435: hashtable.cpp allocation.inline.hpp duke@435: hashtable.cpp dtrace.hpp duke@435: hashtable.cpp hashtable.hpp duke@435: hashtable.cpp hashtable.inline.hpp duke@435: hashtable.cpp oop.inline.hpp duke@435: hashtable.cpp resourceArea.hpp duke@435: hashtable.cpp safepoint.hpp duke@435: duke@435: hashtable.hpp allocation.hpp duke@435: hashtable.hpp handles.hpp duke@435: hashtable.hpp oop.hpp duke@435: hashtable.hpp symbolOop.hpp duke@435: duke@435: hashtable.inline.hpp allocation.inline.hpp duke@435: hashtable.inline.hpp hashtable.hpp duke@435: duke@435: heap.cpp heap.hpp duke@435: heap.cpp oop.inline.hpp duke@435: heap.cpp os.hpp duke@435: duke@435: heap.hpp allocation.hpp duke@435: heap.hpp virtualspace.hpp duke@435: duke@435: // heapDumper is jck optional, put cpp deps in includeDB_features duke@435: duke@435: heapDumper.hpp allocation.hpp duke@435: heapDumper.hpp klassOop.hpp duke@435: heapDumper.hpp oop.hpp duke@435: heapDumper.hpp os.hpp duke@435: duke@435: // heapInspection is jck optional, put cpp deps in includeDB_features duke@435: duke@435: heapInspection.hpp allocation.inline.hpp duke@435: heapInspection.hpp oop.inline.hpp duke@435: duke@435: histogram.cpp histogram.hpp duke@435: histogram.cpp oop.inline.hpp duke@435: duke@435: histogram.hpp allocation.hpp duke@435: histogram.hpp growableArray.hpp duke@435: histogram.hpp os.hpp duke@435: histogram.hpp os_.inline.hpp duke@435: duke@435: hpi.cpp hpi.hpp duke@435: hpi.cpp jvm.h duke@435: duke@435: hpi.hpp globalDefinitions.hpp duke@435: hpi.hpp hpi_imported.h duke@435: hpi.hpp os.hpp duke@435: hpi.hpp top.hpp duke@435: duke@435: hpi_.cpp hpi.hpp duke@435: hpi_.cpp oop.inline.hpp duke@435: hpi_.cpp os.hpp duke@435: duke@435: hpi_imported.h jni.h duke@435: never@739: icBuffer.cpp assembler_.inline.hpp duke@435: icBuffer.cpp collectedHeap.inline.hpp duke@435: icBuffer.cpp compiledIC.hpp duke@435: icBuffer.cpp icBuffer.hpp duke@435: icBuffer.cpp interpreter.hpp duke@435: icBuffer.cpp linkResolver.hpp duke@435: icBuffer.cpp methodOop.hpp duke@435: icBuffer.cpp mutexLocker.hpp duke@435: icBuffer.cpp nmethod.hpp duke@435: icBuffer.cpp oop.inline.hpp duke@435: icBuffer.cpp oop.inline2.hpp duke@435: icBuffer.cpp resourceArea.hpp duke@435: icBuffer.cpp scopeDesc.hpp duke@435: icBuffer.cpp stubRoutines.hpp duke@435: icBuffer.cpp universe.inline.hpp duke@435: duke@435: icBuffer.hpp allocation.hpp duke@435: icBuffer.hpp bytecodes.hpp duke@435: icBuffer.hpp stubs.hpp duke@435: duke@435: icBuffer_.cpp assembler.hpp never@739: icBuffer_.cpp assembler_.inline.hpp duke@435: icBuffer_.cpp bytecodes.hpp duke@435: icBuffer_.cpp collectedHeap.inline.hpp duke@435: icBuffer_.cpp icBuffer.hpp duke@435: icBuffer_.cpp nativeInst_.hpp duke@435: icBuffer_.cpp oop.inline.hpp duke@435: icBuffer_.cpp oop.inline2.hpp duke@435: icBuffer_.cpp resourceArea.hpp duke@435: duke@435: icache.cpp icache.hpp duke@435: icache.cpp resourceArea.hpp duke@435: duke@435: icache.hpp allocation.hpp duke@435: icache.hpp stubCodeGenerator.hpp duke@435: never@739: icache_.cpp assembler_.inline.hpp duke@435: icache_.cpp icache.hpp duke@435: duke@435: icache_.hpp generate_platform_dependent_include duke@435: duke@435: init.cpp bytecodes.hpp duke@435: init.cpp collectedHeap.hpp never@452: init.cpp handles.inline.hpp duke@435: init.cpp icBuffer.hpp duke@435: init.cpp icache.hpp duke@435: init.cpp init.hpp duke@435: init.cpp safepoint.hpp duke@435: init.cpp sharedRuntime.hpp duke@435: init.cpp universe.hpp duke@435: duke@435: init.hpp top.hpp duke@435: duke@435: instanceKlass.cpp collectedHeap.inline.hpp duke@435: instanceKlass.cpp compileBroker.hpp duke@435: instanceKlass.cpp fieldDescriptor.hpp duke@435: instanceKlass.cpp genOopClosures.inline.hpp duke@435: instanceKlass.cpp handles.inline.hpp duke@435: instanceKlass.cpp instanceKlass.hpp duke@435: instanceKlass.cpp instanceOop.hpp duke@435: instanceKlass.cpp javaCalls.hpp duke@435: instanceKlass.cpp javaClasses.hpp duke@435: instanceKlass.cpp jvmti.h duke@435: instanceKlass.cpp jvmtiExport.hpp duke@435: instanceKlass.cpp jvmtiRedefineClassesTrace.hpp coleenp@548: instanceKlass.cpp markSweep.inline.hpp duke@435: instanceKlass.cpp methodOop.hpp duke@435: instanceKlass.cpp mutexLocker.hpp duke@435: instanceKlass.cpp objArrayKlassKlass.hpp duke@435: instanceKlass.cpp oop.inline.hpp duke@435: instanceKlass.cpp oopFactory.hpp duke@435: instanceKlass.cpp oopMapCache.hpp duke@435: instanceKlass.cpp permGen.hpp duke@435: instanceKlass.cpp rewriter.hpp duke@435: instanceKlass.cpp symbolOop.hpp duke@435: instanceKlass.cpp systemDictionary.hpp duke@435: instanceKlass.cpp threadService.hpp duke@435: instanceKlass.cpp thread_.inline.hpp duke@435: instanceKlass.cpp verifier.hpp duke@435: instanceKlass.cpp vmSymbols.hpp duke@435: duke@435: instanceKlass.hpp accessFlags.hpp duke@435: instanceKlass.hpp bitMap.hpp duke@435: instanceKlass.hpp constMethodOop.hpp duke@435: instanceKlass.hpp constantPoolOop.hpp duke@435: instanceKlass.hpp handles.hpp duke@435: instanceKlass.hpp instanceOop.hpp duke@435: instanceKlass.hpp klassOop.hpp duke@435: instanceKlass.hpp klassVtable.hpp duke@435: instanceKlass.hpp objArrayOop.hpp duke@435: instanceKlass.hpp os.hpp duke@435: duke@435: instanceKlassKlass.cpp collectedHeap.inline.hpp duke@435: instanceKlassKlass.cpp constantPoolOop.hpp duke@435: instanceKlassKlass.cpp fieldDescriptor.hpp duke@435: instanceKlassKlass.cpp gcLocker.hpp duke@435: instanceKlassKlass.cpp instanceKlass.hpp duke@435: instanceKlassKlass.cpp instanceKlassKlass.hpp duke@435: instanceKlassKlass.cpp instanceRefKlass.hpp duke@435: instanceKlassKlass.cpp javaClasses.hpp duke@435: instanceKlassKlass.cpp jvmtiExport.hpp coleenp@548: instanceKlassKlass.cpp markSweep.inline.hpp duke@435: instanceKlassKlass.cpp objArrayKlassKlass.hpp duke@435: instanceKlassKlass.cpp objArrayOop.hpp duke@435: instanceKlassKlass.cpp oop.inline.hpp duke@435: instanceKlassKlass.cpp oop.inline2.hpp duke@435: instanceKlassKlass.cpp oopMapCache.hpp duke@435: instanceKlassKlass.cpp symbolOop.hpp duke@435: instanceKlassKlass.cpp systemDictionary.hpp duke@435: instanceKlassKlass.cpp typeArrayOop.hpp duke@435: duke@435: instanceKlassKlass.hpp klassKlass.hpp duke@435: duke@435: instanceOop.cpp instanceOop.hpp duke@435: duke@435: instanceOop.hpp oop.hpp duke@435: duke@435: instanceRefKlass.cpp collectedHeap.hpp duke@435: instanceRefKlass.cpp collectedHeap.inline.hpp duke@435: instanceRefKlass.cpp genCollectedHeap.hpp duke@435: instanceRefKlass.cpp genOopClosures.inline.hpp duke@435: instanceRefKlass.cpp instanceRefKlass.hpp duke@435: instanceRefKlass.cpp javaClasses.hpp coleenp@548: instanceRefKlass.cpp markSweep.inline.hpp duke@435: instanceRefKlass.cpp oop.inline.hpp duke@435: instanceRefKlass.cpp preserveException.hpp duke@435: instanceRefKlass.cpp systemDictionary.hpp duke@435: duke@435: instanceRefKlass.hpp instanceKlass.hpp duke@435: duke@435: interfaceSupport.cpp collectedHeap.hpp duke@435: interfaceSupport.cpp collectedHeap.inline.hpp duke@435: interfaceSupport.cpp genCollectedHeap.hpp duke@435: interfaceSupport.cpp init.hpp duke@435: interfaceSupport.cpp interfaceSupport.hpp duke@435: interfaceSupport.cpp markSweep.hpp duke@435: interfaceSupport.cpp preserveException.hpp duke@435: interfaceSupport.cpp resourceArea.hpp duke@435: interfaceSupport.cpp threadLocalStorage.hpp duke@435: interfaceSupport.cpp vframe.hpp duke@435: duke@435: interfaceSupport.hpp gcLocker.hpp duke@435: interfaceSupport.hpp globalDefinitions.hpp duke@435: interfaceSupport.hpp handles.inline.hpp duke@435: interfaceSupport.hpp mutexLocker.hpp duke@435: interfaceSupport.hpp orderAccess.hpp duke@435: interfaceSupport.hpp os.hpp duke@435: interfaceSupport.hpp preserveException.hpp duke@435: interfaceSupport.hpp safepoint.hpp duke@435: interfaceSupport.hpp thread_.inline.hpp duke@435: interfaceSupport.hpp top.hpp duke@435: interfaceSupport.hpp vmThread.hpp duke@435: duke@435: interfaceSupport_.hpp generate_platform_dependent_include duke@435: duke@435: interp_masm_.cpp arrayOop.hpp duke@435: interp_masm_.cpp biasedLocking.hpp duke@435: interp_masm_.cpp interp_masm_.hpp duke@435: interp_masm_.cpp interpreterRuntime.hpp duke@435: interp_masm_.cpp interpreter.hpp duke@435: interp_masm_.cpp jvmtiExport.hpp duke@435: interp_masm_.cpp jvmtiThreadState.hpp duke@435: interp_masm_.cpp markOop.hpp duke@435: interp_masm_.cpp methodDataOop.hpp duke@435: interp_masm_.cpp methodOop.hpp duke@435: interp_masm_.cpp sharedRuntime.hpp duke@435: interp_masm_.cpp synchronizer.hpp duke@435: interp_masm_.cpp thread_.inline.hpp duke@435: never@739: interp_masm_.hpp assembler_.inline.hpp duke@435: interp_masm_.hpp invocationCounter.hpp duke@435: duke@435: interpreter.cpp allocation.inline.hpp duke@435: interpreter.cpp arrayOop.hpp duke@435: interpreter.cpp assembler.hpp duke@435: interpreter.cpp bytecodeHistogram.hpp duke@435: interpreter.cpp bytecodeInterpreter.hpp duke@435: interpreter.cpp forte.hpp duke@435: interpreter.cpp handles.inline.hpp duke@435: interpreter.cpp interpreter.hpp duke@435: interpreter.cpp interpreterRuntime.hpp duke@435: interpreter.cpp interpreter.hpp duke@435: interpreter.cpp jvmtiExport.hpp duke@435: interpreter.cpp methodDataOop.hpp duke@435: interpreter.cpp methodOop.hpp duke@435: interpreter.cpp oop.inline.hpp duke@435: interpreter.cpp resourceArea.hpp duke@435: interpreter.cpp sharedRuntime.hpp duke@435: interpreter.cpp stubRoutines.hpp duke@435: interpreter.cpp templateTable.hpp duke@435: interpreter.cpp timer.hpp duke@435: interpreter.cpp vtune.hpp duke@435: duke@435: interpreter.hpp cppInterpreter.hpp duke@435: interpreter.hpp stubs.hpp duke@435: interpreter.hpp templateInterpreter.hpp duke@435: duke@435: interpreterRT_.cpp allocation.inline.hpp duke@435: interpreterRT_.cpp handles.inline.hpp duke@435: interpreterRT_.cpp icache.hpp duke@435: interpreterRT_.cpp interfaceSupport.hpp duke@435: interpreterRT_.cpp interpreterRuntime.hpp duke@435: interpreterRT_.cpp interpreter.hpp duke@435: interpreterRT_.cpp methodOop.hpp duke@435: interpreterRT_.cpp oop.inline.hpp duke@435: interpreterRT_.cpp signature.hpp duke@435: interpreterRT_.cpp universe.inline.hpp duke@435: duke@435: interpreterRT_.hpp allocation.hpp duke@435: interpreterRT_.hpp generate_platform_dependent_include duke@435: duke@435: interpreterRuntime.cpp biasedLocking.hpp duke@435: interpreterRuntime.cpp collectedHeap.hpp duke@435: interpreterRuntime.cpp compilationPolicy.hpp duke@435: interpreterRuntime.cpp constantPoolOop.hpp duke@435: interpreterRuntime.cpp cpCacheOop.hpp duke@435: interpreterRuntime.cpp deoptimization.hpp duke@435: interpreterRuntime.cpp events.hpp duke@435: interpreterRuntime.cpp fieldDescriptor.hpp duke@435: interpreterRuntime.cpp handles.inline.hpp duke@435: interpreterRuntime.cpp instanceKlass.hpp duke@435: interpreterRuntime.cpp interfaceSupport.hpp duke@435: interpreterRuntime.cpp interpreterRuntime.hpp duke@435: interpreterRuntime.cpp interpreter.hpp duke@435: interpreterRuntime.cpp java.hpp duke@435: interpreterRuntime.cpp jfieldIDWorkaround.hpp duke@435: interpreterRuntime.cpp jvmtiExport.hpp duke@435: interpreterRuntime.cpp linkResolver.hpp duke@435: interpreterRuntime.cpp methodDataOop.hpp duke@435: interpreterRuntime.cpp nativeLookup.hpp duke@435: interpreterRuntime.cpp objArrayKlass.hpp duke@435: interpreterRuntime.cpp oop.inline.hpp duke@435: interpreterRuntime.cpp oopFactory.hpp duke@435: interpreterRuntime.cpp osThread.hpp duke@435: interpreterRuntime.cpp sharedRuntime.hpp duke@435: interpreterRuntime.cpp stubRoutines.hpp duke@435: interpreterRuntime.cpp symbolOop.hpp duke@435: interpreterRuntime.cpp synchronizer.hpp duke@435: interpreterRuntime.cpp systemDictionary.hpp duke@435: interpreterRuntime.cpp templateTable.hpp duke@435: interpreterRuntime.cpp threadCritical.hpp duke@435: interpreterRuntime.cpp universe.inline.hpp duke@435: interpreterRuntime.cpp vmSymbols.hpp duke@435: interpreterRuntime.cpp vm_version_.hpp duke@435: duke@435: interpreterRuntime.hpp bytecode.hpp duke@435: interpreterRuntime.hpp frame.inline.hpp duke@435: interpreterRuntime.hpp linkResolver.hpp duke@435: interpreterRuntime.hpp methodOop.hpp duke@435: interpreterRuntime.hpp signature.hpp duke@435: interpreterRuntime.hpp thread_.inline.hpp duke@435: interpreterRuntime.hpp top.hpp duke@435: interpreterRuntime.hpp universe.hpp duke@435: duke@435: interpreter_.cpp arguments.hpp duke@435: interpreter_.cpp arrayOop.hpp duke@435: interpreter_.cpp assembler.hpp duke@435: interpreter_.cpp bytecodeHistogram.hpp duke@435: interpreter_.cpp debug.hpp duke@435: interpreter_.cpp deoptimization.hpp duke@435: interpreter_.cpp frame.inline.hpp duke@435: interpreter_.cpp interpreterRuntime.hpp duke@435: interpreter_.cpp interpreter.hpp duke@435: interpreter_.cpp interpreterGenerator.hpp duke@435: interpreter_.cpp jvmtiExport.hpp duke@435: interpreter_.cpp jvmtiThreadState.hpp duke@435: interpreter_.cpp methodDataOop.hpp duke@435: interpreter_.cpp methodOop.hpp duke@435: interpreter_.cpp oop.inline.hpp duke@435: interpreter_.cpp sharedRuntime.hpp duke@435: interpreter_.cpp stubRoutines.hpp duke@435: interpreter_.cpp synchronizer.hpp duke@435: interpreter_.cpp templateTable.hpp duke@435: interpreter_.cpp timer.hpp duke@435: interpreter_.cpp vframeArray.hpp duke@435: duke@435: interpreter_.hpp generate_platform_dependent_include duke@435: duke@435: interpreterGenerator.hpp cppInterpreter.hpp duke@435: interpreterGenerator.hpp cppInterpreterGenerator.hpp duke@435: interpreterGenerator.hpp templateInterpreter.hpp duke@435: interpreterGenerator.hpp templateInterpreterGenerator.hpp duke@435: duke@435: interpreterGenerator_.hpp generate_platform_dependent_include duke@435: duke@435: invocationCounter.cpp frame.hpp duke@435: invocationCounter.cpp handles.inline.hpp duke@435: invocationCounter.cpp invocationCounter.hpp duke@435: duke@435: invocationCounter.hpp allocation.hpp duke@435: invocationCounter.hpp exceptions.hpp duke@435: invocationCounter.hpp handles.hpp duke@435: ysr@777: intHisto.cpp intHisto.hpp ysr@777: ysr@777: intHisto.hpp allocation.hpp ysr@777: intHisto.hpp growableArray.hpp ysr@777: duke@435: iterator.cpp iterator.hpp duke@435: iterator.cpp oop.inline.hpp duke@435: duke@435: iterator.hpp allocation.hpp duke@435: iterator.hpp memRegion.hpp duke@435: iterator.hpp prefetch.hpp duke@435: iterator.hpp top.hpp duke@435: duke@435: java.cpp aprofiler.hpp duke@435: java.cpp arguments.hpp duke@435: java.cpp biasedLocking.hpp duke@435: java.cpp bytecodeHistogram.hpp duke@435: java.cpp classLoader.hpp duke@435: java.cpp codeCache.hpp duke@435: java.cpp compilationPolicy.hpp duke@435: java.cpp compileBroker.hpp duke@435: java.cpp compilerOracle.hpp duke@435: java.cpp constantPoolOop.hpp duke@435: java.cpp dtrace.hpp duke@435: java.cpp fprofiler.hpp duke@435: java.cpp genCollectedHeap.hpp duke@435: java.cpp generateOopMap.hpp duke@435: java.cpp globalDefinitions.hpp duke@435: java.cpp histogram.hpp duke@435: java.cpp init.hpp duke@435: java.cpp instanceKlass.hpp duke@435: java.cpp instanceKlassKlass.hpp duke@435: java.cpp instanceOop.hpp duke@435: java.cpp interfaceSupport.hpp duke@435: java.cpp java.hpp duke@435: java.cpp jvmtiExport.hpp duke@435: java.cpp memprofiler.hpp duke@435: java.cpp methodOop.hpp duke@435: java.cpp objArrayOop.hpp duke@435: java.cpp oop.hpp duke@435: java.cpp oop.inline.hpp duke@435: java.cpp oopFactory.hpp duke@435: java.cpp sharedRuntime.hpp duke@435: java.cpp statSampler.hpp duke@435: java.cpp symbolOop.hpp duke@435: java.cpp symbolTable.hpp duke@435: java.cpp systemDictionary.hpp duke@435: java.cpp task.hpp duke@435: java.cpp thread_.inline.hpp duke@435: java.cpp timer.hpp duke@435: java.cpp universe.hpp duke@435: java.cpp vmError.hpp duke@435: java.cpp vm_operations.hpp duke@435: java.cpp vm_version_.hpp duke@435: java.cpp vtune.hpp duke@435: duke@435: java.hpp os.hpp duke@435: duke@435: javaAssertions.cpp allocation.inline.hpp duke@435: javaAssertions.cpp handles.inline.hpp duke@435: javaAssertions.cpp javaAssertions.hpp duke@435: javaAssertions.cpp javaClasses.hpp duke@435: javaAssertions.cpp oop.inline.hpp duke@435: javaAssertions.cpp oopFactory.hpp duke@435: javaAssertions.cpp systemDictionary.hpp duke@435: javaAssertions.cpp vmSymbols.hpp duke@435: duke@435: javaAssertions.hpp exceptions.hpp duke@435: javaAssertions.hpp objArrayOop.hpp duke@435: javaAssertions.hpp ostream.hpp duke@435: javaAssertions.hpp typeArrayOop.hpp duke@435: duke@435: javaCalls.cpp compilationPolicy.hpp duke@435: javaCalls.cpp compileBroker.hpp duke@435: javaCalls.cpp handles.inline.hpp duke@435: javaCalls.cpp interfaceSupport.hpp duke@435: javaCalls.cpp interpreter.hpp duke@435: javaCalls.cpp javaCalls.hpp duke@435: javaCalls.cpp linkResolver.hpp duke@435: javaCalls.cpp mutexLocker.hpp duke@435: javaCalls.cpp nmethod.hpp duke@435: javaCalls.cpp oop.inline.hpp duke@435: javaCalls.cpp signature.hpp duke@435: javaCalls.cpp stubRoutines.hpp duke@435: javaCalls.cpp systemDictionary.hpp duke@435: javaCalls.cpp thread_.inline.hpp duke@435: javaCalls.cpp universe.inline.hpp duke@435: javaCalls.cpp vmSymbols.hpp duke@435: javaCalls.hpp allocation.hpp duke@435: duke@435: javaCalls.hpp handles.hpp duke@435: javaCalls.hpp javaFrameAnchor.hpp duke@435: javaCalls.hpp jniTypes_.hpp duke@435: javaCalls.hpp methodOop.hpp duke@435: javaCalls.hpp thread_.inline.hpp duke@435: javaCalls.hpp vmThread.hpp duke@435: duke@435: javaClasses.cpp debugInfo.hpp duke@435: javaClasses.cpp fieldDescriptor.hpp duke@435: javaClasses.cpp handles.inline.hpp duke@435: javaClasses.cpp instanceKlass.hpp duke@435: javaClasses.cpp interfaceSupport.hpp duke@435: javaClasses.cpp interpreter.hpp duke@435: javaClasses.cpp java.hpp duke@435: javaClasses.cpp javaCalls.hpp duke@435: javaClasses.cpp javaClasses.hpp duke@435: javaClasses.cpp klass.hpp duke@435: javaClasses.cpp klassOop.hpp duke@435: javaClasses.cpp methodOop.hpp duke@435: javaClasses.cpp oopFactory.hpp duke@435: javaClasses.cpp pcDesc.hpp duke@435: javaClasses.cpp preserveException.hpp duke@435: javaClasses.cpp resourceArea.hpp duke@435: javaClasses.cpp safepoint.hpp duke@435: javaClasses.cpp symbolOop.hpp duke@435: javaClasses.cpp symbolTable.hpp duke@435: javaClasses.cpp thread_.inline.hpp duke@435: javaClasses.cpp typeArrayOop.hpp duke@435: javaClasses.cpp universe.inline.hpp duke@435: javaClasses.cpp vframe.hpp duke@435: javaClasses.cpp vmSymbols.hpp duke@435: duke@435: javaClasses.hpp jvmti.h duke@435: javaClasses.hpp oop.hpp duke@435: javaClasses.hpp os.hpp duke@435: javaClasses.hpp systemDictionary.hpp duke@435: javaClasses.hpp utf8.hpp duke@435: duke@435: javaFrameAnchor.hpp globalDefinitions.hpp duke@435: javaFrameAnchor.hpp orderAccess_.inline.hpp duke@435: duke@435: javaFrameAnchor_.hpp generate_platform_dependent_include duke@435: duke@435: jni.cpp allocation.inline.hpp duke@435: jni.cpp classLoader.hpp duke@435: jni.cpp compilationPolicy.hpp duke@435: jni.cpp defaultStream.hpp duke@435: jni.cpp dtrace.hpp duke@435: jni.cpp events.hpp duke@435: jni.cpp fieldDescriptor.hpp duke@435: jni.cpp fprofiler.hpp duke@435: jni.cpp gcLocker.inline.hpp duke@435: jni.cpp handles.inline.hpp duke@435: jni.cpp histogram.hpp duke@435: jni.cpp instanceKlass.hpp duke@435: jni.cpp instanceOop.hpp duke@435: jni.cpp interfaceSupport.hpp duke@435: jni.cpp java.hpp duke@435: jni.cpp javaCalls.hpp duke@435: jni.cpp javaClasses.hpp duke@435: jni.cpp jfieldIDWorkaround.hpp duke@435: jni.cpp jni.h duke@435: jni.cpp jniCheck.hpp duke@435: jni.cpp jniFastGetField.hpp duke@435: jni.cpp jniTypes_.hpp duke@435: jni.cpp jvm.h duke@435: jni.cpp jvm_misc.hpp duke@435: jni.cpp jvmtiExport.hpp duke@435: jni.cpp jvmtiThreadState.hpp duke@435: jni.cpp linkResolver.hpp duke@435: jni.cpp markOop.hpp duke@435: jni.cpp methodOop.hpp duke@435: jni.cpp objArrayKlass.hpp duke@435: jni.cpp objArrayOop.hpp duke@435: jni.cpp oop.inline.hpp duke@435: jni.cpp oopFactory.hpp duke@435: jni.cpp os_.inline.hpp duke@435: jni.cpp reflection.hpp duke@435: jni.cpp runtimeService.hpp duke@435: jni.cpp sharedRuntime.hpp duke@435: jni.cpp signature.hpp duke@435: jni.cpp symbolOop.hpp duke@435: jni.cpp symbolTable.hpp duke@435: jni.cpp systemDictionary.hpp duke@435: jni.cpp thread_.inline.hpp duke@435: jni.cpp typeArrayKlass.hpp duke@435: jni.cpp typeArrayOop.hpp duke@435: jni.cpp universe.inline.hpp duke@435: jni.cpp vmSymbols.hpp duke@435: jni.cpp vm_operations.hpp duke@435: duke@435: // jniCheck is jck optional, put cpp deps in includeDB_features duke@435: duke@435: jniFastGetField.cpp jniFastGetField.hpp duke@435: duke@435: jniFastGetField.hpp allocation.hpp duke@435: jniFastGetField.hpp jvm_misc.hpp duke@435: never@739: jniFastGetField_.cpp assembler_.inline.hpp duke@435: jniFastGetField_.cpp jniFastGetField.hpp duke@435: jniFastGetField_.cpp jvm_misc.hpp duke@435: jniFastGetField_.cpp resourceArea.hpp duke@435: jniFastGetField_.cpp safepoint.hpp duke@435: duke@435: jniHandles.cpp jniHandles.hpp duke@435: jniHandles.cpp mutexLocker.hpp duke@435: jniHandles.cpp oop.inline.hpp duke@435: jniHandles.cpp systemDictionary.hpp duke@435: jniHandles.cpp thread_.inline.hpp duke@435: duke@435: jniHandles.hpp handles.hpp duke@435: jniHandles.hpp top.hpp duke@435: duke@435: jniPeriodicChecker.cpp allocation.inline.hpp duke@435: jniPeriodicChecker.cpp jniPeriodicChecker.hpp duke@435: jniPeriodicChecker.cpp task.hpp duke@435: duke@435: jniTypes_.hpp allocation.hpp duke@435: jniTypes_.hpp jni.h duke@435: jniTypes_.hpp oop.hpp duke@435: duke@435: jni_.h generate_platform_dependent_include duke@435: duke@435: jvm.cpp arguments.hpp duke@435: jvm.cpp attachListener.hpp duke@435: jvm.cpp classLoader.hpp duke@435: jvm.cpp collectedHeap.inline.hpp duke@435: jvm.cpp copy.hpp duke@435: jvm.cpp defaultStream.hpp kamg@551: jvm.cpp dtraceJSDT.hpp duke@435: jvm.cpp events.hpp duke@435: jvm.cpp handles.inline.hpp duke@435: jvm.cpp histogram.hpp duke@435: jvm.cpp hpi.hpp duke@435: jvm.cpp hpi_.hpp duke@435: jvm.cpp init.hpp duke@435: jvm.cpp instanceKlass.hpp duke@435: jvm.cpp interfaceSupport.hpp duke@435: jvm.cpp java.hpp duke@435: jvm.cpp javaAssertions.hpp duke@435: jvm.cpp javaCalls.hpp duke@435: jvm.cpp javaClasses.hpp duke@435: jvm.cpp jfieldIDWorkaround.hpp duke@435: jvm.cpp jvm.h duke@435: jvm.cpp jvm_.h duke@435: jvm.cpp jvm_misc.hpp duke@435: jvm.cpp jvmtiExport.hpp duke@435: jvm.cpp jvmtiThreadState.hpp duke@435: jvm.cpp management.hpp duke@435: jvm.cpp nativeLookup.hpp duke@435: jvm.cpp objArrayKlass.hpp duke@435: jvm.cpp oopFactory.hpp duke@435: jvm.cpp os.hpp duke@435: jvm.cpp perfData.hpp duke@435: jvm.cpp privilegedStack.hpp duke@435: jvm.cpp reflection.hpp duke@435: jvm.cpp symbolTable.hpp duke@435: jvm.cpp systemDictionary.hpp duke@435: jvm.cpp threadService.hpp duke@435: jvm.cpp top.hpp duke@435: jvm.cpp universe.inline.hpp duke@435: jvm.cpp utf8.hpp duke@435: jvm.cpp vframe.hpp duke@435: jvm.cpp vmSymbols.hpp duke@435: jvm.cpp vm_operations.hpp duke@435: duke@435: jvm.h globalDefinitions.hpp duke@435: jvm.h jni.h duke@435: jvm.h jvm_.h duke@435: jvm.h reflectionCompat.hpp duke@435: duke@435: jvm_.cpp interfaceSupport.hpp duke@435: jvm_.cpp jvm.h duke@435: jvm_.cpp osThread.hpp duke@435: duke@435: jvm_misc.hpp handles.hpp duke@435: jvm_misc.hpp jni.h duke@435: duke@435: jvmtiExport.hpp allocation.hpp duke@435: jvmtiExport.hpp globalDefinitions.hpp duke@435: jvmtiExport.hpp growableArray.hpp duke@435: jvmtiExport.hpp handles.hpp duke@435: jvmtiExport.hpp iterator.hpp duke@435: jvmtiExport.hpp jvmti.h duke@435: jvmtiExport.hpp oop.hpp duke@435: jvmtiExport.hpp oopsHierarchy.hpp duke@435: duke@435: jvmtiThreadState.hpp allocation.hpp duke@435: jvmtiThreadState.hpp allocation.inline.hpp duke@435: jvmtiThreadState.hpp growableArray.hpp duke@435: jvmtiThreadState.hpp jvmti.h duke@435: jvmtiThreadState.hpp jvmtiEventController.hpp duke@435: jvmtiThreadState.hpp thread.hpp duke@435: duke@435: klass.cpp atomic.hpp duke@435: klass.cpp collectedHeap.inline.hpp duke@435: klass.cpp instanceKlass.hpp duke@435: klass.cpp klass.inline.hpp duke@435: klass.cpp klassOop.hpp duke@435: klass.cpp oop.inline.hpp duke@435: klass.cpp oop.inline2.hpp duke@435: klass.cpp oopFactory.hpp duke@435: klass.cpp resourceArea.hpp duke@435: klass.cpp systemDictionary.hpp duke@435: klass.cpp vmSymbols.hpp duke@435: duke@435: klass.hpp accessFlags.hpp duke@435: klass.hpp genOopClosures.hpp duke@435: klass.hpp iterator.hpp duke@435: klass.hpp klassOop.hpp duke@435: klass.hpp klassPS.hpp duke@435: klass.hpp memRegion.hpp duke@435: klass.hpp oop.hpp duke@435: klass.hpp specialized_oop_closures.hpp duke@435: duke@435: klass.inline.hpp klass.hpp duke@435: klass.inline.hpp markOop.hpp duke@435: duke@435: klassKlass.cpp collectedHeap.hpp duke@435: klassKlass.cpp collectedHeap.inline.hpp duke@435: klassKlass.cpp constantPoolKlass.hpp duke@435: klassKlass.cpp handles.inline.hpp duke@435: klassKlass.cpp instanceKlass.hpp duke@435: klassKlass.cpp instanceOop.hpp duke@435: klassKlass.cpp klassKlass.hpp duke@435: klassKlass.cpp klassOop.hpp coleenp@548: klassKlass.cpp markSweep.inline.hpp duke@435: klassKlass.cpp methodKlass.hpp duke@435: klassKlass.cpp objArrayKlass.hpp duke@435: klassKlass.cpp oop.inline.hpp duke@435: klassKlass.cpp oop.inline2.hpp duke@435: klassKlass.cpp oopFactory.hpp duke@435: klassKlass.cpp permGen.hpp duke@435: klassKlass.cpp symbolKlass.hpp duke@435: klassKlass.cpp symbolOop.hpp duke@435: klassKlass.cpp typeArrayKlass.hpp duke@435: duke@435: klassKlass.hpp klass.hpp duke@435: klassKlass.hpp klassOop.hpp duke@435: klassKlass.hpp oopFactory.hpp duke@435: duke@435: klassOop.cpp klassOop.hpp duke@435: duke@435: klassOop.hpp oop.hpp duke@435: duke@435: klassVtable.cpp arguments.hpp duke@435: klassVtable.cpp copy.hpp duke@435: klassVtable.cpp gcLocker.hpp duke@435: klassVtable.cpp handles.inline.hpp duke@435: klassVtable.cpp instanceKlass.hpp duke@435: klassVtable.cpp jvmtiRedefineClassesTrace.hpp duke@435: klassVtable.cpp klassOop.hpp duke@435: klassVtable.cpp klassVtable.hpp coleenp@548: klassVtable.cpp markSweep.inline.hpp duke@435: klassVtable.cpp methodOop.hpp duke@435: klassVtable.cpp objArrayOop.hpp duke@435: klassVtable.cpp oop.inline.hpp duke@435: klassVtable.cpp resourceArea.hpp duke@435: klassVtable.cpp systemDictionary.hpp duke@435: klassVtable.cpp universe.inline.hpp duke@435: klassVtable.cpp vmSymbols.hpp duke@435: duke@435: klassVtable.hpp allocation.hpp duke@435: klassVtable.hpp growableArray.hpp duke@435: klassVtable.hpp handles.hpp duke@435: klassVtable.hpp oopsHierarchy.hpp duke@435: duke@435: linkResolver.cpp bytecode.hpp duke@435: linkResolver.cpp collectedHeap.inline.hpp duke@435: linkResolver.cpp compilationPolicy.hpp duke@435: linkResolver.cpp compileBroker.hpp duke@435: linkResolver.cpp fieldDescriptor.hpp duke@435: linkResolver.cpp frame.inline.hpp duke@435: linkResolver.cpp handles.inline.hpp duke@435: linkResolver.cpp instanceKlass.hpp duke@435: linkResolver.cpp interpreterRuntime.hpp duke@435: linkResolver.cpp linkResolver.hpp duke@435: linkResolver.cpp nativeLookup.hpp duke@435: linkResolver.cpp objArrayOop.hpp duke@435: linkResolver.cpp reflection.hpp duke@435: linkResolver.cpp resourceArea.hpp duke@435: linkResolver.cpp signature.hpp duke@435: linkResolver.cpp systemDictionary.hpp duke@435: linkResolver.cpp thread_.inline.hpp duke@435: linkResolver.cpp universe.inline.hpp duke@435: linkResolver.cpp vmSymbols.hpp duke@435: linkResolver.cpp vmThread.hpp duke@435: duke@435: linkResolver.hpp methodOop.hpp duke@435: linkResolver.hpp top.hpp duke@435: duke@435: liveRange.hpp copy.hpp duke@435: duke@435: loaderConstraints.cpp handles.inline.hpp duke@435: loaderConstraints.cpp hashtable.inline.hpp duke@435: loaderConstraints.cpp loaderConstraints.hpp duke@435: loaderConstraints.cpp oop.inline.hpp duke@435: loaderConstraints.cpp resourceArea.hpp duke@435: loaderConstraints.cpp safepoint.hpp duke@435: duke@435: loaderConstraints.hpp dictionary.hpp duke@435: loaderConstraints.hpp hashtable.hpp duke@435: duke@435: location.cpp debugInfo.hpp duke@435: location.cpp location.hpp duke@435: duke@435: location.hpp allocation.hpp duke@435: location.hpp assembler.hpp duke@435: location.hpp vmreg.hpp duke@435: duke@435: lowMemoryDetector.cpp interfaceSupport.hpp duke@435: lowMemoryDetector.cpp java.hpp duke@435: lowMemoryDetector.cpp javaCalls.hpp duke@435: lowMemoryDetector.cpp lowMemoryDetector.hpp duke@435: lowMemoryDetector.cpp management.hpp duke@435: lowMemoryDetector.cpp mutex.hpp duke@435: lowMemoryDetector.cpp mutexLocker.hpp duke@435: lowMemoryDetector.cpp oop.inline.hpp duke@435: lowMemoryDetector.cpp systemDictionary.hpp duke@435: lowMemoryDetector.cpp vmSymbols.hpp duke@435: duke@435: lowMemoryDetector.hpp allocation.hpp duke@435: lowMemoryDetector.hpp memoryPool.hpp duke@435: lowMemoryDetector.hpp memoryService.hpp duke@435: duke@435: management.cpp arguments.hpp duke@435: management.cpp classLoadingService.hpp duke@435: management.cpp compileBroker.hpp duke@435: management.cpp handles.inline.hpp duke@435: management.cpp heapDumper.hpp duke@435: management.cpp interfaceSupport.hpp duke@435: management.cpp iterator.hpp duke@435: management.cpp javaCalls.hpp duke@435: management.cpp jniHandles.hpp duke@435: management.cpp klass.hpp duke@435: management.cpp klassOop.hpp duke@435: management.cpp lowMemoryDetector.hpp duke@435: management.cpp management.hpp duke@435: management.cpp memoryManager.hpp duke@435: management.cpp memoryPool.hpp duke@435: management.cpp memoryService.hpp duke@435: management.cpp objArrayKlass.hpp duke@435: management.cpp oop.inline.hpp duke@435: management.cpp oopFactory.hpp duke@435: management.cpp os.hpp duke@435: management.cpp resourceArea.hpp duke@435: management.cpp runtimeService.hpp duke@435: management.cpp systemDictionary.hpp duke@435: management.cpp threadService.hpp duke@435: duke@435: management.hpp allocation.hpp duke@435: management.hpp handles.hpp duke@435: management.hpp jmm.h duke@435: management.hpp timer.hpp duke@435: duke@435: markOop.cpp markOop.hpp duke@435: markOop.cpp thread_.inline.hpp duke@435: duke@435: markOop.hpp oop.hpp duke@435: duke@435: markOop.inline.hpp globals.hpp duke@435: markOop.inline.hpp klass.hpp duke@435: markOop.inline.hpp klassOop.hpp duke@435: markOop.inline.hpp markOop.hpp duke@435: duke@435: markSweep.cpp compileBroker.hpp coleenp@548: coleenp@548: markSweep.hpp collectedHeap.hpp coleenp@548: duke@435: memRegion.cpp globals.hpp duke@435: memRegion.cpp memRegion.hpp duke@435: duke@435: memRegion.hpp allocation.hpp duke@435: memRegion.hpp debug.hpp duke@435: memRegion.hpp globalDefinitions.hpp duke@435: duke@435: memoryManager.cpp systemDictionary.hpp duke@435: memoryManager.cpp vmSymbols.hpp duke@435: memoryManager.cpp dtrace.hpp duke@435: memoryManager.cpp handles.inline.hpp duke@435: memoryManager.cpp javaCalls.hpp duke@435: memoryManager.cpp lowMemoryDetector.hpp duke@435: memoryManager.cpp management.hpp duke@435: memoryManager.cpp memoryManager.hpp duke@435: memoryManager.cpp memoryPool.hpp duke@435: memoryManager.cpp memoryService.hpp duke@435: memoryManager.cpp oop.inline.hpp duke@435: duke@435: memoryManager.hpp allocation.hpp duke@435: memoryManager.hpp memoryUsage.hpp duke@435: memoryManager.hpp timer.hpp duke@435: duke@435: memoryPool.cpp systemDictionary.hpp duke@435: memoryPool.cpp vmSymbols.hpp duke@435: memoryPool.cpp handles.inline.hpp duke@435: memoryPool.cpp javaCalls.hpp duke@435: memoryPool.cpp lowMemoryDetector.hpp duke@435: memoryPool.cpp management.hpp duke@435: memoryPool.cpp memoryManager.hpp duke@435: memoryPool.cpp memoryPool.hpp duke@435: memoryPool.cpp oop.inline.hpp duke@435: duke@435: memoryPool.hpp defNewGeneration.hpp duke@435: memoryPool.hpp heap.hpp duke@435: memoryPool.hpp memoryUsage.hpp duke@435: memoryPool.hpp mutableSpace.hpp duke@435: memoryPool.hpp space.hpp duke@435: duke@435: memoryService.cpp classLoadingService.hpp duke@435: memoryService.cpp collectorPolicy.hpp duke@435: memoryService.cpp defNewGeneration.hpp duke@435: memoryService.cpp genCollectedHeap.hpp duke@435: memoryService.cpp generation.hpp duke@435: memoryService.cpp generationSpec.hpp duke@435: memoryService.cpp growableArray.hpp duke@435: memoryService.cpp heap.hpp duke@435: memoryService.cpp javaCalls.hpp duke@435: memoryService.cpp lowMemoryDetector.hpp duke@435: memoryService.cpp management.hpp duke@435: memoryService.cpp memRegion.hpp duke@435: memoryService.cpp memoryManager.hpp duke@435: memoryService.cpp memoryPool.hpp duke@435: memoryService.cpp memoryService.hpp duke@435: memoryService.cpp mutableSpace.hpp duke@435: memoryService.cpp oop.inline.hpp duke@435: memoryService.cpp permGen.hpp duke@435: memoryService.cpp systemDictionary.hpp duke@435: memoryService.cpp tenuredGeneration.hpp duke@435: memoryService.cpp vmSymbols.hpp duke@435: duke@435: memoryService.hpp allocation.hpp duke@435: memoryService.hpp generation.hpp duke@435: memoryService.hpp handles.hpp duke@435: memoryService.hpp memoryUsage.hpp duke@435: duke@435: memoryUsage.hpp globalDefinitions.hpp duke@435: duke@435: memprofiler.cpp codeCache.hpp duke@435: memprofiler.cpp collectedHeap.inline.hpp duke@435: memprofiler.cpp generation.hpp duke@435: memprofiler.cpp handles.inline.hpp duke@435: memprofiler.cpp jniHandles.hpp duke@435: memprofiler.cpp memprofiler.hpp duke@435: memprofiler.cpp mutexLocker.hpp duke@435: memprofiler.cpp oopMapCache.hpp duke@435: memprofiler.cpp os.hpp duke@435: memprofiler.cpp permGen.hpp duke@435: memprofiler.cpp resourceArea.hpp duke@435: memprofiler.cpp systemDictionary.hpp duke@435: memprofiler.cpp task.hpp duke@435: memprofiler.cpp thread_.inline.hpp duke@435: memprofiler.cpp vmThread.hpp duke@435: duke@435: methodComparator.cpp globalDefinitions.hpp duke@435: methodComparator.cpp handles.inline.hpp duke@435: methodComparator.cpp jvmtiRedefineClassesTrace.hpp duke@435: methodComparator.cpp methodComparator.hpp duke@435: methodComparator.cpp oop.inline.hpp duke@435: methodComparator.cpp symbolOop.hpp duke@435: duke@435: methodComparator.hpp bytecodeStream.hpp duke@435: methodComparator.hpp constantPoolOop.hpp duke@435: methodComparator.hpp methodOop.hpp duke@435: duke@435: methodDataKlass.cpp collectedHeap.inline.hpp duke@435: methodDataKlass.cpp gcLocker.hpp duke@435: methodDataKlass.cpp handles.inline.hpp duke@435: methodDataKlass.cpp klassOop.hpp coleenp@548: methodDataKlass.cpp markSweep.inline.hpp duke@435: methodDataKlass.cpp methodDataKlass.hpp duke@435: methodDataKlass.cpp methodDataOop.hpp duke@435: methodDataKlass.cpp oop.inline.hpp duke@435: methodDataKlass.cpp oop.inline2.hpp duke@435: methodDataKlass.cpp resourceArea.hpp duke@435: methodDataKlass.cpp universe.inline.hpp duke@435: duke@435: methodDataKlass.hpp klass.hpp duke@435: duke@435: methodDataOop.cpp bytecode.hpp duke@435: methodDataOop.cpp bytecodeStream.hpp duke@435: methodDataOop.cpp deoptimization.hpp duke@435: methodDataOop.cpp handles.inline.hpp duke@435: methodDataOop.cpp linkResolver.hpp duke@435: methodDataOop.cpp markSweep.inline.hpp duke@435: methodDataOop.cpp methodDataOop.hpp duke@435: methodDataOop.cpp oop.inline.hpp duke@435: methodDataOop.cpp systemDictionary.hpp duke@435: duke@435: methodDataOop.hpp bytecodes.hpp duke@435: methodDataOop.hpp oop.hpp duke@435: methodDataOop.hpp orderAccess.hpp duke@435: methodDataOop.hpp universe.hpp duke@435: duke@435: methodKlass.cpp collectedHeap.inline.hpp duke@435: methodKlass.cpp constMethodKlass.hpp duke@435: methodKlass.cpp gcLocker.hpp duke@435: methodKlass.cpp handles.inline.hpp duke@435: methodKlass.cpp interpreter.hpp duke@435: methodKlass.cpp javaClasses.hpp duke@435: methodKlass.cpp klassOop.hpp coleenp@548: methodKlass.cpp markSweep.inline.hpp duke@435: methodKlass.cpp methodDataOop.hpp duke@435: methodKlass.cpp methodKlass.hpp duke@435: methodKlass.cpp oop.inline.hpp duke@435: methodKlass.cpp oop.inline2.hpp duke@435: methodKlass.cpp resourceArea.hpp duke@435: methodKlass.cpp symbolOop.hpp duke@435: methodKlass.cpp universe.inline.hpp duke@435: duke@435: methodKlass.hpp klass.hpp duke@435: methodKlass.hpp klassOop.hpp duke@435: methodKlass.hpp methodOop.hpp duke@435: duke@435: methodLiveness.cpp allocation.inline.hpp ysr@777: methodLiveness.cpp bitMap.inline.hpp duke@435: methodLiveness.cpp bytecode.hpp duke@435: methodLiveness.cpp bytecodes.hpp duke@435: methodLiveness.cpp ciMethod.hpp duke@435: methodLiveness.cpp ciMethodBlocks.hpp duke@435: methodLiveness.cpp ciStreams.hpp duke@435: methodLiveness.cpp methodLiveness.hpp duke@435: duke@435: methodLiveness.hpp bitMap.hpp duke@435: methodLiveness.hpp growableArray.hpp duke@435: duke@435: methodOop.cpp arguments.hpp duke@435: methodOop.cpp bytecodeStream.hpp duke@435: methodOop.cpp bytecodeTracer.hpp duke@435: methodOop.cpp bytecodes.hpp duke@435: methodOop.cpp collectedHeap.inline.hpp duke@435: methodOop.cpp debugInfoRec.hpp duke@435: methodOop.cpp frame.inline.hpp duke@435: methodOop.cpp gcLocker.hpp duke@435: methodOop.cpp gcTaskThread.hpp duke@435: methodOop.cpp generation.hpp duke@435: methodOop.cpp handles.inline.hpp duke@435: methodOop.cpp interpreter.hpp duke@435: methodOop.cpp jvmtiExport.hpp duke@435: methodOop.cpp klassOop.hpp duke@435: methodOop.cpp methodDataOop.hpp duke@435: methodOop.cpp methodOop.hpp duke@435: methodOop.cpp nativeLookup.hpp duke@435: methodOop.cpp oop.inline.hpp duke@435: methodOop.cpp oopFactory.hpp duke@435: methodOop.cpp oopMapCache.hpp duke@435: methodOop.cpp relocator.hpp duke@435: methodOop.cpp sharedRuntime.hpp duke@435: methodOop.cpp signature.hpp duke@435: methodOop.cpp symbolOop.hpp duke@435: methodOop.cpp systemDictionary.hpp duke@435: methodOop.cpp xmlstream.hpp duke@435: duke@435: methodOop.hpp accessFlags.hpp duke@435: methodOop.hpp compressedStream.hpp duke@435: methodOop.hpp constMethodOop.hpp duke@435: methodOop.hpp constantPoolOop.hpp duke@435: methodOop.hpp growableArray.hpp duke@435: methodOop.hpp instanceKlass.hpp duke@435: methodOop.hpp invocationCounter.hpp duke@435: methodOop.hpp oop.hpp duke@435: methodOop.hpp oopMap.hpp duke@435: methodOop.hpp typeArrayOop.hpp duke@435: methodOop.hpp vmSymbols.hpp duke@435: duke@435: modRefBarrierSet.hpp barrierSet.hpp duke@435: duke@435: monitorChunk.cpp allocation.inline.hpp duke@435: monitorChunk.cpp monitorChunk.hpp duke@435: monitorChunk.cpp oop.inline.hpp duke@435: duke@435: monitorChunk.hpp synchronizer.hpp duke@435: duke@435: mutex.cpp events.hpp duke@435: mutex.cpp mutex.hpp duke@435: mutex.cpp mutex_.inline.hpp duke@435: mutex.cpp osThread.hpp duke@435: mutex.cpp thread_.inline.hpp duke@435: duke@435: mutex.hpp allocation.hpp duke@435: mutex.hpp histogram.hpp duke@435: mutex.hpp os.hpp duke@435: duke@435: mutexLocker.cpp mutexLocker.hpp duke@435: mutexLocker.cpp safepoint.hpp duke@435: mutexLocker.cpp threadLocalStorage.hpp duke@435: mutexLocker.cpp thread_.inline.hpp duke@435: mutexLocker.cpp vmThread.hpp duke@435: duke@435: mutexLocker.hpp allocation.hpp duke@435: mutexLocker.hpp mutex.hpp duke@435: mutexLocker.hpp os_.inline.hpp duke@435: duke@435: mutex_.cpp events.hpp duke@435: mutex_.cpp interfaceSupport.hpp duke@435: mutex_.cpp mutex.hpp duke@435: mutex_.cpp mutex_.inline.hpp duke@435: mutex_.cpp thread_.inline.hpp duke@435: duke@435: mutex_.inline.hpp interfaceSupport.hpp duke@435: mutex_.inline.hpp os_.inline.hpp duke@435: mutex_.inline.hpp thread_.inline.hpp duke@435: never@739: nativeInst_.cpp assembler_.inline.hpp duke@435: nativeInst_.cpp handles.hpp duke@435: nativeInst_.cpp nativeInst_.hpp duke@435: nativeInst_.cpp oop.hpp duke@435: nativeInst_.cpp ostream.hpp duke@435: nativeInst_.cpp resourceArea.hpp duke@435: nativeInst_.cpp sharedRuntime.hpp duke@435: nativeInst_.cpp stubRoutines.hpp duke@435: duke@435: nativeInst_.hpp allocation.hpp duke@435: nativeInst_.hpp assembler.hpp duke@435: nativeInst_.hpp icache.hpp duke@435: nativeInst_.hpp os.hpp duke@435: nativeInst_.hpp top.hpp duke@435: duke@435: nativeLookup.cpp arguments.hpp duke@435: nativeLookup.cpp handles.inline.hpp duke@435: nativeLookup.cpp hpi.hpp duke@435: nativeLookup.cpp instanceKlass.hpp duke@435: nativeLookup.cpp javaCalls.hpp duke@435: nativeLookup.cpp javaClasses.hpp duke@435: nativeLookup.cpp jvm_misc.hpp duke@435: nativeLookup.cpp methodOop.hpp duke@435: nativeLookup.cpp nativeLookup.hpp duke@435: nativeLookup.cpp oop.inline.hpp duke@435: nativeLookup.cpp oopFactory.hpp duke@435: nativeLookup.cpp os_.inline.hpp duke@435: nativeLookup.cpp resourceArea.hpp duke@435: nativeLookup.cpp sharedRuntime.hpp duke@435: nativeLookup.cpp signature.hpp duke@435: nativeLookup.cpp symbolOop.hpp duke@435: nativeLookup.cpp systemDictionary.hpp duke@435: nativeLookup.cpp universe.inline.hpp duke@435: nativeLookup.cpp vmSymbols.hpp duke@435: duke@435: nativeLookup.hpp handles.hpp duke@435: nativeLookup.hpp top.hpp duke@435: duke@435: nmethod.cpp abstractCompiler.hpp duke@435: nmethod.cpp bytecode.hpp duke@435: nmethod.cpp codeCache.hpp duke@435: nmethod.cpp compileLog.hpp duke@435: nmethod.cpp compiledIC.hpp duke@435: nmethod.cpp compilerOracle.hpp jrose@535: nmethod.cpp disassembler.hpp duke@435: nmethod.cpp dtrace.hpp duke@435: nmethod.cpp events.hpp duke@435: nmethod.cpp jvmtiRedefineClassesTrace.hpp duke@435: nmethod.cpp methodDataOop.hpp duke@435: nmethod.cpp nmethod.hpp duke@435: nmethod.cpp scopeDesc.hpp duke@435: nmethod.cpp sharedRuntime.hpp duke@435: nmethod.cpp sweeper.hpp duke@435: nmethod.cpp vtune.hpp duke@435: nmethod.cpp xmlstream.hpp duke@435: duke@435: nmethod.hpp codeBlob.hpp duke@435: nmethod.hpp pcDesc.hpp duke@435: ysr@777: numberSeq.cpp debug.hpp ysr@777: numberSeq.cpp numberSeq.hpp ysr@777: numberSeq.cpp globalDefinitions.hpp ysr@777: numberSeq.cpp allocation.inline.hpp ysr@777: duke@435: objArrayKlass.cpp collectedHeap.inline.hpp duke@435: objArrayKlass.cpp copy.hpp duke@435: objArrayKlass.cpp genOopClosures.inline.hpp duke@435: objArrayKlass.cpp handles.inline.hpp duke@435: objArrayKlass.cpp instanceKlass.hpp duke@435: objArrayKlass.cpp mutexLocker.hpp duke@435: objArrayKlass.cpp objArrayKlass.hpp duke@435: objArrayKlass.cpp objArrayKlassKlass.hpp duke@435: objArrayKlass.cpp objArrayOop.hpp duke@435: objArrayKlass.cpp oop.inline.hpp duke@435: objArrayKlass.cpp oop.inline2.hpp duke@435: objArrayKlass.cpp resourceArea.hpp duke@435: objArrayKlass.cpp symbolOop.hpp duke@435: objArrayKlass.cpp systemDictionary.hpp duke@435: objArrayKlass.cpp universe.inline.hpp duke@435: objArrayKlass.cpp vmSymbols.hpp duke@435: coleenp@548: duke@435: objArrayKlass.hpp arrayKlass.hpp duke@435: objArrayKlass.hpp instanceKlass.hpp duke@435: objArrayKlass.hpp specialized_oop_closures.hpp duke@435: duke@435: objArrayKlassKlass.cpp collectedHeap.inline.hpp duke@435: objArrayKlassKlass.cpp instanceKlass.hpp duke@435: objArrayKlassKlass.cpp javaClasses.hpp coleenp@548: objArrayKlassKlass.cpp markSweep.inline.hpp duke@435: objArrayKlassKlass.cpp objArrayKlassKlass.hpp duke@435: objArrayKlassKlass.cpp oop.inline.hpp duke@435: objArrayKlassKlass.cpp oop.inline2.hpp duke@435: objArrayKlassKlass.cpp systemDictionary.hpp duke@435: duke@435: objArrayKlassKlass.hpp arrayKlassKlass.hpp duke@435: objArrayKlassKlass.hpp objArrayKlass.hpp duke@435: coleenp@548: objArrayOop.cpp objArrayKlass.hpp duke@435: objArrayOop.cpp objArrayOop.hpp duke@435: objArrayOop.cpp oop.inline.hpp duke@435: duke@435: objArrayOop.hpp arrayOop.hpp duke@435: duke@435: objectMonitor.hpp os.hpp duke@435: duke@435: objectMonitor_.cpp dtrace.hpp duke@435: objectMonitor_.cpp interfaceSupport.hpp duke@435: objectMonitor_.cpp objectMonitor.hpp duke@435: objectMonitor_.cpp objectMonitor.inline.hpp duke@435: objectMonitor_.cpp oop.inline.hpp duke@435: objectMonitor_.cpp osThread.hpp duke@435: objectMonitor_.cpp os_.inline.hpp duke@435: objectMonitor_.cpp threadService.hpp duke@435: objectMonitor_.cpp thread_.inline.hpp duke@435: objectMonitor_.cpp vmSymbols.hpp duke@435: duke@435: objectMonitor_.hpp generate_platform_dependent_include duke@435: objectMonitor_.hpp os_.inline.hpp duke@435: objectMonitor_.hpp thread_.inline.hpp duke@435: objectMonitor_.hpp top.hpp duke@435: duke@435: objectMonitor_.inline.hpp generate_platform_dependent_include duke@435: duke@435: oop.cpp copy.hpp duke@435: oop.cpp handles.inline.hpp duke@435: oop.cpp javaClasses.hpp duke@435: oop.cpp oop.inline.hpp duke@435: oop.cpp thread_.inline.hpp duke@435: duke@435: oop.hpp iterator.hpp duke@435: oop.hpp memRegion.hpp duke@435: oop.hpp specialized_oop_closures.hpp duke@435: oop.hpp top.hpp duke@435: duke@435: oop.inline.hpp ageTable.hpp duke@435: oop.inline.hpp arrayKlass.hpp duke@435: oop.inline.hpp arrayOop.hpp duke@435: oop.inline.hpp atomic.hpp duke@435: oop.inline.hpp barrierSet.inline.hpp duke@435: oop.inline.hpp cardTableModRefBS.hpp duke@435: oop.inline.hpp collectedHeap.inline.hpp duke@435: oop.inline.hpp compactingPermGenGen.hpp duke@435: oop.inline.hpp genCollectedHeap.hpp duke@435: oop.inline.hpp generation.hpp duke@435: oop.inline.hpp klass.hpp duke@435: oop.inline.hpp klassOop.hpp duke@435: oop.inline.hpp markOop.inline.hpp duke@435: oop.inline.hpp markSweep.inline.hpp duke@435: oop.inline.hpp oop.hpp duke@435: oop.inline.hpp os.hpp duke@435: oop.inline.hpp permGen.hpp duke@435: oop.inline.hpp specialized_oop_closures.hpp duke@435: duke@435: oop.inline2.hpp collectedHeap.hpp duke@435: oop.inline2.hpp generation.hpp duke@435: oop.inline2.hpp oop.hpp duke@435: oop.inline2.hpp permGen.hpp duke@435: oop.inline2.hpp universe.hpp duke@435: duke@435: oopFactory.cpp collectedHeap.inline.hpp duke@435: oopFactory.cpp compiledICHolderKlass.hpp duke@435: oopFactory.cpp constMethodKlass.hpp duke@435: oopFactory.cpp constantPoolKlass.hpp duke@435: oopFactory.cpp cpCacheKlass.hpp duke@435: oopFactory.cpp instanceKlass.hpp duke@435: oopFactory.cpp instanceKlassKlass.hpp duke@435: oopFactory.cpp instanceOop.hpp duke@435: oopFactory.cpp javaClasses.hpp duke@435: oopFactory.cpp klassKlass.hpp duke@435: oopFactory.cpp klassOop.hpp duke@435: oopFactory.cpp methodDataKlass.hpp duke@435: oopFactory.cpp methodKlass.hpp duke@435: oopFactory.cpp objArrayOop.hpp duke@435: oopFactory.cpp oop.inline.hpp duke@435: oopFactory.cpp oopFactory.hpp duke@435: oopFactory.cpp resourceArea.hpp duke@435: oopFactory.cpp symbolTable.hpp duke@435: oopFactory.cpp systemDictionary.hpp duke@435: oopFactory.cpp universe.inline.hpp duke@435: oopFactory.cpp vmSymbols.hpp duke@435: duke@435: oopFactory.hpp growableArray.hpp duke@435: oopFactory.hpp klassOop.hpp duke@435: oopFactory.hpp objArrayKlass.hpp duke@435: oopFactory.hpp oop.hpp duke@435: oopFactory.hpp symbolTable.hpp duke@435: oopFactory.hpp systemDictionary.hpp duke@435: oopFactory.hpp typeArrayKlass.hpp duke@435: oopFactory.hpp universe.hpp duke@435: duke@435: oopMap.cpp allocation.inline.hpp duke@435: oopMap.cpp codeBlob.hpp duke@435: oopMap.cpp codeCache.hpp duke@435: oopMap.cpp collectedHeap.hpp duke@435: oopMap.cpp frame.inline.hpp duke@435: oopMap.cpp nmethod.hpp duke@435: oopMap.cpp oopMap.hpp duke@435: oopMap.cpp resourceArea.hpp duke@435: oopMap.cpp scopeDesc.hpp duke@435: oopMap.cpp signature.hpp duke@435: duke@435: oopMap.hpp allocation.hpp apetrusenko@574: oopMapCache.cpp jvmtiRedefineClassesTrace.hpp duke@435: oopMap.hpp compressedStream.hpp duke@435: oopMap.hpp growableArray.hpp duke@435: oopMap.hpp vmreg.hpp duke@435: duke@435: oopMapCache.cpp allocation.inline.hpp apetrusenko@574: oopMapCache.cpp jvmtiRedefineClassesTrace.hpp duke@435: oopMapCache.cpp handles.inline.hpp duke@435: oopMapCache.cpp oop.inline.hpp duke@435: oopMapCache.cpp oopMapCache.hpp duke@435: oopMapCache.cpp resourceArea.hpp duke@435: oopMapCache.cpp signature.hpp duke@435: duke@435: oopMapCache.hpp generateOopMap.hpp duke@435: duke@435: oopRecorder.cpp allocation.inline.hpp duke@435: oopRecorder.cpp oop.inline.hpp duke@435: oopRecorder.cpp oopRecorder.hpp duke@435: duke@435: oopRecorder.hpp growableArray.hpp duke@435: oopRecorder.hpp handles.hpp duke@435: duke@435: oopsHierarchy.cpp collectedHeap.hpp duke@435: oopsHierarchy.cpp collectedHeap.inline.hpp duke@435: oopsHierarchy.cpp globalDefinitions.hpp duke@435: oopsHierarchy.cpp oopsHierarchy.hpp duke@435: oopsHierarchy.cpp thread.hpp duke@435: oopsHierarchy.cpp thread_.inline.hpp duke@435: duke@435: orderAccess.cpp orderAccess.hpp duke@435: duke@435: orderAccess.hpp allocation.hpp duke@435: orderAccess.hpp os.hpp duke@435: duke@435: orderAccess_.inline.hpp orderAccess.hpp duke@435: duke@435: os.cpp allocation.inline.hpp duke@435: os.cpp arguments.hpp duke@435: os.cpp attachListener.hpp duke@435: os.cpp classLoader.hpp duke@435: os.cpp defaultStream.hpp duke@435: os.cpp events.hpp duke@435: os.cpp frame.inline.hpp duke@435: os.cpp hpi.hpp duke@435: os.cpp interfaceSupport.hpp duke@435: os.cpp interpreter.hpp duke@435: os.cpp java.hpp duke@435: os.cpp javaCalls.hpp duke@435: os.cpp javaClasses.hpp duke@435: os.cpp jvm.h duke@435: os.cpp jvm_misc.hpp duke@435: os.cpp mutexLocker.hpp duke@435: os.cpp oop.inline.hpp duke@435: os.cpp os.hpp duke@435: os.cpp os_.inline.hpp duke@435: os.cpp stubRoutines.hpp duke@435: os.cpp systemDictionary.hpp duke@435: os.cpp threadService.hpp duke@435: os.cpp thread_.inline.hpp duke@435: os.cpp vmGCOperations.hpp duke@435: os.cpp vmSymbols.hpp duke@435: os.cpp vtableStubs.hpp duke@435: duke@435: os.hpp atomic.hpp duke@435: os.hpp extendedPC.hpp duke@435: os.hpp handles.hpp duke@435: os.hpp jvmti.h duke@435: os.hpp top.hpp duke@435: duke@435: os_.cpp allocation.inline.hpp duke@435: os_.cpp arguments.hpp never@739: os_.cpp assembler_.inline.hpp duke@435: os_.cpp classLoader.hpp duke@435: os_.cpp events.hpp duke@435: os_.cpp extendedPC.hpp duke@435: os_.cpp frame.inline.hpp duke@435: os_.cpp hpi.hpp duke@435: os_.cpp icBuffer.hpp duke@435: os_.cpp interfaceSupport.hpp duke@435: os_.cpp interpreter.hpp duke@435: os_.cpp java.hpp duke@435: os_.cpp javaCalls.hpp duke@435: os_.cpp jniFastGetField.hpp duke@435: os_.cpp jvm.h duke@435: os_.cpp jvm_.h duke@435: os_.cpp jvm_misc.hpp duke@435: os_.cpp mutexLocker.hpp duke@435: os_.cpp mutex_.inline.hpp duke@435: os_.cpp nativeInst_.hpp duke@435: os_.cpp no_precompiled_headers duke@435: os_.cpp osThread.hpp duke@435: os_.cpp os_share_.hpp duke@435: os_.cpp sharedRuntime.hpp duke@435: os_.cpp stubRoutines.hpp duke@435: os_.cpp systemDictionary.hpp duke@435: os_.cpp thread_.inline.hpp duke@435: os_.cpp timer.hpp duke@435: os_.cpp vmError.hpp duke@435: os_.cpp vmSymbols.hpp duke@435: os_.cpp vtableStubs.hpp duke@435: duke@435: os_.hpp generate_platform_dependent_include duke@435: duke@435: os_.cpp allocation.inline.hpp duke@435: os_.cpp arguments.hpp never@739: os_.cpp assembler_.inline.hpp duke@435: os_.cpp attachListener.hpp duke@435: os_.cpp classLoader.hpp duke@435: os_.cpp compileBroker.hpp duke@435: os_.cpp defaultStream.hpp duke@435: os_.cpp events.hpp duke@435: os_.cpp extendedPC.hpp duke@435: os_.cpp filemap.hpp duke@435: os_.cpp globals.hpp iveresov@576: os_.cpp growableArray.hpp duke@435: os_.cpp hpi.hpp duke@435: os_.cpp icBuffer.hpp duke@435: os_.cpp interfaceSupport.hpp duke@435: os_.cpp interpreter.hpp duke@435: os_.cpp java.hpp duke@435: os_.cpp javaCalls.hpp duke@435: os_.cpp jniFastGetField.hpp duke@435: os_.cpp jvm.h duke@435: os_.cpp jvm_.h duke@435: os_.cpp jvm_misc.hpp duke@435: os_.cpp mutexLocker.hpp duke@435: os_.cpp mutex_.inline.hpp duke@435: os_.cpp nativeInst_.hpp duke@435: os_.cpp no_precompiled_headers duke@435: os_.cpp objectMonitor.hpp duke@435: os_.cpp objectMonitor.inline.hpp duke@435: os_.cpp oop.inline.hpp duke@435: os_.cpp osThread.hpp duke@435: os_.cpp os_share_.hpp duke@435: os_.cpp perfMemory.hpp duke@435: os_.cpp runtimeService.hpp duke@435: os_.cpp sharedRuntime.hpp duke@435: os_.cpp statSampler.hpp duke@435: os_.cpp stubRoutines.hpp duke@435: os_.cpp systemDictionary.hpp duke@435: os_.cpp threadCritical.hpp duke@435: os_.cpp thread_.inline.hpp duke@435: os_.cpp timer.hpp duke@435: os_.cpp vmError.hpp duke@435: os_.cpp vmSymbols.hpp duke@435: os_.cpp vtableStubs.hpp duke@435: duke@435: os_.hpp generate_platform_dependent_include duke@435: duke@435: os_.inline.hpp atomic.hpp duke@435: os_.inline.hpp atomic_.inline.hpp duke@435: os_.inline.hpp orderAccess_.inline.hpp duke@435: os_.inline.hpp os.hpp duke@435: duke@435: osThread.cpp oop.inline.hpp duke@435: osThread.cpp osThread.hpp duke@435: duke@435: osThread.hpp frame.hpp duke@435: osThread.hpp handles.hpp duke@435: osThread.hpp hpi.hpp duke@435: osThread.hpp javaFrameAnchor.hpp duke@435: osThread.hpp objectMonitor.hpp duke@435: osThread.hpp top.hpp duke@435: never@739: osThread_.cpp assembler_.inline.hpp duke@435: osThread_.cpp atomic.hpp duke@435: osThread_.cpp handles.inline.hpp duke@435: osThread_.cpp mutexLocker.hpp duke@435: osThread_.cpp no_precompiled_headers duke@435: osThread_.cpp os.hpp duke@435: osThread_.cpp osThread.hpp duke@435: osThread_.cpp safepoint.hpp duke@435: osThread_.cpp vmThread.hpp duke@435: duke@435: osThread_.hpp generate_platform_dependent_include duke@435: duke@435: ostream.cpp arguments.hpp duke@435: ostream.cpp compileLog.hpp duke@435: ostream.cpp defaultStream.hpp duke@435: ostream.cpp oop.inline.hpp duke@435: ostream.cpp os_.inline.hpp duke@435: ostream.cpp hpi.hpp duke@435: ostream.cpp hpi_.hpp duke@435: ostream.cpp ostream.hpp duke@435: ostream.cpp top.hpp duke@435: ostream.cpp xmlstream.hpp duke@435: duke@435: ostream.hpp allocation.hpp duke@435: ostream.hpp timer.hpp duke@435: duke@435: pcDesc.cpp debugInfoRec.hpp duke@435: pcDesc.cpp nmethod.hpp duke@435: pcDesc.cpp pcDesc.hpp duke@435: pcDesc.cpp resourceArea.hpp duke@435: pcDesc.cpp scopeDesc.hpp duke@435: duke@435: pcDesc.hpp allocation.hpp duke@435: duke@435: perf.cpp allocation.inline.hpp duke@435: perf.cpp interfaceSupport.hpp duke@435: perf.cpp jni.h duke@435: perf.cpp jvm.h duke@435: perf.cpp oop.inline.hpp duke@435: perf.cpp perfData.hpp duke@435: perf.cpp perfMemory.hpp duke@435: perf.cpp resourceArea.hpp duke@435: perf.cpp vmSymbols.hpp duke@435: duke@435: perfData.cpp exceptions.hpp duke@435: perfData.cpp globalDefinitions.hpp duke@435: perfData.cpp handles.inline.hpp duke@435: perfData.cpp java.hpp duke@435: perfData.cpp mutex.hpp duke@435: perfData.cpp mutexLocker.hpp duke@435: perfData.cpp oop.inline.hpp duke@435: perfData.cpp os.hpp duke@435: perfData.cpp perfData.hpp duke@435: perfData.cpp vmSymbols.hpp duke@435: duke@435: perfData.hpp allocation.inline.hpp duke@435: perfData.hpp growableArray.hpp duke@435: perfData.hpp perfMemory.hpp duke@435: perfData.hpp timer.hpp duke@435: duke@435: perfMemory.cpp allocation.inline.hpp duke@435: perfMemory.cpp arguments.hpp duke@435: perfMemory.cpp globalDefinitions.hpp duke@435: perfMemory.cpp java.hpp duke@435: perfMemory.cpp mutex.hpp duke@435: perfMemory.cpp mutexLocker.hpp duke@435: perfMemory.cpp os.hpp duke@435: perfMemory.cpp perfData.hpp duke@435: perfMemory.cpp perfMemory.hpp duke@435: perfMemory.cpp statSampler.hpp duke@435: duke@435: perfMemory.hpp exceptions.hpp duke@435: duke@435: perfMemory_.cpp allocation.inline.hpp duke@435: perfMemory_.cpp exceptions.hpp duke@435: perfMemory_.cpp handles.inline.hpp duke@435: perfMemory_.cpp oop.inline.hpp duke@435: perfMemory_.cpp os_.inline.hpp duke@435: perfMemory_.cpp perfMemory.hpp duke@435: perfMemory_.cpp resourceArea.hpp duke@435: perfMemory_.cpp vmSymbols.hpp duke@435: duke@435: permGen.cpp blockOffsetTable.hpp duke@435: permGen.cpp cSpaceCounters.hpp duke@435: permGen.cpp collectedHeap.inline.hpp duke@435: permGen.cpp compactPermGen.hpp duke@435: permGen.cpp genCollectedHeap.hpp duke@435: permGen.cpp generation.inline.hpp duke@435: permGen.cpp java.hpp duke@435: permGen.cpp oop.inline.hpp duke@435: permGen.cpp permGen.hpp duke@435: permGen.cpp universe.hpp apetrusenko@574: permGen.cpp gcLocker.hpp apetrusenko@574: permGen.cpp gcLocker.inline.hpp apetrusenko@574: permGen.cpp vmGCOperations.hpp apetrusenko@574: permGen.cpp vmThread.hpp duke@435: duke@435: permGen.hpp gcCause.hpp duke@435: permGen.hpp generation.hpp duke@435: permGen.hpp handles.hpp duke@435: permGen.hpp iterator.hpp duke@435: permGen.hpp virtualspace.hpp duke@435: duke@435: placeholders.cpp fieldType.hpp duke@435: placeholders.cpp hashtable.inline.hpp duke@435: placeholders.cpp oop.inline.hpp duke@435: placeholders.cpp placeholders.hpp duke@435: placeholders.cpp systemDictionary.hpp duke@435: duke@435: placeholders.hpp hashtable.hpp duke@435: duke@435: prefetch.hpp allocation.hpp duke@435: duke@435: prefetch_.inline.hpp prefetch.hpp duke@435: duke@435: preserveException.cpp handles.inline.hpp duke@435: preserveException.cpp preserveException.hpp duke@435: duke@435: preserveException.hpp handles.hpp duke@435: preserveException.hpp thread_.inline.hpp duke@435: duke@435: privilegedStack.cpp allocation.inline.hpp duke@435: privilegedStack.cpp instanceKlass.hpp duke@435: privilegedStack.cpp methodOop.hpp duke@435: privilegedStack.cpp oop.inline.hpp duke@435: privilegedStack.cpp privilegedStack.hpp duke@435: privilegedStack.cpp vframe.hpp duke@435: duke@435: privilegedStack.hpp allocation.hpp duke@435: privilegedStack.hpp growableArray.hpp duke@435: privilegedStack.hpp oopsHierarchy.hpp duke@435: privilegedStack.hpp vframe.hpp duke@435: duke@435: referencePolicy.cpp arguments.hpp duke@435: referencePolicy.cpp globals.hpp duke@435: referencePolicy.cpp javaClasses.hpp duke@435: referencePolicy.cpp referencePolicy.hpp duke@435: referencePolicy.cpp universe.hpp duke@435: duke@435: referenceProcessor.cpp collectedHeap.hpp duke@435: referenceProcessor.cpp collectedHeap.inline.hpp duke@435: referenceProcessor.cpp java.hpp duke@435: referenceProcessor.cpp javaClasses.hpp duke@435: referenceProcessor.cpp jniHandles.hpp duke@435: referenceProcessor.cpp oop.inline.hpp duke@435: referenceProcessor.cpp referencePolicy.hpp duke@435: referenceProcessor.cpp referenceProcessor.hpp duke@435: referenceProcessor.cpp systemDictionary.hpp duke@435: duke@435: referenceProcessor.hpp instanceRefKlass.hpp ysr@888: referenceProcessor.hpp referencePolicy.hpp duke@435: duke@435: reflection.cpp arguments.hpp duke@435: reflection.cpp handles.inline.hpp duke@435: reflection.cpp instanceKlass.hpp duke@435: reflection.cpp javaCalls.hpp duke@435: reflection.cpp javaClasses.hpp duke@435: reflection.cpp jvm.h duke@435: reflection.cpp linkResolver.hpp duke@435: reflection.cpp objArrayKlass.hpp duke@435: reflection.cpp objArrayOop.hpp duke@435: reflection.cpp oopFactory.hpp duke@435: reflection.cpp reflection.hpp duke@435: reflection.cpp reflectionUtils.hpp duke@435: reflection.cpp resourceArea.hpp duke@435: reflection.cpp signature.hpp duke@435: reflection.cpp symbolTable.hpp duke@435: reflection.cpp systemDictionary.hpp duke@435: reflection.cpp universe.inline.hpp duke@435: reflection.cpp verifier.hpp duke@435: reflection.cpp vframe.hpp duke@435: reflection.cpp vmSymbols.hpp duke@435: duke@435: reflection.hpp accessFlags.hpp duke@435: reflection.hpp fieldDescriptor.hpp duke@435: reflection.hpp growableArray.hpp duke@435: reflection.hpp oop.hpp duke@435: reflection.hpp reflectionCompat.hpp duke@435: duke@435: reflectionUtils.cpp javaClasses.hpp duke@435: reflectionUtils.cpp reflectionUtils.hpp duke@435: reflectionUtils.cpp universe.inline.hpp duke@435: duke@435: reflectionUtils.hpp accessFlags.hpp duke@435: reflectionUtils.hpp allocation.hpp duke@435: reflectionUtils.hpp globalDefinitions.hpp duke@435: reflectionUtils.hpp handles.inline.hpp duke@435: reflectionUtils.hpp instanceKlass.hpp duke@435: reflectionUtils.hpp objArrayOop.hpp duke@435: reflectionUtils.hpp oopsHierarchy.hpp duke@435: reflectionUtils.hpp reflection.hpp duke@435: duke@435: register.cpp register.hpp duke@435: duke@435: register.hpp top.hpp duke@435: duke@435: register_.cpp register_.hpp duke@435: duke@435: register_.hpp register.hpp duke@435: register_.hpp vm_version_.hpp duke@435: duke@435: registerMap.hpp globalDefinitions.hpp duke@435: registerMap.hpp register_.hpp duke@435: registerMap.hpp vmreg.hpp duke@435: duke@435: registerMap_.hpp generate_platform_dependent_include duke@435: duke@435: register_definitions_.cpp assembler.hpp duke@435: register_definitions_.cpp interp_masm_.hpp duke@435: register_definitions_.cpp register.hpp duke@435: register_definitions_.cpp register_.hpp duke@435: never@739: relocInfo.cpp assembler_.inline.hpp duke@435: relocInfo.cpp compiledIC.hpp duke@435: relocInfo.cpp copy.hpp duke@435: relocInfo.cpp nativeInst_.hpp duke@435: relocInfo.cpp nmethod.hpp duke@435: relocInfo.cpp relocInfo.hpp duke@435: relocInfo.cpp resourceArea.hpp duke@435: relocInfo.cpp stubCodeGenerator.hpp duke@435: duke@435: relocInfo.hpp allocation.hpp duke@435: relocInfo.hpp top.hpp duke@435: duke@435: relocInfo_.cpp assembler.inline.hpp never@739: relocInfo_.cpp assembler_.inline.hpp duke@435: relocInfo_.cpp nativeInst_.hpp kvn@599: relocInfo_.cpp oop.inline.hpp duke@435: relocInfo_.cpp relocInfo.hpp duke@435: relocInfo_.cpp safepoint.hpp duke@435: duke@435: relocInfo_.hpp generate_platform_dependent_include duke@435: duke@435: relocator.cpp bytecodes.hpp duke@435: relocator.cpp handles.inline.hpp duke@435: relocator.cpp oop.inline.hpp duke@435: relocator.cpp relocator.hpp duke@435: relocator.cpp universe.inline.hpp duke@435: duke@435: relocator.hpp bytecodes.hpp duke@435: relocator.hpp bytes_.hpp duke@435: relocator.hpp methodOop.hpp duke@435: duke@435: resolutionErrors.cpp handles.inline.hpp duke@435: resolutionErrors.cpp hashtable.inline.hpp duke@435: resolutionErrors.cpp oop.inline.hpp duke@435: resolutionErrors.cpp resolutionErrors.hpp duke@435: resolutionErrors.cpp resourceArea.hpp duke@435: resolutionErrors.cpp safepoint.hpp duke@435: duke@435: resolutionErrors.hpp constantPoolOop.hpp duke@435: resolutionErrors.hpp hashtable.hpp duke@435: duke@435: resourceArea.cpp allocation.inline.hpp duke@435: resourceArea.cpp mutexLocker.hpp duke@435: resourceArea.cpp resourceArea.hpp duke@435: resourceArea.cpp thread_.inline.hpp duke@435: duke@435: resourceArea.hpp allocation.hpp duke@435: resourceArea.hpp thread_.inline.hpp duke@435: duke@435: // restore is jck optional, put cpp deps in includeDB_features duke@435: duke@435: rewriter.cpp bytecodes.hpp duke@435: rewriter.cpp gcLocker.hpp duke@435: rewriter.cpp generateOopMap.hpp duke@435: rewriter.cpp interpreter.hpp duke@435: rewriter.cpp objArrayOop.hpp duke@435: rewriter.cpp oop.inline.hpp duke@435: rewriter.cpp oopFactory.hpp duke@435: rewriter.cpp resourceArea.hpp duke@435: rewriter.cpp rewriter.hpp duke@435: duke@435: rewriter.hpp allocation.hpp duke@435: rewriter.hpp growableArray.hpp duke@435: rewriter.hpp handles.inline.hpp duke@435: duke@435: rframe.cpp frame.inline.hpp duke@435: rframe.cpp interpreter.hpp duke@435: rframe.cpp oop.inline.hpp duke@435: rframe.cpp rframe.hpp duke@435: rframe.cpp symbolOop.hpp duke@435: rframe.cpp vframe.hpp duke@435: rframe.cpp vframe_hp.hpp duke@435: duke@435: rframe.hpp allocation.hpp duke@435: rframe.hpp frame.inline.hpp duke@435: duke@435: runtimeService.cpp attachListener.hpp duke@435: runtimeService.cpp classLoader.hpp duke@435: runtimeService.cpp dtrace.hpp duke@435: runtimeService.cpp exceptions.hpp duke@435: runtimeService.cpp management.hpp duke@435: runtimeService.cpp runtimeService.hpp duke@435: duke@435: runtimeService.hpp perfData.hpp duke@435: runtimeService.hpp timer.hpp duke@435: duke@435: safepoint.cpp codeCache.hpp duke@435: safepoint.cpp collectedHeap.hpp duke@435: safepoint.cpp deoptimization.hpp duke@435: safepoint.cpp events.hpp duke@435: safepoint.cpp frame.inline.hpp duke@435: safepoint.cpp icBuffer.hpp duke@435: safepoint.cpp interfaceSupport.hpp duke@435: safepoint.cpp interpreter.hpp duke@435: safepoint.cpp mutexLocker.hpp duke@435: safepoint.cpp nativeInst_.hpp duke@435: safepoint.cpp nmethod.hpp duke@435: safepoint.cpp oop.inline.hpp duke@435: safepoint.cpp osThread.hpp duke@435: safepoint.cpp pcDesc.hpp duke@435: safepoint.cpp resourceArea.hpp duke@435: safepoint.cpp runtimeService.hpp duke@435: safepoint.cpp safepoint.hpp duke@435: safepoint.cpp scopeDesc.hpp duke@435: safepoint.cpp signature.hpp duke@435: safepoint.cpp stubCodeGenerator.hpp duke@435: safepoint.cpp stubRoutines.hpp duke@435: safepoint.cpp sweeper.hpp duke@435: safepoint.cpp symbolOop.hpp duke@435: safepoint.cpp synchronizer.hpp duke@435: safepoint.cpp systemDictionary.hpp duke@435: safepoint.cpp thread_.inline.hpp duke@435: safepoint.cpp universe.inline.hpp duke@435: safepoint.cpp vmreg_.inline.hpp duke@435: duke@435: safepoint.hpp allocation.hpp duke@435: safepoint.hpp assembler.hpp duke@435: safepoint.hpp extendedPC.hpp duke@435: safepoint.hpp nmethod.hpp duke@435: safepoint.hpp os.hpp duke@435: safepoint.hpp ostream.hpp duke@435: duke@435: scopeDesc.cpp debugInfoRec.hpp duke@435: scopeDesc.cpp handles.inline.hpp duke@435: scopeDesc.cpp oop.inline.hpp duke@435: scopeDesc.cpp pcDesc.hpp duke@435: scopeDesc.cpp resourceArea.hpp duke@435: scopeDesc.cpp scopeDesc.hpp duke@435: duke@435: scopeDesc.hpp debugInfo.hpp duke@435: scopeDesc.hpp growableArray.hpp duke@435: scopeDesc.hpp methodOop.hpp duke@435: scopeDesc.hpp pcDesc.hpp duke@435: duke@435: // serialize is jck optional, put cpp deps in includeDB_features duke@435: duke@435: serviceUtil.hpp objArrayOop.hpp duke@435: serviceUtil.hpp systemDictionary.hpp duke@435: duke@435: sharedHeap.cpp codeCache.hpp duke@435: sharedHeap.cpp collectedHeap.inline.hpp duke@435: sharedHeap.cpp copy.hpp duke@435: sharedHeap.cpp fprofiler.hpp duke@435: sharedHeap.cpp java.hpp duke@435: sharedHeap.cpp management.hpp duke@435: sharedHeap.cpp oop.inline.hpp duke@435: sharedHeap.cpp sharedHeap.hpp duke@435: sharedHeap.cpp symbolTable.hpp duke@435: sharedHeap.cpp systemDictionary.hpp duke@435: sharedHeap.cpp workgroup.hpp duke@435: duke@435: sharedHeap.hpp collectedHeap.hpp duke@435: sharedHeap.hpp generation.hpp duke@435: sharedHeap.hpp permGen.hpp duke@435: duke@435: sharedRuntime.cpp abstractCompiler.hpp duke@435: sharedRuntime.cpp arguments.hpp duke@435: sharedRuntime.cpp biasedLocking.hpp duke@435: sharedRuntime.cpp compiledIC.hpp duke@435: sharedRuntime.cpp compilerOracle.hpp duke@435: sharedRuntime.cpp copy.hpp duke@435: sharedRuntime.cpp dtrace.hpp duke@435: sharedRuntime.cpp events.hpp duke@435: sharedRuntime.cpp forte.hpp duke@435: sharedRuntime.cpp gcLocker.inline.hpp duke@435: sharedRuntime.cpp handles.inline.hpp duke@435: sharedRuntime.cpp init.hpp duke@435: sharedRuntime.cpp interfaceSupport.hpp duke@435: sharedRuntime.cpp interpreterRuntime.hpp duke@435: sharedRuntime.cpp interpreter.hpp duke@435: sharedRuntime.cpp javaCalls.hpp duke@435: sharedRuntime.cpp jvmtiExport.hpp duke@435: sharedRuntime.cpp nativeInst_.hpp duke@435: sharedRuntime.cpp nativeLookup.hpp duke@435: sharedRuntime.cpp oop.inline.hpp duke@435: sharedRuntime.cpp scopeDesc.hpp duke@435: sharedRuntime.cpp sharedRuntime.hpp duke@435: sharedRuntime.cpp stubRoutines.hpp duke@435: sharedRuntime.cpp systemDictionary.hpp duke@435: sharedRuntime.cpp universe.inline.hpp duke@435: sharedRuntime.cpp vframe.hpp duke@435: sharedRuntime.cpp vframeArray.hpp duke@435: sharedRuntime.cpp vmSymbols.hpp duke@435: sharedRuntime.cpp vmreg_.inline.hpp duke@435: sharedRuntime.cpp vtableStubs.hpp duke@435: sharedRuntime.cpp vtune.hpp duke@435: sharedRuntime.cpp xmlstream.hpp duke@435: duke@435: sharedRuntime.hpp allocation.hpp duke@435: sharedRuntime.hpp bytecodeHistogram.hpp duke@435: sharedRuntime.hpp bytecodeTracer.hpp duke@435: sharedRuntime.hpp linkResolver.hpp duke@435: sharedRuntime.hpp resourceArea.hpp duke@435: sharedRuntime.hpp threadLocalStorage.hpp duke@435: duke@435: sharedRuntime_.cpp assembler.hpp never@739: sharedRuntime_.cpp assembler_.inline.hpp duke@435: sharedRuntime_.cpp compiledICHolderOop.hpp duke@435: sharedRuntime_.cpp debugInfoRec.hpp duke@435: sharedRuntime_.cpp icBuffer.hpp duke@435: sharedRuntime_.cpp interpreter.hpp duke@435: sharedRuntime_.cpp sharedRuntime.hpp duke@435: sharedRuntime_.cpp vframeArray.hpp duke@435: sharedRuntime_.cpp vmreg_.inline.hpp duke@435: sharedRuntime_.cpp vtableStubs.hpp duke@435: duke@435: sharedRuntimeTrans.cpp interfaceSupport.hpp duke@435: sharedRuntimeTrans.cpp jni.h duke@435: sharedRuntimeTrans.cpp sharedRuntime.hpp duke@435: duke@435: sharedRuntimeTrig.cpp interfaceSupport.hpp duke@435: sharedRuntimeTrig.cpp jni.h duke@435: sharedRuntimeTrig.cpp sharedRuntime.hpp duke@435: duke@435: signature.cpp instanceKlass.hpp duke@435: signature.cpp oop.inline.hpp duke@435: signature.cpp oopFactory.hpp duke@435: signature.cpp signature.hpp duke@435: signature.cpp symbolOop.hpp duke@435: signature.cpp symbolTable.hpp duke@435: signature.cpp systemDictionary.hpp duke@435: signature.cpp typeArrayKlass.hpp duke@435: duke@435: signature.hpp allocation.hpp duke@435: signature.hpp methodOop.hpp duke@435: signature.hpp top.hpp duke@435: duke@435: sizes.cpp sizes.hpp duke@435: duke@435: sizes.hpp allocation.hpp duke@435: sizes.hpp globalDefinitions.hpp duke@435: duke@435: space.cpp blockOffsetTable.hpp duke@435: space.cpp copy.hpp duke@435: space.cpp defNewGeneration.hpp duke@435: space.cpp genCollectedHeap.hpp duke@435: space.cpp globalDefinitions.hpp duke@435: space.cpp java.hpp duke@435: space.cpp liveRange.hpp duke@435: space.cpp markSweep.hpp duke@435: space.cpp oop.inline.hpp duke@435: space.cpp oop.inline2.hpp duke@435: space.cpp safepoint.hpp duke@435: space.cpp space.hpp duke@435: space.cpp space.inline.hpp jmasa@698: space.cpp spaceDecorator.hpp duke@435: space.cpp systemDictionary.hpp duke@435: space.cpp universe.inline.hpp duke@435: space.cpp vmSymbols.hpp duke@435: duke@435: space.hpp allocation.hpp duke@435: space.hpp blockOffsetTable.hpp duke@435: space.hpp cardTableModRefBS.hpp duke@435: space.hpp iterator.hpp duke@435: space.hpp markOop.hpp duke@435: space.hpp memRegion.hpp duke@435: space.hpp mutexLocker.hpp duke@435: space.hpp os_.inline.hpp duke@435: space.hpp prefetch.hpp duke@435: space.hpp watermark.hpp duke@435: space.hpp workgroup.hpp duke@435: duke@435: space.inline.hpp blockOffsetTable.inline.hpp duke@435: space.inline.hpp collectedHeap.hpp duke@435: space.inline.hpp safepoint.hpp duke@435: space.inline.hpp space.hpp duke@435: space.inline.hpp universe.hpp duke@435: jmasa@698: spaceDecorator.hpp globalDefinitions.hpp jmasa@698: spaceDecorator.hpp mutableSpace.hpp jmasa@698: spaceDecorator.hpp space.hpp jmasa@698: jmasa@698: spaceDecorator.cpp copy.hpp jmasa@698: spaceDecorator.cpp spaceDecorator.hpp jmasa@698: duke@435: specialized_oop_closures.cpp ostream.hpp duke@435: specialized_oop_closures.cpp specialized_oop_closures.hpp duke@435: ysr@777: specialized_oop_closures.hpp atomic.hpp ysr@777: duke@435: stackMapFrame.cpp globalDefinitions.hpp duke@435: stackMapFrame.cpp handles.inline.hpp duke@435: stackMapFrame.cpp oop.inline.hpp duke@435: stackMapFrame.cpp resourceArea.hpp duke@435: stackMapFrame.cpp stackMapFrame.hpp duke@435: stackMapFrame.cpp symbolOop.hpp duke@435: stackMapFrame.cpp verifier.hpp duke@435: duke@435: stackMapFrame.hpp exceptions.hpp duke@435: stackMapFrame.hpp handles.hpp duke@435: stackMapFrame.hpp methodOop.hpp duke@435: stackMapFrame.hpp signature.hpp duke@435: stackMapFrame.hpp verificationType.hpp duke@435: stackMapFrame.hpp verifier.hpp duke@435: duke@435: stackMapTable.cpp fieldType.hpp duke@435: stackMapTable.cpp handles.inline.hpp duke@435: stackMapTable.cpp oop.inline.hpp duke@435: stackMapTable.cpp resourceArea.hpp duke@435: stackMapTable.cpp stackMapTable.hpp duke@435: stackMapTable.cpp verifier.hpp duke@435: duke@435: stackMapTable.hpp allocation.hpp duke@435: stackMapTable.hpp bytes_.hpp duke@435: stackMapTable.hpp constantPoolOop.hpp duke@435: stackMapTable.hpp globalDefinitions.hpp duke@435: stackMapTable.hpp methodOop.hpp duke@435: stackMapTable.hpp stackMapFrame.hpp duke@435: duke@435: stackValue.cpp debugInfo.hpp duke@435: stackValue.cpp frame.inline.hpp duke@435: stackValue.cpp handles.inline.hpp duke@435: stackValue.cpp oop.hpp duke@435: stackValue.cpp stackValue.hpp duke@435: duke@435: stackValue.hpp handles.hpp duke@435: stackValue.hpp location.hpp duke@435: stackValue.hpp top.hpp duke@435: duke@435: stackValueCollection.cpp jniTypes_.hpp duke@435: stackValueCollection.cpp stackValueCollection.hpp duke@435: duke@435: stackValueCollection.hpp allocation.hpp duke@435: stackValueCollection.hpp growableArray.hpp duke@435: stackValueCollection.hpp stackValue.hpp duke@435: duke@435: statSampler.cpp allocation.inline.hpp duke@435: statSampler.cpp arguments.hpp duke@435: statSampler.cpp java.hpp duke@435: statSampler.cpp javaCalls.hpp duke@435: statSampler.cpp oop.inline.hpp duke@435: statSampler.cpp os.hpp duke@435: statSampler.cpp resourceArea.hpp duke@435: statSampler.cpp statSampler.hpp duke@435: statSampler.cpp systemDictionary.hpp duke@435: statSampler.cpp vmSymbols.hpp duke@435: statSampler.cpp vm_version_.hpp duke@435: duke@435: statSampler.hpp perfData.hpp duke@435: statSampler.hpp task.hpp duke@435: never@739: stubCodeGenerator.cpp assembler_.inline.hpp jrose@535: stubCodeGenerator.cpp disassembler.hpp duke@435: stubCodeGenerator.cpp forte.hpp duke@435: stubCodeGenerator.cpp oop.inline.hpp duke@435: stubCodeGenerator.cpp stubCodeGenerator.hpp duke@435: stubCodeGenerator.cpp vtune.hpp duke@435: duke@435: stubCodeGenerator.hpp allocation.hpp duke@435: stubCodeGenerator.hpp assembler.hpp duke@435: duke@435: stubGenerator_.cpp assembler.hpp never@739: stubGenerator_.cpp assembler_.inline.hpp duke@435: stubGenerator_.cpp frame.inline.hpp duke@435: stubGenerator_.cpp handles.inline.hpp duke@435: stubGenerator_.cpp instanceOop.hpp duke@435: stubGenerator_.cpp interpreter.hpp duke@435: stubGenerator_.cpp methodOop.hpp duke@435: stubGenerator_.cpp nativeInst_.hpp duke@435: stubGenerator_.cpp objArrayKlass.hpp duke@435: stubGenerator_.cpp oop.inline.hpp duke@435: stubGenerator_.cpp sharedRuntime.hpp duke@435: stubGenerator_.cpp stubCodeGenerator.hpp duke@435: stubGenerator_.cpp stubRoutines.hpp duke@435: stubGenerator_.cpp thread_.inline.hpp duke@435: stubGenerator_.cpp top.hpp duke@435: duke@435: stubRoutines.cpp codeBuffer.hpp duke@435: stubRoutines.cpp copy.hpp duke@435: stubRoutines.cpp interfaceSupport.hpp duke@435: stubRoutines.cpp oop.inline.hpp duke@435: stubRoutines.cpp resourceArea.hpp duke@435: stubRoutines.cpp sharedRuntime.hpp duke@435: stubRoutines.cpp stubRoutines.hpp duke@435: stubRoutines.cpp timer.hpp duke@435: duke@435: stubRoutines.hpp allocation.hpp duke@435: stubRoutines.hpp codeBlob.hpp duke@435: stubRoutines.hpp frame.hpp duke@435: stubRoutines.hpp mutexLocker.hpp duke@435: stubRoutines.hpp nativeInst_.hpp duke@435: stubRoutines.hpp stubCodeGenerator.hpp duke@435: stubRoutines.hpp top.hpp duke@435: duke@435: stubRoutines_.cpp deoptimization.hpp duke@435: stubRoutines_.cpp frame.inline.hpp duke@435: stubRoutines_.cpp stubRoutines.hpp duke@435: stubRoutines_.cpp thread_.inline.hpp duke@435: duke@435: stubRoutines_.hpp generate_platform_dependent_include duke@435: duke@435: stubRoutines_.cpp os.hpp duke@435: stubRoutines_.cpp stubRoutines.hpp duke@435: duke@435: stubs.cpp allocation.inline.hpp duke@435: stubs.cpp codeBlob.hpp duke@435: stubs.cpp mutexLocker.hpp duke@435: stubs.cpp oop.inline.hpp duke@435: stubs.cpp stubs.hpp duke@435: duke@435: stubs.hpp allocation.hpp duke@435: stubs.hpp os_.inline.hpp duke@435: duke@435: sweeper.cpp atomic.hpp duke@435: sweeper.cpp codeCache.hpp duke@435: sweeper.cpp events.hpp duke@435: sweeper.cpp methodOop.hpp duke@435: sweeper.cpp mutexLocker.hpp duke@435: sweeper.cpp nmethod.hpp duke@435: sweeper.cpp os.hpp duke@435: sweeper.cpp resourceArea.hpp duke@435: sweeper.cpp sweeper.hpp duke@435: duke@435: symbolKlass.cpp gcLocker.hpp duke@435: symbolKlass.cpp handles.inline.hpp duke@435: symbolKlass.cpp oop.inline.hpp duke@435: symbolKlass.cpp symbolKlass.hpp duke@435: symbolKlass.cpp symbolOop.hpp duke@435: symbolKlass.cpp symbolTable.hpp duke@435: duke@435: symbolKlass.hpp typeArrayKlass.hpp duke@435: duke@435: symbolOop.cpp oop.inline.hpp duke@435: symbolOop.cpp symbolOop.hpp duke@435: duke@435: symbolOop.hpp typeArrayOop.hpp duke@435: symbolOop.hpp utf8.hpp duke@435: duke@435: symbolTable.cpp collectedHeap.inline.hpp duke@435: symbolTable.cpp filemap.hpp duke@435: symbolTable.cpp gcLocker.inline.hpp duke@435: symbolTable.cpp hashtable.inline.hpp duke@435: symbolTable.cpp javaClasses.hpp duke@435: symbolTable.cpp mutexLocker.hpp duke@435: symbolTable.cpp oop.inline.hpp duke@435: symbolTable.cpp oop.inline2.hpp duke@435: symbolTable.cpp symbolKlass.hpp duke@435: symbolTable.cpp symbolTable.hpp duke@435: symbolTable.cpp systemDictionary.hpp duke@435: duke@435: symbolTable.hpp allocation.inline.hpp duke@435: symbolTable.hpp hashtable.hpp duke@435: symbolTable.hpp symbolOop.hpp duke@435: duke@435: synchronizer.cpp biasedLocking.hpp duke@435: synchronizer.cpp dtrace.hpp duke@435: synchronizer.cpp events.hpp duke@435: synchronizer.cpp handles.inline.hpp duke@435: synchronizer.cpp interfaceSupport.hpp duke@435: synchronizer.cpp markOop.hpp duke@435: synchronizer.cpp mutexLocker.hpp duke@435: synchronizer.cpp objectMonitor.hpp duke@435: synchronizer.cpp objectMonitor.inline.hpp duke@435: synchronizer.cpp oop.inline.hpp duke@435: synchronizer.cpp osThread.hpp duke@435: synchronizer.cpp os_.inline.hpp duke@435: synchronizer.cpp preserveException.hpp duke@435: synchronizer.cpp resourceArea.hpp duke@435: synchronizer.cpp stubRoutines.hpp duke@435: synchronizer.cpp synchronizer.hpp duke@435: synchronizer.cpp threadService.hpp duke@435: synchronizer.cpp thread_.inline.hpp duke@435: synchronizer.cpp vmSymbols.hpp duke@435: duke@435: synchronizer.hpp handles.hpp duke@435: synchronizer.hpp markOop.hpp duke@435: synchronizer.hpp perfData.hpp duke@435: synchronizer.hpp top.hpp duke@435: duke@435: systemDictionary.cpp biasedLocking.hpp duke@435: systemDictionary.cpp bytecodeStream.hpp duke@435: systemDictionary.cpp classLoadingService.hpp duke@435: systemDictionary.cpp dictionary.hpp duke@435: systemDictionary.cpp fieldType.hpp duke@435: systemDictionary.cpp gcLocker.hpp duke@435: systemDictionary.cpp handles.inline.hpp duke@435: systemDictionary.cpp instanceKlass.hpp duke@435: systemDictionary.cpp instanceRefKlass.hpp duke@435: systemDictionary.cpp interpreter.hpp duke@435: systemDictionary.cpp java.hpp duke@435: systemDictionary.cpp javaCalls.hpp duke@435: systemDictionary.cpp javaClasses.hpp duke@435: systemDictionary.cpp jvmtiEnvBase.hpp duke@435: systemDictionary.cpp klass.inline.hpp duke@435: systemDictionary.cpp loaderConstraints.hpp duke@435: systemDictionary.cpp methodDataOop.hpp duke@435: systemDictionary.cpp mutexLocker.hpp duke@435: systemDictionary.cpp objArrayKlass.hpp duke@435: systemDictionary.cpp oop.inline.hpp duke@435: systemDictionary.cpp oop.inline2.hpp duke@435: systemDictionary.cpp oopFactory.hpp duke@435: systemDictionary.cpp placeholders.hpp duke@435: systemDictionary.cpp resolutionErrors.hpp duke@435: systemDictionary.cpp signature.hpp duke@435: systemDictionary.cpp systemDictionary.hpp duke@435: systemDictionary.cpp typeArrayKlass.hpp duke@435: systemDictionary.cpp vmSymbols.hpp duke@435: duke@435: systemDictionary.hpp classFileStream.hpp duke@435: systemDictionary.hpp classLoader.hpp duke@435: systemDictionary.hpp hashtable.hpp duke@435: systemDictionary.hpp java.hpp duke@435: systemDictionary.hpp objArrayOop.hpp duke@435: systemDictionary.hpp reflectionUtils.hpp duke@435: systemDictionary.hpp symbolOop.hpp duke@435: duke@435: task.cpp allocation.hpp duke@435: task.cpp init.hpp duke@435: task.cpp os_.inline.hpp duke@435: task.cpp task.hpp duke@435: task.cpp thread_.inline.hpp duke@435: task.cpp timer.hpp duke@435: duke@435: task.hpp top.hpp duke@435: duke@435: taskqueue.cpp debug.hpp duke@435: taskqueue.cpp os.hpp duke@435: taskqueue.cpp taskqueue.hpp duke@435: taskqueue.cpp thread_.inline.hpp duke@435: duke@435: taskqueue.hpp allocation.hpp duke@435: taskqueue.hpp allocation.inline.hpp duke@435: taskqueue.hpp mutex.hpp duke@435: taskqueue.hpp orderAccess_.inline.hpp duke@435: duke@435: templateInterpreter.cpp interpreter.hpp duke@435: templateInterpreter.cpp interpreterGenerator.hpp duke@435: templateInterpreter.cpp interpreterRuntime.hpp duke@435: templateInterpreter.cpp templateTable.hpp duke@435: duke@435: templateInterpreter.hpp abstractInterpreter.hpp duke@435: templateInterpreter.hpp templateTable.hpp duke@435: duke@435: templateInterpreter_.cpp arguments.hpp duke@435: templateInterpreter_.cpp arrayOop.hpp duke@435: templateInterpreter_.cpp assembler.hpp duke@435: templateInterpreter_.cpp bytecodeHistogram.hpp duke@435: templateInterpreter_.cpp debug.hpp duke@435: templateInterpreter_.cpp deoptimization.hpp duke@435: templateInterpreter_.cpp frame.inline.hpp duke@435: templateInterpreter_.cpp interpreterRuntime.hpp duke@435: templateInterpreter_.cpp interpreter.hpp duke@435: templateInterpreter_.cpp interpreterGenerator.hpp duke@435: templateInterpreter_.cpp jvmtiExport.hpp duke@435: templateInterpreter_.cpp jvmtiThreadState.hpp duke@435: templateInterpreter_.cpp methodDataOop.hpp duke@435: templateInterpreter_.cpp methodOop.hpp duke@435: templateInterpreter_.cpp oop.inline.hpp duke@435: templateInterpreter_.cpp sharedRuntime.hpp duke@435: templateInterpreter_.cpp stubRoutines.hpp duke@435: templateInterpreter_.cpp synchronizer.hpp duke@435: templateInterpreter_.cpp templateTable.hpp duke@435: templateInterpreter_.cpp timer.hpp duke@435: templateInterpreter_.cpp vframeArray.hpp duke@435: duke@435: templateInterpreter_.hpp generate_platform_dependent_include duke@435: duke@435: templateInterpreterGenerator_.hpp generate_platform_dependent_include duke@435: ysr@777: templateTable.cpp collectedHeap.hpp duke@435: templateTable.cpp templateTable.hpp duke@435: templateTable.cpp timer.hpp duke@435: duke@435: templateTable.hpp allocation.hpp duke@435: templateTable.hpp bytecodes.hpp duke@435: templateTable.hpp frame.hpp duke@435: templateTable.hpp interp_masm_.hpp duke@435: duke@435: templateTable_.cpp interpreterRuntime.hpp duke@435: templateTable_.cpp interpreter.hpp duke@435: templateTable_.cpp methodDataOop.hpp duke@435: templateTable_.cpp objArrayKlass.hpp duke@435: templateTable_.cpp oop.inline.hpp duke@435: templateTable_.cpp sharedRuntime.hpp duke@435: templateTable_.cpp stubRoutines.hpp duke@435: templateTable_.cpp synchronizer.hpp duke@435: templateTable_.cpp templateTable.hpp duke@435: templateTable_.cpp universe.inline.hpp duke@435: duke@435: templateTable_.hpp generate_platform_dependent_include duke@435: duke@435: tenuredGeneration.cpp allocation.inline.hpp duke@435: tenuredGeneration.cpp blockOffsetTable.inline.hpp duke@435: tenuredGeneration.cpp collectorCounters.hpp duke@435: tenuredGeneration.cpp generation.inline.hpp duke@435: tenuredGeneration.cpp generationSpec.hpp duke@435: tenuredGeneration.cpp java.hpp duke@435: tenuredGeneration.cpp oop.inline.hpp duke@435: tenuredGeneration.cpp parGCAllocBuffer.hpp duke@435: tenuredGeneration.cpp space.hpp duke@435: tenuredGeneration.cpp tenuredGeneration.hpp duke@435: duke@435: tenuredGeneration.hpp cSpaceCounters.hpp duke@435: tenuredGeneration.hpp gcStats.hpp duke@435: tenuredGeneration.hpp generation.hpp duke@435: tenuredGeneration.hpp generationCounters.hpp duke@435: duke@435: thread.cpp aprofiler.hpp duke@435: thread.cpp arguments.hpp duke@435: thread.cpp attachListener.hpp duke@435: thread.cpp biasedLocking.hpp duke@435: thread.cpp classLoader.hpp duke@435: thread.cpp compileBroker.hpp duke@435: thread.cpp defaultStream.hpp duke@435: thread.cpp deoptimization.hpp duke@435: thread.cpp dtrace.hpp duke@435: thread.cpp events.hpp duke@435: thread.cpp fprofiler.hpp duke@435: thread.cpp frame.inline.hpp duke@435: thread.cpp gcTaskManager.hpp duke@435: thread.cpp hpi.hpp duke@435: thread.cpp init.hpp duke@435: thread.cpp instanceKlass.hpp duke@435: thread.cpp interfaceSupport.hpp duke@435: thread.cpp interpreter.hpp duke@435: thread.cpp interpreter.hpp duke@435: thread.cpp java.hpp duke@435: thread.cpp javaCalls.hpp duke@435: thread.cpp javaClasses.hpp duke@435: thread.cpp jniPeriodicChecker.hpp duke@435: thread.cpp jvm_misc.hpp duke@435: thread.cpp jvmtiExport.hpp duke@435: thread.cpp jvmtiThreadState.hpp duke@435: thread.cpp linkResolver.hpp duke@435: thread.cpp management.hpp duke@435: thread.cpp memprofiler.hpp duke@435: thread.cpp mutexLocker.hpp duke@435: thread.cpp objArrayOop.hpp duke@435: thread.cpp objectMonitor.hpp duke@435: thread.cpp objectMonitor.inline.hpp duke@435: thread.cpp oop.inline.hpp duke@435: thread.cpp oopFactory.hpp duke@435: thread.cpp osThread.hpp duke@435: thread.cpp os_.inline.hpp duke@435: thread.cpp preserveException.hpp duke@435: thread.cpp privilegedStack.hpp duke@435: thread.cpp safepoint.hpp duke@435: thread.cpp scopeDesc.hpp duke@435: thread.cpp sharedRuntime.hpp duke@435: thread.cpp statSampler.hpp duke@435: thread.cpp stubRoutines.hpp duke@435: thread.cpp symbolOop.hpp duke@435: thread.cpp systemDictionary.hpp duke@435: thread.cpp task.hpp duke@435: thread.cpp threadCritical.hpp duke@435: thread.cpp threadLocalStorage.hpp duke@435: thread.cpp threadService.hpp duke@435: thread.cpp thread_.inline.hpp duke@435: thread.cpp universe.inline.hpp duke@435: thread.cpp vframe.hpp duke@435: thread.cpp vframeArray.hpp duke@435: thread.cpp vframe_hp.hpp duke@435: thread.cpp vmSymbols.hpp duke@435: thread.cpp vmThread.hpp duke@435: thread.cpp vm_operations.hpp duke@435: duke@435: thread.hpp allocation.hpp duke@435: thread.hpp exceptions.hpp duke@435: thread.hpp frame.hpp duke@435: thread.hpp javaFrameAnchor.hpp duke@435: thread.hpp jni.h duke@435: thread.hpp jniHandles.hpp duke@435: thread.hpp jvmtiExport.hpp duke@435: thread.hpp mutexLocker.hpp duke@435: thread.hpp oop.hpp duke@435: thread.hpp os.hpp duke@435: thread.hpp osThread.hpp duke@435: thread.hpp safepoint.hpp duke@435: thread.hpp stubRoutines.hpp duke@435: thread.hpp threadLocalAllocBuffer.hpp duke@435: thread.hpp threadLocalStorage.hpp duke@435: thread.hpp top.hpp duke@435: thread.hpp unhandledOops.hpp duke@435: duke@435: thread_.cpp frame.inline.hpp duke@435: thread_.cpp thread_.inline.hpp duke@435: duke@435: thread_.hpp generate_platform_dependent_include duke@435: duke@435: thread_.inline.hpp atomic.hpp duke@435: thread_.inline.hpp atomic_.inline.hpp duke@435: thread_.inline.hpp orderAccess_.inline.hpp duke@435: thread_.inline.hpp prefetch.hpp duke@435: thread_.inline.hpp prefetch_.inline.hpp duke@435: thread_.inline.hpp thread.hpp duke@435: thread_.inline.hpp threadLocalStorage.hpp duke@435: duke@435: threadCritical.hpp allocation.hpp duke@435: duke@435: threadCritical_.cpp threadCritical.hpp duke@435: threadCritical_.cpp thread_.inline.hpp duke@435: duke@435: threadLS_.cpp threadLocalStorage.hpp duke@435: threadLS_.cpp thread_.inline.hpp duke@435: duke@435: threadLS_.hpp generate_platform_dependent_include duke@435: duke@435: threadLocalAllocBuffer.cpp copy.hpp duke@435: threadLocalAllocBuffer.cpp genCollectedHeap.hpp duke@435: threadLocalAllocBuffer.cpp oop.inline.hpp duke@435: threadLocalAllocBuffer.cpp resourceArea.hpp duke@435: threadLocalAllocBuffer.cpp threadLocalAllocBuffer.inline.hpp duke@435: threadLocalAllocBuffer.cpp thread_.inline.hpp duke@435: threadLocalAllocBuffer.cpp universe.inline.hpp duke@435: duke@435: threadLocalAllocBuffer.hpp gcUtil.hpp duke@435: threadLocalAllocBuffer.hpp perfData.hpp duke@435: threadLocalAllocBuffer.hpp typeArrayOop.hpp duke@435: duke@435: threadLocalAllocBuffer.inline.hpp atomic.hpp duke@435: threadLocalAllocBuffer.inline.hpp collectedHeap.hpp duke@435: threadLocalAllocBuffer.inline.hpp copy.hpp duke@435: threadLocalAllocBuffer.inline.hpp threadLocalAllocBuffer.hpp duke@435: duke@435: threadLocalStorage.cpp os_.inline.hpp duke@435: threadLocalStorage.cpp threadLocalStorage.hpp duke@435: threadLocalStorage.cpp thread_.inline.hpp duke@435: duke@435: threadLocalStorage.hpp gcUtil.hpp duke@435: threadLocalStorage.hpp os.hpp duke@435: threadLocalStorage.hpp top.hpp duke@435: duke@435: threadService.cpp allocation.hpp duke@435: threadService.cpp handles.inline.hpp duke@435: threadService.cpp heapInspection.hpp duke@435: threadService.cpp init.hpp duke@435: threadService.cpp instanceKlass.hpp duke@435: threadService.cpp oop.inline.hpp duke@435: threadService.cpp oopFactory.hpp duke@435: threadService.cpp systemDictionary.hpp duke@435: threadService.cpp thread.hpp duke@435: threadService.cpp threadService.hpp duke@435: threadService.cpp vframe.hpp duke@435: threadService.cpp vmThread.hpp duke@435: threadService.cpp vm_operations.hpp duke@435: duke@435: threadService.hpp handles.hpp duke@435: threadService.hpp init.hpp duke@435: threadService.hpp javaClasses.hpp duke@435: threadService.hpp jniHandles.hpp duke@435: threadService.hpp management.hpp duke@435: threadService.hpp objectMonitor.hpp duke@435: threadService.hpp objectMonitor.inline.hpp duke@435: threadService.hpp perfData.hpp duke@435: threadService.hpp serviceUtil.hpp duke@435: duke@435: timer.cpp oop.inline.hpp duke@435: timer.cpp os_.inline.hpp duke@435: timer.cpp ostream.hpp duke@435: timer.cpp timer.hpp duke@435: duke@435: timer.hpp globalDefinitions.hpp duke@435: duke@435: top.hpp debug.hpp duke@435: top.hpp exceptions.hpp duke@435: top.hpp globalDefinitions.hpp duke@435: top.hpp globals.hpp duke@435: top.hpp macros.hpp duke@435: top.hpp oopsHierarchy.hpp duke@435: top.hpp ostream.hpp duke@435: top.hpp sizes.hpp duke@435: duke@435: typeArrayKlass.cpp collectedHeap.hpp duke@435: typeArrayKlass.cpp collectedHeap.inline.hpp duke@435: typeArrayKlass.cpp handles.inline.hpp duke@435: typeArrayKlass.cpp instanceKlass.hpp duke@435: typeArrayKlass.cpp klassOop.hpp duke@435: typeArrayKlass.cpp objArrayKlassKlass.hpp duke@435: typeArrayKlass.cpp oop.inline.hpp duke@435: typeArrayKlass.cpp resourceArea.hpp duke@435: typeArrayKlass.cpp systemDictionary.hpp duke@435: typeArrayKlass.cpp typeArrayKlass.hpp duke@435: typeArrayKlass.cpp typeArrayOop.hpp duke@435: typeArrayKlass.cpp universe.hpp duke@435: typeArrayKlass.cpp universe.inline.hpp duke@435: typeArrayKlass.cpp vmSymbols.hpp duke@435: duke@435: typeArrayKlass.hpp arrayKlass.hpp duke@435: duke@435: typeArrayKlassKlass.cpp handles.inline.hpp duke@435: typeArrayKlassKlass.cpp javaClasses.hpp duke@435: typeArrayKlassKlass.cpp oop.inline.hpp duke@435: typeArrayKlassKlass.cpp typeArrayKlassKlass.hpp duke@435: duke@435: typeArrayKlassKlass.hpp arrayKlassKlass.hpp duke@435: typeArrayKlassKlass.hpp typeArrayKlass.hpp duke@435: duke@435: typeArrayOop.cpp oop.inline.hpp duke@435: typeArrayOop.cpp typeArrayOop.hpp duke@435: duke@435: typeArrayOop.hpp arrayOop.hpp duke@435: typeArrayOop.hpp orderAccess_.inline.hpp duke@435: typeArrayOop.hpp typeArrayKlass.hpp duke@435: duke@435: unhandledOops.cpp collectedHeap.hpp duke@435: unhandledOops.cpp gcLocker.inline.hpp duke@435: unhandledOops.cpp globalDefinitions.hpp duke@435: unhandledOops.cpp oop.hpp duke@435: unhandledOops.cpp oop.inline.hpp duke@435: unhandledOops.cpp thread.hpp duke@435: unhandledOops.cpp unhandledOops.hpp duke@435: unhandledOops.cpp universe.hpp duke@435: duke@435: universe.cpp aprofiler.hpp duke@435: universe.cpp arguments.hpp duke@435: universe.cpp arrayKlassKlass.hpp duke@435: universe.cpp cardTableModRefBS.hpp duke@435: universe.cpp classLoader.hpp duke@435: universe.cpp codeCache.hpp duke@435: universe.cpp collectedHeap.inline.hpp duke@435: universe.cpp compiledICHolderKlass.hpp duke@435: universe.cpp constMethodKlass.hpp duke@435: universe.cpp constantPoolKlass.hpp duke@435: universe.cpp constantPoolOop.hpp duke@435: universe.cpp copy.hpp duke@435: universe.cpp cpCacheKlass.hpp duke@435: universe.cpp cpCacheOop.hpp duke@435: universe.cpp deoptimization.hpp duke@435: universe.cpp dependencies.hpp duke@435: universe.cpp events.hpp duke@435: universe.cpp filemap.hpp duke@435: universe.cpp fprofiler.hpp duke@435: universe.cpp gcLocker.inline.hpp duke@435: universe.cpp genCollectedHeap.hpp duke@435: universe.cpp genRemSet.hpp duke@435: universe.cpp generation.hpp duke@435: universe.cpp handles.inline.hpp duke@435: universe.cpp hashtable.inline.hpp duke@435: universe.cpp instanceKlass.hpp duke@435: universe.cpp instanceKlassKlass.hpp duke@435: universe.cpp instanceRefKlass.hpp duke@435: universe.cpp interpreter.hpp duke@435: universe.cpp java.hpp duke@435: universe.cpp javaCalls.hpp duke@435: universe.cpp javaClasses.hpp duke@435: universe.cpp jvmtiRedefineClassesTrace.hpp duke@435: universe.cpp klassKlass.hpp duke@435: universe.cpp klassOop.hpp duke@435: universe.cpp memoryService.hpp duke@435: universe.cpp methodDataKlass.hpp duke@435: universe.cpp methodKlass.hpp duke@435: universe.cpp objArrayKlassKlass.hpp duke@435: universe.cpp oop.inline.hpp duke@435: universe.cpp oopFactory.hpp duke@435: universe.cpp permGen.hpp duke@435: universe.cpp preserveException.hpp duke@435: universe.cpp sharedRuntime.hpp duke@435: universe.cpp space.hpp duke@435: universe.cpp symbolKlass.hpp duke@435: universe.cpp symbolTable.hpp duke@435: universe.cpp synchronizer.hpp duke@435: universe.cpp systemDictionary.hpp duke@435: universe.cpp thread_.inline.hpp duke@435: universe.cpp timer.hpp duke@435: universe.cpp typeArrayKlass.hpp duke@435: universe.cpp typeArrayKlassKlass.hpp duke@435: universe.cpp universe.hpp duke@435: universe.cpp universe.inline.hpp duke@435: universe.cpp vmSymbols.hpp duke@435: universe.cpp vm_operations.hpp duke@435: universe.cpp vtune.hpp duke@435: duke@435: universe.hpp growableArray.hpp duke@435: universe.hpp handles.hpp duke@435: duke@435: universe.inline.hpp universe.hpp duke@435: duke@435: unsafe.cpp allocation.inline.hpp duke@435: unsafe.cpp copy.hpp duke@435: unsafe.cpp globals.hpp duke@435: unsafe.cpp interfaceSupport.hpp duke@435: unsafe.cpp jni.h duke@435: unsafe.cpp jvm.h duke@435: unsafe.cpp reflection.hpp duke@435: unsafe.cpp reflectionCompat.hpp duke@435: unsafe.cpp synchronizer.hpp duke@435: unsafe.cpp threadService.hpp duke@435: unsafe.cpp vmSymbols.hpp duke@435: duke@435: utf8.cpp utf8.hpp duke@435: duke@435: utf8.hpp allocation.hpp duke@435: utf8.hpp top.hpp duke@435: duke@435: verificationType.cpp symbolTable.hpp duke@435: verificationType.cpp verificationType.hpp duke@435: duke@435: verificationType.hpp allocation.hpp duke@435: verificationType.hpp handles.hpp duke@435: verificationType.hpp instanceKlass.hpp duke@435: verificationType.hpp oop.inline.hpp duke@435: verificationType.hpp signature.hpp duke@435: verificationType.hpp symbolOop.hpp duke@435: verificationType.hpp systemDictionary.hpp duke@435: duke@435: verifier.cpp bytecodeStream.hpp duke@435: verifier.cpp bytes_.hpp duke@435: verifier.cpp classFileStream.hpp duke@435: verifier.cpp fieldDescriptor.hpp duke@435: verifier.cpp handles.inline.hpp duke@435: verifier.cpp hpi.hpp duke@435: verifier.cpp instanceKlass.hpp duke@435: verifier.cpp interfaceSupport.hpp duke@435: verifier.cpp javaCalls.hpp duke@435: verifier.cpp javaClasses.hpp duke@435: verifier.cpp jvm.h duke@435: verifier.cpp oop.inline.hpp duke@435: verifier.cpp oopFactory.hpp duke@435: verifier.cpp orderAccess.hpp duke@435: verifier.cpp os.hpp duke@435: verifier.cpp resourceArea.hpp duke@435: verifier.cpp stackMapTable.hpp duke@435: verifier.cpp systemDictionary.hpp duke@435: verifier.cpp typeArrayOop.hpp duke@435: verifier.cpp verifier.hpp duke@435: verifier.cpp vmSymbols.hpp duke@435: duke@435: verifier.hpp exceptions.hpp duke@435: verifier.hpp gcLocker.hpp duke@435: verifier.hpp handles.hpp duke@435: verifier.hpp klass.hpp duke@435: verifier.hpp methodOop.hpp duke@435: verifier.hpp verificationType.hpp duke@435: duke@435: vframe.cpp codeCache.hpp duke@435: vframe.cpp debugInfoRec.hpp duke@435: vframe.cpp handles.inline.hpp duke@435: vframe.cpp instanceKlass.hpp duke@435: vframe.cpp interpreter.hpp duke@435: vframe.cpp javaClasses.hpp duke@435: vframe.cpp nmethod.hpp duke@435: vframe.cpp objectMonitor.hpp duke@435: vframe.cpp objectMonitor.inline.hpp duke@435: vframe.cpp oop.hpp duke@435: vframe.cpp oop.inline.hpp duke@435: vframe.cpp oopMapCache.hpp duke@435: vframe.cpp pcDesc.hpp duke@435: vframe.cpp resourceArea.hpp duke@435: vframe.cpp scopeDesc.hpp duke@435: vframe.cpp signature.hpp duke@435: vframe.cpp stubRoutines.hpp duke@435: vframe.cpp synchronizer.hpp duke@435: vframe.cpp systemDictionary.hpp duke@435: vframe.cpp vframe.hpp duke@435: vframe.cpp vframeArray.hpp duke@435: vframe.cpp vframe_hp.hpp duke@435: vframe.cpp vmSymbols.hpp duke@435: duke@435: vframe.hpp debugInfo.hpp duke@435: vframe.hpp debugInfoRec.hpp duke@435: vframe.hpp frame.hpp duke@435: vframe.hpp frame.inline.hpp duke@435: vframe.hpp growableArray.hpp duke@435: vframe.hpp location.hpp duke@435: vframe.hpp oop.hpp duke@435: vframe.hpp stackValue.hpp duke@435: vframe.hpp stackValueCollection.hpp duke@435: duke@435: vframeArray.cpp allocation.inline.hpp duke@435: vframeArray.cpp events.hpp duke@435: vframeArray.cpp handles.inline.hpp duke@435: vframeArray.cpp interpreter.hpp duke@435: vframeArray.cpp jvmtiThreadState.hpp duke@435: vframeArray.cpp methodDataOop.hpp duke@435: vframeArray.cpp monitorChunk.hpp duke@435: vframeArray.cpp oop.inline.hpp duke@435: vframeArray.cpp resourceArea.hpp duke@435: vframeArray.cpp sharedRuntime.hpp duke@435: vframeArray.cpp universe.inline.hpp duke@435: vframeArray.cpp vframe.hpp duke@435: vframeArray.cpp vframeArray.hpp duke@435: vframeArray.cpp vframe_hp.hpp duke@435: vframeArray.cpp vmSymbols.hpp duke@435: duke@435: vframeArray.hpp arrayOop.hpp duke@435: vframeArray.hpp deoptimization.hpp duke@435: vframeArray.hpp frame.inline.hpp duke@435: vframeArray.hpp growableArray.hpp duke@435: vframeArray.hpp monitorChunk.hpp duke@435: duke@435: vframe_hp.cpp codeCache.hpp duke@435: vframe_hp.cpp debugInfoRec.hpp duke@435: vframe_hp.cpp handles.inline.hpp duke@435: vframe_hp.cpp instanceKlass.hpp duke@435: vframe_hp.cpp interpreter.hpp duke@435: vframe_hp.cpp monitorChunk.hpp duke@435: vframe_hp.cpp nmethod.hpp duke@435: vframe_hp.cpp oop.inline.hpp duke@435: vframe_hp.cpp oopMapCache.hpp duke@435: vframe_hp.cpp pcDesc.hpp duke@435: vframe_hp.cpp scopeDesc.hpp duke@435: vframe_hp.cpp signature.hpp duke@435: vframe_hp.cpp stubRoutines.hpp duke@435: vframe_hp.cpp synchronizer.hpp duke@435: vframe_hp.cpp vframeArray.hpp duke@435: vframe_hp.cpp vframe_hp.hpp duke@435: duke@435: vframe_hp.hpp vframe.hpp duke@435: duke@435: virtualspace.cpp markOop.hpp duke@435: virtualspace.cpp oop.inline.hpp duke@435: virtualspace.cpp os_.inline.hpp duke@435: virtualspace.cpp virtualspace.hpp duke@435: duke@435: virtualspace.hpp allocation.hpp duke@435: duke@435: vmError.cpp arguments.hpp duke@435: vmError.cpp collectedHeap.hpp duke@435: vmError.cpp compileBroker.hpp duke@435: vmError.cpp debug.hpp duke@435: vmError.cpp defaultStream.hpp duke@435: vmError.cpp frame.inline.hpp duke@435: vmError.cpp init.hpp duke@435: vmError.cpp os.hpp duke@435: vmError.cpp thread.hpp duke@435: vmError.cpp top.hpp duke@435: vmError.cpp vmError.hpp duke@435: vmError.cpp vmThread.hpp duke@435: vmError.cpp vm_operations.hpp duke@435: duke@435: vmError.hpp globalDefinitions.hpp duke@435: duke@435: vmError_.cpp arguments.hpp duke@435: vmError_.cpp os.hpp duke@435: vmError_.cpp thread.hpp duke@435: vmError_.cpp vmError.hpp duke@435: duke@435: // vmStructs is jck optional, put cpp deps in includeDB_features duke@435: duke@435: vmStructs.hpp debug.hpp duke@435: duke@435: vmSymbols.cpp handles.inline.hpp duke@435: vmSymbols.cpp oop.inline.hpp duke@435: vmSymbols.cpp oopFactory.hpp duke@435: vmSymbols.cpp vmSymbols.hpp duke@435: vmSymbols.cpp xmlstream.hpp duke@435: duke@435: vmSymbols.hpp symbolOop.hpp duke@435: duke@435: vmThread.cpp collectedHeap.hpp duke@435: vmThread.cpp compileBroker.hpp duke@435: vmThread.cpp events.hpp duke@435: vmThread.cpp interfaceSupport.hpp duke@435: vmThread.cpp methodOop.hpp duke@435: vmThread.cpp mutexLocker.hpp duke@435: vmThread.cpp oop.hpp duke@435: vmThread.cpp oop.inline.hpp duke@435: vmThread.cpp os.hpp duke@435: vmThread.cpp resourceArea.hpp duke@435: vmThread.cpp runtimeService.hpp duke@435: vmThread.cpp thread_.inline.hpp duke@435: vmThread.cpp vmThread.hpp duke@435: vmThread.cpp vm_operations.hpp duke@435: vmThread.cpp xmlstream.hpp duke@435: duke@435: vmThread.hpp perfData.hpp duke@435: vmThread.hpp thread_.inline.hpp duke@435: vmThread.hpp vm_operations.hpp duke@435: duke@435: vm_operations.cpp arguments.hpp duke@435: vm_operations.cpp compileBroker.hpp duke@435: vm_operations.cpp compilerOracle.hpp duke@435: vm_operations.cpp deoptimization.hpp duke@435: vm_operations.cpp interfaceSupport.hpp ysr@777: vm_operations.cpp isGCActiveMark.hpp duke@435: vm_operations.cpp resourceArea.hpp duke@435: vm_operations.cpp threadService.hpp duke@435: vm_operations.cpp thread_.inline.hpp duke@435: vm_operations.cpp vmSymbols.hpp duke@435: vm_operations.cpp vm_operations.hpp duke@435: duke@435: vm_operations.hpp allocation.hpp duke@435: vm_operations.hpp javaClasses.hpp duke@435: vm_operations.hpp oop.hpp duke@435: vm_operations.hpp thread.hpp duke@435: vm_operations.hpp top.hpp duke@435: duke@435: vm_version.cpp arguments.hpp duke@435: vm_version.cpp oop.inline.hpp duke@435: vm_version.cpp universe.hpp duke@435: vm_version.cpp vm_version_.hpp duke@435: duke@435: vm_version.hpp allocation.hpp duke@435: vm_version.hpp ostream.hpp duke@435: never@739: vm_version_.cpp assembler_.inline.hpp duke@435: vm_version_.cpp java.hpp duke@435: vm_version_.cpp os_.inline.hpp duke@435: vm_version_.cpp resourceArea.hpp duke@435: vm_version_.cpp stubCodeGenerator.hpp duke@435: vm_version_.cpp vm_version_.hpp duke@435: duke@435: vm_version_.hpp globals_extension.hpp duke@435: vm_version_.hpp vm_version.hpp duke@435: duke@435: vm_version_.cpp vm_version_.hpp duke@435: duke@435: vmreg.cpp assembler.hpp duke@435: vmreg.cpp vmreg.hpp duke@435: duke@435: vmreg.hpp allocation.hpp duke@435: vmreg.hpp globalDefinitions.hpp duke@435: vmreg.hpp register_.hpp duke@435: duke@435: vmreg_.cpp assembler.hpp duke@435: vmreg_.cpp vmreg.hpp duke@435: duke@435: vmreg_.hpp generate_platform_dependent_include duke@435: duke@435: vtableStubs.cpp allocation.inline.hpp jrose@535: vtableStubs.cpp disassembler.hpp duke@435: vtableStubs.cpp forte.hpp duke@435: vtableStubs.cpp handles.inline.hpp duke@435: vtableStubs.cpp instanceKlass.hpp duke@435: vtableStubs.cpp jvmtiExport.hpp duke@435: vtableStubs.cpp klassVtable.hpp coleenp@548: vtableStubs.cpp oop.inline.hpp duke@435: vtableStubs.cpp mutexLocker.hpp duke@435: vtableStubs.cpp resourceArea.hpp duke@435: vtableStubs.cpp sharedRuntime.hpp duke@435: vtableStubs.cpp vtableStubs.hpp duke@435: vtableStubs.cpp vtune.hpp duke@435: duke@435: vtableStubs.hpp allocation.hpp duke@435: duke@435: vtableStubs_.cpp assembler.hpp never@739: vtableStubs_.cpp assembler_.inline.hpp duke@435: vtableStubs_.cpp instanceKlass.hpp duke@435: vtableStubs_.cpp interp_masm_.hpp duke@435: vtableStubs_.cpp klassVtable.hpp duke@435: vtableStubs_.cpp resourceArea.hpp duke@435: vtableStubs_.cpp sharedRuntime.hpp duke@435: vtableStubs_.cpp vmreg_.inline.hpp duke@435: vtableStubs_.cpp vtableStubs.hpp duke@435: duke@435: vtune.hpp allocation.hpp duke@435: duke@435: vtune_.cpp interpreter.hpp duke@435: vtune_.cpp vtune.hpp duke@435: duke@435: watermark.hpp allocation.hpp duke@435: watermark.hpp globalDefinitions.hpp duke@435: duke@435: workgroup.cpp allocation.hpp duke@435: workgroup.cpp allocation.inline.hpp duke@435: workgroup.cpp os.hpp duke@435: workgroup.cpp workgroup.hpp duke@435: duke@435: workgroup.hpp thread_.inline.hpp duke@435: duke@435: xmlstream.cpp allocation.hpp duke@435: xmlstream.cpp allocation.inline.hpp duke@435: xmlstream.cpp deoptimization.hpp duke@435: xmlstream.cpp methodDataOop.hpp duke@435: xmlstream.cpp methodOop.hpp duke@435: xmlstream.cpp nmethod.hpp duke@435: xmlstream.cpp oop.inline.hpp duke@435: xmlstream.cpp vmThread.hpp duke@435: xmlstream.cpp xmlstream.hpp duke@435: duke@435: xmlstream.hpp handles.hpp duke@435: xmlstream.hpp ostream.hpp