| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 const Operator* NumberAbs(); | 178 const Operator* NumberAbs(); |
| 179 const Operator* NumberClz32(); | 179 const Operator* NumberClz32(); |
| 180 const Operator* NumberCeil(); | 180 const Operator* NumberCeil(); |
| 181 const Operator* NumberFloor(); | 181 const Operator* NumberFloor(); |
| 182 const Operator* NumberFround(); | 182 const Operator* NumberFround(); |
| 183 const Operator* NumberAtan(); | 183 const Operator* NumberAtan(); |
| 184 const Operator* NumberAtan2(); | 184 const Operator* NumberAtan2(); |
| 185 const Operator* NumberAtanh(); | 185 const Operator* NumberAtanh(); |
| 186 const Operator* NumberCbrt(); | 186 const Operator* NumberCbrt(); |
| 187 const Operator* NumberCos(); | 187 const Operator* NumberCos(); |
| 188 const Operator* NumberCosh(); |
| 188 const Operator* NumberExp(); | 189 const Operator* NumberExp(); |
| 189 const Operator* NumberExpm1(); | 190 const Operator* NumberExpm1(); |
| 190 const Operator* NumberLog(); | 191 const Operator* NumberLog(); |
| 191 const Operator* NumberLog1p(); | 192 const Operator* NumberLog1p(); |
| 192 const Operator* NumberLog10(); | 193 const Operator* NumberLog10(); |
| 193 const Operator* NumberLog2(); | 194 const Operator* NumberLog2(); |
| 194 const Operator* NumberPow(); | 195 const Operator* NumberPow(); |
| 195 const Operator* NumberRound(); | 196 const Operator* NumberRound(); |
| 196 const Operator* NumberSin(); | 197 const Operator* NumberSin(); |
| 198 const Operator* NumberSinh(); |
| 197 const Operator* NumberSqrt(); | 199 const Operator* NumberSqrt(); |
| 198 const Operator* NumberTan(); | 200 const Operator* NumberTan(); |
| 201 const Operator* NumberTanh(); |
| 199 const Operator* NumberTrunc(); | 202 const Operator* NumberTrunc(); |
| 200 const Operator* NumberToInt32(); | 203 const Operator* NumberToInt32(); |
| 201 const Operator* NumberToUint32(); | 204 const Operator* NumberToUint32(); |
| 202 | 205 |
| 203 const Operator* NumberSilenceNaN(); | 206 const Operator* NumberSilenceNaN(); |
| 204 | 207 |
| 205 const Operator* SpeculativeNumberAdd(BinaryOperationHints::Hint hint); | 208 const Operator* SpeculativeNumberAdd(BinaryOperationHints::Hint hint); |
| 206 const Operator* SpeculativeNumberSubtract(BinaryOperationHints::Hint hint); | 209 const Operator* SpeculativeNumberSubtract(BinaryOperationHints::Hint hint); |
| 207 const Operator* SpeculativeNumberMultiply(BinaryOperationHints::Hint hint); | 210 const Operator* SpeculativeNumberMultiply(BinaryOperationHints::Hint hint); |
| 208 const Operator* SpeculativeNumberDivide(BinaryOperationHints::Hint hint); | 211 const Operator* SpeculativeNumberDivide(BinaryOperationHints::Hint hint); |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 Zone* const zone_; | 287 Zone* const zone_; |
| 285 | 288 |
| 286 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 289 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 287 }; | 290 }; |
| 288 | 291 |
| 289 } // namespace compiler | 292 } // namespace compiler |
| 290 } // namespace internal | 293 } // namespace internal |
| 291 } // namespace v8 | 294 } // namespace v8 |
| 292 | 295 |
| 293 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 296 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |