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

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

Issue 1890763002: [turbofan] Remove unused PlainPrimitiveToNumber operator. (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-typed-lowering.cc ('k') | src/compiler/simplified-lowering.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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 V(NumberShiftRight) \ 188 V(NumberShiftRight) \
189 V(NumberShiftRightLogical) \ 189 V(NumberShiftRightLogical) \
190 V(NumberClz32) \ 190 V(NumberClz32) \
191 V(NumberCeil) \ 191 V(NumberCeil) \
192 V(NumberFloor) \ 192 V(NumberFloor) \
193 V(NumberRound) \ 193 V(NumberRound) \
194 V(NumberTrunc) \ 194 V(NumberTrunc) \
195 V(NumberToInt32) \ 195 V(NumberToInt32) \
196 V(NumberToUint32) \ 196 V(NumberToUint32) \
197 V(NumberIsHoleNaN) \ 197 V(NumberIsHoleNaN) \
198 V(PlainPrimitiveToNumber) \
199 V(StringToNumber) \ 198 V(StringToNumber) \
200 V(ChangeTaggedToInt32) \ 199 V(ChangeTaggedToInt32) \
201 V(ChangeTaggedToUint32) \ 200 V(ChangeTaggedToUint32) \
202 V(ChangeTaggedToFloat64) \ 201 V(ChangeTaggedToFloat64) \
203 V(ChangeInt32ToTagged) \ 202 V(ChangeInt32ToTagged) \
204 V(ChangeUint32ToTagged) \ 203 V(ChangeUint32ToTagged) \
205 V(ChangeFloat64ToTagged) \ 204 V(ChangeFloat64ToTagged) \
206 V(ChangeBoolToBit) \ 205 V(ChangeBoolToBit) \
207 V(ChangeBitToBool) \ 206 V(ChangeBitToBool) \
208 V(Allocate) \ 207 V(Allocate) \
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 } 428 }
430 }; 429 };
431 430
432 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 431 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
433 432
434 } // namespace compiler 433 } // namespace compiler
435 } // namespace internal 434 } // namespace internal
436 } // namespace v8 435 } // namespace v8
437 436
438 #endif // V8_COMPILER_OPCODES_H_ 437 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698