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

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: Cleanup 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 // Forward declarations.
17 class JSGraph;
18 class MachineOperatorBuilder;
19
20 class SimdLowering final : public Reducer {
21 public:
22 explicit SimdLowering(WasmGraphBuilder* builder) : builder_(builder) {}
23 virtual ~SimdLowering();
24 Reduction Reduce(Node* node) override;
25
26 private:
27 WasmGraphBuilder* builder_;
28 };
29
30 } // namespace compiler
31 } // namespace internal
32 } // namespace v8
33
34 #endif // V8_COMPILER_SIMD_LOWERING_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/compiler/simd-lowering.cc » ('j') | src/compiler/wasm-compiler.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698