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

Side by Side Diff: src/compiler/opcodes.h

Issue 2516413003: [wasm] Add ProtectedStore instruction (Closed)
Patch Set: Merging with master Created 4 years 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
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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 V(CheckedStore) \ 521 V(CheckedStore) \
522 V(UnalignedLoad) \ 522 V(UnalignedLoad) \
523 V(UnalignedStore) \ 523 V(UnalignedStore) \
524 V(Int32PairAdd) \ 524 V(Int32PairAdd) \
525 V(Int32PairSub) \ 525 V(Int32PairSub) \
526 V(Int32PairMul) \ 526 V(Int32PairMul) \
527 V(Word32PairShl) \ 527 V(Word32PairShl) \
528 V(Word32PairShr) \ 528 V(Word32PairShr) \
529 V(Word32PairSar) \ 529 V(Word32PairSar) \
530 V(ProtectedLoad) \ 530 V(ProtectedLoad) \
531 V(ProtectedStore) \
531 V(AtomicLoad) \ 532 V(AtomicLoad) \
532 V(AtomicStore) \ 533 V(AtomicStore) \
533 V(UnsafePointerAdd) 534 V(UnsafePointerAdd)
534 535
535 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ 536 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \
536 V(CreateFloat32x4) \ 537 V(CreateFloat32x4) \
537 V(Float32x4ReplaceLane) \ 538 V(Float32x4ReplaceLane) \
538 V(Float32x4Abs) \ 539 V(Float32x4Abs) \
539 V(Float32x4Neg) \ 540 V(Float32x4Neg) \
540 V(Float32x4Sqrt) \ 541 V(Float32x4Sqrt) \
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 } 797 }
797 }; 798 };
798 799
799 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 800 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
800 801
801 } // namespace compiler 802 } // namespace compiler
802 } // namespace internal 803 } // namespace internal
803 } // namespace v8 804 } // namespace v8
804 805
805 #endif // V8_COMPILER_OPCODES_H_ 806 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/ppc/instruction-selector-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698