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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 const Operator* NumberAtanh(); | 211 const Operator* NumberAtanh(); |
212 const Operator* NumberCbrt(); | 212 const Operator* NumberCbrt(); |
213 const Operator* NumberCos(); | 213 const Operator* NumberCos(); |
214 const Operator* NumberCosh(); | 214 const Operator* NumberCosh(); |
215 const Operator* NumberExp(); | 215 const Operator* NumberExp(); |
216 const Operator* NumberExpm1(); | 216 const Operator* NumberExpm1(); |
217 const Operator* NumberLog(); | 217 const Operator* NumberLog(); |
218 const Operator* NumberLog1p(); | 218 const Operator* NumberLog1p(); |
219 const Operator* NumberLog10(); | 219 const Operator* NumberLog10(); |
220 const Operator* NumberLog2(); | 220 const Operator* NumberLog2(); |
| 221 const Operator* NumberMax(); |
| 222 const Operator* NumberMin(); |
221 const Operator* NumberPow(); | 223 const Operator* NumberPow(); |
222 const Operator* NumberRound(); | 224 const Operator* NumberRound(); |
223 const Operator* NumberSign(); | 225 const Operator* NumberSign(); |
224 const Operator* NumberSin(); | 226 const Operator* NumberSin(); |
225 const Operator* NumberSinh(); | 227 const Operator* NumberSinh(); |
226 const Operator* NumberSqrt(); | 228 const Operator* NumberSqrt(); |
227 const Operator* NumberTan(); | 229 const Operator* NumberTan(); |
228 const Operator* NumberTanh(); | 230 const Operator* NumberTanh(); |
229 const Operator* NumberTrunc(); | 231 const Operator* NumberTrunc(); |
230 const Operator* NumberToInt32(); | 232 const Operator* NumberToInt32(); |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 Zone* const zone_; | 325 Zone* const zone_; |
324 | 326 |
325 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 327 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
326 }; | 328 }; |
327 | 329 |
328 } // namespace compiler | 330 } // namespace compiler |
329 } // namespace internal | 331 } // namespace internal |
330 } // namespace v8 | 332 } // namespace v8 |
331 | 333 |
332 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 334 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |