Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(507)

Unified Diff: test/mjsunit/wasm/ffi-error.js

Issue 1504713014: Initial import of v8-native WASM. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/wasm/ffi.js ('k') | test/mjsunit/wasm/indirect-calls.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/wasm/ffi-error.js
diff --git a/test/mjsunit/wasm/ffi-error.js b/test/mjsunit/wasm/ffi-error.js
new file mode 100644
index 0000000000000000000000000000000000000000..06a697278ef6a501b619bd13a01734aeb3a26828
--- /dev/null
+++ b/test/mjsunit/wasm/ffi-error.js
@@ -0,0 +1,77 @@
+// Copyright 2015 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+load("test/mjsunit/wasm/wasm-constants.js");
+
+function testCallFFI(ffi) {
+ var kBodySize = 6;
+ var kNameAddOffset = 28 + kBodySize + 1;
+ var kNameMainOffset = kNameAddOffset + 4;
+
+ var data = bytes(
+ kDeclMemory,
+ 12, 12, 1, // memory
+ // -- signatures
+ kDeclSignatures, 1,
+ 2, kAstI32, kAstF64, kAstF64, // (f64,f64)->int
+ // -- foreign function
+ kDeclFunctions, 2,
+ kDeclFunctionName | kDeclFunctionImport,
+ 0, 0, // signature index
+ kNameAddOffset, 0, 0, 0, // name offset
+ // -- main function
+ kDeclFunctionName | kDeclFunctionExport,
+ 0, 0, // signature index
+ kNameMainOffset, 0, 0, 0, // name offset
+ kBodySize, 0,
+ // main body
+ kExprCallFunction, 0, // --
+ kExprGetLocal, 0, // --
+ kExprGetLocal, 1, // --
+ // names
+ kDeclEnd,
+ 'f', 'u', 'n', 0, // --
+ 'm', 'a', 'i', 'n', 0 // --
+ );
+
+ print("instantiate FFI");
+ var module = WASM.instantiateModule(data, ffi);
+}
+
+// everything is good.
+(function() {
+ var ffi = new Object();
+ ffi.fun = function(a, b) { print(a, b); }
+ testCallFFI(ffi);
+})();
+
+
+// FFI object should be an object.
+assertThrows(function() {
+ var ffi = 0;
+ testCallFFI(ffi);
+});
+
+
+// FFI object should have a "fun" property.
+assertThrows(function() {
+ var ffi = new Object();
+ testCallFFI(ffi);
+});
+
+
+// "fun" should be a JS function.
+assertThrows(function() {
+ var ffi = new Object();
+ ffi.fun = new Object();
+ testCallFFI(ffi);
+});
+
+
+// "fun" should be a JS function.
+assertThrows(function() {
+ var ffi = new Object();
+ ffi.fun = 0;
+ testCallFFI(ffi);
+});
« no previous file with comments | « test/mjsunit/wasm/ffi.js ('k') | test/mjsunit/wasm/indirect-calls.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698