| 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); | 406 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); |
| 407 const Operator* CheckedTaggedToTaggedSigned(); | 407 const Operator* CheckedTaggedToTaggedSigned(); |
| 408 const Operator* CheckedTaggedToTaggedPointer(); | 408 const Operator* CheckedTaggedToTaggedPointer(); |
| 409 const Operator* CheckedTruncateTaggedToWord32(); | 409 const Operator* CheckedTruncateTaggedToWord32(); |
| 410 | 410 |
| 411 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); | 411 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); |
| 412 const Operator* CheckTaggedHole(); | 412 const Operator* CheckTaggedHole(); |
| 413 const Operator* ConvertTaggedHoleToUndefined(); | 413 const Operator* ConvertTaggedHoleToUndefined(); |
| 414 | 414 |
| 415 const Operator* ObjectIsDetectableCallable(); | 415 const Operator* ObjectIsDetectableCallable(); |
| 416 const Operator* ObjectIsNaN(); |
| 416 const Operator* ObjectIsNonCallable(); | 417 const Operator* ObjectIsNonCallable(); |
| 417 const Operator* ObjectIsNumber(); | 418 const Operator* ObjectIsNumber(); |
| 418 const Operator* ObjectIsReceiver(); | 419 const Operator* ObjectIsReceiver(); |
| 419 const Operator* ObjectIsSmi(); | 420 const Operator* ObjectIsSmi(); |
| 420 const Operator* ObjectIsString(); | 421 const Operator* ObjectIsString(); |
| 421 const Operator* ObjectIsUndetectable(); | 422 const Operator* ObjectIsUndetectable(); |
| 422 | 423 |
| 423 const Operator* ArgumentsFrame(); | 424 const Operator* ArgumentsFrame(); |
| 424 const Operator* ArgumentsLength(int formal_parameter_count, | 425 const Operator* ArgumentsLength(int formal_parameter_count, |
| 425 bool is_rest_length); | 426 bool is_rest_length); |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 Zone* const zone_; | 470 Zone* const zone_; |
| 470 | 471 |
| 471 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 472 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 472 }; | 473 }; |
| 473 | 474 |
| 474 } // namespace compiler | 475 } // namespace compiler |
| 475 } // namespace internal | 476 } // namespace internal |
| 476 } // namespace v8 | 477 } // namespace v8 |
| 477 | 478 |
| 478 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 479 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |