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

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

Issue 1164743002: [turbofan] Enable typed lowering of string addition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix tests. Created 5 years, 6 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.h » ('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 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 V(BooleanNot) \ 165 V(BooleanNot) \
166 V(BooleanToNumber) \ 166 V(BooleanToNumber) \
167 V(NumberAdd) \ 167 V(NumberAdd) \
168 V(NumberSubtract) \ 168 V(NumberSubtract) \
169 V(NumberMultiply) \ 169 V(NumberMultiply) \
170 V(NumberDivide) \ 170 V(NumberDivide) \
171 V(NumberModulus) \ 171 V(NumberModulus) \
172 V(NumberToInt32) \ 172 V(NumberToInt32) \
173 V(NumberToUint32) \ 173 V(NumberToUint32) \
174 V(PlainPrimitiveToNumber) \ 174 V(PlainPrimitiveToNumber) \
175 V(StringAdd) \
176 V(ChangeTaggedToInt32) \ 175 V(ChangeTaggedToInt32) \
177 V(ChangeTaggedToUint32) \ 176 V(ChangeTaggedToUint32) \
178 V(ChangeTaggedToFloat64) \ 177 V(ChangeTaggedToFloat64) \
179 V(ChangeInt32ToTagged) \ 178 V(ChangeInt32ToTagged) \
180 V(ChangeUint32ToTagged) \ 179 V(ChangeUint32ToTagged) \
181 V(ChangeFloat64ToTagged) \ 180 V(ChangeFloat64ToTagged) \
182 V(ChangeBoolToBit) \ 181 V(ChangeBoolToBit) \
183 V(ChangeBitToBool) \ 182 V(ChangeBitToBool) \
184 V(Allocate) \ 183 V(Allocate) \
185 V(LoadField) \ 184 V(LoadField) \
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 } 355 }
357 }; 356 };
358 357
359 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 358 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
360 359
361 } // namespace compiler 360 } // namespace compiler
362 } // namespace internal 361 } // namespace internal
363 } // namespace v8 362 } // namespace v8
364 363
365 #endif // V8_COMPILER_OPCODES_H_ 364 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698