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

Side by Side Diff: test/unittests/compiler/node-matchers-unittest.cc

Issue 816453005: [turbofan] Cleanup use of virtual, OVERRIDE, FINAL. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 "src/compiler/common-operator.h" 5 #include "src/compiler/common-operator.h"
6 #include "src/compiler/graph.h" 6 #include "src/compiler/graph.h"
7 #include "src/compiler/machine-operator.h" 7 #include "src/compiler/machine-operator.h"
8 #include "src/compiler/node.h" 8 #include "src/compiler/node.h"
9 #include "src/compiler/node-matchers.h" 9 #include "src/compiler/node-matchers.h"
10 #include "src/compiler/opcodes.h" 10 #include "src/compiler/opcodes.h"
11 11
12 #include "test/unittests/compiler/graph-unittest.h" 12 #include "test/unittests/compiler/graph-unittest.h"
13 #include "test/unittests/test-utils.h" 13 #include "test/unittests/test-utils.h"
14 14
15 namespace v8 { 15 namespace v8 {
16 namespace internal { 16 namespace internal {
17 namespace compiler { 17 namespace compiler {
18 18
19 class NodeMatcherTest : public GraphTest { 19 class NodeMatcherTest : public GraphTest {
20 public: 20 public:
21 NodeMatcherTest() : machine_(zone()) {} 21 NodeMatcherTest() : machine_(zone()) {}
22 virtual ~NodeMatcherTest() {} 22 ~NodeMatcherTest() OVERRIDE {}
23 23
24 MachineOperatorBuilder* machine() { return &machine_; } 24 MachineOperatorBuilder* machine() { return &machine_; }
25 25
26 private: 26 private:
27 MachineOperatorBuilder machine_; 27 MachineOperatorBuilder machine_;
28 }; 28 };
29 29
30 namespace { 30 namespace {
31 31
32 template <class Matcher> 32 template <class Matcher>
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 temp = graph()->NewNode(a_op, b0, d15); 724 temp = graph()->NewNode(a_op, b0, d15);
725 BaseWithIndexAndDisplacement64Matcher match50( 725 BaseWithIndexAndDisplacement64Matcher match50(
726 graph()->NewNode(a_op, m3, temp)); 726 graph()->NewNode(a_op, m3, temp));
727 CheckBaseWithIndexAndDisplacement(&match50, m3, 0, b0, d15); 727 CheckBaseWithIndexAndDisplacement(&match50, m3, 0, b0, d15);
728 } 728 }
729 729
730 730
731 } // namespace compiler 731 } // namespace compiler
732 } // namespace internal 732 } // namespace internal
733 } // namespace v8 733 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698