diff options
author | Michał Muskała <[email protected]> | 2018-02-17 11:36:25 +0100 |
---|---|---|
committer | Michał Muskała <[email protected]> | 2018-02-17 11:55:45 +0100 |
commit | 7d1509b7e58cf67f033eda353276315d72370e92 (patch) | |
tree | bce3f6e2129b20a3983994904a11501d36c7b721 | |
parent | 7304c1e1deed6ac1fbddc88ea5c6d5138231dbf7 (diff) | |
download | otp-7d1509b7e58cf67f033eda353276315d72370e92.tar.gz otp-7d1509b7e58cf67f033eda353276315d72370e92.tar.bz2 otp-7d1509b7e58cf67f033eda353276315d72370e92.zip |
Inline more type test BIFs in HiPE
-rw-r--r-- | lib/hipe/icode/hipe_icode_inline_bifs.erl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/hipe/icode/hipe_icode_inline_bifs.erl b/lib/hipe/icode/hipe_icode_inline_bifs.erl index 7a6947f190..330527b9a9 100644 --- a/lib/hipe/icode/hipe_icode_inline_bifs.erl +++ b/lib/hipe/icode/hipe_icode_inline_bifs.erl @@ -24,8 +24,9 @@ %% Currently inlined BIFs: %% and, or, xor, not, <, >, >=, =<, ==, /=, =/=, =:= -%% is_atom, is_boolean, is_binary, is_float, is_function, -%% is_integer, is_list, is_pid, is_port, is_reference, is_tuple +%% is_atom, is_boolean, is_binary, is_bitstring, is_float, +%% is_integer, is_number, is_function, is_list, +%% is_pid, is_port, is_reference, is_tuple, is_map -module(hipe_icode_inline_bifs). @@ -118,15 +119,18 @@ is_type_test(Name) -> case Name of is_integer -> {true, integer}; is_float -> {true, float}; + is_number -> {true, number}; is_tuple -> {true, tuple}; - is_binary -> {true, binary}; + is_binary -> {true, binary}; + is_bitsting -> {true, bitstr}; is_list -> {true, list}; is_pid -> {true, pid}; is_atom -> {true, atom}; is_boolean -> {true, boolean}; - is_function -> {true, function}; + is_function -> {true, function}; is_reference -> {true, reference}; is_port -> {true, port}; + is_map -> {true, map}; _ -> false end. |