Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@kikofernandez
Copy link
Contributor

The size/1 BIF is not optimized by the JIT, and its use can result in worse types for Dialyzer.

When one knows that the value being tested must be a tuple, tuple_size/1 should always be preferred.

When one knows that the value being tested must be a binary, byte_size/1 should be preferred. However, byte_size/1 also accepts a bitstring (rounding up size to a whole number of bytes), so one must make sure that the call to byte_size/ is preceded by a call to is_binary/1 to ensure that bitstrings are rejected. Note that the compiler removes redundant calls to is_binary/1, so if one is not sure whether previous code had made sure that the argument is a binary, it does not harm to add an is_binary/1 test immediately before the call to byte_size/1.

Replaces #6771 due to renaming of the branch. The content stays the same

The <c>size/1</c> BIF is not optimized by the JIT, and its use can
result in worse types for Dialyzer.

When one knows that the value being tested must be a tuple,
<c>tuple_size/1</c> should always be preferred.

When one knows that the value being tested must be a binary,
<c>byte_size/1</c> should be preferred. However, <c>byte_size/1</c> also
accepts a bitstring (rounding up size to a whole number of bytes), so
one must make sure that the call to <c>byte_size/</c> is preceded by a
call to <c>is_binary/1</c> to ensure that bitstrings are rejected. Note
that the compiler removes redundant calls to <c>is_binary/1</c>, so if
one is not sure whether previous code had made sure that the argument is
a binary, it does not harm to add an <c>is_binary/1</c> test immediately
before the call to <c>byte_size/1</c>.
@kikofernandez kikofernandez added team:PS Assigned to OTP team PS enhancement labels Feb 3, 2023
@kikofernandez kikofernandez self-assigned this Feb 3, 2023
@kikofernandez kikofernandez changed the base branch from master to maint February 3, 2023 14:08
@kikofernandez
Copy link
Contributor Author

#6771 was passing all tests and was approved.
Merging

@kikofernandez kikofernandez merged commit 82d83d1 into erlang:maint Feb 3, 2023
@kikofernandez kikofernandez deleted the kiko/inets/replace-size-by-xxx_size/GH-6672/OTP-18432 branch February 3, 2023 14:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement team:PS Assigned to OTP team PS

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant