| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 const Operator* NumberBitwiseAnd(); | 173 const Operator* NumberBitwiseAnd(); |
| 174 const Operator* NumberShiftLeft(); | 174 const Operator* NumberShiftLeft(); |
| 175 const Operator* NumberShiftRight(); | 175 const Operator* NumberShiftRight(); |
| 176 const Operator* NumberShiftRightLogical(); | 176 const Operator* NumberShiftRightLogical(); |
| 177 const Operator* NumberImul(); | 177 const Operator* NumberImul(); |
| 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* NumberAcos(); |
| 184 const Operator* NumberAcosh(); |
| 185 const Operator* NumberAsin(); |
| 186 const Operator* NumberAsinh(); |
| 183 const Operator* NumberAtan(); | 187 const Operator* NumberAtan(); |
| 184 const Operator* NumberAtan2(); | 188 const Operator* NumberAtan2(); |
| 185 const Operator* NumberAtanh(); | 189 const Operator* NumberAtanh(); |
| 186 const Operator* NumberCbrt(); | 190 const Operator* NumberCbrt(); |
| 187 const Operator* NumberCos(); | 191 const Operator* NumberCos(); |
| 188 const Operator* NumberCosh(); | 192 const Operator* NumberCosh(); |
| 189 const Operator* NumberExp(); | 193 const Operator* NumberExp(); |
| 190 const Operator* NumberExpm1(); | 194 const Operator* NumberExpm1(); |
| 191 const Operator* NumberLog(); | 195 const Operator* NumberLog(); |
| 192 const Operator* NumberLog1p(); | 196 const Operator* NumberLog1p(); |
| 193 const Operator* NumberLog10(); | 197 const Operator* NumberLog10(); |
| 194 const Operator* NumberLog2(); | 198 const Operator* NumberLog2(); |
| 195 const Operator* NumberPow(); | 199 const Operator* NumberPow(); |
| 196 const Operator* NumberRound(); | 200 const Operator* NumberRound(); |
| 201 const Operator* NumberSign(); |
| 197 const Operator* NumberSin(); | 202 const Operator* NumberSin(); |
| 198 const Operator* NumberSinh(); | 203 const Operator* NumberSinh(); |
| 199 const Operator* NumberSqrt(); | 204 const Operator* NumberSqrt(); |
| 200 const Operator* NumberTan(); | 205 const Operator* NumberTan(); |
| 201 const Operator* NumberTanh(); | 206 const Operator* NumberTanh(); |
| 202 const Operator* NumberTrunc(); | 207 const Operator* NumberTrunc(); |
| 203 const Operator* NumberToInt32(); | 208 const Operator* NumberToInt32(); |
| 204 const Operator* NumberToUint32(); | 209 const Operator* NumberToUint32(); |
| 205 | 210 |
| 206 const Operator* NumberSilenceNaN(); | 211 const Operator* NumberSilenceNaN(); |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 Zone* const zone_; | 293 Zone* const zone_; |
| 289 | 294 |
| 290 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 295 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 291 }; | 296 }; |
| 292 | 297 |
| 293 } // namespace compiler | 298 } // namespace compiler |
| 294 } // namespace internal | 299 } // namespace internal |
| 295 } // namespace v8 | 300 } // namespace v8 |
| 296 | 301 |
| 297 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 302 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |