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

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

Issue 821913002: [turbofan] Deinlinify OperatorProperties implementation. (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
« no previous file with comments | « test/cctest/compiler/test-typer.cc ('k') | test/unittests/compiler/common-operator-unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/code-stubs.h" 5 #include "src/code-stubs.h"
6 #include "src/compiler/change-lowering.h" 6 #include "src/compiler/change-lowering.h"
7 #include "src/compiler/js-graph.h" 7 #include "src/compiler/js-graph.h"
8 #include "src/compiler/linkage.h"
8 #include "src/compiler/node-properties-inl.h" 9 #include "src/compiler/node-properties-inl.h"
9 #include "src/compiler/simplified-operator.h" 10 #include "src/compiler/simplified-operator.h"
10 #include "test/unittests/compiler/compiler-test-utils.h" 11 #include "test/unittests/compiler/compiler-test-utils.h"
11 #include "test/unittests/compiler/graph-unittest.h" 12 #include "test/unittests/compiler/graph-unittest.h"
12 #include "test/unittests/compiler/node-test-utils.h" 13 #include "test/unittests/compiler/node-test-utils.h"
13 #include "testing/gmock-support.h" 14 #include "testing/gmock-support.h"
14 15
15 using testing::_; 16 using testing::_;
16 using testing::AllOf; 17 using testing::AllOf;
17 using testing::Capture; 18 using testing::Capture;
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 IsIfTrue(AllOf(CaptureEq(&branch), 452 IsIfTrue(AllOf(CaptureEq(&branch),
452 IsBranch(IsUint32LessThanOrEqual( 453 IsBranch(IsUint32LessThanOrEqual(
453 val, IsInt32Constant(SmiMaxValue())), 454 val, IsInt32Constant(SmiMaxValue())),
454 graph()->start()))), 455 graph()->start()))),
455 AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch)))))); 456 AllOf(CaptureEq(&if_false), IsIfFalse(CaptureEq(&branch))))));
456 } 457 }
457 458
458 } // namespace compiler 459 } // namespace compiler
459 } // namespace internal 460 } // namespace internal
460 } // namespace v8 461 } // namespace v8
OLDNEW
« no previous file with comments | « test/cctest/compiler/test-typer.cc ('k') | test/unittests/compiler/common-operator-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698