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/opcodes.h" | 5 #include "src/compiler/opcodes.h" |
6 #include "src/compiler/operator.h" | 6 #include "src/compiler/operator.h" |
7 #include "src/compiler/operator-properties.h" | 7 #include "src/compiler/operator-properties.h" |
8 #include "src/compiler/simplified-operator.h" | 8 #include "src/compiler/simplified-operator.h" |
9 #include "src/types-inl.h" | 9 #include "src/types-inl.h" |
10 #include "test/unittests/test-utils.h" | 10 #include "test/unittests/test-utils.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 PURE(NumberEqual, Operator::kCommutative, 2), | 44 PURE(NumberEqual, Operator::kCommutative, 2), |
45 PURE(NumberLessThan, Operator::kNoProperties, 2), | 45 PURE(NumberLessThan, Operator::kNoProperties, 2), |
46 PURE(NumberLessThanOrEqual, Operator::kNoProperties, 2), | 46 PURE(NumberLessThanOrEqual, Operator::kNoProperties, 2), |
47 PURE(NumberAdd, Operator::kCommutative, 2), | 47 PURE(NumberAdd, Operator::kCommutative, 2), |
48 PURE(NumberSubtract, Operator::kNoProperties, 2), | 48 PURE(NumberSubtract, Operator::kNoProperties, 2), |
49 PURE(NumberMultiply, Operator::kCommutative, 2), | 49 PURE(NumberMultiply, Operator::kCommutative, 2), |
50 PURE(NumberDivide, Operator::kNoProperties, 2), | 50 PURE(NumberDivide, Operator::kNoProperties, 2), |
51 PURE(NumberModulus, Operator::kNoProperties, 2), | 51 PURE(NumberModulus, Operator::kNoProperties, 2), |
52 PURE(NumberToInt32, Operator::kNoProperties, 1), | 52 PURE(NumberToInt32, Operator::kNoProperties, 1), |
53 PURE(NumberToUint32, Operator::kNoProperties, 1), | 53 PURE(NumberToUint32, Operator::kNoProperties, 1), |
| 54 PURE(PlainPrimitiveToNumber, Operator::kNoProperties, 1), |
54 PURE(StringEqual, Operator::kCommutative, 2), | 55 PURE(StringEqual, Operator::kCommutative, 2), |
55 PURE(StringLessThan, Operator::kNoProperties, 2), | 56 PURE(StringLessThan, Operator::kNoProperties, 2), |
56 PURE(StringLessThanOrEqual, Operator::kNoProperties, 2), | 57 PURE(StringLessThanOrEqual, Operator::kNoProperties, 2), |
57 PURE(StringAdd, Operator::kNoProperties, 2), | 58 PURE(StringAdd, Operator::kNoProperties, 2), |
58 PURE(ChangeTaggedToInt32, Operator::kNoProperties, 1), | 59 PURE(ChangeTaggedToInt32, Operator::kNoProperties, 1), |
59 PURE(ChangeTaggedToUint32, Operator::kNoProperties, 1), | 60 PURE(ChangeTaggedToUint32, Operator::kNoProperties, 1), |
60 PURE(ChangeTaggedToFloat64, Operator::kNoProperties, 1), | 61 PURE(ChangeTaggedToFloat64, Operator::kNoProperties, 1), |
61 PURE(ChangeInt32ToTagged, Operator::kNoProperties, 1), | 62 PURE(ChangeInt32ToTagged, Operator::kNoProperties, 1), |
62 PURE(ChangeUint32ToTagged, Operator::kNoProperties, 1), | 63 PURE(ChangeUint32ToTagged, Operator::kNoProperties, 1), |
63 PURE(ChangeFloat64ToTagged, Operator::kNoProperties, 1), | 64 PURE(ChangeFloat64ToTagged, Operator::kNoProperties, 1), |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 } | 282 } |
282 | 283 |
283 | 284 |
284 INSTANTIATE_TEST_CASE_P(SimplifiedOperatorTest, | 285 INSTANTIATE_TEST_CASE_P(SimplifiedOperatorTest, |
285 SimplifiedElementAccessOperatorTest, | 286 SimplifiedElementAccessOperatorTest, |
286 ::testing::ValuesIn(kElementAccesses)); | 287 ::testing::ValuesIn(kElementAccesses)); |
287 | 288 |
288 } // namespace compiler | 289 } // namespace compiler |
289 } // namespace internal | 290 } // namespace internal |
290 } // namespace v8 | 291 } // namespace v8 |
OLD | NEW |