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

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

Issue 1938213002: [Atomics] Make Atomics.store a builtin using TF (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: merge again Created 4 years, 7 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 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 V(LoadFramePointer) \ 350 V(LoadFramePointer) \
351 V(LoadParentFramePointer) \ 351 V(LoadParentFramePointer) \
352 V(CheckedLoad) \ 352 V(CheckedLoad) \
353 V(CheckedStore) \ 353 V(CheckedStore) \
354 V(Int32PairAdd) \ 354 V(Int32PairAdd) \
355 V(Int32PairSub) \ 355 V(Int32PairSub) \
356 V(Int32PairMul) \ 356 V(Int32PairMul) \
357 V(Word32PairShl) \ 357 V(Word32PairShl) \
358 V(Word32PairShr) \ 358 V(Word32PairShr) \
359 V(Word32PairSar) \ 359 V(Word32PairSar) \
360 V(AtomicLoad) 360 V(AtomicLoad) \
361 V(AtomicStore)
361 362
362 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \ 363 #define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \
363 V(CreateFloat32x4) \ 364 V(CreateFloat32x4) \
364 V(Float32x4ReplaceLane) \ 365 V(Float32x4ReplaceLane) \
365 V(Float32x4Abs) \ 366 V(Float32x4Abs) \
366 V(Float32x4Neg) \ 367 V(Float32x4Neg) \
367 V(Float32x4Sqrt) \ 368 V(Float32x4Sqrt) \
368 V(Float32x4RecipApprox) \ 369 V(Float32x4RecipApprox) \
369 V(Float32x4RecipSqrtApprox) \ 370 V(Float32x4RecipSqrtApprox) \
370 V(Float32x4Add) \ 371 V(Float32x4Add) \
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 } 621 }
621 }; 622 };
622 623
623 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 624 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
624 625
625 } // namespace compiler 626 } // namespace compiler
626 } // namespace internal 627 } // namespace internal
627 } // namespace v8 628 } // namespace v8
628 629
629 #endif // V8_COMPILER_OPCODES_H_ 630 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698