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_FACTORY_H_ | 5 #ifndef V8_FACTORY_H_ |
6 #define V8_FACTORY_H_ | 6 #define V8_FACTORY_H_ |
7 | 7 |
8 #include "src/isolate.h" | 8 #include "src/isolate.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 inline void set_string_table(Handle<StringTable> table) { | 604 inline void set_string_table(Handle<StringTable> table) { |
605 isolate()->heap()->set_string_table(*table); | 605 isolate()->heap()->set_string_table(*table); |
606 } | 606 } |
607 | 607 |
608 Handle<String> hidden_string() { | 608 Handle<String> hidden_string() { |
609 return Handle<String>(&isolate()->heap()->hidden_string_); | 609 return Handle<String>(&isolate()->heap()->hidden_string_); |
610 } | 610 } |
611 | 611 |
612 // Allocates a new SharedFunctionInfo object. | 612 // Allocates a new SharedFunctionInfo object. |
613 Handle<SharedFunctionInfo> NewSharedFunctionInfo( | 613 Handle<SharedFunctionInfo> NewSharedFunctionInfo( |
614 Handle<String> name, | 614 Handle<String> name, int number_of_literals, bool is_generator, |
615 int number_of_literals, | 615 bool is_arrow, Handle<Code> code, Handle<ScopeInfo> scope_info, |
616 bool is_generator, | |
617 Handle<Code> code, | |
618 Handle<ScopeInfo> scope_info, | |
619 Handle<FixedArray> feedback_vector); | 616 Handle<FixedArray> feedback_vector); |
620 Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name, | 617 Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name, |
621 MaybeHandle<Code> code); | 618 MaybeHandle<Code> code); |
622 | 619 |
623 // Allocate a new type feedback vector | 620 // Allocate a new type feedback vector |
624 Handle<FixedArray> NewTypeFeedbackVector(int slot_count); | 621 Handle<FixedArray> NewTypeFeedbackVector(int slot_count); |
625 | 622 |
626 // Allocates a new JSMessageObject object. | 623 // Allocates a new JSMessageObject object. |
627 Handle<JSMessageObject> NewJSMessageObject( | 624 Handle<JSMessageObject> NewJSMessageObject( |
628 Handle<String> type, | 625 Handle<String> type, |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 PretenureFlag pretenure = TENURED); | 707 PretenureFlag pretenure = TENURED); |
711 | 708 |
712 Handle<JSFunction> NewFunction(Handle<Map> map, | 709 Handle<JSFunction> NewFunction(Handle<Map> map, |
713 Handle<String> name, | 710 Handle<String> name, |
714 MaybeHandle<Code> maybe_code); | 711 MaybeHandle<Code> maybe_code); |
715 }; | 712 }; |
716 | 713 |
717 } } // namespace v8::internal | 714 } } // namespace v8::internal |
718 | 715 |
719 #endif // V8_FACTORY_H_ | 716 #endif // V8_FACTORY_H_ |
OLD | NEW |