OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_JS_OPERATOR_H_ | 5 #ifndef V8_COMPILER_JS_OPERATOR_H_ |
6 #define V8_COMPILER_JS_OPERATOR_H_ | 6 #define V8_COMPILER_JS_OPERATOR_H_ |
7 | 7 |
8 #include "src/compiler/type-hints.h" | 8 #include "src/compiler/type-hints.h" |
9 #include "src/runtime/runtime.h" | 9 #include "src/runtime/runtime.h" |
10 | 10 |
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 const Operator* ToName(); | 507 const Operator* ToName(); |
508 const Operator* ToObject(); | 508 const Operator* ToObject(); |
509 const Operator* Yield(); | 509 const Operator* Yield(); |
510 | 510 |
511 const Operator* Create(); | 511 const Operator* Create(); |
512 const Operator* CreateArguments(CreateArgumentsParameters::Type type, | 512 const Operator* CreateArguments(CreateArgumentsParameters::Type type, |
513 int start_index); | 513 int start_index); |
514 const Operator* CreateArray(size_t arity, Handle<AllocationSite> site); | 514 const Operator* CreateArray(size_t arity, Handle<AllocationSite> site); |
515 const Operator* CreateClosure(Handle<SharedFunctionInfo> shared_info, | 515 const Operator* CreateClosure(Handle<SharedFunctionInfo> shared_info, |
516 PretenureFlag pretenure); | 516 PretenureFlag pretenure); |
| 517 const Operator* CreateIterResultObject(); |
517 const Operator* CreateLiteralArray(Handle<FixedArray> constant_elements, | 518 const Operator* CreateLiteralArray(Handle<FixedArray> constant_elements, |
518 int literal_flags, int literal_index); | 519 int literal_flags, int literal_index); |
519 const Operator* CreateLiteralObject(Handle<FixedArray> constant_properties, | 520 const Operator* CreateLiteralObject(Handle<FixedArray> constant_properties, |
520 int literal_flags, int literal_index); | 521 int literal_flags, int literal_index); |
521 const Operator* CreateLiteralRegExp(Handle<String> constant_pattern, | 522 const Operator* CreateLiteralRegExp(Handle<String> constant_pattern, |
522 int literal_flags, int literal_index); | 523 int literal_flags, int literal_index); |
523 | 524 |
524 const Operator* CallFunction( | 525 const Operator* CallFunction( |
525 size_t arity, LanguageMode language_mode, | 526 size_t arity, LanguageMode language_mode, |
526 VectorSlotPair const& feedback = VectorSlotPair(), | 527 VectorSlotPair const& feedback = VectorSlotPair(), |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
585 Zone* const zone_; | 586 Zone* const zone_; |
586 | 587 |
587 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 588 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
588 }; | 589 }; |
589 | 590 |
590 } // namespace compiler | 591 } // namespace compiler |
591 } // namespace internal | 592 } // namespace internal |
592 } // namespace v8 | 593 } // namespace v8 |
593 | 594 |
594 #endif // V8_COMPILER_JS_OPERATOR_H_ | 595 #endif // V8_COMPILER_JS_OPERATOR_H_ |
OLD | NEW |