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

Side by Side Diff: test/unittests/compiler/js-intrinsic-lowering-unittest.cc

Issue 1655833002: Remove the template magic from types.(h|cc), remove types-inl.h. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Undo whitespace change Created 4 years, 10 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 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 #include "src/compiler/access-builder.h" 5 #include "src/compiler/access-builder.h"
6 #include "src/compiler/diamond.h" 6 #include "src/compiler/diamond.h"
7 #include "src/compiler/js-graph.h" 7 #include "src/compiler/js-graph.h"
8 #include "src/compiler/js-intrinsic-lowering.h" 8 #include "src/compiler/js-intrinsic-lowering.h"
9 #include "src/compiler/js-operator.h" 9 #include "src/compiler/js-operator.h"
10 #include "src/types-inl.h"
11 #include "test/unittests/compiler/graph-unittest.h" 10 #include "test/unittests/compiler/graph-unittest.h"
12 #include "test/unittests/compiler/node-test-utils.h" 11 #include "test/unittests/compiler/node-test-utils.h"
13 #include "testing/gmock-support.h" 12 #include "testing/gmock-support.h"
14 13
15 14
16 using testing::_; 15 using testing::_;
17 using testing::AllOf; 16 using testing::AllOf;
18 using testing::BitEq; 17 using testing::BitEq;
19 using testing::Capture; 18 using testing::Capture;
20 using testing::CaptureEq; 19 using testing::CaptureEq;
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 CaptureEq(&if_false0)))))), 452 CaptureEq(&if_false0)))))),
454 IsMerge( 453 IsMerge(
455 IsIfTrue(AllOf(CaptureEq(&branch0), 454 IsIfTrue(AllOf(CaptureEq(&branch0),
456 IsBranch(IsObjectIsSmi(input), control))), 455 IsBranch(IsObjectIsSmi(input), control))),
457 AllOf(CaptureEq(&if_false0), IsIfFalse(CaptureEq(&branch0)))))); 456 AllOf(CaptureEq(&if_false0), IsIfFalse(CaptureEq(&branch0))))));
458 } 457 }
459 458
460 } // namespace compiler 459 } // namespace compiler
461 } // namespace internal 460 } // namespace internal
462 } // namespace v8 461 } // namespace v8
OLDNEW
« no previous file with comments | « test/unittests/compiler/escape-analysis-unittest.cc ('k') | test/unittests/compiler/node-test-utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698