| 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/base/compiler-specific.h" | 10 #include "src/base/compiler-specific.h" |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 const Operator* NumberSign(); | 262 const Operator* NumberSign(); |
| 263 const Operator* NumberSin(); | 263 const Operator* NumberSin(); |
| 264 const Operator* NumberSinh(); | 264 const Operator* NumberSinh(); |
| 265 const Operator* NumberSqrt(); | 265 const Operator* NumberSqrt(); |
| 266 const Operator* NumberTan(); | 266 const Operator* NumberTan(); |
| 267 const Operator* NumberTanh(); | 267 const Operator* NumberTanh(); |
| 268 const Operator* NumberTrunc(); | 268 const Operator* NumberTrunc(); |
| 269 const Operator* NumberToBoolean(); | 269 const Operator* NumberToBoolean(); |
| 270 const Operator* NumberToInt32(); | 270 const Operator* NumberToInt32(); |
| 271 const Operator* NumberToUint32(); | 271 const Operator* NumberToUint32(); |
| 272 const Operator* NumberToUint8Clamped(); |
| 272 | 273 |
| 273 const Operator* NumberSilenceNaN(); | 274 const Operator* NumberSilenceNaN(); |
| 274 | 275 |
| 275 const Operator* SpeculativeNumberAdd(NumberOperationHint hint); | 276 const Operator* SpeculativeNumberAdd(NumberOperationHint hint); |
| 276 const Operator* SpeculativeNumberSubtract(NumberOperationHint hint); | 277 const Operator* SpeculativeNumberSubtract(NumberOperationHint hint); |
| 277 const Operator* SpeculativeNumberMultiply(NumberOperationHint hint); | 278 const Operator* SpeculativeNumberMultiply(NumberOperationHint hint); |
| 278 const Operator* SpeculativeNumberDivide(NumberOperationHint hint); | 279 const Operator* SpeculativeNumberDivide(NumberOperationHint hint); |
| 279 const Operator* SpeculativeNumberModulus(NumberOperationHint hint); | 280 const Operator* SpeculativeNumberModulus(NumberOperationHint hint); |
| 280 const Operator* SpeculativeNumberShiftLeft(NumberOperationHint hint); | 281 const Operator* SpeculativeNumberShiftLeft(NumberOperationHint hint); |
| 281 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint); | 282 const Operator* SpeculativeNumberShiftRight(NumberOperationHint hint); |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 Zone* const zone_; | 397 Zone* const zone_; |
| 397 | 398 |
| 398 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 399 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 399 }; | 400 }; |
| 400 | 401 |
| 401 } // namespace compiler | 402 } // namespace compiler |
| 402 } // namespace internal | 403 } // namespace internal |
| 403 } // namespace v8 | 404 } // namespace v8 |
| 404 | 405 |
| 405 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 406 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |