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

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

Issue 1891033002: [Atomics] Remove Atomics code stubs; use TF ops (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove s390 code stub Created 4 years, 8 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 V(LoadStackPointer) \ 343 V(LoadStackPointer) \
344 V(LoadFramePointer) \ 344 V(LoadFramePointer) \
345 V(LoadParentFramePointer) \ 345 V(LoadParentFramePointer) \
346 V(CheckedLoad) \ 346 V(CheckedLoad) \
347 V(CheckedStore) \ 347 V(CheckedStore) \
348 V(Int32PairAdd) \ 348 V(Int32PairAdd) \
349 V(Int32PairSub) \ 349 V(Int32PairSub) \
350 V(Int32PairMul) \ 350 V(Int32PairMul) \
351 V(Word32PairShl) \ 351 V(Word32PairShl) \
352 V(Word32PairShr) \ 352 V(Word32PairShr) \
353 V(Word32PairSar) 353 V(Word32PairSar) \
354 V(AtomicLoad)
354 355
355 #define VALUE_OP_LIST(V) \ 356 #define VALUE_OP_LIST(V) \
356 COMMON_OP_LIST(V) \ 357 COMMON_OP_LIST(V) \
357 SIMPLIFIED_OP_LIST(V) \ 358 SIMPLIFIED_OP_LIST(V) \
358 MACHINE_OP_LIST(V) \ 359 MACHINE_OP_LIST(V) \
359 JS_OP_LIST(V) 360 JS_OP_LIST(V)
360 361
361 // The combination of all operators at all levels and the common operators. 362 // The combination of all operators at all levels and the common operators.
362 #define ALL_OP_LIST(V) \ 363 #define ALL_OP_LIST(V) \
363 CONTROL_OP_LIST(V) \ 364 CONTROL_OP_LIST(V) \
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 } 430 }
430 }; 431 };
431 432
432 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 433 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
433 434
434 } // namespace compiler 435 } // namespace compiler
435 } // namespace internal 436 } // namespace internal
436 } // namespace v8 437 } // namespace v8
437 438
438 #endif // V8_COMPILER_OPCODES_H_ 439 #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