| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_ | 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_ |
| 6 #define V8_COMPILER_MACHINE_OPERATOR_H_ | 6 #define V8_COMPILER_MACHINE_OPERATOR_H_ |
| 7 | 7 |
| 8 #include "src/base/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
| 9 #include "src/base/flags.h" | 9 #include "src/base/flags.h" |
| 10 #include "src/globals.h" | 10 #include "src/globals.h" |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 const Operator* F32x4RecipSqrtRefine(); | 458 const Operator* F32x4RecipSqrtRefine(); |
| 459 const Operator* F32x4Eq(); | 459 const Operator* F32x4Eq(); |
| 460 const Operator* F32x4Ne(); | 460 const Operator* F32x4Ne(); |
| 461 const Operator* F32x4Lt(); | 461 const Operator* F32x4Lt(); |
| 462 const Operator* F32x4Le(); | 462 const Operator* F32x4Le(); |
| 463 | 463 |
| 464 const Operator* I32x4Splat(); | 464 const Operator* I32x4Splat(); |
| 465 const Operator* I32x4ExtractLane(int32_t); | 465 const Operator* I32x4ExtractLane(int32_t); |
| 466 const Operator* I32x4ReplaceLane(int32_t); | 466 const Operator* I32x4ReplaceLane(int32_t); |
| 467 const Operator* I32x4SConvertF32x4(); | 467 const Operator* I32x4SConvertF32x4(); |
| 468 const Operator* I32x4SConvertI16x8Low(); |
| 469 const Operator* I32x4SConvertI16x8High(); |
| 468 const Operator* I32x4Neg(); | 470 const Operator* I32x4Neg(); |
| 469 const Operator* I32x4Shl(int32_t); | 471 const Operator* I32x4Shl(int32_t); |
| 470 const Operator* I32x4ShrS(int32_t); | 472 const Operator* I32x4ShrS(int32_t); |
| 471 const Operator* I32x4Add(); | 473 const Operator* I32x4Add(); |
| 472 const Operator* I32x4Sub(); | 474 const Operator* I32x4Sub(); |
| 473 const Operator* I32x4Mul(); | 475 const Operator* I32x4Mul(); |
| 474 const Operator* I32x4MinS(); | 476 const Operator* I32x4MinS(); |
| 475 const Operator* I32x4MaxS(); | 477 const Operator* I32x4MaxS(); |
| 476 const Operator* I32x4Eq(); | 478 const Operator* I32x4Eq(); |
| 477 const Operator* I32x4Ne(); | 479 const Operator* I32x4Ne(); |
| 478 const Operator* I32x4LtS(); | 480 const Operator* I32x4LtS(); |
| 479 const Operator* I32x4LeS(); | 481 const Operator* I32x4LeS(); |
| 480 | 482 |
| 481 const Operator* I32x4UConvertF32x4(); | 483 const Operator* I32x4UConvertF32x4(); |
| 484 const Operator* I32x4UConvertI16x8Low(); |
| 485 const Operator* I32x4UConvertI16x8High(); |
| 482 const Operator* I32x4ShrU(int32_t); | 486 const Operator* I32x4ShrU(int32_t); |
| 483 const Operator* I32x4MinU(); | 487 const Operator* I32x4MinU(); |
| 484 const Operator* I32x4MaxU(); | 488 const Operator* I32x4MaxU(); |
| 485 const Operator* I32x4LtU(); | 489 const Operator* I32x4LtU(); |
| 486 const Operator* I32x4LeU(); | 490 const Operator* I32x4LeU(); |
| 487 | 491 |
| 488 const Operator* I16x8Splat(); | 492 const Operator* I16x8Splat(); |
| 489 const Operator* I16x8ExtractLane(int32_t); | 493 const Operator* I16x8ExtractLane(int32_t); |
| 490 const Operator* I16x8ReplaceLane(int32_t); | 494 const Operator* I16x8ReplaceLane(int32_t); |
| 495 const Operator* I16x8SConvertI8x16Low(); |
| 496 const Operator* I16x8SConvertI8x16High(); |
| 491 const Operator* I16x8Neg(); | 497 const Operator* I16x8Neg(); |
| 492 const Operator* I16x8Shl(int32_t); | 498 const Operator* I16x8Shl(int32_t); |
| 493 const Operator* I16x8ShrS(int32_t); | 499 const Operator* I16x8ShrS(int32_t); |
| 500 const Operator* I16x8SConvertI32x4(); |
| 494 const Operator* I16x8Add(); | 501 const Operator* I16x8Add(); |
| 495 const Operator* I16x8AddSaturateS(); | 502 const Operator* I16x8AddSaturateS(); |
| 496 const Operator* I16x8Sub(); | 503 const Operator* I16x8Sub(); |
| 497 const Operator* I16x8SubSaturateS(); | 504 const Operator* I16x8SubSaturateS(); |
| 498 const Operator* I16x8Mul(); | 505 const Operator* I16x8Mul(); |
| 499 const Operator* I16x8MinS(); | 506 const Operator* I16x8MinS(); |
| 500 const Operator* I16x8MaxS(); | 507 const Operator* I16x8MaxS(); |
| 501 const Operator* I16x8Eq(); | 508 const Operator* I16x8Eq(); |
| 502 const Operator* I16x8Ne(); | 509 const Operator* I16x8Ne(); |
| 503 const Operator* I16x8LtS(); | 510 const Operator* I16x8LtS(); |
| 504 const Operator* I16x8LeS(); | 511 const Operator* I16x8LeS(); |
| 505 | 512 |
| 513 const Operator* I16x8UConvertI8x16Low(); |
| 514 const Operator* I16x8UConvertI8x16High(); |
| 506 const Operator* I16x8ShrU(int32_t); | 515 const Operator* I16x8ShrU(int32_t); |
| 516 const Operator* I16x8UConvertI32x4(); |
| 507 const Operator* I16x8AddSaturateU(); | 517 const Operator* I16x8AddSaturateU(); |
| 508 const Operator* I16x8SubSaturateU(); | 518 const Operator* I16x8SubSaturateU(); |
| 509 const Operator* I16x8MinU(); | 519 const Operator* I16x8MinU(); |
| 510 const Operator* I16x8MaxU(); | 520 const Operator* I16x8MaxU(); |
| 511 const Operator* I16x8LtU(); | 521 const Operator* I16x8LtU(); |
| 512 const Operator* I16x8LeU(); | 522 const Operator* I16x8LeU(); |
| 513 | 523 |
| 514 const Operator* I8x16Splat(); | 524 const Operator* I8x16Splat(); |
| 515 const Operator* I8x16ExtractLane(int32_t); | 525 const Operator* I8x16ExtractLane(int32_t); |
| 516 const Operator* I8x16ReplaceLane(int32_t); | 526 const Operator* I8x16ReplaceLane(int32_t); |
| 517 const Operator* I8x16Neg(); | 527 const Operator* I8x16Neg(); |
| 518 const Operator* I8x16Shl(int32_t); | 528 const Operator* I8x16Shl(int32_t); |
| 519 const Operator* I8x16ShrS(int32_t); | 529 const Operator* I8x16ShrS(int32_t); |
| 530 const Operator* I8x16SConvertI16x8(); |
| 520 const Operator* I8x16Add(); | 531 const Operator* I8x16Add(); |
| 521 const Operator* I8x16AddSaturateS(); | 532 const Operator* I8x16AddSaturateS(); |
| 522 const Operator* I8x16Sub(); | 533 const Operator* I8x16Sub(); |
| 523 const Operator* I8x16SubSaturateS(); | 534 const Operator* I8x16SubSaturateS(); |
| 524 const Operator* I8x16Mul(); | 535 const Operator* I8x16Mul(); |
| 525 const Operator* I8x16MinS(); | 536 const Operator* I8x16MinS(); |
| 526 const Operator* I8x16MaxS(); | 537 const Operator* I8x16MaxS(); |
| 527 const Operator* I8x16Eq(); | 538 const Operator* I8x16Eq(); |
| 528 const Operator* I8x16Ne(); | 539 const Operator* I8x16Ne(); |
| 529 const Operator* I8x16LtS(); | 540 const Operator* I8x16LtS(); |
| 530 const Operator* I8x16LeS(); | 541 const Operator* I8x16LeS(); |
| 531 | 542 |
| 532 const Operator* I8x16ShrU(int32_t); | 543 const Operator* I8x16ShrU(int32_t); |
| 544 const Operator* I8x16UConvertI16x8(); |
| 533 const Operator* I8x16AddSaturateU(); | 545 const Operator* I8x16AddSaturateU(); |
| 534 const Operator* I8x16SubSaturateU(); | 546 const Operator* I8x16SubSaturateU(); |
| 535 const Operator* I8x16MinU(); | 547 const Operator* I8x16MinU(); |
| 536 const Operator* I8x16MaxU(); | 548 const Operator* I8x16MaxU(); |
| 537 const Operator* I8x16LtU(); | 549 const Operator* I8x16LtU(); |
| 538 const Operator* I8x16LeU(); | 550 const Operator* I8x16LeU(); |
| 539 | 551 |
| 540 const Operator* S128Load(); | 552 const Operator* S128Load(); |
| 541 const Operator* S128Store(); | 553 const Operator* S128Store(); |
| 542 | 554 |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 }; | 686 }; |
| 675 | 687 |
| 676 | 688 |
| 677 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 689 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
| 678 | 690 |
| 679 } // namespace compiler | 691 } // namespace compiler |
| 680 } // namespace internal | 692 } // namespace internal |
| 681 } // namespace v8 | 693 } // namespace v8 |
| 682 | 694 |
| 683 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 695 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
| OLD | NEW |