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

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

Issue 1213803008: [turbofan] Right hand side of shifts needs ToUint32. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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-typed-lowering.cc ('k') | src/compiler/simplified-lowering.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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 164
165 #define SIMPLIFIED_OP_LIST(V) \ 165 #define SIMPLIFIED_OP_LIST(V) \
166 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ 166 SIMPLIFIED_COMPARE_BINOP_LIST(V) \
167 V(BooleanNot) \ 167 V(BooleanNot) \
168 V(BooleanToNumber) \ 168 V(BooleanToNumber) \
169 V(NumberAdd) \ 169 V(NumberAdd) \
170 V(NumberSubtract) \ 170 V(NumberSubtract) \
171 V(NumberMultiply) \ 171 V(NumberMultiply) \
172 V(NumberDivide) \ 172 V(NumberDivide) \
173 V(NumberModulus) \ 173 V(NumberModulus) \
174 V(NumberShiftLeft) \
175 V(NumberShiftRight) \
176 V(NumberShiftRightLogical) \
174 V(NumberToInt32) \ 177 V(NumberToInt32) \
175 V(NumberToUint32) \ 178 V(NumberToUint32) \
176 V(PlainPrimitiveToNumber) \ 179 V(PlainPrimitiveToNumber) \
177 V(ChangeTaggedToInt32) \ 180 V(ChangeTaggedToInt32) \
178 V(ChangeTaggedToUint32) \ 181 V(ChangeTaggedToUint32) \
179 V(ChangeTaggedToFloat64) \ 182 V(ChangeTaggedToFloat64) \
180 V(ChangeInt32ToTagged) \ 183 V(ChangeInt32ToTagged) \
181 V(ChangeUint32ToTagged) \ 184 V(ChangeUint32ToTagged) \
182 V(ChangeFloat64ToTagged) \ 185 V(ChangeFloat64ToTagged) \
183 V(ChangeBoolToBit) \ 186 V(ChangeBoolToBit) \
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 } 362 }
360 }; 363 };
361 364
362 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 365 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
363 366
364 } // namespace compiler 367 } // namespace compiler
365 } // namespace internal 368 } // namespace internal
366 } // namespace v8 369 } // namespace v8
367 370
368 #endif // V8_COMPILER_OPCODES_H_ 371 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698