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

Side by Side Diff: src/compiler/simplified-operator.h

Issue 2722483003: [turbofan] Introduce dedicated ObjectIsNaN operator. (Closed)
Patch Set: Use GetUpperBound. Add test cases. Created 3 years, 9 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/simplified-lowering.cc ('k') | src/compiler/simplified-operator.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/base/compiler-specific.h" 10 #include "src/base/compiler-specific.h"
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); 406 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode);
407 const Operator* CheckedTaggedToTaggedSigned(); 407 const Operator* CheckedTaggedToTaggedSigned();
408 const Operator* CheckedTaggedToTaggedPointer(); 408 const Operator* CheckedTaggedToTaggedPointer();
409 const Operator* CheckedTruncateTaggedToWord32(); 409 const Operator* CheckedTruncateTaggedToWord32();
410 410
411 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); 411 const Operator* CheckFloat64Hole(CheckFloat64HoleMode);
412 const Operator* CheckTaggedHole(); 412 const Operator* CheckTaggedHole();
413 const Operator* ConvertTaggedHoleToUndefined(); 413 const Operator* ConvertTaggedHoleToUndefined();
414 414
415 const Operator* ObjectIsDetectableCallable(); 415 const Operator* ObjectIsDetectableCallable();
416 const Operator* ObjectIsNaN();
416 const Operator* ObjectIsNonCallable(); 417 const Operator* ObjectIsNonCallable();
417 const Operator* ObjectIsNumber(); 418 const Operator* ObjectIsNumber();
418 const Operator* ObjectIsReceiver(); 419 const Operator* ObjectIsReceiver();
419 const Operator* ObjectIsSmi(); 420 const Operator* ObjectIsSmi();
420 const Operator* ObjectIsString(); 421 const Operator* ObjectIsString();
421 const Operator* ObjectIsUndetectable(); 422 const Operator* ObjectIsUndetectable();
422 423
423 const Operator* ArgumentsFrame(); 424 const Operator* ArgumentsFrame();
424 const Operator* ArgumentsLength(int formal_parameter_count, 425 const Operator* ArgumentsLength(int formal_parameter_count,
425 bool is_rest_length); 426 bool is_rest_length);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 Zone* const zone_; 470 Zone* const zone_;
470 471
471 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 472 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
472 }; 473 };
473 474
474 } // namespace compiler 475 } // namespace compiler
475 } // namespace internal 476 } // namespace internal
476 } // namespace v8 477 } // namespace v8
477 478
478 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 479 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698