aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/compile.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2015-09-28 11:42:08 +0200
committerBjörn Gustavsson <[email protected]>2015-09-28 11:42:08 +0200
commit7ca56726d7b3c8e679273950978f9f1816d4b277 (patch)
tree6954a4a604adae35c95db80390dc43c7fd1fc3bc /lib/compiler/src/compile.erl
parent51750b8bd4d4eb08aacd2ad2bb0ac13fd6d09746 (diff)
parent464ca2f8049feec6453d2d9a327f996662978e51 (diff)
downloadotp-7ca56726d7b3c8e679273950978f9f1816d4b277.tar.gz
otp-7ca56726d7b3c8e679273950978f9f1816d4b277.tar.bz2
otp-7ca56726d7b3c8e679273950978f9f1816d4b277.zip
Merge branch 'bjorn/compiler/misc'
* bjorn/compiler/misc: Move select_val optimization from beam_clean to beam_peep beam_type: Improve optimizations by keeping track of booleans beam_type: Improve optimization by keeping track of integers beam_type: Remove unused clause beam_type: Fix forgotten change of internal representation beam_dead: Improve optimization of literal binary matching beam_dead: Optimize select_val instructions Move out bit syntax optimizations from beam_block sys_core_fold: Extend the list of BIFs that return integers v3_codegen: Optimize matching of the final size-less binary segment Regain full coverage of beam_block
Diffstat (limited to 'lib/compiler/src/compile.erl')
-rw-r--r--lib/compiler/src/compile.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl
index 605f5b8fd5..a2a23a2b90 100644
--- a/lib/compiler/src/compile.erl
+++ b/lib/compiler/src/compile.erl
@@ -679,6 +679,8 @@ asm_passes() ->
{iff,dblk,{listing,"block"}},
{unless,no_except,{pass,beam_except}},
{iff,dexcept,{listing,"except"}},
+ {unless,no_bs_opt,{pass,beam_bs}},
+ {iff,dbs,{listing,"bs"}},
{unless,no_bopt,{pass,beam_bool}},
{iff,dbool,{listing,"bool"}},
{unless,no_topt,{pass,beam_type}},