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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); | 428 const Operator* CheckedInt32Mul(CheckForMinusZeroMode); |
429 const Operator* CheckedInt32ToTaggedSigned(); | 429 const Operator* CheckedInt32ToTaggedSigned(); |
430 const Operator* CheckedUint32ToInt32(); | 430 const Operator* CheckedUint32ToInt32(); |
431 const Operator* CheckedUint32ToTaggedSigned(); | 431 const Operator* CheckedUint32ToTaggedSigned(); |
432 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode); | 432 const Operator* CheckedFloat64ToInt32(CheckForMinusZeroMode); |
433 const Operator* CheckedTaggedSignedToInt32(); | 433 const Operator* CheckedTaggedSignedToInt32(); |
434 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); | 434 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); |
435 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); | 435 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); |
436 const Operator* CheckedTaggedToTaggedSigned(); | 436 const Operator* CheckedTaggedToTaggedSigned(); |
437 const Operator* CheckedTaggedToTaggedPointer(); | 437 const Operator* CheckedTaggedToTaggedPointer(); |
438 const Operator* CheckedTruncateTaggedToWord32(); | 438 const Operator* CheckedTruncateTaggedToWord32(CheckTaggedInputMode); |
439 | 439 |
440 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); | 440 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); |
441 const Operator* CheckTaggedHole(); | 441 const Operator* CheckTaggedHole(); |
442 const Operator* CheckNotTaggedHole(); | 442 const Operator* CheckNotTaggedHole(); |
443 const Operator* ConvertTaggedHoleToUndefined(); | 443 const Operator* ConvertTaggedHoleToUndefined(); |
444 | 444 |
445 const Operator* ObjectIsDetectableCallable(); | 445 const Operator* ObjectIsDetectableCallable(); |
446 const Operator* ObjectIsNaN(); | 446 const Operator* ObjectIsNaN(); |
447 const Operator* ObjectIsNonCallable(); | 447 const Operator* ObjectIsNonCallable(); |
448 const Operator* ObjectIsNumber(); | 448 const Operator* ObjectIsNumber(); |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 Zone* const zone_; | 501 Zone* const zone_; |
502 | 502 |
503 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 503 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
504 }; | 504 }; |
505 | 505 |
506 } // namespace compiler | 506 } // namespace compiler |
507 } // namespace internal | 507 } // namespace internal |
508 } // namespace v8 | 508 } // namespace v8 |
509 | 509 |
510 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 510 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |