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

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

Issue 2148743004: WIP: wasm oob trap handling experiments (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Undoing spurious changes Created 3 years, 11 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-operator.cc ('k') | src/compiler/verifier.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_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 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 V(CheckedLoad) \ 478 V(CheckedLoad) \
479 V(CheckedStore) \ 479 V(CheckedStore) \
480 V(UnalignedLoad) \ 480 V(UnalignedLoad) \
481 V(UnalignedStore) \ 481 V(UnalignedStore) \
482 V(Int32PairAdd) \ 482 V(Int32PairAdd) \
483 V(Int32PairSub) \ 483 V(Int32PairSub) \
484 V(Int32PairMul) \ 484 V(Int32PairMul) \
485 V(Word32PairShl) \ 485 V(Word32PairShl) \
486 V(Word32PairShr) \ 486 V(Word32PairShr) \
487 V(Word32PairSar) \ 487 V(Word32PairSar) \
488 V(TrapableLoad) \
488 V(AtomicLoad) \ 489 V(AtomicLoad) \
489 V(AtomicStore) \ 490 V(AtomicStore) \
490 V(UnsafePointerAdd) 491 V(UnsafePointerAdd)
491 492
492 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ 493 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \
493 V(CreateFloat32x4) \ 494 V(CreateFloat32x4) \
494 V(Float32x4ReplaceLane) \ 495 V(Float32x4ReplaceLane) \
495 V(Float32x4Abs) \ 496 V(Float32x4Abs) \
496 V(Float32x4Neg) \ 497 V(Float32x4Neg) \
497 V(Float32x4Sqrt) \ 498 V(Float32x4Sqrt) \
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 } 754 }
754 }; 755 };
755 756
756 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 757 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
757 758
758 } // namespace compiler 759 } // namespace compiler
759 } // namespace internal 760 } // namespace internal
760 } // namespace v8 761 } // namespace v8
761 762
762 #endif // V8_COMPILER_OPCODES_H_ 763 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698