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
8240363: Refactor Compile::Output() to its own Phase
Reviewed-by: kvn, vlivanov
- Loading branch information
Showing
with
1,411 additions
and 1,251 deletions.
- +10 −10 src/hotspot/cpu/aarch64/aarch64.ad
- +2 −1 src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp
- +13 −13 src/hotspot/cpu/arm/arm.ad
- +14 −14 src/hotspot/cpu/ppc/ppc.ad
- +1 −1 src/hotspot/cpu/s390/compiledIC_s390.cpp
- +11 −11 src/hotspot/cpu/s390/s390.ad
- +13 −13 src/hotspot/cpu/sparc/sparc.ad
- +3 −2 src/hotspot/cpu/x86/c2_intelJccErratum_x86.cpp
- +11 −11 src/hotspot/cpu/x86/x86_32.ad
- +11 −11 src/hotspot/cpu/x86/x86_64.ad
- +1 −1 src/hotspot/share/adlc/adlparse.cpp
- +1 −0 src/hotspot/share/adlc/main.cpp
- +2 −2 src/hotspot/share/adlc/output_c.cpp
- +3 −0 src/hotspot/share/compiler/compileBroker.hpp
- +6 −5 src/hotspot/share/gc/z/c2/zBarrierSetC2.cpp
- +13 −12 src/hotspot/share/opto/buildOopMap.cpp
- +3 −3 src/hotspot/share/opto/c2compiler.cpp
- +1 −1 src/hotspot/share/opto/chaitin.hpp
- +10 −565 src/hotspot/share/opto/compile.cpp
- +11 −249 src/hotspot/share/opto/compile.hpp
- +246 −0 src/hotspot/share/opto/constantTable.cpp
- +151 −0 src/hotspot/share/opto/constantTable.hpp
- +4 −3 src/hotspot/share/opto/machnode.cpp
- +2 −1 src/hotspot/share/opto/machnode.hpp
- +712 −162 src/hotspot/share/opto/output.cpp
- +154 −160 src/hotspot/share/opto/output.hpp
- +1 −0 src/hotspot/share/opto/phase.hpp
- +1 −0 src/hotspot/share/opto/runtime.cpp
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
Oops, something went wrong.