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

Side by Side Diff: src/compiler/machine-operator.h

Issue 1768233002: [wasm] Int64Lowering of I64ShrU and I64ShrS on ia32. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. 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/int64-lowering.cc ('k') | src/compiler/machine-operator.cc » ('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_MACHINE_OPERATOR_H_ 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_
6 #define V8_COMPILER_MACHINE_OPERATOR_H_ 6 #define V8_COMPILER_MACHINE_OPERATOR_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/machine-type.h" 9 #include "src/machine-type.h"
10 10
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 const Operator* Word64Xor(); 173 const Operator* Word64Xor();
174 const Operator* Word64Shl(); 174 const Operator* Word64Shl();
175 const Operator* Word64Shr(); 175 const Operator* Word64Shr();
176 const Operator* Word64Sar(); 176 const Operator* Word64Sar();
177 const Operator* Word64Ror(); 177 const Operator* Word64Ror();
178 const Operator* Word64Clz(); 178 const Operator* Word64Clz();
179 const OptionalOperator Word64Ctz(); 179 const OptionalOperator Word64Ctz();
180 const Operator* Word64Equal(); 180 const Operator* Word64Equal();
181 181
182 const Operator* Word32PairShl(); 182 const Operator* Word32PairShl();
183 const Operator* Word32PairShr();
184 const Operator* Word32PairSar();
183 185
184 const Operator* Int32Add(); 186 const Operator* Int32Add();
185 const Operator* Int32AddWithOverflow(); 187 const Operator* Int32AddWithOverflow();
186 const Operator* Int32Sub(); 188 const Operator* Int32Sub();
187 const Operator* Int32SubWithOverflow(); 189 const Operator* Int32SubWithOverflow();
188 const Operator* Int32Mul(); 190 const Operator* Int32Mul();
189 const Operator* Int32MulHigh(); 191 const Operator* Int32MulHigh();
190 const Operator* Int32Div(); 192 const Operator* Int32Div();
191 const Operator* Int32Mod(); 193 const Operator* Int32Mod();
192 const Operator* Int32LessThan(); 194 const Operator* Int32LessThan();
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 }; 372 };
371 373
372 374
373 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) 375 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags)
374 376
375 } // namespace compiler 377 } // namespace compiler
376 } // namespace internal 378 } // namespace internal
377 } // namespace v8 379 } // namespace v8
378 380
379 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ 381 #endif // V8_COMPILER_MACHINE_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/int64-lowering.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698