Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Collapse assert_return_canonical_nan and assert_return_arithmetic_nan to assert_return #142

Closed
wants to merge 1 commit into from

Conversation

abrown
Copy link
Contributor

@abrown abrown commented Nov 18, 2019

An attempt to resolve #137; this is still a WIP but I will update as I go along. Could use some help with questions annotated as comments on the code.

of_assertion' mods act "assert_return_canonical_nan" [] (Some assert_return_canonical_nan)
| AssertReturnArithmeticNaN act ->
of_assertion' mods act "assert_return_arithmetic_nan" [] (Some assert_return_arithmetic_nan)
(Some (assert_return lits)) (* TODO *)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not exactly sure if I understand what this is for; is it generating JS code? If that is the case, I likely need to match and emit different code for each branch.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this is for generating a JS version of the test.

@@ -377,7 +377,7 @@ let run_assertion ass =
| _ -> Assert.error ass.at "expected instantiation error"
)

| AssertReturn (act, vs) ->
| AssertReturn (act, vs, modifier) ->
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I foresee vs going away and matching on modifier here

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There wouldn't be a modifier here. Instead, vs would change from a list of values to a list of "results", which would be a new type.

| AssertReturnConstant of Ast.literal list
| AssertReturnArithmeticNan (* TODO f32x4 | f64x2 *)
| AssertReturnCanonicalNan (* TODO f32x4 | f64x2 *)
(* TODO (ref.any) | (ref.func) *)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can't seem to find types for ref.any or ref.func?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Those would be added the reference types proposal.

Node ("assert_return_canonical_nan", [action act])
| AssertReturnArithmeticNaN act ->
Node ("assert_return_arithmetic_nan", [action act])
Node ("assert_return", [action act]) (* TODO :: List.map literal lits) *)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will need to handle modifier (or whatever we want to call it) instead of a list of literals but, to make sure, this is a serializer of the AST?

| const_list { AssertReturnConstant ($1) @@ at () }
| LPAR ARITHMETIC_NAN /* TODO f32x4 | f64x2 */ RPAR { AssertReturnArithmeticNan @@ at () }
| LPAR CANONICAL_NAN /* TODO f32x4 | f64x2 */ RPAR { AssertReturnCanonicalNan @@ at () }
/* TODO (ref.any) | (ref.func) */
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should I be able to implement the branches for ref.any and ref.func?

Copy link
Member

@rossberg rossberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for starting on this, but I think you'll need to implement the basic change upstream on the main spec repo first. Otherwise it will be extremely difficult to sync with other proposals that need to introduce their own extensions to the result syntax, like the reference types proposal.

See also my latest comment on #137 for a refinement of my suggestion.

of_assertion' mods act "assert_return_canonical_nan" [] (Some assert_return_canonical_nan)
| AssertReturnArithmeticNaN act ->
of_assertion' mods act "assert_return_arithmetic_nan" [] (Some assert_return_arithmetic_nan)
(Some (assert_return lits)) (* TODO *)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this is for generating a JS version of the test.

| AssertReturnConstant of Ast.literal list
| AssertReturnArithmeticNan (* TODO f32x4 | f64x2 *)
| AssertReturnCanonicalNan (* TODO f32x4 | f64x2 *)
(* TODO (ref.any) | (ref.func) *)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Those would be added the reference types proposal.

@@ -377,7 +377,7 @@ let run_assertion ass =
| _ -> Assert.error ass.at "expected instantiation error"
)

| AssertReturn (act, vs) ->
| AssertReturn (act, vs, modifier) ->
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There wouldn't be a modifier here. Instead, vs would change from a list of values to a list of "results", which would be a new type.

@rossberg
Copy link
Member

Okay, I implemented a base version of this refactoring for the MVP spec in WebAssembly/spec#1104. Let's land this ASAP and then go from there.

@abrown abrown closed this Nov 19, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Extend assert_return_arithmetic_nan and assert_return_canonical_nan for SIMD types
2 participants