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

Side by Side Diff: src/compiler/instruction-codes.h

Issue 2649703002: [Atomics] Make Atomics.compareExchange a builtin using TF (Closed)
Patch Set: rebase and move cmpxchg to builtins-sharedarraybuffer-gen.cc 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 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 #ifndef V8_COMPILER_INSTRUCTION_CODES_H_ 5 #ifndef V8_COMPILER_INSTRUCTION_CODES_H_
6 #define V8_COMPILER_INSTRUCTION_CODES_H_ 6 #define V8_COMPILER_INSTRUCTION_CODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #if V8_TARGET_ARCH_ARM 10 #if V8_TARGET_ARCH_ARM
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 V(AtomicLoadUint16) \ 87 V(AtomicLoadUint16) \
88 V(AtomicLoadWord32) \ 88 V(AtomicLoadWord32) \
89 V(AtomicStoreWord8) \ 89 V(AtomicStoreWord8) \
90 V(AtomicStoreWord16) \ 90 V(AtomicStoreWord16) \
91 V(AtomicStoreWord32) \ 91 V(AtomicStoreWord32) \
92 V(AtomicExchangeInt8) \ 92 V(AtomicExchangeInt8) \
93 V(AtomicExchangeUint8) \ 93 V(AtomicExchangeUint8) \
94 V(AtomicExchangeInt16) \ 94 V(AtomicExchangeInt16) \
95 V(AtomicExchangeUint16) \ 95 V(AtomicExchangeUint16) \
96 V(AtomicExchangeWord32) \ 96 V(AtomicExchangeWord32) \
97 V(AtomicCompareExchangeInt8) \
98 V(AtomicCompareExchangeUint8) \
99 V(AtomicCompareExchangeInt16) \
100 V(AtomicCompareExchangeUint16) \
101 V(AtomicCompareExchangeWord32) \
97 V(Ieee754Float64Acos) \ 102 V(Ieee754Float64Acos) \
98 V(Ieee754Float64Acosh) \ 103 V(Ieee754Float64Acosh) \
99 V(Ieee754Float64Asin) \ 104 V(Ieee754Float64Asin) \
100 V(Ieee754Float64Asinh) \ 105 V(Ieee754Float64Asinh) \
101 V(Ieee754Float64Atan) \ 106 V(Ieee754Float64Atan) \
102 V(Ieee754Float64Atanh) \ 107 V(Ieee754Float64Atanh) \
103 V(Ieee754Float64Atan2) \ 108 V(Ieee754Float64Atan2) \
104 V(Ieee754Float64Cbrt) \ 109 V(Ieee754Float64Cbrt) \
105 V(Ieee754Float64Cos) \ 110 V(Ieee754Float64Cos) \
106 V(Ieee754Float64Cosh) \ 111 V(Ieee754Float64Cosh) \
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 typedef BitField<AddressingMode, 9, 5> AddressingModeField; 220 typedef BitField<AddressingMode, 9, 5> AddressingModeField;
216 typedef BitField<FlagsMode, 14, 3> FlagsModeField; 221 typedef BitField<FlagsMode, 14, 3> FlagsModeField;
217 typedef BitField<FlagsCondition, 17, 5> FlagsConditionField; 222 typedef BitField<FlagsCondition, 17, 5> FlagsConditionField;
218 typedef BitField<int, 22, 10> MiscField; 223 typedef BitField<int, 22, 10> MiscField;
219 224
220 } // namespace compiler 225 } // namespace compiler
221 } // namespace internal 226 } // namespace internal
222 } // namespace v8 227 } // namespace v8
223 228
224 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 229 #endif // V8_COMPILER_INSTRUCTION_CODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698