| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 const Operator* CheckNumber(); | 249 const Operator* CheckNumber(); |
| 250 const Operator* CheckTaggedPointer(); | 250 const Operator* CheckTaggedPointer(); |
| 251 const Operator* CheckTaggedSigned(); | 251 const Operator* CheckTaggedSigned(); |
| 252 | 252 |
| 253 const Operator* CheckedInt32Add(); | 253 const Operator* CheckedInt32Add(); |
| 254 const Operator* CheckedInt32Sub(); | 254 const Operator* CheckedInt32Sub(); |
| 255 const Operator* CheckedInt32Div(); | 255 const Operator* CheckedInt32Div(); |
| 256 const Operator* CheckedInt32Mod(); | 256 const Operator* CheckedInt32Mod(); |
| 257 const Operator* CheckedUint32Div(); | 257 const Operator* CheckedUint32Div(); |
| 258 const Operator* CheckedUint32Mod(); | 258 const Operator* CheckedUint32Mod(); |
| 259 const Operator* CheckedInt32Mul(); |
| 259 const Operator* CheckedUint32ToInt32(); | 260 const Operator* CheckedUint32ToInt32(); |
| 260 const Operator* CheckedFloat64ToInt32(); | 261 const Operator* CheckedFloat64ToInt32(); |
| 261 const Operator* CheckedTaggedToInt32(); | 262 const Operator* CheckedTaggedToInt32(); |
| 262 const Operator* CheckedTaggedToFloat64(); | 263 const Operator* CheckedTaggedToFloat64(); |
| 263 | 264 |
| 264 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); | 265 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); |
| 265 const Operator* CheckTaggedHole(CheckTaggedHoleMode); | 266 const Operator* CheckTaggedHole(CheckTaggedHoleMode); |
| 266 | 267 |
| 267 const Operator* ObjectIsCallable(); | 268 const Operator* ObjectIsCallable(); |
| 268 const Operator* ObjectIsNumber(); | 269 const Operator* ObjectIsNumber(); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 295 Zone* const zone_; | 296 Zone* const zone_; |
| 296 | 297 |
| 297 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 298 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 298 }; | 299 }; |
| 299 | 300 |
| 300 } // namespace compiler | 301 } // namespace compiler |
| 301 } // namespace internal | 302 } // namespace internal |
| 302 } // namespace v8 | 303 } // namespace v8 |
| 303 | 304 |
| 304 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 305 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |