Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(489)

Side by Side Diff: src/compiler/machine-operator.h

Issue 2804883008: [WASM SIMD] Implement horizontal add for float and integer types. (Closed)
Patch Set: Rebase, reformat. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 const Operator* F32x4Splat(); 437 const Operator* F32x4Splat();
438 const Operator* F32x4ExtractLane(int32_t); 438 const Operator* F32x4ExtractLane(int32_t);
439 const Operator* F32x4ReplaceLane(int32_t); 439 const Operator* F32x4ReplaceLane(int32_t);
440 const Operator* F32x4SConvertI32x4(); 440 const Operator* F32x4SConvertI32x4();
441 const Operator* F32x4UConvertI32x4(); 441 const Operator* F32x4UConvertI32x4();
442 const Operator* F32x4Abs(); 442 const Operator* F32x4Abs();
443 const Operator* F32x4Neg(); 443 const Operator* F32x4Neg();
444 const Operator* F32x4RecipApprox(); 444 const Operator* F32x4RecipApprox();
445 const Operator* F32x4RecipSqrtApprox(); 445 const Operator* F32x4RecipSqrtApprox();
446 const Operator* F32x4Add(); 446 const Operator* F32x4Add();
447 const Operator* F32x4AddHoriz();
447 const Operator* F32x4Sub(); 448 const Operator* F32x4Sub();
448 const Operator* F32x4Mul(); 449 const Operator* F32x4Mul();
449 const Operator* F32x4Div(); 450 const Operator* F32x4Div();
450 const Operator* F32x4Min(); 451 const Operator* F32x4Min();
451 const Operator* F32x4Max(); 452 const Operator* F32x4Max();
452 const Operator* F32x4Eq(); 453 const Operator* F32x4Eq();
453 const Operator* F32x4Ne(); 454 const Operator* F32x4Ne();
454 const Operator* F32x4Lt(); 455 const Operator* F32x4Lt();
455 const Operator* F32x4Le(); 456 const Operator* F32x4Le();
456 457
457 const Operator* I32x4Splat(); 458 const Operator* I32x4Splat();
458 const Operator* I32x4ExtractLane(int32_t); 459 const Operator* I32x4ExtractLane(int32_t);
459 const Operator* I32x4ReplaceLane(int32_t); 460 const Operator* I32x4ReplaceLane(int32_t);
460 const Operator* I32x4SConvertF32x4(); 461 const Operator* I32x4SConvertF32x4();
461 const Operator* I32x4SConvertI16x8Low(); 462 const Operator* I32x4SConvertI16x8Low();
462 const Operator* I32x4SConvertI16x8High(); 463 const Operator* I32x4SConvertI16x8High();
463 const Operator* I32x4Neg(); 464 const Operator* I32x4Neg();
464 const Operator* I32x4Shl(int32_t); 465 const Operator* I32x4Shl(int32_t);
465 const Operator* I32x4ShrS(int32_t); 466 const Operator* I32x4ShrS(int32_t);
466 const Operator* I32x4Add(); 467 const Operator* I32x4Add();
468 const Operator* I32x4AddHoriz();
467 const Operator* I32x4Sub(); 469 const Operator* I32x4Sub();
468 const Operator* I32x4Mul(); 470 const Operator* I32x4Mul();
469 const Operator* I32x4MinS(); 471 const Operator* I32x4MinS();
470 const Operator* I32x4MaxS(); 472 const Operator* I32x4MaxS();
471 const Operator* I32x4Eq(); 473 const Operator* I32x4Eq();
472 const Operator* I32x4Ne(); 474 const Operator* I32x4Ne();
473 const Operator* I32x4LtS(); 475 const Operator* I32x4LtS();
474 const Operator* I32x4LeS(); 476 const Operator* I32x4LeS();
475 477
476 const Operator* I32x4UConvertF32x4(); 478 const Operator* I32x4UConvertF32x4();
477 const Operator* I32x4UConvertI16x8Low(); 479 const Operator* I32x4UConvertI16x8Low();
478 const Operator* I32x4UConvertI16x8High(); 480 const Operator* I32x4UConvertI16x8High();
479 const Operator* I32x4ShrU(int32_t); 481 const Operator* I32x4ShrU(int32_t);
480 const Operator* I32x4MinU(); 482 const Operator* I32x4MinU();
481 const Operator* I32x4MaxU(); 483 const Operator* I32x4MaxU();
482 const Operator* I32x4LtU(); 484 const Operator* I32x4LtU();
483 const Operator* I32x4LeU(); 485 const Operator* I32x4LeU();
484 486
485 const Operator* I16x8Splat(); 487 const Operator* I16x8Splat();
486 const Operator* I16x8ExtractLane(int32_t); 488 const Operator* I16x8ExtractLane(int32_t);
487 const Operator* I16x8ReplaceLane(int32_t); 489 const Operator* I16x8ReplaceLane(int32_t);
488 const Operator* I16x8SConvertI8x16Low(); 490 const Operator* I16x8SConvertI8x16Low();
489 const Operator* I16x8SConvertI8x16High(); 491 const Operator* I16x8SConvertI8x16High();
490 const Operator* I16x8Neg(); 492 const Operator* I16x8Neg();
491 const Operator* I16x8Shl(int32_t); 493 const Operator* I16x8Shl(int32_t);
492 const Operator* I16x8ShrS(int32_t); 494 const Operator* I16x8ShrS(int32_t);
493 const Operator* I16x8SConvertI32x4(); 495 const Operator* I16x8SConvertI32x4();
494 const Operator* I16x8Add(); 496 const Operator* I16x8Add();
495 const Operator* I16x8AddSaturateS(); 497 const Operator* I16x8AddSaturateS();
498 const Operator* I16x8AddHoriz();
496 const Operator* I16x8Sub(); 499 const Operator* I16x8Sub();
497 const Operator* I16x8SubSaturateS(); 500 const Operator* I16x8SubSaturateS();
498 const Operator* I16x8Mul(); 501 const Operator* I16x8Mul();
499 const Operator* I16x8MinS(); 502 const Operator* I16x8MinS();
500 const Operator* I16x8MaxS(); 503 const Operator* I16x8MaxS();
501 const Operator* I16x8Eq(); 504 const Operator* I16x8Eq();
502 const Operator* I16x8Ne(); 505 const Operator* I16x8Ne();
503 const Operator* I16x8LtS(); 506 const Operator* I16x8LtS();
504 const Operator* I16x8LeS(); 507 const Operator* I16x8LeS();
505 508
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 }; 712 };
710 713
711 714
712 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) 715 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags)
713 716
714 } // namespace compiler 717 } // namespace compiler
715 } // namespace internal 718 } // namespace internal
716 } // namespace v8 719 } // namespace v8
717 720
718 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ 721 #endif // V8_COMPILER_MACHINE_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698