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

Side by Side Diff: src/compiler/simd-lowering.h

Issue 1991143002: Convert SIMD wasm ops to runtime function calls (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 5 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
(Empty)
1 // Copyright 2016 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 #ifndef V8_COMPILER_SIMD_LOWERING_H_
6 #define V8_COMPILER_SIMD_LOWERING_H_
7
8 #include "src/compiler/graph-reducer.h"
9 #include "src/compiler/wasm-compiler.h"
10 #include "src/runtime/runtime.h"
11
12 namespace v8 {
13 namespace internal {
14 namespace compiler {
15
16 class SimdLowering final : public Reducer {
17 public:
18 SimdLowering(Zone* zone, WasmGraphBuilder* builder)
19 : builder_(builder), zone_(zone) {}
20 virtual ~SimdLowering();
21 Reduction Reduce(Node* node) override;
22
23 private:
24 WasmGraphBuilder* builder_;
25 Zone* zone_;
26 };
27
28 } // namespace compiler
29 } // namespace internal
30 } // namespace v8
31
32 #endif // V8_COMPILER_SIMD_LOWERING_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/compiler/simd-lowering.cc » ('j') | src/compiler/simd-lowering.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698