OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |