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

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: fix unused variables 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 V(LoadStackPointer) \ 342 V(LoadStackPointer) \
343 V(LoadFramePointer) \ 343 V(LoadFramePointer) \
344 V(LoadParentFramePointer) \ 344 V(LoadParentFramePointer) \
345 V(CheckedLoad) \ 345 V(CheckedLoad) \
346 V(CheckedStore) \ 346 V(CheckedStore) \
347 V(Int32PairAdd) \ 347 V(Int32PairAdd) \
348 V(Int32PairSub) \ 348 V(Int32PairSub) \
349 V(Int32PairMul) \ 349 V(Int32PairMul) \
350 V(Word32PairShl) \ 350 V(Word32PairShl) \
351 V(Word32PairShr) \ 351 V(Word32PairShr) \
352 V(Word32PairSar) 352 V(Word32PairSar) \
353 V(AtomicLoad)
353 354
354 #define VALUE_OP_LIST(V) \ 355 #define VALUE_OP_LIST(V) \
355 COMMON_OP_LIST(V) \ 356 COMMON_OP_LIST(V) \
356 SIMPLIFIED_OP_LIST(V) \ 357 SIMPLIFIED_OP_LIST(V) \
357 MACHINE_OP_LIST(V) \ 358 MACHINE_OP_LIST(V) \
358 JS_OP_LIST(V) 359 JS_OP_LIST(V)
359 360
360 // The combination of all operators at all levels and the common operators. 361 // The combination of all operators at all levels and the common operators.
361 #define ALL_OP_LIST(V) \ 362 #define ALL_OP_LIST(V) \
362 CONTROL_OP_LIST(V) \ 363 CONTROL_OP_LIST(V) \
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 } 429 }
429 }; 430 };
430 431
431 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 432 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
432 433
433 } // namespace compiler 434 } // namespace compiler
434 } // namespace internal 435 } // namespace internal
435 } // namespace v8 436 } // namespace v8
436 437
437 #endif // V8_COMPILER_OPCODES_H_ 438 #endif // V8_COMPILER_OPCODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698