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

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

Issue 2738483002: [turbofan] Introduce TruncateTaggedPointerToBit operator. (Closed)
Patch Set: 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/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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 const Operator* ChangeInt31ToTaggedSigned(); 371 const Operator* ChangeInt31ToTaggedSigned();
372 const Operator* ChangeInt32ToTagged(); 372 const Operator* ChangeInt32ToTagged();
373 const Operator* ChangeUint32ToTagged(); 373 const Operator* ChangeUint32ToTagged();
374 const Operator* ChangeFloat64ToTagged(); 374 const Operator* ChangeFloat64ToTagged();
375 const Operator* ChangeFloat64ToTaggedPointer(); 375 const Operator* ChangeFloat64ToTaggedPointer();
376 const Operator* ChangeTaggedToBit(); 376 const Operator* ChangeTaggedToBit();
377 const Operator* ChangeBitToTagged(); 377 const Operator* ChangeBitToTagged();
378 const Operator* TruncateTaggedToWord32(); 378 const Operator* TruncateTaggedToWord32();
379 const Operator* TruncateTaggedToFloat64(); 379 const Operator* TruncateTaggedToFloat64();
380 const Operator* TruncateTaggedToBit(); 380 const Operator* TruncateTaggedToBit();
381 const Operator* TruncateTaggedPointerToBit();
381 382
382 const Operator* CheckIf(); 383 const Operator* CheckIf();
383 const Operator* CheckBounds(); 384 const Operator* CheckBounds();
384 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>); 385 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>);
385 386
386 const Operator* CheckHeapObject(); 387 const Operator* CheckHeapObject();
387 const Operator* CheckInternalizedString(); 388 const Operator* CheckInternalizedString();
388 const Operator* CheckNumber(); 389 const Operator* CheckNumber();
389 const Operator* CheckSmi(); 390 const Operator* CheckSmi();
390 const Operator* CheckString(); 391 const Operator* CheckString();
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 Zone* const zone_; 471 Zone* const zone_;
471 472
472 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 473 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
473 }; 474 };
474 475
475 } // namespace compiler 476 } // namespace compiler
476 } // namespace internal 477 } // namespace internal
477 } // namespace v8 478 } // namespace v8
478 479
479 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 480 #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