| 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/types.h" | 10 #include "src/types.h" |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 V(SpeculativeNumberSubtract) \ | 361 V(SpeculativeNumberSubtract) \ |
| 362 V(SpeculativeNumberDivide) \ | 362 V(SpeculativeNumberDivide) \ |
| 363 V(SpeculativeNumberMultiply) \ | 363 V(SpeculativeNumberMultiply) \ |
| 364 V(SpeculativeNumberModulus) \ | 364 V(SpeculativeNumberModulus) \ |
| 365 V(SpeculativeNumberShiftLeft) | 365 V(SpeculativeNumberShiftLeft) |
| 366 | 366 |
| 367 #define CHECKED_OP_LIST(V) \ | 367 #define CHECKED_OP_LIST(V) \ |
| 368 V(CheckBounds, 2, 1) \ | 368 V(CheckBounds, 2, 1) \ |
| 369 V(CheckIf, 1, 0) \ | 369 V(CheckIf, 1, 0) \ |
| 370 V(CheckNumber, 1, 1) \ | 370 V(CheckNumber, 1, 1) \ |
| 371 V(CheckString, 1, 1) \ |
| 371 V(CheckTaggedPointer, 1, 1) \ | 372 V(CheckTaggedPointer, 1, 1) \ |
| 372 V(CheckTaggedSigned, 1, 1) \ | 373 V(CheckTaggedSigned, 1, 1) \ |
| 373 V(CheckedInt32Add, 2, 1) \ | 374 V(CheckedInt32Add, 2, 1) \ |
| 374 V(CheckedInt32Sub, 2, 1) \ | 375 V(CheckedInt32Sub, 2, 1) \ |
| 375 V(CheckedInt32Div, 2, 1) \ | 376 V(CheckedInt32Div, 2, 1) \ |
| 376 V(CheckedInt32Mod, 2, 1) \ | 377 V(CheckedInt32Mod, 2, 1) \ |
| 377 V(CheckedUint32Div, 2, 1) \ | 378 V(CheckedUint32Div, 2, 1) \ |
| 378 V(CheckedUint32Mod, 2, 1) \ | 379 V(CheckedUint32Mod, 2, 1) \ |
| 379 V(CheckedUint32ToInt32, 1, 1) \ | 380 V(CheckedUint32ToInt32, 1, 1) \ |
| 380 V(CheckedFloat64ToInt32, 1, 1) \ | 381 V(CheckedFloat64ToInt32, 1, 1) \ |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 Operator::kNoDeopt | Operator::kNoThrow | properties, \ | 634 Operator::kNoDeopt | Operator::kNoThrow | properties, \ |
| 634 #Name, value_input_count, 1, control_input_count, \ | 635 #Name, value_input_count, 1, control_input_count, \ |
| 635 output_count, 1, 0, access); \ | 636 output_count, 1, 0, access); \ |
| 636 } | 637 } |
| 637 ACCESS_OP_LIST(ACCESS) | 638 ACCESS_OP_LIST(ACCESS) |
| 638 #undef ACCESS | 639 #undef ACCESS |
| 639 | 640 |
| 640 } // namespace compiler | 641 } // namespace compiler |
| 641 } // namespace internal | 642 } // namespace internal |
| 642 } // namespace v8 | 643 } // namespace v8 |
| OLD | NEW |