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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 #define SPECULATIVE_NUMBER_BINOP_LIST(V) \ | 436 #define SPECULATIVE_NUMBER_BINOP_LIST(V) \ |
437 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ | 437 SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ |
438 V(SpeculativeNumberEqual) \ | 438 V(SpeculativeNumberEqual) \ |
439 V(SpeculativeNumberLessThan) \ | 439 V(SpeculativeNumberLessThan) \ |
440 V(SpeculativeNumberLessThanOrEqual) | 440 V(SpeculativeNumberLessThanOrEqual) |
441 | 441 |
442 #define CHECKED_OP_LIST(V) \ | 442 #define CHECKED_OP_LIST(V) \ |
443 V(CheckBounds, 2, 1) \ | 443 V(CheckBounds, 2, 1) \ |
444 V(CheckHeapObject, 1, 1) \ | 444 V(CheckHeapObject, 1, 1) \ |
445 V(CheckIf, 1, 0) \ | 445 V(CheckIf, 1, 0) \ |
| 446 V(CheckInternalizedString, 1, 1) \ |
446 V(CheckNumber, 1, 1) \ | 447 V(CheckNumber, 1, 1) \ |
447 V(CheckSmi, 1, 1) \ | 448 V(CheckSmi, 1, 1) \ |
448 V(CheckString, 1, 1) \ | 449 V(CheckString, 1, 1) \ |
449 V(CheckTaggedHole, 1, 1) \ | 450 V(CheckTaggedHole, 1, 1) \ |
450 V(CheckedInt32Add, 2, 1) \ | 451 V(CheckedInt32Add, 2, 1) \ |
451 V(CheckedInt32Sub, 2, 1) \ | 452 V(CheckedInt32Sub, 2, 1) \ |
452 V(CheckedInt32Div, 2, 1) \ | 453 V(CheckedInt32Div, 2, 1) \ |
453 V(CheckedInt32Mod, 2, 1) \ | 454 V(CheckedInt32Mod, 2, 1) \ |
454 V(CheckedUint32Div, 2, 1) \ | 455 V(CheckedUint32Div, 2, 1) \ |
455 V(CheckedUint32Mod, 2, 1) \ | 456 V(CheckedUint32Mod, 2, 1) \ |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 Operator::kNoDeopt | Operator::kNoThrow | properties, \ | 848 Operator::kNoDeopt | Operator::kNoThrow | properties, \ |
848 #Name, value_input_count, 1, control_input_count, \ | 849 #Name, value_input_count, 1, control_input_count, \ |
849 output_count, 1, 0, access); \ | 850 output_count, 1, 0, access); \ |
850 } | 851 } |
851 ACCESS_OP_LIST(ACCESS) | 852 ACCESS_OP_LIST(ACCESS) |
852 #undef ACCESS | 853 #undef ACCESS |
853 | 854 |
854 } // namespace compiler | 855 } // namespace compiler |
855 } // namespace internal | 856 } // namespace internal |
856 } // namespace v8 | 857 } // namespace v8 |
OLD | NEW |