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

Side by Side Diff: src/compiler/opcodes.h

Issue 999173003: [turbofan] Remove indirection in JSToBoolean/JSUnaryNot lowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add comment. Created 5 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/simplified-lowering.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 // Opcodes for control operators. 8 // Opcodes for control operators.
9 #define INNER_CONTROL_OP_LIST(V) \ 9 #define INNER_CONTROL_OP_LIST(V) \
10 V(Dead) \ 10 V(Dead) \
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 V(NumberEqual) \ 146 V(NumberEqual) \
147 V(NumberLessThan) \ 147 V(NumberLessThan) \
148 V(NumberLessThanOrEqual) \ 148 V(NumberLessThanOrEqual) \
149 V(ReferenceEqual) \ 149 V(ReferenceEqual) \
150 V(StringEqual) \ 150 V(StringEqual) \
151 V(StringLessThan) \ 151 V(StringLessThan) \
152 V(StringLessThanOrEqual) 152 V(StringLessThanOrEqual)
153 153
154 #define SIMPLIFIED_OP_LIST(V) \ 154 #define SIMPLIFIED_OP_LIST(V) \
155 SIMPLIFIED_COMPARE_BINOP_LIST(V) \ 155 SIMPLIFIED_COMPARE_BINOP_LIST(V) \
156 V(AnyToBoolean) \
157 V(BooleanNot) \ 156 V(BooleanNot) \
158 V(BooleanToNumber) \ 157 V(BooleanToNumber) \
159 V(NumberAdd) \ 158 V(NumberAdd) \
160 V(NumberSubtract) \ 159 V(NumberSubtract) \
161 V(NumberMultiply) \ 160 V(NumberMultiply) \
162 V(NumberDivide) \ 161 V(NumberDivide) \
163 V(NumberModulus) \ 162 V(NumberModulus) \
164 V(NumberToInt32) \ 163 V(NumberToInt32) \
165 V(NumberToUint32) \ 164 V(NumberToUint32) \
166 V(PlainPrimitiveToNumber) \ 165 V(PlainPrimitiveToNumber) \
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 (kNumberEqual <= value && value <= kStringLessThanOrEqual) || 331 (kNumberEqual <= value && value <= kStringLessThanOrEqual) ||
333 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual); 332 (kWord32Equal <= value && value <= kFloat64LessThanOrEqual);
334 } 333 }
335 }; 334 };
336 335
337 } // namespace compiler 336 } // namespace compiler
338 } // namespace internal 337 } // namespace internal
339 } // namespace v8 338 } // namespace v8
340 339
341 #endif // V8_COMPILER_OPCODES_H_ 340 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698