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

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

Issue 1756863002: [wasm] Int64Lowering of I64Shl on ia32. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Forgot to turn off the test for arm. Created 4 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
« no previous file with comments | « src/compiler/mips/instruction-selector-mips.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 V(Float32RoundTiesEven) \ 326 V(Float32RoundTiesEven) \
327 V(Float64RoundTiesEven) \ 327 V(Float64RoundTiesEven) \
328 V(Float64ExtractLowWord32) \ 328 V(Float64ExtractLowWord32) \
329 V(Float64ExtractHighWord32) \ 329 V(Float64ExtractHighWord32) \
330 V(Float64InsertLowWord32) \ 330 V(Float64InsertLowWord32) \
331 V(Float64InsertHighWord32) \ 331 V(Float64InsertHighWord32) \
332 V(LoadStackPointer) \ 332 V(LoadStackPointer) \
333 V(LoadFramePointer) \ 333 V(LoadFramePointer) \
334 V(LoadParentFramePointer) \ 334 V(LoadParentFramePointer) \
335 V(CheckedLoad) \ 335 V(CheckedLoad) \
336 V(CheckedStore) 336 V(CheckedStore) \
337 V(Word32PairShl)
337 338
338 #define VALUE_OP_LIST(V) \ 339 #define VALUE_OP_LIST(V) \
339 COMMON_OP_LIST(V) \ 340 COMMON_OP_LIST(V) \
340 SIMPLIFIED_OP_LIST(V) \ 341 SIMPLIFIED_OP_LIST(V) \
341 MACHINE_OP_LIST(V) \ 342 MACHINE_OP_LIST(V) \
342 JS_OP_LIST(V) 343 JS_OP_LIST(V)
343 344
344 // The combination of all operators at all levels and the common operators. 345 // The combination of all operators at all levels and the common operators.
345 #define ALL_OP_LIST(V) \ 346 #define ALL_OP_LIST(V) \
346 CONTROL_OP_LIST(V) \ 347 CONTROL_OP_LIST(V) \
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 } 413 }
413 }; 414 };
414 415
415 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 416 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
416 417
417 } // namespace compiler 418 } // namespace compiler
418 } // namespace internal 419 } // namespace internal
419 } // namespace v8 420 } // namespace v8
420 421
421 #endif // V8_COMPILER_OPCODES_H_ 422 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips/instruction-selector-mips.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698