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

Side by Side Diff: src/compiler/simplified-operator.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/simplified-lowering.cc ('k') | src/compiler/simplified-operator.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/compiler/operator.h" 10 #include "src/compiler/operator.h"
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 const Operator* NumberRound(); 265 const Operator* NumberRound();
266 const Operator* NumberSign(); 266 const Operator* NumberSign();
267 const Operator* NumberSin(); 267 const Operator* NumberSin();
268 const Operator* NumberSinh(); 268 const Operator* NumberSinh();
269 const Operator* NumberSqrt(); 269 const Operator* NumberSqrt();
270 const Operator* NumberTan(); 270 const Operator* NumberTan();
271 const Operator* NumberTanh(); 271 const Operator* NumberTanh();
272 const Operator* NumberTrunc(); 272 const Operator* NumberTrunc();
273 const Operator* NumberToInt32(); 273 const Operator* NumberToInt32();
274 const Operator* NumberToUint32(); 274 const Operator* NumberToUint32();
275 const Operator* NumberToString();
275 276
276 const Operator* NumberSilenceNaN(); 277 const Operator* NumberSilenceNaN();
277 278
278 const Operator* SpeculativeNumberAdd(NumberOperationHint hint); 279 const Operator* SpeculativeNumberAdd(NumberOperationHint hint);
279 const Operator* SpeculativeNumberSubtract(NumberOperationHint hint); 280 const Operator* SpeculativeNumberSubtract(NumberOperationHint hint);
280 const Operator* SpeculativeNumberMultiply(NumberOperationHint hint); 281 const Operator* SpeculativeNumberMultiply(NumberOperationHint hint);
281 const Operator* SpeculativeNumberDivide(NumberOperationHint hint); 282 const Operator* SpeculativeNumberDivide(NumberOperationHint hint);
282 const Operator* SpeculativeNumberModulus(NumberOperationHint hint); 283 const Operator* SpeculativeNumberModulus(NumberOperationHint hint);
283 const Operator* SpeculativeNumberShiftLeft(NumberOperationHint hint); 284 const Operator* SpeculativeNumberShiftLeft(NumberOperationHint hint);
284 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint); 285 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint);
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 Zone* const zone_; 388 Zone* const zone_;
388 389
389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 390 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
390 }; 391 };
391 392
392 } // namespace compiler 393 } // namespace compiler
393 } // namespace internal 394 } // namespace internal
394 } // namespace v8 395 } // namespace v8
395 396
396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 397 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698