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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 const Operator* ConvertTaggedHoleToUndefined(); | 412 const Operator* ConvertTaggedHoleToUndefined(); |
413 | 413 |
414 const Operator* ObjectIsCallable(); | 414 const Operator* ObjectIsCallable(); |
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 const Operator* TypeOfIsFunction(); |
| 423 |
422 // new-rest-parameter-elements | 424 // new-rest-parameter-elements |
423 const Operator* NewRestParameterElements(int parameter_count); | 425 const Operator* NewRestParameterElements(int parameter_count); |
424 | 426 |
425 // new-unmapped-arguments-elements | 427 // new-unmapped-arguments-elements |
426 const Operator* NewUnmappedArgumentsElements(int parameter_count); | 428 const Operator* NewUnmappedArgumentsElements(int parameter_count); |
427 | 429 |
428 // array-buffer-was-neutered buffer | 430 // array-buffer-was-neutered buffer |
429 const Operator* ArrayBufferWasNeutered(); | 431 const Operator* ArrayBufferWasNeutered(); |
430 | 432 |
431 // ensure-writable-fast-elements object, elements | 433 // ensure-writable-fast-elements object, elements |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 Zone* const zone_; | 469 Zone* const zone_; |
468 | 470 |
469 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 471 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
470 }; | 472 }; |
471 | 473 |
472 } // namespace compiler | 474 } // namespace compiler |
473 } // namespace internal | 475 } // namespace internal |
474 } // namespace v8 | 476 } // namespace v8 |
475 | 477 |
476 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 478 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
OLD | NEW |