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

Side by Side Diff: src/compiler/change-lowering-unittest.cc

Issue 530693002: [turbofan] Merge compiler unit tests into src. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
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/change-lowering.h" 5 #include "src/compiler/change-lowering.h"
6 #include "src/compiler/graph-unittest.h"
6 #include "src/compiler/js-graph.h" 7 #include "src/compiler/js-graph.h"
7 #include "src/compiler/node-properties-inl.h" 8 #include "src/compiler/node-properties-inl.h"
8 #include "src/compiler/simplified-operator.h" 9 #include "src/compiler/simplified-operator.h"
9 #include "src/compiler/typer.h" 10 #include "src/compiler/typer.h"
10 #include "test/compiler-unittests/graph-unittest.h"
11 #include "testing/gmock-support.h" 11 #include "testing/gmock-support.h"
12 12
13 using testing::_; 13 using testing::_;
14 using testing::AllOf; 14 using testing::AllOf;
15 using testing::Capture; 15 using testing::Capture;
16 using testing::CaptureEq; 16 using testing::CaptureEq;
17 17
18 namespace v8 { 18 namespace v8 {
19 namespace internal { 19 namespace internal {
20 namespace compiler { 20 namespace compiler {
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 IsIfTrue(AllOf(CaptureEq(&branch), 469 IsIfTrue(AllOf(CaptureEq(&branch),
470 IsBranch(IsUint32LessThanOrEqual( 470 IsBranch(IsUint32LessThanOrEqual(
471 val, IsInt32Constant(SmiMaxValue())), 471 val, IsInt32Constant(SmiMaxValue())),
472 graph()->start()))), 472 graph()->start()))),
473 AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch)))))); 473 AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch))))));
474 } 474 }
475 475
476 } // namespace compiler 476 } // namespace compiler
477 } // namespace internal 477 } // namespace internal
478 } // namespace v8 478 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/arm64/instruction-selector-arm64-unittest.cc ('k') | src/compiler/common-operator-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698