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

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

Issue 2802113003: [turbofan] Introduce a SpeculativeToNumber operator. (Closed)
Patch Set: Paint it green! Created 3 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/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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 352
353 const Operator* StringEqual(); 353 const Operator* StringEqual();
354 const Operator* StringLessThan(); 354 const Operator* StringLessThan();
355 const Operator* StringLessThanOrEqual(); 355 const Operator* StringLessThanOrEqual();
356 const Operator* StringCharAt(); 356 const Operator* StringCharAt();
357 const Operator* StringCharCodeAt(); 357 const Operator* StringCharCodeAt();
358 const Operator* StringFromCharCode(); 358 const Operator* StringFromCharCode();
359 const Operator* StringFromCodePoint(UnicodeEncoding encoding); 359 const Operator* StringFromCodePoint(UnicodeEncoding encoding);
360 const Operator* StringIndexOf(); 360 const Operator* StringIndexOf();
361 361
362 const Operator* SpeculativeToNumber(NumberOperationHint hint);
363
362 const Operator* PlainPrimitiveToNumber(); 364 const Operator* PlainPrimitiveToNumber();
363 const Operator* PlainPrimitiveToWord32(); 365 const Operator* PlainPrimitiveToWord32();
364 const Operator* PlainPrimitiveToFloat64(); 366 const Operator* PlainPrimitiveToFloat64();
365 367
366 const Operator* ChangeTaggedSignedToInt32(); 368 const Operator* ChangeTaggedSignedToInt32();
367 const Operator* ChangeTaggedToInt32(); 369 const Operator* ChangeTaggedToInt32();
368 const Operator* ChangeTaggedToUint32(); 370 const Operator* ChangeTaggedToUint32();
369 const Operator* ChangeTaggedToFloat64(); 371 const Operator* ChangeTaggedToFloat64();
370 const Operator* ChangeTaggedToTaggedSigned(); 372 const Operator* ChangeTaggedToTaggedSigned();
371 const Operator* ChangeInt31ToTaggedSigned(); 373 const Operator* ChangeInt31ToTaggedSigned();
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 Zone* const zone_; 474 Zone* const zone_;
473 475
474 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 476 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
475 }; 477 };
476 478
477 } // namespace compiler 479 } // namespace compiler
478 } // namespace internal 480 } // namespace internal
479 } // namespace v8 481 } // namespace v8
480 482
481 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 483 #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