Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: src/compiler/js-operator.h

Issue 1531753002: [turbofan] Add support for CreateIterResultObject. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/js-intrinsic-lowering.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/compiler/js-intrinsic-lowering.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698