| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); | 404 const Operator* CheckedTaggedToInt32(CheckForMinusZeroMode); |
| 405 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); | 405 const Operator* CheckedTaggedToFloat64(CheckTaggedInputMode); |
| 406 const Operator* CheckedTaggedToTaggedSigned(); | 406 const Operator* CheckedTaggedToTaggedSigned(); |
| 407 const Operator* CheckedTaggedToTaggedPointer(); | 407 const Operator* CheckedTaggedToTaggedPointer(); |
| 408 const Operator* CheckedTruncateTaggedToWord32(); | 408 const Operator* CheckedTruncateTaggedToWord32(); |
| 409 | 409 |
| 410 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); | 410 const Operator* CheckFloat64Hole(CheckFloat64HoleMode); |
| 411 const Operator* CheckTaggedHole(); | 411 const Operator* CheckTaggedHole(); |
| 412 const Operator* ConvertTaggedHoleToUndefined(); | 412 const Operator* ConvertTaggedHoleToUndefined(); |
| 413 | 413 |
| 414 const Operator* ObjectIsCallable(); | 414 const Operator* ObjectIsDetectableCallable(); |
| 415 const Operator* ObjectIsNonCallable(); | 415 const Operator* ObjectIsNonCallable(); |
| 416 const Operator* ObjectIsNumber(); | 416 const Operator* ObjectIsNumber(); |
| 417 const Operator* ObjectIsReceiver(); | 417 const Operator* ObjectIsReceiver(); |
| 418 const Operator* ObjectIsSmi(); | 418 const Operator* ObjectIsSmi(); |
| 419 const Operator* ObjectIsString(); | 419 const Operator* ObjectIsString(); |
| 420 const Operator* ObjectIsUndetectable(); | 420 const Operator* ObjectIsUndetectable(); |
| 421 | 421 |
| 422 // new-rest-parameter-elements | 422 // new-rest-parameter-elements |
| 423 const Operator* NewRestParameterElements(int parameter_count); | 423 const Operator* NewRestParameterElements(int parameter_count); |
| 424 | 424 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 Zone* const zone_; | 467 Zone* const zone_; |
| 468 | 468 |
| 469 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 469 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 470 }; | 470 }; |
| 471 | 471 |
| 472 } // namespace compiler | 472 } // namespace compiler |
| 473 } // namespace internal | 473 } // namespace internal |
| 474 } // namespace v8 | 474 } // namespace v8 |
| 475 | 475 |
| 476 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 476 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |