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

Side by Side Diff: test/cctest/wasm/test-run-wasm-module.cc

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 unified diff | Download patch
« no previous file with comments | « test/cctest/wasm/test-run-wasm.cc ('k') | test/cctest/wasm/test-signatures.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <stdlib.h>
6 #include <string.h>
7
8 #include "src/wasm/encoder.h"
9 #include "src/wasm/wasm-macro-gen.h"
10 #include "src/wasm/wasm-module.h"
11 #include "src/wasm/wasm-opcodes.h"
12
13 #include "test/cctest/cctest.h"
14
15 using namespace v8::base;
16 using namespace v8::internal;
17 using namespace v8::internal::compiler;
18 using namespace v8::internal::wasm;
19
20
21 namespace {
22 void TestModule(WasmModuleIndex* module, int32_t expected_result) {
23 Isolate* isolate = CcTest::InitIsolateOnce();
24 int32_t result =
25 CompileAndRunWasmModule(isolate, module->Begin(), module->End());
26 CHECK_EQ(expected_result, result);
27 }
28 } // namespace
29
30
31 // A raw test that skips the WasmModuleBuilder.
32 TEST(Run_WasmModule_CallAdd_rev) {
33 static const byte data[] = {
34 // sig#0 ------------------------------------------
35 kDeclSignatures, 2, 0, kLocalI32, // void -> int
36 2, kLocalI32, kLocalI32, kLocalI32, // int,int -> int
37 // func#0 (main) ----------------------------------
38 kDeclFunctions, 2, kDeclFunctionExport, 0, 0, // sig index
39 6, 0, // body size
40 kExprCallFunction, 1, // --
41 kExprI8Const, 77, // --
42 kExprI8Const, 22, // --
43 // func#1 -----------------------------------------
44 0, // no name, not exported
45 1, 0, // sig index
46 5, 0, // body size
47 kExprI32Add, // --
48 kExprGetLocal, 0, // --
49 kExprGetLocal, 1, // --
50 };
51
52 Isolate* isolate = CcTest::InitIsolateOnce();
53 int32_t result =
54 CompileAndRunWasmModule(isolate, data, data + arraysize(data));
55 CHECK_EQ(99, result);
56 }
57
58
59 TEST(Run_WasmModule_Return114) {
60 static const int32_t kReturnValue = 114;
61 Zone zone;
62 WasmModuleBuilder* builder = new (&zone) WasmModuleBuilder(&zone);
63 uint16_t f_index = builder->AddFunction();
64 WasmFunctionBuilder* f = builder->FunctionAt(f_index);
65 f->ReturnType(kAstI32);
66 f->Exported(1);
67 byte code[] = {WASM_I8(kReturnValue)};
68 f->EmitCode(code, sizeof(code));
69 WasmModuleWriter* writer = builder->Build(&zone);
70 TestModule(writer->WriteTo(&zone), kReturnValue);
71 }
72
73
74 TEST(Run_WasmModule_CallAdd) {
75 Zone zone;
76 WasmModuleBuilder* builder = new (&zone) WasmModuleBuilder(&zone);
77 uint16_t f1_index = builder->AddFunction();
78 WasmFunctionBuilder* f = builder->FunctionAt(f1_index);
79 f->ReturnType(kAstI32);
80 uint16_t param1 = f->AddParam(kAstI32);
81 uint16_t param2 = f->AddParam(kAstI32);
82 byte code1[] = {WASM_I32_ADD(WASM_GET_LOCAL(param1), WASM_GET_LOCAL(param2))};
83 uint32_t local_indices1[] = {2, 4};
84 f->EmitCode(code1, sizeof(code1), local_indices1, sizeof(local_indices1) / 4);
85 uint16_t f2_index = builder->AddFunction();
86 f = builder->FunctionAt(f2_index);
87 f->ReturnType(kAstI32);
88 f->Exported(1);
89 byte code2[] = {WASM_CALL_FUNCTION(f1_index, WASM_I8(77), WASM_I8(22))};
90 f->EmitCode(code2, sizeof(code2));
91 WasmModuleWriter* writer = builder->Build(&zone);
92 TestModule(writer->WriteTo(&zone), 99);
93 }
94
95
96 TEST(Run_WasmModule_ReadLoadedDataSegment) {
97 static const byte kDataSegmentDest0 = 12;
98 Zone zone;
99 WasmModuleBuilder* builder = new (&zone) WasmModuleBuilder(&zone);
100 uint16_t f_index = builder->AddFunction();
101 WasmFunctionBuilder* f = builder->FunctionAt(f_index);
102 f->ReturnType(kAstI32);
103 f->Exported(1);
104 byte code[] = {
105 WASM_LOAD_MEM(MachineType::Int32(), WASM_I8(kDataSegmentDest0))};
106 f->EmitCode(code, sizeof(code));
107 byte data[] = {0xaa, 0xbb, 0xcc, 0xdd};
108 builder->AddDataSegment(new (&zone) WasmDataSegmentEncoder(
109 &zone, data, sizeof(data), kDataSegmentDest0));
110 WasmModuleWriter* writer = builder->Build(&zone);
111 TestModule(writer->WriteTo(&zone), 0xddccbbaa);
112 }
113
114
115 TEST(Run_WasmModule_CheckMemoryIsZero) {
116 static const int kCheckSize = 16 * 1024;
117 Zone zone;
118 WasmModuleBuilder* builder = new (&zone) WasmModuleBuilder(&zone);
119 uint16_t f_index = builder->AddFunction();
120 WasmFunctionBuilder* f = builder->FunctionAt(f_index);
121 f->ReturnType(kAstI32);
122 uint16_t localIndex = f->AddLocal(kAstI32);
123 f->Exported(1);
124 byte code[] = {WASM_BLOCK(
125 2,
126 WASM_WHILE(
127 WASM_I32_LTS(WASM_GET_LOCAL(localIndex), WASM_I32(kCheckSize)),
128 WASM_IF_ELSE(
129 WASM_LOAD_MEM(MachineType::Int32(), WASM_GET_LOCAL(localIndex)),
130 WASM_BRV(2, WASM_I8(-1)), WASM_INC_LOCAL_BY(localIndex, 4))),
131 WASM_I8(11))};
132 uint32_t local_indices[] = {7, 19, 25, 28};
133 f->EmitCode(code, sizeof(code), local_indices, sizeof(local_indices) / 4);
134 WasmModuleWriter* writer = builder->Build(&zone);
135 TestModule(writer->WriteTo(&zone), 11);
136 }
137
138
139 TEST(Run_WasmModule_CallMain_recursive) {
140 Zone zone;
141 WasmModuleBuilder* builder = new (&zone) WasmModuleBuilder(&zone);
142 uint16_t f_index = builder->AddFunction();
143 WasmFunctionBuilder* f = builder->FunctionAt(f_index);
144 f->ReturnType(kAstI32);
145 uint16_t localIndex = f->AddLocal(kAstI32);
146 f->Exported(1);
147 byte code[] = {WASM_BLOCK(
148 2, WASM_SET_LOCAL(localIndex,
149 WASM_LOAD_MEM(MachineType::Int32(), WASM_ZERO)),
150 WASM_IF_ELSE(WASM_I32_LTS(WASM_GET_LOCAL(localIndex), WASM_I8(5)),
151 WASM_BLOCK(2, WASM_STORE_MEM(MachineType::Int32(), WASM_ZERO,
152 WASM_INC_LOCAL(localIndex)),
153 WASM_BRV(1, WASM_CALL_FUNCTION0(0))),
154 WASM_BRV(0, WASM_I8(55))))};
155 uint32_t local_indices[] = {3, 11, 21, 24};
156 f->EmitCode(code, sizeof(code), local_indices, sizeof(local_indices) / 4);
157 WasmModuleWriter* writer = builder->Build(&zone);
158 TestModule(writer->WriteTo(&zone), 55);
159 }
160
161
162 TEST(Run_WasmModule_Global) {
163 Zone zone;
164 WasmModuleBuilder* builder = new (&zone) WasmModuleBuilder(&zone);
165 uint32_t global1 = builder->AddGlobal(MachineType::Int32(), 0);
166 uint32_t global2 = builder->AddGlobal(MachineType::Int32(), 0);
167 uint16_t f1_index = builder->AddFunction();
168 WasmFunctionBuilder* f = builder->FunctionAt(f1_index);
169 f->ReturnType(kAstI32);
170 byte code1[] = {
171 WASM_I32_ADD(WASM_LOAD_GLOBAL(global1), WASM_LOAD_GLOBAL(global2))};
172 f->EmitCode(code1, sizeof(code1));
173 uint16_t f2_index = builder->AddFunction();
174 f = builder->FunctionAt(f2_index);
175 f->ReturnType(kAstI32);
176 f->Exported(1);
177 byte code2[] = {WASM_STORE_GLOBAL(global1, WASM_I32(56)),
178 WASM_STORE_GLOBAL(global2, WASM_I32(41)),
179 WASM_RETURN(WASM_CALL_FUNCTION0(f1_index))};
180 f->EmitCode(code2, sizeof(code2));
181 WasmModuleWriter* writer = builder->Build(&zone);
182 TestModule(writer->WriteTo(&zone), 97);
183 }
OLDNEW
« no previous file with comments | « test/cctest/wasm/test-run-wasm.cc ('k') | test/cctest/wasm/test-signatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698