| 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 V(SpeculativeNumberEqual) \ | 495 V(SpeculativeNumberEqual) \ |
| 496 V(SpeculativeNumberLessThan) \ | 496 V(SpeculativeNumberLessThan) \ |
| 497 V(SpeculativeNumberLessThanOrEqual) | 497 V(SpeculativeNumberLessThanOrEqual) |
| 498 | 498 |
| 499 #define CHECKED_OP_LIST(V) \ | 499 #define CHECKED_OP_LIST(V) \ |
| 500 V(CheckBounds, 2, 1) \ | 500 V(CheckBounds, 2, 1) \ |
| 501 V(CheckHeapObject, 1, 1) \ | 501 V(CheckHeapObject, 1, 1) \ |
| 502 V(CheckIf, 1, 0) \ | 502 V(CheckIf, 1, 0) \ |
| 503 V(CheckInternalizedString, 1, 1) \ | 503 V(CheckInternalizedString, 1, 1) \ |
| 504 V(CheckNumber, 1, 1) \ | 504 V(CheckNumber, 1, 1) \ |
| 505 V(CheckReceiver, 1, 1) \ |
| 505 V(CheckSmi, 1, 1) \ | 506 V(CheckSmi, 1, 1) \ |
| 506 V(CheckString, 1, 1) \ | 507 V(CheckString, 1, 1) \ |
| 507 V(CheckTaggedHole, 1, 1) \ | 508 V(CheckTaggedHole, 1, 1) \ |
| 508 V(CheckedInt32Add, 2, 1) \ | 509 V(CheckedInt32Add, 2, 1) \ |
| 509 V(CheckedInt32Sub, 2, 1) \ | 510 V(CheckedInt32Sub, 2, 1) \ |
| 510 V(CheckedInt32Div, 2, 1) \ | 511 V(CheckedInt32Div, 2, 1) \ |
| 511 V(CheckedInt32Mod, 2, 1) \ | 512 V(CheckedInt32Mod, 2, 1) \ |
| 512 V(CheckedUint32Div, 2, 1) \ | 513 V(CheckedUint32Div, 2, 1) \ |
| 513 V(CheckedUint32Mod, 2, 1) \ | 514 V(CheckedUint32Mod, 2, 1) \ |
| 514 V(CheckedUint32ToInt32, 1, 1) \ | 515 V(CheckedUint32ToInt32, 1, 1) \ |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 Operator::kNoDeopt | Operator::kNoThrow | properties, \ | 905 Operator::kNoDeopt | Operator::kNoThrow | properties, \ |
| 905 #Name, value_input_count, 1, control_input_count, \ | 906 #Name, value_input_count, 1, control_input_count, \ |
| 906 output_count, 1, 0, access); \ | 907 output_count, 1, 0, access); \ |
| 907 } | 908 } |
| 908 ACCESS_OP_LIST(ACCESS) | 909 ACCESS_OP_LIST(ACCESS) |
| 909 #undef ACCESS | 910 #undef ACCESS |
| 910 | 911 |
| 911 } // namespace compiler | 912 } // namespace compiler |
| 912 } // namespace internal | 913 } // namespace internal |
| 913 } // namespace v8 | 914 } // namespace v8 |
| OLD | NEW |