diff options
author | Björn Gustavsson <[email protected]> | 2018-09-04 14:03:52 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2018-09-17 10:04:35 +0200 |
commit | 0871e4e581d3679c61b82f5552adc9192399d815 (patch) | |
tree | fb13ca884ad16e360f0d7002fd02f92da6e632ce /lib/compiler/test/misc_SUITE.erl | |
parent | 70bb14fe3fd27e8c429bf402e364b144a5807d9a (diff) | |
download | otp-0871e4e581d3679c61b82f5552adc9192399d815.tar.gz otp-0871e4e581d3679c61b82f5552adc9192399d815.tar.bz2 otp-0871e4e581d3679c61b82f5552adc9192399d815.zip |
Remove the beam_dead and beam_split passes
Most of the optimizations in beam_dead have been superseded
by the optimizations in beam_ssa_dead.
The forward/1 pass of beam_dead has been moved to beam_jump.
The beam_split pass splits blocks that contain instructions with
non-zero labels. Because there are no optimizations left that optimize
instructions within blocks, beam_block never needs to put such
instructions into blocks in the first place. beam_split also moved
'move' instructions out block to help beam_dead. That is no longer
necessary since beam_dead no longer exists.
Diffstat (limited to 'lib/compiler/test/misc_SUITE.erl')
-rw-r--r-- | lib/compiler/test/misc_SUITE.erl | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/compiler/test/misc_SUITE.erl b/lib/compiler/test/misc_SUITE.erl index beae5eb618..4c2d0116c9 100644 --- a/lib/compiler/test/misc_SUITE.erl +++ b/lib/compiler/test/misc_SUITE.erl @@ -234,16 +234,6 @@ silly_coverage(Config) when is_list(Config) -> {label,2}|non_proper_list]}],99}, expect_error(fun() -> beam_except:module(ExceptInput, []) end), - %% beam_dead. This is tricky. Our function must look OK to - %% beam_utils:clean_labels/1, but must crash beam_dead. - DeadInput = {?MODULE,[{foo,0}],[], - [{function,foo,0,2, - [{label,1}, - {func_info,{atom,?MODULE},{atom,foo},0}, - {label,2}, - {test,is_eq_exact,{f,1},[bad,operands]}]}],99}, - expect_error(fun() -> beam_dead:module(DeadInput, []) end), - %% beam_clean CleanInput = {?MODULE,[{foo,0}],[], [{function,foo,0,2, |