| 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/js-typed-lowering.h" |
| 5 #include "src/code-factory.h" | 6 #include "src/code-factory.h" |
| 7 #include "src/compilation-dependencies.h" |
| 6 #include "src/compiler/access-builder.h" | 8 #include "src/compiler/access-builder.h" |
| 7 #include "src/compiler/js-graph.h" | 9 #include "src/compiler/js-graph.h" |
| 8 #include "src/compiler/js-operator.h" | 10 #include "src/compiler/js-operator.h" |
| 9 #include "src/compiler/js-typed-lowering.h" | |
| 10 #include "src/compiler/machine-operator.h" | 11 #include "src/compiler/machine-operator.h" |
| 11 #include "src/compiler/node-properties.h" | 12 #include "src/compiler/node-properties.h" |
| 12 #include "src/compiler/operator-properties.h" | 13 #include "src/compiler/operator-properties.h" |
| 13 #include "src/isolate-inl.h" | 14 #include "src/isolate-inl.h" |
| 14 #include "test/unittests/compiler/compiler-test-utils.h" | 15 #include "test/unittests/compiler/compiler-test-utils.h" |
| 15 #include "test/unittests/compiler/graph-unittest.h" | 16 #include "test/unittests/compiler/graph-unittest.h" |
| 16 #include "test/unittests/compiler/node-test-utils.h" | 17 #include "test/unittests/compiler/node-test-utils.h" |
| 17 #include "testing/gmock-support.h" | 18 #include "testing/gmock-support.h" |
| 18 | 19 |
| 19 using testing::_; | 20 using testing::_; |
| (...skipping 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1222 EmptyFrameState(), effect, control)); | 1223 EmptyFrameState(), effect, control)); |
| 1223 ASSERT_TRUE(r.Changed()); | 1224 ASSERT_TRUE(r.Changed()); |
| 1224 EXPECT_THAT(r.replacement(), IsSpeculativeNumberBitwiseXor( | 1225 EXPECT_THAT(r.replacement(), IsSpeculativeNumberBitwiseXor( |
| 1225 NumberOperationHint::kNumberOrOddball, lhs, | 1226 NumberOperationHint::kNumberOrOddball, lhs, |
| 1226 rhs, effect, control)); | 1227 rhs, effect, control)); |
| 1227 } | 1228 } |
| 1228 | 1229 |
| 1229 } // namespace compiler | 1230 } // namespace compiler |
| 1230 } // namespace internal | 1231 } // namespace internal |
| 1231 } // namespace v8 | 1232 } // namespace v8 |
| OLD | NEW |