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

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

Issue 1971163002: [turbofan] Fix optimized lowering of Math.imul. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix unittests. Reorder as pointed out by Michi. Created 4 years, 7 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/js-builtin-reducer.cc ('k') | src/compiler/representation-change.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_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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 V(NumberSubtract) \ 179 V(NumberSubtract) \
180 V(NumberMultiply) \ 180 V(NumberMultiply) \
181 V(NumberDivide) \ 181 V(NumberDivide) \
182 V(NumberModulus) \ 182 V(NumberModulus) \
183 V(NumberBitwiseOr) \ 183 V(NumberBitwiseOr) \
184 V(NumberBitwiseXor) \ 184 V(NumberBitwiseXor) \
185 V(NumberBitwiseAnd) \ 185 V(NumberBitwiseAnd) \
186 V(NumberShiftLeft) \ 186 V(NumberShiftLeft) \
187 V(NumberShiftRight) \ 187 V(NumberShiftRight) \
188 V(NumberShiftRightLogical) \ 188 V(NumberShiftRightLogical) \
189 V(NumberImul) \
189 V(NumberClz32) \ 190 V(NumberClz32) \
190 V(NumberCeil) \ 191 V(NumberCeil) \
191 V(NumberFloor) \ 192 V(NumberFloor) \
192 V(NumberRound) \ 193 V(NumberRound) \
193 V(NumberTrunc) \ 194 V(NumberTrunc) \
194 V(NumberToInt32) \ 195 V(NumberToInt32) \
195 V(NumberToUint32) \ 196 V(NumberToUint32) \
196 V(NumberIsHoleNaN) \ 197 V(NumberIsHoleNaN) \
197 V(StringToNumber) \ 198 V(StringToNumber) \
198 V(ChangeTaggedSignedToInt32) \ 199 V(ChangeTaggedSignedToInt32) \
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 } 623 }
623 }; 624 };
624 625
625 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 626 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
626 627
627 } // namespace compiler 628 } // namespace compiler
628 } // namespace internal 629 } // namespace internal
629 } // namespace v8 630 } // namespace v8
630 631
631 #endif // V8_COMPILER_OPCODES_H_ 632 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/representation-change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698