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

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

Issue 2170433002: Revert of [turbofan] Introduce TruncateTaggedToBit operator for ToBoolean truncation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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/compiler/operator.h" 10 #include "src/compiler/operator.h"
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 const Operator* ChangeTaggedToUint32(); 260 const Operator* ChangeTaggedToUint32();
261 const Operator* ChangeTaggedToFloat64(); 261 const Operator* ChangeTaggedToFloat64();
262 const Operator* ChangeInt31ToTaggedSigned(); 262 const Operator* ChangeInt31ToTaggedSigned();
263 const Operator* ChangeInt32ToTagged(); 263 const Operator* ChangeInt32ToTagged();
264 const Operator* ChangeUint32ToTagged(); 264 const Operator* ChangeUint32ToTagged();
265 const Operator* ChangeFloat64ToTagged(); 265 const Operator* ChangeFloat64ToTagged();
266 const Operator* ChangeTaggedToBit(); 266 const Operator* ChangeTaggedToBit();
267 const Operator* ChangeBitToTagged(); 267 const Operator* ChangeBitToTagged();
268 const Operator* TruncateTaggedToWord32(); 268 const Operator* TruncateTaggedToWord32();
269 const Operator* TruncateTaggedToFloat64(); 269 const Operator* TruncateTaggedToFloat64();
270 const Operator* TruncateTaggedToBit();
271 270
272 const Operator* CheckIf(); 271 const Operator* CheckIf();
273 const Operator* CheckBounds(); 272 const Operator* CheckBounds();
274 const Operator* CheckNumber(); 273 const Operator* CheckNumber();
275 const Operator* CheckTaggedPointer(); 274 const Operator* CheckTaggedPointer();
276 const Operator* CheckTaggedSigned(); 275 const Operator* CheckTaggedSigned();
277 276
278 const Operator* CheckedInt32Add(); 277 const Operator* CheckedInt32Add();
279 const Operator* CheckedInt32Sub(); 278 const Operator* CheckedInt32Sub();
280 const Operator* CheckedInt32Div(); 279 const Operator* CheckedInt32Div();
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 Zone* const zone_; 323 Zone* const zone_;
325 324
326 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 325 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
327 }; 326 };
328 327
329 } // namespace compiler 328 } // namespace compiler
330 } // namespace internal 329 } // namespace internal
331 } // namespace v8 330 } // namespace v8
332 331
333 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 332 #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