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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 | 523 |
524 #define CHECKED_OP_LIST(V) \ | 524 #define CHECKED_OP_LIST(V) \ |
525 V(CheckBounds, 2, 1) \ | 525 V(CheckBounds, 2, 1) \ |
526 V(CheckHeapObject, 1, 1) \ | 526 V(CheckHeapObject, 1, 1) \ |
527 V(CheckIf, 1, 0) \ | 527 V(CheckIf, 1, 0) \ |
528 V(CheckInternalizedString, 1, 1) \ | 528 V(CheckInternalizedString, 1, 1) \ |
529 V(CheckNumber, 1, 1) \ | 529 V(CheckNumber, 1, 1) \ |
530 V(CheckReceiver, 1, 1) \ | 530 V(CheckReceiver, 1, 1) \ |
531 V(CheckSmi, 1, 1) \ | 531 V(CheckSmi, 1, 1) \ |
532 V(CheckString, 1, 1) \ | 532 V(CheckString, 1, 1) \ |
| 533 V(CheckSymbol, 1, 1) \ |
533 V(CheckTaggedHole, 1, 1) \ | 534 V(CheckTaggedHole, 1, 1) \ |
534 V(CheckedInt32Add, 2, 1) \ | 535 V(CheckedInt32Add, 2, 1) \ |
535 V(CheckedInt32Sub, 2, 1) \ | 536 V(CheckedInt32Sub, 2, 1) \ |
536 V(CheckedInt32Div, 2, 1) \ | 537 V(CheckedInt32Div, 2, 1) \ |
537 V(CheckedInt32Mod, 2, 1) \ | 538 V(CheckedInt32Mod, 2, 1) \ |
538 V(CheckedUint32Div, 2, 1) \ | 539 V(CheckedUint32Div, 2, 1) \ |
539 V(CheckedUint32Mod, 2, 1) \ | 540 V(CheckedUint32Mod, 2, 1) \ |
540 V(CheckedUint32ToInt32, 1, 1) \ | 541 V(CheckedUint32ToInt32, 1, 1) \ |
541 V(CheckedUint32ToTaggedSigned, 1, 1) \ | 542 V(CheckedUint32ToTaggedSigned, 1, 1) \ |
542 V(CheckedInt32ToTaggedSigned, 1, 1) \ | 543 V(CheckedInt32ToTaggedSigned, 1, 1) \ |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1019 Operator::kNoDeopt | Operator::kNoThrow | properties, \ | 1020 Operator::kNoDeopt | Operator::kNoThrow | properties, \ |
1020 #Name, value_input_count, 1, control_input_count, \ | 1021 #Name, value_input_count, 1, control_input_count, \ |
1021 output_count, 1, 0, access); \ | 1022 output_count, 1, 0, access); \ |
1022 } | 1023 } |
1023 ACCESS_OP_LIST(ACCESS) | 1024 ACCESS_OP_LIST(ACCESS) |
1024 #undef ACCESS | 1025 #undef ACCESS |
1025 | 1026 |
1026 } // namespace compiler | 1027 } // namespace compiler |
1027 } // namespace internal | 1028 } // namespace internal |
1028 } // namespace v8 | 1029 } // namespace v8 |
OLD | NEW |