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

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

Issue 1841993002: [builtins] Make Math.ceil, Math.trunc and Math.round optimizable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « src/compiler/js-builtin-reducer.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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 V(NumberSubtract) \ 176 V(NumberSubtract) \
177 V(NumberMultiply) \ 177 V(NumberMultiply) \
178 V(NumberDivide) \ 178 V(NumberDivide) \
179 V(NumberModulus) \ 179 V(NumberModulus) \
180 V(NumberBitwiseOr) \ 180 V(NumberBitwiseOr) \
181 V(NumberBitwiseXor) \ 181 V(NumberBitwiseXor) \
182 V(NumberBitwiseAnd) \ 182 V(NumberBitwiseAnd) \
183 V(NumberShiftLeft) \ 183 V(NumberShiftLeft) \
184 V(NumberShiftRight) \ 184 V(NumberShiftRight) \
185 V(NumberShiftRightLogical) \ 185 V(NumberShiftRightLogical) \
186 V(NumberCeil) \
186 V(NumberFloor) \ 187 V(NumberFloor) \
188 V(NumberRound) \
189 V(NumberTrunc) \
187 V(NumberToInt32) \ 190 V(NumberToInt32) \
188 V(NumberToUint32) \ 191 V(NumberToUint32) \
189 V(NumberIsHoleNaN) \ 192 V(NumberIsHoleNaN) \
190 V(PlainPrimitiveToNumber) \ 193 V(PlainPrimitiveToNumber) \
191 V(StringToNumber) \ 194 V(StringToNumber) \
192 V(ChangeTaggedToInt32) \ 195 V(ChangeTaggedToInt32) \
193 V(ChangeTaggedToUint32) \ 196 V(ChangeTaggedToUint32) \
194 V(ChangeTaggedToFloat64) \ 197 V(ChangeTaggedToFloat64) \
195 V(ChangeInt32ToTagged) \ 198 V(ChangeInt32ToTagged) \
196 V(ChangeUint32ToTagged) \ 199 V(ChangeUint32ToTagged) \
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 } 422 }
420 }; 423 };
421 424
422 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 425 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
423 426
424 } // namespace compiler 427 } // namespace compiler
425 } // namespace internal 428 } // namespace internal
426 } // namespace v8 429 } // namespace v8
427 430
428 #endif // V8_COMPILER_OPCODES_H_ 431 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698