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

Side by Side Diff: src/factory.h

Issue 1563213002: Type Feedback Vector lives in the closure (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Exclude an ignition test. Created 4 years, 11 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
« no previous file with comments | « src/deoptimizer.h ('k') | src/factory.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 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 #include "src/messages.h" 9 #include "src/messages.h"
10 #include "src/type-feedback-vector.h" 10 #include "src/type-feedback-vector.h"
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 &isolate()->heap()->roots_[Heap::k##name##RootIndex])); \ 622 &isolate()->heap()->roots_[Heap::k##name##RootIndex])); \
623 } 623 }
624 PUBLIC_SYMBOL_LIST(SYMBOL_ACCESSOR) 624 PUBLIC_SYMBOL_LIST(SYMBOL_ACCESSOR)
625 WELL_KNOWN_SYMBOL_LIST(SYMBOL_ACCESSOR) 625 WELL_KNOWN_SYMBOL_LIST(SYMBOL_ACCESSOR)
626 #undef SYMBOL_ACCESSOR 626 #undef SYMBOL_ACCESSOR
627 627
628 // Allocates a new SharedFunctionInfo object. 628 // Allocates a new SharedFunctionInfo object.
629 Handle<SharedFunctionInfo> NewSharedFunctionInfo( 629 Handle<SharedFunctionInfo> NewSharedFunctionInfo(
630 Handle<String> name, int number_of_literals, FunctionKind kind, 630 Handle<String> name, int number_of_literals, FunctionKind kind,
631 Handle<Code> code, Handle<ScopeInfo> scope_info, 631 Handle<Code> code, Handle<ScopeInfo> scope_info,
632 Handle<TypeFeedbackVector> feedback_vector); 632 Handle<TypeFeedbackMetadata> feedback_metadata);
633 Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name, 633 Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name,
634 MaybeHandle<Code> code, 634 MaybeHandle<Code> code,
635 bool is_constructor); 635 bool is_constructor);
636 636
637 // Allocates a new JSMessageObject object. 637 // Allocates a new JSMessageObject object.
638 Handle<JSMessageObject> NewJSMessageObject(MessageTemplate::Template message, 638 Handle<JSMessageObject> NewJSMessageObject(MessageTemplate::Template message,
639 Handle<Object> argument, 639 Handle<Object> argument,
640 int start_position, 640 int start_position,
641 int end_position, 641 int end_position,
642 Handle<Object> script, 642 Handle<Object> script,
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 Handle<JSFunction> NewFunction(Handle<Map> map, 703 Handle<JSFunction> NewFunction(Handle<Map> map,
704 Handle<SharedFunctionInfo> info, 704 Handle<SharedFunctionInfo> info,
705 Handle<Context> context, 705 Handle<Context> context,
706 PretenureFlag pretenure = TENURED); 706 PretenureFlag pretenure = TENURED);
707 }; 707 };
708 708
709 } // namespace internal 709 } // namespace internal
710 } // namespace v8 710 } // namespace v8
711 711
712 #endif // V8_FACTORY_H_ 712 #endif // V8_FACTORY_H_
OLDNEW
« no previous file with comments | « src/deoptimizer.h ('k') | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698