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
8136414: Large performance penalty declaring a method strictfp on str…
…ict-only platforms Reviewed-by: thartmann
- Loading branch information
Showing
with
134 additions
and 117 deletions.
- +1 −2 src/hotspot/cpu/aarch64/aarch64.ad
- +0 −1 src/hotspot/cpu/aarch64/c1_globals_aarch64.hpp
- +1 −2 src/hotspot/cpu/arm/arm.ad
- +0 −2 src/hotspot/cpu/arm/c1_globals_arm.hpp
- +0 −1 src/hotspot/cpu/ppc/c1_globals_ppc.hpp
- +1 −2 src/hotspot/cpu/ppc/ppc.ad
- +0 −1 src/hotspot/cpu/s390/c1_globals_s390.hpp
- +1 −2 src/hotspot/cpu/s390/s390.ad
- +0 −1 src/hotspot/cpu/sparc/c1_globals_sparc.hpp
- +1 −2 src/hotspot/cpu/sparc/sparc.ad
- +1 −1 src/hotspot/cpu/x86/c1_Defs_x86.hpp
- +0 −1 src/hotspot/cpu/x86/c1_globals_x86.hpp
- +1 −2 src/hotspot/cpu/x86/x86_32.ad
- +2 −21 src/hotspot/cpu/x86/x86_64.ad
- +36 −18 src/hotspot/share/c1/c1_GraphBuilder.cpp
- +1 −0 src/hotspot/share/c1/c1_LIRAssembler.cpp
- +15 −7 src/hotspot/share/c1/c1_LIRGenerator.cpp
- +0 −3 src/hotspot/share/c1/c1_globals.hpp
- +3 −2 src/hotspot/share/opto/doCall.cpp
- +60 −39 src/hotspot/share/opto/graphKit.cpp
- +9 −2 src/hotspot/share/opto/library_call.cpp
- +1 −2 src/hotspot/share/opto/matcher.hpp
- +0 −3 src/hotspot/share/runtime/globals.hpp
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
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
@@ -33,7 +33,7 @@ enum { | ||
|
||
// explicit rounding operations are required to implement the strictFP mode | ||
enum { | ||
pd_strict_fp_requires_explicit_rounding = LP64_ONLY( false ) NOT_LP64 ( true ) | ||
}; | ||
|
||
|
||
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.