| 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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 const Operator* PlainPrimitiveToFloat64(); | 388 const Operator* PlainPrimitiveToFloat64(); |
| 389 | 389 |
| 390 const Operator* ChangeTaggedSignedToInt32(); | 390 const Operator* ChangeTaggedSignedToInt32(); |
| 391 const Operator* ChangeTaggedToInt32(); | 391 const Operator* ChangeTaggedToInt32(); |
| 392 const Operator* ChangeTaggedToUint32(); | 392 const Operator* ChangeTaggedToUint32(); |
| 393 const Operator* ChangeTaggedToFloat64(); | 393 const Operator* ChangeTaggedToFloat64(); |
| 394 const Operator* ChangeTaggedToTaggedSigned(); | 394 const Operator* ChangeTaggedToTaggedSigned(); |
| 395 const Operator* ChangeInt31ToTaggedSigned(); | 395 const Operator* ChangeInt31ToTaggedSigned(); |
| 396 const Operator* ChangeInt32ToTagged(); | 396 const Operator* ChangeInt32ToTagged(); |
| 397 const Operator* ChangeUint32ToTagged(); | 397 const Operator* ChangeUint32ToTagged(); |
| 398 const Operator* ChangeFloat64ToTagged(); | 398 const Operator* ChangeFloat64ToTagged(CheckForMinusZeroMode); |
| 399 const Operator* ChangeFloat64ToTaggedPointer(); | 399 const Operator* ChangeFloat64ToTaggedPointer(); |
| 400 const Operator* ChangeTaggedToBit(); | 400 const Operator* ChangeTaggedToBit(); |
| 401 const Operator* ChangeBitToTagged(); | 401 const Operator* ChangeBitToTagged(); |
| 402 const Operator* TruncateTaggedToWord32(); | 402 const Operator* TruncateTaggedToWord32(); |
| 403 const Operator* TruncateTaggedToFloat64(); | 403 const Operator* TruncateTaggedToFloat64(); |
| 404 const Operator* TruncateTaggedToBit(); | 404 const Operator* TruncateTaggedToBit(); |
| 405 const Operator* TruncateTaggedPointerToBit(); | 405 const Operator* TruncateTaggedPointerToBit(); |
| 406 | 406 |
| 407 const Operator* CheckIf(); | 407 const Operator* CheckIf(); |
| 408 const Operator* CheckBounds(); | 408 const Operator* CheckBounds(); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 Zone* const zone_; | 496 Zone* const zone_; |
| 497 | 497 |
| 498 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 498 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 499 }; | 499 }; |
| 500 | 500 |
| 501 } // namespace compiler | 501 } // namespace compiler |
| 502 } // namespace internal | 502 } // namespace internal |
| 503 } // namespace v8 | 503 } // namespace v8 |
| 504 | 504 |
| 505 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 505 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |