OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/simplified-operator.h" | 5 #include "src/compiler/simplified-operator.h" |
6 | 6 |
7 #include "src/base/lazy-instance.h" | 7 #include "src/base/lazy-instance.h" |
8 #include "src/compiler/opcodes.h" | 8 #include "src/compiler/opcodes.h" |
9 #include "src/compiler/operator.h" | 9 #include "src/compiler/operator.h" |
10 #include "src/compiler/types.h" | 10 #include "src/compiler/types.h" |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 V(NumberSign, Operator::kNoProperties, 1, 0) \ | 386 V(NumberSign, Operator::kNoProperties, 1, 0) \ |
387 V(NumberSin, Operator::kNoProperties, 1, 0) \ | 387 V(NumberSin, Operator::kNoProperties, 1, 0) \ |
388 V(NumberSinh, Operator::kNoProperties, 1, 0) \ | 388 V(NumberSinh, Operator::kNoProperties, 1, 0) \ |
389 V(NumberSqrt, Operator::kNoProperties, 1, 0) \ | 389 V(NumberSqrt, Operator::kNoProperties, 1, 0) \ |
390 V(NumberTan, Operator::kNoProperties, 1, 0) \ | 390 V(NumberTan, Operator::kNoProperties, 1, 0) \ |
391 V(NumberTanh, Operator::kNoProperties, 1, 0) \ | 391 V(NumberTanh, Operator::kNoProperties, 1, 0) \ |
392 V(NumberTrunc, Operator::kNoProperties, 1, 0) \ | 392 V(NumberTrunc, Operator::kNoProperties, 1, 0) \ |
393 V(NumberToBoolean, Operator::kNoProperties, 1, 0) \ | 393 V(NumberToBoolean, Operator::kNoProperties, 1, 0) \ |
394 V(NumberToInt32, Operator::kNoProperties, 1, 0) \ | 394 V(NumberToInt32, Operator::kNoProperties, 1, 0) \ |
395 V(NumberToUint32, Operator::kNoProperties, 1, 0) \ | 395 V(NumberToUint32, Operator::kNoProperties, 1, 0) \ |
| 396 V(NumberToUint8Clamped, Operator::kNoProperties, 1, 0) \ |
396 V(NumberSilenceNaN, Operator::kNoProperties, 1, 0) \ | 397 V(NumberSilenceNaN, Operator::kNoProperties, 1, 0) \ |
397 V(StringCharCodeAt, Operator::kNoProperties, 2, 1) \ | 398 V(StringCharCodeAt, Operator::kNoProperties, 2, 1) \ |
398 V(StringFromCharCode, Operator::kNoProperties, 1, 0) \ | 399 V(StringFromCharCode, Operator::kNoProperties, 1, 0) \ |
399 V(PlainPrimitiveToNumber, Operator::kNoProperties, 1, 0) \ | 400 V(PlainPrimitiveToNumber, Operator::kNoProperties, 1, 0) \ |
400 V(PlainPrimitiveToWord32, Operator::kNoProperties, 1, 0) \ | 401 V(PlainPrimitiveToWord32, Operator::kNoProperties, 1, 0) \ |
401 V(PlainPrimitiveToFloat64, Operator::kNoProperties, 1, 0) \ | 402 V(PlainPrimitiveToFloat64, Operator::kNoProperties, 1, 0) \ |
402 V(ChangeTaggedSignedToInt32, Operator::kNoProperties, 1, 0) \ | 403 V(ChangeTaggedSignedToInt32, Operator::kNoProperties, 1, 0) \ |
403 V(ChangeTaggedToInt32, Operator::kNoProperties, 1, 0) \ | 404 V(ChangeTaggedToInt32, Operator::kNoProperties, 1, 0) \ |
404 V(ChangeTaggedToUint32, Operator::kNoProperties, 1, 0) \ | 405 V(ChangeTaggedToUint32, Operator::kNoProperties, 1, 0) \ |
405 V(ChangeTaggedToFloat64, Operator::kNoProperties, 1, 0) \ | 406 V(ChangeTaggedToFloat64, Operator::kNoProperties, 1, 0) \ |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 Operator::kNoDeopt | Operator::kNoThrow | properties, \ | 820 Operator::kNoDeopt | Operator::kNoThrow | properties, \ |
820 #Name, value_input_count, 1, control_input_count, \ | 821 #Name, value_input_count, 1, control_input_count, \ |
821 output_count, 1, 0, access); \ | 822 output_count, 1, 0, access); \ |
822 } | 823 } |
823 ACCESS_OP_LIST(ACCESS) | 824 ACCESS_OP_LIST(ACCESS) |
824 #undef ACCESS | 825 #undef ACCESS |
825 | 826 |
826 } // namespace compiler | 827 } // namespace compiler |
827 } // namespace internal | 828 } // namespace internal |
828 } // namespace v8 | 829 } // namespace v8 |
OLD | NEW |