| OLD | NEW |
| 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/graph.h" | 5 #include "src/compiler/graph.h" |
| 6 #include "src/compiler/graph-reducer.h" | 6 #include "src/compiler/graph-reducer.h" |
| 7 #include "src/compiler/operator.h" | 7 #include "src/compiler/operator.h" |
| 8 #include "src/test/test-utils.h" | 8 #include "test/unittests/test-utils.h" |
| 9 #include "testing/gmock/include/gmock/gmock.h" | 9 #include "testing/gmock/include/gmock/gmock.h" |
| 10 | 10 |
| 11 using testing::_; | 11 using testing::_; |
| 12 using testing::DefaultValue; | 12 using testing::DefaultValue; |
| 13 using testing::Return; | 13 using testing::Return; |
| 14 using testing::Sequence; | 14 using testing::Sequence; |
| 15 using testing::StrictMock; | 15 using testing::StrictMock; |
| 16 | 16 |
| 17 namespace v8 { | 17 namespace v8 { |
| 18 namespace internal { | 18 namespace internal { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 Return(Reducer::Changed(node0))); | 106 Return(Reducer::Changed(node0))); |
| 107 EXPECT_CALL(r1, Reduce(node0)).InSequence(s1); | 107 EXPECT_CALL(r1, Reduce(node0)).InSequence(s1); |
| 108 EXPECT_CALL(r2, Reduce(node0)).InSequence(s2); | 108 EXPECT_CALL(r2, Reduce(node0)).InSequence(s2); |
| 109 EXPECT_CALL(r3, Reduce(node0)).InSequence(s3); | 109 EXPECT_CALL(r3, Reduce(node0)).InSequence(s3); |
| 110 ReduceNode(node0, &r1, &r2, &r3); | 110 ReduceNode(node0, &r1, &r2, &r3); |
| 111 } | 111 } |
| 112 | 112 |
| 113 } // namespace compiler | 113 } // namespace compiler |
| 114 } // namespace internal | 114 } // namespace internal |
| 115 } // namespace v8 | 115 } // namespace v8 |
| OLD | NEW |