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

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

Issue 845333002: [turbofan] Add PlainPrimitiveToNumber simplified operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 | « no previous file | 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 V(NumberEqual) \ 141 V(NumberEqual) \
142 V(NumberLessThan) \ 142 V(NumberLessThan) \
143 V(NumberLessThanOrEqual) \ 143 V(NumberLessThanOrEqual) \
144 V(NumberAdd) \ 144 V(NumberAdd) \
145 V(NumberSubtract) \ 145 V(NumberSubtract) \
146 V(NumberMultiply) \ 146 V(NumberMultiply) \
147 V(NumberDivide) \ 147 V(NumberDivide) \
148 V(NumberModulus) \ 148 V(NumberModulus) \
149 V(NumberToInt32) \ 149 V(NumberToInt32) \
150 V(NumberToUint32) \ 150 V(NumberToUint32) \
151 V(PlainPrimitiveToNumber) \
151 V(ReferenceEqual) \ 152 V(ReferenceEqual) \
152 V(StringEqual) \ 153 V(StringEqual) \
153 V(StringLessThan) \ 154 V(StringLessThan) \
154 V(StringLessThanOrEqual) \ 155 V(StringLessThanOrEqual) \
155 V(StringAdd) \ 156 V(StringAdd) \
156 V(ChangeTaggedToInt32) \ 157 V(ChangeTaggedToInt32) \
157 V(ChangeTaggedToUint32) \ 158 V(ChangeTaggedToUint32) \
158 V(ChangeTaggedToFloat64) \ 159 V(ChangeTaggedToFloat64) \
159 V(ChangeInt32ToTagged) \ 160 V(ChangeInt32ToTagged) \
160 V(ChangeUint32ToTagged) \ 161 V(ChangeUint32ToTagged) \
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 return false; 329 return false;
329 } 330 }
330 } 331 }
331 }; 332 };
332 333
333 } // namespace compiler 334 } // namespace compiler
334 } // namespace internal 335 } // namespace internal
335 } // namespace v8 336 } // namespace v8
336 337
337 #endif // V8_COMPILER_OPCODES_H_ 338 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698