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

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

Issue 1807273002: [wasm] Int64Lowering of Int64Mul on ia32 and arm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-phi
Patch Set: Rebase 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 V(Float64ExtractHighWord32) \ 331 V(Float64ExtractHighWord32) \
332 V(Float64InsertLowWord32) \ 332 V(Float64InsertLowWord32) \
333 V(Float64InsertHighWord32) \ 333 V(Float64InsertHighWord32) \
334 V(LoadStackPointer) \ 334 V(LoadStackPointer) \
335 V(LoadFramePointer) \ 335 V(LoadFramePointer) \
336 V(LoadParentFramePointer) \ 336 V(LoadParentFramePointer) \
337 V(CheckedLoad) \ 337 V(CheckedLoad) \
338 V(CheckedStore) \ 338 V(CheckedStore) \
339 V(Int32PairAdd) \ 339 V(Int32PairAdd) \
340 V(Int32PairSub) \ 340 V(Int32PairSub) \
341 V(Int32PairMul) \
341 V(Word32PairShl) \ 342 V(Word32PairShl) \
342 V(Word32PairShr) \ 343 V(Word32PairShr) \
343 V(Word32PairSar) 344 V(Word32PairSar)
344 345
345 #define VALUE_OP_LIST(V) \ 346 #define VALUE_OP_LIST(V) \
346 COMMON_OP_LIST(V) \ 347 COMMON_OP_LIST(V) \
347 SIMPLIFIED_OP_LIST(V) \ 348 SIMPLIFIED_OP_LIST(V) \
348 MACHINE_OP_LIST(V) \ 349 MACHINE_OP_LIST(V) \
349 JS_OP_LIST(V) 350 JS_OP_LIST(V)
350 351
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 } 420 }
420 }; 421 };
421 422
422 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 423 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
423 424
424 } // namespace compiler 425 } // namespace compiler
425 } // namespace internal 426 } // namespace internal
426 } // namespace v8 427 } // namespace v8
427 428
428 #endif // V8_COMPILER_OPCODES_H_ 429 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips/instruction-selector-mips.cc ('k') | src/compiler/ppc/instruction-selector-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698