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

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

Issue 2727003006: [turbofan] Drop obsolete unused JSStrictNotEqual 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/js-generic-lowering.cc ('k') | src/compiler/js-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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_JS_OPERATOR_H_ 5 #ifndef V8_COMPILER_JS_OPERATOR_H_
6 #define V8_COMPILER_JS_OPERATOR_H_ 6 #define V8_COMPILER_JS_OPERATOR_H_
7 7
8 #include "src/base/compiler-specific.h" 8 #include "src/base/compiler-specific.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/handles.h" 10 #include "src/handles.h"
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 // AST. Most operators have no parameters, thus can be globally shared for all 582 // AST. Most operators have no parameters, thus can be globally shared for all
583 // graphs. 583 // graphs.
584 class V8_EXPORT_PRIVATE JSOperatorBuilder final 584 class V8_EXPORT_PRIVATE JSOperatorBuilder final
585 : public NON_EXPORTED_BASE(ZoneObject) { 585 : public NON_EXPORTED_BASE(ZoneObject) {
586 public: 586 public:
587 explicit JSOperatorBuilder(Zone* zone); 587 explicit JSOperatorBuilder(Zone* zone);
588 588
589 const Operator* Equal(CompareOperationHint hint); 589 const Operator* Equal(CompareOperationHint hint);
590 const Operator* NotEqual(CompareOperationHint hint); 590 const Operator* NotEqual(CompareOperationHint hint);
591 const Operator* StrictEqual(CompareOperationHint hint); 591 const Operator* StrictEqual(CompareOperationHint hint);
592 const Operator* StrictNotEqual(CompareOperationHint hint);
593 const Operator* LessThan(CompareOperationHint hint); 592 const Operator* LessThan(CompareOperationHint hint);
594 const Operator* GreaterThan(CompareOperationHint hint); 593 const Operator* GreaterThan(CompareOperationHint hint);
595 const Operator* LessThanOrEqual(CompareOperationHint hint); 594 const Operator* LessThanOrEqual(CompareOperationHint hint);
596 const Operator* GreaterThanOrEqual(CompareOperationHint hint); 595 const Operator* GreaterThanOrEqual(CompareOperationHint hint);
597 596
598 const Operator* BitwiseOr(); 597 const Operator* BitwiseOr();
599 const Operator* BitwiseXor(); 598 const Operator* BitwiseXor();
600 const Operator* BitwiseAnd(); 599 const Operator* BitwiseAnd();
601 const Operator* ShiftLeft(); 600 const Operator* ShiftLeft();
602 const Operator* ShiftRight(); 601 const Operator* ShiftRight();
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 Zone* const zone_; 715 Zone* const zone_;
717 716
718 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 717 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
719 }; 718 };
720 719
721 } // namespace compiler 720 } // namespace compiler
722 } // namespace internal 721 } // namespace internal
723 } // namespace v8 722 } // namespace v8
724 723
725 #endif // V8_COMPILER_JS_OPERATOR_H_ 724 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/js-generic-lowering.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698