Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Behavior of string.eq for null strings #18

Closed
wingo opened this issue Jun 14, 2022 · 3 comments · Fixed by #32
Closed

Behavior of string.eq for null strings #18

wingo opened this issue Jun 14, 2022 · 3 comments · Fixed by #32

Comments

@wingo
Copy link
Collaborator

wingo commented Jun 14, 2022

I assume that string.eq should only compare non-null strings; that if either operand is null, that's a trap. But, we should make it explicit.

@jakobkummerow
Copy link
Collaborator

I wonder if it would be convenient to have (str.eq "foo" null) return 0 without trapping? That would match what can easily be expressed in e.g. Java (some_string.equals(null) or Object.equals(some_string, null)) or JavaScript("foo" == null).
On the other hand (str.eq null null) seems weird, so maybe that's a good reason to just trap when any input is null :-)

@dcodeIO
Copy link
Contributor

dcodeIO commented Jun 14, 2022

Perhaps one observation if the instruction traps. What's often seen in languages are patterns like

if (somestring == null) {
 ...
}

and

if (somestring == otherstring) {
 ...
}

In the first case the source-level operation can be statically replaced with a ref.is_null instruction, while in the latter, I'd expect code like the following to ultimately become inlined in each place to match the source-level expectation that null == null and non-null != null (e.g. Java, C#, JS-like, ...):

block (result i32)
 local.get $lhs
 ref.is_null
 if
  local.get $rhs
  ref.is_null
 else
  local.get $rhs
  ref.is_null
  if
   i32.const 0
  else
   local.get $lhs
   local.get $rhs
   string.eq
  end
 end
end

So I wonder if adhering to null == null and non-null != null would have benefits, also because I have found that aborting a program in an unrecoverable way by means of a dynamically trapping instruction is undesirable most of the time?

@wingo
Copy link
Collaborator Author

wingo commented Jun 14, 2022

Those sound like good arguments to me :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants