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

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

Issue 2815283002: [turbofan] Let ChangeFloat64ToTagged canonicalize to Smi if possible. (Closed)
Patch Set: 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/representation-change.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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 const Operator* PlainPrimitiveToFloat64(); 388 const Operator* PlainPrimitiveToFloat64();
389 389
390 const Operator* ChangeTaggedSignedToInt32(); 390 const Operator* ChangeTaggedSignedToInt32();
391 const Operator* ChangeTaggedToInt32(); 391 const Operator* ChangeTaggedToInt32();
392 const Operator* ChangeTaggedToUint32(); 392 const Operator* ChangeTaggedToUint32();
393 const Operator* ChangeTaggedToFloat64(); 393 const Operator* ChangeTaggedToFloat64();
394 const Operator* ChangeTaggedToTaggedSigned(); 394 const Operator* ChangeTaggedToTaggedSigned();
395 const Operator* ChangeInt31ToTaggedSigned(); 395 const Operator* ChangeInt31ToTaggedSigned();
396 const Operator* ChangeInt32ToTagged(); 396 const Operator* ChangeInt32ToTagged();
397 const Operator* ChangeUint32ToTagged(); 397 const Operator* ChangeUint32ToTagged();
398 const Operator* ChangeFloat64ToTagged(); 398 const Operator* ChangeFloat64ToTagged(CheckForMinusZeroMode);
399 const Operator* ChangeFloat64ToTaggedPointer(); 399 const Operator* ChangeFloat64ToTaggedPointer();
400 const Operator* ChangeTaggedToBit(); 400 const Operator* ChangeTaggedToBit();
401 const Operator* ChangeBitToTagged(); 401 const Operator* ChangeBitToTagged();
402 const Operator* TruncateTaggedToWord32(); 402 const Operator* TruncateTaggedToWord32();
403 const Operator* TruncateTaggedToFloat64(); 403 const Operator* TruncateTaggedToFloat64();
404 const Operator* TruncateTaggedToBit(); 404 const Operator* TruncateTaggedToBit();
405 const Operator* TruncateTaggedPointerToBit(); 405 const Operator* TruncateTaggedPointerToBit();
406 406
407 const Operator* CheckIf(); 407 const Operator* CheckIf();
408 const Operator* CheckBounds(); 408 const Operator* CheckBounds();
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 Zone* const zone_; 496 Zone* const zone_;
497 497
498 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 498 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
499 }; 499 };
500 500
501 } // namespace compiler 501 } // namespace compiler
502 } // namespace internal 502 } // namespace internal
503 } // namespace v8 503 } // namespace v8
504 504
505 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 505 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/representation-change.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698