This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8263002: Remove CDS MiscCode region
Reviewed-by: coleenp, dholmes
- Loading branch information
Showing
with
116 additions
and 641 deletions.
- +0 −9 src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp
- +0 −10 src/hotspot/cpu/arm/sharedRuntime_arm.cpp
- +0 −11 src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp
- +0 −10 src/hotspot/cpu/s390/sharedRuntime_s390.cpp
- +0 −8 src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp
- +0 −8 src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp
- +1 −11 src/hotspot/cpu/zero/sharedRuntime_zero.cpp
- +1 −7 src/hotspot/os_cpu/bsd_x86/thread_bsd_x86.cpp
- +1 −7 src/hotspot/os_cpu/linux_aarch64/thread_linux_aarch64.cpp
- +1 −7 src/hotspot/os_cpu/linux_arm/thread_linux_arm.cpp
- +1 −7 src/hotspot/os_cpu/linux_x86/thread_linux_x86.cpp
- +0 −6 src/hotspot/os_cpu/windows_aarch64/thread_windows_aarch64.cpp
- +1 −7 src/hotspot/os_cpu/windows_x86/thread_windows_x86.cpp
- +4 −4 src/hotspot/share/include/cds.h
- +1 −41 src/hotspot/share/interpreter/abstractInterpreter.cpp
- +0 −6 src/hotspot/share/interpreter/abstractInterpreter.hpp
- +1 −2 src/hotspot/share/interpreter/templateInterpreterGenerator.cpp
- +11 −145 src/hotspot/share/memory/archiveBuilder.cpp
- +7 −22 src/hotspot/share/memory/archiveBuilder.hpp
- +6 −3 src/hotspot/share/memory/cppVtables.cpp
- +3 −2 src/hotspot/share/memory/cppVtables.hpp
- +2 −7 src/hotspot/share/memory/dumpAllocStats.cpp
- +7 −1 src/hotspot/share/memory/dumpAllocStats.hpp
- +2 −6 src/hotspot/share/memory/dynamicArchive.cpp
- +6 −8 src/hotspot/share/memory/filemap.cpp
- +5 −18 src/hotspot/share/memory/filemap.hpp
- +11 −40 src/hotspot/share/memory/metaspaceShared.cpp
- +5 −13 src/hotspot/share/memory/metaspaceShared.hpp
- +1 −11 src/hotspot/share/oops/constMethod.cpp
- +1 −29 src/hotspot/share/oops/constMethod.hpp
- +13 −114 src/hotspot/share/oops/method.cpp
- +3 −10 src/hotspot/share/oops/method.hpp
- +0 −25 src/hotspot/share/runtime/sharedRuntime.cpp
- +0 −3 src/hotspot/share/runtime/sharedRuntime.hpp
- +14 −14 src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/FileMapInfo.java
- +4 −5 test/hotspot/jtreg/runtime/cds/SpaceUtilizationCheck.java
- +0 −1 test/hotspot/jtreg/runtime/cds/appcds/SharedArchiveConsistency.java
- +2 −2 test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/ArchiveConsistency.java
- +1 −1 test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/DynamicArchiveRelocationTest.java
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -251,16 +251,6 @@ bool SharedRuntime::is_wide_vector(int size) { | ||
return false; | ||
} | ||
|
||
int SharedRuntime::c_calling_convention(const BasicType *sig_bt, | ||
VMRegPair *regs, | ||
VMRegPair *regs2, | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -564,17 +564,6 @@ bool SharedRuntime::is_wide_vector(int size) { | ||
return size > 8; | ||
} | ||
|
||
static int reg2slot(VMReg r) { | ||
return r->reg2stack() + SharedRuntime::out_preserve_stack_slots(); | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.