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

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

Issue 2476593002: [turbofan] Improve representation selection for HeapObject checking. (Closed)
Patch Set: REBASE and fix. Created 4 years, 1 month 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 const Operator* PlainPrimitiveToFloat64(); 302 const Operator* PlainPrimitiveToFloat64();
303 303
304 const Operator* ChangeTaggedSignedToInt32(); 304 const Operator* ChangeTaggedSignedToInt32();
305 const Operator* ChangeTaggedToInt32(); 305 const Operator* ChangeTaggedToInt32();
306 const Operator* ChangeTaggedToUint32(); 306 const Operator* ChangeTaggedToUint32();
307 const Operator* ChangeTaggedToFloat64(); 307 const Operator* ChangeTaggedToFloat64();
308 const Operator* ChangeInt31ToTaggedSigned(); 308 const Operator* ChangeInt31ToTaggedSigned();
309 const Operator* ChangeInt32ToTagged(); 309 const Operator* ChangeInt32ToTagged();
310 const Operator* ChangeUint32ToTagged(); 310 const Operator* ChangeUint32ToTagged();
311 const Operator* ChangeFloat64ToTagged(); 311 const Operator* ChangeFloat64ToTagged();
312 const Operator* ChangeFloat64ToTaggedPointer();
312 const Operator* ChangeTaggedToBit(); 313 const Operator* ChangeTaggedToBit();
313 const Operator* ChangeBitToTagged(); 314 const Operator* ChangeBitToTagged();
314 const Operator* TruncateTaggedToWord32(); 315 const Operator* TruncateTaggedToWord32();
315 const Operator* TruncateTaggedToFloat64(); 316 const Operator* TruncateTaggedToFloat64();
316 const Operator* TruncateTaggedToBit(); 317 const Operator* TruncateTaggedToBit();
317 318
318 const Operator* CheckIf(); 319 const Operator* CheckIf();
319 const Operator* CheckBounds(); 320 const Operator* CheckBounds();
320 const Operator* CheckMaps(int map_input_count); 321 const Operator* CheckMaps(int map_input_count);
321 322
(...skipping 10 matching lines...) Expand all
332 const Operator* CheckedUint32Mod(); 333 const Operator* CheckedUint32Mod();
333 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); 334 const Operator* CheckedInt32Mul(CheckForMinusZeroMode);
334 const Operator* CheckedInt32ToTaggedSigned(); 335 const Operator* CheckedInt32ToTaggedSigned();
335 const Operator* CheckedUint32ToInt32(); 336 const Operator* CheckedUint32ToInt32();
336 const Operator* CheckedUint32ToTaggedSigned(); 337 const Operator* CheckedUint32ToTaggedSigned();
337 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode); 338 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode);
338 const Operator* CheckedTaggedSignedToInt32(); 339 const Operator* CheckedTaggedSignedToInt32();
339 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); 340 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode);
340 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); 341 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode);
341 const Operator* CheckedTaggedToTaggedSigned(); 342 const Operator* CheckedTaggedToTaggedSigned();
343 const Operator* CheckedTaggedToTaggedPointer();
342 const Operator* CheckedTruncateTaggedToWord32(); 344 const Operator* CheckedTruncateTaggedToWord32();
343 345
344 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); 346 const Operator* CheckFloat64Hole(CheckFloat64HoleMode);
345 const Operator* CheckTaggedHole(); 347 const Operator* CheckTaggedHole();
346 const Operator* ConvertTaggedHoleToUndefined(); 348 const Operator* ConvertTaggedHoleToUndefined();
347 349
348 const Operator* ObjectIsCallable(); 350 const Operator* ObjectIsCallable();
349 const Operator* ObjectIsNumber(); 351 const Operator* ObjectIsNumber();
350 const Operator* ObjectIsReceiver(); 352 const Operator* ObjectIsReceiver();
351 const Operator* ObjectIsSmi(); 353 const Operator* ObjectIsSmi();
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 Zone* const zone_; 396 Zone* const zone_;
395 397
396 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 398 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
397 }; 399 };
398 400
399 } // namespace compiler 401 } // namespace compiler
400 } // namespace internal 402 } // namespace internal
401 } // namespace v8 403 } // namespace v8
402 404
403 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 405 #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