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

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

Issue 2623633003: [Atomics] Make Atomics.exchange a builtin using TF (Closed)
Patch Set: remove 0 extend for arm Created 3 years, 9 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
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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 V(Int32PairAdd) \ 543 V(Int32PairAdd) \
544 V(Int32PairSub) \ 544 V(Int32PairSub) \
545 V(Int32PairMul) \ 545 V(Int32PairMul) \
546 V(Word32PairShl) \ 546 V(Word32PairShl) \
547 V(Word32PairShr) \ 547 V(Word32PairShr) \
548 V(Word32PairSar) \ 548 V(Word32PairSar) \
549 V(ProtectedLoad) \ 549 V(ProtectedLoad) \
550 V(ProtectedStore) \ 550 V(ProtectedStore) \
551 V(AtomicLoad) \ 551 V(AtomicLoad) \
552 V(AtomicStore) \ 552 V(AtomicStore) \
553 V(AtomicExchange) \
553 V(UnsafePointerAdd) 554 V(UnsafePointerAdd)
554 555
555 #define MACHINE_SIMD_OP_LIST(V) \ 556 #define MACHINE_SIMD_OP_LIST(V) \
556 V(Float32x4Splat) \ 557 V(Float32x4Splat) \
557 V(Float32x4ExtractLane) \ 558 V(Float32x4ExtractLane) \
558 V(Float32x4ReplaceLane) \ 559 V(Float32x4ReplaceLane) \
559 V(Float32x4Abs) \ 560 V(Float32x4Abs) \
560 V(Float32x4Neg) \ 561 V(Float32x4Neg) \
561 V(Float32x4Sqrt) \ 562 V(Float32x4Sqrt) \
562 V(Float32x4RecipApprox) \ 563 V(Float32x4RecipApprox) \
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 } 789 }
789 }; 790 };
790 791
791 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
792 793
793 } // namespace compiler 794 } // namespace compiler
794 } // namespace internal 795 } // namespace internal
795 } // namespace v8 796 } // namespace v8
796 797
797 #endif // V8_COMPILER_OPCODES_H_ 798 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698