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

Side by Side Diff: src/compiler/opcodes.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-typed-lowering.cc ('k') | src/compiler/operator-properties.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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 #define COMMON_OP_LIST(V) \ 76 #define COMMON_OP_LIST(V) \
77 CONSTANT_OP_LIST(V) \ 77 CONSTANT_OP_LIST(V) \
78 INNER_OP_LIST(V) \ 78 INNER_OP_LIST(V) \
79 V(Dead) 79 V(Dead)
80 80
81 // Opcodes for JavaScript operators. 81 // Opcodes for JavaScript operators.
82 #define JS_COMPARE_BINOP_LIST(V) \ 82 #define JS_COMPARE_BINOP_LIST(V) \
83 V(JSEqual) \ 83 V(JSEqual) \
84 V(JSNotEqual) \ 84 V(JSNotEqual) \
85 V(JSStrictEqual) \ 85 V(JSStrictEqual) \
86 V(JSStrictNotEqual) \
87 V(JSLessThan) \ 86 V(JSLessThan) \
88 V(JSGreaterThan) \ 87 V(JSGreaterThan) \
89 V(JSLessThanOrEqual) \ 88 V(JSLessThanOrEqual) \
90 V(JSGreaterThanOrEqual) 89 V(JSGreaterThanOrEqual)
91 90
92 #define JS_BITWISE_BINOP_LIST(V) \ 91 #define JS_BITWISE_BINOP_LIST(V) \
93 V(JSBitwiseOr) \ 92 V(JSBitwiseOr) \
94 V(JSBitwiseXor) \ 93 V(JSBitwiseXor) \
95 V(JSBitwiseAnd) \ 94 V(JSBitwiseAnd) \
96 V(JSShiftLeft) \ 95 V(JSShiftLeft) \
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 } 788 }
790 }; 789 };
791 790
792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 791 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
793 792
794 } // namespace compiler 793 } // namespace compiler
795 } // namespace internal 794 } // namespace internal
796 } // namespace v8 795 } // namespace v8
797 796
798 #endif // V8_COMPILER_OPCODES_H_ 797 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/operator-properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698