Chromium Code Reviews

Side by Side Diff: src/wasm/wasm-module.h

Issue 2294743003: [wasm] simd scalar lowering F32x4Add and I32x4Add (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: [wasm] simd scalar lowering F32x4Add and I32x4Add Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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 #ifndef V8_WASM_MODULE_H_ 5 #ifndef V8_WASM_MODULE_H_
6 #define V8_WASM_MODULE_H_ 6 #define V8_WASM_MODULE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/api.h" 10 #include "src/api.h"
(...skipping 307 matching lines...)
318 318
319 Handle<Code> GetFunctionCode(uint32_t index) { 319 Handle<Code> GetFunctionCode(uint32_t index) {
320 DCHECK_NOT_NULL(instance); 320 DCHECK_NOT_NULL(instance);
321 return instance->function_code[index]; 321 return instance->function_code[index];
322 } 322 }
323 323
324 static compiler::CallDescriptor* GetWasmCallDescriptor(Zone* zone, 324 static compiler::CallDescriptor* GetWasmCallDescriptor(Zone* zone,
325 FunctionSig* sig); 325 FunctionSig* sig);
326 static compiler::CallDescriptor* GetI32WasmCallDescriptor( 326 static compiler::CallDescriptor* GetI32WasmCallDescriptor(
327 Zone* zone, compiler::CallDescriptor* descriptor); 327 Zone* zone, compiler::CallDescriptor* descriptor);
328 static compiler::CallDescriptor* GetI32WasmCallDescriptorForSimd(
329 Zone* zone, compiler::CallDescriptor* descriptor);
328 }; 330 };
329 331
330 // A helper for printing out the names of functions. 332 // A helper for printing out the names of functions.
331 struct WasmFunctionName { 333 struct WasmFunctionName {
332 const WasmFunction* function_; 334 const WasmFunction* function_;
333 const WasmModule* module_; 335 const WasmModule* module_;
334 WasmFunctionName(const WasmFunction* function, const ModuleEnv* menv) 336 WasmFunctionName(const WasmFunction* function, const ModuleEnv* menv)
335 : function_(function), module_(menv ? menv->module : nullptr) {} 337 : function_(function), module_(menv ? menv->module : nullptr) {}
336 }; 338 };
337 339
(...skipping 210 matching lines...)
548 int instance_count); 550 int instance_count);
549 void ValidateModuleState(Isolate* isolate, Handle<JSObject> module_obj); 551 void ValidateModuleState(Isolate* isolate, Handle<JSObject> module_obj);
550 void ValidateOrphanedInstance(Isolate* isolate, Handle<JSObject> instance); 552 void ValidateOrphanedInstance(Isolate* isolate, Handle<JSObject> instance);
551 553
552 } // namespace testing 554 } // namespace testing
553 } // namespace wasm 555 } // namespace wasm
554 } // namespace internal 556 } // namespace internal
555 } // namespace v8 557 } // namespace v8
556 558
557 #endif // V8_WASM_MODULE_H_ 559 #endif // V8_WASM_MODULE_H_
OLDNEW
« src/wasm/ast-decoder.cc ('K') | « src/wasm/wasm-macro-gen.h ('k') | test/cctest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine