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

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

Issue 2893263002: [turbofan] Add Symbol feedback to Equal/StrictEqual. (Closed)
Patch Set: Created 3 years, 7 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 407
408 const Operator* CheckIf(); 408 const Operator* CheckIf();
409 const Operator* CheckBounds(); 409 const Operator* CheckBounds();
410 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>); 410 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>);
411 411
412 const Operator* CheckHeapObject(); 412 const Operator* CheckHeapObject();
413 const Operator* CheckInternalizedString(); 413 const Operator* CheckInternalizedString();
414 const Operator* CheckNumber(); 414 const Operator* CheckNumber();
415 const Operator* CheckSmi(); 415 const Operator* CheckSmi();
416 const Operator* CheckString(); 416 const Operator* CheckString();
417 const Operator* CheckSymbol();
417 const Operator* CheckReceiver(); 418 const Operator* CheckReceiver();
418 419
419 const Operator* CheckedInt32Add(); 420 const Operator* CheckedInt32Add();
420 const Operator* CheckedInt32Sub(); 421 const Operator* CheckedInt32Sub();
421 const Operator* CheckedInt32Div(); 422 const Operator* CheckedInt32Div();
422 const Operator* CheckedInt32Mod(); 423 const Operator* CheckedInt32Mod();
423 const Operator* CheckedUint32Div(); 424 const Operator* CheckedUint32Div();
424 const Operator* CheckedUint32Mod(); 425 const Operator* CheckedUint32Mod();
425 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); 426 const Operator* CheckedInt32Mul(CheckForMinusZeroMode);
426 const Operator* CheckedInt32ToTaggedSigned(); 427 const Operator* CheckedInt32ToTaggedSigned();
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 Zone* const zone_; 498 Zone* const zone_;
498 499
499 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 500 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
500 }; 501 };
501 502
502 } // namespace compiler 503 } // namespace compiler
503 } // namespace internal 504 } // namespace internal
504 } // namespace v8 505 } // namespace v8
505 506
506 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 507 #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