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

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

Issue 2367593003: [turbofan] ChangeFloat64ToTagged shouldn't canonicalize. (Closed)
Patch Set: REBASE Created 4 years, 2 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/compiler/operator.h" 10 #include "src/compiler/operator.h"
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 const Operator* PlainPrimitiveToWord32(); 294 const Operator* PlainPrimitiveToWord32();
295 const Operator* PlainPrimitiveToFloat64(); 295 const Operator* PlainPrimitiveToFloat64();
296 296
297 const Operator* ChangeTaggedSignedToInt32(); 297 const Operator* ChangeTaggedSignedToInt32();
298 const Operator* ChangeTaggedToInt32(); 298 const Operator* ChangeTaggedToInt32();
299 const Operator* ChangeTaggedToUint32(); 299 const Operator* ChangeTaggedToUint32();
300 const Operator* ChangeTaggedToFloat64(); 300 const Operator* ChangeTaggedToFloat64();
301 const Operator* ChangeInt31ToTaggedSigned(); 301 const Operator* ChangeInt31ToTaggedSigned();
302 const Operator* ChangeInt32ToTagged(); 302 const Operator* ChangeInt32ToTagged();
303 const Operator* ChangeUint32ToTagged(); 303 const Operator* ChangeUint32ToTagged();
304 const Operator* ChangeFloat64ToTagged(CheckForMinusZeroMode); 304 const Operator* ChangeFloat64ToTagged();
305 const Operator* ChangeTaggedToBit(); 305 const Operator* ChangeTaggedToBit();
306 const Operator* ChangeBitToTagged(); 306 const Operator* ChangeBitToTagged();
307 const Operator* TruncateTaggedToWord32(); 307 const Operator* TruncateTaggedToWord32();
308 const Operator* TruncateTaggedToFloat64(); 308 const Operator* TruncateTaggedToFloat64();
309 const Operator* TruncateTaggedToBit(); 309 const Operator* TruncateTaggedToBit();
310 310
311 const Operator* CheckIf(); 311 const Operator* CheckIf();
312 const Operator* CheckBounds(); 312 const Operator* CheckBounds();
313 const Operator* CheckMaps(int map_input_count); 313 const Operator* CheckMaps(int map_input_count);
314 314
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 Zone* const zone_; 387 Zone* const zone_;
388 388
389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
390 }; 390 };
391 391
392 } // namespace compiler 392 } // namespace compiler
393 } // namespace internal 393 } // namespace internal
394 } // namespace v8 394 } // namespace v8
395 395
396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 396 #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