Title: [259486] branches/safari-609.2.1.2-branch/JSTests
- Revision
- 259486
- Author
- [email protected]
- Date
- 2020-04-03 12:57:31 -0700 (Fri, 03 Apr 2020)
Log Message
Cherry-pick r256698. rdar://problem/61231902
Unreviewed: fix broken tests added in r256665
https://bugs.webkit.org/show_bug.cgi?id=207727
Our inline WAT doesn't seem to like named blocks/branch targets.
* wasm/regress/llint-callee-saves-with-fast-memory.js:
* wasm/regress/llint-callee-saves-without-fast-memory.js:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@256698 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Modified Paths
Diff
Modified: branches/safari-609.2.1.2-branch/JSTests/ChangeLog (259485 => 259486)
--- branches/safari-609.2.1.2-branch/JSTests/ChangeLog 2020-04-03 19:57:29 UTC (rev 259485)
+++ branches/safari-609.2.1.2-branch/JSTests/ChangeLog 2020-04-03 19:57:31 UTC (rev 259486)
@@ -1,5 +1,29 @@
2020-04-03 Alan Coon <[email protected]>
+ Cherry-pick r256698. rdar://problem/61231902
+
+ Unreviewed: fix broken tests added in r256665
+ https://bugs.webkit.org/show_bug.cgi?id=207727
+
+ Our inline WAT doesn't seem to like named blocks/branch targets.
+
+ * wasm/regress/llint-callee-saves-with-fast-memory.js:
+ * wasm/regress/llint-callee-saves-without-fast-memory.js:
+
+ git-svn-id: https://svn.webkit.org/repository/webkit/trunk@256698 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+ 2020-02-14 Tadeu Zagallo <[email protected]>
+
+ Unreviewed: fix broken tests added in r256665
+ https://bugs.webkit.org/show_bug.cgi?id=207727
+
+ Our inline WAT doesn't seem to like named blocks/branch targets.
+
+ * wasm/regress/llint-callee-saves-with-fast-memory.js:
+ * wasm/regress/llint-callee-saves-without-fast-memory.js:
+
+2020-04-03 Alan Coon <[email protected]>
+
Cherry-pick r256665. rdar://problem/61231902
[WASM] Wasm interpreter's calling convention doesn't match Wasm JIT's convention.
Modified: branches/safari-609.2.1.2-branch/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js (259485 => 259486)
--- branches/safari-609.2.1.2-branch/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js 2020-04-03 19:57:29 UTC (rev 259485)
+++ branches/safari-609.2.1.2-branch/JSTests/wasm/regress/llint-callee-saves-with-fast-memory.js 2020-04-03 19:57:31 UTC (rev 259486)
@@ -23,11 +23,11 @@
(func (export "main")
(local $i i32)
(local.set $i (i32.const 100000))
- (loop $warmup
+ (loop
(i32.sub (local.get $i) (i32.const 1))
(local.tee $i)
(call $f (i32.const 1))
- (br_if $warmup)
+ (br_if 0)
)
(call $f (i32.const 0))
)
Modified: branches/safari-609.2.1.2-branch/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js (259485 => 259486)
--- branches/safari-609.2.1.2-branch/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js 2020-04-03 19:57:29 UTC (rev 259485)
+++ branches/safari-609.2.1.2-branch/JSTests/wasm/regress/llint-callee-saves-without-fast-memory.js 2020-04-03 19:57:31 UTC (rev 259486)
@@ -21,11 +21,11 @@
(func (export "main")
(local $i i32)
(local.set $i (i32.const 100000))
- (loop $warmup
+ (loop
(i32.sub (local.get $i) (i32.const 1))
(local.tee $i)
(call $f (i32.const 1))
- (br_if $warmup)
+ (br_if 0)
)
(call $f (i32.const 0))
)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes