1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
10 #include "src/assembler.h"
11 #include "src/ast-value-factory.h"
12 #include "src/bailout-reason.h"
13 #include "src/factory.h"
14 #include "src/isolate.h"
15 #include "src/jsregexp.h"
16 #include "src/list-inl.h"
17 #include "src/modules.h"
18 #include "src/runtime/runtime.h"
19 #include "src/small-pointer-list.h"
20 #include "src/smart-pointers.h"
21 #include "src/token.h"
22 #include "src/types.h"
23 #include "src/utils.h"
24 #include "src/variables.h"
29 // The abstract syntax tree is an intermediate, light-weight
30 // representation of the parsed JavaScript code suitable for
31 // compilation to native code.
33 // Nodes are allocated in a separate zone, which allows faster
34 // allocation and constant-time deallocation of the entire syntax
38 // ----------------------------------------------------------------------------
39 // Nodes of the abstract syntax tree. Only concrete classes are
42 #define DECLARATION_NODE_LIST(V) \
43 V(VariableDeclaration) \
44 V(FunctionDeclaration) \
45 V(ModuleDeclaration) \
46 V(ImportDeclaration) \
49 #define MODULE_NODE_LIST(V) \
54 #define STATEMENT_NODE_LIST(V) \
57 V(ExpressionStatement) \
60 V(ContinueStatement) \
70 V(TryCatchStatement) \
71 V(TryFinallyStatement) \
74 #define EXPRESSION_NODE_LIST(V) \
77 V(NativeFunctionLiteral) \
99 #define AST_NODE_LIST(V) \
100 DECLARATION_NODE_LIST(V) \
101 MODULE_NODE_LIST(V) \
102 STATEMENT_NODE_LIST(V) \
103 EXPRESSION_NODE_LIST(V)
105 // Forward declarations
106 class AstNodeFactory;
110 class BreakableStatement;
112 class IterationStatement;
113 class MaterializedLiteral;
115 class TypeFeedbackOracle;
117 class RegExpAlternative;
118 class RegExpAssertion;
120 class RegExpBackReference;
122 class RegExpCharacterClass;
123 class RegExpCompiler;
124 class RegExpDisjunction;
126 class RegExpLookahead;
127 class RegExpQuantifier;
130 #define DEF_FORWARD_DECLARATION(type) class type;
131 AST_NODE_LIST(DEF_FORWARD_DECLARATION)
132 #undef DEF_FORWARD_DECLARATION
135 // Typedef only introduced to avoid unreadable code.
136 // Please do appreciate the required space in "> >".
137 typedef ZoneList<Handle<String> > ZoneStringList;
138 typedef ZoneList<Handle<Object> > ZoneObjectList;
141 #define DECLARE_NODE_TYPE(type) \
142 void Accept(AstVisitor* v) OVERRIDE; \
143 AstNode::NodeType node_type() const FINAL { return AstNode::k##type; } \
144 friend class AstNodeFactory;
147 enum AstPropertiesFlag {
154 class FeedbackVectorRequirements {
156 FeedbackVectorRequirements(int slots, int ic_slots)
157 : slots_(slots), ic_slots_(ic_slots) {}
159 int slots() const { return slots_; }
160 int ic_slots() const { return ic_slots_; }
168 class AstProperties FINAL BASE_EMBEDDED {
170 class Flags : public EnumSet<AstPropertiesFlag, int> {};
172 AstProperties() : node_count_(0) {}
174 Flags* flags() { return &flags_; }
175 int node_count() { return node_count_; }
176 void add_node_count(int count) { node_count_ += count; }
178 int slots() const { return spec_.slots(); }
179 void increase_slots(int count) { spec_.increase_slots(count); }
181 int ic_slots() const { return spec_.ic_slots(); }
182 void increase_ic_slots(int count) { spec_.increase_ic_slots(count); }
183 void SetKind(int ic_slot, Code::Kind kind) { spec_.SetKind(ic_slot, kind); }
184 const FeedbackVectorSpec& get_spec() const { return spec_; }
189 FeedbackVectorSpec spec_;
193 class AstNode: public ZoneObject {
195 #define DECLARE_TYPE_ENUM(type) k##type,
197 AST_NODE_LIST(DECLARE_TYPE_ENUM)
200 #undef DECLARE_TYPE_ENUM
202 void* operator new(size_t size, Zone* zone) { return zone->New(size); }
204 explicit AstNode(int position): position_(position) {}
205 virtual ~AstNode() {}
207 virtual void Accept(AstVisitor* v) = 0;
208 virtual NodeType node_type() const = 0;
209 int position() const { return position_; }
211 // Type testing & conversion functions overridden by concrete subclasses.
212 #define DECLARE_NODE_FUNCTIONS(type) \
213 bool Is##type() const { return node_type() == AstNode::k##type; } \
215 return Is##type() ? reinterpret_cast<type*>(this) : NULL; \
217 const type* As##type() const { \
218 return Is##type() ? reinterpret_cast<const type*>(this) : NULL; \
220 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS)
221 #undef DECLARE_NODE_FUNCTIONS
223 virtual BreakableStatement* AsBreakableStatement() { return NULL; }
224 virtual IterationStatement* AsIterationStatement() { return NULL; }
225 virtual MaterializedLiteral* AsMaterializedLiteral() { return NULL; }
227 // The interface for feedback slots, with default no-op implementations for
228 // node types which don't actually have this. Note that this is conceptually
229 // not really nice, but multiple inheritance would introduce yet another
230 // vtable entry per node, something we don't want for space reasons.
231 virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
233 return FeedbackVectorRequirements(0, 0);
235 virtual void SetFirstFeedbackSlot(FeedbackVectorSlot slot) { UNREACHABLE(); }
236 virtual void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot) {
239 // Each ICSlot stores a kind of IC which the participating node should know.
240 virtual Code::Kind FeedbackICSlotKind(int index) {
242 return Code::NUMBER_OF_KINDS;
246 // Hidden to prevent accidental usage. It would have to load the
247 // current zone from the TLS.
248 void* operator new(size_t size);
250 friend class CaseClause; // Generates AST IDs.
256 class Statement : public AstNode {
258 explicit Statement(Zone* zone, int position) : AstNode(position) {}
260 bool IsEmpty() { return AsEmptyStatement() != NULL; }
261 virtual bool IsJump() const { return false; }
265 class SmallMapList FINAL {
268 SmallMapList(int capacity, Zone* zone) : list_(capacity, zone) {}
270 void Reserve(int capacity, Zone* zone) { list_.Reserve(capacity, zone); }
271 void Clear() { list_.Clear(); }
272 void Sort() { list_.Sort(); }
274 bool is_empty() const { return list_.is_empty(); }
275 int length() const { return list_.length(); }
277 void AddMapIfMissing(Handle<Map> map, Zone* zone) {
278 if (!Map::TryUpdate(map).ToHandle(&map)) return;
279 for (int i = 0; i < length(); ++i) {
280 if (at(i).is_identical_to(map)) return;
285 void FilterForPossibleTransitions(Map* root_map) {
286 for (int i = list_.length() - 1; i >= 0; i--) {
287 if (at(i)->FindRootMap() != root_map) {
288 list_.RemoveElement(list_.at(i));
293 void Add(Handle<Map> handle, Zone* zone) {
294 list_.Add(handle.location(), zone);
297 Handle<Map> at(int i) const {
298 return Handle<Map>(list_.at(i));
301 Handle<Map> first() const { return at(0); }
302 Handle<Map> last() const { return at(length() - 1); }
305 // The list stores pointers to Map*, that is Map**, so it's GC safe.
306 SmallPointerList<Map*> list_;
308 DISALLOW_COPY_AND_ASSIGN(SmallMapList);
312 class Expression : public AstNode {
315 // Not assigned a context yet, or else will not be visited during
318 // Evaluated for its side effects.
320 // Evaluated for its value (and side effects).
322 // Evaluated for control flow (and side effects).
326 virtual bool IsValidReferenceExpression() const { return false; }
328 // Helpers for ToBoolean conversion.
329 virtual bool ToBooleanIsTrue() const { return false; }
330 virtual bool ToBooleanIsFalse() const { return false; }
332 // Symbols that cannot be parsed as array indices are considered property
333 // names. We do not treat symbols that can be array indexes as property
334 // names because [] for string objects is handled only by keyed ICs.
335 virtual bool IsPropertyName() const { return false; }
337 // True iff the expression is a literal represented as a smi.
338 bool IsSmiLiteral() const;
340 // True iff the expression is a string literal.
341 bool IsStringLiteral() const;
343 // True iff the expression is the null literal.
344 bool IsNullLiteral() const;
346 // True if we can prove that the expression is the undefined literal.
347 bool IsUndefinedLiteral(Isolate* isolate) const;
349 // Expression type bounds
350 Bounds bounds() const { return bounds_; }
351 void set_bounds(Bounds bounds) { bounds_ = bounds; }
353 // Whether the expression is parenthesized
354 bool is_parenthesized() const {
355 return IsParenthesizedField::decode(bit_field_);
357 bool is_multi_parenthesized() const {
358 return IsMultiParenthesizedField::decode(bit_field_);
360 void increase_parenthesization_level() {
362 IsMultiParenthesizedField::update(bit_field_, is_parenthesized());
363 bit_field_ = IsParenthesizedField::update(bit_field_, true);
366 // Type feedback information for assignments and properties.
367 virtual bool IsMonomorphic() {
371 virtual SmallMapList* GetReceiverTypes() {
375 virtual KeyedAccessStoreMode GetStoreMode() const {
377 return STANDARD_STORE;
379 virtual IcCheckType GetKeyType() const {
384 // TODO(rossberg): this should move to its own AST node eventually.
385 virtual void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle);
386 byte to_boolean_types() const {
387 return ToBooleanTypesField::decode(bit_field_);
390 void set_base_id(int id) { base_id_ = id; }
391 static int num_ids() { return parent_num_ids() + 2; }
392 BailoutId id() const { return BailoutId(local_id(0)); }
393 TypeFeedbackId test_id() const { return TypeFeedbackId(local_id(1)); }
396 Expression(Zone* zone, int pos)
398 base_id_(BailoutId::None().ToInt()),
399 bounds_(Bounds::Unbounded(zone)),
401 static int parent_num_ids() { return 0; }
402 void set_to_boolean_types(byte types) {
403 bit_field_ = ToBooleanTypesField::update(bit_field_, types);
406 int base_id() const {
407 DCHECK(!BailoutId(base_id_).IsNone());
412 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
416 class ToBooleanTypesField : public BitField16<byte, 0, 8> {};
417 class IsParenthesizedField : public BitField16<bool, 8, 1> {};
418 class IsMultiParenthesizedField : public BitField16<bool, 9, 1> {};
420 // Ends with 16-bit field; deriving classes in turn begin with
421 // 16-bit fields for optimum packing efficiency.
425 class BreakableStatement : public Statement {
428 TARGET_FOR_ANONYMOUS,
429 TARGET_FOR_NAMED_ONLY
432 // The labels associated with this statement. May be NULL;
433 // if it is != NULL, guaranteed to contain at least one entry.
434 ZoneList<const AstRawString*>* labels() const { return labels_; }
436 // Type testing & conversion.
437 BreakableStatement* AsBreakableStatement() FINAL { return this; }
440 Label* break_target() { return &break_target_; }
443 bool is_target_for_anonymous() const {
444 return breakable_type_ == TARGET_FOR_ANONYMOUS;
447 void set_base_id(int id) { base_id_ = id; }
448 static int num_ids() { return parent_num_ids() + 2; }
449 BailoutId EntryId() const { return BailoutId(local_id(0)); }
450 BailoutId ExitId() const { return BailoutId(local_id(1)); }
453 BreakableStatement(Zone* zone, ZoneList<const AstRawString*>* labels,
454 BreakableType breakable_type, int position)
455 : Statement(zone, position),
457 breakable_type_(breakable_type),
458 base_id_(BailoutId::None().ToInt()) {
459 DCHECK(labels == NULL || labels->length() > 0);
461 static int parent_num_ids() { return 0; }
463 int base_id() const {
464 DCHECK(!BailoutId(base_id_).IsNone());
469 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
471 ZoneList<const AstRawString*>* labels_;
472 BreakableType breakable_type_;
478 class Block FINAL : public BreakableStatement {
480 DECLARE_NODE_TYPE(Block)
482 void AddStatement(Statement* statement, Zone* zone) {
483 statements_.Add(statement, zone);
486 ZoneList<Statement*>* statements() { return &statements_; }
487 bool is_initializer_block() const { return is_initializer_block_; }
489 static int num_ids() { return parent_num_ids() + 1; }
490 BailoutId DeclsId() const { return BailoutId(local_id(0)); }
492 bool IsJump() const OVERRIDE {
493 return !statements_.is_empty() && statements_.last()->IsJump()
494 && labels() == NULL; // Good enough as an approximation...
497 Scope* scope() const { return scope_; }
498 void set_scope(Scope* scope) { scope_ = scope; }
501 Block(Zone* zone, ZoneList<const AstRawString*>* labels, int capacity,
502 bool is_initializer_block, int pos)
503 : BreakableStatement(zone, labels, TARGET_FOR_NAMED_ONLY, pos),
504 statements_(capacity, zone),
505 is_initializer_block_(is_initializer_block),
507 static int parent_num_ids() { return BreakableStatement::num_ids(); }
510 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
512 ZoneList<Statement*> statements_;
513 bool is_initializer_block_;
518 class Declaration : public AstNode {
520 VariableProxy* proxy() const { return proxy_; }
521 VariableMode mode() const { return mode_; }
522 Scope* scope() const { return scope_; }
523 virtual InitializationFlag initialization() const = 0;
524 virtual bool IsInlineable() const;
527 Declaration(Zone* zone, VariableProxy* proxy, VariableMode mode, Scope* scope,
529 : AstNode(pos), mode_(mode), proxy_(proxy), scope_(scope) {
530 DCHECK(IsDeclaredVariableMode(mode));
535 VariableProxy* proxy_;
537 // Nested scope from which the declaration originated.
542 class VariableDeclaration FINAL : public Declaration {
544 DECLARE_NODE_TYPE(VariableDeclaration)
546 InitializationFlag initialization() const OVERRIDE {
547 return mode() == VAR ? kCreatedInitialized : kNeedsInitialization;
551 VariableDeclaration(Zone* zone,
552 VariableProxy* proxy,
556 : Declaration(zone, proxy, mode, scope, pos) {
561 class FunctionDeclaration FINAL : public Declaration {
563 DECLARE_NODE_TYPE(FunctionDeclaration)
565 FunctionLiteral* fun() const { return fun_; }
566 InitializationFlag initialization() const OVERRIDE {
567 return kCreatedInitialized;
569 bool IsInlineable() const OVERRIDE;
572 FunctionDeclaration(Zone* zone,
573 VariableProxy* proxy,
575 FunctionLiteral* fun,
578 : Declaration(zone, proxy, mode, scope, pos),
580 DCHECK(mode == VAR || mode == LET || mode == CONST);
585 FunctionLiteral* fun_;
589 class ModuleDeclaration FINAL : public Declaration {
591 DECLARE_NODE_TYPE(ModuleDeclaration)
593 Module* module() const { return module_; }
594 InitializationFlag initialization() const OVERRIDE {
595 return kCreatedInitialized;
599 ModuleDeclaration(Zone* zone, VariableProxy* proxy, Module* module,
600 Scope* scope, int pos)
601 : Declaration(zone, proxy, CONST, scope, pos), module_(module) {}
608 class ImportDeclaration FINAL : public Declaration {
610 DECLARE_NODE_TYPE(ImportDeclaration)
612 Module* module() const { return module_; }
613 InitializationFlag initialization() const OVERRIDE {
614 return kCreatedInitialized;
618 ImportDeclaration(Zone* zone,
619 VariableProxy* proxy,
623 : Declaration(zone, proxy, LET, scope, pos),
632 class ExportDeclaration FINAL : public Declaration {
634 DECLARE_NODE_TYPE(ExportDeclaration)
636 InitializationFlag initialization() const OVERRIDE {
637 return kCreatedInitialized;
641 ExportDeclaration(Zone* zone, VariableProxy* proxy, Scope* scope, int pos)
642 : Declaration(zone, proxy, LET, scope, pos) {}
646 class Module : public AstNode {
648 ModuleDescriptor* descriptor() const { return descriptor_; }
649 Block* body() const { return body_; }
652 Module(Zone* zone, int pos)
653 : AstNode(pos), descriptor_(ModuleDescriptor::New(zone)), body_(NULL) {}
654 Module(Zone* zone, ModuleDescriptor* descriptor, int pos, Block* body = NULL)
655 : AstNode(pos), descriptor_(descriptor), body_(body) {}
658 ModuleDescriptor* descriptor_;
663 class ModuleLiteral FINAL : public Module {
665 DECLARE_NODE_TYPE(ModuleLiteral)
668 ModuleLiteral(Zone* zone, Block* body, ModuleDescriptor* descriptor, int pos)
669 : Module(zone, descriptor, pos, body) {}
673 class ModulePath FINAL : public Module {
675 DECLARE_NODE_TYPE(ModulePath)
677 Module* module() const { return module_; }
678 Handle<String> name() const { return name_->string(); }
681 ModulePath(Zone* zone, Module* module, const AstRawString* name, int pos)
682 : Module(zone, pos), module_(module), name_(name) {}
686 const AstRawString* name_;
690 class ModuleUrl FINAL : public Module {
692 DECLARE_NODE_TYPE(ModuleUrl)
694 Handle<String> url() const { return url_; }
697 ModuleUrl(Zone* zone, Handle<String> url, int pos)
698 : Module(zone, pos), url_(url) {
706 class ModuleStatement FINAL : public Statement {
708 DECLARE_NODE_TYPE(ModuleStatement)
710 Block* body() const { return body_; }
713 ModuleStatement(Zone* zone, Block* body, int pos)
714 : Statement(zone, pos), body_(body) {}
721 class IterationStatement : public BreakableStatement {
723 // Type testing & conversion.
724 IterationStatement* AsIterationStatement() FINAL { return this; }
726 Statement* body() const { return body_; }
728 static int num_ids() { return parent_num_ids() + 1; }
729 BailoutId OsrEntryId() const { return BailoutId(local_id(0)); }
730 virtual BailoutId ContinueId() const = 0;
731 virtual BailoutId StackCheckId() const = 0;
734 Label* continue_target() { return &continue_target_; }
737 IterationStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
738 : BreakableStatement(zone, labels, TARGET_FOR_ANONYMOUS, pos),
740 static int parent_num_ids() { return BreakableStatement::num_ids(); }
741 void Initialize(Statement* body) { body_ = body; }
744 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
747 Label continue_target_;
751 class DoWhileStatement FINAL : public IterationStatement {
753 DECLARE_NODE_TYPE(DoWhileStatement)
755 void Initialize(Expression* cond, Statement* body) {
756 IterationStatement::Initialize(body);
760 Expression* cond() const { return cond_; }
762 static int num_ids() { return parent_num_ids() + 2; }
763 BailoutId ContinueId() const OVERRIDE { return BailoutId(local_id(0)); }
764 BailoutId StackCheckId() const OVERRIDE { return BackEdgeId(); }
765 BailoutId BackEdgeId() const { return BailoutId(local_id(1)); }
768 DoWhileStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
769 : IterationStatement(zone, labels, pos), cond_(NULL) {}
770 static int parent_num_ids() { return IterationStatement::num_ids(); }
773 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
779 class WhileStatement FINAL : public IterationStatement {
781 DECLARE_NODE_TYPE(WhileStatement)
783 void Initialize(Expression* cond, Statement* body) {
784 IterationStatement::Initialize(body);
788 Expression* cond() const { return cond_; }
790 static int num_ids() { return parent_num_ids() + 1; }
791 BailoutId ContinueId() const OVERRIDE { return EntryId(); }
792 BailoutId StackCheckId() const OVERRIDE { return BodyId(); }
793 BailoutId BodyId() const { return BailoutId(local_id(0)); }
796 WhileStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
797 : IterationStatement(zone, labels, pos), cond_(NULL) {}
798 static int parent_num_ids() { return IterationStatement::num_ids(); }
801 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
807 class ForStatement FINAL : public IterationStatement {
809 DECLARE_NODE_TYPE(ForStatement)
811 void Initialize(Statement* init,
815 IterationStatement::Initialize(body);
821 Statement* init() const { return init_; }
822 Expression* cond() const { return cond_; }
823 Statement* next() const { return next_; }
825 static int num_ids() { return parent_num_ids() + 2; }
826 BailoutId ContinueId() const OVERRIDE { return BailoutId(local_id(0)); }
827 BailoutId StackCheckId() const OVERRIDE { return BodyId(); }
828 BailoutId BodyId() const { return BailoutId(local_id(1)); }
831 ForStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
832 : IterationStatement(zone, labels, pos),
836 static int parent_num_ids() { return IterationStatement::num_ids(); }
839 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
847 class ForEachStatement : public IterationStatement {
850 ENUMERATE, // for (each in subject) body;
851 ITERATE // for (each of subject) body;
854 void Initialize(Expression* each, Expression* subject, Statement* body) {
855 IterationStatement::Initialize(body);
860 Expression* each() const { return each_; }
861 Expression* subject() const { return subject_; }
864 ForEachStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
865 : IterationStatement(zone, labels, pos), each_(NULL), subject_(NULL) {}
869 Expression* subject_;
873 class ForInStatement FINAL : public ForEachStatement {
875 DECLARE_NODE_TYPE(ForInStatement)
877 Expression* enumerable() const {
881 // Type feedback information.
882 virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
883 Isolate* isolate) OVERRIDE {
884 return FeedbackVectorRequirements(1, 0);
886 void SetFirstFeedbackSlot(FeedbackVectorSlot slot) OVERRIDE {
887 for_in_feedback_slot_ = slot;
890 FeedbackVectorSlot ForInFeedbackSlot() {
891 DCHECK(!for_in_feedback_slot_.IsInvalid());
892 return for_in_feedback_slot_;
895 enum ForInType { FAST_FOR_IN, SLOW_FOR_IN };
896 ForInType for_in_type() const { return for_in_type_; }
897 void set_for_in_type(ForInType type) { for_in_type_ = type; }
899 static int num_ids() { return parent_num_ids() + 5; }
900 BailoutId BodyId() const { return BailoutId(local_id(0)); }
901 BailoutId PrepareId() const { return BailoutId(local_id(1)); }
902 BailoutId EnumId() const { return BailoutId(local_id(2)); }
903 BailoutId ToObjectId() const { return BailoutId(local_id(3)); }
904 BailoutId AssignmentId() const { return BailoutId(local_id(4)); }
905 BailoutId ContinueId() const OVERRIDE { return EntryId(); }
906 BailoutId StackCheckId() const OVERRIDE { return BodyId(); }
909 ForInStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
910 : ForEachStatement(zone, labels, pos),
911 for_in_type_(SLOW_FOR_IN),
912 for_in_feedback_slot_(FeedbackVectorSlot::Invalid()) {}
913 static int parent_num_ids() { return ForEachStatement::num_ids(); }
916 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
918 ForInType for_in_type_;
919 FeedbackVectorSlot for_in_feedback_slot_;
923 class ForOfStatement FINAL : public ForEachStatement {
925 DECLARE_NODE_TYPE(ForOfStatement)
927 void Initialize(Expression* each,
930 Expression* assign_iterator,
931 Expression* next_result,
932 Expression* result_done,
933 Expression* assign_each) {
934 ForEachStatement::Initialize(each, subject, body);
935 assign_iterator_ = assign_iterator;
936 next_result_ = next_result;
937 result_done_ = result_done;
938 assign_each_ = assign_each;
941 Expression* iterable() const {
945 // iterator = subject[Symbol.iterator]()
946 Expression* assign_iterator() const {
947 return assign_iterator_;
950 // result = iterator.next() // with type check
951 Expression* next_result() const {
956 Expression* result_done() const {
960 // each = result.value
961 Expression* assign_each() const {
965 BailoutId ContinueId() const OVERRIDE { return EntryId(); }
966 BailoutId StackCheckId() const OVERRIDE { return BackEdgeId(); }
968 static int num_ids() { return parent_num_ids() + 1; }
969 BailoutId BackEdgeId() const { return BailoutId(local_id(0)); }
972 ForOfStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
973 : ForEachStatement(zone, labels, pos),
974 assign_iterator_(NULL),
977 assign_each_(NULL) {}
978 static int parent_num_ids() { return ForEachStatement::num_ids(); }
981 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
983 Expression* assign_iterator_;
984 Expression* next_result_;
985 Expression* result_done_;
986 Expression* assign_each_;
990 class ExpressionStatement FINAL : public Statement {
992 DECLARE_NODE_TYPE(ExpressionStatement)
994 void set_expression(Expression* e) { expression_ = e; }
995 Expression* expression() const { return expression_; }
996 bool IsJump() const OVERRIDE { return expression_->IsThrow(); }
999 ExpressionStatement(Zone* zone, Expression* expression, int pos)
1000 : Statement(zone, pos), expression_(expression) { }
1003 Expression* expression_;
1007 class JumpStatement : public Statement {
1009 bool IsJump() const FINAL { return true; }
1012 explicit JumpStatement(Zone* zone, int pos) : Statement(zone, pos) {}
1016 class ContinueStatement FINAL : public JumpStatement {
1018 DECLARE_NODE_TYPE(ContinueStatement)
1020 IterationStatement* target() const { return target_; }
1023 explicit ContinueStatement(Zone* zone, IterationStatement* target, int pos)
1024 : JumpStatement(zone, pos), target_(target) { }
1027 IterationStatement* target_;
1031 class BreakStatement FINAL : public JumpStatement {
1033 DECLARE_NODE_TYPE(BreakStatement)
1035 BreakableStatement* target() const { return target_; }
1038 explicit BreakStatement(Zone* zone, BreakableStatement* target, int pos)
1039 : JumpStatement(zone, pos), target_(target) { }
1042 BreakableStatement* target_;
1046 class ReturnStatement FINAL : public JumpStatement {
1048 DECLARE_NODE_TYPE(ReturnStatement)
1050 Expression* expression() const { return expression_; }
1053 explicit ReturnStatement(Zone* zone, Expression* expression, int pos)
1054 : JumpStatement(zone, pos), expression_(expression) { }
1057 Expression* expression_;
1061 class WithStatement FINAL : public Statement {
1063 DECLARE_NODE_TYPE(WithStatement)
1065 Scope* scope() { return scope_; }
1066 Expression* expression() const { return expression_; }
1067 Statement* statement() const { return statement_; }
1069 void set_base_id(int id) { base_id_ = id; }
1070 static int num_ids() { return parent_num_ids() + 1; }
1071 BailoutId EntryId() const { return BailoutId(local_id(0)); }
1074 WithStatement(Zone* zone, Scope* scope, Expression* expression,
1075 Statement* statement, int pos)
1076 : Statement(zone, pos),
1078 expression_(expression),
1079 statement_(statement),
1080 base_id_(BailoutId::None().ToInt()) {}
1081 static int parent_num_ids() { return 0; }
1083 int base_id() const {
1084 DCHECK(!BailoutId(base_id_).IsNone());
1089 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1092 Expression* expression_;
1093 Statement* statement_;
1098 class CaseClause FINAL : public Expression {
1100 DECLARE_NODE_TYPE(CaseClause)
1102 bool is_default() const { return label_ == NULL; }
1103 Expression* label() const {
1104 CHECK(!is_default());
1107 Label* body_target() { return &body_target_; }
1108 ZoneList<Statement*>* statements() const { return statements_; }
1110 static int num_ids() { return parent_num_ids() + 2; }
1111 BailoutId EntryId() const { return BailoutId(local_id(0)); }
1112 TypeFeedbackId CompareId() { return TypeFeedbackId(local_id(1)); }
1114 Type* compare_type() { return compare_type_; }
1115 void set_compare_type(Type* type) { compare_type_ = type; }
1118 static int parent_num_ids() { return Expression::num_ids(); }
1121 CaseClause(Zone* zone, Expression* label, ZoneList<Statement*>* statements,
1123 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1127 ZoneList<Statement*>* statements_;
1128 Type* compare_type_;
1132 class SwitchStatement FINAL : public BreakableStatement {
1134 DECLARE_NODE_TYPE(SwitchStatement)
1136 void Initialize(Expression* tag, ZoneList<CaseClause*>* cases) {
1141 Expression* tag() const { return tag_; }
1142 ZoneList<CaseClause*>* cases() const { return cases_; }
1145 SwitchStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
1146 : BreakableStatement(zone, labels, TARGET_FOR_ANONYMOUS, pos),
1152 ZoneList<CaseClause*>* cases_;
1156 // If-statements always have non-null references to their then- and
1157 // else-parts. When parsing if-statements with no explicit else-part,
1158 // the parser implicitly creates an empty statement. Use the
1159 // HasThenStatement() and HasElseStatement() functions to check if a
1160 // given if-statement has a then- or an else-part containing code.
1161 class IfStatement FINAL : public Statement {
1163 DECLARE_NODE_TYPE(IfStatement)
1165 bool HasThenStatement() const { return !then_statement()->IsEmpty(); }
1166 bool HasElseStatement() const { return !else_statement()->IsEmpty(); }
1168 Expression* condition() const { return condition_; }
1169 Statement* then_statement() const { return then_statement_; }
1170 Statement* else_statement() const { return else_statement_; }
1172 bool IsJump() const OVERRIDE {
1173 return HasThenStatement() && then_statement()->IsJump()
1174 && HasElseStatement() && else_statement()->IsJump();
1177 void set_base_id(int id) { base_id_ = id; }
1178 static int num_ids() { return parent_num_ids() + 3; }
1179 BailoutId IfId() const { return BailoutId(local_id(0)); }
1180 BailoutId ThenId() const { return BailoutId(local_id(1)); }
1181 BailoutId ElseId() const { return BailoutId(local_id(2)); }
1184 IfStatement(Zone* zone, Expression* condition, Statement* then_statement,
1185 Statement* else_statement, int pos)
1186 : Statement(zone, pos),
1187 condition_(condition),
1188 then_statement_(then_statement),
1189 else_statement_(else_statement),
1190 base_id_(BailoutId::None().ToInt()) {}
1191 static int parent_num_ids() { return 0; }
1193 int base_id() const {
1194 DCHECK(!BailoutId(base_id_).IsNone());
1199 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1201 Expression* condition_;
1202 Statement* then_statement_;
1203 Statement* else_statement_;
1208 class TryStatement : public Statement {
1210 int index() const { return index_; }
1211 Block* try_block() const { return try_block_; }
1214 TryStatement(Zone* zone, int index, Block* try_block, int pos)
1215 : Statement(zone, pos), index_(index), try_block_(try_block) {}
1218 // Unique (per-function) index of this handler. This is not an AST ID.
1225 class TryCatchStatement FINAL : public TryStatement {
1227 DECLARE_NODE_TYPE(TryCatchStatement)
1229 Scope* scope() { return scope_; }
1230 Variable* variable() { return variable_; }
1231 Block* catch_block() const { return catch_block_; }
1234 TryCatchStatement(Zone* zone,
1241 : TryStatement(zone, index, try_block, pos),
1243 variable_(variable),
1244 catch_block_(catch_block) {
1249 Variable* variable_;
1250 Block* catch_block_;
1254 class TryFinallyStatement FINAL : public TryStatement {
1256 DECLARE_NODE_TYPE(TryFinallyStatement)
1258 Block* finally_block() const { return finally_block_; }
1261 TryFinallyStatement(
1262 Zone* zone, int index, Block* try_block, Block* finally_block, int pos)
1263 : TryStatement(zone, index, try_block, pos),
1264 finally_block_(finally_block) { }
1267 Block* finally_block_;
1271 class DebuggerStatement FINAL : public Statement {
1273 DECLARE_NODE_TYPE(DebuggerStatement)
1275 void set_base_id(int id) { base_id_ = id; }
1276 static int num_ids() { return parent_num_ids() + 1; }
1277 BailoutId DebugBreakId() const { return BailoutId(local_id(0)); }
1280 explicit DebuggerStatement(Zone* zone, int pos)
1281 : Statement(zone, pos), base_id_(BailoutId::None().ToInt()) {}
1282 static int parent_num_ids() { return 0; }
1284 int base_id() const {
1285 DCHECK(!BailoutId(base_id_).IsNone());
1290 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1296 class EmptyStatement FINAL : public Statement {
1298 DECLARE_NODE_TYPE(EmptyStatement)
1301 explicit EmptyStatement(Zone* zone, int pos): Statement(zone, pos) {}
1305 class Literal FINAL : public Expression {
1307 DECLARE_NODE_TYPE(Literal)
1309 bool IsPropertyName() const OVERRIDE { return value_->IsPropertyName(); }
1311 Handle<String> AsPropertyName() {
1312 DCHECK(IsPropertyName());
1313 return Handle<String>::cast(value());
1316 const AstRawString* AsRawPropertyName() {
1317 DCHECK(IsPropertyName());
1318 return value_->AsString();
1321 bool ToBooleanIsTrue() const OVERRIDE { return value()->BooleanValue(); }
1322 bool ToBooleanIsFalse() const OVERRIDE { return !value()->BooleanValue(); }
1324 Handle<Object> value() const { return value_->value(); }
1325 const AstValue* raw_value() const { return value_; }
1327 // Support for using Literal as a HashMap key. NOTE: Currently, this works
1328 // only for string and number literals!
1330 static bool Match(void* literal1, void* literal2);
1332 static int num_ids() { return parent_num_ids() + 1; }
1333 TypeFeedbackId LiteralFeedbackId() const {
1334 return TypeFeedbackId(local_id(0));
1338 Literal(Zone* zone, const AstValue* value, int position)
1339 : Expression(zone, position), value_(value) {}
1340 static int parent_num_ids() { return Expression::num_ids(); }
1343 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1345 const AstValue* value_;
1349 // Base class for literals that needs space in the corresponding JSFunction.
1350 class MaterializedLiteral : public Expression {
1352 virtual MaterializedLiteral* AsMaterializedLiteral() { return this; }
1354 int literal_index() { return literal_index_; }
1357 // only callable after initialization.
1358 DCHECK(depth_ >= 1);
1363 MaterializedLiteral(Zone* zone, int literal_index, int pos)
1364 : Expression(zone, pos),
1365 literal_index_(literal_index),
1369 // A materialized literal is simple if the values consist of only
1370 // constants and simple object and array literals.
1371 bool is_simple() const { return is_simple_; }
1372 void set_is_simple(bool is_simple) { is_simple_ = is_simple; }
1373 friend class CompileTimeValue;
1375 void set_depth(int depth) {
1380 // Populate the constant properties/elements fixed array.
1381 void BuildConstants(Isolate* isolate);
1382 friend class ArrayLiteral;
1383 friend class ObjectLiteral;
1385 // If the expression is a literal, return the literal value;
1386 // if the expression is a materialized literal and is simple return a
1387 // compile time value as encoded by CompileTimeValue::GetValue().
1388 // Otherwise, return undefined literal as the placeholder
1389 // in the object literal boilerplate.
1390 Handle<Object> GetBoilerplateValue(Expression* expression, Isolate* isolate);
1399 // Property is used for passing information
1400 // about an object literal's properties from the parser
1401 // to the code generator.
1402 class ObjectLiteralProperty FINAL : public ZoneObject {
1405 CONSTANT, // Property with constant value (compile time).
1406 COMPUTED, // Property with computed value (execution time).
1407 MATERIALIZED_LITERAL, // Property value is a materialized literal.
1408 GETTER, SETTER, // Property is an accessor function.
1409 PROTOTYPE // Property is __proto__.
1412 Expression* key() { return key_; }
1413 Expression* value() { return value_; }
1414 Kind kind() { return kind_; }
1416 // Type feedback information.
1417 void RecordTypeFeedback(TypeFeedbackOracle* oracle);
1418 bool IsMonomorphic() { return !receiver_type_.is_null(); }
1419 Handle<Map> GetReceiverType() { return receiver_type_; }
1421 bool IsCompileTimeValue();
1423 void set_emit_store(bool emit_store);
1426 bool is_static() const { return is_static_; }
1427 bool is_computed_name() const { return is_computed_name_; }
1430 friend class AstNodeFactory;
1432 ObjectLiteralProperty(Expression* key, Expression* value, Kind kind,
1433 bool is_static, bool is_computed_name);
1434 ObjectLiteralProperty(AstValueFactory* ast_value_factory, Expression* key,
1435 Expression* value, bool is_static,
1436 bool is_computed_name);
1444 bool is_computed_name_;
1445 Handle<Map> receiver_type_;
1449 // An object literal has a boilerplate object that is used
1450 // for minimizing the work when constructing it at runtime.
1451 class ObjectLiteral FINAL : public MaterializedLiteral {
1453 typedef ObjectLiteralProperty Property;
1455 DECLARE_NODE_TYPE(ObjectLiteral)
1457 Handle<FixedArray> constant_properties() const {
1458 return constant_properties_;
1460 ZoneList<Property*>* properties() const { return properties_; }
1461 bool fast_elements() const { return fast_elements_; }
1462 bool may_store_doubles() const { return may_store_doubles_; }
1463 bool has_function() const { return has_function_; }
1465 // Decide if a property should be in the object boilerplate.
1466 static bool IsBoilerplateProperty(Property* property);
1468 // Populate the constant properties fixed array.
1469 void BuildConstantProperties(Isolate* isolate);
1471 // Mark all computed expressions that are bound to a key that
1472 // is shadowed by a later occurrence of the same key. For the
1473 // marked expressions, no store code is emitted.
1474 void CalculateEmitStore(Zone* zone);
1476 // Assemble bitfield of flags for the CreateObjectLiteral helper.
1477 int ComputeFlags() const {
1478 int flags = fast_elements() ? kFastElements : kNoFlags;
1479 flags |= has_function() ? kHasFunction : kNoFlags;
1486 kHasFunction = 1 << 1
1489 struct Accessors: public ZoneObject {
1490 Accessors() : getter(NULL), setter(NULL) {}
1495 BailoutId CreateLiteralId() const { return BailoutId(local_id(0)); }
1497 // Return an AST id for a property that is used in simulate instructions.
1498 BailoutId GetIdForProperty(int i) { return BailoutId(local_id(i + 1)); }
1500 // Unlike other AST nodes, this number of bailout IDs allocated for an
1501 // ObjectLiteral can vary, so num_ids() is not a static method.
1502 int num_ids() const { return parent_num_ids() + 1 + properties()->length(); }
1505 ObjectLiteral(Zone* zone, ZoneList<Property*>* properties, int literal_index,
1506 int boilerplate_properties, bool has_function, int pos)
1507 : MaterializedLiteral(zone, literal_index, pos),
1508 properties_(properties),
1509 boilerplate_properties_(boilerplate_properties),
1510 fast_elements_(false),
1511 may_store_doubles_(false),
1512 has_function_(has_function) {}
1513 static int parent_num_ids() { return MaterializedLiteral::num_ids(); }
1516 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1517 Handle<FixedArray> constant_properties_;
1518 ZoneList<Property*>* properties_;
1519 int boilerplate_properties_;
1520 bool fast_elements_;
1521 bool may_store_doubles_;
1526 // Node for capturing a regexp literal.
1527 class RegExpLiteral FINAL : public MaterializedLiteral {
1529 DECLARE_NODE_TYPE(RegExpLiteral)
1531 Handle<String> pattern() const { return pattern_->string(); }
1532 Handle<String> flags() const { return flags_->string(); }
1535 RegExpLiteral(Zone* zone, const AstRawString* pattern,
1536 const AstRawString* flags, int literal_index, int pos)
1537 : MaterializedLiteral(zone, literal_index, pos),
1544 const AstRawString* pattern_;
1545 const AstRawString* flags_;
1549 // An array literal has a literals object that is used
1550 // for minimizing the work when constructing it at runtime.
1551 class ArrayLiteral FINAL : public MaterializedLiteral {
1553 DECLARE_NODE_TYPE(ArrayLiteral)
1555 Handle<FixedArray> constant_elements() const { return constant_elements_; }
1556 ZoneList<Expression*>* values() const { return values_; }
1558 BailoutId CreateLiteralId() const { return BailoutId(local_id(0)); }
1560 // Return an AST id for an element that is used in simulate instructions.
1561 BailoutId GetIdForElement(int i) { return BailoutId(local_id(i + 1)); }
1563 // Unlike other AST nodes, this number of bailout IDs allocated for an
1564 // ArrayLiteral can vary, so num_ids() is not a static method.
1565 int num_ids() const { return parent_num_ids() + 1 + values()->length(); }
1567 // Populate the constant elements fixed array.
1568 void BuildConstantElements(Isolate* isolate);
1570 // Assemble bitfield of flags for the CreateArrayLiteral helper.
1571 int ComputeFlags() const {
1572 int flags = depth() == 1 ? kShallowElements : kNoFlags;
1573 flags |= ArrayLiteral::kDisableMementos;
1579 kShallowElements = 1,
1580 kDisableMementos = 1 << 1
1584 ArrayLiteral(Zone* zone, ZoneList<Expression*>* values, int literal_index,
1586 : MaterializedLiteral(zone, literal_index, pos), values_(values) {}
1587 static int parent_num_ids() { return MaterializedLiteral::num_ids(); }
1590 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1592 Handle<FixedArray> constant_elements_;
1593 ZoneList<Expression*>* values_;
1597 class VariableProxy FINAL : public Expression {
1599 DECLARE_NODE_TYPE(VariableProxy)
1601 bool IsValidReferenceExpression() const OVERRIDE {
1602 return !is_resolved() || var()->IsValidReference();
1605 bool IsArguments() const { return is_resolved() && var()->is_arguments(); }
1607 Handle<String> name() const { return raw_name()->string(); }
1608 const AstRawString* raw_name() const {
1609 return is_resolved() ? var_->raw_name() : raw_name_;
1612 Variable* var() const {
1613 DCHECK(is_resolved());
1616 void set_var(Variable* v) {
1617 DCHECK(!is_resolved());
1622 bool is_this() const { return IsThisField::decode(bit_field_); }
1624 bool is_assigned() const { return IsAssignedField::decode(bit_field_); }
1625 void set_is_assigned() {
1626 bit_field_ = IsAssignedField::update(bit_field_, true);
1629 bool is_resolved() const { return IsResolvedField::decode(bit_field_); }
1630 void set_is_resolved() {
1631 bit_field_ = IsResolvedField::update(bit_field_, true);
1634 int end_position() const { return end_position_; }
1636 // Bind this proxy to the variable var.
1637 void BindTo(Variable* var);
1639 bool UsesVariableFeedbackSlot() const {
1640 return FLAG_vector_ics && (var()->IsUnallocated() || var()->IsLookupSlot());
1643 virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
1644 Isolate* isolate) OVERRIDE {
1645 return FeedbackVectorRequirements(0, UsesVariableFeedbackSlot() ? 1 : 0);
1648 void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot) OVERRIDE {
1649 variable_feedback_slot_ = slot;
1651 Code::Kind FeedbackICSlotKind(int index) OVERRIDE { return Code::LOAD_IC; }
1652 FeedbackVectorICSlot VariableFeedbackSlot() {
1653 DCHECK(!UsesVariableFeedbackSlot() || !variable_feedback_slot_.IsInvalid());
1654 return variable_feedback_slot_;
1658 VariableProxy(Zone* zone, Variable* var, int start_position,
1661 VariableProxy(Zone* zone, const AstRawString* name, bool is_this,
1662 int start_position, int end_position);
1664 class IsThisField : public BitField8<bool, 0, 1> {};
1665 class IsAssignedField : public BitField8<bool, 1, 1> {};
1666 class IsResolvedField : public BitField8<bool, 2, 1> {};
1668 // Start with 16-bit (or smaller) field, which should get packed together
1669 // with Expression's trailing 16-bit field.
1671 FeedbackVectorICSlot variable_feedback_slot_;
1673 const AstRawString* raw_name_; // if !is_resolved_
1674 Variable* var_; // if is_resolved_
1676 // Position is stored in the AstNode superclass, but VariableProxy needs to
1677 // know its end position too (for error messages). It cannot be inferred from
1678 // the variable name length because it can contain escapes.
1683 class Property FINAL : public Expression {
1685 DECLARE_NODE_TYPE(Property)
1687 bool IsValidReferenceExpression() const OVERRIDE { return true; }
1689 Expression* obj() const { return obj_; }
1690 Expression* key() const { return key_; }
1692 static int num_ids() { return parent_num_ids() + 2; }
1693 BailoutId LoadId() const { return BailoutId(local_id(0)); }
1694 TypeFeedbackId PropertyFeedbackId() { return TypeFeedbackId(local_id(1)); }
1696 bool IsStringAccess() const {
1697 return IsStringAccessField::decode(bit_field_);
1700 // Type feedback information.
1701 bool IsMonomorphic() OVERRIDE { return receiver_types_.length() == 1; }
1702 SmallMapList* GetReceiverTypes() OVERRIDE { return &receiver_types_; }
1703 KeyedAccessStoreMode GetStoreMode() const OVERRIDE { return STANDARD_STORE; }
1704 IcCheckType GetKeyType() const OVERRIDE {
1705 return KeyTypeField::decode(bit_field_);
1707 bool IsUninitialized() const {
1708 return !is_for_call() && HasNoTypeInformation();
1710 bool HasNoTypeInformation() const {
1711 return IsUninitializedField::decode(bit_field_);
1713 void set_is_uninitialized(bool b) {
1714 bit_field_ = IsUninitializedField::update(bit_field_, b);
1716 void set_is_string_access(bool b) {
1717 bit_field_ = IsStringAccessField::update(bit_field_, b);
1719 void set_key_type(IcCheckType key_type) {
1720 bit_field_ = KeyTypeField::update(bit_field_, key_type);
1722 void mark_for_call() {
1723 bit_field_ = IsForCallField::update(bit_field_, true);
1725 bool is_for_call() const { return IsForCallField::decode(bit_field_); }
1727 bool IsSuperAccess() {
1728 return obj()->IsSuperReference();
1731 virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
1732 Isolate* isolate) OVERRIDE {
1733 return FeedbackVectorRequirements(0, FLAG_vector_ics ? 1 : 0);
1735 void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot) OVERRIDE {
1736 property_feedback_slot_ = slot;
1738 Code::Kind FeedbackICSlotKind(int index) OVERRIDE {
1739 return key()->IsPropertyName() ? Code::LOAD_IC : Code::KEYED_LOAD_IC;
1742 FeedbackVectorICSlot PropertyFeedbackSlot() const {
1743 DCHECK(!FLAG_vector_ics || !property_feedback_slot_.IsInvalid());
1744 return property_feedback_slot_;
1748 Property(Zone* zone, Expression* obj, Expression* key, int pos)
1749 : Expression(zone, pos),
1750 bit_field_(IsForCallField::encode(false) |
1751 IsUninitializedField::encode(false) |
1752 IsStringAccessField::encode(false)),
1753 property_feedback_slot_(FeedbackVectorICSlot::Invalid()),
1756 static int parent_num_ids() { return Expression::num_ids(); }
1759 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1761 class IsForCallField : public BitField8<bool, 0, 1> {};
1762 class IsUninitializedField : public BitField8<bool, 1, 1> {};
1763 class IsStringAccessField : public BitField8<bool, 2, 1> {};
1764 class KeyTypeField : public BitField8<IcCheckType, 3, 1> {};
1766 FeedbackVectorICSlot property_feedback_slot_;
1769 SmallMapList receiver_types_;
1773 class Call FINAL : public Expression {
1775 DECLARE_NODE_TYPE(Call)
1777 Expression* expression() const { return expression_; }
1778 ZoneList<Expression*>* arguments() const { return arguments_; }
1780 // Type feedback information.
1781 virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
1782 Isolate* isolate) OVERRIDE;
1783 void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot) OVERRIDE {
1784 ic_slot_or_slot_ = slot.ToInt();
1786 void SetFirstFeedbackSlot(FeedbackVectorSlot slot) OVERRIDE {
1787 ic_slot_or_slot_ = slot.ToInt();
1789 Code::Kind FeedbackICSlotKind(int index) OVERRIDE { return Code::CALL_IC; }
1791 FeedbackVectorSlot CallFeedbackSlot() const {
1792 DCHECK(ic_slot_or_slot_ != FeedbackVectorSlot::Invalid().ToInt());
1793 return FeedbackVectorSlot(ic_slot_or_slot_);
1796 FeedbackVectorICSlot CallFeedbackICSlot() const {
1797 DCHECK(ic_slot_or_slot_ != FeedbackVectorICSlot::Invalid().ToInt());
1798 return FeedbackVectorICSlot(ic_slot_or_slot_);
1801 SmallMapList* GetReceiverTypes() OVERRIDE {
1802 if (expression()->IsProperty()) {
1803 return expression()->AsProperty()->GetReceiverTypes();
1808 bool IsMonomorphic() OVERRIDE {
1809 if (expression()->IsProperty()) {
1810 return expression()->AsProperty()->IsMonomorphic();
1812 return !target_.is_null();
1815 bool global_call() const {
1816 VariableProxy* proxy = expression_->AsVariableProxy();
1817 return proxy != NULL && proxy->var()->IsUnallocated();
1820 bool known_global_function() const {
1821 return global_call() && !target_.is_null();
1824 Handle<JSFunction> target() { return target_; }
1826 Handle<Cell> cell() { return cell_; }
1828 Handle<AllocationSite> allocation_site() { return allocation_site_; }
1830 void set_target(Handle<JSFunction> target) { target_ = target; }
1831 void set_allocation_site(Handle<AllocationSite> site) {
1832 allocation_site_ = site;
1834 bool ComputeGlobalTarget(Handle<GlobalObject> global, LookupIterator* it);
1836 static int num_ids() { return parent_num_ids() + 2; }
1837 BailoutId ReturnId() const { return BailoutId(local_id(0)); }
1838 BailoutId EvalOrLookupId() const { return BailoutId(local_id(1)); }
1840 bool is_uninitialized() const {
1841 return IsUninitializedField::decode(bit_field_);
1843 void set_is_uninitialized(bool b) {
1844 bit_field_ = IsUninitializedField::update(bit_field_, b);
1856 // Helpers to determine how to handle the call.
1857 CallType GetCallType(Isolate* isolate) const;
1858 bool IsUsingCallFeedbackSlot(Isolate* isolate) const;
1859 bool IsUsingCallFeedbackICSlot(Isolate* isolate) const;
1862 // Used to assert that the FullCodeGenerator records the return site.
1863 bool return_is_recorded_;
1867 Call(Zone* zone, Expression* expression, ZoneList<Expression*>* arguments,
1869 : Expression(zone, pos),
1870 ic_slot_or_slot_(FeedbackVectorICSlot::Invalid().ToInt()),
1871 expression_(expression),
1872 arguments_(arguments),
1873 bit_field_(IsUninitializedField::encode(false)) {
1874 if (expression->IsProperty()) {
1875 expression->AsProperty()->mark_for_call();
1878 static int parent_num_ids() { return Expression::num_ids(); }
1881 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1883 // We store this as an integer because we don't know if we have a slot or
1884 // an ic slot until scoping time.
1885 int ic_slot_or_slot_;
1886 Expression* expression_;
1887 ZoneList<Expression*>* arguments_;
1888 Handle<JSFunction> target_;
1890 Handle<AllocationSite> allocation_site_;
1891 class IsUninitializedField : public BitField8<bool, 0, 1> {};
1896 class CallNew FINAL : public Expression {
1898 DECLARE_NODE_TYPE(CallNew)
1900 Expression* expression() const { return expression_; }
1901 ZoneList<Expression*>* arguments() const { return arguments_; }
1903 // Type feedback information.
1904 virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
1905 Isolate* isolate) OVERRIDE {
1906 return FeedbackVectorRequirements(FLAG_pretenuring_call_new ? 2 : 1, 0);
1908 void SetFirstFeedbackSlot(FeedbackVectorSlot slot) OVERRIDE {
1909 callnew_feedback_slot_ = slot;
1912 FeedbackVectorSlot CallNewFeedbackSlot() {
1913 DCHECK(!callnew_feedback_slot_.IsInvalid());
1914 return callnew_feedback_slot_;
1916 FeedbackVectorSlot AllocationSiteFeedbackSlot() {
1917 DCHECK(FLAG_pretenuring_call_new);
1918 return CallNewFeedbackSlot().next();
1921 void RecordTypeFeedback(TypeFeedbackOracle* oracle);
1922 bool IsMonomorphic() OVERRIDE { return is_monomorphic_; }
1923 Handle<JSFunction> target() const { return target_; }
1924 Handle<AllocationSite> allocation_site() const {
1925 return allocation_site_;
1928 static int num_ids() { return parent_num_ids() + 1; }
1929 static int feedback_slots() { return 1; }
1930 BailoutId ReturnId() const { return BailoutId(local_id(0)); }
1933 CallNew(Zone* zone, Expression* expression, ZoneList<Expression*>* arguments,
1935 : Expression(zone, pos),
1936 expression_(expression),
1937 arguments_(arguments),
1938 is_monomorphic_(false),
1939 callnew_feedback_slot_(FeedbackVectorSlot::Invalid()) {}
1941 static int parent_num_ids() { return Expression::num_ids(); }
1944 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1946 Expression* expression_;
1947 ZoneList<Expression*>* arguments_;
1948 bool is_monomorphic_;
1949 Handle<JSFunction> target_;
1950 Handle<AllocationSite> allocation_site_;
1951 FeedbackVectorSlot callnew_feedback_slot_;
1955 // The CallRuntime class does not represent any official JavaScript
1956 // language construct. Instead it is used to call a C or JS function
1957 // with a set of arguments. This is used from the builtins that are
1958 // implemented in JavaScript (see "v8natives.js").
1959 class CallRuntime FINAL : public Expression {
1961 DECLARE_NODE_TYPE(CallRuntime)
1963 Handle<String> name() const { return raw_name_->string(); }
1964 const AstRawString* raw_name() const { return raw_name_; }
1965 const Runtime::Function* function() const { return function_; }
1966 ZoneList<Expression*>* arguments() const { return arguments_; }
1967 bool is_jsruntime() const { return function_ == NULL; }
1969 // Type feedback information.
1970 bool HasCallRuntimeFeedbackSlot() const {
1971 return FLAG_vector_ics && is_jsruntime();
1973 virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
1974 Isolate* isolate) OVERRIDE {
1975 return FeedbackVectorRequirements(0, HasCallRuntimeFeedbackSlot() ? 1 : 0);
1977 void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot) OVERRIDE {
1978 callruntime_feedback_slot_ = slot;
1980 Code::Kind FeedbackICSlotKind(int index) OVERRIDE { return Code::LOAD_IC; }
1982 FeedbackVectorICSlot CallRuntimeFeedbackSlot() {
1983 DCHECK(!HasCallRuntimeFeedbackSlot() ||
1984 !callruntime_feedback_slot_.IsInvalid());
1985 return callruntime_feedback_slot_;
1988 static int num_ids() { return parent_num_ids() + 1; }
1989 TypeFeedbackId CallRuntimeFeedbackId() const {
1990 return TypeFeedbackId(local_id(0));
1994 CallRuntime(Zone* zone, const AstRawString* name,
1995 const Runtime::Function* function,
1996 ZoneList<Expression*>* arguments, int pos)
1997 : Expression(zone, pos),
1999 function_(function),
2000 arguments_(arguments),
2001 callruntime_feedback_slot_(FeedbackVectorICSlot::Invalid()) {}
2002 static int parent_num_ids() { return Expression::num_ids(); }
2005 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2007 const AstRawString* raw_name_;
2008 const Runtime::Function* function_;
2009 ZoneList<Expression*>* arguments_;
2010 FeedbackVectorICSlot callruntime_feedback_slot_;
2014 class UnaryOperation FINAL : public Expression {
2016 DECLARE_NODE_TYPE(UnaryOperation)
2018 Token::Value op() const { return op_; }
2019 Expression* expression() const { return expression_; }
2021 // For unary not (Token::NOT), the AST ids where true and false will
2022 // actually be materialized, respectively.
2023 static int num_ids() { return parent_num_ids() + 2; }
2024 BailoutId MaterializeTrueId() const { return BailoutId(local_id(0)); }
2025 BailoutId MaterializeFalseId() const { return BailoutId(local_id(1)); }
2027 virtual void RecordToBooleanTypeFeedback(
2028 TypeFeedbackOracle* oracle) OVERRIDE;
2031 UnaryOperation(Zone* zone, Token::Value op, Expression* expression, int pos)
2032 : Expression(zone, pos), op_(op), expression_(expression) {
2033 DCHECK(Token::IsUnaryOp(op));
2035 static int parent_num_ids() { return Expression::num_ids(); }
2038 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2041 Expression* expression_;
2045 class BinaryOperation FINAL : public Expression {
2047 DECLARE_NODE_TYPE(BinaryOperation)
2049 Token::Value op() const { return static_cast<Token::Value>(op_); }
2050 Expression* left() const { return left_; }
2051 Expression* right() const { return right_; }
2052 Handle<AllocationSite> allocation_site() const { return allocation_site_; }
2053 void set_allocation_site(Handle<AllocationSite> allocation_site) {
2054 allocation_site_ = allocation_site;
2057 // The short-circuit logical operations need an AST ID for their
2058 // right-hand subexpression.
2059 static int num_ids() { return parent_num_ids() + 2; }
2060 BailoutId RightId() const { return BailoutId(local_id(0)); }
2062 TypeFeedbackId BinaryOperationFeedbackId() const {
2063 return TypeFeedbackId(local_id(1));
2065 Maybe<int> fixed_right_arg() const {
2066 return has_fixed_right_arg_ ? Maybe<int>(fixed_right_arg_value_)
2069 void set_fixed_right_arg(Maybe<int> arg) {
2070 has_fixed_right_arg_ = arg.has_value;
2071 if (arg.has_value) fixed_right_arg_value_ = arg.value;
2074 virtual void RecordToBooleanTypeFeedback(
2075 TypeFeedbackOracle* oracle) OVERRIDE;
2078 BinaryOperation(Zone* zone, Token::Value op, Expression* left,
2079 Expression* right, int pos)
2080 : Expression(zone, pos),
2081 op_(static_cast<byte>(op)),
2082 has_fixed_right_arg_(false),
2083 fixed_right_arg_value_(0),
2086 DCHECK(Token::IsBinaryOp(op));
2088 static int parent_num_ids() { return Expression::num_ids(); }
2091 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2093 const byte op_; // actually Token::Value
2094 // TODO(rossberg): the fixed arg should probably be represented as a Constant
2095 // type for the RHS. Currenty it's actually a Maybe<int>
2096 bool has_fixed_right_arg_;
2097 int fixed_right_arg_value_;
2100 Handle<AllocationSite> allocation_site_;
2104 class CountOperation FINAL : public Expression {
2106 DECLARE_NODE_TYPE(CountOperation)
2108 bool is_prefix() const { return IsPrefixField::decode(bit_field_); }
2109 bool is_postfix() const { return !is_prefix(); }
2111 Token::Value op() const { return TokenField::decode(bit_field_); }
2112 Token::Value binary_op() {
2113 return (op() == Token::INC) ? Token::ADD : Token::SUB;
2116 Expression* expression() const { return expression_; }
2118 bool IsMonomorphic() OVERRIDE { return receiver_types_.length() == 1; }
2119 SmallMapList* GetReceiverTypes() OVERRIDE { return &receiver_types_; }
2120 IcCheckType GetKeyType() const OVERRIDE {
2121 return KeyTypeField::decode(bit_field_);
2123 KeyedAccessStoreMode GetStoreMode() const OVERRIDE {
2124 return StoreModeField::decode(bit_field_);
2126 Type* type() const { return type_; }
2127 void set_key_type(IcCheckType type) {
2128 bit_field_ = KeyTypeField::update(bit_field_, type);
2130 void set_store_mode(KeyedAccessStoreMode mode) {
2131 bit_field_ = StoreModeField::update(bit_field_, mode);
2133 void set_type(Type* type) { type_ = type; }
2135 static int num_ids() { return parent_num_ids() + 4; }
2136 BailoutId AssignmentId() const { return BailoutId(local_id(0)); }
2137 BailoutId ToNumberId() const { return BailoutId(local_id(1)); }
2138 TypeFeedbackId CountBinOpFeedbackId() const {
2139 return TypeFeedbackId(local_id(2));
2141 TypeFeedbackId CountStoreFeedbackId() const {
2142 return TypeFeedbackId(local_id(3));
2146 CountOperation(Zone* zone, Token::Value op, bool is_prefix, Expression* expr,
2148 : Expression(zone, pos),
2149 bit_field_(IsPrefixField::encode(is_prefix) |
2150 KeyTypeField::encode(ELEMENT) |
2151 StoreModeField::encode(STANDARD_STORE) |
2152 TokenField::encode(op)),
2154 expression_(expr) {}
2155 static int parent_num_ids() { return Expression::num_ids(); }
2158 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2160 class IsPrefixField : public BitField16<bool, 0, 1> {};
2161 class KeyTypeField : public BitField16<IcCheckType, 1, 1> {};
2162 class StoreModeField : public BitField16<KeyedAccessStoreMode, 2, 4> {};
2163 class TokenField : public BitField16<Token::Value, 6, 8> {};
2165 // Starts with 16-bit field, which should get packed together with
2166 // Expression's trailing 16-bit field.
2167 uint16_t bit_field_;
2169 Expression* expression_;
2170 SmallMapList receiver_types_;
2174 class CompareOperation FINAL : public Expression {
2176 DECLARE_NODE_TYPE(CompareOperation)
2178 Token::Value op() const { return op_; }
2179 Expression* left() const { return left_; }
2180 Expression* right() const { return right_; }
2182 // Type feedback information.
2183 static int num_ids() { return parent_num_ids() + 1; }
2184 TypeFeedbackId CompareOperationFeedbackId() const {
2185 return TypeFeedbackId(local_id(0));
2187 Type* combined_type() const { return combined_type_; }
2188 void set_combined_type(Type* type) { combined_type_ = type; }
2190 // Match special cases.
2191 bool IsLiteralCompareTypeof(Expression** expr, Handle<String>* check);
2192 bool IsLiteralCompareUndefined(Expression** expr, Isolate* isolate);
2193 bool IsLiteralCompareNull(Expression** expr);
2196 CompareOperation(Zone* zone, Token::Value op, Expression* left,
2197 Expression* right, int pos)
2198 : Expression(zone, pos),
2202 combined_type_(Type::None(zone)) {
2203 DCHECK(Token::IsCompareOp(op));
2205 static int parent_num_ids() { return Expression::num_ids(); }
2208 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2214 Type* combined_type_;
2218 class Conditional FINAL : public Expression {
2220 DECLARE_NODE_TYPE(Conditional)
2222 Expression* condition() const { return condition_; }
2223 Expression* then_expression() const { return then_expression_; }
2224 Expression* else_expression() const { return else_expression_; }
2226 static int num_ids() { return parent_num_ids() + 2; }
2227 BailoutId ThenId() const { return BailoutId(local_id(0)); }
2228 BailoutId ElseId() const { return BailoutId(local_id(1)); }
2231 Conditional(Zone* zone, Expression* condition, Expression* then_expression,
2232 Expression* else_expression, int position)
2233 : Expression(zone, position),
2234 condition_(condition),
2235 then_expression_(then_expression),
2236 else_expression_(else_expression) {}
2237 static int parent_num_ids() { return Expression::num_ids(); }
2240 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2242 Expression* condition_;
2243 Expression* then_expression_;
2244 Expression* else_expression_;
2248 class Assignment FINAL : public Expression {
2250 DECLARE_NODE_TYPE(Assignment)
2252 Assignment* AsSimpleAssignment() { return !is_compound() ? this : NULL; }
2254 Token::Value binary_op() const;
2256 Token::Value op() const { return TokenField::decode(bit_field_); }
2257 Expression* target() const { return target_; }
2258 Expression* value() const { return value_; }
2259 BinaryOperation* binary_operation() const { return binary_operation_; }
2261 // This check relies on the definition order of token in token.h.
2262 bool is_compound() const { return op() > Token::ASSIGN; }
2264 static int num_ids() { return parent_num_ids() + 2; }
2265 BailoutId AssignmentId() const { return BailoutId(local_id(0)); }
2267 // Type feedback information.
2268 TypeFeedbackId AssignmentFeedbackId() { return TypeFeedbackId(local_id(1)); }
2269 bool IsMonomorphic() OVERRIDE { return receiver_types_.length() == 1; }
2270 bool IsUninitialized() const {
2271 return IsUninitializedField::decode(bit_field_);
2273 bool HasNoTypeInformation() {
2274 return IsUninitializedField::decode(bit_field_);
2276 SmallMapList* GetReceiverTypes() OVERRIDE { return &receiver_types_; }
2277 IcCheckType GetKeyType() const OVERRIDE {
2278 return KeyTypeField::decode(bit_field_);
2280 KeyedAccessStoreMode GetStoreMode() const OVERRIDE {
2281 return StoreModeField::decode(bit_field_);
2283 void set_is_uninitialized(bool b) {
2284 bit_field_ = IsUninitializedField::update(bit_field_, b);
2286 void set_key_type(IcCheckType key_type) {
2287 bit_field_ = KeyTypeField::update(bit_field_, key_type);
2289 void set_store_mode(KeyedAccessStoreMode mode) {
2290 bit_field_ = StoreModeField::update(bit_field_, mode);
2294 Assignment(Zone* zone, Token::Value op, Expression* target, Expression* value,
2296 static int parent_num_ids() { return Expression::num_ids(); }
2299 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2301 class IsUninitializedField : public BitField16<bool, 0, 1> {};
2302 class KeyTypeField : public BitField16<IcCheckType, 1, 1> {};
2303 class StoreModeField : public BitField16<KeyedAccessStoreMode, 2, 4> {};
2304 class TokenField : public BitField16<Token::Value, 6, 8> {};
2306 // Starts with 16-bit field, which should get packed together with
2307 // Expression's trailing 16-bit field.
2308 uint16_t bit_field_;
2309 Expression* target_;
2311 BinaryOperation* binary_operation_;
2312 SmallMapList receiver_types_;
2316 class Yield FINAL : public Expression {
2318 DECLARE_NODE_TYPE(Yield)
2321 kInitial, // The initial yield that returns the unboxed generator object.
2322 kSuspend, // A normal yield: { value: EXPRESSION, done: false }
2323 kDelegating, // A yield*.
2324 kFinal // A return: { value: EXPRESSION, done: true }
2327 Expression* generator_object() const { return generator_object_; }
2328 Expression* expression() const { return expression_; }
2329 Kind yield_kind() const { return yield_kind_; }
2331 // Delegating yield surrounds the "yield" in a "try/catch". This index
2332 // locates the catch handler in the handler table, and is equivalent to
2333 // TryCatchStatement::index().
2335 DCHECK_EQ(kDelegating, yield_kind());
2338 void set_index(int index) {
2339 DCHECK_EQ(kDelegating, yield_kind());
2343 // Type feedback information.
2344 bool HasFeedbackSlots() const {
2345 return FLAG_vector_ics && (yield_kind() == kDelegating);
2347 virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
2348 Isolate* isolate) OVERRIDE {
2349 return FeedbackVectorRequirements(0, HasFeedbackSlots() ? 3 : 0);
2351 void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot) OVERRIDE {
2352 yield_first_feedback_slot_ = slot;
2354 Code::Kind FeedbackICSlotKind(int index) OVERRIDE {
2355 return index == 0 ? Code::KEYED_LOAD_IC : Code::LOAD_IC;
2358 FeedbackVectorICSlot KeyedLoadFeedbackSlot() {
2359 DCHECK(!HasFeedbackSlots() || !yield_first_feedback_slot_.IsInvalid());
2360 return yield_first_feedback_slot_;
2363 FeedbackVectorICSlot DoneFeedbackSlot() {
2364 return KeyedLoadFeedbackSlot().next();
2367 FeedbackVectorICSlot ValueFeedbackSlot() { return DoneFeedbackSlot().next(); }
2370 Yield(Zone* zone, Expression* generator_object, Expression* expression,
2371 Kind yield_kind, int pos)
2372 : Expression(zone, pos),
2373 generator_object_(generator_object),
2374 expression_(expression),
2375 yield_kind_(yield_kind),
2377 yield_first_feedback_slot_(FeedbackVectorICSlot::Invalid()) {}
2380 Expression* generator_object_;
2381 Expression* expression_;
2384 FeedbackVectorICSlot yield_first_feedback_slot_;
2388 class Throw FINAL : public Expression {
2390 DECLARE_NODE_TYPE(Throw)
2392 Expression* exception() const { return exception_; }
2395 Throw(Zone* zone, Expression* exception, int pos)
2396 : Expression(zone, pos), exception_(exception) {}
2399 Expression* exception_;
2403 class FunctionLiteral FINAL : public Expression {
2406 ANONYMOUS_EXPRESSION,
2411 enum ParameterFlag {
2412 kNoDuplicateParameters = 0,
2413 kHasDuplicateParameters = 1
2416 enum IsFunctionFlag {
2421 enum IsParenthesizedFlag {
2426 enum ArityRestriction {
2432 DECLARE_NODE_TYPE(FunctionLiteral)
2434 Handle<String> name() const { return raw_name_->string(); }
2435 const AstRawString* raw_name() const { return raw_name_; }
2436 Scope* scope() const { return scope_; }
2437 ZoneList<Statement*>* body() const { return body_; }
2438 void set_function_token_position(int pos) { function_token_position_ = pos; }
2439 int function_token_position() const { return function_token_position_; }
2440 int start_position() const;
2441 int end_position() const;
2442 int SourceSize() const { return end_position() - start_position(); }
2443 bool is_expression() const { return IsExpression::decode(bitfield_); }
2444 bool is_anonymous() const { return IsAnonymous::decode(bitfield_); }
2445 LanguageMode language_mode() const;
2446 bool uses_super_property() const;
2448 static bool NeedsHomeObject(Expression* literal) {
2449 return literal != NULL && literal->IsFunctionLiteral() &&
2450 literal->AsFunctionLiteral()->uses_super_property();
2453 int materialized_literal_count() { return materialized_literal_count_; }
2454 int expected_property_count() { return expected_property_count_; }
2455 int handler_count() { return handler_count_; }
2456 int parameter_count() { return parameter_count_; }
2458 bool AllowsLazyCompilation();
2459 bool AllowsLazyCompilationWithoutContext();
2461 void InitializeSharedInfo(Handle<Code> code);
2463 Handle<String> debug_name() const {
2464 if (raw_name_ != NULL && !raw_name_->IsEmpty()) {
2465 return raw_name_->string();
2467 return inferred_name();
2470 Handle<String> inferred_name() const {
2471 if (!inferred_name_.is_null()) {
2472 DCHECK(raw_inferred_name_ == NULL);
2473 return inferred_name_;
2475 if (raw_inferred_name_ != NULL) {
2476 return raw_inferred_name_->string();
2479 return Handle<String>();
2482 // Only one of {set_inferred_name, set_raw_inferred_name} should be called.
2483 void set_inferred_name(Handle<String> inferred_name) {
2484 DCHECK(!inferred_name.is_null());
2485 inferred_name_ = inferred_name;
2486 DCHECK(raw_inferred_name_== NULL || raw_inferred_name_->IsEmpty());
2487 raw_inferred_name_ = NULL;
2490 void set_raw_inferred_name(const AstString* raw_inferred_name) {
2491 DCHECK(raw_inferred_name != NULL);
2492 raw_inferred_name_ = raw_inferred_name;
2493 DCHECK(inferred_name_.is_null());
2494 inferred_name_ = Handle<String>();
2497 // shared_info may be null if it's not cached in full code.
2498 Handle<SharedFunctionInfo> shared_info() { return shared_info_; }
2500 bool pretenure() { return Pretenure::decode(bitfield_); }
2501 void set_pretenure() { bitfield_ |= Pretenure::encode(true); }
2503 bool has_duplicate_parameters() {
2504 return HasDuplicateParameters::decode(bitfield_);
2507 bool is_function() { return IsFunction::decode(bitfield_) == kIsFunction; }
2509 // This is used as a heuristic on when to eagerly compile a function
2510 // literal. We consider the following constructs as hints that the
2511 // function will be called immediately:
2512 // - (function() { ... })();
2513 // - var x = function() { ... }();
2514 bool is_parenthesized() {
2515 return IsParenthesized::decode(bitfield_) == kIsParenthesized;
2517 void set_parenthesized() {
2518 bitfield_ = IsParenthesized::update(bitfield_, kIsParenthesized);
2521 FunctionKind kind() { return FunctionKindBits::decode(bitfield_); }
2523 int ast_node_count() { return ast_properties_.node_count(); }
2524 AstProperties::Flags* flags() { return ast_properties_.flags(); }
2525 void set_ast_properties(AstProperties* ast_properties) {
2526 ast_properties_ = *ast_properties;
2528 const FeedbackVectorSpec& feedback_vector_spec() const {
2529 return ast_properties_.get_spec();
2531 bool dont_optimize() { return dont_optimize_reason_ != kNoReason; }
2532 BailoutReason dont_optimize_reason() { return dont_optimize_reason_; }
2533 void set_dont_optimize_reason(BailoutReason reason) {
2534 dont_optimize_reason_ = reason;
2538 FunctionLiteral(Zone* zone, const AstRawString* name,
2539 AstValueFactory* ast_value_factory, Scope* scope,
2540 ZoneList<Statement*>* body, int materialized_literal_count,
2541 int expected_property_count, int handler_count,
2542 int parameter_count, FunctionType function_type,
2543 ParameterFlag has_duplicate_parameters,
2544 IsFunctionFlag is_function,
2545 IsParenthesizedFlag is_parenthesized, FunctionKind kind,
2547 : Expression(zone, position),
2551 raw_inferred_name_(ast_value_factory->empty_string()),
2552 dont_optimize_reason_(kNoReason),
2553 materialized_literal_count_(materialized_literal_count),
2554 expected_property_count_(expected_property_count),
2555 handler_count_(handler_count),
2556 parameter_count_(parameter_count),
2557 function_token_position_(RelocInfo::kNoPosition) {
2558 bitfield_ = IsExpression::encode(function_type != DECLARATION) |
2559 IsAnonymous::encode(function_type == ANONYMOUS_EXPRESSION) |
2560 Pretenure::encode(false) |
2561 HasDuplicateParameters::encode(has_duplicate_parameters) |
2562 IsFunction::encode(is_function) |
2563 IsParenthesized::encode(is_parenthesized) |
2564 FunctionKindBits::encode(kind);
2565 DCHECK(IsValidFunctionKind(kind));
2569 const AstRawString* raw_name_;
2570 Handle<String> name_;
2571 Handle<SharedFunctionInfo> shared_info_;
2573 ZoneList<Statement*>* body_;
2574 const AstString* raw_inferred_name_;
2575 Handle<String> inferred_name_;
2576 AstProperties ast_properties_;
2577 BailoutReason dont_optimize_reason_;
2579 int materialized_literal_count_;
2580 int expected_property_count_;
2582 int parameter_count_;
2583 int function_token_position_;
2586 class IsExpression : public BitField<bool, 0, 1> {};
2587 class IsAnonymous : public BitField<bool, 1, 1> {};
2588 class Pretenure : public BitField<bool, 2, 1> {};
2589 class HasDuplicateParameters : public BitField<ParameterFlag, 3, 1> {};
2590 class IsFunction : public BitField<IsFunctionFlag, 4, 1> {};
2591 class IsParenthesized : public BitField<IsParenthesizedFlag, 5, 1> {};
2592 class FunctionKindBits : public BitField<FunctionKind, 6, 7> {};
2596 class ClassLiteral FINAL : public Expression {
2598 typedef ObjectLiteralProperty Property;
2600 DECLARE_NODE_TYPE(ClassLiteral)
2602 Handle<String> name() const { return raw_name_->string(); }
2603 const AstRawString* raw_name() const { return raw_name_; }
2604 Scope* scope() const { return scope_; }
2605 VariableProxy* class_variable_proxy() const { return class_variable_proxy_; }
2606 Expression* extends() const { return extends_; }
2607 FunctionLiteral* constructor() const { return constructor_; }
2608 ZoneList<Property*>* properties() const { return properties_; }
2609 int start_position() const { return position(); }
2610 int end_position() const { return end_position_; }
2612 BailoutId EntryId() const { return BailoutId(local_id(0)); }
2613 BailoutId DeclsId() const { return BailoutId(local_id(1)); }
2614 BailoutId ExitId() { return BailoutId(local_id(2)); }
2616 // Return an AST id for a property that is used in simulate instructions.
2617 BailoutId GetIdForProperty(int i) { return BailoutId(local_id(i + 3)); }
2619 // Unlike other AST nodes, this number of bailout IDs allocated for an
2620 // ClassLiteral can vary, so num_ids() is not a static method.
2621 int num_ids() const { return parent_num_ids() + 3 + properties()->length(); }
2624 ClassLiteral(Zone* zone, const AstRawString* name, Scope* scope,
2625 VariableProxy* class_variable_proxy, Expression* extends,
2626 FunctionLiteral* constructor, ZoneList<Property*>* properties,
2627 int start_position, int end_position)
2628 : Expression(zone, start_position),
2631 class_variable_proxy_(class_variable_proxy),
2633 constructor_(constructor),
2634 properties_(properties),
2635 end_position_(end_position) {}
2636 static int parent_num_ids() { return Expression::num_ids(); }
2639 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2641 const AstRawString* raw_name_;
2643 VariableProxy* class_variable_proxy_;
2644 Expression* extends_;
2645 FunctionLiteral* constructor_;
2646 ZoneList<Property*>* properties_;
2651 class NativeFunctionLiteral FINAL : public Expression {
2653 DECLARE_NODE_TYPE(NativeFunctionLiteral)
2655 Handle<String> name() const { return name_->string(); }
2656 v8::Extension* extension() const { return extension_; }
2659 NativeFunctionLiteral(Zone* zone, const AstRawString* name,
2660 v8::Extension* extension, int pos)
2661 : Expression(zone, pos), name_(name), extension_(extension) {}
2664 const AstRawString* name_;
2665 v8::Extension* extension_;
2669 class ThisFunction FINAL : public Expression {
2671 DECLARE_NODE_TYPE(ThisFunction)
2674 ThisFunction(Zone* zone, int pos) : Expression(zone, pos) {}
2678 class SuperReference FINAL : public Expression {
2680 DECLARE_NODE_TYPE(SuperReference)
2682 VariableProxy* this_var() const { return this_var_; }
2684 static int num_ids() { return parent_num_ids() + 1; }
2685 TypeFeedbackId HomeObjectFeedbackId() { return TypeFeedbackId(local_id(0)); }
2687 // Type feedback information.
2688 virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
2689 Isolate* isolate) OVERRIDE {
2690 return FeedbackVectorRequirements(0, FLAG_vector_ics ? 1 : 0);
2692 void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot) OVERRIDE {
2693 homeobject_feedback_slot_ = slot;
2695 Code::Kind FeedbackICSlotKind(int index) OVERRIDE { return Code::LOAD_IC; }
2697 FeedbackVectorICSlot HomeObjectFeedbackSlot() {
2698 DCHECK(!FLAG_vector_ics || !homeobject_feedback_slot_.IsInvalid());
2699 return homeobject_feedback_slot_;
2703 SuperReference(Zone* zone, VariableProxy* this_var, int pos)
2704 : Expression(zone, pos),
2705 this_var_(this_var),
2706 homeobject_feedback_slot_(FeedbackVectorICSlot::Invalid()) {
2707 DCHECK(this_var->is_this());
2709 static int parent_num_ids() { return Expression::num_ids(); }
2712 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2714 VariableProxy* this_var_;
2715 FeedbackVectorICSlot homeobject_feedback_slot_;
2719 #undef DECLARE_NODE_TYPE
2722 // ----------------------------------------------------------------------------
2723 // Regular expressions
2726 class RegExpVisitor BASE_EMBEDDED {
2728 virtual ~RegExpVisitor() { }
2729 #define MAKE_CASE(Name) \
2730 virtual void* Visit##Name(RegExp##Name*, void* data) = 0;
2731 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_CASE)
2736 class RegExpTree : public ZoneObject {
2738 static const int kInfinity = kMaxInt;
2739 virtual ~RegExpTree() {}
2740 virtual void* Accept(RegExpVisitor* visitor, void* data) = 0;
2741 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2742 RegExpNode* on_success) = 0;
2743 virtual bool IsTextElement() { return false; }
2744 virtual bool IsAnchoredAtStart() { return false; }
2745 virtual bool IsAnchoredAtEnd() { return false; }
2746 virtual int min_match() = 0;
2747 virtual int max_match() = 0;
2748 // Returns the interval of registers used for captures within this
2750 virtual Interval CaptureRegisters() { return Interval::Empty(); }
2751 virtual void AppendToText(RegExpText* text, Zone* zone);
2752 std::ostream& Print(std::ostream& os, Zone* zone); // NOLINT
2753 #define MAKE_ASTYPE(Name) \
2754 virtual RegExp##Name* As##Name(); \
2755 virtual bool Is##Name();
2756 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_ASTYPE)
2761 class RegExpDisjunction FINAL : public RegExpTree {
2763 explicit RegExpDisjunction(ZoneList<RegExpTree*>* alternatives);
2764 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
2765 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2766 RegExpNode* on_success) OVERRIDE;
2767 RegExpDisjunction* AsDisjunction() OVERRIDE;
2768 Interval CaptureRegisters() OVERRIDE;
2769 bool IsDisjunction() OVERRIDE;
2770 bool IsAnchoredAtStart() OVERRIDE;
2771 bool IsAnchoredAtEnd() OVERRIDE;
2772 int min_match() OVERRIDE { return min_match_; }
2773 int max_match() OVERRIDE { return max_match_; }
2774 ZoneList<RegExpTree*>* alternatives() { return alternatives_; }
2776 ZoneList<RegExpTree*>* alternatives_;
2782 class RegExpAlternative FINAL : public RegExpTree {
2784 explicit RegExpAlternative(ZoneList<RegExpTree*>* nodes);
2785 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
2786 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2787 RegExpNode* on_success) OVERRIDE;
2788 RegExpAlternative* AsAlternative() OVERRIDE;
2789 Interval CaptureRegisters() OVERRIDE;
2790 bool IsAlternative() OVERRIDE;
2791 bool IsAnchoredAtStart() OVERRIDE;
2792 bool IsAnchoredAtEnd() OVERRIDE;
2793 int min_match() OVERRIDE { return min_match_; }
2794 int max_match() OVERRIDE { return max_match_; }
2795 ZoneList<RegExpTree*>* nodes() { return nodes_; }
2797 ZoneList<RegExpTree*>* nodes_;
2803 class RegExpAssertion FINAL : public RegExpTree {
2805 enum AssertionType {
2813 explicit RegExpAssertion(AssertionType type) : assertion_type_(type) { }
2814 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
2815 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2816 RegExpNode* on_success) OVERRIDE;
2817 RegExpAssertion* AsAssertion() OVERRIDE;
2818 bool IsAssertion() OVERRIDE;
2819 bool IsAnchoredAtStart() OVERRIDE;
2820 bool IsAnchoredAtEnd() OVERRIDE;
2821 int min_match() OVERRIDE { return 0; }
2822 int max_match() OVERRIDE { return 0; }
2823 AssertionType assertion_type() { return assertion_type_; }
2825 AssertionType assertion_type_;
2829 class CharacterSet FINAL BASE_EMBEDDED {
2831 explicit CharacterSet(uc16 standard_set_type)
2833 standard_set_type_(standard_set_type) {}
2834 explicit CharacterSet(ZoneList<CharacterRange>* ranges)
2836 standard_set_type_(0) {}
2837 ZoneList<CharacterRange>* ranges(Zone* zone);
2838 uc16 standard_set_type() { return standard_set_type_; }
2839 void set_standard_set_type(uc16 special_set_type) {
2840 standard_set_type_ = special_set_type;
2842 bool is_standard() { return standard_set_type_ != 0; }
2843 void Canonicalize();
2845 ZoneList<CharacterRange>* ranges_;
2846 // If non-zero, the value represents a standard set (e.g., all whitespace
2847 // characters) without having to expand the ranges.
2848 uc16 standard_set_type_;
2852 class RegExpCharacterClass FINAL : public RegExpTree {
2854 RegExpCharacterClass(ZoneList<CharacterRange>* ranges, bool is_negated)
2856 is_negated_(is_negated) { }
2857 explicit RegExpCharacterClass(uc16 type)
2859 is_negated_(false) { }
2860 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
2861 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2862 RegExpNode* on_success) OVERRIDE;
2863 RegExpCharacterClass* AsCharacterClass() OVERRIDE;
2864 bool IsCharacterClass() OVERRIDE;
2865 bool IsTextElement() OVERRIDE { return true; }
2866 int min_match() OVERRIDE { return 1; }
2867 int max_match() OVERRIDE { return 1; }
2868 void AppendToText(RegExpText* text, Zone* zone) OVERRIDE;
2869 CharacterSet character_set() { return set_; }
2870 // TODO(lrn): Remove need for complex version if is_standard that
2871 // recognizes a mangled standard set and just do { return set_.is_special(); }
2872 bool is_standard(Zone* zone);
2873 // Returns a value representing the standard character set if is_standard()
2875 // Currently used values are:
2876 // s : unicode whitespace
2877 // S : unicode non-whitespace
2878 // w : ASCII word character (digit, letter, underscore)
2879 // W : non-ASCII word character
2881 // D : non-ASCII digit
2882 // . : non-unicode non-newline
2883 // * : All characters
2884 uc16 standard_type() { return set_.standard_set_type(); }
2885 ZoneList<CharacterRange>* ranges(Zone* zone) { return set_.ranges(zone); }
2886 bool is_negated() { return is_negated_; }
2894 class RegExpAtom FINAL : public RegExpTree {
2896 explicit RegExpAtom(Vector<const uc16> data) : data_(data) { }
2897 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
2898 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2899 RegExpNode* on_success) OVERRIDE;
2900 RegExpAtom* AsAtom() OVERRIDE;
2901 bool IsAtom() OVERRIDE;
2902 bool IsTextElement() OVERRIDE { return true; }
2903 int min_match() OVERRIDE { return data_.length(); }
2904 int max_match() OVERRIDE { return data_.length(); }
2905 void AppendToText(RegExpText* text, Zone* zone) OVERRIDE;
2906 Vector<const uc16> data() { return data_; }
2907 int length() { return data_.length(); }
2909 Vector<const uc16> data_;
2913 class RegExpText FINAL : public RegExpTree {
2915 explicit RegExpText(Zone* zone) : elements_(2, zone), length_(0) {}
2916 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
2917 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2918 RegExpNode* on_success) OVERRIDE;
2919 RegExpText* AsText() OVERRIDE;
2920 bool IsText() OVERRIDE;
2921 bool IsTextElement() OVERRIDE { return true; }
2922 int min_match() OVERRIDE { return length_; }
2923 int max_match() OVERRIDE { return length_; }
2924 void AppendToText(RegExpText* text, Zone* zone) OVERRIDE;
2925 void AddElement(TextElement elm, Zone* zone) {
2926 elements_.Add(elm, zone);
2927 length_ += elm.length();
2929 ZoneList<TextElement>* elements() { return &elements_; }
2931 ZoneList<TextElement> elements_;
2936 class RegExpQuantifier FINAL : public RegExpTree {
2938 enum QuantifierType { GREEDY, NON_GREEDY, POSSESSIVE };
2939 RegExpQuantifier(int min, int max, QuantifierType type, RegExpTree* body)
2943 min_match_(min * body->min_match()),
2944 quantifier_type_(type) {
2945 if (max > 0 && body->max_match() > kInfinity / max) {
2946 max_match_ = kInfinity;
2948 max_match_ = max * body->max_match();
2951 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
2952 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2953 RegExpNode* on_success) OVERRIDE;
2954 static RegExpNode* ToNode(int min,
2958 RegExpCompiler* compiler,
2959 RegExpNode* on_success,
2960 bool not_at_start = false);
2961 RegExpQuantifier* AsQuantifier() OVERRIDE;
2962 Interval CaptureRegisters() OVERRIDE;
2963 bool IsQuantifier() OVERRIDE;
2964 int min_match() OVERRIDE { return min_match_; }
2965 int max_match() OVERRIDE { return max_match_; }
2966 int min() { return min_; }
2967 int max() { return max_; }
2968 bool is_possessive() { return quantifier_type_ == POSSESSIVE; }
2969 bool is_non_greedy() { return quantifier_type_ == NON_GREEDY; }
2970 bool is_greedy() { return quantifier_type_ == GREEDY; }
2971 RegExpTree* body() { return body_; }
2979 QuantifierType quantifier_type_;
2983 class RegExpCapture FINAL : public RegExpTree {
2985 explicit RegExpCapture(RegExpTree* body, int index)
2986 : body_(body), index_(index) { }
2987 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
2988 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2989 RegExpNode* on_success) OVERRIDE;
2990 static RegExpNode* ToNode(RegExpTree* body,
2992 RegExpCompiler* compiler,
2993 RegExpNode* on_success);
2994 RegExpCapture* AsCapture() OVERRIDE;
2995 bool IsAnchoredAtStart() OVERRIDE;
2996 bool IsAnchoredAtEnd() OVERRIDE;
2997 Interval CaptureRegisters() OVERRIDE;
2998 bool IsCapture() OVERRIDE;
2999 int min_match() OVERRIDE { return body_->min_match(); }
3000 int max_match() OVERRIDE { return body_->max_match(); }
3001 RegExpTree* body() { return body_; }
3002 int index() { return index_; }
3003 static int StartRegister(int index) { return index * 2; }
3004 static int EndRegister(int index) { return index * 2 + 1; }
3012 class RegExpLookahead FINAL : public RegExpTree {
3014 RegExpLookahead(RegExpTree* body,
3019 is_positive_(is_positive),
3020 capture_count_(capture_count),
3021 capture_from_(capture_from) { }
3023 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
3024 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
3025 RegExpNode* on_success) OVERRIDE;
3026 RegExpLookahead* AsLookahead() OVERRIDE;
3027 Interval CaptureRegisters() OVERRIDE;
3028 bool IsLookahead() OVERRIDE;
3029 bool IsAnchoredAtStart() OVERRIDE;
3030 int min_match() OVERRIDE { return 0; }
3031 int max_match() OVERRIDE { return 0; }
3032 RegExpTree* body() { return body_; }
3033 bool is_positive() { return is_positive_; }
3034 int capture_count() { return capture_count_; }
3035 int capture_from() { return capture_from_; }
3045 class RegExpBackReference FINAL : public RegExpTree {
3047 explicit RegExpBackReference(RegExpCapture* capture)
3048 : capture_(capture) { }
3049 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
3050 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
3051 RegExpNode* on_success) OVERRIDE;
3052 RegExpBackReference* AsBackReference() OVERRIDE;
3053 bool IsBackReference() OVERRIDE;
3054 int min_match() OVERRIDE { return 0; }
3055 int max_match() OVERRIDE { return capture_->max_match(); }
3056 int index() { return capture_->index(); }
3057 RegExpCapture* capture() { return capture_; }
3059 RegExpCapture* capture_;
3063 class RegExpEmpty FINAL : public RegExpTree {
3066 void* Accept(RegExpVisitor* visitor, void* data) OVERRIDE;
3067 virtual RegExpNode* ToNode(RegExpCompiler* compiler,
3068 RegExpNode* on_success) OVERRIDE;
3069 RegExpEmpty* AsEmpty() OVERRIDE;
3070 bool IsEmpty() OVERRIDE;
3071 int min_match() OVERRIDE { return 0; }
3072 int max_match() OVERRIDE { return 0; }
3076 // ----------------------------------------------------------------------------
3078 // - leaf node visitors are abstract.
3080 class AstVisitor BASE_EMBEDDED {
3083 virtual ~AstVisitor() {}
3085 // Stack overflow check and dynamic dispatch.
3086 virtual void Visit(AstNode* node) = 0;
3088 // Iteration left-to-right.
3089 virtual void VisitDeclarations(ZoneList<Declaration*>* declarations);
3090 virtual void VisitStatements(ZoneList<Statement*>* statements);
3091 virtual void VisitExpressions(ZoneList<Expression*>* expressions);
3093 // Individual AST nodes.
3094 #define DEF_VISIT(type) \
3095 virtual void Visit##type(type* node) = 0;
3096 AST_NODE_LIST(DEF_VISIT)
3101 #define DEFINE_AST_VISITOR_SUBCLASS_MEMBERS() \
3103 void Visit(AstNode* node) FINAL { \
3104 if (!CheckStackOverflow()) node->Accept(this); \
3107 void SetStackOverflow() { stack_overflow_ = true; } \
3108 void ClearStackOverflow() { stack_overflow_ = false; } \
3109 bool HasStackOverflow() const { return stack_overflow_; } \
3111 bool CheckStackOverflow() { \
3112 if (stack_overflow_) return true; \
3113 StackLimitCheck check(isolate_); \
3114 if (!check.HasOverflowed()) return false; \
3115 stack_overflow_ = true; \
3120 void InitializeAstVisitor(Isolate* isolate, Zone* zone) { \
3121 isolate_ = isolate; \
3123 stack_overflow_ = false; \
3125 Zone* zone() { return zone_; } \
3126 Isolate* isolate() { return isolate_; } \
3128 Isolate* isolate_; \
3130 bool stack_overflow_
3133 // ----------------------------------------------------------------------------
3136 class AstNodeFactory FINAL BASE_EMBEDDED {
3138 explicit AstNodeFactory(AstValueFactory* ast_value_factory)
3139 : zone_(ast_value_factory->zone()),
3140 ast_value_factory_(ast_value_factory) {}
3142 VariableDeclaration* NewVariableDeclaration(VariableProxy* proxy,
3146 return new (zone_) VariableDeclaration(zone_, proxy, mode, scope, pos);
3149 FunctionDeclaration* NewFunctionDeclaration(VariableProxy* proxy,
3151 FunctionLiteral* fun,
3154 return new (zone_) FunctionDeclaration(zone_, proxy, mode, fun, scope, pos);
3157 ModuleDeclaration* NewModuleDeclaration(VariableProxy* proxy,
3161 return new (zone_) ModuleDeclaration(zone_, proxy, module, scope, pos);
3164 ImportDeclaration* NewImportDeclaration(VariableProxy* proxy,
3168 return new (zone_) ImportDeclaration(zone_, proxy, module, scope, pos);
3171 ExportDeclaration* NewExportDeclaration(VariableProxy* proxy,
3174 return new (zone_) ExportDeclaration(zone_, proxy, scope, pos);
3177 ModuleLiteral* NewModuleLiteral(Block* body, ModuleDescriptor* descriptor,
3179 return new (zone_) ModuleLiteral(zone_, body, descriptor, pos);
3182 ModulePath* NewModulePath(Module* origin, const AstRawString* name, int pos) {
3183 return new (zone_) ModulePath(zone_, origin, name, pos);
3186 ModuleUrl* NewModuleUrl(Handle<String> url, int pos) {
3187 return new (zone_) ModuleUrl(zone_, url, pos);
3190 Block* NewBlock(ZoneList<const AstRawString*>* labels,
3192 bool is_initializer_block,
3195 Block(zone_, labels, capacity, is_initializer_block, pos);
3198 #define STATEMENT_WITH_LABELS(NodeType) \
3199 NodeType* New##NodeType(ZoneList<const AstRawString*>* labels, int pos) { \
3200 return new (zone_) NodeType(zone_, labels, pos); \
3202 STATEMENT_WITH_LABELS(DoWhileStatement)
3203 STATEMENT_WITH_LABELS(WhileStatement)
3204 STATEMENT_WITH_LABELS(ForStatement)
3205 STATEMENT_WITH_LABELS(SwitchStatement)
3206 #undef STATEMENT_WITH_LABELS
3208 ForEachStatement* NewForEachStatement(ForEachStatement::VisitMode visit_mode,
3209 ZoneList<const AstRawString*>* labels,
3211 switch (visit_mode) {
3212 case ForEachStatement::ENUMERATE: {
3213 return new (zone_) ForInStatement(zone_, labels, pos);
3215 case ForEachStatement::ITERATE: {
3216 return new (zone_) ForOfStatement(zone_, labels, pos);
3223 ModuleStatement* NewModuleStatement(Block* body, int pos) {
3224 return new (zone_) ModuleStatement(zone_, body, pos);
3227 ExpressionStatement* NewExpressionStatement(Expression* expression, int pos) {
3228 return new (zone_) ExpressionStatement(zone_, expression, pos);
3231 ContinueStatement* NewContinueStatement(IterationStatement* target, int pos) {
3232 return new (zone_) ContinueStatement(zone_, target, pos);
3235 BreakStatement* NewBreakStatement(BreakableStatement* target, int pos) {
3236 return new (zone_) BreakStatement(zone_, target, pos);
3239 ReturnStatement* NewReturnStatement(Expression* expression, int pos) {
3240 return new (zone_) ReturnStatement(zone_, expression, pos);
3243 WithStatement* NewWithStatement(Scope* scope,
3244 Expression* expression,
3245 Statement* statement,
3247 return new (zone_) WithStatement(zone_, scope, expression, statement, pos);
3250 IfStatement* NewIfStatement(Expression* condition,
3251 Statement* then_statement,
3252 Statement* else_statement,
3255 IfStatement(zone_, condition, then_statement, else_statement, pos);
3258 TryCatchStatement* NewTryCatchStatement(int index,
3264 return new (zone_) TryCatchStatement(zone_, index, try_block, scope,
3265 variable, catch_block, pos);
3268 TryFinallyStatement* NewTryFinallyStatement(int index,
3270 Block* finally_block,
3273 TryFinallyStatement(zone_, index, try_block, finally_block, pos);
3276 DebuggerStatement* NewDebuggerStatement(int pos) {
3277 return new (zone_) DebuggerStatement(zone_, pos);
3280 EmptyStatement* NewEmptyStatement(int pos) {
3281 return new(zone_) EmptyStatement(zone_, pos);
3284 CaseClause* NewCaseClause(
3285 Expression* label, ZoneList<Statement*>* statements, int pos) {
3286 return new (zone_) CaseClause(zone_, label, statements, pos);
3289 Literal* NewStringLiteral(const AstRawString* string, int pos) {
3291 Literal(zone_, ast_value_factory_->NewString(string), pos);
3294 // A JavaScript symbol (ECMA-262 edition 6).
3295 Literal* NewSymbolLiteral(const char* name, int pos) {
3296 return new (zone_) Literal(zone_, ast_value_factory_->NewSymbol(name), pos);
3299 Literal* NewNumberLiteral(double number, int pos) {
3301 Literal(zone_, ast_value_factory_->NewNumber(number), pos);
3304 Literal* NewSmiLiteral(int number, int pos) {
3305 return new (zone_) Literal(zone_, ast_value_factory_->NewSmi(number), pos);
3308 Literal* NewBooleanLiteral(bool b, int pos) {
3309 return new (zone_) Literal(zone_, ast_value_factory_->NewBoolean(b), pos);
3312 Literal* NewNullLiteral(int pos) {
3313 return new (zone_) Literal(zone_, ast_value_factory_->NewNull(), pos);
3316 Literal* NewUndefinedLiteral(int pos) {
3317 return new (zone_) Literal(zone_, ast_value_factory_->NewUndefined(), pos);
3320 Literal* NewTheHoleLiteral(int pos) {
3321 return new (zone_) Literal(zone_, ast_value_factory_->NewTheHole(), pos);
3324 ObjectLiteral* NewObjectLiteral(
3325 ZoneList<ObjectLiteral::Property*>* properties,
3327 int boilerplate_properties,
3330 return new (zone_) ObjectLiteral(zone_, properties, literal_index,
3331 boilerplate_properties, has_function, pos);
3334 ObjectLiteral::Property* NewObjectLiteralProperty(
3335 Expression* key, Expression* value, ObjectLiteralProperty::Kind kind,
3336 bool is_static, bool is_computed_name) {
3338 ObjectLiteral::Property(key, value, kind, is_static, is_computed_name);
3341 ObjectLiteral::Property* NewObjectLiteralProperty(Expression* key,
3344 bool is_computed_name) {
3345 return new (zone_) ObjectLiteral::Property(ast_value_factory_, key, value,
3346 is_static, is_computed_name);
3349 RegExpLiteral* NewRegExpLiteral(const AstRawString* pattern,
3350 const AstRawString* flags,
3353 return new (zone_) RegExpLiteral(zone_, pattern, flags, literal_index, pos);
3356 ArrayLiteral* NewArrayLiteral(ZoneList<Expression*>* values,
3359 return new (zone_) ArrayLiteral(zone_, values, literal_index, pos);
3362 VariableProxy* NewVariableProxy(Variable* var,
3363 int start_position = RelocInfo::kNoPosition,
3364 int end_position = RelocInfo::kNoPosition) {
3365 return new (zone_) VariableProxy(zone_, var, start_position, end_position);
3368 VariableProxy* NewVariableProxy(const AstRawString* name, bool is_this,
3369 int start_position = RelocInfo::kNoPosition,
3370 int end_position = RelocInfo::kNoPosition) {
3372 VariableProxy(zone_, name, is_this, start_position, end_position);
3375 Property* NewProperty(Expression* obj, Expression* key, int pos) {
3376 return new (zone_) Property(zone_, obj, key, pos);
3379 Call* NewCall(Expression* expression,
3380 ZoneList<Expression*>* arguments,
3382 return new (zone_) Call(zone_, expression, arguments, pos);
3385 CallNew* NewCallNew(Expression* expression,
3386 ZoneList<Expression*>* arguments,
3388 return new (zone_) CallNew(zone_, expression, arguments, pos);
3391 CallRuntime* NewCallRuntime(const AstRawString* name,
3392 const Runtime::Function* function,
3393 ZoneList<Expression*>* arguments,
3395 return new (zone_) CallRuntime(zone_, name, function, arguments, pos);
3398 UnaryOperation* NewUnaryOperation(Token::Value op,
3399 Expression* expression,
3401 return new (zone_) UnaryOperation(zone_, op, expression, pos);
3404 BinaryOperation* NewBinaryOperation(Token::Value op,
3408 return new (zone_) BinaryOperation(zone_, op, left, right, pos);
3411 CountOperation* NewCountOperation(Token::Value op,
3415 return new (zone_) CountOperation(zone_, op, is_prefix, expr, pos);
3418 CompareOperation* NewCompareOperation(Token::Value op,
3422 return new (zone_) CompareOperation(zone_, op, left, right, pos);
3425 Conditional* NewConditional(Expression* condition,
3426 Expression* then_expression,
3427 Expression* else_expression,
3429 return new (zone_) Conditional(zone_, condition, then_expression,
3430 else_expression, position);
3433 Assignment* NewAssignment(Token::Value op,
3437 DCHECK(Token::IsAssignmentOp(op));
3438 Assignment* assign = new (zone_) Assignment(zone_, op, target, value, pos);
3439 if (assign->is_compound()) {
3440 DCHECK(Token::IsAssignmentOp(op));
3441 assign->binary_operation_ =
3442 NewBinaryOperation(assign->binary_op(), target, value, pos + 1);
3447 Yield* NewYield(Expression *generator_object,
3448 Expression* expression,
3449 Yield::Kind yield_kind,
3451 if (!expression) expression = NewUndefinedLiteral(pos);
3453 Yield(zone_, generator_object, expression, yield_kind, pos);
3456 Throw* NewThrow(Expression* exception, int pos) {
3457 return new (zone_) Throw(zone_, exception, pos);
3460 FunctionLiteral* NewFunctionLiteral(
3461 const AstRawString* name, AstValueFactory* ast_value_factory,
3462 Scope* scope, ZoneList<Statement*>* body, int materialized_literal_count,
3463 int expected_property_count, int handler_count, int parameter_count,
3464 FunctionLiteral::ParameterFlag has_duplicate_parameters,
3465 FunctionLiteral::FunctionType function_type,
3466 FunctionLiteral::IsFunctionFlag is_function,
3467 FunctionLiteral::IsParenthesizedFlag is_parenthesized, FunctionKind kind,
3469 return new (zone_) FunctionLiteral(
3470 zone_, name, ast_value_factory, scope, body, materialized_literal_count,
3471 expected_property_count, handler_count, parameter_count, function_type,
3472 has_duplicate_parameters, is_function, is_parenthesized, kind,
3476 ClassLiteral* NewClassLiteral(const AstRawString* name, Scope* scope,
3477 VariableProxy* proxy, Expression* extends,
3478 FunctionLiteral* constructor,
3479 ZoneList<ObjectLiteral::Property*>* properties,
3480 int start_position, int end_position) {
3482 ClassLiteral(zone_, name, scope, proxy, extends, constructor,
3483 properties, start_position, end_position);
3486 NativeFunctionLiteral* NewNativeFunctionLiteral(const AstRawString* name,
3487 v8::Extension* extension,
3489 return new (zone_) NativeFunctionLiteral(zone_, name, extension, pos);
3492 ThisFunction* NewThisFunction(int pos) {
3493 return new (zone_) ThisFunction(zone_, pos);
3496 SuperReference* NewSuperReference(VariableProxy* this_var, int pos) {
3497 return new (zone_) SuperReference(zone_, this_var, pos);
3502 AstValueFactory* ast_value_factory_;
3506 } } // namespace v8::internal