aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hipe/rtl/hipe_rtl.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2010-11-22 12:03:19 +0100
committerBjörn Gustavsson <[email protected]>2010-11-22 12:03:19 +0100
commit4819bd39799777427965963625f034e30673b034 (patch)
tree1d868d35eb94ebdd30c84c90df5baa7c14164fd4 /lib/hipe/rtl/hipe_rtl.erl
parentf555bf55aabd9b80f48daaf1f8ae041c8aa06f9e (diff)
parent6083a1a9e553eac8a0b33697964fadfd17d302ca (diff)
downloadotp-4819bd39799777427965963625f034e30673b034.tar.gz
otp-4819bd39799777427965963625f034e30673b034.tar.bz2
otp-4819bd39799777427965963625f034e30673b034.zip
Merge branch 'ks/hipe-patches' into dev
* ks/hipe-patches: hipe: Update types and specs
Diffstat (limited to 'lib/hipe/rtl/hipe_rtl.erl')
-rw-r--r--lib/hipe/rtl/hipe_rtl.erl5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/hipe/rtl/hipe_rtl.erl b/lib/hipe/rtl/hipe_rtl.erl
index ef06b2abf8..d93f423f0c 100644
--- a/lib/hipe/rtl/hipe_rtl.erl
+++ b/lib/hipe/rtl/hipe_rtl.erl
@@ -354,6 +354,8 @@
phi_arglist_update/2,
phi_redirect_pred/3]).
+-export_type([alub_cond/0]).
+
%%
%% RTL
%%
@@ -590,6 +592,9 @@ branch_pred(#branch{p=P}) -> P.
%% alub
%%
+-type alub_cond() :: 'eq' | 'ne' | 'ge' | 'geu' | 'gt' | 'gtu' | 'le'
+ | 'leu' | 'lt' | 'ltu' | 'overflow' | 'not_overflow'.
+
mk_alub(Dst, Src1, Op, Src2, Cond, True, False) ->
mk_alub(Dst, Src1, Op, Src2, Cond, True, False, 0.5).
mk_alub(Dst, Src1, Op, Src2, Cond, True, False, P) ->