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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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* ObjectIsDetectableCallable(); | 414 const Operator* ObjectIsDetectableCallable(); |
| 415 const Operator* ObjectIsNaN(); |
415 const Operator* ObjectIsNonCallable(); | 416 const Operator* ObjectIsNonCallable(); |
416 const Operator* ObjectIsNumber(); | 417 const Operator* ObjectIsNumber(); |
417 const Operator* ObjectIsReceiver(); | 418 const Operator* ObjectIsReceiver(); |
418 const Operator* ObjectIsSmi(); | 419 const Operator* ObjectIsSmi(); |
419 const Operator* ObjectIsString(); | 420 const Operator* ObjectIsString(); |
420 const Operator* ObjectIsUndetectable(); | 421 const Operator* ObjectIsUndetectable(); |
421 | 422 |
422 // new-rest-parameter-elements | 423 // new-rest-parameter-elements |
423 const Operator* NewRestParameterElements(int parameter_count); | 424 const Operator* NewRestParameterElements(int parameter_count); |
424 | 425 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 Zone* const zone_; | 468 Zone* const zone_; |
468 | 469 |
469 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 470 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
470 }; | 471 }; |
471 | 472 |
472 } // namespace compiler | 473 } // namespace compiler |
473 } // namespace internal | 474 } // namespace internal |
474 } // namespace v8 | 475 } // namespace v8 |
475 | 476 |
476 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 477 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |