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

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

Issue 2639883002: [turbofan] Add Receiver feedback for abstract/strict equality. (Closed)
Patch Set: Created 3 years, 11 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/base/compiler-specific.h" 10 #include "src/base/compiler-specific.h"
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 378
379 const Operator* CheckIf(); 379 const Operator* CheckIf();
380 const Operator* CheckBounds(); 380 const Operator* CheckBounds();
381 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>); 381 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>);
382 382
383 const Operator* CheckHeapObject(); 383 const Operator* CheckHeapObject();
384 const Operator* CheckInternalizedString(); 384 const Operator* CheckInternalizedString();
385 const Operator* CheckNumber(); 385 const Operator* CheckNumber();
386 const Operator* CheckSmi(); 386 const Operator* CheckSmi();
387 const Operator* CheckString(); 387 const Operator* CheckString();
388 const Operator* CheckReceiver();
388 389
389 const Operator* CheckedInt32Add(); 390 const Operator* CheckedInt32Add();
390 const Operator* CheckedInt32Sub(); 391 const Operator* CheckedInt32Sub();
391 const Operator* CheckedInt32Div(); 392 const Operator* CheckedInt32Div();
392 const Operator* CheckedInt32Mod(); 393 const Operator* CheckedInt32Mod();
393 const Operator* CheckedUint32Div(); 394 const Operator* CheckedUint32Div();
394 const Operator* CheckedUint32Mod(); 395 const Operator* CheckedUint32Mod();
395 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); 396 const Operator* CheckedInt32Mul(CheckForMinusZeroMode);
396 const Operator* CheckedInt32ToTaggedSigned(); 397 const Operator* CheckedInt32ToTaggedSigned();
397 const Operator* CheckedUint32ToInt32(); 398 const Operator* CheckedUint32ToInt32();
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 Zone* const zone_; 464 Zone* const zone_;
464 465
465 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 466 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
466 }; 467 };
467 468
468 } // namespace compiler 469 } // namespace compiler
469 } // namespace internal 470 } // namespace internal
470 } // namespace v8 471 } // namespace v8
471 472
472 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 473 #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