├── .gitignore ├── LICENSE ├── README.md ├── hotspot ├── ASSEMBLY_EXCEPTION ├── LICENSE ├── THIRD_PARTY_README ├── make │ ├── Makefile │ ├── altsrc.make │ ├── bsd │ │ ├── Makefile │ │ ├── README │ │ ├── adlc_updater │ │ ├── makefiles │ │ │ ├── adjust-mflags.sh │ │ │ ├── adlc.make │ │ │ ├── amd64.make │ │ │ ├── arm.make │ │ │ ├── build_vm_def.sh │ │ │ ├── buildtree.make │ │ │ ├── compiler1.make │ │ │ ├── compiler2.make │ │ │ ├── core.make │ │ │ ├── cscope.make │ │ │ ├── debug.make │ │ │ ├── defs.make │ │ │ ├── dtrace.make │ │ │ ├── fastdebug.make │ │ │ ├── gcc.make │ │ │ ├── hp.make │ │ │ ├── hp1.make │ │ │ ├── i486.make │ │ │ ├── ia64.make │ │ │ ├── jsig.make │ │ │ ├── jvmti.make │ │ │ ├── mapfile-vers-debug │ │ │ ├── mapfile-vers-jsig │ │ │ ├── mapfile-vers-product │ │ │ ├── minimal1.make │ │ │ ├── optimized.make │ │ │ ├── ppc.make │ │ │ ├── product.make │ │ │ ├── rules.make │ │ │ ├── sa.make │ │ │ ├── saproc.make │ │ │ ├── shark.make │ │ │ ├── sparc.make │ │ │ ├── sparcWorks.make │ │ │ ├── sparcv9.make │ │ │ ├── tiered.make │ │ │ ├── top.make │ │ │ ├── trace.make │ │ │ ├── universal.gmk │ │ │ ├── vm.make │ │ │ ├── zero.make │ │ │ └── zeroshark.make │ │ ├── platform_amd64 │ │ ├── platform_amd64.suncc │ │ ├── platform_i486 │ │ ├── platform_i486.suncc │ │ ├── platform_ia64 │ │ ├── platform_sparc │ │ ├── platform_sparcv9 │ │ └── platform_zero.in │ ├── build.sh │ ├── cscope.make │ ├── defs.make │ ├── excludeSrc.make │ ├── hotspot.script │ ├── hotspot_distro │ ├── hotspot_version │ ├── jdk6_hotspot_distro │ ├── jprt.gmk │ ├── jprt.properties │ ├── linux │ │ ├── Makefile │ │ ├── README │ │ ├── adlc_updater │ │ ├── makefiles │ │ │ ├── adjust-mflags.sh │ │ │ ├── adlc.make │ │ │ ├── amd64.make │ │ │ ├── arm.make │ │ │ ├── build_vm_def.sh │ │ │ ├── buildtree.make │ │ │ ├── compiler1.make │ │ │ ├── compiler2.make │ │ │ ├── core.make │ │ │ ├── debug.make │ │ │ ├── defs.make │ │ │ ├── dtrace.make │ │ │ ├── fastdebug.make │ │ │ ├── gcc.make │ │ │ ├── hp.make │ │ │ ├── hp1.make │ │ │ ├── i486.make │ │ │ ├── ia64.make │ │ │ ├── jsig.make │ │ │ ├── jvmti.make │ │ │ ├── mapfile-vers-debug │ │ │ ├── mapfile-vers-jsig │ │ │ ├── mapfile-vers-product │ │ │ ├── minimal1.make │ │ │ ├── optimized.make │ │ │ ├── ppc.make │ │ │ ├── product.make │ │ │ ├── rules.make │ │ │ ├── sa.make │ │ │ ├── saproc.make │ │ │ ├── shark.make │ │ │ ├── sparc.make │ │ │ ├── sparcWorks.make │ │ │ ├── sparcv9.make │ │ │ ├── tiered.make │ │ │ ├── top.make │ │ │ ├── trace.make │ │ │ ├── vm.make │ │ │ ├── zero.make │ │ │ └── zeroshark.make │ │ ├── platform_amd64 │ │ ├── platform_amd64.suncc │ │ ├── platform_arm │ │ ├── platform_i486 │ │ ├── platform_i486.suncc │ │ ├── platform_ia64 │ │ ├── platform_ppc │ │ ├── platform_sparc │ │ ├── platform_sparcv9 │ │ └── platform_zero.in │ ├── openjdk_distro │ ├── pic.make │ ├── sa.files │ ├── scm.make │ ├── solaris │ │ ├── Makefile │ │ ├── adlc_updater │ │ ├── makefiles │ │ │ ├── add_gnu_debuglink.make │ │ │ ├── adjust-mflags.sh │ │ │ ├── adlc.make │ │ │ ├── amd64.make │ │ │ ├── build_vm_def.sh │ │ │ ├── buildtree.make │ │ │ ├── compiler1.make │ │ │ ├── compiler2.make │ │ │ ├── core.make │ │ │ ├── debug.make │ │ │ ├── defs.make │ │ │ ├── dtrace.make │ │ │ ├── fastdebug.make │ │ │ ├── fix_empty_sec_hdr_flags.make │ │ │ ├── gcc.make │ │ │ ├── hp.make │ │ │ ├── hp1.make │ │ │ ├── i486.make │ │ │ ├── jsig.make │ │ │ ├── jvmti.make │ │ │ ├── mapfile-vers │ │ │ ├── mapfile-vers-COMPILER1 │ │ │ ├── mapfile-vers-COMPILER2 │ │ │ ├── mapfile-vers-CORE │ │ │ ├── mapfile-vers-TIERED │ │ │ ├── mapfile-vers-debug │ │ │ ├── mapfile-vers-jsig │ │ │ ├── mapfile-vers-jvm_db │ │ │ ├── mapfile-vers-jvm_dtrace │ │ │ ├── optimized.make │ │ │ ├── product.make │ │ │ ├── reorder_CORE_amd64 │ │ │ ├── rules.make │ │ │ ├── sa.make │ │ │ ├── saproc.make │ │ │ ├── sparc.make │ │ │ ├── sparcWorks.make │ │ │ ├── sparcv9.make │ │ │ ├── tiered.make │ │ │ ├── top.make │ │ │ ├── trace.make │ │ │ └── vm.make │ │ ├── platform_amd64 │ │ ├── platform_amd64.gcc │ │ ├── platform_i486 │ │ ├── platform_i486.gcc │ │ ├── platform_sparc │ │ ├── platform_sparc.gcc │ │ ├── platform_sparcv9 │ │ └── platform_sparcv9.gcc │ ├── templates │ │ ├── gpl-cp-header │ │ └── gpl-header │ └── windows │ │ ├── build.bat │ │ ├── build.make │ │ ├── build_vm_def.sh │ │ ├── create.bat │ │ ├── create_obj_files.sh │ │ ├── cross_build.bat │ │ ├── get_msc_ver.sh │ │ ├── jvmexp.lcf │ │ ├── jvmexp_g.lcf │ │ ├── makefiles │ │ ├── adlc.make │ │ ├── compile.make │ │ ├── debug.make │ │ ├── defs.make │ │ ├── fastdebug.make │ │ ├── generated.make │ │ ├── jvmti.make │ │ ├── product.make │ │ ├── projectcreator.make │ │ ├── rules.make │ │ ├── sa.make │ │ ├── sanity.make │ │ ├── shared.make │ │ ├── top.make │ │ ├── trace.make │ │ └── vm.make │ │ └── projectfiles │ │ ├── common │ │ └── Makefile │ │ ├── compiler1 │ │ ├── Makefile │ │ ├── vm.def │ │ └── vm.dsw │ │ ├── compiler2 │ │ ├── ADLCompiler.dsp │ │ ├── ADLCompiler.dsw │ │ ├── Makefile │ │ ├── vm.def │ │ └── vm.dsw │ │ ├── core │ │ ├── Makefile │ │ ├── vm.def │ │ └── vm.dsw │ │ └── tiered │ │ ├── ADLCompiler.dsp │ │ ├── ADLCompiler.dsw │ │ ├── Makefile │ │ ├── vm.def │ │ └── vm.dsw ├── my-docs │ ├── Eclipse注意.java │ ├── HotSpot模块初始化流程分析.java │ ├── HotSpot用到的C++特性.java │ ├── Makefile分析.java │ ├── Visual Studio 标志寄存器缩写.java │ ├── Visual Studio 结合Eclipse进行全程调试.java │ ├── Visual Studio 调试技巧.java │ ├── asm │ │ └── codeBuffer.java │ ├── classfile │ │ ├── SystemDictionary.java │ │ ├── classFileParser.java │ │ ├── classLoader.java │ │ ├── javaClasses.java │ │ ├── parseClassFile.java │ │ ├── vmSymbols.java │ │ ├── 概述.java │ │ └── 类图-Hashtable.png │ ├── code │ │ ├── codeBlob.java │ │ ├── codeCache.java │ │ ├── code模块概述.java │ │ └── 类图-CodeBlob.png │ ├── gc │ │ ├── collectedHeap.java │ │ ├── 概述.java │ │ ├── 类图-CollectedHeap.png │ │ └── 类图-VM_GC_Operation.png │ ├── interpreter │ │ ├── Interpreter模块概述.java │ │ ├── StubInterface.java │ │ ├── Stub和字节码的汇编代码.txt │ │ ├── biased_locking_enter分析.java │ │ ├── bytecode │ │ │ ├── astore_1.java │ │ │ ├── bipush.java │ │ │ ├── dup.java │ │ │ ├── getfield.java │ │ │ ├── getstatic.java │ │ │ ├── goto.java │ │ │ ├── iconst_0.java │ │ │ ├── iinc.java │ │ │ ├── iload_1.java │ │ │ ├── iload_3.java │ │ │ ├── invokeinterface.java │ │ │ ├── invokeinterface2.java │ │ │ ├── invokespecial.java │ │ │ ├── invokestatic.java │ │ │ ├── invokevirtual.java │ │ │ ├── ireturn.java │ │ │ ├── istore.java │ │ │ ├── istore_0.java │ │ │ ├── istore_1.java │ │ │ ├── monitorenter.java │ │ │ ├── monitorenter2.java │ │ │ ├── monitorenter3.java │ │ │ ├── monitorexit.java │ │ │ ├── monitorexit3.java │ │ │ ├── new.java │ │ │ ├── putfield.java │ │ │ ├── putstatic.java │ │ │ ├── return.java │ │ │ ├── return3.java │ │ │ └── 字节码的汇编代码概述.java │ │ ├── stub │ │ │ ├── call_stub.java │ │ │ ├── invoke_return_entry_points.java │ │ │ ├── method_entry_point_native.java │ │ │ ├── method_entry_point_zerolocals.java │ │ │ └── method_entry_point_zerolocals_synchronized.java │ │ └── 调试汇编代码.java │ ├── memory │ │ ├── Collectors.jpg │ │ ├── Metaspace.java │ │ ├── allocation.java │ │ ├── 类图-AllocatedObj.png │ │ ├── 类图-BarrierSet.png │ │ ├── 类图-Closure-BoolObjectClosure.png │ │ ├── 类图-Closure-CodeBlobClosure.png │ │ ├── 类图-Closure-KlassClosure.png │ │ ├── 类图-Closure-ObjectClosure.png │ │ ├── 类图-Closure.png │ │ ├── 类图-CollectorPolicy.png │ │ ├── 类图-Generation.png │ │ ├── 类图-Space.png │ │ └── 类图-allocation-MetaspaceObj.png │ ├── oops │ │ ├── ConstMethod.java │ │ ├── ConstantPool.java │ │ ├── ConstantPoolCache.java │ │ ├── InlineTableSizes.java │ │ ├── InstanceKlass-字段-01.png │ │ ├── InstanceKlass-字段-02.png │ │ ├── InstanceKlass-字段-03.png │ │ ├── InstanceKlass.java │ │ ├── Method.java │ │ ├── markOopDesc.java │ │ ├── 堆栈内存布局.java │ │ ├── 概述.java │ │ ├── 类图-Metadata.png │ │ └── 类图-oopDesc.png │ ├── openjdk8u文档 │ │ ├── GuardedMemory内存布局.java │ │ └── Native Memory Tracking.java │ ├── os │ │ └── os_windows.java │ ├── prims │ │ ├── jni概述.java │ │ └── jvmti概述.java │ ├── runtime │ │ ├── Flags.java │ │ ├── Flags_sort.java │ │ ├── Flags_withComments.java │ │ ├── JavaThread-字段-01.png │ │ ├── JavaThread-字段-02.png │ │ ├── JavaThread-字段-03.png │ │ ├── JavaThread-字段-04.png │ │ ├── JavaThread-字段-05.png │ │ ├── ObjectMonitor.java │ │ ├── StubCode_att.java │ │ ├── StubCode_intel.java │ │ ├── VirtualSpace-字段.png │ │ ├── arguments.java │ │ ├── handles.java │ │ ├── init.java │ │ ├── option.java │ │ ├── perfData.java │ │ ├── thread.java │ │ ├── vm_operations.java │ │ ├── 概述.java │ │ ├── 类图-PerfData.png │ │ ├── 类图-StubCodeGenerator.png │ │ └── 类图-thread.png │ ├── services │ │ ├── diagnosticCommand.java │ │ ├── memTracker.java │ │ ├── memoryManager.java │ │ ├── memoryPool.java │ │ └── 类图-DCmd.png │ ├── utilities │ │ ├── ostream.java │ │ └── 类图-outputStream.png │ ├── 代码导读.java │ ├── 在Windows平台构建与调试HotSpot.md │ ├── 学习资料.java │ └── 难理解的代码.java ├── my-test │ ├── classes │ │ ├── Test.java │ │ └── TestLauncher.java │ ├── dll │ │ ├── Math.c │ │ └── TestMath.c │ ├── jni │ │ ├── HelloWorld.c │ │ ├── HelloWorld.java │ │ ├── api-test │ │ │ ├── ApiTest.c │ │ │ ├── ApiTest.java │ │ │ └── run.bat │ │ ├── corejava7-v2-ch11 │ │ │ ├── EmployeeTest │ │ │ │ ├── Employee.c │ │ │ │ ├── Employee.java │ │ │ │ ├── EmployeeTest.java │ │ │ │ └── run.bat │ │ │ ├── HelloNativeTest │ │ │ │ ├── HelloNative.c │ │ │ │ ├── HelloNative.java │ │ │ │ ├── HelloNativeTest.java │ │ │ │ └── run.bat │ │ │ ├── InvocationTest │ │ │ │ ├── InvocationTest.c │ │ │ │ ├── Welcome.java │ │ │ │ └── run.bat │ │ │ ├── Printf1Test │ │ │ │ ├── Printf1.c │ │ │ │ ├── Printf1.java │ │ │ │ ├── Printf1Test.java │ │ │ │ └── run.bat │ │ │ ├── Printf2Test │ │ │ │ ├── Printf2.c │ │ │ │ ├── Printf2.java │ │ │ │ ├── Printf2Test.java │ │ │ │ └── run.bat │ │ │ ├── Printf3Test │ │ │ │ ├── Printf3.c │ │ │ │ ├── Printf3.java │ │ │ │ ├── Printf3Test.java │ │ │ │ └── run.bat │ │ │ ├── Printf4Test │ │ │ │ ├── Printf4.c │ │ │ │ ├── Printf4.java │ │ │ │ ├── Printf4Test.java │ │ │ │ └── run.bat │ │ │ └── Win32RegKeyTest │ │ │ │ ├── Win32RegKey.c │ │ │ │ ├── Win32RegKey.java │ │ │ │ ├── Win32RegKeyTest.java │ │ │ │ └── run.bat │ │ └── run.bat │ ├── jvmArgsFile.txt │ ├── jvmFlagsFile.txt │ ├── jvmti │ │ ├── HelloWorld.c │ │ ├── api-test │ │ │ ├── ApiTest.c │ │ │ ├── ApiTest.java │ │ │ └── run.bat │ │ ├── jdk-demo │ │ │ ├── agent_util │ │ │ │ ├── README.txt │ │ │ │ ├── agent_util.c │ │ │ │ └── agent_util.h │ │ │ ├── compiledMethodLoad │ │ │ │ ├── README.txt │ │ │ │ ├── compiledMethodLoad.c │ │ │ │ ├── run.bat │ │ │ │ └── sample.makefile.txt │ │ │ ├── gctest │ │ │ │ ├── README.txt │ │ │ │ ├── gctest.c │ │ │ │ ├── run.bat │ │ │ │ └── sample.makefile.txt │ │ │ ├── heapTracker │ │ │ │ ├── HeapTracker.java │ │ │ │ ├── README.txt │ │ │ │ ├── heapTracker.c │ │ │ │ ├── heapTracker.h │ │ │ │ ├── run.bat │ │ │ │ └── sample.makefile.txt │ │ │ ├── heapViewer │ │ │ │ ├── README.txt │ │ │ │ ├── heapViewer.c │ │ │ │ ├── run.bat │ │ │ │ └── sample.makefile.txt │ │ │ ├── hprof │ │ │ │ ├── README.txt │ │ │ │ ├── com │ │ │ │ │ └── sun │ │ │ │ │ │ └── demo │ │ │ │ │ │ └── jvmti │ │ │ │ │ │ └── hprof │ │ │ │ │ │ └── Tracker.java │ │ │ │ ├── debug_malloc.c │ │ │ │ ├── debug_malloc.h │ │ │ │ ├── hprof.h │ │ │ │ ├── hprof_b_spec.h │ │ │ │ ├── hprof_blocks.c │ │ │ │ ├── hprof_blocks.h │ │ │ │ ├── hprof_check.c │ │ │ │ ├── hprof_check.h │ │ │ │ ├── hprof_class.c │ │ │ │ ├── hprof_class.h │ │ │ │ ├── hprof_cpu.c │ │ │ │ ├── hprof_cpu.h │ │ │ │ ├── hprof_error.c │ │ │ │ ├── hprof_error.h │ │ │ │ ├── hprof_event.c │ │ │ │ ├── hprof_event.h │ │ │ │ ├── hprof_frame.c │ │ │ │ ├── hprof_frame.h │ │ │ │ ├── hprof_init.c │ │ │ │ ├── hprof_init.h │ │ │ │ ├── hprof_io.c │ │ │ │ ├── hprof_io.h │ │ │ │ ├── hprof_ioname.c │ │ │ │ ├── hprof_ioname.h │ │ │ │ ├── hprof_listener.c │ │ │ │ ├── hprof_listener.h │ │ │ │ ├── hprof_loader.c │ │ │ │ ├── hprof_loader.h │ │ │ │ ├── hprof_md.c │ │ │ │ ├── hprof_md.h │ │ │ │ ├── hprof_monitor.c │ │ │ │ ├── hprof_monitor.h │ │ │ │ ├── hprof_object.c │ │ │ │ ├── hprof_object.h │ │ │ │ ├── hprof_reference.c │ │ │ │ ├── hprof_reference.h │ │ │ │ ├── hprof_site.c │ │ │ │ ├── hprof_site.h │ │ │ │ ├── hprof_stack.c │ │ │ │ ├── hprof_stack.h │ │ │ │ ├── hprof_string.c │ │ │ │ ├── hprof_string.h │ │ │ │ ├── hprof_table.c │ │ │ │ ├── hprof_table.h │ │ │ │ ├── hprof_tag.c │ │ │ │ ├── hprof_tag.h │ │ │ │ ├── hprof_tls.c │ │ │ │ ├── hprof_tls.h │ │ │ │ ├── hprof_trace.c │ │ │ │ ├── hprof_trace.h │ │ │ │ ├── hprof_tracker.c │ │ │ │ ├── hprof_tracker.h │ │ │ │ ├── hprof_util.c │ │ │ │ ├── hprof_util.h │ │ │ │ ├── include │ │ │ │ │ ├── javavm │ │ │ │ │ │ └── export │ │ │ │ │ │ │ ├── jawt_md.h │ │ │ │ │ │ │ ├── jni_md.h │ │ │ │ │ │ │ └── jvm_md.h │ │ │ │ │ ├── npt-windows │ │ │ │ │ │ ├── npt_md.h │ │ │ │ │ │ ├── utf_md.c │ │ │ │ │ │ └── utf_md.h │ │ │ │ │ └── npt │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── npt.c │ │ │ │ │ │ ├── npt.h │ │ │ │ │ │ ├── utf.c │ │ │ │ │ │ └── utf.h │ │ │ │ ├── jvm.hprof.txt │ │ │ │ ├── manual.html │ │ │ │ ├── run.bat │ │ │ │ └── sample.makefile.txt │ │ │ ├── index.html │ │ │ ├── java_crw_demo │ │ │ │ ├── README.txt │ │ │ │ ├── java_crw_demo.c │ │ │ │ ├── java_crw_demo.h │ │ │ │ ├── run.bat │ │ │ │ └── sample.makefile.txt │ │ │ ├── minst │ │ │ │ ├── Minst.java │ │ │ │ ├── README.txt │ │ │ │ ├── minst.c │ │ │ │ ├── minst.h │ │ │ │ ├── run.bat │ │ │ │ └── sample.makefile.txt │ │ │ ├── mtrace │ │ │ │ ├── Mtrace.java │ │ │ │ ├── README.txt │ │ │ │ ├── mtrace.c │ │ │ │ ├── mtrace.h │ │ │ │ ├── run.bat │ │ │ │ └── sample.makefile.txt │ │ │ ├── versionCheck │ │ │ │ ├── README.txt │ │ │ │ ├── run.bat │ │ │ │ ├── sample.makefile.txt │ │ │ │ └── versionCheck.c │ │ │ └── waiters │ │ │ │ ├── Agent.cpp │ │ │ │ ├── Agent.hpp │ │ │ │ ├── Monitor.cpp │ │ │ │ ├── Monitor.hpp │ │ │ │ ├── README.txt │ │ │ │ ├── Thread.cpp │ │ │ │ ├── Thread.hpp │ │ │ │ ├── run.bat │ │ │ │ ├── sample.makefile.txt │ │ │ │ └── waiters.cpp │ │ └── run.bat │ └── launcher │ │ ├── launcher.c │ │ └── run.bat ├── src │ ├── cpu │ │ ├── sparc │ │ │ └── vm │ │ │ │ ├── args.cc │ │ │ │ ├── assembler_sparc.cpp │ │ │ │ ├── assembler_sparc.hpp │ │ │ │ ├── assembler_sparc.inline.hpp │ │ │ │ ├── bytecodeInterpreter_sparc.cpp │ │ │ │ ├── bytecodeInterpreter_sparc.hpp │ │ │ │ ├── bytecodeInterpreter_sparc.inline.hpp │ │ │ │ ├── bytecodes_sparc.cpp │ │ │ │ ├── bytecodes_sparc.hpp │ │ │ │ ├── bytes_sparc.hpp │ │ │ │ ├── c1_CodeStubs_sparc.cpp │ │ │ │ ├── c1_Defs_sparc.hpp │ │ │ │ ├── c1_FpuStackSim_sparc.cpp │ │ │ │ ├── c1_FpuStackSim_sparc.hpp │ │ │ │ ├── c1_FrameMap_sparc.cpp │ │ │ │ ├── c1_FrameMap_sparc.hpp │ │ │ │ ├── c1_LIRAssembler_sparc.cpp │ │ │ │ ├── c1_LIRAssembler_sparc.hpp │ │ │ │ ├── c1_LIRGenerator_sparc.cpp │ │ │ │ ├── c1_LinearScan_sparc.cpp │ │ │ │ ├── c1_LinearScan_sparc.hpp │ │ │ │ ├── c1_MacroAssembler_sparc.cpp │ │ │ │ ├── c1_MacroAssembler_sparc.hpp │ │ │ │ ├── c1_Runtime1_sparc.cpp │ │ │ │ ├── c1_globals_sparc.hpp │ │ │ │ ├── c2_globals_sparc.hpp │ │ │ │ ├── c2_init_sparc.cpp │ │ │ │ ├── codeBuffer_sparc.hpp │ │ │ │ ├── compiledIC_sparc.cpp │ │ │ │ ├── copy_sparc.hpp │ │ │ │ ├── cppInterpreterGenerator_sparc.hpp │ │ │ │ ├── cppInterpreter_sparc.cpp │ │ │ │ ├── cppInterpreter_sparc.hpp │ │ │ │ ├── debug_sparc.cpp │ │ │ │ ├── depChecker_sparc.cpp │ │ │ │ ├── depChecker_sparc.hpp │ │ │ │ ├── disassembler_sparc.hpp │ │ │ │ ├── frame_sparc.cpp │ │ │ │ ├── frame_sparc.hpp │ │ │ │ ├── frame_sparc.inline.hpp │ │ │ │ ├── globalDefinitions_sparc.hpp │ │ │ │ ├── globals_sparc.hpp │ │ │ │ ├── icBuffer_sparc.cpp │ │ │ │ ├── icache_sparc.cpp │ │ │ │ ├── icache_sparc.hpp │ │ │ │ ├── interp_masm_sparc.cpp │ │ │ │ ├── interp_masm_sparc.hpp │ │ │ │ ├── interpreterGenerator_sparc.hpp │ │ │ │ ├── interpreterRT_sparc.cpp │ │ │ │ ├── interpreterRT_sparc.hpp │ │ │ │ ├── interpreter_sparc.cpp │ │ │ │ ├── interpreter_sparc.hpp │ │ │ │ ├── javaFrameAnchor_sparc.hpp │ │ │ │ ├── jniFastGetField_sparc.cpp │ │ │ │ ├── jniTypes_sparc.hpp │ │ │ │ ├── jni_sparc.h │ │ │ │ ├── macroAssembler_sparc.cpp │ │ │ │ ├── macroAssembler_sparc.hpp │ │ │ │ ├── macroAssembler_sparc.inline.hpp │ │ │ │ ├── metaspaceShared_sparc.cpp │ │ │ │ ├── methodHandles_sparc.cpp │ │ │ │ ├── methodHandles_sparc.hpp │ │ │ │ ├── nativeInst_sparc.cpp │ │ │ │ ├── nativeInst_sparc.hpp │ │ │ │ ├── registerMap_sparc.hpp │ │ │ │ ├── register_definitions_sparc.cpp │ │ │ │ ├── register_sparc.cpp │ │ │ │ ├── register_sparc.hpp │ │ │ │ ├── relocInfo_sparc.cpp │ │ │ │ ├── relocInfo_sparc.hpp │ │ │ │ ├── runtime_sparc.cpp │ │ │ │ ├── sharedRuntime_sparc.cpp │ │ │ │ ├── sparc.ad │ │ │ │ ├── stubGenerator_sparc.cpp │ │ │ │ ├── stubRoutines_sparc.cpp │ │ │ │ ├── stubRoutines_sparc.hpp │ │ │ │ ├── templateInterpreterGenerator_sparc.hpp │ │ │ │ ├── templateInterpreter_sparc.cpp │ │ │ │ ├── templateInterpreter_sparc.hpp │ │ │ │ ├── templateTable_sparc.cpp │ │ │ │ ├── templateTable_sparc.hpp │ │ │ │ ├── vmStructs_sparc.hpp │ │ │ │ ├── vm_version_sparc.cpp │ │ │ │ ├── vm_version_sparc.hpp │ │ │ │ ├── vmreg_sparc.cpp │ │ │ │ ├── vmreg_sparc.hpp │ │ │ │ ├── vmreg_sparc.inline.hpp │ │ │ │ └── vtableStubs_sparc.cpp │ │ ├── x86 │ │ │ └── vm │ │ │ │ ├── assembler_x86.cpp │ │ │ │ ├── assembler_x86.hpp │ │ │ │ ├── assembler_x86.inline.hpp │ │ │ │ ├── bytecodeInterpreter_x86.cpp │ │ │ │ ├── bytecodeInterpreter_x86.hpp │ │ │ │ ├── bytecodeInterpreter_x86.inline.hpp │ │ │ │ ├── bytecodes_x86.cpp │ │ │ │ ├── bytecodes_x86.hpp │ │ │ │ ├── bytes_x86.hpp │ │ │ │ ├── c1_CodeStubs_x86.cpp │ │ │ │ ├── c1_Defs_x86.hpp │ │ │ │ ├── c1_FpuStackSim_x86.cpp │ │ │ │ ├── c1_FpuStackSim_x86.hpp │ │ │ │ ├── c1_FrameMap_x86.cpp │ │ │ │ ├── c1_FrameMap_x86.hpp │ │ │ │ ├── c1_LIRAssembler_x86.cpp │ │ │ │ ├── c1_LIRAssembler_x86.hpp │ │ │ │ ├── c1_LIRGenerator_x86.cpp │ │ │ │ ├── c1_LinearScan_x86.cpp │ │ │ │ ├── c1_LinearScan_x86.hpp │ │ │ │ ├── c1_MacroAssembler_x86.cpp │ │ │ │ ├── c1_MacroAssembler_x86.hpp │ │ │ │ ├── c1_Runtime1_x86.cpp │ │ │ │ ├── c1_globals_x86.hpp │ │ │ │ ├── c2_globals_x86.hpp │ │ │ │ ├── c2_init_x86.cpp │ │ │ │ ├── codeBuffer_x86.hpp │ │ │ │ ├── compiledIC_x86.cpp │ │ │ │ ├── copy_x86.hpp │ │ │ │ ├── cppInterpreterGenerator_x86.hpp │ │ │ │ ├── cppInterpreter_x86.cpp │ │ │ │ ├── cppInterpreter_x86.hpp │ │ │ │ ├── debug_x86.cpp │ │ │ │ ├── depChecker_x86.cpp │ │ │ │ ├── depChecker_x86.hpp │ │ │ │ ├── disassembler_x86.hpp │ │ │ │ ├── frame_x86.cpp │ │ │ │ ├── frame_x86.hpp │ │ │ │ ├── frame_x86.inline.hpp │ │ │ │ ├── globalDefinitions_x86.hpp │ │ │ │ ├── globals_x86.hpp │ │ │ │ ├── icBuffer_x86.cpp │ │ │ │ ├── icache_x86.cpp │ │ │ │ ├── icache_x86.hpp │ │ │ │ ├── interp_masm_x86.cpp │ │ │ │ ├── interp_masm_x86.hpp │ │ │ │ ├── interp_masm_x86_32.cpp │ │ │ │ ├── interp_masm_x86_32.hpp │ │ │ │ ├── interp_masm_x86_64.cpp │ │ │ │ ├── interp_masm_x86_64.hpp │ │ │ │ ├── interpreterGenerator_x86.hpp │ │ │ │ ├── interpreterRT_x86.hpp │ │ │ │ ├── interpreterRT_x86_32.cpp │ │ │ │ ├── interpreterRT_x86_64.cpp │ │ │ │ ├── interpreter_x86.hpp │ │ │ │ ├── interpreter_x86_32.cpp │ │ │ │ ├── interpreter_x86_64.cpp │ │ │ │ ├── javaFrameAnchor_x86.hpp │ │ │ │ ├── jniFastGetField_x86_32.cpp │ │ │ │ ├── jniFastGetField_x86_64.cpp │ │ │ │ ├── jniTypes_x86.hpp │ │ │ │ ├── jni_x86.h │ │ │ │ ├── macroAssembler_x86.cpp │ │ │ │ ├── macroAssembler_x86.hpp │ │ │ │ ├── metaspaceShared_x86_32.cpp │ │ │ │ ├── metaspaceShared_x86_64.cpp │ │ │ │ ├── methodHandles_x86.cpp │ │ │ │ ├── methodHandles_x86.hpp │ │ │ │ ├── nativeInst_x86.cpp │ │ │ │ ├── nativeInst_x86.hpp │ │ │ │ ├── registerMap_x86.hpp │ │ │ │ ├── register_definitions_x86.cpp │ │ │ │ ├── register_x86.cpp │ │ │ │ ├── register_x86.hpp │ │ │ │ ├── relocInfo_x86.cpp │ │ │ │ ├── relocInfo_x86.hpp │ │ │ │ ├── runtime_x86_32.cpp │ │ │ │ ├── runtime_x86_64.cpp │ │ │ │ ├── sharedRuntime_x86_32.cpp │ │ │ │ ├── sharedRuntime_x86_64.cpp │ │ │ │ ├── stubGenerator_x86_32.cpp │ │ │ │ ├── stubGenerator_x86_64.cpp │ │ │ │ ├── stubRoutines_x86.cpp │ │ │ │ ├── stubRoutines_x86.hpp │ │ │ │ ├── stubRoutines_x86_32.cpp │ │ │ │ ├── stubRoutines_x86_32.hpp │ │ │ │ ├── stubRoutines_x86_64.cpp │ │ │ │ ├── stubRoutines_x86_64.hpp │ │ │ │ ├── templateInterpreterGenerator_x86.hpp │ │ │ │ ├── templateInterpreter_x86.hpp │ │ │ │ ├── templateInterpreter_x86_32.cpp │ │ │ │ ├── templateInterpreter_x86_64.cpp │ │ │ │ ├── templateTable_x86_32.cpp │ │ │ │ ├── templateTable_x86_32.hpp │ │ │ │ ├── templateTable_x86_64.cpp │ │ │ │ ├── templateTable_x86_64.hpp │ │ │ │ ├── vmStructs_x86.hpp │ │ │ │ ├── vm_version_x86.cpp │ │ │ │ ├── vm_version_x86.hpp │ │ │ │ ├── vmreg_x86.cpp │ │ │ │ ├── vmreg_x86.hpp │ │ │ │ ├── vmreg_x86.inline.hpp │ │ │ │ ├── vtableStubs_x86_32.cpp │ │ │ │ ├── vtableStubs_x86_64.cpp │ │ │ │ ├── x86.ad │ │ │ │ ├── x86_32.ad │ │ │ │ └── x86_64.ad │ │ └── zero │ │ │ └── vm │ │ │ ├── assembler_zero.cpp │ │ │ ├── assembler_zero.hpp │ │ │ ├── assembler_zero.inline.hpp │ │ │ ├── bytecodeInterpreter_zero.cpp │ │ │ ├── bytecodeInterpreter_zero.hpp │ │ │ ├── bytecodeInterpreter_zero.inline.hpp │ │ │ ├── bytecodes_zero.cpp │ │ │ ├── bytecodes_zero.hpp │ │ │ ├── bytes_zero.hpp │ │ │ ├── codeBuffer_zero.hpp │ │ │ ├── compiledIC_zero.cpp │ │ │ ├── copy_zero.hpp │ │ │ ├── cppInterpreterGenerator_zero.hpp │ │ │ ├── cppInterpreter_zero.cpp │ │ │ ├── cppInterpreter_zero.hpp │ │ │ ├── debug_zero.cpp │ │ │ ├── depChecker_zero.cpp │ │ │ ├── depChecker_zero.hpp │ │ │ ├── disassembler_zero.cpp │ │ │ ├── disassembler_zero.hpp │ │ │ ├── entryFrame_zero.hpp │ │ │ ├── entry_zero.hpp │ │ │ ├── fakeStubFrame_zero.hpp │ │ │ ├── frame_zero.cpp │ │ │ ├── frame_zero.hpp │ │ │ ├── frame_zero.inline.hpp │ │ │ ├── globalDefinitions_zero.hpp │ │ │ ├── globals_zero.hpp │ │ │ ├── icBuffer_zero.cpp │ │ │ ├── icache_zero.cpp │ │ │ ├── icache_zero.hpp │ │ │ ├── interp_masm_zero.cpp │ │ │ ├── interp_masm_zero.hpp │ │ │ ├── interpreterFrame_zero.hpp │ │ │ ├── interpreterGenerator_zero.hpp │ │ │ ├── interpreterRT_zero.cpp │ │ │ ├── interpreterRT_zero.hpp │ │ │ ├── interpreter_zero.cpp │ │ │ ├── interpreter_zero.hpp │ │ │ ├── javaFrameAnchor_zero.hpp │ │ │ ├── jniFastGetField_zero.cpp │ │ │ ├── jniTypes_zero.hpp │ │ │ ├── jni_zero.h │ │ │ ├── metaspaceShared_zero.cpp │ │ │ ├── methodHandles_zero.cpp │ │ │ ├── methodHandles_zero.hpp │ │ │ ├── nativeInst_zero.cpp │ │ │ ├── nativeInst_zero.hpp │ │ │ ├── registerMap_zero.hpp │ │ │ ├── register_definitions_zero.cpp │ │ │ ├── register_zero.cpp │ │ │ ├── register_zero.hpp │ │ │ ├── relocInfo_zero.cpp │ │ │ ├── relocInfo_zero.hpp │ │ │ ├── sharedRuntime_zero.cpp │ │ │ ├── sharkFrame_zero.hpp │ │ │ ├── shark_globals_zero.hpp │ │ │ ├── stack_zero.cpp │ │ │ ├── stack_zero.hpp │ │ │ ├── stack_zero.inline.hpp │ │ │ ├── stubGenerator_zero.cpp │ │ │ ├── stubRoutines_zero.cpp │ │ │ ├── stubRoutines_zero.hpp │ │ │ ├── templateInterpreterGenerator_zero.hpp │ │ │ ├── templateInterpreter_zero.cpp │ │ │ ├── templateInterpreter_zero.hpp │ │ │ ├── templateTable_zero.cpp │ │ │ ├── templateTable_zero.hpp │ │ │ ├── vmStructs_zero.hpp │ │ │ ├── vm_version_zero.cpp │ │ │ ├── vm_version_zero.hpp │ │ │ ├── vmreg_zero.cpp │ │ │ ├── vmreg_zero.hpp │ │ │ ├── vmreg_zero.inline.hpp │ │ │ └── vtableStubs_zero.cpp │ ├── os │ │ ├── bsd │ │ │ ├── dtrace │ │ │ │ ├── generateJvmOffsets.cpp │ │ │ │ ├── generateJvmOffsets.h │ │ │ │ ├── generateJvmOffsetsMain.c │ │ │ │ ├── hotspot.d │ │ │ │ ├── hotspot_jni.d │ │ │ │ ├── hs_private.d │ │ │ │ ├── jhelper.d │ │ │ │ ├── jvm_dtrace.c │ │ │ │ ├── jvm_dtrace.h │ │ │ │ ├── libjvm_db.c │ │ │ │ └── libjvm_db.h │ │ │ ├── launcher │ │ │ │ └── Info-privileged.plist │ │ │ └── vm │ │ │ │ ├── attachListener_bsd.cpp │ │ │ │ ├── c1_globals_bsd.hpp │ │ │ │ ├── c2_globals_bsd.hpp │ │ │ │ ├── decoder_machO.cpp │ │ │ │ ├── decoder_machO.hpp │ │ │ │ ├── dtraceJSDT_bsd.cpp │ │ │ │ ├── globals_bsd.hpp │ │ │ │ ├── interfaceSupport_bsd.hpp │ │ │ │ ├── jsig.c │ │ │ │ ├── jvm_bsd.cpp │ │ │ │ ├── jvm_bsd.h │ │ │ │ ├── mutex_bsd.cpp │ │ │ │ ├── mutex_bsd.inline.hpp │ │ │ │ ├── osThread_bsd.cpp │ │ │ │ ├── osThread_bsd.hpp │ │ │ │ ├── os_bsd.cpp │ │ │ │ ├── os_bsd.hpp │ │ │ │ ├── os_bsd.inline.hpp │ │ │ │ ├── os_share_bsd.hpp │ │ │ │ ├── perfMemory_bsd.cpp │ │ │ │ ├── stubRoutines_bsd.cpp │ │ │ │ ├── threadCritical_bsd.cpp │ │ │ │ ├── thread_bsd.inline.hpp │ │ │ │ └── vmError_bsd.cpp │ │ ├── linux │ │ │ └── vm │ │ │ │ ├── attachListener_linux.cpp │ │ │ │ ├── c1_globals_linux.hpp │ │ │ │ ├── c2_globals_linux.hpp │ │ │ │ ├── decoder_linux.cpp │ │ │ │ ├── dtraceJSDT_linux.cpp │ │ │ │ ├── globals_linux.hpp │ │ │ │ ├── interfaceSupport_linux.hpp │ │ │ │ ├── jsig.c │ │ │ │ ├── jvm_linux.cpp │ │ │ │ ├── jvm_linux.h │ │ │ │ ├── mutex_linux.cpp │ │ │ │ ├── mutex_linux.inline.hpp │ │ │ │ ├── osThread_linux.cpp │ │ │ │ ├── osThread_linux.hpp │ │ │ │ ├── os_linux.cpp │ │ │ │ ├── os_linux.hpp │ │ │ │ ├── os_linux.inline.hpp │ │ │ │ ├── os_share_linux.hpp │ │ │ │ ├── perfMemory_linux.cpp │ │ │ │ ├── stubRoutines_linux.cpp │ │ │ │ ├── threadCritical_linux.cpp │ │ │ │ ├── thread_linux.inline.hpp │ │ │ │ └── vmError_linux.cpp │ │ ├── posix │ │ │ └── vm │ │ │ │ ├── os_posix.cpp │ │ │ │ └── os_posix.hpp │ │ ├── solaris │ │ │ ├── add_gnu_debuglink │ │ │ │ └── add_gnu_debuglink.c │ │ │ ├── dtrace │ │ │ │ ├── generateJvmOffsets.cpp │ │ │ │ ├── generateJvmOffsets.h │ │ │ │ ├── generateJvmOffsetsMain.c │ │ │ │ ├── hotspot.d │ │ │ │ ├── hotspot_jni.d │ │ │ │ ├── hs_private.d │ │ │ │ ├── jhelper.d │ │ │ │ ├── jvm_dtrace.c │ │ │ │ ├── jvm_dtrace.h │ │ │ │ ├── libjvm_db.c │ │ │ │ └── libjvm_db.h │ │ │ ├── fix_empty_sec_hdr_flags │ │ │ │ └── fix_empty_sec_hdr_flags.c │ │ │ └── vm │ │ │ │ ├── attachListener_solaris.cpp │ │ │ │ ├── c1_globals_solaris.hpp │ │ │ │ ├── c2_globals_solaris.hpp │ │ │ │ ├── decoder_solaris.cpp │ │ │ │ ├── dtraceJSDT_solaris.cpp │ │ │ │ ├── globals_solaris.hpp │ │ │ │ ├── interfaceSupport_solaris.hpp │ │ │ │ ├── jsig.c │ │ │ │ ├── jvm_solaris.cpp │ │ │ │ ├── jvm_solaris.h │ │ │ │ ├── mutex_solaris.cpp │ │ │ │ ├── mutex_solaris.inline.hpp │ │ │ │ ├── osThread_solaris.cpp │ │ │ │ ├── osThread_solaris.hpp │ │ │ │ ├── os_share_solaris.hpp │ │ │ │ ├── os_solaris.cpp │ │ │ │ ├── os_solaris.hpp │ │ │ │ ├── os_solaris.inline.hpp │ │ │ │ ├── perfMemory_solaris.cpp │ │ │ │ ├── stubRoutines_solaris.cpp │ │ │ │ ├── threadCritical_solaris.cpp │ │ │ │ ├── thread_solaris.inline.hpp │ │ │ │ └── vmError_solaris.cpp │ │ └── windows │ │ │ └── vm │ │ │ ├── attachListener_windows.cpp │ │ │ ├── c1_globals_windows.hpp │ │ │ ├── c2_globals_windows.hpp │ │ │ ├── decoder_windows.cpp │ │ │ ├── decoder_windows.hpp │ │ │ ├── dtraceJSDT_windows.cpp │ │ │ ├── globals_windows.hpp │ │ │ ├── interfaceSupport_windows.hpp │ │ │ ├── jvm_windows.cpp │ │ │ ├── jvm_windows.h │ │ │ ├── mutex_windows.cpp │ │ │ ├── mutex_windows.inline.hpp │ │ │ ├── osThread_windows.cpp │ │ │ ├── osThread_windows.hpp │ │ │ ├── os_share_windows.hpp │ │ │ ├── os_windows.cpp │ │ │ ├── os_windows.hpp │ │ │ ├── os_windows.inline.hpp │ │ │ ├── perfMemory_windows.cpp │ │ │ ├── stubRoutines_windows.cpp │ │ │ ├── threadCritical_windows.cpp │ │ │ ├── thread_windows.inline.hpp │ │ │ ├── version.rc │ │ │ └── vmError_windows.cpp │ ├── os_cpu │ │ ├── bsd_x86 │ │ │ └── vm │ │ │ │ ├── assembler_bsd_x86.cpp │ │ │ │ ├── atomic_bsd_x86.inline.hpp │ │ │ │ ├── bsd_x86_32.s │ │ │ │ ├── bsd_x86_64.s │ │ │ │ ├── bytes_bsd_x86.inline.hpp │ │ │ │ ├── copy_bsd_x86.inline.hpp │ │ │ │ ├── globals_bsd_x86.hpp │ │ │ │ ├── orderAccess_bsd_x86.inline.hpp │ │ │ │ ├── os_bsd_x86.cpp │ │ │ │ ├── os_bsd_x86.hpp │ │ │ │ ├── os_bsd_x86.inline.hpp │ │ │ │ ├── prefetch_bsd_x86.inline.hpp │ │ │ │ ├── threadLS_bsd_x86.cpp │ │ │ │ ├── threadLS_bsd_x86.hpp │ │ │ │ ├── thread_bsd_x86.cpp │ │ │ │ ├── thread_bsd_x86.hpp │ │ │ │ ├── vmStructs_bsd_x86.hpp │ │ │ │ └── vm_version_bsd_x86.cpp │ │ ├── bsd_zero │ │ │ └── vm │ │ │ │ ├── assembler_bsd_zero.cpp │ │ │ │ ├── atomic_bsd_zero.inline.hpp │ │ │ │ ├── bytes_bsd_zero.inline.hpp │ │ │ │ ├── globals_bsd_zero.hpp │ │ │ │ ├── orderAccess_bsd_zero.inline.hpp │ │ │ │ ├── os_bsd_zero.cpp │ │ │ │ ├── os_bsd_zero.hpp │ │ │ │ ├── prefetch_bsd_zero.inline.hpp │ │ │ │ ├── threadLS_bsd_zero.cpp │ │ │ │ ├── threadLS_bsd_zero.hpp │ │ │ │ ├── thread_bsd_zero.cpp │ │ │ │ ├── thread_bsd_zero.hpp │ │ │ │ ├── vmStructs_bsd_zero.hpp │ │ │ │ └── vm_version_bsd_zero.cpp │ │ ├── linux_sparc │ │ │ └── vm │ │ │ │ ├── atomic_linux_sparc.inline.hpp │ │ │ │ ├── globals_linux_sparc.hpp │ │ │ │ ├── linux_sparc.ad │ │ │ │ ├── linux_sparc.s │ │ │ │ ├── orderAccess_linux_sparc.inline.hpp │ │ │ │ ├── os_linux_sparc.cpp │ │ │ │ ├── os_linux_sparc.hpp │ │ │ │ ├── prefetch_linux_sparc.inline.hpp │ │ │ │ ├── threadLS_linux_sparc.cpp │ │ │ │ ├── threadLS_linux_sparc.hpp │ │ │ │ ├── thread_linux_sparc.cpp │ │ │ │ ├── thread_linux_sparc.hpp │ │ │ │ ├── vmStructs_linux_sparc.hpp │ │ │ │ └── vm_version_linux_sparc.cpp │ │ ├── linux_x86 │ │ │ └── vm │ │ │ │ ├── assembler_linux_x86.cpp │ │ │ │ ├── atomic_linux_x86.inline.hpp │ │ │ │ ├── bytes_linux_x86.inline.hpp │ │ │ │ ├── copy_linux_x86.inline.hpp │ │ │ │ ├── globals_linux_x86.hpp │ │ │ │ ├── linux_x86_32.s │ │ │ │ ├── linux_x86_64.s │ │ │ │ ├── orderAccess_linux_x86.inline.hpp │ │ │ │ ├── os_linux_x86.cpp │ │ │ │ ├── os_linux_x86.hpp │ │ │ │ ├── os_linux_x86.inline.hpp │ │ │ │ ├── prefetch_linux_x86.inline.hpp │ │ │ │ ├── threadLS_linux_x86.cpp │ │ │ │ ├── threadLS_linux_x86.hpp │ │ │ │ ├── thread_linux_x86.cpp │ │ │ │ ├── thread_linux_x86.hpp │ │ │ │ ├── vmStructs_linux_x86.hpp │ │ │ │ └── vm_version_linux_x86.cpp │ │ ├── linux_zero │ │ │ └── vm │ │ │ │ ├── assembler_linux_zero.cpp │ │ │ │ ├── atomic_linux_zero.inline.hpp │ │ │ │ ├── bytes_linux_zero.inline.hpp │ │ │ │ ├── globals_linux_zero.hpp │ │ │ │ ├── orderAccess_linux_zero.inline.hpp │ │ │ │ ├── os_linux_zero.cpp │ │ │ │ ├── os_linux_zero.hpp │ │ │ │ ├── prefetch_linux_zero.inline.hpp │ │ │ │ ├── threadLS_linux_zero.cpp │ │ │ │ ├── threadLS_linux_zero.hpp │ │ │ │ ├── thread_linux_zero.cpp │ │ │ │ ├── thread_linux_zero.hpp │ │ │ │ ├── vmStructs_linux_zero.hpp │ │ │ │ └── vm_version_linux_zero.cpp │ │ ├── solaris_sparc │ │ │ └── vm │ │ │ │ ├── atomic_solaris_sparc.inline.hpp │ │ │ │ ├── globals_solaris_sparc.hpp │ │ │ │ ├── orderAccess_solaris_sparc.inline.hpp │ │ │ │ ├── os_solaris_sparc.cpp │ │ │ │ ├── os_solaris_sparc.hpp │ │ │ │ ├── prefetch_solaris_sparc.inline.hpp │ │ │ │ ├── solaris_sparc.il │ │ │ │ ├── solaris_sparc.s │ │ │ │ ├── threadLS_solaris_sparc.cpp │ │ │ │ ├── threadLS_solaris_sparc.hpp │ │ │ │ ├── thread_solaris_sparc.cpp │ │ │ │ ├── thread_solaris_sparc.hpp │ │ │ │ ├── vmStructs_solaris_sparc.hpp │ │ │ │ └── vm_version_solaris_sparc.cpp │ │ ├── solaris_x86 │ │ │ └── vm │ │ │ │ ├── assembler_solaris_x86.cpp │ │ │ │ ├── atomic_solaris_x86.inline.hpp │ │ │ │ ├── bytes_solaris_x86.inline.hpp │ │ │ │ ├── copy_solaris_x86.inline.hpp │ │ │ │ ├── globals_solaris_x86.hpp │ │ │ │ ├── orderAccess_solaris_x86.inline.hpp │ │ │ │ ├── os_solaris_x86.cpp │ │ │ │ ├── os_solaris_x86.hpp │ │ │ │ ├── os_solaris_x86.inline.hpp │ │ │ │ ├── prefetch_solaris_x86.inline.hpp │ │ │ │ ├── solaris_x86_32.il │ │ │ │ ├── solaris_x86_32.s │ │ │ │ ├── solaris_x86_64.il │ │ │ │ ├── solaris_x86_64.s │ │ │ │ ├── threadLS_solaris_x86.cpp │ │ │ │ ├── threadLS_solaris_x86.hpp │ │ │ │ ├── thread_solaris_x86.cpp │ │ │ │ ├── thread_solaris_x86.hpp │ │ │ │ ├── vmStructs_solaris_x86.hpp │ │ │ │ └── vm_version_solaris_x86.cpp │ │ └── windows_x86 │ │ │ └── vm │ │ │ ├── assembler_windows_x86.cpp │ │ │ ├── atomic_windows_x86.inline.hpp │ │ │ ├── bytes_windows_x86.inline.hpp │ │ │ ├── copy_windows_x86.inline.hpp │ │ │ ├── globals_windows_x86.hpp │ │ │ ├── orderAccess_windows_x86.inline.hpp │ │ │ ├── os_windows_x86.cpp │ │ │ ├── os_windows_x86.hpp │ │ │ ├── os_windows_x86.inline.hpp │ │ │ ├── prefetch_windows_x86.inline.hpp │ │ │ ├── threadLS_windows_x86.cpp │ │ │ ├── threadLS_windows_x86.hpp │ │ │ ├── thread_windows_x86.cpp │ │ │ ├── thread_windows_x86.hpp │ │ │ ├── unwind_windows_x86.hpp │ │ │ ├── vmStructs_windows_x86.hpp │ │ │ └── vm_version_windows_x86.cpp │ └── share │ │ ├── tools │ │ ├── IdealGraphVisualizer │ │ │ ├── BatikSVGProxy │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── svg │ │ │ │ │ ├── BatikSVG.java │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ └── layer.xml │ │ │ ├── Bytecodes │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── bytecodes │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── BytecodeNode.java │ │ │ │ │ ├── BytecodeViewAction.java │ │ │ │ │ ├── BytecodeViewTopComponent.form │ │ │ │ │ ├── BytecodeViewTopComponent.java │ │ │ │ │ ├── BytecodeViewTopComponentSettings.xml │ │ │ │ │ ├── BytecodeViewTopComponentWstcref.xml │ │ │ │ │ ├── MethodNode.java │ │ │ │ │ ├── SelectBytecodesAction.java │ │ │ │ │ ├── SelectBytecodesCookie.java │ │ │ │ │ ├── images │ │ │ │ │ ├── bytecode.gif │ │ │ │ │ ├── link.gif │ │ │ │ │ └── method.gif │ │ │ │ │ └── layer.xml │ │ │ ├── ControlFlow │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── controlflow │ │ │ │ │ ├── BlockConnectionWidget.java │ │ │ │ │ ├── BlockWidget.java │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── ControlFlowAction.java │ │ │ │ │ ├── ControlFlowScene.java │ │ │ │ │ ├── ControlFlowTopComponent.form │ │ │ │ │ ├── ControlFlowTopComponent.java │ │ │ │ │ ├── ControlFlowTopComponentSettings.xml │ │ │ │ │ ├── ControlFlowTopComponentWstcref.xml │ │ │ │ │ ├── HierarchicalGraphLayout.java │ │ │ │ │ └── layer.xml │ │ │ ├── Coordinator │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── com.sun.hotspot.igv.data.services.GroupOrganizer │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── coordinator │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── FolderNode.java │ │ │ │ │ ├── GraphCountGroupOrganizer.java │ │ │ │ │ ├── GraphNode.java │ │ │ │ │ ├── OutlineTopComponent.form │ │ │ │ │ ├── OutlineTopComponent.java │ │ │ │ │ ├── OutlineTopComponentSettings.xml │ │ │ │ │ ├── OutlineTopComponentWstcref.xml │ │ │ │ │ ├── StandardConfiguration.xml │ │ │ │ │ ├── StandardGroupOrganizer.java │ │ │ │ │ ├── actions │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── DiffGraphAction.java │ │ │ │ │ ├── DiffGraphCookie.java │ │ │ │ │ ├── ImportAction.java │ │ │ │ │ ├── OutlineAction.java │ │ │ │ │ ├── RemoveAction.java │ │ │ │ │ ├── RemoveAllAction.java │ │ │ │ │ ├── RemoveCookie.java │ │ │ │ │ ├── SaveAllAction.java │ │ │ │ │ ├── SaveAsAction.java │ │ │ │ │ └── StructuredViewAction.java │ │ │ │ │ ├── customLeftWsmode.xml │ │ │ │ │ ├── images │ │ │ │ │ ├── diff.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── graph.gif │ │ │ │ │ ├── import.gif │ │ │ │ │ ├── remove.gif │ │ │ │ │ ├── removeall.gif │ │ │ │ │ ├── save.gif │ │ │ │ │ ├── saveall.gif │ │ │ │ │ ├── structure.gif │ │ │ │ │ └── structured.gif │ │ │ │ │ └── layer.xml │ │ │ ├── Data │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── data │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── ChangedEvent.java │ │ │ │ │ ├── ChangedEventProvider.java │ │ │ │ │ ├── ChangedListener.java │ │ │ │ │ ├── Event.java │ │ │ │ │ ├── GraphDocument.java │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── InputBlock.java │ │ │ │ │ ├── InputBlockEdge.java │ │ │ │ │ ├── InputBytecode.java │ │ │ │ │ ├── InputEdge.java │ │ │ │ │ ├── InputGraph.java │ │ │ │ │ ├── InputMethod.java │ │ │ │ │ ├── InputNode.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── Properties.java │ │ │ │ │ ├── Property.java │ │ │ │ │ ├── serialization │ │ │ │ │ ├── Parser.java │ │ │ │ │ ├── Printer.java │ │ │ │ │ ├── XMLParser.java │ │ │ │ │ └── XMLWriter.java │ │ │ │ │ └── services │ │ │ │ │ ├── GraphViewer.java │ │ │ │ │ ├── GroupCallback.java │ │ │ │ │ ├── GroupOrganizer.java │ │ │ │ │ ├── GroupReceiver.java │ │ │ │ │ ├── InputGraphProvider.java │ │ │ │ │ └── Scheduler.java │ │ │ ├── Difference │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── difference │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ └── Difference.java │ │ │ ├── Filter │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── com.sun.hotspot.igv.filter.ScriptEngineAbstraction │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── filter │ │ │ │ │ ├── AbstractFilter.java │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── ColorFilter.java │ │ │ │ │ ├── CombineFilter.java │ │ │ │ │ ├── ConnectionFilter.java │ │ │ │ │ ├── CustomFilter.java │ │ │ │ │ ├── EditFilterDialog.form │ │ │ │ │ ├── EditFilterDialog.java │ │ │ │ │ ├── Filter.java │ │ │ │ │ ├── FilterChain.java │ │ │ │ │ ├── FilterChainProvider.java │ │ │ │ │ ├── FilterSetting.java │ │ │ │ │ ├── JavaSE6ScriptEngine.java │ │ │ │ │ ├── NullScriptEngine.java │ │ │ │ │ ├── RemoveFilter.java │ │ │ │ │ ├── RemoveInputsFilter.java │ │ │ │ │ ├── RemoveSelfLoopsFilter.java │ │ │ │ │ ├── ScriptEngineAbstraction.java │ │ │ │ │ ├── SplitFilter.java │ │ │ │ │ ├── helper.js │ │ │ │ │ └── layer.xml │ │ │ ├── FilterWindow │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── com.sun.hotspot.igv.filter.FilterChainProvider │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── filterwindow │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── CheckListView.java │ │ │ │ │ ├── CheckNode.java │ │ │ │ │ ├── CheckNodeListModel.java │ │ │ │ │ ├── CheckRenderer.java │ │ │ │ │ ├── FilterChainProviderImplementation.java │ │ │ │ │ ├── FilterNode.java │ │ │ │ │ ├── FilterTopComponent.form │ │ │ │ │ ├── FilterTopComponent.java │ │ │ │ │ ├── FilterTopComponentSettings.xml │ │ │ │ │ ├── FilterTopComponentWstcref.xml │ │ │ │ │ ├── actions │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── FilterAction.java │ │ │ │ │ ├── MoveFilterDownAction.java │ │ │ │ │ ├── MoveFilterUpAction.java │ │ │ │ │ ├── NewFilterAction.java │ │ │ │ │ ├── RemoveFilterAction.java │ │ │ │ │ ├── RemoveFilterSettingsAction.java │ │ │ │ │ └── SaveFilterSettingsAction.java │ │ │ │ │ ├── customRightTopWsmode.xml │ │ │ │ │ ├── images │ │ │ │ │ ├── add.gif │ │ │ │ │ ├── delete.gif │ │ │ │ │ ├── down.gif │ │ │ │ │ ├── minus.gif │ │ │ │ │ ├── plus.gif │ │ │ │ │ └── up.gif │ │ │ │ │ └── layer.xml │ │ │ ├── Graph │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── graph │ │ │ │ │ ├── AndSelector.java │ │ │ │ │ ├── Block.java │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── Connection.java │ │ │ │ │ ├── Diagram.java │ │ │ │ │ ├── Figure.java │ │ │ │ │ ├── InputSlot.java │ │ │ │ │ ├── InvertSelector.java │ │ │ │ │ ├── MatcherSelector.java │ │ │ │ │ ├── OrSelector.java │ │ │ │ │ ├── OutputSlot.java │ │ │ │ │ ├── PredecessorSelector.java │ │ │ │ │ ├── Selector.java │ │ │ │ │ ├── Slot.java │ │ │ │ │ ├── Source.java │ │ │ │ │ └── SuccessorSelector.java │ │ │ ├── HierarchicalLayout │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── hierarchicallayout │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── ClusterEdge.java │ │ │ │ │ ├── ClusterIngoingConnection.java │ │ │ │ │ ├── ClusterInputSlotNode.java │ │ │ │ │ ├── ClusterNode.java │ │ │ │ │ ├── ClusterOutgoingConnection.java │ │ │ │ │ ├── ClusterOutputSlotNode.java │ │ │ │ │ ├── Edge.java │ │ │ │ │ ├── Graph.java │ │ │ │ │ ├── HierarchicalClusterLayoutManager.java │ │ │ │ │ ├── HierarchicalLayoutManager.java │ │ │ │ │ ├── InterClusterConnection.java │ │ │ │ │ ├── Node.java │ │ │ │ │ ├── OldHierarchicalLayoutManager.java │ │ │ │ │ └── Timing.java │ │ │ ├── Layout │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── layout │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── Cluster.java │ │ │ │ │ ├── LayoutGraph.java │ │ │ │ │ ├── LayoutManager.java │ │ │ │ │ ├── Link.java │ │ │ │ │ ├── Port.java │ │ │ │ │ └── Vertex.java │ │ │ ├── NetworkConnection │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── com.sun.hotspot.igv.data.services.GroupReceiver │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── connection │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── Client.java │ │ │ │ │ ├── Server.java │ │ │ │ │ └── layer.xml │ │ │ ├── README │ │ │ ├── RhinoScriptEngineProxy │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── com.sun.hotspot.igv.filter.ScriptEngineAbstraction │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── rhino │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── RhinoScriptEngine.java │ │ │ │ │ └── layer.xml │ │ │ ├── ServerCompiler │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ ├── com.sun.hotspot.igv.data.services.GroupOrganizer │ │ │ │ │ │ └── com.sun.hotspot.igv.data.services.Scheduler │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── servercompiler │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── JavaGroupOrganizer.java │ │ │ │ │ ├── ServerCompilerScheduler.java │ │ │ │ │ ├── filters │ │ │ │ │ ├── color.filter │ │ │ │ │ ├── combine.filter │ │ │ │ │ ├── difference.filter │ │ │ │ │ ├── extendedColor.filter │ │ │ │ │ ├── linestyle.filter │ │ │ │ │ ├── matchingFlags.filter │ │ │ │ │ ├── onlyControlFlow.filter │ │ │ │ │ ├── register.filter │ │ │ │ │ ├── remove.filter │ │ │ │ │ ├── removeMemory.filter │ │ │ │ │ ├── removeRootInputs.filter │ │ │ │ │ ├── removeSafepointInputs.filter │ │ │ │ │ ├── removeSelfLoops.filter │ │ │ │ │ └── split.filter │ │ │ │ │ └── layer.xml │ │ │ ├── Settings │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── settings │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── Settings.java │ │ │ │ │ ├── ViewOptionsCategory.java │ │ │ │ │ ├── ViewOptionsPanelController.java │ │ │ │ │ ├── ViewPanel.form │ │ │ │ │ ├── ViewPanel.java │ │ │ │ │ ├── layer.xml │ │ │ │ │ └── settings.gif │ │ │ ├── Util │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── util │ │ │ │ │ ├── BoundedZoomAction.java │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── ColorIcon.java │ │ │ │ │ ├── ContextAction.java │ │ │ │ │ ├── DoubleClickAction.java │ │ │ │ │ ├── DoubleClickHandler.java │ │ │ │ │ ├── ExtendedSatelliteComponent.java │ │ │ │ │ ├── ExtendedSelectAction.java │ │ │ │ │ ├── PropertiesSheet.java │ │ │ │ │ ├── RangeSlider.java │ │ │ │ │ └── RangeSliderModel.java │ │ │ ├── View │ │ │ │ ├── build.xml │ │ │ │ ├── manifest.mf │ │ │ │ └── src │ │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ ├── com.sun.hotspot.igv.data.services.GraphViewer │ │ │ │ │ │ └── com.sun.hotspot.igv.data.services.InputGraphProvider │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── hotspot │ │ │ │ │ └── igv │ │ │ │ │ └── view │ │ │ │ │ ├── BoundedZoomAction.java │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── ConnectionAnchor.java │ │ │ │ │ ├── DiagramScene.java │ │ │ │ │ ├── DiagramViewModel.java │ │ │ │ │ ├── EditorInputGraphProvider.java │ │ │ │ │ ├── EditorTopComponent.form │ │ │ │ │ ├── EditorTopComponent.java │ │ │ │ │ ├── ExportCookie.java │ │ │ │ │ ├── ExtendedPanAction.java │ │ │ │ │ ├── ExtendedSatelliteComponent.java │ │ │ │ │ ├── FindPanel.java │ │ │ │ │ ├── GraphViewerImplementation.java │ │ │ │ │ ├── PreferenceConstants.java │ │ │ │ │ ├── SlotLayout.java │ │ │ │ │ ├── actions │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ ├── EnableBlockLayoutAction.java │ │ │ │ │ ├── ExpandPredecessorsAction.java │ │ │ │ │ ├── ExpandSuccessorsAction.java │ │ │ │ │ ├── ExportAction.java │ │ │ │ │ ├── ExtractAction.java │ │ │ │ │ ├── HideAction.java │ │ │ │ │ ├── MouseOverAction.java │ │ │ │ │ ├── NextDiagramAction.java │ │ │ │ │ ├── NodeFindAction.java │ │ │ │ │ ├── OverviewAction.java │ │ │ │ │ ├── PredSuccAction.java │ │ │ │ │ ├── PrevDiagramAction.java │ │ │ │ │ ├── ShowAllAction.java │ │ │ │ │ ├── ZoomInAction.java │ │ │ │ │ └── ZoomOutAction.java │ │ │ │ │ ├── images │ │ │ │ │ ├── blocks.gif │ │ │ │ │ ├── expand.gif │ │ │ │ │ ├── export.gif │ │ │ │ │ ├── extract.gif │ │ │ │ │ ├── hide.gif │ │ │ │ │ ├── next_diagram.png │ │ │ │ │ ├── overview.gif │ │ │ │ │ ├── predsucc.gif │ │ │ │ │ ├── prev_diagram.png │ │ │ │ │ ├── search.gif │ │ │ │ │ ├── zoomin.gif │ │ │ │ │ └── zoomout.gif │ │ │ │ │ ├── layer.xml │ │ │ │ │ └── widgets │ │ │ │ │ ├── BlockWidget.java │ │ │ │ │ ├── DiagramConnectionWidget.java │ │ │ │ │ ├── FigureWidget.java │ │ │ │ │ ├── InputSlotWidget.java │ │ │ │ │ ├── LineWidget.java │ │ │ │ │ ├── MultiConnectionWidget.java │ │ │ │ │ ├── OutputSlotWidget.java │ │ │ │ │ └── SlotWidget.java │ │ │ ├── branding │ │ │ │ ├── core │ │ │ │ │ └── core.jar │ │ │ │ │ │ └── org │ │ │ │ │ │ └── netbeans │ │ │ │ │ │ └── core │ │ │ │ │ │ └── startup │ │ │ │ │ │ ├── Bundle.properties │ │ │ │ │ │ ├── frame.gif │ │ │ │ │ │ └── splash.gif │ │ │ │ └── modules │ │ │ │ │ └── org-netbeans-core-windows.jar │ │ │ │ │ └── org │ │ │ │ │ └── netbeans │ │ │ │ │ └── core │ │ │ │ │ └── windows │ │ │ │ │ └── view │ │ │ │ │ └── ui │ │ │ │ │ └── Bundle.properties │ │ │ └── build.xml │ │ ├── LogCompilation │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── manifest.mf │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── sun │ │ │ │ └── hotspot │ │ │ │ └── tools │ │ │ │ └── compiler │ │ │ │ ├── BasicLogEvent.java │ │ │ │ ├── CallSite.java │ │ │ │ ├── Compilation.java │ │ │ │ ├── Constants.java │ │ │ │ ├── LogCleanupReader.java │ │ │ │ ├── LogCompilation.java │ │ │ │ ├── LogEvent.java │ │ │ │ ├── LogParser.java │ │ │ │ ├── MakeNotEntrantEvent.java │ │ │ │ ├── Method.java │ │ │ │ ├── NMethod.java │ │ │ │ ├── Phase.java │ │ │ │ └── UncommonTrapEvent.java │ │ ├── ProjectCreator │ │ │ ├── ArgsParser.java │ │ │ ├── BuildConfig.java │ │ │ ├── FileTreeCreator.java │ │ │ ├── FileTreeCreatorVC10.java │ │ │ ├── FileTreeCreatorVC7.java │ │ │ ├── ProjectCreator.java │ │ │ ├── Util.java │ │ │ ├── WinGammaPlatform.java │ │ │ ├── WinGammaPlatformVC10.java │ │ │ ├── WinGammaPlatformVC7.java │ │ │ ├── WinGammaPlatformVC8.java │ │ │ └── WinGammaPlatformVC9.java │ │ └── hsdis │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── hsdis-demo.c │ │ │ ├── hsdis.c │ │ │ └── hsdis.h │ │ └── vm │ │ ├── Xusage.txt │ │ ├── adlc │ │ ├── Doc │ │ │ └── Syntax.doc │ │ ├── Test │ │ │ └── i486.ad │ │ ├── adlc.hpp │ │ ├── adlparse.cpp │ │ ├── adlparse.hpp │ │ ├── archDesc.cpp │ │ ├── archDesc.hpp │ │ ├── arena.cpp │ │ ├── arena.hpp │ │ ├── dfa.cpp │ │ ├── dict2.cpp │ │ ├── dict2.hpp │ │ ├── filebuff.cpp │ │ ├── filebuff.hpp │ │ ├── forms.cpp │ │ ├── forms.hpp │ │ ├── formsopt.cpp │ │ ├── formsopt.hpp │ │ ├── formssel.cpp │ │ ├── formssel.hpp │ │ ├── main.cpp │ │ ├── output_c.cpp │ │ └── output_h.cpp │ │ ├── asm │ │ ├── assembler.cpp │ │ ├── assembler.hpp │ │ ├── assembler.inline.hpp │ │ ├── codeBuffer.cpp │ │ ├── codeBuffer.hpp │ │ ├── macroAssembler.hpp │ │ ├── macroAssembler.inline.hpp │ │ ├── register.cpp │ │ └── register.hpp │ │ ├── c1 │ │ ├── c1_CFGPrinter.cpp │ │ ├── c1_CFGPrinter.hpp │ │ ├── c1_Canonicalizer.cpp │ │ ├── c1_Canonicalizer.hpp │ │ ├── c1_CodeStubs.hpp │ │ ├── c1_Compilation.cpp │ │ ├── c1_Compilation.hpp │ │ ├── c1_Compiler.cpp │ │ ├── c1_Compiler.hpp │ │ ├── c1_Defs.cpp │ │ ├── c1_Defs.hpp │ │ ├── c1_FpuStackSim.hpp │ │ ├── c1_FrameMap.cpp │ │ ├── c1_FrameMap.hpp │ │ ├── c1_GraphBuilder.cpp │ │ ├── c1_GraphBuilder.hpp │ │ ├── c1_IR.cpp │ │ ├── c1_IR.hpp │ │ ├── c1_Instruction.cpp │ │ ├── c1_Instruction.hpp │ │ ├── c1_InstructionPrinter.cpp │ │ ├── c1_InstructionPrinter.hpp │ │ ├── c1_LIR.cpp │ │ ├── c1_LIR.hpp │ │ ├── c1_LIRAssembler.cpp │ │ ├── c1_LIRAssembler.hpp │ │ ├── c1_LIRGenerator.cpp │ │ ├── c1_LIRGenerator.hpp │ │ ├── c1_LinearScan.cpp │ │ ├── c1_LinearScan.hpp │ │ ├── c1_MacroAssembler.hpp │ │ ├── c1_Optimizer.cpp │ │ ├── c1_Optimizer.hpp │ │ ├── c1_RangeCheckElimination.cpp │ │ ├── c1_RangeCheckElimination.hpp │ │ ├── c1_Runtime1.cpp │ │ ├── c1_Runtime1.hpp │ │ ├── c1_ValueMap.cpp │ │ ├── c1_ValueMap.hpp │ │ ├── c1_ValueSet.cpp │ │ ├── c1_ValueSet.hpp │ │ ├── c1_ValueStack.cpp │ │ ├── c1_ValueStack.hpp │ │ ├── c1_ValueType.cpp │ │ ├── c1_ValueType.hpp │ │ ├── c1_globals.cpp │ │ └── c1_globals.hpp │ │ ├── ci │ │ ├── bcEscapeAnalyzer.cpp │ │ ├── bcEscapeAnalyzer.hpp │ │ ├── ciArray.cpp │ │ ├── ciArray.hpp │ │ ├── ciArrayKlass.cpp │ │ ├── ciArrayKlass.hpp │ │ ├── ciBaseObject.cpp │ │ ├── ciBaseObject.hpp │ │ ├── ciCallProfile.hpp │ │ ├── ciCallSite.cpp │ │ ├── ciCallSite.hpp │ │ ├── ciClassList.hpp │ │ ├── ciConstant.cpp │ │ ├── ciConstant.hpp │ │ ├── ciConstantPoolCache.cpp │ │ ├── ciConstantPoolCache.hpp │ │ ├── ciEnv.cpp │ │ ├── ciEnv.hpp │ │ ├── ciExceptionHandler.cpp │ │ ├── ciExceptionHandler.hpp │ │ ├── ciField.cpp │ │ ├── ciField.hpp │ │ ├── ciFlags.cpp │ │ ├── ciFlags.hpp │ │ ├── ciInstance.cpp │ │ ├── ciInstance.hpp │ │ ├── ciInstanceKlass.cpp │ │ ├── ciInstanceKlass.hpp │ │ ├── ciKlass.cpp │ │ ├── ciKlass.hpp │ │ ├── ciMemberName.cpp │ │ ├── ciMemberName.hpp │ │ ├── ciMetadata.cpp │ │ ├── ciMetadata.hpp │ │ ├── ciMethod.cpp │ │ ├── ciMethod.hpp │ │ ├── ciMethodBlocks.cpp │ │ ├── ciMethodBlocks.hpp │ │ ├── ciMethodData.cpp │ │ ├── ciMethodData.hpp │ │ ├── ciMethodHandle.cpp │ │ ├── ciMethodHandle.hpp │ │ ├── ciMethodType.hpp │ │ ├── ciNullObject.cpp │ │ ├── ciNullObject.hpp │ │ ├── ciObjArray.cpp │ │ ├── ciObjArray.hpp │ │ ├── ciObjArrayKlass.cpp │ │ ├── ciObjArrayKlass.hpp │ │ ├── ciObject.cpp │ │ ├── ciObject.hpp │ │ ├── ciObjectFactory.cpp │ │ ├── ciObjectFactory.hpp │ │ ├── ciReplay.cpp │ │ ├── ciReplay.hpp │ │ ├── ciSignature.cpp │ │ ├── ciSignature.hpp │ │ ├── ciStreams.cpp │ │ ├── ciStreams.hpp │ │ ├── ciSymbol.cpp │ │ ├── ciSymbol.hpp │ │ ├── ciType.cpp │ │ ├── ciType.hpp │ │ ├── ciTypeArray.cpp │ │ ├── ciTypeArray.hpp │ │ ├── ciTypeArrayKlass.cpp │ │ ├── ciTypeArrayKlass.hpp │ │ ├── ciTypeFlow.cpp │ │ ├── ciTypeFlow.hpp │ │ ├── ciUtilities.cpp │ │ ├── ciUtilities.hpp │ │ └── compilerInterface.hpp │ │ ├── classfile │ │ ├── altHashing.cpp │ │ ├── altHashing.hpp │ │ ├── bytecodeAssembler.cpp │ │ ├── bytecodeAssembler.hpp │ │ ├── classFileError.cpp │ │ ├── classFileParser.cpp │ │ ├── classFileParser.hpp │ │ ├── classFileStream.cpp │ │ ├── classFileStream.hpp │ │ ├── classLoader.cpp │ │ ├── classLoader.hpp │ │ ├── classLoaderData.cpp │ │ ├── classLoaderData.hpp │ │ ├── classLoaderData.inline.hpp │ │ ├── defaultMethods.cpp │ │ ├── defaultMethods.hpp │ │ ├── dictionary.cpp │ │ ├── dictionary.hpp │ │ ├── javaAssertions.cpp │ │ ├── javaAssertions.hpp │ │ ├── javaClasses.cpp │ │ ├── javaClasses.hpp │ │ ├── loaderConstraints.cpp │ │ ├── loaderConstraints.hpp │ │ ├── metadataOnStackMark.cpp │ │ ├── metadataOnStackMark.hpp │ │ ├── placeholders.cpp │ │ ├── placeholders.hpp │ │ ├── resolutionErrors.cpp │ │ ├── resolutionErrors.hpp │ │ ├── stackMapFrame.cpp │ │ ├── stackMapFrame.hpp │ │ ├── stackMapTable.cpp │ │ ├── stackMapTable.hpp │ │ ├── stackMapTableFormat.hpp │ │ ├── symbolTable.cpp │ │ ├── symbolTable.hpp │ │ ├── systemDictionary.cpp │ │ ├── systemDictionary.hpp │ │ ├── verificationType.cpp │ │ ├── verificationType.hpp │ │ ├── verifier.cpp │ │ ├── verifier.hpp │ │ ├── vmSymbols.cpp │ │ └── vmSymbols.hpp │ │ ├── code │ │ ├── codeBlob.cpp │ │ ├── codeBlob.hpp │ │ ├── codeCache.cpp │ │ ├── codeCache.hpp │ │ ├── compiledIC.cpp │ │ ├── compiledIC.hpp │ │ ├── compressedStream.cpp │ │ ├── compressedStream.hpp │ │ ├── debugInfo.cpp │ │ ├── debugInfo.hpp │ │ ├── debugInfoRec.cpp │ │ ├── debugInfoRec.hpp │ │ ├── dependencies.cpp │ │ ├── dependencies.hpp │ │ ├── exceptionHandlerTable.cpp │ │ ├── exceptionHandlerTable.hpp │ │ ├── icBuffer.cpp │ │ ├── icBuffer.hpp │ │ ├── jvmticmlr.h │ │ ├── location.cpp │ │ ├── location.hpp │ │ ├── nmethod.cpp │ │ ├── nmethod.hpp │ │ ├── oopRecorder.cpp │ │ ├── oopRecorder.hpp │ │ ├── pcDesc.cpp │ │ ├── pcDesc.hpp │ │ ├── relocInfo.cpp │ │ ├── relocInfo.hpp │ │ ├── scopeDesc.cpp │ │ ├── scopeDesc.hpp │ │ ├── stubs.cpp │ │ ├── stubs.hpp │ │ ├── vmreg.cpp │ │ ├── vmreg.hpp │ │ ├── vtableStubs.cpp │ │ └── vtableStubs.hpp │ │ ├── compiler │ │ ├── abstractCompiler.cpp │ │ ├── abstractCompiler.hpp │ │ ├── compileBroker.cpp │ │ ├── compileBroker.hpp │ │ ├── compileLog.cpp │ │ ├── compileLog.hpp │ │ ├── compilerOracle.cpp │ │ ├── compilerOracle.hpp │ │ ├── disassembler.cpp │ │ ├── disassembler.hpp │ │ ├── methodLiveness.cpp │ │ ├── methodLiveness.hpp │ │ ├── oopMap.cpp │ │ └── oopMap.hpp │ │ ├── gc_implementation │ │ ├── concurrentMarkSweep │ │ │ ├── adaptiveFreeList.cpp │ │ │ ├── adaptiveFreeList.hpp │ │ │ ├── cmsAdaptiveSizePolicy.cpp │ │ │ ├── cmsAdaptiveSizePolicy.hpp │ │ │ ├── cmsCollectorPolicy.cpp │ │ │ ├── cmsCollectorPolicy.hpp │ │ │ ├── cmsGCAdaptivePolicyCounters.cpp │ │ │ ├── cmsGCAdaptivePolicyCounters.hpp │ │ │ ├── cmsLockVerifier.cpp │ │ │ ├── cmsLockVerifier.hpp │ │ │ ├── cmsOopClosures.hpp │ │ │ ├── cmsOopClosures.inline.hpp │ │ │ ├── compactibleFreeListSpace.cpp │ │ │ ├── compactibleFreeListSpace.hpp │ │ │ ├── concurrentMarkSweepGeneration.cpp │ │ │ ├── concurrentMarkSweepGeneration.hpp │ │ │ ├── concurrentMarkSweepGeneration.inline.hpp │ │ │ ├── concurrentMarkSweepThread.cpp │ │ │ ├── concurrentMarkSweepThread.hpp │ │ │ ├── freeChunk.cpp │ │ │ ├── freeChunk.hpp │ │ │ ├── promotionInfo.cpp │ │ │ ├── promotionInfo.hpp │ │ │ ├── vmCMSOperations.cpp │ │ │ ├── vmCMSOperations.hpp │ │ │ └── vmStructs_cms.hpp │ │ ├── g1 │ │ │ ├── bufferingOopClosure.hpp │ │ │ ├── collectionSetChooser.cpp │ │ │ ├── collectionSetChooser.hpp │ │ │ ├── concurrentG1Refine.cpp │ │ │ ├── concurrentG1Refine.hpp │ │ │ ├── concurrentG1RefineThread.cpp │ │ │ ├── concurrentG1RefineThread.hpp │ │ │ ├── concurrentMark.cpp │ │ │ ├── concurrentMark.hpp │ │ │ ├── concurrentMark.inline.hpp │ │ │ ├── concurrentMarkThread.cpp │ │ │ ├── concurrentMarkThread.hpp │ │ │ ├── concurrentMarkThread.inline.hpp │ │ │ ├── dirtyCardQueue.cpp │ │ │ ├── dirtyCardQueue.hpp │ │ │ ├── evacuationInfo.hpp │ │ │ ├── g1AllocRegion.cpp │ │ │ ├── g1AllocRegion.hpp │ │ │ ├── g1AllocRegion.inline.hpp │ │ │ ├── g1BiasedArray.cpp │ │ │ ├── g1BiasedArray.hpp │ │ │ ├── g1BlockOffsetTable.cpp │ │ │ ├── g1BlockOffsetTable.hpp │ │ │ ├── g1BlockOffsetTable.inline.hpp │ │ │ ├── g1CardCounts.cpp │ │ │ ├── g1CardCounts.hpp │ │ │ ├── g1CollectedHeap.cpp │ │ │ ├── g1CollectedHeap.hpp │ │ │ ├── g1CollectedHeap.inline.hpp │ │ │ ├── g1CollectorPolicy.cpp │ │ │ ├── g1CollectorPolicy.hpp │ │ │ ├── g1ErgoVerbose.cpp │ │ │ ├── g1ErgoVerbose.hpp │ │ │ ├── g1EvacFailure.hpp │ │ │ ├── g1GCPhaseTimes.cpp │ │ │ ├── g1GCPhaseTimes.hpp │ │ │ ├── g1HRPrinter.cpp │ │ │ ├── g1HRPrinter.hpp │ │ │ ├── g1HotCardCache.cpp │ │ │ ├── g1HotCardCache.hpp │ │ │ ├── g1Log.cpp │ │ │ ├── g1Log.hpp │ │ │ ├── g1MMUTracker.cpp │ │ │ ├── g1MMUTracker.hpp │ │ │ ├── g1MarkSweep.cpp │ │ │ ├── g1MarkSweep.hpp │ │ │ ├── g1MonitoringSupport.cpp │ │ │ ├── g1MonitoringSupport.hpp │ │ │ ├── g1OopClosures.hpp │ │ │ ├── g1OopClosures.inline.hpp │ │ │ ├── g1RemSet.cpp │ │ │ ├── g1RemSet.hpp │ │ │ ├── g1RemSet.inline.hpp │ │ │ ├── g1RemSetSummary.cpp │ │ │ ├── g1RemSetSummary.hpp │ │ │ ├── g1SATBCardTableModRefBS.cpp │ │ │ ├── g1SATBCardTableModRefBS.hpp │ │ │ ├── g1YCTypes.hpp │ │ │ ├── g1_globals.cpp │ │ │ ├── g1_globals.hpp │ │ │ ├── g1_specialized_oop_closures.hpp │ │ │ ├── heapRegion.cpp │ │ │ ├── heapRegion.hpp │ │ │ ├── heapRegion.inline.hpp │ │ │ ├── heapRegionRemSet.cpp │ │ │ ├── heapRegionRemSet.hpp │ │ │ ├── heapRegionSeq.cpp │ │ │ ├── heapRegionSeq.hpp │ │ │ ├── heapRegionSeq.inline.hpp │ │ │ ├── heapRegionSet.cpp │ │ │ ├── heapRegionSet.hpp │ │ │ ├── heapRegionSet.inline.hpp │ │ │ ├── heapRegionSets.cpp │ │ │ ├── heapRegionSets.hpp │ │ │ ├── ptrQueue.cpp │ │ │ ├── ptrQueue.hpp │ │ │ ├── satbQueue.cpp │ │ │ ├── satbQueue.hpp │ │ │ ├── sparsePRT.cpp │ │ │ ├── sparsePRT.hpp │ │ │ ├── survRateGroup.cpp │ │ │ ├── survRateGroup.hpp │ │ │ ├── vmStructs_g1.hpp │ │ │ ├── vm_operations_g1.cpp │ │ │ └── vm_operations_g1.hpp │ │ ├── parNew │ │ │ ├── asParNewGeneration.cpp │ │ │ ├── asParNewGeneration.hpp │ │ │ ├── parCardTableModRefBS.cpp │ │ │ ├── parNewGeneration.cpp │ │ │ ├── parNewGeneration.hpp │ │ │ ├── parOopClosures.hpp │ │ │ ├── parOopClosures.inline.hpp │ │ │ └── vmStructs_parNew.hpp │ │ ├── parallelScavenge │ │ │ ├── adjoiningGenerations.cpp │ │ │ ├── adjoiningGenerations.hpp │ │ │ ├── adjoiningVirtualSpaces.cpp │ │ │ ├── adjoiningVirtualSpaces.hpp │ │ │ ├── asPSOldGen.cpp │ │ │ ├── asPSOldGen.hpp │ │ │ ├── asPSYoungGen.cpp │ │ │ ├── asPSYoungGen.hpp │ │ │ ├── cardTableExtension.cpp │ │ │ ├── cardTableExtension.hpp │ │ │ ├── gcTaskManager.cpp │ │ │ ├── gcTaskManager.hpp │ │ │ ├── gcTaskThread.cpp │ │ │ ├── gcTaskThread.hpp │ │ │ ├── generationSizer.cpp │ │ │ ├── generationSizer.hpp │ │ │ ├── objectStartArray.cpp │ │ │ ├── objectStartArray.hpp │ │ │ ├── parMarkBitMap.cpp │ │ │ ├── parMarkBitMap.hpp │ │ │ ├── parallelScavengeHeap.cpp │ │ │ ├── parallelScavengeHeap.hpp │ │ │ ├── parallelScavengeHeap.inline.hpp │ │ │ ├── pcTasks.cpp │ │ │ ├── pcTasks.hpp │ │ │ ├── psAdaptiveSizePolicy.cpp │ │ │ ├── psAdaptiveSizePolicy.hpp │ │ │ ├── psCompactionManager.cpp │ │ │ ├── psCompactionManager.hpp │ │ │ ├── psCompactionManager.inline.hpp │ │ │ ├── psGCAdaptivePolicyCounters.cpp │ │ │ ├── psGCAdaptivePolicyCounters.hpp │ │ │ ├── psGenerationCounters.cpp │ │ │ ├── psGenerationCounters.hpp │ │ │ ├── psMarkSweep.cpp │ │ │ ├── psMarkSweep.hpp │ │ │ ├── psMarkSweepDecorator.cpp │ │ │ ├── psMarkSweepDecorator.hpp │ │ │ ├── psOldGen.cpp │ │ │ ├── psOldGen.hpp │ │ │ ├── psParallelCompact.cpp │ │ │ ├── psParallelCompact.hpp │ │ │ ├── psPromotionLAB.cpp │ │ │ ├── psPromotionLAB.hpp │ │ │ ├── psPromotionManager.cpp │ │ │ ├── psPromotionManager.hpp │ │ │ ├── psPromotionManager.inline.hpp │ │ │ ├── psScavenge.cpp │ │ │ ├── psScavenge.hpp │ │ │ ├── psScavenge.inline.hpp │ │ │ ├── psTasks.cpp │ │ │ ├── psTasks.hpp │ │ │ ├── psVirtualspace.cpp │ │ │ ├── psVirtualspace.hpp │ │ │ ├── psYoungGen.cpp │ │ │ ├── psYoungGen.hpp │ │ │ ├── vmPSOperations.cpp │ │ │ ├── vmPSOperations.hpp │ │ │ └── vmStructs_parallelgc.hpp │ │ └── shared │ │ │ ├── adaptiveSizePolicy.cpp │ │ │ ├── adaptiveSizePolicy.hpp │ │ │ ├── ageTable.cpp │ │ │ ├── ageTable.hpp │ │ │ ├── allocationStats.cpp │ │ │ ├── allocationStats.hpp │ │ │ ├── cSpaceCounters.cpp │ │ │ ├── cSpaceCounters.hpp │ │ │ ├── collectorCounters.cpp │ │ │ ├── collectorCounters.hpp │ │ │ ├── concurrentGCThread.cpp │ │ │ ├── concurrentGCThread.hpp │ │ │ ├── copyFailedInfo.hpp │ │ │ ├── gSpaceCounters.cpp │ │ │ ├── gSpaceCounters.hpp │ │ │ ├── gcAdaptivePolicyCounters.cpp │ │ │ ├── gcAdaptivePolicyCounters.hpp │ │ │ ├── gcHeapSummary.hpp │ │ │ ├── gcPolicyCounters.cpp │ │ │ ├── gcPolicyCounters.hpp │ │ │ ├── gcStats.cpp │ │ │ ├── gcStats.hpp │ │ │ ├── gcTimer.cpp │ │ │ ├── gcTimer.hpp │ │ │ ├── gcTrace.cpp │ │ │ ├── gcTrace.hpp │ │ │ ├── gcTraceSend.cpp │ │ │ ├── gcTraceTime.cpp │ │ │ ├── gcTraceTime.hpp │ │ │ ├── gcUtil.cpp │ │ │ ├── gcUtil.hpp │ │ │ ├── gcWhen.hpp │ │ │ ├── generationCounters.cpp │ │ │ ├── generationCounters.hpp │ │ │ ├── hSpaceCounters.cpp │ │ │ ├── hSpaceCounters.hpp │ │ │ ├── immutableSpace.cpp │ │ │ ├── immutableSpace.hpp │ │ │ ├── isGCActiveMark.hpp │ │ │ ├── liveRange.hpp │ │ │ ├── markSweep.cpp │ │ │ ├── markSweep.hpp │ │ │ ├── markSweep.inline.hpp │ │ │ ├── mutableNUMASpace.cpp │ │ │ ├── mutableNUMASpace.hpp │ │ │ ├── mutableSpace.cpp │ │ │ ├── mutableSpace.hpp │ │ │ ├── objectCountEventSender.cpp │ │ │ ├── objectCountEventSender.hpp │ │ │ ├── parGCAllocBuffer.cpp │ │ │ ├── parGCAllocBuffer.hpp │ │ │ ├── spaceCounters.cpp │ │ │ ├── spaceCounters.hpp │ │ │ ├── spaceDecorator.cpp │ │ │ ├── spaceDecorator.hpp │ │ │ ├── vmGCOperations.cpp │ │ │ └── vmGCOperations.hpp │ │ ├── gc_interface │ │ ├── allocTracer.cpp │ │ ├── allocTracer.hpp │ │ ├── collectedHeap.cpp │ │ ├── collectedHeap.hpp │ │ ├── collectedHeap.inline.hpp │ │ ├── gcCause.cpp │ │ ├── gcCause.hpp │ │ └── gcName.hpp │ │ ├── interpreter │ │ ├── abstractInterpreter.hpp │ │ ├── bytecode.cpp │ │ ├── bytecode.hpp │ │ ├── bytecodeHistogram.cpp │ │ ├── bytecodeHistogram.hpp │ │ ├── bytecodeInterpreter.cpp │ │ ├── bytecodeInterpreter.hpp │ │ ├── bytecodeInterpreter.inline.hpp │ │ ├── bytecodeInterpreterWithChecks.xml │ │ ├── bytecodeInterpreterWithChecks.xsl │ │ ├── bytecodeStream.cpp │ │ ├── bytecodeStream.hpp │ │ ├── bytecodeTracer.cpp │ │ ├── bytecodeTracer.hpp │ │ ├── bytecodes.cpp │ │ ├── bytecodes.hpp │ │ ├── cppInterpreter.cpp │ │ ├── cppInterpreter.hpp │ │ ├── cppInterpreterGenerator.hpp │ │ ├── interpreter.cpp │ │ ├── interpreter.hpp │ │ ├── interpreterGenerator.hpp │ │ ├── interpreterRuntime.cpp │ │ ├── interpreterRuntime.hpp │ │ ├── invocationCounter.cpp │ │ ├── invocationCounter.hpp │ │ ├── linkResolver.cpp │ │ ├── linkResolver.hpp │ │ ├── oopMapCache.cpp │ │ ├── oopMapCache.hpp │ │ ├── rewriter.cpp │ │ ├── rewriter.hpp │ │ ├── templateInterpreter.cpp │ │ ├── templateInterpreter.hpp │ │ ├── templateInterpreterGenerator.hpp │ │ ├── templateTable.cpp │ │ └── templateTable.hpp │ │ ├── libadt │ │ ├── dict.cpp │ │ ├── dict.hpp │ │ ├── port.cpp │ │ ├── port.hpp │ │ ├── set.cpp │ │ ├── set.hpp │ │ ├── vectset.cpp │ │ └── vectset.hpp │ │ ├── memory │ │ ├── allocation.cpp │ │ ├── allocation.hpp │ │ ├── allocation.inline.hpp │ │ ├── barrierSet.cpp │ │ ├── barrierSet.hpp │ │ ├── barrierSet.inline.hpp │ │ ├── binaryTreeDictionary.cpp │ │ ├── binaryTreeDictionary.hpp │ │ ├── blockOffsetTable.cpp │ │ ├── blockOffsetTable.hpp │ │ ├── blockOffsetTable.inline.hpp │ │ ├── cardTableModRefBS.cpp │ │ ├── cardTableModRefBS.hpp │ │ ├── cardTableRS.cpp │ │ ├── cardTableRS.hpp │ │ ├── collectorPolicy.cpp │ │ ├── collectorPolicy.hpp │ │ ├── defNewGeneration.cpp │ │ ├── defNewGeneration.hpp │ │ ├── defNewGeneration.inline.hpp │ │ ├── filemap.cpp │ │ ├── filemap.hpp │ │ ├── freeBlockDictionary.cpp │ │ ├── freeBlockDictionary.hpp │ │ ├── freeList.cpp │ │ ├── freeList.hpp │ │ ├── gcLocker.cpp │ │ ├── gcLocker.hpp │ │ ├── gcLocker.inline.hpp │ │ ├── genCollectedHeap.cpp │ │ ├── genCollectedHeap.hpp │ │ ├── genMarkSweep.cpp │ │ ├── genMarkSweep.hpp │ │ ├── genOopClosures.hpp │ │ ├── genOopClosures.inline.hpp │ │ ├── genRemSet.cpp │ │ ├── genRemSet.hpp │ │ ├── genRemSet.inline.hpp │ │ ├── generation.cpp │ │ ├── generation.hpp │ │ ├── generation.inline.hpp │ │ ├── generationSpec.cpp │ │ ├── generationSpec.hpp │ │ ├── heap.cpp │ │ ├── heap.hpp │ │ ├── heapInspection.cpp │ │ ├── heapInspection.hpp │ │ ├── iterator.cpp │ │ ├── iterator.hpp │ │ ├── memRegion.cpp │ │ ├── memRegion.hpp │ │ ├── metachunk.cpp │ │ ├── metachunk.hpp │ │ ├── metadataFactory.hpp │ │ ├── metaspace.cpp │ │ ├── metaspace.hpp │ │ ├── metaspaceCounters.cpp │ │ ├── metaspaceCounters.hpp │ │ ├── metaspaceShared.cpp │ │ ├── metaspaceShared.hpp │ │ ├── modRefBarrierSet.hpp │ │ ├── oopFactory.cpp │ │ ├── oopFactory.hpp │ │ ├── padded.hpp │ │ ├── padded.inline.hpp │ │ ├── referencePolicy.cpp │ │ ├── referencePolicy.hpp │ │ ├── referenceProcessor.cpp │ │ ├── referenceProcessor.hpp │ │ ├── referenceProcessorStats.hpp │ │ ├── referenceType.hpp │ │ ├── resourceArea.cpp │ │ ├── resourceArea.hpp │ │ ├── sharedHeap.cpp │ │ ├── sharedHeap.hpp │ │ ├── space.cpp │ │ ├── space.hpp │ │ ├── space.inline.hpp │ │ ├── specialized_oop_closures.cpp │ │ ├── specialized_oop_closures.hpp │ │ ├── tenuredGeneration.cpp │ │ ├── tenuredGeneration.hpp │ │ ├── threadLocalAllocBuffer.cpp │ │ ├── threadLocalAllocBuffer.hpp │ │ ├── threadLocalAllocBuffer.inline.hpp │ │ ├── universe.cpp │ │ ├── universe.hpp │ │ ├── universe.inline.hpp │ │ └── watermark.hpp │ │ ├── oops │ │ ├── annotations.cpp │ │ ├── annotations.hpp │ │ ├── arrayKlass.cpp │ │ ├── arrayKlass.hpp │ │ ├── arrayOop.cpp │ │ ├── arrayOop.hpp │ │ ├── compiledICHolder.cpp │ │ ├── compiledICHolder.hpp │ │ ├── constMethod.cpp │ │ ├── constMethod.hpp │ │ ├── constantPool.cpp │ │ ├── constantPool.hpp │ │ ├── cpCache.cpp │ │ ├── cpCache.hpp │ │ ├── fieldInfo.hpp │ │ ├── fieldStreams.hpp │ │ ├── generateOopMap.cpp │ │ ├── generateOopMap.hpp │ │ ├── instanceClassLoaderKlass.cpp │ │ ├── instanceClassLoaderKlass.hpp │ │ ├── instanceKlass.cpp │ │ ├── instanceKlass.hpp │ │ ├── instanceMirrorKlass.cpp │ │ ├── instanceMirrorKlass.hpp │ │ ├── instanceOop.cpp │ │ ├── instanceOop.hpp │ │ ├── instanceRefKlass.cpp │ │ ├── instanceRefKlass.hpp │ │ ├── klass.cpp │ │ ├── klass.hpp │ │ ├── klass.inline.hpp │ │ ├── klassPS.hpp │ │ ├── klassVtable.cpp │ │ ├── klassVtable.hpp │ │ ├── markOop.cpp │ │ ├── markOop.hpp │ │ ├── markOop.inline.hpp │ │ ├── metadata.cpp │ │ ├── metadata.hpp │ │ ├── method.cpp │ │ ├── method.hpp │ │ ├── methodCounters.cpp │ │ ├── methodCounters.hpp │ │ ├── methodData.cpp │ │ ├── methodData.hpp │ │ ├── objArrayKlass.cpp │ │ ├── objArrayKlass.hpp │ │ ├── objArrayKlass.inline.hpp │ │ ├── objArrayOop.cpp │ │ ├── objArrayOop.hpp │ │ ├── oop.cpp │ │ ├── oop.hpp │ │ ├── oop.inline.hpp │ │ ├── oop.inline2.hpp │ │ ├── oop.pcgc.inline.hpp │ │ ├── oop.psgc.inline.hpp │ │ ├── oopsHierarchy.cpp │ │ ├── oopsHierarchy.hpp │ │ ├── symbol.cpp │ │ ├── symbol.hpp │ │ ├── typeArrayKlass.cpp │ │ ├── typeArrayKlass.hpp │ │ ├── typeArrayOop.cpp │ │ └── typeArrayOop.hpp │ │ ├── opto │ │ ├── addnode.cpp │ │ ├── addnode.hpp │ │ ├── adlcVMDeps.hpp │ │ ├── block.cpp │ │ ├── block.hpp │ │ ├── buildOopMap.cpp │ │ ├── bytecodeInfo.cpp │ │ ├── c2_globals.cpp │ │ ├── c2_globals.hpp │ │ ├── c2compiler.cpp │ │ ├── c2compiler.hpp │ │ ├── callGenerator.cpp │ │ ├── callGenerator.hpp │ │ ├── callnode.cpp │ │ ├── callnode.hpp │ │ ├── cfgnode.cpp │ │ ├── cfgnode.hpp │ │ ├── chaitin.cpp │ │ ├── chaitin.hpp │ │ ├── classes.cpp │ │ ├── classes.hpp │ │ ├── coalesce.cpp │ │ ├── coalesce.hpp │ │ ├── compile.cpp │ │ ├── compile.hpp │ │ ├── connode.cpp │ │ ├── connode.hpp │ │ ├── divnode.cpp │ │ ├── divnode.hpp │ │ ├── doCall.cpp │ │ ├── domgraph.cpp │ │ ├── escape.cpp │ │ ├── escape.hpp │ │ ├── gcm.cpp │ │ ├── generateOptoStub.cpp │ │ ├── graphKit.cpp │ │ ├── graphKit.hpp │ │ ├── idealGraphPrinter.cpp │ │ ├── idealGraphPrinter.hpp │ │ ├── idealKit.cpp │ │ ├── idealKit.hpp │ │ ├── ifg.cpp │ │ ├── ifnode.cpp │ │ ├── indexSet.cpp │ │ ├── indexSet.hpp │ │ ├── lcm.cpp │ │ ├── library_call.cpp │ │ ├── live.cpp │ │ ├── live.hpp │ │ ├── locknode.cpp │ │ ├── locknode.hpp │ │ ├── loopPredicate.cpp │ │ ├── loopTransform.cpp │ │ ├── loopUnswitch.cpp │ │ ├── loopnode.cpp │ │ ├── loopnode.hpp │ │ ├── loopopts.cpp │ │ ├── machnode.cpp │ │ ├── machnode.hpp │ │ ├── macro.cpp │ │ ├── macro.hpp │ │ ├── matcher.cpp │ │ ├── matcher.hpp │ │ ├── mathexactnode.cpp │ │ ├── mathexactnode.hpp │ │ ├── memnode.cpp │ │ ├── memnode.hpp │ │ ├── mulnode.cpp │ │ ├── mulnode.hpp │ │ ├── multnode.cpp │ │ ├── multnode.hpp │ │ ├── node.cpp │ │ ├── node.hpp │ │ ├── opcodes.cpp │ │ ├── opcodes.hpp │ │ ├── optoreg.hpp │ │ ├── output.cpp │ │ ├── output.hpp │ │ ├── parse.hpp │ │ ├── parse1.cpp │ │ ├── parse2.cpp │ │ ├── parse3.cpp │ │ ├── parseHelper.cpp │ │ ├── phase.cpp │ │ ├── phase.hpp │ │ ├── phaseX.cpp │ │ ├── phaseX.hpp │ │ ├── phasetype.hpp │ │ ├── postaloc.cpp │ │ ├── reg_split.cpp │ │ ├── regalloc.cpp │ │ ├── regalloc.hpp │ │ ├── regmask.cpp │ │ ├── regmask.hpp │ │ ├── rootnode.cpp │ │ ├── rootnode.hpp │ │ ├── runtime.cpp │ │ ├── runtime.hpp │ │ ├── split_if.cpp │ │ ├── stringopts.cpp │ │ ├── stringopts.hpp │ │ ├── subnode.cpp │ │ ├── subnode.hpp │ │ ├── superword.cpp │ │ ├── superword.hpp │ │ ├── type.cpp │ │ ├── type.hpp │ │ ├── vectornode.cpp │ │ └── vectornode.hpp │ │ ├── precompiled │ │ └── precompiled.hpp │ │ ├── prims │ │ ├── evmCompat.cpp │ │ ├── forte.cpp │ │ ├── forte.hpp │ │ ├── jni.cpp │ │ ├── jni.h │ │ ├── jniCheck.cpp │ │ ├── jniCheck.hpp │ │ ├── jniExport.hpp │ │ ├── jniFastGetField.cpp │ │ ├── jniFastGetField.hpp │ │ ├── jni_md.h │ │ ├── jvm.cpp │ │ ├── jvm.h │ │ ├── jvm_misc.hpp │ │ ├── jvmti.xml │ │ ├── jvmti.xsl │ │ ├── jvmtiAgentThread.hpp │ │ ├── jvmtiClassFileReconstituter.cpp │ │ ├── jvmtiClassFileReconstituter.hpp │ │ ├── jvmtiCodeBlobEvents.cpp │ │ ├── jvmtiCodeBlobEvents.hpp │ │ ├── jvmtiEnter.hpp │ │ ├── jvmtiEnter.xsl │ │ ├── jvmtiEnv.cpp │ │ ├── jvmtiEnv.xsl │ │ ├── jvmtiEnvBase.cpp │ │ ├── jvmtiEnvBase.hpp │ │ ├── jvmtiEnvFill.java │ │ ├── jvmtiEnvThreadState.cpp │ │ ├── jvmtiEnvThreadState.hpp │ │ ├── jvmtiEventController.cpp │ │ ├── jvmtiEventController.hpp │ │ ├── jvmtiEventController.inline.hpp │ │ ├── jvmtiExport.cpp │ │ ├── jvmtiExport.hpp │ │ ├── jvmtiExtensions.cpp │ │ ├── jvmtiExtensions.hpp │ │ ├── jvmtiGen.java │ │ ├── jvmtiGetLoadedClasses.cpp │ │ ├── jvmtiGetLoadedClasses.hpp │ │ ├── jvmtiH.xsl │ │ ├── jvmtiHpp.xsl │ │ ├── jvmtiImpl.cpp │ │ ├── jvmtiImpl.hpp │ │ ├── jvmtiLib.xsl │ │ ├── jvmtiManageCapabilities.cpp │ │ ├── jvmtiManageCapabilities.hpp │ │ ├── jvmtiRawMonitor.cpp │ │ ├── jvmtiRawMonitor.hpp │ │ ├── jvmtiRedefineClasses.cpp │ │ ├── jvmtiRedefineClasses.hpp │ │ ├── jvmtiRedefineClassesTrace.hpp │ │ ├── jvmtiTagMap.cpp │ │ ├── jvmtiTagMap.hpp │ │ ├── jvmtiThreadState.cpp │ │ ├── jvmtiThreadState.hpp │ │ ├── jvmtiThreadState.inline.hpp │ │ ├── jvmtiTrace.cpp │ │ ├── jvmtiTrace.hpp │ │ ├── jvmtiUtil.cpp │ │ ├── jvmtiUtil.hpp │ │ ├── methodComparator.cpp │ │ ├── methodComparator.hpp │ │ ├── methodHandles.cpp │ │ ├── methodHandles.hpp │ │ ├── nativeLookup.cpp │ │ ├── nativeLookup.hpp │ │ ├── perf.cpp │ │ ├── privilegedStack.cpp │ │ ├── privilegedStack.hpp │ │ ├── unsafe.cpp │ │ ├── wbtestmethods │ │ │ ├── parserTests.cpp │ │ │ └── parserTests.hpp │ │ ├── whitebox.cpp │ │ └── whitebox.hpp │ │ ├── runtime │ │ ├── advancedThresholdPolicy.cpp │ │ ├── advancedThresholdPolicy.hpp │ │ ├── arguments.cpp │ │ ├── arguments.hpp │ │ ├── atomic.cpp │ │ ├── atomic.hpp │ │ ├── atomic.inline.hpp │ │ ├── basicLock.cpp │ │ ├── basicLock.hpp │ │ ├── biasedLocking.cpp │ │ ├── biasedLocking.hpp │ │ ├── compilationPolicy.cpp │ │ ├── compilationPolicy.hpp │ │ ├── deoptimization.cpp │ │ ├── deoptimization.hpp │ │ ├── dtraceJSDT.cpp │ │ ├── dtraceJSDT.hpp │ │ ├── extendedPC.hpp │ │ ├── fieldDescriptor.cpp │ │ ├── fieldDescriptor.hpp │ │ ├── fieldType.cpp │ │ ├── fieldType.hpp │ │ ├── fprofiler.cpp │ │ ├── fprofiler.hpp │ │ ├── frame.cpp │ │ ├── frame.hpp │ │ ├── frame.inline.hpp │ │ ├── globals.cpp │ │ ├── globals.hpp │ │ ├── globals_ext.hpp │ │ ├── globals_extension.hpp │ │ ├── handles.cpp │ │ ├── handles.hpp │ │ ├── handles.inline.hpp │ │ ├── icache.cpp │ │ ├── icache.hpp │ │ ├── init.cpp │ │ ├── init.hpp │ │ ├── interfaceSupport.cpp │ │ ├── interfaceSupport.hpp │ │ ├── java.cpp │ │ ├── java.hpp │ │ ├── javaCalls.cpp │ │ ├── javaCalls.hpp │ │ ├── javaFrameAnchor.hpp │ │ ├── jfieldIDWorkaround.hpp │ │ ├── jniHandles.cpp │ │ ├── jniHandles.hpp │ │ ├── jniPeriodicChecker.cpp │ │ ├── jniPeriodicChecker.hpp │ │ ├── memprofiler.cpp │ │ ├── memprofiler.hpp │ │ ├── monitorChunk.cpp │ │ ├── monitorChunk.hpp │ │ ├── mutex.cpp │ │ ├── mutex.hpp │ │ ├── mutexLocker.cpp │ │ ├── mutexLocker.hpp │ │ ├── objectMonitor.cpp │ │ ├── objectMonitor.hpp │ │ ├── objectMonitor.inline.hpp │ │ ├── orderAccess.cpp │ │ ├── orderAccess.hpp │ │ ├── os.cpp │ │ ├── os.hpp │ │ ├── osThread.cpp │ │ ├── osThread.hpp │ │ ├── os_ext.hpp │ │ ├── park.cpp │ │ ├── park.hpp │ │ ├── perfData.cpp │ │ ├── perfData.hpp │ │ ├── perfMemory.cpp │ │ ├── perfMemory.hpp │ │ ├── prefetch.hpp │ │ ├── reflection.cpp │ │ ├── reflection.hpp │ │ ├── reflectionUtils.cpp │ │ ├── reflectionUtils.hpp │ │ ├── registerMap.hpp │ │ ├── relocator.cpp │ │ ├── relocator.hpp │ │ ├── rframe.cpp │ │ ├── rframe.hpp │ │ ├── safepoint.cpp │ │ ├── safepoint.hpp │ │ ├── serviceThread.cpp │ │ ├── serviceThread.hpp │ │ ├── sharedRuntime.cpp │ │ ├── sharedRuntime.hpp │ │ ├── sharedRuntimeTrans.cpp │ │ ├── sharedRuntimeTrig.cpp │ │ ├── signature.cpp │ │ ├── signature.hpp │ │ ├── simpleThresholdPolicy.cpp │ │ ├── simpleThresholdPolicy.hpp │ │ ├── simpleThresholdPolicy.inline.hpp │ │ ├── stackValue.cpp │ │ ├── stackValue.hpp │ │ ├── stackValueCollection.cpp │ │ ├── stackValueCollection.hpp │ │ ├── statSampler.cpp │ │ ├── statSampler.hpp │ │ ├── stubCodeGenerator.cpp │ │ ├── stubCodeGenerator.hpp │ │ ├── stubRoutines.cpp │ │ ├── stubRoutines.hpp │ │ ├── sweeper.cpp │ │ ├── sweeper.hpp │ │ ├── synchronizer.cpp │ │ ├── synchronizer.hpp │ │ ├── task.cpp │ │ ├── task.hpp │ │ ├── thread.cpp │ │ ├── thread.hpp │ │ ├── thread.inline.hpp │ │ ├── threadCritical.hpp │ │ ├── threadLocalStorage.cpp │ │ ├── threadLocalStorage.hpp │ │ ├── timer.cpp │ │ ├── timer.hpp │ │ ├── unhandledOops.cpp │ │ ├── unhandledOops.hpp │ │ ├── vframe.cpp │ │ ├── vframe.hpp │ │ ├── vframeArray.cpp │ │ ├── vframeArray.hpp │ │ ├── vframe_hp.cpp │ │ ├── vframe_hp.hpp │ │ ├── virtualspace.cpp │ │ ├── virtualspace.hpp │ │ ├── vmStructs.cpp │ │ ├── vmStructs.hpp │ │ ├── vmThread.cpp │ │ ├── vmThread.hpp │ │ ├── vm_operations.cpp │ │ ├── vm_operations.hpp │ │ ├── vm_version.cpp │ │ └── vm_version.hpp │ │ ├── services │ │ ├── attachListener.cpp │ │ ├── attachListener.hpp │ │ ├── classLoadingService.cpp │ │ ├── classLoadingService.hpp │ │ ├── diagnosticArgument.cpp │ │ ├── diagnosticArgument.hpp │ │ ├── diagnosticCommand.cpp │ │ ├── diagnosticCommand.hpp │ │ ├── diagnosticCommand_ext.hpp │ │ ├── diagnosticFramework.cpp │ │ ├── diagnosticFramework.hpp │ │ ├── dtraceAttacher.cpp │ │ ├── dtraceAttacher.hpp │ │ ├── g1MemoryPool.cpp │ │ ├── g1MemoryPool.hpp │ │ ├── gcNotifier.cpp │ │ ├── gcNotifier.hpp │ │ ├── heapDumper.cpp │ │ ├── heapDumper.hpp │ │ ├── jmm.h │ │ ├── lowMemoryDetector.cpp │ │ ├── lowMemoryDetector.hpp │ │ ├── management.cpp │ │ ├── management.hpp │ │ ├── memBaseline.cpp │ │ ├── memBaseline.hpp │ │ ├── memPtr.cpp │ │ ├── memPtr.hpp │ │ ├── memPtrArray.hpp │ │ ├── memRecorder.cpp │ │ ├── memRecorder.hpp │ │ ├── memReporter.cpp │ │ ├── memReporter.hpp │ │ ├── memSnapshot.cpp │ │ ├── memSnapshot.hpp │ │ ├── memTrackWorker.cpp │ │ ├── memTrackWorker.hpp │ │ ├── memTracker.cpp │ │ ├── memTracker.hpp │ │ ├── memoryManager.cpp │ │ ├── memoryManager.hpp │ │ ├── memoryPool.cpp │ │ ├── memoryPool.hpp │ │ ├── memoryService.cpp │ │ ├── memoryService.hpp │ │ ├── memoryUsage.hpp │ │ ├── nmtDCmd.cpp │ │ ├── nmtDCmd.hpp │ │ ├── psMemoryPool.cpp │ │ ├── psMemoryPool.hpp │ │ ├── runtimeService.cpp │ │ ├── runtimeService.hpp │ │ ├── serviceUtil.hpp │ │ ├── threadService.cpp │ │ └── threadService.hpp │ │ ├── shark │ │ ├── llvmHeaders.hpp │ │ ├── llvmValue.hpp │ │ ├── sharkBlock.cpp │ │ ├── sharkBlock.hpp │ │ ├── sharkBuilder.cpp │ │ ├── sharkBuilder.hpp │ │ ├── sharkCacheDecache.cpp │ │ ├── sharkCacheDecache.hpp │ │ ├── sharkCodeBuffer.hpp │ │ ├── sharkCompiler.cpp │ │ ├── sharkCompiler.hpp │ │ ├── sharkConstant.cpp │ │ ├── sharkConstant.hpp │ │ ├── sharkContext.cpp │ │ ├── sharkContext.hpp │ │ ├── sharkEntry.hpp │ │ ├── sharkFunction.cpp │ │ ├── sharkFunction.hpp │ │ ├── sharkInliner.cpp │ │ ├── sharkInliner.hpp │ │ ├── sharkIntrinsics.cpp │ │ ├── sharkIntrinsics.hpp │ │ ├── sharkInvariants.cpp │ │ ├── sharkInvariants.hpp │ │ ├── sharkMemoryManager.cpp │ │ ├── sharkMemoryManager.hpp │ │ ├── sharkNativeWrapper.cpp │ │ ├── sharkNativeWrapper.hpp │ │ ├── sharkRuntime.cpp │ │ ├── sharkRuntime.hpp │ │ ├── sharkStack.cpp │ │ ├── sharkStack.hpp │ │ ├── sharkState.cpp │ │ ├── sharkState.hpp │ │ ├── sharkStateScanner.cpp │ │ ├── sharkStateScanner.hpp │ │ ├── sharkTopLevelBlock.cpp │ │ ├── sharkTopLevelBlock.hpp │ │ ├── sharkType.hpp │ │ ├── sharkValue.cpp │ │ ├── sharkValue.hpp │ │ ├── shark_globals.cpp │ │ └── shark_globals.hpp │ │ ├── trace │ │ ├── noTraceBackend.hpp │ │ ├── trace.dtd │ │ ├── trace.xml │ │ ├── traceBackend.hpp │ │ ├── traceDataTypes.hpp │ │ ├── traceEvent.hpp │ │ ├── traceEventClasses.xsl │ │ ├── traceEventIds.xsl │ │ ├── traceMacros.hpp │ │ ├── traceStream.hpp │ │ ├── traceTime.hpp │ │ ├── traceTypes.xsl │ │ ├── tracetypes.xml │ │ ├── tracing.hpp │ │ ├── xinclude.mod │ │ └── xsl_util.xsl │ │ └── utilities │ │ ├── accessFlags.cpp │ │ ├── accessFlags.hpp │ │ ├── array.cpp │ │ ├── array.hpp │ │ ├── bitMap.cpp │ │ ├── bitMap.hpp │ │ ├── bitMap.inline.hpp │ │ ├── constantTag.cpp │ │ ├── constantTag.hpp │ │ ├── copy.cpp │ │ ├── copy.hpp │ │ ├── debug.cpp │ │ ├── debug.hpp │ │ ├── decoder.cpp │ │ ├── decoder.hpp │ │ ├── decoder_elf.cpp │ │ ├── decoder_elf.hpp │ │ ├── defaultStream.hpp │ │ ├── dtrace.hpp │ │ ├── dtrace_usdt2_disabled.hpp │ │ ├── elfFile.cpp │ │ ├── elfFile.hpp │ │ ├── elfStringTable.cpp │ │ ├── elfStringTable.hpp │ │ ├── elfSymbolTable.cpp │ │ ├── elfSymbolTable.hpp │ │ ├── errorReporter.cpp │ │ ├── errorReporter.hpp │ │ ├── events.cpp │ │ ├── events.hpp │ │ ├── exceptions.cpp │ │ ├── exceptions.hpp │ │ ├── globalDefinitions.cpp │ │ ├── globalDefinitions.hpp │ │ ├── globalDefinitions_gcc.hpp │ │ ├── globalDefinitions_sparcWorks.hpp │ │ ├── globalDefinitions_visCPP.hpp │ │ ├── growableArray.cpp │ │ ├── growableArray.hpp │ │ ├── hashtable.cpp │ │ ├── hashtable.hpp │ │ ├── hashtable.inline.hpp │ │ ├── histogram.cpp │ │ ├── histogram.hpp │ │ ├── intHisto.cpp │ │ ├── intHisto.hpp │ │ ├── macros.hpp │ │ ├── numberSeq.cpp │ │ ├── numberSeq.hpp │ │ ├── ostream.cpp │ │ ├── ostream.hpp │ │ ├── pair.hpp │ │ ├── preserveException.cpp │ │ ├── preserveException.hpp │ │ ├── quickSort.cpp │ │ ├── quickSort.hpp │ │ ├── resourceHash.hpp │ │ ├── sizes.cpp │ │ ├── sizes.hpp │ │ ├── stack.hpp │ │ ├── stack.inline.hpp │ │ ├── taskqueue.cpp │ │ ├── taskqueue.hpp │ │ ├── ticks.cpp │ │ ├── ticks.hpp │ │ ├── ticks.inline.hpp │ │ ├── top.hpp │ │ ├── utf8.cpp │ │ ├── utf8.hpp │ │ ├── vmError.cpp │ │ ├── vmError.hpp │ │ ├── workgroup.cpp │ │ ├── workgroup.hpp │ │ ├── xmlstream.cpp │ │ ├── xmlstream.hpp │ │ ├── yieldingWorkgroup.cpp │ │ └── yieldingWorkgroup.hpp └── test │ ├── Makefile │ ├── TEST.ROOT │ ├── TEST.groups │ ├── compiler │ ├── 5057225 │ │ └── Test5057225.java │ ├── 5091921 │ │ ├── Test5091921.java │ │ ├── Test6186134.java │ │ ├── Test6196102.java │ │ ├── Test6357214.java │ │ ├── Test6559156.java │ │ ├── Test6753639.java │ │ ├── Test6850611.java │ │ ├── Test6890943.java │ │ ├── Test6890943.sh │ │ ├── Test6897150.java │ │ ├── Test6905845.java │ │ ├── Test6931567.java │ │ ├── Test6935022.java │ │ ├── Test6959129.java │ │ ├── Test6985295.java │ │ ├── Test6992759.java │ │ ├── Test7005594.java │ │ ├── Test7005594.sh │ │ ├── Test7020614.java │ │ ├── input6890943.txt │ │ └── output6890943.txt │ ├── 6340864 │ │ ├── TestByteVect.java │ │ ├── TestDoubleVect.java │ │ ├── TestFloatVect.java │ │ ├── TestIntVect.java │ │ ├── TestLongVect.java │ │ └── TestShortVect.java │ ├── 6378821 │ │ └── Test6378821.java │ ├── 6431242 │ │ └── Test.java │ ├── 6443505 │ │ └── Test6443505.java │ ├── 6478991 │ │ └── NullCheckTest.java │ ├── 6539464 │ │ └── Test.java │ ├── 6579789 │ │ └── Test6579789.java │ ├── 6589834 │ │ └── Test_ia32.java │ ├── 6603011 │ │ └── Test.java │ ├── 6636138 │ │ ├── Test1.java │ │ └── Test2.java │ ├── 6646019 │ │ └── Test.java │ ├── 6646020 │ │ └── Tester.java │ ├── 6659207 │ │ └── Test.java │ ├── 6661247 │ │ └── Test.java │ ├── 6663621 │ │ └── IVTest.java │ ├── 6663848 │ │ └── Tester.java │ ├── 6663854 │ │ └── Test6663854.java │ ├── 6689060 │ │ └── Test.java │ ├── 6695810 │ │ └── Test.java │ ├── 6700047 │ │ └── Test6700047.java │ ├── 6711100 │ │ └── Test.java │ ├── 6711117 │ │ └── Test.java │ ├── 6712835 │ │ └── Test6712835.java │ ├── 6714694 │ │ └── Tester.java │ ├── 6716441 │ │ └── Tester.java │ ├── 6724218 │ │ └── Test.java │ ├── 6726999 │ │ └── Test.java │ ├── 6732154 │ │ └── Test6732154.java │ ├── 6741738 │ │ └── Tester.java │ ├── 6756768 │ │ ├── Test6756768.java │ │ └── Test6756768_2.java │ ├── 6757316 │ │ └── Test6757316.java │ ├── 6758234 │ │ └── Test6758234.java │ ├── 6769124 │ │ ├── TestArrayCopy6769124.java │ │ ├── TestDeoptInt6769124.java │ │ └── TestUnalignedLoad6769124.java │ ├── 6772683 │ │ └── InterruptedTest.java │ ├── 6775880 │ │ └── Test.java │ ├── 6778657 │ │ └── Test.java │ ├── 6792161 │ │ └── Test6792161.java │ ├── 6795161 │ │ └── Test.java │ ├── 6795362 │ │ └── Test6795362.java │ ├── 6795465 │ │ └── Test6795465.java │ ├── 6796786 │ │ └── Test6796786.java │ ├── 6797305 │ │ └── Test6797305.java │ ├── 6799693 │ │ └── Test.java │ ├── 6800154 │ │ └── Test6800154.java │ ├── 6805724 │ │ └── Test6805724.java │ ├── 6814842 │ │ └── Test6814842.java │ ├── 6823354 │ │ └── Test6823354.java │ ├── 6823453 │ │ └── Test.java │ ├── 6826736 │ │ └── Test.java │ ├── 6832293 │ │ └── Test.java │ ├── 6833129 │ │ └── Test.java │ ├── 6837011 │ │ └── Test6837011.java │ ├── 6837094 │ │ └── Test.java │ ├── 6843752 │ │ └── Test.java │ ├── 6849574 │ │ └── Test.java │ ├── 6851282 │ │ └── Test.java │ ├── 6852078 │ │ └── Test6852078.java │ ├── 6855164 │ │ └── Test.java │ ├── 6855215 │ │ └── Test6855215.java │ ├── 6857159 │ │ ├── Test6857159.java │ │ └── Test6857159.sh │ ├── 6859338 │ │ └── Test6859338.java │ ├── 6860469 │ │ └── Test.java │ ├── 6863155 │ │ └── Test6863155.java │ ├── 6863420 │ │ └── Test.java │ ├── 6865031 │ │ └── Test.java │ ├── 6865265 │ │ └── StackOverflowBug.java │ ├── 6866651 │ │ └── Test.java │ ├── 6875866 │ │ └── Test.java │ ├── 6877254 │ │ └── Test.java │ ├── 6879902 │ │ └── Test6879902.java │ ├── 6880034 │ │ └── Test6880034.java │ ├── 6885584 │ │ └── Test6885584.java │ ├── 6891750 │ │ └── Test6891750.java │ ├── 6892265 │ │ └── Test.java │ ├── 6894807 │ │ ├── IsInstanceTest.java │ │ └── Test6894807.sh │ ├── 6895383 │ │ └── Test.java │ ├── 6896617 │ │ └── Test6896617.java │ ├── 6896727 │ │ └── Test.java │ ├── 6901572 │ │ └── Test.java │ ├── 6909839 │ │ └── Test6909839.java │ ├── 6910484 │ │ └── Test.java │ ├── 6910605 │ │ └── Test.java │ ├── 6910618 │ │ └── Test.java │ ├── 6912517 │ │ └── Test.java │ ├── 6916644 │ │ └── Test6916644.java │ ├── 6921969 │ │ └── TestMultiplyLongHiZero.java │ ├── 6930043 │ │ └── Test6930043.java │ ├── 6932496 │ │ └── Test6932496.java │ ├── 6934604 │ │ ├── TestByteBoxing.java │ │ ├── TestDoubleBoxing.java │ │ ├── TestFloatBoxing.java │ │ ├── TestIntBoxing.java │ │ ├── TestLongBoxing.java │ │ └── TestShortBoxing.java │ ├── 6935535 │ │ └── Test.java │ ├── 6942326 │ │ └── Test.java │ ├── 6946040 │ │ └── TestCharShortByteSwap.java │ ├── 6956668 │ │ └── Test6956668.java │ ├── 6958485 │ │ └── Test.java │ ├── 6968348 │ │ └── Test6968348.java │ ├── 6973329 │ │ └── Test.java │ ├── 6982370 │ │ └── Test6982370.java │ ├── 6990212 │ │ └── Test6990212.java │ ├── 7002666 │ │ └── Test7002666.java │ ├── 7009231 │ │ └── Test7009231.java │ ├── 7009359 │ │ └── Test7009359.java │ ├── 7017746 │ │ └── Test.java │ ├── 7024475 │ │ └── Test7024475.java │ ├── 7029152 │ │ └── Test.java │ ├── 7041100 │ │ └── Test7041100.java │ ├── 7042153 │ │ └── Test7042153.java │ ├── 7044738 │ │ └── Test7044738.java │ ├── 7046096 │ │ └── Test7046096.java │ ├── 7047069 │ │ └── Test7047069.java │ ├── 7048332 │ │ └── Test7048332.java │ ├── 7052494 │ │ └── Test7052494.java │ ├── 7068051 │ │ ├── Test7068051.java │ │ └── Test7068051.sh │ ├── 7070134 │ │ ├── Stemmer.java │ │ ├── Test7070134.sh │ │ └── words │ ├── 7082949 │ │ └── Test7082949.java │ ├── 7088020 │ │ └── Test7088020.java │ ├── 7088419 │ │ └── CRCTest.java │ ├── 7090976 │ │ └── Test7090976.java │ ├── 7100757 │ │ └── Test7100757.java │ ├── 7103261 │ │ └── Test7103261.java │ ├── 7110586 │ │ └── Test7110586.java │ ├── 7116216 │ │ ├── LargeFrame.java │ │ └── StackOverflow.java │ ├── 7119644 │ │ ├── TestBooleanVect.java │ │ ├── TestByteDoubleVect.java │ │ ├── TestByteFloatVect.java │ │ ├── TestByteIntVect.java │ │ ├── TestByteLongVect.java │ │ ├── TestByteShortVect.java │ │ ├── TestByteVect.java │ │ ├── TestCharShortVect.java │ │ ├── TestCharVect.java │ │ ├── TestDoubleVect.java │ │ ├── TestFloatDoubleVect.java │ │ ├── TestFloatVect.java │ │ ├── TestIntDoubleVect.java │ │ ├── TestIntFloatVect.java │ │ ├── TestIntLongVect.java │ │ ├── TestIntVect.java │ │ ├── TestLongDoubleVect.java │ │ ├── TestLongFloatVect.java │ │ ├── TestLongVect.java │ │ ├── TestShortDoubleVect.java │ │ ├── TestShortFloatVect.java │ │ ├── TestShortIntVect.java │ │ ├── TestShortLongVect.java │ │ └── TestShortVect.java │ ├── 7123108 │ │ └── Test7123108.java │ ├── 7125879 │ │ └── Test7125879.java │ ├── 7141637 │ │ └── SpreadNullArg.java │ ├── 7160610 │ │ └── Test7160610.java │ ├── 7169782 │ │ └── Test7169782.java │ ├── 7174363 │ │ └── Test7174363.java │ ├── 7177917 │ │ └── Test7177917.java │ ├── 7179138 │ │ ├── Test7179138_1.java │ │ └── Test7179138_2.java │ ├── 7184394 │ │ ├── TestAESBase.java │ │ ├── TestAESDecode.java │ │ ├── TestAESEncode.java │ │ └── TestAESMain.java │ ├── 7190310 │ │ ├── Test7190310.java │ │ └── Test7190310_unsafe.java │ ├── 7192963 │ │ ├── TestByteVect.java │ │ ├── TestDoubleVect.java │ │ ├── TestFloatVect.java │ │ ├── TestIntVect.java │ │ ├── TestLongVect.java │ │ └── TestShortVect.java │ ├── 7196199 │ │ └── Test7196199.java │ ├── 7199742 │ │ └── Test7199742.java │ ├── 7200264 │ │ ├── Test7200264.sh │ │ └── TestIntVect.java │ ├── 8000805 │ │ └── Test8000805.java │ ├── 8001183 │ │ └── TestCharVect.java │ ├── 8002069 │ │ └── Test8002069.java │ ├── 8004051 │ │ └── Test8004051.java │ ├── 8004741 │ │ └── Test8004741.java │ ├── 8004867 │ │ ├── TestIntAtomicCAS.java │ │ ├── TestIntAtomicOrdered.java │ │ ├── TestIntAtomicVolatile.java │ │ ├── TestIntUnsafeCAS.java │ │ ├── TestIntUnsafeOrdered.java │ │ └── TestIntUnsafeVolatile.java │ ├── 8005033 │ │ └── Test8005033.java │ ├── 8005419 │ │ └── Test8005419.java │ ├── 8005956 │ │ └── PolynomialRoot.java │ ├── 8007294 │ │ └── Test8007294.java │ ├── 8007722 │ │ └── Test8007722.java │ ├── 8009761 │ │ └── Test8009761.java │ ├── 8010927 │ │ └── Test8010927.java │ ├── 8011706 │ │ └── Test8011706.java │ ├── 8011771 │ │ └── Test8011771.java │ ├── 8011901 │ │ └── Test8011901.java │ ├── 8015436 │ │ └── Test8015436.java │ ├── EscapeAnalysis │ │ └── Test8020215.java │ ├── ciReplay │ │ ├── TestSA.sh │ │ ├── TestVM.sh │ │ ├── TestVM_no_comp_level.sh │ │ └── common.sh │ ├── codecache │ │ ├── CheckReservedInitialCodeCacheSizeArgOrder.java │ │ └── CheckUpperLimit.java │ ├── codegen │ │ ├── LoadWithMask.java │ │ └── LoadWithMask2.java │ ├── cpuflags │ │ └── RestoreMXCSR.java │ ├── gcbarriers │ │ └── G1CrashTest.java │ ├── inlining │ │ ├── DefaultAndConcreteMethodsCHA.java │ │ ├── InlineDefaultMethod.java │ │ └── InlineDefaultMethod1.java │ ├── intrinsics │ │ ├── mathexact │ │ │ ├── AddExactICondTest.java │ │ │ ├── AddExactIConstantTest.java │ │ │ ├── AddExactILoadTest.java │ │ │ ├── AddExactILoopDependentTest.java │ │ │ ├── AddExactINonConstantTest.java │ │ │ ├── AddExactIRepeatTest.java │ │ │ ├── AddExactLConstantTest.java │ │ │ ├── AddExactLNonConstantTest.java │ │ │ ├── CompareTest.java │ │ │ ├── DecExactITest.java │ │ │ ├── DecExactLTest.java │ │ │ ├── GVNTest.java │ │ │ ├── IncExactITest.java │ │ │ ├── IncExactLTest.java │ │ │ ├── MulExactICondTest.java │ │ │ ├── MulExactIConstantTest.java │ │ │ ├── MulExactILoadTest.java │ │ │ ├── MulExactILoopDependentTest.java │ │ │ ├── MulExactINonConstantTest.java │ │ │ ├── MulExactIRepeatTest.java │ │ │ ├── MulExactLConstantTest.java │ │ │ ├── MulExactLNonConstantTest.java │ │ │ ├── NegExactIConstantTest.java │ │ │ ├── NegExactILoadTest.java │ │ │ ├── NegExactILoopDependentTest.java │ │ │ ├── NegExactINonConstantTest.java │ │ │ ├── NegExactLConstantTest.java │ │ │ ├── NegExactLNonConstantTest.java │ │ │ ├── NestedMathExactTest.java │ │ │ ├── SplitThruPhiTest.java │ │ │ ├── SubExactICondTest.java │ │ │ ├── SubExactIConstantTest.java │ │ │ ├── SubExactILoadTest.java │ │ │ ├── SubExactILoopDependentTest.java │ │ │ ├── SubExactINonConstantTest.java │ │ │ ├── SubExactIRepeatTest.java │ │ │ ├── SubExactLConstantTest.java │ │ │ ├── SubExactLNonConstantTest.java │ │ │ └── Verify.java │ │ └── stringequals │ │ │ └── TestStringEqualsBadLength.java │ ├── jsr292 │ │ ├── ConcurrentClassLoadingTest.java │ │ ├── CreatesInterfaceDotEqualsCallInfo.java │ │ ├── createsInterfaceDotEqualsCallInfo.js │ │ └── methodHandleExceptions │ │ │ ├── ByteClassLoader.java │ │ │ ├── TestAMEnotNPE.java │ │ │ └── p │ │ │ ├── C.java │ │ │ ├── Dok.java │ │ │ ├── E.java │ │ │ ├── F.java │ │ │ ├── I.java │ │ │ ├── Tdirect.java │ │ │ └── Treflect.java │ ├── membars │ │ └── DekkerTest.java │ ├── print │ │ └── PrintInlining.java │ ├── profiling │ │ ├── TestUnexpectedProfilingMismatch.java │ │ └── unloadingconflict │ │ │ ├── B.java │ │ │ └── TestProfileConflictClassUnloading.java │ ├── reflection │ │ └── ArrayNewInstanceOfVoid.java │ ├── regalloc │ │ └── C1ObjectSpillInLogicOp.java │ ├── startup │ │ ├── SmallCodeCacheStartup.java │ │ └── StartupOutput.java │ ├── tiered │ │ ├── CompLevelsTest.java │ │ ├── NonTieredLevelsTest.java │ │ └── TieredLevelsTest.java │ ├── types │ │ └── TypeSpeculation.java │ ├── uncommontrap │ │ ├── TestStackBangRbp.java │ │ └── UncommonTrapStackBang.java │ ├── unsafe │ │ └── GetUnsafeObjectG1PreBarrier.java │ └── whitebox │ │ ├── ClearMethodStateTest.java │ │ ├── CompilerWhiteBoxTest.java │ │ ├── DeoptimizeAllTest.java │ │ ├── DeoptimizeMethodTest.java │ │ ├── EnqueueMethodForCompilationTest.java │ │ ├── IsMethodCompilableTest.java │ │ ├── MakeMethodNotCompilableTest.java │ │ ├── SetDontInlineMethodTest.java │ │ └── SetForceInlineMethodTest.java │ ├── gc │ ├── 6581734 │ │ └── Test6581734.java │ ├── 6845368 │ │ └── bigobj.java │ ├── 6941923 │ │ └── Test6941923.java │ ├── 7072527 │ │ └── TestFullGCCount.java │ ├── 8000311 │ │ └── Test8000311.java │ ├── TestG1ZeroPGCTJcmdThreadPrint.java │ ├── TestObjectAlignment.java │ ├── TestSystemGC.java │ ├── TestVerifyDuringStartup.java │ ├── arguments │ │ ├── TestAlignmentToUseLargePages.java │ │ ├── TestCMSHeapSizeFlags.java │ │ ├── TestCompressedClassFlags.java │ │ ├── TestG1HeapRegionSize.java │ │ ├── TestG1HeapSizeFlags.java │ │ ├── TestHeapFreeRatio.java │ │ ├── TestInitialTenuringThreshold.java │ │ ├── TestMaxHeapSizeTools.java │ │ ├── TestMaxNewSize.java │ │ ├── TestMinInitialErgonomics.java │ │ ├── TestParallelHeapSizeFlags.java │ │ ├── TestSerialHeapSizeFlags.java │ │ ├── TestUnrecognizedVMOptionsHandling.java │ │ ├── TestUseCompressedOopsErgo.java │ │ └── TestUseCompressedOopsErgoTools.java │ ├── concurrentMarkSweep │ │ ├── CheckAllocateAndSystemGC.java │ │ ├── GuardShrinkWarning.java │ │ └── SystemGCOnForegroundCollector.java │ ├── g1 │ │ ├── TestHumongousAllocInitialMark.java │ │ ├── TestHumongousCodeCacheRoots.java │ │ ├── TestPrintGCDetails.java │ │ ├── TestPrintRegionRememberedSetInfo.java │ │ ├── TestRegionAlignment.java │ │ ├── TestShrinkToOneRegion.java │ │ ├── TestSummarizeRSetStats.java │ │ ├── TestSummarizeRSetStatsPerRegion.java │ │ ├── TestSummarizeRSetStatsThreads.java │ │ └── TestSummarizeRSetStatsTools.java │ ├── metaspace │ │ ├── CompressedClassSpaceSizeInJmapHeap.java │ │ ├── G1AddMetaspaceDependency.java │ │ ├── TestMetaspaceMemoryPool.java │ │ ├── TestMetaspacePerfCounters.java │ │ ├── TestMetaspaceSizeFlags.java │ │ └── TestPerfCountersAndMemoryPools.java │ ├── parallelScavenge │ │ └── AdaptiveGCBoundary.java │ └── startup_warnings │ │ ├── TestCMS.java │ │ ├── TestCMSForegroundFlags.java │ │ ├── TestCMSIncrementalMode.java │ │ ├── TestCMSNoIncrementalMode.java │ │ ├── TestDefNewCMS.java │ │ ├── TestDefaultMaxRAMFraction.java │ │ ├── TestG1.java │ │ ├── TestIncGC.java │ │ ├── TestParNewCMS.java │ │ ├── TestParNewSerialOld.java │ │ ├── TestParallelGC.java │ │ ├── TestParallelScavengeSerialOld.java │ │ └── TestSerialGC.java │ ├── jprt.config │ ├── runtime │ ├── 6294277 │ │ └── SourceDebugExtension.java │ ├── 6626217 │ │ ├── IFace.java │ │ ├── Loader2.java │ │ ├── Test6626217.sh │ │ ├── You_Have_Been_P0wned.java │ │ ├── bug_21227.java │ │ ├── from_loader2.java │ │ ├── many_loader1.java.foo │ │ └── many_loader2.java.foo │ ├── 6819213 │ │ └── TestBootNativeLibraryPath.java │ ├── 6888954 │ │ └── vmerrors.sh │ ├── 6925573 │ │ └── SortMethodsTest.java │ ├── 6929067 │ │ ├── T.java │ │ ├── Test6929067.sh │ │ └── invoke.c │ ├── 6981737 │ │ └── Test6981737.java │ ├── 7100935 │ │ ├── TestConjointAtomicArraycopy.java │ │ └── TestShortArraycopy.java │ ├── 7107135 │ │ ├── Test.java │ │ ├── Test7107135.sh │ │ ├── TestMT.java │ │ └── test.c │ ├── 7110720 │ │ └── Test7110720.sh │ ├── 7116786 │ │ ├── Test7116786.java │ │ └── testcases.jar │ ├── 7158988 │ │ ├── FieldMonitor.java │ │ └── TestPostFieldModification.java │ ├── 7160757 │ │ └── Test7160757.java │ ├── 7162488 │ │ └── Test7162488.sh │ ├── 7167069 │ │ └── PrintAsFlag.java │ ├── 7194254 │ │ └── Test7194254.java │ ├── 8001071 │ │ ├── Test8001071.java │ │ └── Test8001071.sh │ ├── 8003720 │ │ ├── Asmator.java │ │ ├── Test8003720.java │ │ ├── Victim.java │ │ └── VictimClassLoader.java │ ├── 8007320 │ │ └── ConstMethodTest.java │ ├── 8007475 │ │ └── StackMapFrameTest.java │ ├── 8010389 │ │ └── VMThreadDlopen.java │ ├── 8024804 │ │ └── RegisterNatives.java │ ├── 8026365 │ │ └── InvokeSpecialAnonTest.java │ ├── 8026394 │ │ └── InterfaceObjectTest.java │ ├── CDSCompressedKPtrs │ │ ├── CDSCompressedKPtrs.java │ │ ├── CDSCompressedKPtrsError.java │ │ └── XShareAuto.java │ ├── ClassFile │ │ ├── JsrRewriting.java │ │ ├── JsrRewritingTestCase.jar │ │ ├── OomWhileParsingRepeatedJsr.java │ │ └── testcase.jar │ ├── ClassUnload │ │ ├── KeepAliveClass.java │ │ ├── KeepAliveClassLoader.java │ │ ├── KeepAliveObject.java │ │ ├── KeepAliveSoftReference.java │ │ ├── UnloadTest.java │ │ └── classes │ │ │ └── test │ │ │ └── Empty.java │ ├── CommandLine │ │ ├── BooleanFlagWithInvalidValue.java │ │ ├── CompilerConfigFileWarning.java │ │ ├── ConfigFileParsing.java │ │ ├── ConfigFileWarning.java │ │ ├── FlagWithInvalidValue.java │ │ ├── NonBooleanFlagWithInvalidBooleanPrefix.java │ │ ├── PrintGCApplicationConcurrentTime.java │ │ └── UnrecognizedVMOption.java │ ├── CompressedOops │ │ ├── CompressedClassPointers.java │ │ └── CompressedKlassPointerAndOops.java │ ├── InitialThreadOverflow │ │ ├── DoOverflow.java │ │ ├── invoke.cxx │ │ └── testme.sh │ ├── InternalApi │ │ └── ThreadCpuTimesDeadlock.java │ ├── LoadClass │ │ ├── LoadClassNegative.java │ │ ├── TestForName.java │ │ └── dummy.jar │ ├── Metaspace │ │ ├── FragmentMetaspace.java │ │ ├── FragmentMetaspaceSimple.java │ │ └── classes │ │ │ └── test │ │ │ └── Empty.java │ ├── NMT │ │ ├── BaselineWithParameter.java │ │ ├── CommandLineDetail.java │ │ ├── CommandLineEmptyArgument.java │ │ ├── CommandLineInvalidArgument.java │ │ ├── CommandLineSummary.java │ │ ├── CommandLineTurnOffNMT.java │ │ ├── JcmdScale.java │ │ ├── JcmdWithNMTDisabled.java │ │ ├── MallocTestType.java │ │ ├── PrintNMTStatistics.java │ │ ├── PrintNMTStatisticsWithNMTDisabled.java │ │ ├── ReleaseCommittedMemory.java │ │ ├── ShutdownTwice.java │ │ ├── SummaryAfterShutdown.java │ │ ├── SummarySanityCheck.java │ │ ├── ThreadedMallocTestType.java │ │ ├── ThreadedVirtualAllocTestType.java │ │ └── VirtualAllocTestType.java │ ├── RedefineObject │ │ ├── Agent.java │ │ ├── TestRedefineObject.java │ │ └── WalkThroughInvoke.java │ ├── SharedArchiveFile │ │ ├── CdsDifferentObjectAlignment.java │ │ ├── CdsSameObjectAlignment.java │ │ └── SharedArchiveFile.java │ ├── XCheckJniJsig │ │ └── XCheckJSig.java │ ├── contended │ │ ├── Basic.java │ │ ├── DefaultValue.java │ │ ├── HasNonStatic.java │ │ ├── Inheritance1.java │ │ ├── OopMaps.java │ │ └── Options.java │ ├── interned │ │ └── SanityTest.java │ ├── jsig │ │ ├── Test8017498.sh │ │ ├── TestJNI.c │ │ └── TestJNI.java │ ├── lambda-features │ │ └── PublicStaticInterfaceMethodHandling.java │ ├── memory │ │ ├── LargePages │ │ │ └── TestLargePagesFlags.java │ │ ├── MultiAllocateNullCheck.java │ │ ├── ReadFromNoaccessArea.java │ │ ├── ReserveMemory.java │ │ ├── RunUnitTestsConcurrently.java │ │ └── StressVirtualSpaceResize.java │ └── testlibrary │ │ ├── ClassUnloadCommon.java │ │ └── GeneratedClassLoader.java │ ├── sanity │ ├── ExecuteInternalVMTests.java │ ├── WBApi.java │ └── WhiteBox.java │ ├── serviceability │ ├── 7170638 │ │ └── SDTProbesGNULinuxTest.sh │ ├── ParserTest.java │ ├── attach │ │ ├── AttachWithStalePidFile.java │ │ └── AttachWithStalePidFileTarget.java │ ├── sa │ │ └── jmap-hprof │ │ │ ├── JMapHProfLargeHeapProc.java │ │ │ └── JMapHProfLargeHeapTest.java │ └── threads │ │ └── TestFalseDeadLock.java │ ├── test_env.sh │ ├── testlibrary │ ├── ClassFileInstaller.java │ ├── com │ │ └── oracle │ │ │ └── java │ │ │ └── testlibrary │ │ │ ├── Asserts.java │ │ │ ├── ByteCodeLoader.java │ │ │ ├── InMemoryJavaCompiler.java │ │ │ ├── InputArguments.java │ │ │ ├── JDKToolFinder.java │ │ │ ├── JDKToolLauncher.java │ │ │ ├── OutputAnalyzer.java │ │ │ ├── OutputBuffer.java │ │ │ ├── PerfCounter.java │ │ │ ├── PerfCounters.java │ │ │ ├── Platform.java │ │ │ ├── ProcessTools.java │ │ │ └── StreamPumper.java │ ├── ctw │ │ ├── Makefile │ │ ├── README │ │ ├── src │ │ │ └── sun │ │ │ │ └── hotspot │ │ │ │ └── tools │ │ │ │ └── ctw │ │ │ │ ├── ClassPathDirEntry.java │ │ │ │ ├── ClassPathJarEntry.java │ │ │ │ ├── ClassPathJarInDirEntry.java │ │ │ │ ├── ClassesListInFile.java │ │ │ │ ├── CompileTheWorld.java │ │ │ │ ├── Compiler.java │ │ │ │ ├── PathHandler.java │ │ │ │ └── Utils.java │ │ └── test │ │ │ ├── Bar.java │ │ │ ├── ClassesDirTest.java │ │ │ ├── ClassesListTest.java │ │ │ ├── CtwTest.java │ │ │ ├── Foo.java │ │ │ ├── JarDirTest.java │ │ │ ├── JarsTest.java │ │ │ └── classes.lst │ └── whitebox │ │ ├── Makefile │ │ └── sun │ │ └── hotspot │ │ ├── WhiteBox.java │ │ └── parser │ │ └── DiagnosticCommand.java │ └── testlibrary_tests │ ├── AssertsTest.java │ ├── OutputAnalyzerReportingTest.java │ └── OutputAnalyzerTest.java └── javac ├── .classpath ├── .project ├── args.txt ├── my-docs └── 构建与调试.md ├── my-test ├── my │ └── test │ │ ├── JavacStarter.java │ │ └── Test.java └── test │ ├── Event.java │ └── d │ └── DAGExecutionEvent.java └── src ├── com └── sun │ ├── source │ ├── doctree │ │ ├── AttributeTree.java │ │ ├── AuthorTree.java │ │ ├── BlockTagTree.java │ │ ├── CommentTree.java │ │ ├── DeprecatedTree.java │ │ ├── DocCommentTree.java │ │ ├── DocRootTree.java │ │ ├── DocTree.java │ │ ├── DocTreeVisitor.java │ │ ├── EndElementTree.java │ │ ├── EntityTree.java │ │ ├── ErroneousTree.java │ │ ├── IdentifierTree.java │ │ ├── InheritDocTree.java │ │ ├── InlineTagTree.java │ │ ├── LinkTree.java │ │ ├── LiteralTree.java │ │ ├── ParamTree.java │ │ ├── ReferenceTree.java │ │ ├── ReturnTree.java │ │ ├── SeeTree.java │ │ ├── SerialDataTree.java │ │ ├── SerialFieldTree.java │ │ ├── SerialTree.java │ │ ├── SinceTree.java │ │ ├── StartElementTree.java │ │ ├── TextTree.java │ │ ├── ThrowsTree.java │ │ ├── UnknownBlockTagTree.java │ │ ├── UnknownInlineTagTree.java │ │ ├── ValueTree.java │ │ ├── VersionTree.java │ │ └── package-info.java │ ├── tree │ │ ├── AnnotatedTypeTree.java │ │ ├── AnnotationTree.java │ │ ├── ArrayAccessTree.java │ │ ├── ArrayTypeTree.java │ │ ├── AssertTree.java │ │ ├── AssignmentTree.java │ │ ├── BinaryTree.java │ │ ├── BlockTree.java │ │ ├── BreakTree.java │ │ ├── CaseTree.java │ │ ├── CatchTree.java │ │ ├── ClassTree.java │ │ ├── CompilationUnitTree.java │ │ ├── CompoundAssignmentTree.java │ │ ├── ConditionalExpressionTree.java │ │ ├── ContinueTree.java │ │ ├── DoWhileLoopTree.java │ │ ├── EmptyStatementTree.java │ │ ├── EnhancedForLoopTree.java │ │ ├── ErroneousTree.java │ │ ├── ExpressionStatementTree.java │ │ ├── ExpressionTree.java │ │ ├── ForLoopTree.java │ │ ├── IdentifierTree.java │ │ ├── IfTree.java │ │ ├── ImportTree.java │ │ ├── InstanceOfTree.java │ │ ├── IntersectionTypeTree.java │ │ ├── LabeledStatementTree.java │ │ ├── LambdaExpressionTree.java │ │ ├── LineMap.java │ │ ├── LiteralTree.java │ │ ├── MemberReferenceTree.java │ │ ├── MemberSelectTree.java │ │ ├── MethodInvocationTree.java │ │ ├── MethodTree.java │ │ ├── ModifiersTree.java │ │ ├── NewArrayTree.java │ │ ├── NewClassTree.java │ │ ├── ParameterizedTypeTree.java │ │ ├── ParenthesizedTree.java │ │ ├── PrimitiveTypeTree.java │ │ ├── ReturnTree.java │ │ ├── Scope.java │ │ ├── StatementTree.java │ │ ├── SwitchTree.java │ │ ├── SynchronizedTree.java │ │ ├── ThrowTree.java │ │ ├── Tree.java │ │ ├── TreeVisitor.java │ │ ├── TryTree.java │ │ ├── TypeCastTree.java │ │ ├── TypeParameterTree.java │ │ ├── UnaryTree.java │ │ ├── UnionTypeTree.java │ │ ├── VariableTree.java │ │ ├── WhileLoopTree.java │ │ ├── WildcardTree.java │ │ └── package-info.java │ └── util │ │ ├── DocSourcePositions.java │ │ ├── DocTreePath.java │ │ ├── DocTreePathScanner.java │ │ ├── DocTreeScanner.java │ │ ├── DocTrees.java │ │ ├── JavacTask.java │ │ ├── Plugin.java │ │ ├── SimpleDocTreeVisitor.java │ │ ├── SimpleTreeVisitor.java │ │ ├── SourcePositions.java │ │ ├── TaskEvent.java │ │ ├── TaskListener.java │ │ ├── TreePath.java │ │ ├── TreePathScanner.java │ │ ├── TreeScanner.java │ │ ├── Trees.java │ │ └── package-info.java │ └── tools │ ├── doclint │ ├── Checker.java │ ├── DocLint.java │ ├── Entity.java │ ├── Env.java │ ├── HtmlTag.java │ ├── Messages.java │ └── resources │ │ ├── doclint.properties │ │ ├── doclint_ja.properties │ │ └── doclint_zh_CN.properties │ └── javac │ ├── Main.java │ ├── api │ ├── BasicJavacTask.java │ ├── ClientCodeWrapper.java │ ├── DiagnosticFormatter.java │ ├── Formattable.java │ ├── JavacScope.java │ ├── JavacTaskImpl.java │ ├── JavacTool.java │ ├── JavacTrees.java │ ├── Messages.java │ ├── MultiTaskListener.java │ └── WrappingJavaFileManager.java │ ├── code │ ├── AnnoConstruct.java │ ├── Attribute.java │ ├── BoundKind.java │ ├── DeferredLintHandler.java │ ├── Flags.java │ ├── Kinds.java │ ├── Lint.java │ ├── Printer.java │ ├── Scope.java │ ├── Source.java │ ├── Symbol.java │ ├── SymbolMetadata.java │ ├── Symtab.java │ ├── TargetType.java │ ├── Type.java │ ├── TypeAnnotationPosition.java │ ├── TypeAnnotations.java │ ├── TypeTag.java │ └── Types.java │ ├── comp │ ├── Annotate.java │ ├── Attr.java │ ├── AttrContext.java │ ├── AttrContextEnv.java │ ├── Check.java │ ├── CompileStates.java │ ├── ConstFold.java │ ├── DeferredAttr.java │ ├── Enter.java │ ├── Env.java │ ├── Flow.java │ ├── Infer.java │ ├── LambdaToMethod.java │ ├── Lower.java │ ├── MemberEnter.java │ ├── Resolve.java │ ├── Todo.java │ ├── TransTypes.java │ └── TypeEnvs.java │ ├── file │ ├── BaseFileObject.java │ ├── CacheFSInfo.java │ ├── FSInfo.java │ ├── JavacFileManager.java │ ├── Locations.java │ ├── RegularFileObject.java │ ├── RelativePath.java │ ├── SymbolArchive.java │ ├── ZipArchive.java │ ├── ZipFileIndex.java │ ├── ZipFileIndexArchive.java │ └── ZipFileIndexCache.java │ ├── jvm │ ├── ByteCodes.java │ ├── CRTFlags.java │ ├── CRTable.java │ ├── ClassFile.java │ ├── ClassReader.java │ ├── ClassWriter.java │ ├── Code.java │ ├── Gen.java │ ├── Items.java │ ├── JNIWriter.java │ ├── Pool.java │ ├── Profile.java │ ├── Target.java │ └── UninitializedType.java │ ├── main │ ├── CommandLine.java │ ├── JavaCompiler.java │ ├── Main.java │ ├── Option.java │ └── OptionHelper.java │ ├── model │ ├── AnnotationProxyMaker.java │ ├── FilteredMemberList.java │ ├── JavacElements.java │ ├── JavacSourcePosition.java │ └── JavacTypes.java │ ├── nio │ ├── JavacPathFileManager.java │ ├── PathFileManager.java │ └── PathFileObject.java │ ├── parser │ ├── DocCommentParser.java │ ├── JavaTokenizer.java │ ├── JavacParser.java │ ├── JavadocTokenizer.java │ ├── LazyDocCommentTable.java │ ├── Lexer.java │ ├── Parser.java │ ├── ParserFactory.java │ ├── Scanner.java │ ├── ScannerFactory.java │ ├── Tokens.java │ └── UnicodeReader.java │ ├── processing │ ├── AnnotationProcessingError.java │ ├── JavacFiler.java │ ├── JavacMessager.java │ ├── JavacProcessingEnvironment.java │ ├── JavacRoundEnvironment.java │ ├── PrintingProcessor.java │ └── ServiceProxy.java │ ├── resources │ ├── compiler.properties │ ├── compiler_ja.properties │ ├── compiler_zh_CN.properties │ ├── javac.properties │ ├── javac_ja.properties │ ├── javac_zh_CN.properties │ ├── legacy.properties │ └── version.properties-template │ ├── services │ └── javax.tools.JavaCompilerTool │ ├── sym │ ├── CreateSymbols.java │ └── Profiles.java │ ├── tree │ ├── DCTree.java │ ├── DocCommentTable.java │ ├── DocPretty.java │ ├── DocTreeMaker.java │ ├── EndPosTable.java │ ├── JCTree.java │ ├── Pretty.java │ ├── TreeCopier.java │ ├── TreeInfo.java │ ├── TreeMaker.java │ ├── TreeScanner.java │ └── TreeTranslator.java │ └── util │ ├── Abort.java │ ├── AbstractDiagnosticFormatter.java │ ├── AbstractLog.java │ ├── ArrayUtils.java │ ├── Assert.java │ ├── BaseFileManager.java │ ├── BasicDiagnosticFormatter.java │ ├── Bits.java │ ├── ByteBuffer.java │ ├── ClientCodeException.java │ ├── Constants.java │ ├── Context.java │ ├── Convert.java │ ├── DiagnosticSource.java │ ├── FatalError.java │ ├── Filter.java │ ├── ForwardingDiagnosticFormatter.java │ ├── GraphUtils.java │ ├── IntHashTable.java │ ├── JCDiagnostic.java │ ├── JavacMessages.java │ ├── LayoutCharacters.java │ ├── List.java │ ├── ListBuffer.java │ ├── Log.java │ ├── MandatoryWarningHandler.java │ ├── Name.java │ ├── Names.java │ ├── Options.java │ ├── Pair.java │ ├── Position.java │ ├── PropagatedException.java │ ├── RawDiagnosticFormatter.java │ ├── RichDiagnosticFormatter.java │ ├── ServiceLoader.java │ ├── SharedNameTable.java │ ├── StringUtils.java │ ├── UnsharedNameTable.java │ └── Warner.java ├── javax ├── annotation │ └── processing │ │ ├── AbstractProcessor.java │ │ ├── Completion.java │ │ ├── Completions.java │ │ ├── Filer.java │ │ ├── FilerException.java │ │ ├── Messager.java │ │ ├── ProcessingEnvironment.java │ │ ├── Processor.java │ │ ├── RoundEnvironment.java │ │ ├── SupportedAnnotationTypes.java │ │ ├── SupportedOptions.java │ │ ├── SupportedSourceVersion.java │ │ └── package-info.java ├── lang │ └── model │ │ ├── AnnotatedConstruct.java │ │ ├── SourceVersion.java │ │ ├── UnknownEntityException.java │ │ ├── element │ │ ├── AnnotationMirror.java │ │ ├── AnnotationValue.java │ │ ├── AnnotationValueVisitor.java │ │ ├── Element.java │ │ ├── ElementKind.java │ │ ├── ElementVisitor.java │ │ ├── ExecutableElement.java │ │ ├── Modifier.java │ │ ├── Name.java │ │ ├── NestingKind.java │ │ ├── PackageElement.java │ │ ├── Parameterizable.java │ │ ├── QualifiedNameable.java │ │ ├── TypeElement.java │ │ ├── TypeParameterElement.java │ │ ├── UnknownAnnotationValueException.java │ │ ├── UnknownElementException.java │ │ ├── VariableElement.java │ │ └── package-info.java │ │ ├── overview.html │ │ ├── package-info.java │ │ ├── type │ │ ├── ArrayType.java │ │ ├── DeclaredType.java │ │ ├── ErrorType.java │ │ ├── ExecutableType.java │ │ ├── IntersectionType.java │ │ ├── MirroredTypeException.java │ │ ├── MirroredTypesException.java │ │ ├── NoType.java │ │ ├── NullType.java │ │ ├── PrimitiveType.java │ │ ├── ReferenceType.java │ │ ├── TypeKind.java │ │ ├── TypeMirror.java │ │ ├── TypeVariable.java │ │ ├── TypeVisitor.java │ │ ├── UnionType.java │ │ ├── UnknownTypeException.java │ │ ├── WildcardType.java │ │ └── package-info.java │ │ └── util │ │ ├── AbstractAnnotationValueVisitor6.java │ │ ├── AbstractAnnotationValueVisitor7.java │ │ ├── AbstractAnnotationValueVisitor8.java │ │ ├── AbstractElementVisitor6.java │ │ ├── AbstractElementVisitor7.java │ │ ├── AbstractElementVisitor8.java │ │ ├── AbstractTypeVisitor6.java │ │ ├── AbstractTypeVisitor7.java │ │ ├── AbstractTypeVisitor8.java │ │ ├── ElementFilter.java │ │ ├── ElementKindVisitor6.java │ │ ├── ElementKindVisitor7.java │ │ ├── ElementKindVisitor8.java │ │ ├── ElementScanner6.java │ │ ├── ElementScanner7.java │ │ ├── ElementScanner8.java │ │ ├── Elements.java │ │ ├── SimpleAnnotationValueVisitor6.java │ │ ├── SimpleAnnotationValueVisitor7.java │ │ ├── SimpleAnnotationValueVisitor8.java │ │ ├── SimpleElementVisitor6.java │ │ ├── SimpleElementVisitor7.java │ │ ├── SimpleElementVisitor8.java │ │ ├── SimpleTypeVisitor6.java │ │ ├── SimpleTypeVisitor7.java │ │ ├── SimpleTypeVisitor8.java │ │ ├── TypeKindVisitor6.java │ │ ├── TypeKindVisitor7.java │ │ ├── TypeKindVisitor8.java │ │ ├── Types.java │ │ └── package-info.java └── tools │ ├── Diagnostic.java │ ├── DiagnosticCollector.java │ ├── DiagnosticListener.java │ ├── DocumentationTool.java │ ├── FileObject.java │ ├── ForwardingFileObject.java │ ├── ForwardingJavaFileManager.java │ ├── ForwardingJavaFileObject.java │ ├── JavaCompiler.java │ ├── JavaFileManager.java │ ├── JavaFileObject.java │ ├── OptionChecker.java │ ├── SimpleJavaFileObject.java │ ├── StandardJavaFileManager.java │ ├── StandardLocation.java │ ├── Tool.java │ ├── ToolProvider.java │ ├── overview.html │ └── package-info.java └── jdk └── Exported.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/README.md -------------------------------------------------------------------------------- /hotspot/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /hotspot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/LICENSE -------------------------------------------------------------------------------- /hotspot/THIRD_PARTY_README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/THIRD_PARTY_README -------------------------------------------------------------------------------- /hotspot/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/Makefile -------------------------------------------------------------------------------- /hotspot/make/altsrc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/altsrc.make -------------------------------------------------------------------------------- /hotspot/make/bsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/Makefile -------------------------------------------------------------------------------- /hotspot/make/bsd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/README -------------------------------------------------------------------------------- /hotspot/make/bsd/adlc_updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/adlc_updater -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/adlc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/adlc.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/amd64.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/amd64.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/arm.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/arm.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/buildtree.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/buildtree.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/compiler1.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/compiler1.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/compiler2.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/compiler2.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/core.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/core.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/cscope.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/cscope.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/debug.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/debug.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/defs.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/defs.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/dtrace.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/dtrace.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/fastdebug.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/fastdebug.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/gcc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/gcc.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/hp.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/hp.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/hp1.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/hp1.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/i486.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/i486.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/ia64.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/ia64.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/jsig.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/jsig.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/jvmti.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/jvmti.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/minimal1.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/minimal1.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/optimized.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/optimized.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/ppc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/ppc.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/product.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/product.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/rules.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/sa.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/sa.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/saproc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/saproc.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/shark.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/shark.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/sparc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/sparc.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/sparcv9.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/sparcv9.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/tiered.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/tiered.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/top.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/top.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/trace.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/trace.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/universal.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/universal.gmk -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/vm.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/vm.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/zero.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/zero.make -------------------------------------------------------------------------------- /hotspot/make/bsd/makefiles/zeroshark.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/makefiles/zeroshark.make -------------------------------------------------------------------------------- /hotspot/make/bsd/platform_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/platform_amd64 -------------------------------------------------------------------------------- /hotspot/make/bsd/platform_amd64.suncc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/platform_amd64.suncc -------------------------------------------------------------------------------- /hotspot/make/bsd/platform_i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/platform_i486 -------------------------------------------------------------------------------- /hotspot/make/bsd/platform_i486.suncc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/platform_i486.suncc -------------------------------------------------------------------------------- /hotspot/make/bsd/platform_ia64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/platform_ia64 -------------------------------------------------------------------------------- /hotspot/make/bsd/platform_sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/platform_sparc -------------------------------------------------------------------------------- /hotspot/make/bsd/platform_sparcv9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/platform_sparcv9 -------------------------------------------------------------------------------- /hotspot/make/bsd/platform_zero.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/bsd/platform_zero.in -------------------------------------------------------------------------------- /hotspot/make/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/build.sh -------------------------------------------------------------------------------- /hotspot/make/cscope.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/cscope.make -------------------------------------------------------------------------------- /hotspot/make/defs.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/defs.make -------------------------------------------------------------------------------- /hotspot/make/excludeSrc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/excludeSrc.make -------------------------------------------------------------------------------- /hotspot/make/hotspot.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/hotspot.script -------------------------------------------------------------------------------- /hotspot/make/hotspot_distro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/hotspot_distro -------------------------------------------------------------------------------- /hotspot/make/hotspot_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/hotspot_version -------------------------------------------------------------------------------- /hotspot/make/jdk6_hotspot_distro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/jdk6_hotspot_distro -------------------------------------------------------------------------------- /hotspot/make/jprt.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/jprt.gmk -------------------------------------------------------------------------------- /hotspot/make/jprt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/jprt.properties -------------------------------------------------------------------------------- /hotspot/make/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/Makefile -------------------------------------------------------------------------------- /hotspot/make/linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/README -------------------------------------------------------------------------------- /hotspot/make/linux/adlc_updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/adlc_updater -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/adlc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/adlc.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/amd64.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/amd64.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/arm.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/arm.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/core.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/core.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/debug.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/debug.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/defs.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/defs.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/dtrace.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/dtrace.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/gcc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/gcc.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/hp.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/hp.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/hp1.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/hp1.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/i486.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/i486.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/ia64.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/ia64.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/jsig.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/jsig.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/jvmti.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/jvmti.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/ppc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/ppc.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/product.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/product.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/rules.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/sa.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/sa.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/saproc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/saproc.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/shark.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/shark.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/sparc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/sparc.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/sparcv9.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/sparcv9.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/tiered.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/tiered.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/top.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/top.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/trace.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/trace.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/vm.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/vm.make -------------------------------------------------------------------------------- /hotspot/make/linux/makefiles/zero.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/makefiles/zero.make -------------------------------------------------------------------------------- /hotspot/make/linux/platform_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_amd64 -------------------------------------------------------------------------------- /hotspot/make/linux/platform_amd64.suncc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_amd64.suncc -------------------------------------------------------------------------------- /hotspot/make/linux/platform_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_arm -------------------------------------------------------------------------------- /hotspot/make/linux/platform_i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_i486 -------------------------------------------------------------------------------- /hotspot/make/linux/platform_i486.suncc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_i486.suncc -------------------------------------------------------------------------------- /hotspot/make/linux/platform_ia64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_ia64 -------------------------------------------------------------------------------- /hotspot/make/linux/platform_ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_ppc -------------------------------------------------------------------------------- /hotspot/make/linux/platform_sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_sparc -------------------------------------------------------------------------------- /hotspot/make/linux/platform_sparcv9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_sparcv9 -------------------------------------------------------------------------------- /hotspot/make/linux/platform_zero.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/linux/platform_zero.in -------------------------------------------------------------------------------- /hotspot/make/openjdk_distro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/openjdk_distro -------------------------------------------------------------------------------- /hotspot/make/pic.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/pic.make -------------------------------------------------------------------------------- /hotspot/make/sa.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/sa.files -------------------------------------------------------------------------------- /hotspot/make/scm.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/scm.make -------------------------------------------------------------------------------- /hotspot/make/solaris/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/Makefile -------------------------------------------------------------------------------- /hotspot/make/solaris/adlc_updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/adlc_updater -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/adlc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/adlc.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/amd64.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/amd64.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/core.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/core.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/debug.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/debug.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/defs.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/defs.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/gcc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/gcc.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/hp.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/hp.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/hp1.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/hp1.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/i486.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/i486.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/jsig.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/jsig.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/jvmti.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/jvmti.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/reorder_CORE_amd64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/rules.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/sa.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/sa.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/sparc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/sparc.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/top.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/top.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/trace.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/trace.make -------------------------------------------------------------------------------- /hotspot/make/solaris/makefiles/vm.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/makefiles/vm.make -------------------------------------------------------------------------------- /hotspot/make/solaris/platform_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/platform_amd64 -------------------------------------------------------------------------------- /hotspot/make/solaris/platform_amd64.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/platform_amd64.gcc -------------------------------------------------------------------------------- /hotspot/make/solaris/platform_i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/platform_i486 -------------------------------------------------------------------------------- /hotspot/make/solaris/platform_i486.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/platform_i486.gcc -------------------------------------------------------------------------------- /hotspot/make/solaris/platform_sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/platform_sparc -------------------------------------------------------------------------------- /hotspot/make/solaris/platform_sparc.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/platform_sparc.gcc -------------------------------------------------------------------------------- /hotspot/make/solaris/platform_sparcv9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/platform_sparcv9 -------------------------------------------------------------------------------- /hotspot/make/solaris/platform_sparcv9.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/solaris/platform_sparcv9.gcc -------------------------------------------------------------------------------- /hotspot/make/templates/gpl-cp-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/templates/gpl-cp-header -------------------------------------------------------------------------------- /hotspot/make/templates/gpl-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/templates/gpl-header -------------------------------------------------------------------------------- /hotspot/make/windows/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/build.bat -------------------------------------------------------------------------------- /hotspot/make/windows/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/build.make -------------------------------------------------------------------------------- /hotspot/make/windows/build_vm_def.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/build_vm_def.sh -------------------------------------------------------------------------------- /hotspot/make/windows/create.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/create.bat -------------------------------------------------------------------------------- /hotspot/make/windows/create_obj_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/create_obj_files.sh -------------------------------------------------------------------------------- /hotspot/make/windows/cross_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/cross_build.bat -------------------------------------------------------------------------------- /hotspot/make/windows/get_msc_ver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/get_msc_ver.sh -------------------------------------------------------------------------------- /hotspot/make/windows/jvmexp.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/jvmexp.lcf -------------------------------------------------------------------------------- /hotspot/make/windows/jvmexp_g.lcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/jvmexp_g.lcf -------------------------------------------------------------------------------- /hotspot/make/windows/makefiles/adlc.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/makefiles/adlc.make -------------------------------------------------------------------------------- /hotspot/make/windows/makefiles/debug.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/makefiles/debug.make -------------------------------------------------------------------------------- /hotspot/make/windows/makefiles/defs.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/makefiles/defs.make -------------------------------------------------------------------------------- /hotspot/make/windows/makefiles/jvmti.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/makefiles/jvmti.make -------------------------------------------------------------------------------- /hotspot/make/windows/makefiles/rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/makefiles/rules.make -------------------------------------------------------------------------------- /hotspot/make/windows/makefiles/sa.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/makefiles/sa.make -------------------------------------------------------------------------------- /hotspot/make/windows/makefiles/top.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/makefiles/top.make -------------------------------------------------------------------------------- /hotspot/make/windows/makefiles/trace.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/makefiles/trace.make -------------------------------------------------------------------------------- /hotspot/make/windows/makefiles/vm.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/make/windows/makefiles/vm.make -------------------------------------------------------------------------------- /hotspot/my-docs/Eclipse注意.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/Eclipse注意.java -------------------------------------------------------------------------------- /hotspot/my-docs/HotSpot模块初始化流程分析.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/HotSpot模块初始化流程分析.java -------------------------------------------------------------------------------- /hotspot/my-docs/HotSpot用到的C++特性.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/HotSpot用到的C++特性.java -------------------------------------------------------------------------------- /hotspot/my-docs/Makefile分析.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/Makefile分析.java -------------------------------------------------------------------------------- /hotspot/my-docs/Visual Studio 调试技巧.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/Visual Studio 调试技巧.java -------------------------------------------------------------------------------- /hotspot/my-docs/asm/codeBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/asm/codeBuffer.java -------------------------------------------------------------------------------- /hotspot/my-docs/classfile/vmSymbols.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/classfile/vmSymbols.java -------------------------------------------------------------------------------- /hotspot/my-docs/classfile/概述.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/classfile/概述.java -------------------------------------------------------------------------------- /hotspot/my-docs/code/codeBlob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/code/codeBlob.java -------------------------------------------------------------------------------- /hotspot/my-docs/code/codeCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/code/codeCache.java -------------------------------------------------------------------------------- /hotspot/my-docs/code/code模块概述.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/code/code模块概述.java -------------------------------------------------------------------------------- /hotspot/my-docs/code/类图-CodeBlob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/code/类图-CodeBlob.png -------------------------------------------------------------------------------- /hotspot/my-docs/gc/collectedHeap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/gc/collectedHeap.java -------------------------------------------------------------------------------- /hotspot/my-docs/gc/概述.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/gc/概述.java -------------------------------------------------------------------------------- /hotspot/my-docs/gc/类图-CollectedHeap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/gc/类图-CollectedHeap.png -------------------------------------------------------------------------------- /hotspot/my-docs/gc/类图-VM_GC_Operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/gc/类图-VM_GC_Operation.png -------------------------------------------------------------------------------- /hotspot/my-docs/interpreter/调试汇编代码.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/interpreter/调试汇编代码.java -------------------------------------------------------------------------------- /hotspot/my-docs/memory/Collectors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/memory/Collectors.jpg -------------------------------------------------------------------------------- /hotspot/my-docs/memory/Metaspace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/memory/Metaspace.java -------------------------------------------------------------------------------- /hotspot/my-docs/memory/allocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/memory/allocation.java -------------------------------------------------------------------------------- /hotspot/my-docs/memory/类图-BarrierSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/memory/类图-BarrierSet.png -------------------------------------------------------------------------------- /hotspot/my-docs/memory/类图-Closure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/memory/类图-Closure.png -------------------------------------------------------------------------------- /hotspot/my-docs/memory/类图-Generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/memory/类图-Generation.png -------------------------------------------------------------------------------- /hotspot/my-docs/memory/类图-Space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/memory/类图-Space.png -------------------------------------------------------------------------------- /hotspot/my-docs/oops/ConstMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/oops/ConstMethod.java -------------------------------------------------------------------------------- /hotspot/my-docs/oops/ConstantPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/oops/ConstantPool.java -------------------------------------------------------------------------------- /hotspot/my-docs/oops/InstanceKlass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/oops/InstanceKlass.java -------------------------------------------------------------------------------- /hotspot/my-docs/oops/Method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/oops/Method.java -------------------------------------------------------------------------------- /hotspot/my-docs/oops/markOopDesc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/oops/markOopDesc.java -------------------------------------------------------------------------------- /hotspot/my-docs/oops/堆栈内存布局.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/oops/堆栈内存布局.java -------------------------------------------------------------------------------- /hotspot/my-docs/oops/概述.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/oops/概述.java -------------------------------------------------------------------------------- /hotspot/my-docs/oops/类图-Metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/oops/类图-Metadata.png -------------------------------------------------------------------------------- /hotspot/my-docs/oops/类图-oopDesc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/oops/类图-oopDesc.png -------------------------------------------------------------------------------- /hotspot/my-docs/os/os_windows.java: -------------------------------------------------------------------------------- 1 | VirtualAlloc函数用法: http://baike.baidu.com/view/1521481.htm 2 | -------------------------------------------------------------------------------- /hotspot/my-docs/prims/jni概述.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/prims/jni概述.java -------------------------------------------------------------------------------- /hotspot/my-docs/prims/jvmti概述.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/prims/jvmti概述.java -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/Flags.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/Flags_sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/Flags_sort.java -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/StubCode_att.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/StubCode_att.java -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/arguments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/arguments.java -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/handles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/handles.java -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/init.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/init.java -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/option.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/option.java -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/perfData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/perfData.java -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/thread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/thread.java -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/概述.java: -------------------------------------------------------------------------------- 1 | TODO 2 | -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/类图-PerfData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/类图-PerfData.png -------------------------------------------------------------------------------- /hotspot/my-docs/runtime/类图-thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/runtime/类图-thread.png -------------------------------------------------------------------------------- /hotspot/my-docs/services/memTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/services/memTracker.java -------------------------------------------------------------------------------- /hotspot/my-docs/services/memoryPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/services/memoryPool.java -------------------------------------------------------------------------------- /hotspot/my-docs/services/类图-DCmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/services/类图-DCmd.png -------------------------------------------------------------------------------- /hotspot/my-docs/utilities/ostream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/utilities/ostream.java -------------------------------------------------------------------------------- /hotspot/my-docs/代码导读.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/代码导读.java -------------------------------------------------------------------------------- /hotspot/my-docs/在Windows平台构建与调试HotSpot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/在Windows平台构建与调试HotSpot.md -------------------------------------------------------------------------------- /hotspot/my-docs/学习资料.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/学习资料.java -------------------------------------------------------------------------------- /hotspot/my-docs/难理解的代码.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-docs/难理解的代码.java -------------------------------------------------------------------------------- /hotspot/my-test/classes/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/classes/Test.java -------------------------------------------------------------------------------- /hotspot/my-test/classes/TestLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/classes/TestLauncher.java -------------------------------------------------------------------------------- /hotspot/my-test/dll/Math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/dll/Math.c -------------------------------------------------------------------------------- /hotspot/my-test/dll/TestMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/dll/TestMath.c -------------------------------------------------------------------------------- /hotspot/my-test/jni/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jni/HelloWorld.c -------------------------------------------------------------------------------- /hotspot/my-test/jni/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jni/HelloWorld.java -------------------------------------------------------------------------------- /hotspot/my-test/jni/api-test/ApiTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jni/api-test/ApiTest.c -------------------------------------------------------------------------------- /hotspot/my-test/jni/api-test/ApiTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jni/api-test/ApiTest.java -------------------------------------------------------------------------------- /hotspot/my-test/jni/api-test/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jni/api-test/run.bat -------------------------------------------------------------------------------- /hotspot/my-test/jni/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jni/run.bat -------------------------------------------------------------------------------- /hotspot/my-test/jvmArgsFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jvmArgsFile.txt -------------------------------------------------------------------------------- /hotspot/my-test/jvmFlagsFile.txt: -------------------------------------------------------------------------------- 1 | +AlwaysTenure 2 | -------------------------------------------------------------------------------- /hotspot/my-test/jvmti/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jvmti/HelloWorld.c -------------------------------------------------------------------------------- /hotspot/my-test/jvmti/api-test/ApiTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jvmti/api-test/ApiTest.c -------------------------------------------------------------------------------- /hotspot/my-test/jvmti/api-test/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jvmti/api-test/run.bat -------------------------------------------------------------------------------- /hotspot/my-test/jvmti/jdk-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jvmti/jdk-demo/index.html -------------------------------------------------------------------------------- /hotspot/my-test/jvmti/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/jvmti/run.bat -------------------------------------------------------------------------------- /hotspot/my-test/launcher/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/launcher/launcher.c -------------------------------------------------------------------------------- /hotspot/my-test/launcher/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/my-test/launcher/run.bat -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/args.cc -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/bytes_sparc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/bytes_sparc.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/copy_sparc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/copy_sparc.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/debug_sparc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/debug_sparc.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/frame_sparc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/frame_sparc.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/frame_sparc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/frame_sparc.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/icache_sparc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/icache_sparc.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/icache_sparc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/icache_sparc.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/jni_sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/jni_sparc.h -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/sparc.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/sparc.ad -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/vmreg_sparc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/vmreg_sparc.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/sparc/vm/vmreg_sparc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/sparc/vm/vmreg_sparc.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/assembler_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/assembler_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/assembler_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/assembler_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/bytecodes_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/bytecodes_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/bytecodes_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/bytecodes_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/bytes_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/bytes_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/c1_Defs_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/c1_Defs_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/c1_globals_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/c1_globals_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/c2_globals_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/c2_globals_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/c2_init_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/c2_init_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/codeBuffer_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/codeBuffer_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/compiledIC_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/compiledIC_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/copy_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/copy_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/debug_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/debug_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/depChecker_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/depChecker_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/depChecker_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/depChecker_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/frame_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/frame_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/frame_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/frame_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/globals_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/globals_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/icBuffer_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/icBuffer_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/icache_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/icache_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/icache_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/icache_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/jniTypes_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/jniTypes_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/jni_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/jni_x86.h -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/nativeInst_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/nativeInst_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/nativeInst_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/nativeInst_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/register_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/register_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/register_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/register_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/relocInfo_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/relocInfo_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/relocInfo_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/relocInfo_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/runtime_x86_32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/runtime_x86_32.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/runtime_x86_64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/runtime_x86_64.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/vmStructs_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/vmStructs_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/vm_version_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/vm_version_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/vm_version_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/vm_version_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/vmreg_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/vmreg_x86.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/vmreg_x86.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/vmreg_x86.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/x86.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/x86.ad -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/x86_32.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/x86_32.ad -------------------------------------------------------------------------------- /hotspot/src/cpu/x86/vm/x86_64.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/x86/vm/x86_64.ad -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/bytes_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/bytes_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/copy_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/copy_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/debug_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/debug_zero.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/entry_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/entry_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/frame_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/frame_zero.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/frame_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/frame_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/globals_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/globals_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/icBuffer_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/icBuffer_zero.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/icache_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/icache_zero.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/icache_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/icache_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/jniTypes_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/jniTypes_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/jni_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/jni_zero.h -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/register_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/register_zero.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/register_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/register_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/stack_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/stack_zero.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/stack_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/stack_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/vmreg_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/vmreg_zero.cpp -------------------------------------------------------------------------------- /hotspot/src/cpu/zero/vm/vmreg_zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/cpu/zero/vm/vmreg_zero.hpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/dtrace/hotspot.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/dtrace/hotspot.d -------------------------------------------------------------------------------- /hotspot/src/os/bsd/dtrace/hotspot_jni.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/dtrace/hotspot_jni.d -------------------------------------------------------------------------------- /hotspot/src/os/bsd/dtrace/hs_private.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/dtrace/hs_private.d -------------------------------------------------------------------------------- /hotspot/src/os/bsd/dtrace/jhelper.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/dtrace/jhelper.d -------------------------------------------------------------------------------- /hotspot/src/os/bsd/dtrace/jvm_dtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/dtrace/jvm_dtrace.c -------------------------------------------------------------------------------- /hotspot/src/os/bsd/dtrace/jvm_dtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/dtrace/jvm_dtrace.h -------------------------------------------------------------------------------- /hotspot/src/os/bsd/dtrace/libjvm_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/dtrace/libjvm_db.c -------------------------------------------------------------------------------- /hotspot/src/os/bsd/dtrace/libjvm_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/dtrace/libjvm_db.h -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/c1_globals_bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/c1_globals_bsd.hpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/c2_globals_bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/c2_globals_bsd.hpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/decoder_machO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/decoder_machO.cpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/decoder_machO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/decoder_machO.hpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/dtraceJSDT_bsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/dtraceJSDT_bsd.cpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/globals_bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/globals_bsd.hpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/jsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/jsig.c -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/jvm_bsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/jvm_bsd.cpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/jvm_bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/jvm_bsd.h -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/mutex_bsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/mutex_bsd.cpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/osThread_bsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/osThread_bsd.cpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/osThread_bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/osThread_bsd.hpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/os_bsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/os_bsd.cpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/os_bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/os_bsd.hpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/os_bsd.inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/os_bsd.inline.hpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/os_share_bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/os_share_bsd.hpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/perfMemory_bsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/perfMemory_bsd.cpp -------------------------------------------------------------------------------- /hotspot/src/os/bsd/vm/vmError_bsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/bsd/vm/vmError_bsd.cpp -------------------------------------------------------------------------------- /hotspot/src/os/linux/vm/decoder_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/linux/vm/decoder_linux.cpp -------------------------------------------------------------------------------- /hotspot/src/os/linux/vm/globals_linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/linux/vm/globals_linux.hpp -------------------------------------------------------------------------------- /hotspot/src/os/linux/vm/jsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/linux/vm/jsig.c -------------------------------------------------------------------------------- /hotspot/src/os/linux/vm/jvm_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/linux/vm/jvm_linux.cpp -------------------------------------------------------------------------------- /hotspot/src/os/linux/vm/jvm_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/linux/vm/jvm_linux.h -------------------------------------------------------------------------------- /hotspot/src/os/linux/vm/mutex_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/linux/vm/mutex_linux.cpp -------------------------------------------------------------------------------- /hotspot/src/os/linux/vm/os_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/linux/vm/os_linux.cpp -------------------------------------------------------------------------------- /hotspot/src/os/linux/vm/os_linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/linux/vm/os_linux.hpp -------------------------------------------------------------------------------- /hotspot/src/os/linux/vm/vmError_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/linux/vm/vmError_linux.cpp -------------------------------------------------------------------------------- /hotspot/src/os/posix/vm/os_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/posix/vm/os_posix.cpp -------------------------------------------------------------------------------- /hotspot/src/os/posix/vm/os_posix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/posix/vm/os_posix.hpp -------------------------------------------------------------------------------- /hotspot/src/os/solaris/dtrace/hotspot.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/solaris/dtrace/hotspot.d -------------------------------------------------------------------------------- /hotspot/src/os/solaris/dtrace/jhelper.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/solaris/dtrace/jhelper.d -------------------------------------------------------------------------------- /hotspot/src/os/solaris/dtrace/libjvm_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/solaris/dtrace/libjvm_db.c -------------------------------------------------------------------------------- /hotspot/src/os/solaris/dtrace/libjvm_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/solaris/dtrace/libjvm_db.h -------------------------------------------------------------------------------- /hotspot/src/os/solaris/vm/jsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/solaris/vm/jsig.c -------------------------------------------------------------------------------- /hotspot/src/os/solaris/vm/jvm_solaris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/solaris/vm/jvm_solaris.cpp -------------------------------------------------------------------------------- /hotspot/src/os/solaris/vm/jvm_solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/solaris/vm/jvm_solaris.h -------------------------------------------------------------------------------- /hotspot/src/os/solaris/vm/os_solaris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/solaris/vm/os_solaris.cpp -------------------------------------------------------------------------------- /hotspot/src/os/solaris/vm/os_solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/solaris/vm/os_solaris.hpp -------------------------------------------------------------------------------- /hotspot/src/os/windows/vm/jvm_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/windows/vm/jvm_windows.cpp -------------------------------------------------------------------------------- /hotspot/src/os/windows/vm/jvm_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/windows/vm/jvm_windows.h -------------------------------------------------------------------------------- /hotspot/src/os/windows/vm/os_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/windows/vm/os_windows.cpp -------------------------------------------------------------------------------- /hotspot/src/os/windows/vm/os_windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/windows/vm/os_windows.hpp -------------------------------------------------------------------------------- /hotspot/src/os/windows/vm/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/os/windows/vm/version.rc -------------------------------------------------------------------------------- /hotspot/src/share/tools/IdealGraphVisualizer/BatikSVGProxy/src/com/sun/hotspot/igv/svg/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=BatikSVGProxy 2 | -------------------------------------------------------------------------------- /hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Data 2 | -------------------------------------------------------------------------------- /hotspot/src/share/tools/IdealGraphVisualizer/Difference/src/com/sun/hotspot/igv/difference/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Difference 2 | -------------------------------------------------------------------------------- /hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Graph 2 | -------------------------------------------------------------------------------- /hotspot/src/share/tools/IdealGraphVisualizer/Layout/src/com/sun/hotspot/igv/layout/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Layout 2 | -------------------------------------------------------------------------------- /hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Util 2 | -------------------------------------------------------------------------------- /hotspot/src/share/tools/hsdis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/tools/hsdis/Makefile -------------------------------------------------------------------------------- /hotspot/src/share/tools/hsdis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/tools/hsdis/README -------------------------------------------------------------------------------- /hotspot/src/share/tools/hsdis/hsdis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/tools/hsdis/hsdis.c -------------------------------------------------------------------------------- /hotspot/src/share/tools/hsdis/hsdis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/tools/hsdis/hsdis.h -------------------------------------------------------------------------------- /hotspot/src/share/vm/Xusage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/Xusage.txt -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/Doc/Syntax.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/Doc/Syntax.doc -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/Test/i486.ad: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/adlc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/adlc.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/adlparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/adlparse.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/adlparse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/adlparse.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/archDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/archDesc.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/archDesc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/archDesc.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/arena.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/arena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/arena.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/dfa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/dfa.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/dict2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/dict2.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/dict2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/dict2.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/filebuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/filebuff.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/filebuff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/filebuff.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/forms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/forms.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/forms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/forms.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/formsopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/formsopt.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/formsopt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/formsopt.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/formssel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/formssel.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/formssel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/formssel.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/main.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/output_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/output_c.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/adlc/output_h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/adlc/output_h.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/asm/assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/asm/assembler.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/asm/assembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/asm/assembler.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/asm/codeBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/asm/codeBuffer.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/asm/codeBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/asm/codeBuffer.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/asm/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/asm/register.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/asm/register.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/asm/register.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_CFGPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_CFGPrinter.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_CFGPrinter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_CFGPrinter.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_CodeStubs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_CodeStubs.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_Compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_Compiler.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_Compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_Compiler.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_Defs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_Defs.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_Defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_Defs.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_FrameMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_FrameMap.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_FrameMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_FrameMap.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_IR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_IR.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_IR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_IR.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_LIR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_LIR.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_LIR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_LIR.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_LinearScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_LinearScan.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_LinearScan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_LinearScan.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_Optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_Optimizer.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_Optimizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_Optimizer.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_Runtime1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_Runtime1.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_Runtime1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_Runtime1.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_ValueMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_ValueMap.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_ValueMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_ValueMap.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_ValueSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_ValueSet.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_ValueSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_ValueSet.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_ValueStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_ValueStack.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_ValueStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_ValueStack.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_ValueType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_ValueType.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_ValueType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_ValueType.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_globals.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/c1/c1_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/c1/c1_globals.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciArray.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciArray.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciArrayKlass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciArrayKlass.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciArrayKlass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciArrayKlass.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciBaseObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciBaseObject.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciBaseObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciBaseObject.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciCallProfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciCallProfile.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciCallSite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciCallSite.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciCallSite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciCallSite.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciClassList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciClassList.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciConstant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciConstant.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciConstant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciConstant.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciEnv.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciEnv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciEnv.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciField.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciField.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciField.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciFlags.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciFlags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciFlags.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciInstance.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciInstance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciInstance.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciKlass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciKlass.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciKlass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciKlass.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciMemberName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciMemberName.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciMemberName.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciMemberName.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciMetadata.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciMetadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciMetadata.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciMethod.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciMethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciMethod.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciMethodData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciMethodData.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciMethodData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciMethodData.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciMethodType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciMethodType.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciNullObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciNullObject.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciNullObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciNullObject.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciObjArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciObjArray.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciObjArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciObjArray.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciObject.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciObject.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciReplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciReplay.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciReplay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciReplay.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciSignature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciSignature.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciSignature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciSignature.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciStreams.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciStreams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciStreams.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciSymbol.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciSymbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciSymbol.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciType.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciType.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciTypeArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciTypeArray.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciTypeArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciTypeArray.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciTypeFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciTypeFlow.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciTypeFlow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciTypeFlow.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciUtilities.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/ci/ciUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/ci/ciUtilities.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/codeBlob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/codeBlob.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/codeBlob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/codeBlob.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/codeCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/codeCache.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/codeCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/codeCache.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/compiledIC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/compiledIC.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/compiledIC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/compiledIC.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/debugInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/debugInfo.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/debugInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/debugInfo.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/icBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/icBuffer.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/icBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/icBuffer.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/jvmticmlr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/jvmticmlr.h -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/location.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/location.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/nmethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/nmethod.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/nmethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/nmethod.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/oopRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/oopRecorder.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/oopRecorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/oopRecorder.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/pcDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/pcDesc.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/pcDesc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/pcDesc.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/relocInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/relocInfo.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/relocInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/relocInfo.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/scopeDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/scopeDesc.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/scopeDesc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/scopeDesc.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/stubs.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/stubs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/stubs.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/vmreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/vmreg.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/vmreg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/vmreg.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/vtableStubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/vtableStubs.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/code/vtableStubs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/code/vtableStubs.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/compiler/oopMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/compiler/oopMap.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/compiler/oopMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/compiler/oopMap.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/libadt/dict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/libadt/dict.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/libadt/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/libadt/dict.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/libadt/port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/libadt/port.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/libadt/port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/libadt/port.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/libadt/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/libadt/set.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/libadt/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/libadt/set.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/libadt/vectset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/libadt/vectset.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/libadt/vectset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/libadt/vectset.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/filemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/filemap.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/filemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/filemap.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/freeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/freeList.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/freeList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/freeList.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/gcLocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/gcLocker.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/gcLocker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/gcLocker.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/genRemSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/genRemSet.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/genRemSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/genRemSet.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/heap.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/heap.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/iterator.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/iterator.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/memRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/memRegion.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/memRegion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/memRegion.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/metachunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/metachunk.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/metachunk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/metachunk.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/metaspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/metaspace.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/metaspace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/metaspace.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/padded.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/padded.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/space.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/space.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/universe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/universe.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/universe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/universe.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/memory/watermark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/memory/watermark.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/annotations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/annotations.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/annotations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/annotations.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/arrayKlass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/arrayKlass.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/arrayKlass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/arrayKlass.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/arrayOop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/arrayOop.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/arrayOop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/arrayOop.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/constMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/constMethod.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/constMethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/constMethod.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/cpCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/cpCache.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/cpCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/cpCache.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/fieldInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/fieldInfo.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/instanceOop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/instanceOop.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/instanceOop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/instanceOop.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/klass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/klass.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/klass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/klass.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/klassPS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/klassPS.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/klassVtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/klassVtable.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/klassVtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/klassVtable.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/markOop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/markOop.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/markOop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/markOop.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/metadata.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/metadata.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/method.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/method.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/methodData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/methodData.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/methodData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/methodData.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/objArrayOop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/objArrayOop.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/objArrayOop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/objArrayOop.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/oop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/oop.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/oop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/oop.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/oop.inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/oop.inline.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/oop.inline2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/oop.inline2.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/symbol.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/oops/symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/oops/symbol.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/addnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/addnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/addnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/addnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/adlcVMDeps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/adlcVMDeps.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/block.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/block.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/buildOopMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/buildOopMap.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/callnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/callnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/callnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/callnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/cfgnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/cfgnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/cfgnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/cfgnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/chaitin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/chaitin.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/chaitin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/chaitin.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/classes.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/classes.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/coalesce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/coalesce.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/coalesce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/coalesce.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/compile.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/compile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/compile.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/connode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/connode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/connode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/connode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/divnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/divnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/divnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/divnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/doCall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/doCall.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/domgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/domgraph.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/escape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/escape.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/escape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/escape.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/gcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/gcm.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/graphKit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/graphKit.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/graphKit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/graphKit.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/idealKit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/idealKit.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/idealKit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/idealKit.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/ifg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/ifg.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/ifnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/ifnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/indexSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/indexSet.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/indexSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/indexSet.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/lcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/lcm.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/live.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/live.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/live.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/live.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/locknode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/locknode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/locknode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/locknode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/loopnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/loopnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/loopnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/loopnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/loopopts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/loopopts.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/machnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/machnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/machnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/machnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/macro.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/macro.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/matcher.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/matcher.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/memnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/memnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/memnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/memnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/mulnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/mulnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/mulnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/mulnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/multnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/multnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/multnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/multnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/node.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/node.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/opcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/opcodes.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/opcodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/opcodes.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/optoreg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/optoreg.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/output.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/output.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/parse.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/parse1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/parse1.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/parse2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/parse2.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/parse3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/parse3.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/phase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/phase.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/phase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/phase.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/phaseX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/phaseX.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/phaseX.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/phaseX.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/phasetype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/phasetype.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/postaloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/postaloc.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/reg_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/reg_split.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/regalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/regalloc.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/regalloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/regalloc.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/regmask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/regmask.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/regmask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/regmask.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/rootnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/rootnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/rootnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/rootnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/runtime.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/runtime.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/split_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/split_if.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/subnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/subnode.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/subnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/subnode.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/superword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/superword.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/superword.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/superword.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/type.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/opto/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/opto/type.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/forte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/forte.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/forte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/forte.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jni.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jni.h -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jniCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jniCheck.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jniCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jniCheck.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jni_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jni_md.h -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvm.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvm.h -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvm_misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvm_misc.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvmti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvmti.xml -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvmti.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvmti.xsl -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvmtiEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvmtiEnv.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvmtiEnv.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvmtiEnv.xsl -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvmtiH.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvmtiH.xsl -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvmtiHpp.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvmtiHpp.xsl -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/jvmtiLib.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/jvmtiLib.xsl -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/perf.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/unsafe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/unsafe.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/whitebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/whitebox.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/prims/whitebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/prims/whitebox.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/atomic.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/atomic.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/frame.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/frame.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/icache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/icache.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/icache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/icache.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/init.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/init.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/java.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/java.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/java.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/mutex.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/mutex.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/os.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/os.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/os_ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/os_ext.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/park.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/park.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/park.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/park.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/rframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/rframe.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/rframe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/rframe.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/task.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/task.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/thread.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/thread.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/timer.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/timer.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/vframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/vframe.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/runtime/vframe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/runtime/vframe.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/services/jmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/services/jmm.h -------------------------------------------------------------------------------- /hotspot/src/share/vm/trace/trace.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/trace/trace.dtd -------------------------------------------------------------------------------- /hotspot/src/share/vm/trace/trace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/trace/trace.xml -------------------------------------------------------------------------------- /hotspot/src/share/vm/trace/tracing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/trace/tracing.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/trace/xinclude.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/trace/xinclude.mod -------------------------------------------------------------------------------- /hotspot/src/share/vm/trace/xsl_util.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/trace/xsl_util.xsl -------------------------------------------------------------------------------- /hotspot/src/share/vm/utilities/copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/utilities/copy.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/utilities/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/utilities/copy.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/utilities/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/utilities/pair.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/utilities/top.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/utilities/top.hpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/utilities/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/utilities/utf8.cpp -------------------------------------------------------------------------------- /hotspot/src/share/vm/utilities/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/src/share/vm/utilities/utf8.hpp -------------------------------------------------------------------------------- /hotspot/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/Makefile -------------------------------------------------------------------------------- /hotspot/test/TEST.ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/TEST.ROOT -------------------------------------------------------------------------------- /hotspot/test/TEST.groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/TEST.groups -------------------------------------------------------------------------------- /hotspot/test/compiler/6431242/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6431242/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6539464/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6539464/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6603011/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6603011/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6646019/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6646019/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6659207/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6659207/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6661247/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6661247/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6689060/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6689060/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6695810/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6695810/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6711100/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6711100/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6711117/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6711117/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6724218/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6724218/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6726999/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6726999/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6775880/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6775880/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6778657/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6778657/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6795161/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6795161/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6799693/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6799693/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6823453/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6823453/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6826736/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6826736/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6832293/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6832293/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6833129/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6833129/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6837094/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6837094/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6843752/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6843752/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6849574/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6849574/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6851282/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6851282/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6855164/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6855164/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6860469/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6860469/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6863420/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6863420/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6865031/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6865031/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6866651/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6866651/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6875866/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6875866/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6877254/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6877254/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6892265/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6892265/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6895383/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6895383/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6896727/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6896727/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6901572/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6901572/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6910484/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6910484/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6910605/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6910605/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6910618/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6910618/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6912517/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6912517/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6935535/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6935535/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6942326/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6942326/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6958485/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6958485/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/6973329/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/6973329/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/7017746/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/7017746/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/7029152/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/7029152/Test.java -------------------------------------------------------------------------------- /hotspot/test/compiler/7070134/words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/compiler/7070134/words -------------------------------------------------------------------------------- /hotspot/test/gc/6845368/bigobj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/gc/6845368/bigobj.java -------------------------------------------------------------------------------- /hotspot/test/gc/TestSystemGC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/gc/TestSystemGC.java -------------------------------------------------------------------------------- /hotspot/test/jprt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/jprt.config -------------------------------------------------------------------------------- /hotspot/test/runtime/6626217/IFace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/runtime/6626217/IFace.java -------------------------------------------------------------------------------- /hotspot/test/runtime/6929067/T.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/runtime/6929067/T.java -------------------------------------------------------------------------------- /hotspot/test/runtime/6929067/invoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/runtime/6929067/invoke.c -------------------------------------------------------------------------------- /hotspot/test/runtime/7107135/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/runtime/7107135/Test.java -------------------------------------------------------------------------------- /hotspot/test/runtime/7107135/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/runtime/7107135/test.c -------------------------------------------------------------------------------- /hotspot/test/runtime/LoadClass/dummy.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hotspot/test/runtime/NMT/JcmdScale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/runtime/NMT/JcmdScale.java -------------------------------------------------------------------------------- /hotspot/test/runtime/jsig/TestJNI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/runtime/jsig/TestJNI.c -------------------------------------------------------------------------------- /hotspot/test/runtime/jsig/TestJNI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/runtime/jsig/TestJNI.java -------------------------------------------------------------------------------- /hotspot/test/sanity/WBApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/sanity/WBApi.java -------------------------------------------------------------------------------- /hotspot/test/sanity/WhiteBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/sanity/WhiteBox.java -------------------------------------------------------------------------------- /hotspot/test/test_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/test_env.sh -------------------------------------------------------------------------------- /hotspot/test/testlibrary/ctw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/testlibrary/ctw/Makefile -------------------------------------------------------------------------------- /hotspot/test/testlibrary/ctw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/hotspot/test/testlibrary/ctw/README -------------------------------------------------------------------------------- /javac/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/.classpath -------------------------------------------------------------------------------- /javac/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/.project -------------------------------------------------------------------------------- /javac/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/args.txt -------------------------------------------------------------------------------- /javac/my-docs/构建与调试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/my-docs/构建与调试.md -------------------------------------------------------------------------------- /javac/my-test/my/test/JavacStarter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/my-test/my/test/JavacStarter.java -------------------------------------------------------------------------------- /javac/my-test/my/test/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/my-test/my/test/Test.java -------------------------------------------------------------------------------- /javac/my-test/test/Event.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/my-test/test/Event.java -------------------------------------------------------------------------------- /javac/src/com/sun/source/tree/Tree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/com/sun/source/tree/Tree.java -------------------------------------------------------------------------------- /javac/src/com/sun/tools/javac/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/com/sun/tools/javac/Main.java -------------------------------------------------------------------------------- /javac/src/com/sun/tools/javac/services/javax.tools.JavaCompilerTool: -------------------------------------------------------------------------------- 1 | com.sun.tools.javac.api.Tool 2 | -------------------------------------------------------------------------------- /javac/src/javax/tools/Diagnostic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/javax/tools/Diagnostic.java -------------------------------------------------------------------------------- /javac/src/javax/tools/FileObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/javax/tools/FileObject.java -------------------------------------------------------------------------------- /javac/src/javax/tools/JavaCompiler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/javax/tools/JavaCompiler.java -------------------------------------------------------------------------------- /javac/src/javax/tools/Tool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/javax/tools/Tool.java -------------------------------------------------------------------------------- /javac/src/javax/tools/ToolProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/javax/tools/ToolProvider.java -------------------------------------------------------------------------------- /javac/src/javax/tools/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/javax/tools/overview.html -------------------------------------------------------------------------------- /javac/src/javax/tools/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/javax/tools/package-info.java -------------------------------------------------------------------------------- /javac/src/jdk/Exported.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefollower/OpenJDK-Research/HEAD/javac/src/jdk/Exported.java --------------------------------------------------------------------------------