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

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

Issue 1709653002: [wasm] Add support for import section. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: delete the import_code vector Created 4 years, 10 months 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdint.h> 5 #include <stdint.h>
6 #include <stdio.h> 6 #include <stdio.h>
7 #include <stdlib.h> 7 #include <stdlib.h>
8 #include <string.h> 8 #include <string.h>
9 9
10 #include "src/wasm/wasm-macro-gen.h" 10 #include "src/wasm/wasm-macro-gen.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 }; 49 };
50 50
51 51
52 uint32_t AddJsFunction(TestingModule* module, FunctionSig* sig, 52 uint32_t AddJsFunction(TestingModule* module, FunctionSig* sig,
53 const char* source) { 53 const char* source) {
54 Handle<JSFunction> jsfunc = Handle<JSFunction>::cast(v8::Utils::OpenHandle( 54 Handle<JSFunction> jsfunc = Handle<JSFunction>::cast(v8::Utils::OpenHandle(
55 *v8::Local<v8::Function>::Cast(CompileRun(source)))); 55 *v8::Local<v8::Function>::Cast(CompileRun(source))));
56 module->AddFunction(sig, Handle<Code>::null()); 56 module->AddFunction(sig, Handle<Code>::null());
57 uint32_t index = static_cast<uint32_t>(module->module->functions->size() - 1); 57 uint32_t index = static_cast<uint32_t>(module->module->functions->size() - 1);
58 Isolate* isolate = CcTest::InitIsolateOnce(); 58 Isolate* isolate = CcTest::InitIsolateOnce();
59 Handle<Code> code = CompileWasmToJSWrapper(isolate, module, jsfunc, index); 59 Handle<Code> code =
60 CompileWasmToJSWrapper(isolate, module, jsfunc, sig, "test");
60 module->instance->function_code->at(index) = code; 61 module->instance->function_code->at(index) = code;
61 return index; 62 return index;
62 } 63 }
63 64
64 65
65 uint32_t AddJSSelector(TestingModule* module, FunctionSig* sig, int which) { 66 uint32_t AddJSSelector(TestingModule* module, FunctionSig* sig, int which) {
66 const int kMaxParams = 8; 67 const int kMaxParams = 8;
67 static const char* formals[kMaxParams] = { 68 static const char* formals[kMaxParams] = {
68 "", "a", "a,b", "a,b,c", 69 "", "a", "a,b", "a,b,c",
69 "a,b,c,d", "a,b,c,d,e", "a,b,c,d,e,f", "a,b,c,d,e,f,g", 70 "a,b,c,d", "a,b,c,d,e", "a,b,c,d,e,f", "a,b,c,d,e,f,g",
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 RunJSSelectAlignTest(1, 2); 423 RunJSSelectAlignTest(1, 2);
423 RunJSSelectAlignTest(1, 3); 424 RunJSSelectAlignTest(1, 3);
424 } 425 }
425 426
426 427
427 TEST(Run_JSSelectAlign_3) { 428 TEST(Run_JSSelectAlign_3) {
428 RunJSSelectAlignTest(3, 3); 429 RunJSSelectAlignTest(3, 3);
429 RunJSSelectAlignTest(3, 4); 430 RunJSSelectAlignTest(3, 4);
430 } 431 }
431 #endif 432 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698