Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8241825: Make compressed oops and compressed class pointers independe…
…nt (x86_64, PPC, S390) Reviewed-by: coleenp, fparain, stuefe, mdoerr
- Loading branch information
Showing
with
407 additions
and 309 deletions.
- +2 −0 src/hotspot/cpu/aarch64/globalDefinitions_aarch64.hpp
- +2 −0 src/hotspot/cpu/ppc/globalDefinitions_ppc.hpp
- +2 −0 src/hotspot/cpu/s390/globalDefinitions_s390.hpp
- +2 −0 src/hotspot/cpu/sparc/globalDefinitions_sparc.hpp
- +1 −1 src/hotspot/cpu/x86/c1_FrameMap_x86.hpp
- +25 −19 src/hotspot/cpu/x86/c1_LIRAssembler_x86.cpp
- +6 −3 src/hotspot/cpu/x86/c1_MacroAssembler_x86.cpp
- +2 −1 src/hotspot/cpu/x86/c1_Runtime1_x86.cpp
- +1 −2 src/hotspot/cpu/x86/c2_MacroAssembler_x86.cpp
- +6 −0 src/hotspot/cpu/x86/globalDefinitions_x86.hpp
- +4 −2 src/hotspot/cpu/x86/interp_masm_x86.cpp
- +50 −61 src/hotspot/cpu/x86/macroAssembler_x86.cpp
- +8 −12 src/hotspot/cpu/x86/macroAssembler_x86.hpp
- +4 −4 src/hotspot/cpu/x86/methodHandles_x86.cpp
- +1 −1 src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp
- +3 −3 src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp
- +9 −10 src/hotspot/cpu/x86/stubGenerator_x86_64.cpp
- +19 −11 src/hotspot/cpu/x86/templateTable_x86.cpp
- +2 −2 src/hotspot/cpu/x86/vtableStubs_x86_32.cpp
- +4 −3 src/hotspot/cpu/x86/vtableStubs_x86_64.cpp
- +21 −29 src/hotspot/cpu/x86/x86_64.ad
- +1 −78 src/hotspot/share/classfile/fieldLayoutBuilder.cpp
- +0 −2 src/hotspot/share/classfile/fieldLayoutBuilder.hpp
- +10 −8 src/hotspot/share/classfile/javaClasses.cpp
- +1 −2 src/hotspot/share/gc/z/zArguments.cpp
- +6 −1 src/hotspot/share/memory/metaspace.cpp
- +11 −5 src/hotspot/share/oops/instanceOop.hpp
- +2 −2 src/hotspot/share/opto/lcm.cpp
- +19 −8 src/hotspot/share/runtime/arguments.cpp
- +12 −12 test/hotspot/jtreg/gc/metaspace/TestSizeTransitions.java
- +135 −1 test/hotspot/jtreg/runtime/CompressedOops/CompressedClassPointers.java
- +0 −8 test/hotspot/jtreg/runtime/CompressedOops/CompressedClassSpaceSize.java
- +1 −7 test/hotspot/jtreg/runtime/cds/appcds/TestCombinedCompressedFlags.java
- +30 −6 test/hotspot/jtreg/runtime/cds/appcds/TestZGCWithCDS.java
- +1 −1 test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithG1ConcurrentMark.java
- +1 −1 test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithG1FullCollection.java
- +1 −1 test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithParallelOld.java
- +1 −1 test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithSerial.java
- +1 −1 test/jdk/jdk/jfr/event/gc/objectcount/TestObjectCountEvent.java
Oops, something went wrong.