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

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

Issue 2919203002: [WASM] Eliminate SIMD boolean vector types. (Closed)
Patch Set: Restore DCHECKs in AssembleMove/Swap now that we're back to 1 SIMD representation. Created 3 years, 6 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/machine-graph-verifier.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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 const Operator* I8x16GeU(); 568 const Operator* I8x16GeU();
569 569
570 const Operator* S128Load(); 570 const Operator* S128Load();
571 const Operator* S128Store(); 571 const Operator* S128Store();
572 572
573 const Operator* S128Zero(); 573 const Operator* S128Zero();
574 const Operator* S128And(); 574 const Operator* S128And();
575 const Operator* S128Or(); 575 const Operator* S128Or();
576 const Operator* S128Xor(); 576 const Operator* S128Xor();
577 const Operator* S128Not(); 577 const Operator* S128Not();
578 const Operator* S128Select();
578 579
579 const Operator* S32x4Shuffle(uint8_t shuffle[16]); 580 const Operator* S32x4Shuffle(uint8_t shuffle[16]);
580 const Operator* S32x4Select();
581 const Operator* S16x8Shuffle(uint8_t shuffle[16]); 581 const Operator* S16x8Shuffle(uint8_t shuffle[16]);
582 const Operator* S16x8Select();
583 const Operator* S8x16Shuffle(uint8_t shuffle[16]); 582 const Operator* S8x16Shuffle(uint8_t shuffle[16]);
584 const Operator* S8x16Select();
585 583
586 const Operator* S1x4Zero();
587 const Operator* S1x4And();
588 const Operator* S1x4Or();
589 const Operator* S1x4Xor();
590 const Operator* S1x4Not();
591 const Operator* S1x4AnyTrue(); 584 const Operator* S1x4AnyTrue();
592 const Operator* S1x4AllTrue(); 585 const Operator* S1x4AllTrue();
593
594 const Operator* S1x8Zero();
595 const Operator* S1x8And();
596 const Operator* S1x8Or();
597 const Operator* S1x8Xor();
598 const Operator* S1x8Not();
599 const Operator* S1x8AnyTrue(); 586 const Operator* S1x8AnyTrue();
600 const Operator* S1x8AllTrue(); 587 const Operator* S1x8AllTrue();
601
602 const Operator* S1x16Zero();
603 const Operator* S1x16And();
604 const Operator* S1x16Or();
605 const Operator* S1x16Xor();
606 const Operator* S1x16Not();
607 const Operator* S1x16AnyTrue(); 588 const Operator* S1x16AnyTrue();
608 const Operator* S1x16AllTrue(); 589 const Operator* S1x16AllTrue();
609 590
610 // load [base + index] 591 // load [base + index]
611 const Operator* Load(LoadRepresentation rep); 592 const Operator* Load(LoadRepresentation rep);
612 const Operator* ProtectedLoad(LoadRepresentation rep); 593 const Operator* ProtectedLoad(LoadRepresentation rep);
613 594
614 // store [base + index], value 595 // store [base + index], value
615 const Operator* Store(StoreRepresentation rep); 596 const Operator* Store(StoreRepresentation rep);
616 const Operator* ProtectedStore(MachineRepresentation rep); 597 const Operator* ProtectedStore(MachineRepresentation rep);
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 }; 692 };
712 693
713 694
714 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) 695 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags)
715 696
716 } // namespace compiler 697 } // namespace compiler
717 } // namespace internal 698 } // namespace internal
718 } // namespace v8 699 } // namespace v8
719 700
720 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ 701 #endif // V8_COMPILER_MACHINE_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-graph-verifier.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698