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

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

Issue 2623633003: [Atomics] Make Atomics.exchange a builtin using TF (Closed)
Patch Set: fix win Created 3 years, 10 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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #include "src/compiler/machine-operator.h" 5 #include "src/compiler/machine-operator.h"
6 6
7 #include "src/base/lazy-instance.h" 7 #include "src/base/lazy-instance.h"
8 #include "src/compiler/opcodes.h" 8 #include "src/compiler/opcodes.h"
9 #include "src/compiler/operator.h" 9 #include "src/compiler/operator.h"
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 int StackSlotSizeOf(Operator const* op) { 73 int StackSlotSizeOf(Operator const* op) {
74 DCHECK_EQ(IrOpcode::kStackSlot, op->opcode()); 74 DCHECK_EQ(IrOpcode::kStackSlot, op->opcode());
75 return OpParameter<int>(op); 75 return OpParameter<int>(op);
76 } 76 }
77 77
78 MachineRepresentation AtomicStoreRepresentationOf(Operator const* op) { 78 MachineRepresentation AtomicStoreRepresentationOf(Operator const* op) {
79 DCHECK_EQ(IrOpcode::kAtomicStore, op->opcode()); 79 DCHECK_EQ(IrOpcode::kAtomicStore, op->opcode());
80 return OpParameter<MachineRepresentation>(op); 80 return OpParameter<MachineRepresentation>(op);
81 } 81 }
82 82
83 MachineType AtomicExchangeRepresentationOf(Operator const* op) {
84 DCHECK_EQ(IrOpcode::kAtomicExchange, op->opcode());
85 return OpParameter<MachineType>(op);
86 }
87
83 #define PURE_BINARY_OP_LIST_32(V) \ 88 #define PURE_BINARY_OP_LIST_32(V) \
84 V(Word32And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ 89 V(Word32And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
85 V(Word32Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ 90 V(Word32Or, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
86 V(Word32Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ 91 V(Word32Xor, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
87 V(Word32Shl, Operator::kNoProperties, 2, 0, 1) \ 92 V(Word32Shl, Operator::kNoProperties, 2, 0, 1) \
88 V(Word32Shr, Operator::kNoProperties, 2, 0, 1) \ 93 V(Word32Shr, Operator::kNoProperties, 2, 0, 1) \
89 V(Word32Sar, Operator::kNoProperties, 2, 0, 1) \ 94 V(Word32Sar, Operator::kNoProperties, 2, 0, 1) \
90 V(Word32Ror, Operator::kNoProperties, 2, 0, 1) \ 95 V(Word32Ror, Operator::kNoProperties, 2, 0, 1) \
91 V(Word32Equal, Operator::kCommutative, 2, 0, 1) \ 96 V(Word32Equal, Operator::kCommutative, 2, 0, 1) \
92 V(Int32Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \ 97 V(Int32Add, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 AtomicStore##Type##Operator() \ 596 AtomicStore##Type##Operator() \
592 : Operator1<MachineRepresentation>( \ 597 : Operator1<MachineRepresentation>( \
593 IrOpcode::kAtomicStore, \ 598 IrOpcode::kAtomicStore, \
594 Operator::kNoDeopt | Operator::kNoRead | Operator::kNoThrow, \ 599 Operator::kNoDeopt | Operator::kNoRead | Operator::kNoThrow, \
595 "AtomicStore", 3, 1, 1, 0, 1, 0, MachineRepresentation::Type) {} \ 600 "AtomicStore", 3, 1, 1, 0, 1, 0, MachineRepresentation::Type) {} \
596 }; \ 601 }; \
597 AtomicStore##Type##Operator kAtomicStore##Type; 602 AtomicStore##Type##Operator kAtomicStore##Type;
598 ATOMIC_REPRESENTATION_LIST(ATOMIC_STORE) 603 ATOMIC_REPRESENTATION_LIST(ATOMIC_STORE)
599 #undef STORE 604 #undef STORE
600 605
606 #define ATOMIC_EXCHANGE(Type) \
607 struct AtomicExchange##Type##Operator : public Operator1<MachineType> { \
608 AtomicExchange##Type##Operator() \
609 : Operator1<MachineType>(IrOpcode::kAtomicExchange, \
610 Operator::kNoDeopt | Operator::kNoThrow, \
611 "AtomicExchange", 3, 1, 1, 1, 1, 0, \
612 MachineType::Type()) {} \
613 }; \
614 AtomicExchange##Type##Operator kAtomicExchange##Type;
615 ATOMIC_TYPE_LIST(ATOMIC_EXCHANGE)
616 #undef ATOMIC_EXCHANGE
617
601 struct DebugBreakOperator : public Operator { 618 struct DebugBreakOperator : public Operator {
602 DebugBreakOperator() 619 DebugBreakOperator()
603 : Operator(IrOpcode::kDebugBreak, Operator::kNoThrow, "DebugBreak", 0, 620 : Operator(IrOpcode::kDebugBreak, Operator::kNoThrow, "DebugBreak", 0,
604 0, 0, 0, 0, 0) {} 621 0, 0, 0, 0, 0) {}
605 }; 622 };
606 DebugBreakOperator kDebugBreak; 623 DebugBreakOperator kDebugBreak;
607 624
608 struct UnsafePointerAddOperator final : public Operator { 625 struct UnsafePointerAddOperator final : public Operator {
609 UnsafePointerAddOperator() 626 UnsafePointerAddOperator()
610 : Operator(IrOpcode::kUnsafePointerAdd, Operator::kKontrol, 627 : Operator(IrOpcode::kUnsafePointerAdd, Operator::kKontrol,
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 #define STORE(kRep) \ 847 #define STORE(kRep) \
831 if (rep == MachineRepresentation::kRep) { \ 848 if (rep == MachineRepresentation::kRep) { \
832 return &cache_.kAtomicStore##kRep; \ 849 return &cache_.kAtomicStore##kRep; \
833 } 850 }
834 ATOMIC_REPRESENTATION_LIST(STORE) 851 ATOMIC_REPRESENTATION_LIST(STORE)
835 #undef STORE 852 #undef STORE
836 UNREACHABLE(); 853 UNREACHABLE();
837 return nullptr; 854 return nullptr;
838 } 855 }
839 856
857 const Operator* MachineOperatorBuilder::AtomicExchange(MachineType rep) {
858 #define EXCHANGE(kRep) \
859 if (rep == MachineType::kRep()) { \
860 return &cache_.kAtomicExchange##kRep; \
861 }
862 ATOMIC_TYPE_LIST(EXCHANGE)
863 #undef EXCHANGE
864 UNREACHABLE();
865 return nullptr;
866 }
867
840 #define SIMD_LANE_OPS(Type, lane_count) \ 868 #define SIMD_LANE_OPS(Type, lane_count) \
841 const Operator* MachineOperatorBuilder::Type##ExtractLane( \ 869 const Operator* MachineOperatorBuilder::Type##ExtractLane( \
842 int32_t lane_index) { \ 870 int32_t lane_index) { \
843 DCHECK(0 <= lane_index && lane_index < lane_count); \ 871 DCHECK(0 <= lane_index && lane_index < lane_count); \
844 return new (zone_) \ 872 return new (zone_) \
845 Operator1<int32_t>(IrOpcode::k##Type##ExtractLane, Operator::kPure, \ 873 Operator1<int32_t>(IrOpcode::k##Type##ExtractLane, Operator::kPure, \
846 "Extract lane", 1, 0, 0, 1, 0, 0, lane_index); \ 874 "Extract lane", 1, 0, 0, 1, 0, 0, lane_index); \
847 } \ 875 } \
848 const Operator* MachineOperatorBuilder::Type##ReplaceLane( \ 876 const Operator* MachineOperatorBuilder::Type##ReplaceLane( \
849 int32_t lane_index) { \ 877 int32_t lane_index) { \
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 return new (zone_) \ 915 return new (zone_) \
888 Operator1<uint32_t>(IrOpcode::kSimd##format##Swizzle, Operator::kPure, \ 916 Operator1<uint32_t>(IrOpcode::kSimd##format##Swizzle, Operator::kPure, \
889 "Swizzle", 2, 0, 0, 1, 0, 0, swizzle); \ 917 "Swizzle", 2, 0, 0, 1, 0, 0, swizzle); \
890 } 918 }
891 SIMD_FORMAT_LIST(SIMD_PERMUTE_OPS) 919 SIMD_FORMAT_LIST(SIMD_PERMUTE_OPS)
892 #undef SIMD_PERMUTE_OPS 920 #undef SIMD_PERMUTE_OPS
893 921
894 } // namespace compiler 922 } // namespace compiler
895 } // namespace internal 923 } // namespace internal
896 } // namespace v8 924 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698