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

Side by Side Diff: test/unittests/compiler/machine-operator-reducer-unittest.cc

Issue 1321223002: [turbofan] Remove obsolete unique.h includes in TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-includes-isolate-2
Patch Set: Rebased. Created 5 years, 3 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
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/base/bits.h" 5 #include "src/base/bits.h"
6 #include "src/base/division-by-constant.h" 6 #include "src/base/division-by-constant.h"
7 #include "src/compiler/js-graph.h" 7 #include "src/compiler/js-graph.h"
8 #include "src/compiler/machine-operator-reducer.h" 8 #include "src/compiler/machine-operator-reducer.h"
9 #include "src/compiler/typer.h" 9 #include "src/compiler/typer.h"
10 #include "src/conversions-inl.h"
10 #include "test/unittests/compiler/graph-unittest.h" 11 #include "test/unittests/compiler/graph-unittest.h"
11 #include "test/unittests/compiler/node-test-utils.h" 12 #include "test/unittests/compiler/node-test-utils.h"
12 #include "testing/gmock-support.h" 13 #include "testing/gmock-support.h"
13 14
14 using testing::AllOf; 15 using testing::AllOf;
15 using testing::BitEq; 16 using testing::BitEq;
16 using testing::Capture; 17 using testing::Capture;
17 using testing::CaptureEq; 18 using testing::CaptureEq;
18 19
19 namespace v8 { 20 namespace v8 {
(...skipping 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after
1577 Reduction r = Reduce(node); 1578 Reduction r = Reduce(node);
1578 ASSERT_TRUE(r.Changed()); 1579 ASSERT_TRUE(r.Changed());
1579 EXPECT_THAT(r.replacement(), 1580 EXPECT_THAT(r.replacement(),
1580 IsStore(rep, base, index, value, effect, control)); 1581 IsStore(rep, base, index, value, effect, control));
1581 } 1582 }
1582 } 1583 }
1583 1584
1584 } // namespace compiler 1585 } // namespace compiler
1585 } // namespace internal 1586 } // namespace internal
1586 } // namespace v8 1587 } // namespace v8
OLDNEW
« no previous file with comments | « test/unittests/compiler/interpreter-assembler-unittest.cc ('k') | test/unittests/compiler/node-test-utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698