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

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

Issue 2122853002: Implement UnaligedLoad and UnaligedStore turbofan operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Nits. Fixes some errors Created 4 years, 4 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/mips64/instruction-selector-mips64.cc ('k') | src/compiler/pipeline.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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 V(Float64RoundTiesEven) \ 442 V(Float64RoundTiesEven) \
443 V(Float64ExtractLowWord32) \ 443 V(Float64ExtractLowWord32) \
444 V(Float64ExtractHighWord32) \ 444 V(Float64ExtractHighWord32) \
445 V(Float64InsertLowWord32) \ 445 V(Float64InsertLowWord32) \
446 V(Float64InsertHighWord32) \ 446 V(Float64InsertHighWord32) \
447 V(LoadStackPointer) \ 447 V(LoadStackPointer) \
448 V(LoadFramePointer) \ 448 V(LoadFramePointer) \
449 V(LoadParentFramePointer) \ 449 V(LoadParentFramePointer) \
450 V(CheckedLoad) \ 450 V(CheckedLoad) \
451 V(CheckedStore) \ 451 V(CheckedStore) \
452 V(UnalignedLoad) \
453 V(UnalignedStore) \
452 V(Int32PairAdd) \ 454 V(Int32PairAdd) \
453 V(Int32PairSub) \ 455 V(Int32PairSub) \
454 V(Int32PairMul) \ 456 V(Int32PairMul) \
455 V(Word32PairShl) \ 457 V(Word32PairShl) \
456 V(Word32PairShr) \ 458 V(Word32PairShr) \
457 V(Word32PairSar) \ 459 V(Word32PairSar) \
458 V(AtomicLoad) \ 460 V(AtomicLoad) \
459 V(AtomicStore) 461 V(AtomicStore)
460 462
461 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ 463 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
722 } 724 }
723 }; 725 };
724 726
725 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 727 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
726 728
727 } // namespace compiler 729 } // namespace compiler
728 } // namespace internal 730 } // namespace internal
729 } // namespace v8 731 } // namespace v8
730 732
731 #endif // V8_COMPILER_OPCODES_H_ 733 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698