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/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 Loading... |
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 Loading... |
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_ |
OLD | NEW |