| 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/base/compiler-specific.h" | 10 #include "src/base/compiler-specific.h" |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 const Operator* ChangeInt31ToTaggedSigned(); | 371 const Operator* ChangeInt31ToTaggedSigned(); |
| 372 const Operator* ChangeInt32ToTagged(); | 372 const Operator* ChangeInt32ToTagged(); |
| 373 const Operator* ChangeUint32ToTagged(); | 373 const Operator* ChangeUint32ToTagged(); |
| 374 const Operator* ChangeFloat64ToTagged(); | 374 const Operator* ChangeFloat64ToTagged(); |
| 375 const Operator* ChangeFloat64ToTaggedPointer(); | 375 const Operator* ChangeFloat64ToTaggedPointer(); |
| 376 const Operator* ChangeTaggedToBit(); | 376 const Operator* ChangeTaggedToBit(); |
| 377 const Operator* ChangeBitToTagged(); | 377 const Operator* ChangeBitToTagged(); |
| 378 const Operator* TruncateTaggedToWord32(); | 378 const Operator* TruncateTaggedToWord32(); |
| 379 const Operator* TruncateTaggedToFloat64(); | 379 const Operator* TruncateTaggedToFloat64(); |
| 380 const Operator* TruncateTaggedToBit(); | 380 const Operator* TruncateTaggedToBit(); |
| 381 const Operator* TruncateTaggedPointerToBit(); |
| 381 | 382 |
| 382 const Operator* CheckIf(); | 383 const Operator* CheckIf(); |
| 383 const Operator* CheckBounds(); | 384 const Operator* CheckBounds(); |
| 384 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>); | 385 const Operator* CheckMaps(CheckMapsFlags, ZoneHandleSet<Map>); |
| 385 | 386 |
| 386 const Operator* CheckHeapObject(); | 387 const Operator* CheckHeapObject(); |
| 387 const Operator* CheckInternalizedString(); | 388 const Operator* CheckInternalizedString(); |
| 388 const Operator* CheckNumber(); | 389 const Operator* CheckNumber(); |
| 389 const Operator* CheckSmi(); | 390 const Operator* CheckSmi(); |
| 390 const Operator* CheckString(); | 391 const Operator* CheckString(); |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 Zone* const zone_; | 471 Zone* const zone_; |
| 471 | 472 |
| 472 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 473 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 473 }; | 474 }; |
| 474 | 475 |
| 475 } // namespace compiler | 476 } // namespace compiler |
| 476 } // namespace internal | 477 } // namespace internal |
| 477 } // namespace v8 | 478 } // namespace v8 |
| 478 | 479 |
| 479 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 480 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |