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

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

Issue 2227463003: [WIP] NumberToString operator in TF. Base URL: https://chromium.googlesource.com/v8/v8.git@TurboFan_BuiltinTypingRules
Patch Set: Created 4 years, 4 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/operation-typer.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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 V(NumberBitwiseOr) \ 219 V(NumberBitwiseOr) \
220 V(NumberBitwiseXor) \ 220 V(NumberBitwiseXor) \
221 V(NumberBitwiseAnd) \ 221 V(NumberBitwiseAnd) \
222 V(NumberShiftLeft) \ 222 V(NumberShiftLeft) \
223 V(NumberShiftRight) \ 223 V(NumberShiftRight) \
224 V(NumberShiftRightLogical) \ 224 V(NumberShiftRightLogical) \
225 V(NumberAtan2) \ 225 V(NumberAtan2) \
226 V(NumberImul) \ 226 V(NumberImul) \
227 V(NumberMax) \ 227 V(NumberMax) \
228 V(NumberMin) \ 228 V(NumberMin) \
229 V(NumberPow) 229 V(NumberPow) \
230 V(NumberToString)
230 231
231 #define SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \ 232 #define SIMPLIFIED_SPECULATIVE_NUMBER_BINOP_LIST(V) \
232 V(SpeculativeNumberAdd) \ 233 V(SpeculativeNumberAdd) \
233 V(SpeculativeNumberSubtract) \ 234 V(SpeculativeNumberSubtract) \
234 V(SpeculativeNumberMultiply) \ 235 V(SpeculativeNumberMultiply) \
235 V(SpeculativeNumberDivide) \ 236 V(SpeculativeNumberDivide) \
236 V(SpeculativeNumberModulus) \ 237 V(SpeculativeNumberModulus) \
237 V(SpeculativeNumberBitwiseAnd) \ 238 V(SpeculativeNumberBitwiseAnd) \
238 V(SpeculativeNumberBitwiseOr) \ 239 V(SpeculativeNumberBitwiseOr) \
239 V(SpeculativeNumberBitwiseXor) \ 240 V(SpeculativeNumberBitwiseXor) \
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 } 758 }
758 }; 759 };
759 760
760 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 761 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
761 762
762 } // namespace compiler 763 } // namespace compiler
763 } // namespace internal 764 } // namespace internal
764 } // namespace v8 765 } // namespace v8
765 766
766 #endif // V8_COMPILER_OPCODES_H_ 767 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/operation-typer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698