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/type-hints.h" | 10 #include "src/compiler/type-hints.h" |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 const Operator* NumberRound(); | 192 const Operator* NumberRound(); |
193 const Operator* NumberSqrt(); | 193 const Operator* NumberSqrt(); |
194 const Operator* NumberTrunc(); | 194 const Operator* NumberTrunc(); |
195 const Operator* NumberToInt32(); | 195 const Operator* NumberToInt32(); |
196 const Operator* NumberToUint32(); | 196 const Operator* NumberToUint32(); |
197 | 197 |
198 const Operator* NumberSilenceNaN(); | 198 const Operator* NumberSilenceNaN(); |
199 | 199 |
200 const Operator* SpeculativeNumberAdd(BinaryOperationHints::Hint hint); | 200 const Operator* SpeculativeNumberAdd(BinaryOperationHints::Hint hint); |
201 const Operator* SpeculativeNumberSubtract(BinaryOperationHints::Hint hint); | 201 const Operator* SpeculativeNumberSubtract(BinaryOperationHints::Hint hint); |
| 202 const Operator* SpeculativeNumberMultiply(BinaryOperationHints::Hint hint); |
| 203 const Operator* SpeculativeNumberDivide(BinaryOperationHints::Hint hint); |
| 204 const Operator* SpeculativeNumberModulus(BinaryOperationHints::Hint hint); |
202 | 205 |
203 const Operator* SpeculativeNumberLessThan(CompareOperationHints::Hint hint); | 206 const Operator* SpeculativeNumberLessThan(CompareOperationHints::Hint hint); |
204 const Operator* SpeculativeNumberLessThanOrEqual( | 207 const Operator* SpeculativeNumberLessThanOrEqual( |
205 CompareOperationHints::Hint hint); | 208 CompareOperationHints::Hint hint); |
206 const Operator* SpeculativeNumberEqual(CompareOperationHints::Hint hint); | 209 const Operator* SpeculativeNumberEqual(CompareOperationHints::Hint hint); |
207 | 210 |
208 const Operator* ReferenceEqual(Type* type); | 211 const Operator* ReferenceEqual(Type* type); |
209 | 212 |
210 const Operator* StringEqual(); | 213 const Operator* StringEqual(); |
211 const Operator* StringLessThan(); | 214 const Operator* StringLessThan(); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 Zone* const zone_; | 277 Zone* const zone_; |
275 | 278 |
276 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 279 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
277 }; | 280 }; |
278 | 281 |
279 } // namespace compiler | 282 } // namespace compiler |
280 } // namespace internal | 283 } // namespace internal |
281 } // namespace v8 | 284 } // namespace v8 |
282 | 285 |
283 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 286 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |