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

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

Issue 2309953002: [turbofan] Introduce dedicated NumberToBoolean operator. (Closed)
Patch Set: Fix unittest. Created 4 years, 3 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/operation-typer.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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 V(NumberLog2) \ 261 V(NumberLog2) \
262 V(NumberLog10) \ 262 V(NumberLog10) \
263 V(NumberRound) \ 263 V(NumberRound) \
264 V(NumberSign) \ 264 V(NumberSign) \
265 V(NumberSin) \ 265 V(NumberSin) \
266 V(NumberSinh) \ 266 V(NumberSinh) \
267 V(NumberSqrt) \ 267 V(NumberSqrt) \
268 V(NumberTan) \ 268 V(NumberTan) \
269 V(NumberTanh) \ 269 V(NumberTanh) \
270 V(NumberTrunc) \ 270 V(NumberTrunc) \
271 V(NumberToBoolean) \
271 V(NumberToInt32) \ 272 V(NumberToInt32) \
272 V(NumberToUint32) \ 273 V(NumberToUint32) \
273 V(NumberSilenceNaN) 274 V(NumberSilenceNaN)
274 275
275 #define SIMPLIFIED_OTHER_OP_LIST(V) \ 276 #define SIMPLIFIED_OTHER_OP_LIST(V) \
276 V(PlainPrimitiveToNumber) \ 277 V(PlainPrimitiveToNumber) \
277 V(PlainPrimitiveToWord32) \ 278 V(PlainPrimitiveToWord32) \
278 V(PlainPrimitiveToFloat64) \ 279 V(PlainPrimitiveToFloat64) \
279 V(BooleanNot) \ 280 V(BooleanNot) \
280 V(StringCharCodeAt) \ 281 V(StringCharCodeAt) \
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 } 754 }
754 }; 755 };
755 756
756 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 757 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
757 758
758 } // namespace compiler 759 } // namespace compiler
759 } // namespace internal 760 } // namespace internal
760 } // namespace v8 761 } // namespace v8
761 762
762 #endif // V8_COMPILER_OPCODES_H_ 763 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/operation-typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698