| OLD | NEW |
| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 = | 59 Handle<Code> code = |
| 60 CompileWasmToJSWrapper(isolate, module, jsfunc, sig, "test"); | 60 CompileWasmToJSWrapper(isolate, module, jsfunc, sig, "test", nullptr); |
| 61 module->instance->function_code[index] = code; | 61 module->instance->function_code[index] = code; |
| 62 return index; | 62 return index; |
| 63 } | 63 } |
| 64 | 64 |
| 65 | 65 |
| 66 uint32_t AddJSSelector(TestingModule* module, FunctionSig* sig, int which) { | 66 uint32_t AddJSSelector(TestingModule* module, FunctionSig* sig, int which) { |
| 67 const int kMaxParams = 8; | 67 const int kMaxParams = 8; |
| 68 static const char* formals[kMaxParams] = { | 68 static const char* formals[kMaxParams] = { |
| 69 "", "a", "a,b", "a,b,c", | 69 "", "a", "a,b", "a,b,c", |
| 70 "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 Loading... |
| 423 RunJSSelectAlignTest(1, 2); | 423 RunJSSelectAlignTest(1, 2); |
| 424 RunJSSelectAlignTest(1, 3); | 424 RunJSSelectAlignTest(1, 3); |
| 425 } | 425 } |
| 426 | 426 |
| 427 | 427 |
| 428 TEST(Run_JSSelectAlign_3) { | 428 TEST(Run_JSSelectAlign_3) { |
| 429 RunJSSelectAlignTest(3, 3); | 429 RunJSSelectAlignTest(3, 3); |
| 430 RunJSSelectAlignTest(3, 4); | 430 RunJSSelectAlignTest(3, 4); |
| 431 } | 431 } |
| 432 #endif | 432 #endif |
| OLD | NEW |