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

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

Issue 2659603003: Adapt use-site to new BoilerplateDescription. (Closed)
Patch Set: One more use-site. Created 3 years, 10 months 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
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/base/compiler-specific.h" 8 #include "src/base/compiler-specific.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/runtime/runtime.h" 10 #include "src/runtime/runtime.h"
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 const Operator* CreateArguments(CreateArgumentsType type); 596 const Operator* CreateArguments(CreateArgumentsType type);
597 const Operator* CreateArray(size_t arity, Handle<AllocationSite> site); 597 const Operator* CreateArray(size_t arity, Handle<AllocationSite> site);
598 const Operator* CreateClosure(Handle<SharedFunctionInfo> shared_info, 598 const Operator* CreateClosure(Handle<SharedFunctionInfo> shared_info,
599 VectorSlotPair const& feedback, 599 VectorSlotPair const& feedback,
600 PretenureFlag pretenure); 600 PretenureFlag pretenure);
601 const Operator* CreateIterResultObject(); 601 const Operator* CreateIterResultObject();
602 const Operator* CreateKeyValueArray(); 602 const Operator* CreateKeyValueArray();
603 const Operator* CreateLiteralArray(Handle<ConstantElementsPair> constant, 603 const Operator* CreateLiteralArray(Handle<ConstantElementsPair> constant,
604 int literal_flags, int literal_index, 604 int literal_flags, int literal_index,
605 int number_of_elements); 605 int number_of_elements);
606 const Operator* CreateLiteralObject(Handle<FixedArray> constant_properties, 606 const Operator* CreateLiteralObject(Handle<BoilerplateDescription> constant,
607 int literal_flags, int literal_index, 607 int literal_flags, int literal_index,
608 int number_of_properties); 608 int number_of_properties);
609 const Operator* CreateLiteralRegExp(Handle<String> constant_pattern, 609 const Operator* CreateLiteralRegExp(Handle<String> constant_pattern,
610 int literal_flags, int literal_index); 610 int literal_flags, int literal_index);
611 611
612 const Operator* CallForwardVarargs(uint32_t start_index, 612 const Operator* CallForwardVarargs(uint32_t start_index,
613 TailCallMode tail_call_mode); 613 TailCallMode tail_call_mode);
614 const Operator* CallFunction( 614 const Operator* CallFunction(
615 size_t arity, float frequency = 0.0f, 615 size_t arity, float frequency = 0.0f,
616 VectorSlotPair const& feedback = VectorSlotPair(), 616 VectorSlotPair const& feedback = VectorSlotPair(),
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 Zone* const zone_; 691 Zone* const zone_;
692 692
693 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 693 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
694 }; 694 };
695 695
696 } // namespace compiler 696 } // namespace compiler
697 } // namespace internal 697 } // namespace internal
698 } // namespace v8 698 } // namespace v8
699 699
700 #endif // V8_COMPILER_JS_OPERATOR_H_ 700 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698