| OLD | NEW | 
|    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  Loading... | 
|  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 | 
| OLD | NEW |