| 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 const Operator* ChangeFloat64ToTagged(CheckForMinusZeroMode); | 304 const Operator* ChangeFloat64ToTagged(CheckForMinusZeroMode); |
| 305 const Operator* ChangeTaggedToBit(); | 305 const Operator* ChangeTaggedToBit(); |
| 306 const Operator* ChangeBitToTagged(); | 306 const Operator* ChangeBitToTagged(); |
| 307 const Operator* TruncateTaggedToWord32(); | 307 const Operator* TruncateTaggedToWord32(); |
| 308 const Operator* TruncateTaggedToFloat64(); | 308 const Operator* TruncateTaggedToFloat64(); |
| 309 const Operator* TruncateTaggedToBit(); | 309 const Operator* TruncateTaggedToBit(); |
| 310 | 310 |
| 311 const Operator* CheckIf(); | 311 const Operator* CheckIf(); |
| 312 const Operator* CheckBounds(); | 312 const Operator* CheckBounds(); |
| 313 const Operator* CheckMaps(int map_input_count); | 313 const Operator* CheckMaps(int map_input_count); |
| 314 |
| 315 const Operator* CheckHeapObject(); |
| 314 const Operator* CheckNumber(); | 316 const Operator* CheckNumber(); |
| 317 const Operator* CheckSmi(); |
| 315 const Operator* CheckString(); | 318 const Operator* CheckString(); |
| 316 const Operator* CheckTaggedPointer(); | |
| 317 const Operator* CheckTaggedSigned(); | |
| 318 | 319 |
| 319 const Operator* CheckedInt32Add(); | 320 const Operator* CheckedInt32Add(); |
| 320 const Operator* CheckedInt32Sub(); | 321 const Operator* CheckedInt32Sub(); |
| 321 const Operator* CheckedInt32Div(); | 322 const Operator* CheckedInt32Div(); |
| 322 const Operator* CheckedInt32Mod(); | 323 const Operator* CheckedInt32Mod(); |
| 323 const Operator* CheckedUint32Div(); | 324 const Operator* CheckedUint32Div(); |
| 324 const Operator* CheckedUint32Mod(); | 325 const Operator* CheckedUint32Mod(); |
| 325 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); | 326 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); |
| 327 const Operator* CheckedInt32ToTaggedSigned(); |
| 326 const Operator* CheckedUint32ToInt32(); | 328 const Operator* CheckedUint32ToInt32(); |
| 329 const Operator* CheckedUint32ToTaggedSigned(); |
| 327 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode); | 330 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode); |
| 328 const Operator* CheckedTaggedSignedToInt32(); | 331 const Operator* CheckedTaggedSignedToInt32(); |
| 329 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); | 332 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); |
| 330 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); | 333 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); |
| 334 const Operator* CheckedTaggedToTaggedSigned(); |
| 331 const Operator* CheckedTruncateTaggedToWord32(); | 335 const Operator* CheckedTruncateTaggedToWord32(); |
| 332 | 336 |
| 333 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); | 337 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); |
| 334 const Operator* CheckTaggedHole(); | 338 const Operator* CheckTaggedHole(); |
| 335 const Operator* ConvertTaggedHoleToUndefined(); | 339 const Operator* ConvertTaggedHoleToUndefined(); |
| 336 | 340 |
| 337 const Operator* ObjectIsCallable(); | 341 const Operator* ObjectIsCallable(); |
| 338 const Operator* ObjectIsNumber(); | 342 const Operator* ObjectIsNumber(); |
| 339 const Operator* ObjectIsReceiver(); | 343 const Operator* ObjectIsReceiver(); |
| 340 const Operator* ObjectIsSmi(); | 344 const Operator* ObjectIsSmi(); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 Zone* const zone_; | 387 Zone* const zone_; |
| 384 | 388 |
| 385 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 389 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 386 }; | 390 }; |
| 387 | 391 |
| 388 } // namespace compiler | 392 } // namespace compiler |
| 389 } // namespace internal | 393 } // namespace internal |
| 390 } // namespace v8 | 394 } // namespace v8 |
| 391 | 395 |
| 392 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 396 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |