[turbofan] Use FastCloneShallow[Array|Object]Stub if possible.
[platform/upstream/v8.git] / src / ast.h
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.
4
5 #ifndef V8_AST_H_
6 #define V8_AST_H_
7
8 #include "src/v8.h"
9
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"
25
26 namespace v8 {
27 namespace internal {
28
29 // The abstract syntax tree is an intermediate, light-weight
30 // representation of the parsed JavaScript code suitable for
31 // compilation to native code.
32
33 // Nodes are allocated in a separate zone, which allows faster
34 // allocation and constant-time deallocation of the entire syntax
35 // tree.
36
37
38 // ----------------------------------------------------------------------------
39 // Nodes of the abstract syntax tree. Only concrete classes are
40 // enumerated here.
41
42 #define DECLARATION_NODE_LIST(V) \
43   V(VariableDeclaration)         \
44   V(FunctionDeclaration)         \
45   V(ModuleDeclaration)           \
46   V(ImportDeclaration)           \
47   V(ExportDeclaration)
48
49 #define MODULE_NODE_LIST(V)                     \
50   V(ModuleLiteral)                              \
51   V(ModulePath)                                 \
52   V(ModuleUrl)
53
54 #define STATEMENT_NODE_LIST(V)                  \
55   V(Block)                                      \
56   V(ModuleStatement)                            \
57   V(ExpressionStatement)                        \
58   V(EmptyStatement)                             \
59   V(IfStatement)                                \
60   V(ContinueStatement)                          \
61   V(BreakStatement)                             \
62   V(ReturnStatement)                            \
63   V(WithStatement)                              \
64   V(SwitchStatement)                            \
65   V(DoWhileStatement)                           \
66   V(WhileStatement)                             \
67   V(ForStatement)                               \
68   V(ForInStatement)                             \
69   V(ForOfStatement)                             \
70   V(TryCatchStatement)                          \
71   V(TryFinallyStatement)                        \
72   V(DebuggerStatement)
73
74 #define EXPRESSION_NODE_LIST(V) \
75   V(FunctionLiteral)            \
76   V(ClassLiteral)               \
77   V(NativeFunctionLiteral)      \
78   V(Conditional)                \
79   V(VariableProxy)              \
80   V(Literal)                    \
81   V(RegExpLiteral)              \
82   V(ObjectLiteral)              \
83   V(ArrayLiteral)               \
84   V(Assignment)                 \
85   V(Yield)                      \
86   V(Throw)                      \
87   V(Property)                   \
88   V(Call)                       \
89   V(CallNew)                    \
90   V(CallRuntime)                \
91   V(UnaryOperation)             \
92   V(CountOperation)             \
93   V(BinaryOperation)            \
94   V(CompareOperation)           \
95   V(Spread)                     \
96   V(ThisFunction)               \
97   V(SuperReference)             \
98   V(CaseClause)
99
100 #define AST_NODE_LIST(V)                        \
101   DECLARATION_NODE_LIST(V)                      \
102   MODULE_NODE_LIST(V)                           \
103   STATEMENT_NODE_LIST(V)                        \
104   EXPRESSION_NODE_LIST(V)
105
106 // Forward declarations
107 class AstNodeFactory;
108 class AstVisitor;
109 class Declaration;
110 class Module;
111 class BreakableStatement;
112 class Expression;
113 class IterationStatement;
114 class MaterializedLiteral;
115 class Statement;
116 class TypeFeedbackOracle;
117
118 class RegExpAlternative;
119 class RegExpAssertion;
120 class RegExpAtom;
121 class RegExpBackReference;
122 class RegExpCapture;
123 class RegExpCharacterClass;
124 class RegExpCompiler;
125 class RegExpDisjunction;
126 class RegExpEmpty;
127 class RegExpLookahead;
128 class RegExpQuantifier;
129 class RegExpText;
130
131 #define DEF_FORWARD_DECLARATION(type) class type;
132 AST_NODE_LIST(DEF_FORWARD_DECLARATION)
133 #undef DEF_FORWARD_DECLARATION
134
135
136 // Typedef only introduced to avoid unreadable code.
137 // Please do appreciate the required space in "> >".
138 typedef ZoneList<Handle<String> > ZoneStringList;
139 typedef ZoneList<Handle<Object> > ZoneObjectList;
140
141
142 #define DECLARE_NODE_TYPE(type)                                          \
143   void Accept(AstVisitor* v) override;                                   \
144   AstNode::NodeType node_type() const final { return AstNode::k##type; } \
145   friend class AstNodeFactory;
146
147
148 enum AstPropertiesFlag {
149   kDontSelfOptimize,
150   kDontSoftInline,
151   kDontCache
152 };
153
154
155 class FeedbackVectorRequirements {
156  public:
157   FeedbackVectorRequirements(int slots, int ic_slots)
158       : slots_(slots), ic_slots_(ic_slots) {}
159
160   int slots() const { return slots_; }
161   int ic_slots() const { return ic_slots_; }
162
163  private:
164   int slots_;
165   int ic_slots_;
166 };
167
168
169 class VariableICSlotPair final {
170  public:
171   VariableICSlotPair(Variable* variable, FeedbackVectorICSlot slot)
172       : variable_(variable), slot_(slot) {}
173   VariableICSlotPair()
174       : variable_(NULL), slot_(FeedbackVectorICSlot::Invalid()) {}
175
176   Variable* variable() const { return variable_; }
177   FeedbackVectorICSlot slot() const { return slot_; }
178
179  private:
180   Variable* variable_;
181   FeedbackVectorICSlot slot_;
182 };
183
184
185 typedef List<VariableICSlotPair> ICSlotCache;
186
187
188 class AstProperties final BASE_EMBEDDED {
189  public:
190   class Flags : public EnumSet<AstPropertiesFlag, int> {};
191
192   explicit AstProperties(Zone* zone) : node_count_(0), spec_(zone) {}
193
194   Flags* flags() { return &flags_; }
195   int node_count() { return node_count_; }
196   void add_node_count(int count) { node_count_ += count; }
197
198   int slots() const { return spec_.slots(); }
199   void increase_slots(int count) { spec_.increase_slots(count); }
200
201   int ic_slots() const { return spec_.ic_slots(); }
202   void increase_ic_slots(int count) { spec_.increase_ic_slots(count); }
203   void SetKind(int ic_slot, Code::Kind kind) { spec_.SetKind(ic_slot, kind); }
204   const ZoneFeedbackVectorSpec* get_spec() const { return &spec_; }
205
206  private:
207   Flags flags_;
208   int node_count_;
209   ZoneFeedbackVectorSpec spec_;
210 };
211
212
213 class AstNode: public ZoneObject {
214  public:
215 #define DECLARE_TYPE_ENUM(type) k##type,
216   enum NodeType {
217     AST_NODE_LIST(DECLARE_TYPE_ENUM)
218     kInvalid = -1
219   };
220 #undef DECLARE_TYPE_ENUM
221
222   void* operator new(size_t size, Zone* zone) { return zone->New(size); }
223
224   explicit AstNode(int position): position_(position) {}
225   virtual ~AstNode() {}
226
227   virtual void Accept(AstVisitor* v) = 0;
228   virtual NodeType node_type() const = 0;
229   int position() const { return position_; }
230
231   // Type testing & conversion functions overridden by concrete subclasses.
232 #define DECLARE_NODE_FUNCTIONS(type) \
233   bool Is##type() const { return node_type() == AstNode::k##type; } \
234   type* As##type() { \
235     return Is##type() ? reinterpret_cast<type*>(this) : NULL; \
236   } \
237   const type* As##type() const { \
238     return Is##type() ? reinterpret_cast<const type*>(this) : NULL; \
239   }
240   AST_NODE_LIST(DECLARE_NODE_FUNCTIONS)
241 #undef DECLARE_NODE_FUNCTIONS
242
243   virtual BreakableStatement* AsBreakableStatement() { return NULL; }
244   virtual IterationStatement* AsIterationStatement() { return NULL; }
245   virtual MaterializedLiteral* AsMaterializedLiteral() { return NULL; }
246
247   // The interface for feedback slots, with default no-op implementations for
248   // node types which don't actually have this. Note that this is conceptually
249   // not really nice, but multiple inheritance would introduce yet another
250   // vtable entry per node, something we don't want for space reasons.
251   virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
252       Isolate* isolate, const ICSlotCache* cache) {
253     return FeedbackVectorRequirements(0, 0);
254   }
255   virtual void SetFirstFeedbackSlot(FeedbackVectorSlot slot) { UNREACHABLE(); }
256   virtual void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot,
257                                       ICSlotCache* cache) {
258     UNREACHABLE();
259   }
260   // Each ICSlot stores a kind of IC which the participating node should know.
261   virtual Code::Kind FeedbackICSlotKind(int index) {
262     UNREACHABLE();
263     return Code::NUMBER_OF_KINDS;
264   }
265
266  private:
267   // Hidden to prevent accidental usage. It would have to load the
268   // current zone from the TLS.
269   void* operator new(size_t size);
270
271   friend class CaseClause;  // Generates AST IDs.
272
273   int position_;
274 };
275
276
277 class Statement : public AstNode {
278  public:
279   explicit Statement(Zone* zone, int position) : AstNode(position) {}
280
281   bool IsEmpty() { return AsEmptyStatement() != NULL; }
282   virtual bool IsJump() const { return false; }
283 };
284
285
286 class SmallMapList final {
287  public:
288   SmallMapList() {}
289   SmallMapList(int capacity, Zone* zone) : list_(capacity, zone) {}
290
291   void Reserve(int capacity, Zone* zone) { list_.Reserve(capacity, zone); }
292   void Clear() { list_.Clear(); }
293   void Sort() { list_.Sort(); }
294
295   bool is_empty() const { return list_.is_empty(); }
296   int length() const { return list_.length(); }
297
298   void AddMapIfMissing(Handle<Map> map, Zone* zone) {
299     if (!Map::TryUpdate(map).ToHandle(&map)) return;
300     for (int i = 0; i < length(); ++i) {
301       if (at(i).is_identical_to(map)) return;
302     }
303     Add(map, zone);
304   }
305
306   void FilterForPossibleTransitions(Map* root_map) {
307     for (int i = list_.length() - 1; i >= 0; i--) {
308       if (at(i)->FindRootMap() != root_map) {
309         list_.RemoveElement(list_.at(i));
310       }
311     }
312   }
313
314   void Add(Handle<Map> handle, Zone* zone) {
315     list_.Add(handle.location(), zone);
316   }
317
318   Handle<Map> at(int i) const {
319     return Handle<Map>(list_.at(i));
320   }
321
322   Handle<Map> first() const { return at(0); }
323   Handle<Map> last() const { return at(length() - 1); }
324
325  private:
326   // The list stores pointers to Map*, that is Map**, so it's GC safe.
327   SmallPointerList<Map*> list_;
328
329   DISALLOW_COPY_AND_ASSIGN(SmallMapList);
330 };
331
332
333 class Expression : public AstNode {
334  public:
335   enum Context {
336     // Not assigned a context yet, or else will not be visited during
337     // code generation.
338     kUninitialized,
339     // Evaluated for its side effects.
340     kEffect,
341     // Evaluated for its value (and side effects).
342     kValue,
343     // Evaluated for control flow (and side effects).
344     kTest
345   };
346
347   virtual bool IsValidReferenceExpression() const { return false; }
348
349   // Helpers for ToBoolean conversion.
350   virtual bool ToBooleanIsTrue() const { return false; }
351   virtual bool ToBooleanIsFalse() const { return false; }
352
353   // Symbols that cannot be parsed as array indices are considered property
354   // names.  We do not treat symbols that can be array indexes as property
355   // names because [] for string objects is handled only by keyed ICs.
356   virtual bool IsPropertyName() const { return false; }
357
358   // True iff the expression is a literal represented as a smi.
359   bool IsSmiLiteral() const;
360
361   // True iff the expression is a string literal.
362   bool IsStringLiteral() const;
363
364   // True iff the expression is the null literal.
365   bool IsNullLiteral() const;
366
367   // True if we can prove that the expression is the undefined literal.
368   bool IsUndefinedLiteral(Isolate* isolate) const;
369
370   // Expression type bounds
371   Bounds bounds() const { return bounds_; }
372   void set_bounds(Bounds bounds) { bounds_ = bounds; }
373
374   // Whether the expression is parenthesized
375   bool is_parenthesized() const {
376     return IsParenthesizedField::decode(bit_field_);
377   }
378   bool is_multi_parenthesized() const {
379     return IsMultiParenthesizedField::decode(bit_field_);
380   }
381   void increase_parenthesization_level() {
382     bit_field_ =
383         IsMultiParenthesizedField::update(bit_field_, is_parenthesized());
384     bit_field_ = IsParenthesizedField::update(bit_field_, true);
385   }
386
387   // Type feedback information for assignments and properties.
388   virtual bool IsMonomorphic() {
389     UNREACHABLE();
390     return false;
391   }
392   virtual SmallMapList* GetReceiverTypes() {
393     UNREACHABLE();
394     return NULL;
395   }
396   virtual KeyedAccessStoreMode GetStoreMode() const {
397     UNREACHABLE();
398     return STANDARD_STORE;
399   }
400   virtual IcCheckType GetKeyType() const {
401     UNREACHABLE();
402     return ELEMENT;
403   }
404
405   // TODO(rossberg): this should move to its own AST node eventually.
406   virtual void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle);
407   byte to_boolean_types() const {
408     return ToBooleanTypesField::decode(bit_field_);
409   }
410
411   void set_base_id(int id) { base_id_ = id; }
412   static int num_ids() { return parent_num_ids() + 2; }
413   BailoutId id() const { return BailoutId(local_id(0)); }
414   TypeFeedbackId test_id() const { return TypeFeedbackId(local_id(1)); }
415
416  protected:
417   Expression(Zone* zone, int pos)
418       : AstNode(pos),
419         base_id_(BailoutId::None().ToInt()),
420         bounds_(Bounds::Unbounded(zone)),
421         bit_field_(0) {}
422   static int parent_num_ids() { return 0; }
423   void set_to_boolean_types(byte types) {
424     bit_field_ = ToBooleanTypesField::update(bit_field_, types);
425   }
426
427   int base_id() const {
428     DCHECK(!BailoutId(base_id_).IsNone());
429     return base_id_;
430   }
431
432  private:
433   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
434
435   int base_id_;
436   Bounds bounds_;
437   class ToBooleanTypesField : public BitField16<byte, 0, 8> {};
438   class IsParenthesizedField : public BitField16<bool, 8, 1> {};
439   class IsMultiParenthesizedField : public BitField16<bool, 9, 1> {};
440   uint16_t bit_field_;
441   // Ends with 16-bit field; deriving classes in turn begin with
442   // 16-bit fields for optimum packing efficiency.
443 };
444
445
446 class BreakableStatement : public Statement {
447  public:
448   enum BreakableType {
449     TARGET_FOR_ANONYMOUS,
450     TARGET_FOR_NAMED_ONLY
451   };
452
453   // The labels associated with this statement. May be NULL;
454   // if it is != NULL, guaranteed to contain at least one entry.
455   ZoneList<const AstRawString*>* labels() const { return labels_; }
456
457   // Type testing & conversion.
458   BreakableStatement* AsBreakableStatement() final { return this; }
459
460   // Code generation
461   Label* break_target() { return &break_target_; }
462
463   // Testers.
464   bool is_target_for_anonymous() const {
465     return breakable_type_ == TARGET_FOR_ANONYMOUS;
466   }
467
468   void set_base_id(int id) { base_id_ = id; }
469   static int num_ids() { return parent_num_ids() + 2; }
470   BailoutId EntryId() const { return BailoutId(local_id(0)); }
471   BailoutId ExitId() const { return BailoutId(local_id(1)); }
472
473  protected:
474   BreakableStatement(Zone* zone, ZoneList<const AstRawString*>* labels,
475                      BreakableType breakable_type, int position)
476       : Statement(zone, position),
477         labels_(labels),
478         breakable_type_(breakable_type),
479         base_id_(BailoutId::None().ToInt()) {
480     DCHECK(labels == NULL || labels->length() > 0);
481   }
482   static int parent_num_ids() { return 0; }
483
484   int base_id() const {
485     DCHECK(!BailoutId(base_id_).IsNone());
486     return base_id_;
487   }
488
489  private:
490   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
491
492   ZoneList<const AstRawString*>* labels_;
493   BreakableType breakable_type_;
494   Label break_target_;
495   int base_id_;
496 };
497
498
499 class Block final : public BreakableStatement {
500  public:
501   DECLARE_NODE_TYPE(Block)
502
503   void AddStatement(Statement* statement, Zone* zone) {
504     statements_.Add(statement, zone);
505   }
506
507   ZoneList<Statement*>* statements() { return &statements_; }
508   bool is_initializer_block() const { return is_initializer_block_; }
509
510   static int num_ids() { return parent_num_ids() + 1; }
511   BailoutId DeclsId() const { return BailoutId(local_id(0)); }
512
513   bool IsJump() const override {
514     return !statements_.is_empty() && statements_.last()->IsJump()
515         && labels() == NULL;  // Good enough as an approximation...
516   }
517
518   Scope* scope() const { return scope_; }
519   void set_scope(Scope* scope) { scope_ = scope; }
520
521  protected:
522   Block(Zone* zone, ZoneList<const AstRawString*>* labels, int capacity,
523         bool is_initializer_block, int pos)
524       : BreakableStatement(zone, labels, TARGET_FOR_NAMED_ONLY, pos),
525         statements_(capacity, zone),
526         is_initializer_block_(is_initializer_block),
527         scope_(NULL) {}
528   static int parent_num_ids() { return BreakableStatement::num_ids(); }
529
530  private:
531   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
532
533   ZoneList<Statement*> statements_;
534   bool is_initializer_block_;
535   Scope* scope_;
536 };
537
538
539 class Declaration : public AstNode {
540  public:
541   VariableProxy* proxy() const { return proxy_; }
542   VariableMode mode() const { return mode_; }
543   Scope* scope() const { return scope_; }
544   virtual InitializationFlag initialization() const = 0;
545   virtual bool IsInlineable() const;
546
547  protected:
548   Declaration(Zone* zone, VariableProxy* proxy, VariableMode mode, Scope* scope,
549               int pos)
550       : AstNode(pos), mode_(mode), proxy_(proxy), scope_(scope) {
551     DCHECK(IsDeclaredVariableMode(mode));
552   }
553
554  private:
555   VariableMode mode_;
556   VariableProxy* proxy_;
557
558   // Nested scope from which the declaration originated.
559   Scope* scope_;
560 };
561
562
563 class VariableDeclaration final : public Declaration {
564  public:
565   DECLARE_NODE_TYPE(VariableDeclaration)
566
567   InitializationFlag initialization() const override {
568     return mode() == VAR ? kCreatedInitialized : kNeedsInitialization;
569   }
570
571   bool is_class_declaration() const { return is_class_declaration_; }
572
573  protected:
574   VariableDeclaration(Zone* zone, VariableProxy* proxy, VariableMode mode,
575                       Scope* scope, int pos, bool is_class_declaration = false)
576       : Declaration(zone, proxy, mode, scope, pos),
577         is_class_declaration_(is_class_declaration) {}
578
579   bool is_class_declaration_;
580 };
581
582
583 class FunctionDeclaration final : public Declaration {
584  public:
585   DECLARE_NODE_TYPE(FunctionDeclaration)
586
587   FunctionLiteral* fun() const { return fun_; }
588   InitializationFlag initialization() const override {
589     return kCreatedInitialized;
590   }
591   bool IsInlineable() const override;
592
593  protected:
594   FunctionDeclaration(Zone* zone,
595                       VariableProxy* proxy,
596                       VariableMode mode,
597                       FunctionLiteral* fun,
598                       Scope* scope,
599                       int pos)
600       : Declaration(zone, proxy, mode, scope, pos),
601         fun_(fun) {
602     DCHECK(mode == VAR || mode == LET || mode == CONST);
603     DCHECK(fun != NULL);
604   }
605
606  private:
607   FunctionLiteral* fun_;
608 };
609
610
611 class ModuleDeclaration final : public Declaration {
612  public:
613   DECLARE_NODE_TYPE(ModuleDeclaration)
614
615   Module* module() const { return module_; }
616   InitializationFlag initialization() const override {
617     return kCreatedInitialized;
618   }
619
620  protected:
621   ModuleDeclaration(Zone* zone, VariableProxy* proxy, Module* module,
622                     Scope* scope, int pos)
623       : Declaration(zone, proxy, CONST, scope, pos), module_(module) {}
624
625  private:
626   Module* module_;
627 };
628
629
630 class ImportDeclaration final : public Declaration {
631  public:
632   DECLARE_NODE_TYPE(ImportDeclaration)
633
634   const AstRawString* import_name() const { return import_name_; }
635   const AstRawString* module_specifier() const { return module_specifier_; }
636   void set_module_specifier(const AstRawString* module_specifier) {
637     DCHECK(module_specifier_ == NULL);
638     module_specifier_ = module_specifier;
639   }
640   InitializationFlag initialization() const override {
641     return kNeedsInitialization;
642   }
643
644  protected:
645   ImportDeclaration(Zone* zone, VariableProxy* proxy,
646                     const AstRawString* import_name,
647                     const AstRawString* module_specifier, Scope* scope, int pos)
648       : Declaration(zone, proxy, IMPORT, scope, pos),
649         import_name_(import_name),
650         module_specifier_(module_specifier) {}
651
652  private:
653   const AstRawString* import_name_;
654   const AstRawString* module_specifier_;
655 };
656
657
658 class ExportDeclaration final : public Declaration {
659  public:
660   DECLARE_NODE_TYPE(ExportDeclaration)
661
662   InitializationFlag initialization() const override {
663     return kCreatedInitialized;
664   }
665
666  protected:
667   ExportDeclaration(Zone* zone, VariableProxy* proxy, Scope* scope, int pos)
668       : Declaration(zone, proxy, LET, scope, pos) {}
669 };
670
671
672 class Module : public AstNode {
673  public:
674   ModuleDescriptor* descriptor() const { return descriptor_; }
675   Block* body() const { return body_; }
676
677  protected:
678   Module(Zone* zone, int pos)
679       : AstNode(pos), descriptor_(ModuleDescriptor::New(zone)), body_(NULL) {}
680   Module(Zone* zone, ModuleDescriptor* descriptor, int pos, Block* body = NULL)
681       : AstNode(pos), descriptor_(descriptor), body_(body) {}
682
683  private:
684   ModuleDescriptor* descriptor_;
685   Block* body_;
686 };
687
688
689 class ModuleLiteral final : public Module {
690  public:
691   DECLARE_NODE_TYPE(ModuleLiteral)
692
693  protected:
694   ModuleLiteral(Zone* zone, Block* body, ModuleDescriptor* descriptor, int pos)
695       : Module(zone, descriptor, pos, body) {}
696 };
697
698
699 class ModulePath final : public Module {
700  public:
701   DECLARE_NODE_TYPE(ModulePath)
702
703   Module* module() const { return module_; }
704   Handle<String> name() const { return name_->string(); }
705
706  protected:
707   ModulePath(Zone* zone, Module* module, const AstRawString* name, int pos)
708       : Module(zone, pos), module_(module), name_(name) {}
709
710  private:
711   Module* module_;
712   const AstRawString* name_;
713 };
714
715
716 class ModuleUrl final : public Module {
717  public:
718   DECLARE_NODE_TYPE(ModuleUrl)
719
720   Handle<String> url() const { return url_; }
721
722  protected:
723   ModuleUrl(Zone* zone, Handle<String> url, int pos)
724       : Module(zone, pos), url_(url) {
725   }
726
727  private:
728   Handle<String> url_;
729 };
730
731
732 class ModuleStatement final : public Statement {
733  public:
734   DECLARE_NODE_TYPE(ModuleStatement)
735
736   Block* body() const { return body_; }
737
738  protected:
739   ModuleStatement(Zone* zone, Block* body, int pos)
740       : Statement(zone, pos), body_(body) {}
741
742  private:
743   Block* body_;
744 };
745
746
747 class IterationStatement : public BreakableStatement {
748  public:
749   // Type testing & conversion.
750   IterationStatement* AsIterationStatement() final { return this; }
751
752   Statement* body() const { return body_; }
753
754   static int num_ids() { return parent_num_ids() + 1; }
755   BailoutId OsrEntryId() const { return BailoutId(local_id(0)); }
756   virtual BailoutId ContinueId() const = 0;
757   virtual BailoutId StackCheckId() const = 0;
758
759   // Code generation
760   Label* continue_target()  { return &continue_target_; }
761
762  protected:
763   IterationStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
764       : BreakableStatement(zone, labels, TARGET_FOR_ANONYMOUS, pos),
765         body_(NULL) {}
766   static int parent_num_ids() { return BreakableStatement::num_ids(); }
767   void Initialize(Statement* body) { body_ = body; }
768
769  private:
770   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
771
772   Statement* body_;
773   Label continue_target_;
774 };
775
776
777 class DoWhileStatement final : public IterationStatement {
778  public:
779   DECLARE_NODE_TYPE(DoWhileStatement)
780
781   void Initialize(Expression* cond, Statement* body) {
782     IterationStatement::Initialize(body);
783     cond_ = cond;
784   }
785
786   Expression* cond() const { return cond_; }
787
788   static int num_ids() { return parent_num_ids() + 2; }
789   BailoutId ContinueId() const override { return BailoutId(local_id(0)); }
790   BailoutId StackCheckId() const override { return BackEdgeId(); }
791   BailoutId BackEdgeId() const { return BailoutId(local_id(1)); }
792
793  protected:
794   DoWhileStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
795       : IterationStatement(zone, labels, pos), cond_(NULL) {}
796   static int parent_num_ids() { return IterationStatement::num_ids(); }
797
798  private:
799   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
800
801   Expression* cond_;
802 };
803
804
805 class WhileStatement final : public IterationStatement {
806  public:
807   DECLARE_NODE_TYPE(WhileStatement)
808
809   void Initialize(Expression* cond, Statement* body) {
810     IterationStatement::Initialize(body);
811     cond_ = cond;
812   }
813
814   Expression* cond() const { return cond_; }
815
816   static int num_ids() { return parent_num_ids() + 1; }
817   BailoutId ContinueId() const override { return EntryId(); }
818   BailoutId StackCheckId() const override { return BodyId(); }
819   BailoutId BodyId() const { return BailoutId(local_id(0)); }
820
821  protected:
822   WhileStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
823       : IterationStatement(zone, labels, pos), cond_(NULL) {}
824   static int parent_num_ids() { return IterationStatement::num_ids(); }
825
826  private:
827   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
828
829   Expression* cond_;
830 };
831
832
833 class ForStatement final : public IterationStatement {
834  public:
835   DECLARE_NODE_TYPE(ForStatement)
836
837   void Initialize(Statement* init,
838                   Expression* cond,
839                   Statement* next,
840                   Statement* body) {
841     IterationStatement::Initialize(body);
842     init_ = init;
843     cond_ = cond;
844     next_ = next;
845   }
846
847   Statement* init() const { return init_; }
848   Expression* cond() const { return cond_; }
849   Statement* next() const { return next_; }
850
851   static int num_ids() { return parent_num_ids() + 2; }
852   BailoutId ContinueId() const override { return BailoutId(local_id(0)); }
853   BailoutId StackCheckId() const override { return BodyId(); }
854   BailoutId BodyId() const { return BailoutId(local_id(1)); }
855
856  protected:
857   ForStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
858       : IterationStatement(zone, labels, pos),
859         init_(NULL),
860         cond_(NULL),
861         next_(NULL) {}
862   static int parent_num_ids() { return IterationStatement::num_ids(); }
863
864  private:
865   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
866
867   Statement* init_;
868   Expression* cond_;
869   Statement* next_;
870 };
871
872
873 class ForEachStatement : public IterationStatement {
874  public:
875   enum VisitMode {
876     ENUMERATE,   // for (each in subject) body;
877     ITERATE      // for (each of subject) body;
878   };
879
880   void Initialize(Expression* each, Expression* subject, Statement* body) {
881     IterationStatement::Initialize(body);
882     each_ = each;
883     subject_ = subject;
884   }
885
886   Expression* each() const { return each_; }
887   Expression* subject() const { return subject_; }
888
889  protected:
890   ForEachStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
891       : IterationStatement(zone, labels, pos), each_(NULL), subject_(NULL) {}
892
893  private:
894   Expression* each_;
895   Expression* subject_;
896 };
897
898
899 class ForInStatement final : public ForEachStatement {
900  public:
901   DECLARE_NODE_TYPE(ForInStatement)
902
903   Expression* enumerable() const {
904     return subject();
905   }
906
907   // Type feedback information.
908   virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
909       Isolate* isolate, const ICSlotCache* cache) override {
910     return FeedbackVectorRequirements(1, 0);
911   }
912   void SetFirstFeedbackSlot(FeedbackVectorSlot slot) override {
913     for_in_feedback_slot_ = slot;
914   }
915
916   FeedbackVectorSlot ForInFeedbackSlot() {
917     DCHECK(!for_in_feedback_slot_.IsInvalid());
918     return for_in_feedback_slot_;
919   }
920
921   enum ForInType { FAST_FOR_IN, SLOW_FOR_IN };
922   ForInType for_in_type() const { return for_in_type_; }
923   void set_for_in_type(ForInType type) { for_in_type_ = type; }
924
925   static int num_ids() { return parent_num_ids() + 6; }
926   BailoutId BodyId() const { return BailoutId(local_id(0)); }
927   BailoutId PrepareId() const { return BailoutId(local_id(1)); }
928   BailoutId EnumId() const { return BailoutId(local_id(2)); }
929   BailoutId ToObjectId() const { return BailoutId(local_id(3)); }
930   BailoutId FilterId() const { return BailoutId(local_id(4)); }
931   BailoutId AssignmentId() const { return BailoutId(local_id(5)); }
932   BailoutId ContinueId() const override { return EntryId(); }
933   BailoutId StackCheckId() const override { return BodyId(); }
934
935  protected:
936   ForInStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
937       : ForEachStatement(zone, labels, pos),
938         for_in_type_(SLOW_FOR_IN),
939         for_in_feedback_slot_(FeedbackVectorSlot::Invalid()) {}
940   static int parent_num_ids() { return ForEachStatement::num_ids(); }
941
942  private:
943   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
944
945   ForInType for_in_type_;
946   FeedbackVectorSlot for_in_feedback_slot_;
947 };
948
949
950 class ForOfStatement final : public ForEachStatement {
951  public:
952   DECLARE_NODE_TYPE(ForOfStatement)
953
954   void Initialize(Expression* each,
955                   Expression* subject,
956                   Statement* body,
957                   Expression* assign_iterator,
958                   Expression* next_result,
959                   Expression* result_done,
960                   Expression* assign_each) {
961     ForEachStatement::Initialize(each, subject, body);
962     assign_iterator_ = assign_iterator;
963     next_result_ = next_result;
964     result_done_ = result_done;
965     assign_each_ = assign_each;
966   }
967
968   Expression* iterable() const {
969     return subject();
970   }
971
972   // iterator = subject[Symbol.iterator]()
973   Expression* assign_iterator() const {
974     return assign_iterator_;
975   }
976
977   // result = iterator.next()  // with type check
978   Expression* next_result() const {
979     return next_result_;
980   }
981
982   // result.done
983   Expression* result_done() const {
984     return result_done_;
985   }
986
987   // each = result.value
988   Expression* assign_each() const {
989     return assign_each_;
990   }
991
992   BailoutId ContinueId() const override { return EntryId(); }
993   BailoutId StackCheckId() const override { return BackEdgeId(); }
994
995   static int num_ids() { return parent_num_ids() + 1; }
996   BailoutId BackEdgeId() const { return BailoutId(local_id(0)); }
997
998  protected:
999   ForOfStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
1000       : ForEachStatement(zone, labels, pos),
1001         assign_iterator_(NULL),
1002         next_result_(NULL),
1003         result_done_(NULL),
1004         assign_each_(NULL) {}
1005   static int parent_num_ids() { return ForEachStatement::num_ids(); }
1006
1007  private:
1008   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1009
1010   Expression* assign_iterator_;
1011   Expression* next_result_;
1012   Expression* result_done_;
1013   Expression* assign_each_;
1014 };
1015
1016
1017 class ExpressionStatement final : public Statement {
1018  public:
1019   DECLARE_NODE_TYPE(ExpressionStatement)
1020
1021   void set_expression(Expression* e) { expression_ = e; }
1022   Expression* expression() const { return expression_; }
1023   bool IsJump() const override { return expression_->IsThrow(); }
1024
1025  protected:
1026   ExpressionStatement(Zone* zone, Expression* expression, int pos)
1027       : Statement(zone, pos), expression_(expression) { }
1028
1029  private:
1030   Expression* expression_;
1031 };
1032
1033
1034 class JumpStatement : public Statement {
1035  public:
1036   bool IsJump() const final { return true; }
1037
1038  protected:
1039   explicit JumpStatement(Zone* zone, int pos) : Statement(zone, pos) {}
1040 };
1041
1042
1043 class ContinueStatement final : public JumpStatement {
1044  public:
1045   DECLARE_NODE_TYPE(ContinueStatement)
1046
1047   IterationStatement* target() const { return target_; }
1048
1049  protected:
1050   explicit ContinueStatement(Zone* zone, IterationStatement* target, int pos)
1051       : JumpStatement(zone, pos), target_(target) { }
1052
1053  private:
1054   IterationStatement* target_;
1055 };
1056
1057
1058 class BreakStatement final : public JumpStatement {
1059  public:
1060   DECLARE_NODE_TYPE(BreakStatement)
1061
1062   BreakableStatement* target() const { return target_; }
1063
1064  protected:
1065   explicit BreakStatement(Zone* zone, BreakableStatement* target, int pos)
1066       : JumpStatement(zone, pos), target_(target) { }
1067
1068  private:
1069   BreakableStatement* target_;
1070 };
1071
1072
1073 class ReturnStatement final : public JumpStatement {
1074  public:
1075   DECLARE_NODE_TYPE(ReturnStatement)
1076
1077   Expression* expression() const { return expression_; }
1078
1079  protected:
1080   explicit ReturnStatement(Zone* zone, Expression* expression, int pos)
1081       : JumpStatement(zone, pos), expression_(expression) { }
1082
1083  private:
1084   Expression* expression_;
1085 };
1086
1087
1088 class WithStatement final : public Statement {
1089  public:
1090   DECLARE_NODE_TYPE(WithStatement)
1091
1092   Scope* scope() { return scope_; }
1093   Expression* expression() const { return expression_; }
1094   Statement* statement() const { return statement_; }
1095
1096   void set_base_id(int id) { base_id_ = id; }
1097   static int num_ids() { return parent_num_ids() + 1; }
1098   BailoutId EntryId() const { return BailoutId(local_id(0)); }
1099
1100  protected:
1101   WithStatement(Zone* zone, Scope* scope, Expression* expression,
1102                 Statement* statement, int pos)
1103       : Statement(zone, pos),
1104         scope_(scope),
1105         expression_(expression),
1106         statement_(statement),
1107         base_id_(BailoutId::None().ToInt()) {}
1108   static int parent_num_ids() { return 0; }
1109
1110   int base_id() const {
1111     DCHECK(!BailoutId(base_id_).IsNone());
1112     return base_id_;
1113   }
1114
1115  private:
1116   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1117
1118   Scope* scope_;
1119   Expression* expression_;
1120   Statement* statement_;
1121   int base_id_;
1122 };
1123
1124
1125 class CaseClause final : public Expression {
1126  public:
1127   DECLARE_NODE_TYPE(CaseClause)
1128
1129   bool is_default() const { return label_ == NULL; }
1130   Expression* label() const {
1131     CHECK(!is_default());
1132     return label_;
1133   }
1134   Label* body_target() { return &body_target_; }
1135   ZoneList<Statement*>* statements() const { return statements_; }
1136
1137   static int num_ids() { return parent_num_ids() + 2; }
1138   BailoutId EntryId() const { return BailoutId(local_id(0)); }
1139   TypeFeedbackId CompareId() { return TypeFeedbackId(local_id(1)); }
1140
1141   Type* compare_type() { return compare_type_; }
1142   void set_compare_type(Type* type) { compare_type_ = type; }
1143
1144  protected:
1145   static int parent_num_ids() { return Expression::num_ids(); }
1146
1147  private:
1148   CaseClause(Zone* zone, Expression* label, ZoneList<Statement*>* statements,
1149              int pos);
1150   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1151
1152   Expression* label_;
1153   Label body_target_;
1154   ZoneList<Statement*>* statements_;
1155   Type* compare_type_;
1156 };
1157
1158
1159 class SwitchStatement final : public BreakableStatement {
1160  public:
1161   DECLARE_NODE_TYPE(SwitchStatement)
1162
1163   void Initialize(Expression* tag, ZoneList<CaseClause*>* cases) {
1164     tag_ = tag;
1165     cases_ = cases;
1166   }
1167
1168   Expression* tag() const { return tag_; }
1169   ZoneList<CaseClause*>* cases() const { return cases_; }
1170
1171  protected:
1172   SwitchStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
1173       : BreakableStatement(zone, labels, TARGET_FOR_ANONYMOUS, pos),
1174         tag_(NULL),
1175         cases_(NULL) {}
1176
1177  private:
1178   Expression* tag_;
1179   ZoneList<CaseClause*>* cases_;
1180 };
1181
1182
1183 // If-statements always have non-null references to their then- and
1184 // else-parts. When parsing if-statements with no explicit else-part,
1185 // the parser implicitly creates an empty statement. Use the
1186 // HasThenStatement() and HasElseStatement() functions to check if a
1187 // given if-statement has a then- or an else-part containing code.
1188 class IfStatement final : public Statement {
1189  public:
1190   DECLARE_NODE_TYPE(IfStatement)
1191
1192   bool HasThenStatement() const { return !then_statement()->IsEmpty(); }
1193   bool HasElseStatement() const { return !else_statement()->IsEmpty(); }
1194
1195   Expression* condition() const { return condition_; }
1196   Statement* then_statement() const { return then_statement_; }
1197   Statement* else_statement() const { return else_statement_; }
1198
1199   bool IsJump() const override {
1200     return HasThenStatement() && then_statement()->IsJump()
1201         && HasElseStatement() && else_statement()->IsJump();
1202   }
1203
1204   void set_base_id(int id) { base_id_ = id; }
1205   static int num_ids() { return parent_num_ids() + 3; }
1206   BailoutId IfId() const { return BailoutId(local_id(0)); }
1207   BailoutId ThenId() const { return BailoutId(local_id(1)); }
1208   BailoutId ElseId() const { return BailoutId(local_id(2)); }
1209
1210  protected:
1211   IfStatement(Zone* zone, Expression* condition, Statement* then_statement,
1212               Statement* else_statement, int pos)
1213       : Statement(zone, pos),
1214         condition_(condition),
1215         then_statement_(then_statement),
1216         else_statement_(else_statement),
1217         base_id_(BailoutId::None().ToInt()) {}
1218   static int parent_num_ids() { return 0; }
1219
1220   int base_id() const {
1221     DCHECK(!BailoutId(base_id_).IsNone());
1222     return base_id_;
1223   }
1224
1225  private:
1226   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1227
1228   Expression* condition_;
1229   Statement* then_statement_;
1230   Statement* else_statement_;
1231   int base_id_;
1232 };
1233
1234
1235 class TryStatement : public Statement {
1236  public:
1237   int index() const { return index_; }
1238   Block* try_block() const { return try_block_; }
1239
1240  protected:
1241   TryStatement(Zone* zone, int index, Block* try_block, int pos)
1242       : Statement(zone, pos), index_(index), try_block_(try_block) {}
1243
1244  private:
1245   // Unique (per-function) index of this handler.  This is not an AST ID.
1246   int index_;
1247
1248   Block* try_block_;
1249 };
1250
1251
1252 class TryCatchStatement final : public TryStatement {
1253  public:
1254   DECLARE_NODE_TYPE(TryCatchStatement)
1255
1256   Scope* scope() { return scope_; }
1257   Variable* variable() { return variable_; }
1258   Block* catch_block() const { return catch_block_; }
1259
1260  protected:
1261   TryCatchStatement(Zone* zone,
1262                     int index,
1263                     Block* try_block,
1264                     Scope* scope,
1265                     Variable* variable,
1266                     Block* catch_block,
1267                     int pos)
1268       : TryStatement(zone, index, try_block, pos),
1269         scope_(scope),
1270         variable_(variable),
1271         catch_block_(catch_block) {
1272   }
1273
1274  private:
1275   Scope* scope_;
1276   Variable* variable_;
1277   Block* catch_block_;
1278 };
1279
1280
1281 class TryFinallyStatement final : public TryStatement {
1282  public:
1283   DECLARE_NODE_TYPE(TryFinallyStatement)
1284
1285   Block* finally_block() const { return finally_block_; }
1286
1287  protected:
1288   TryFinallyStatement(
1289       Zone* zone, int index, Block* try_block, Block* finally_block, int pos)
1290       : TryStatement(zone, index, try_block, pos),
1291         finally_block_(finally_block) { }
1292
1293  private:
1294   Block* finally_block_;
1295 };
1296
1297
1298 class DebuggerStatement final : public Statement {
1299  public:
1300   DECLARE_NODE_TYPE(DebuggerStatement)
1301
1302   void set_base_id(int id) { base_id_ = id; }
1303   static int num_ids() { return parent_num_ids() + 1; }
1304   BailoutId DebugBreakId() const { return BailoutId(local_id(0)); }
1305
1306  protected:
1307   explicit DebuggerStatement(Zone* zone, int pos)
1308       : Statement(zone, pos), base_id_(BailoutId::None().ToInt()) {}
1309   static int parent_num_ids() { return 0; }
1310
1311   int base_id() const {
1312     DCHECK(!BailoutId(base_id_).IsNone());
1313     return base_id_;
1314   }
1315
1316  private:
1317   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1318
1319   int base_id_;
1320 };
1321
1322
1323 class EmptyStatement final : public Statement {
1324  public:
1325   DECLARE_NODE_TYPE(EmptyStatement)
1326
1327  protected:
1328   explicit EmptyStatement(Zone* zone, int pos): Statement(zone, pos) {}
1329 };
1330
1331
1332 class Literal final : public Expression {
1333  public:
1334   DECLARE_NODE_TYPE(Literal)
1335
1336   bool IsPropertyName() const override { return value_->IsPropertyName(); }
1337
1338   Handle<String> AsPropertyName() {
1339     DCHECK(IsPropertyName());
1340     return Handle<String>::cast(value());
1341   }
1342
1343   const AstRawString* AsRawPropertyName() {
1344     DCHECK(IsPropertyName());
1345     return value_->AsString();
1346   }
1347
1348   bool ToBooleanIsTrue() const override { return value()->BooleanValue(); }
1349   bool ToBooleanIsFalse() const override { return !value()->BooleanValue(); }
1350
1351   Handle<Object> value() const { return value_->value(); }
1352   const AstValue* raw_value() const { return value_; }
1353
1354   // Support for using Literal as a HashMap key. NOTE: Currently, this works
1355   // only for string and number literals!
1356   uint32_t Hash();
1357   static bool Match(void* literal1, void* literal2);
1358
1359   static int num_ids() { return parent_num_ids() + 1; }
1360   TypeFeedbackId LiteralFeedbackId() const {
1361     return TypeFeedbackId(local_id(0));
1362   }
1363
1364  protected:
1365   Literal(Zone* zone, const AstValue* value, int position)
1366       : Expression(zone, position), value_(value) {}
1367   static int parent_num_ids() { return Expression::num_ids(); }
1368
1369  private:
1370   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1371
1372   const AstValue* value_;
1373 };
1374
1375
1376 // Base class for literals that needs space in the corresponding JSFunction.
1377 class MaterializedLiteral : public Expression {
1378  public:
1379   virtual MaterializedLiteral* AsMaterializedLiteral() { return this; }
1380
1381   int literal_index() { return literal_index_; }
1382
1383   int depth() const {
1384     // only callable after initialization.
1385     DCHECK(depth_ >= 1);
1386     return depth_;
1387   }
1388
1389  protected:
1390   MaterializedLiteral(Zone* zone, int literal_index, int pos)
1391       : Expression(zone, pos),
1392         literal_index_(literal_index),
1393         is_simple_(false),
1394         depth_(0) {}
1395
1396   // A materialized literal is simple if the values consist of only
1397   // constants and simple object and array literals.
1398   bool is_simple() const { return is_simple_; }
1399   void set_is_simple(bool is_simple) { is_simple_ = is_simple; }
1400   friend class CompileTimeValue;
1401
1402   void set_depth(int depth) {
1403     DCHECK(depth >= 1);
1404     depth_ = depth;
1405   }
1406
1407   // Populate the constant properties/elements fixed array.
1408   void BuildConstants(Isolate* isolate);
1409   friend class ArrayLiteral;
1410   friend class ObjectLiteral;
1411
1412   // If the expression is a literal, return the literal value;
1413   // if the expression is a materialized literal and is simple return a
1414   // compile time value as encoded by CompileTimeValue::GetValue().
1415   // Otherwise, return undefined literal as the placeholder
1416   // in the object literal boilerplate.
1417   Handle<Object> GetBoilerplateValue(Expression* expression, Isolate* isolate);
1418
1419  private:
1420   int literal_index_;
1421   bool is_simple_;
1422   int depth_;
1423 };
1424
1425
1426 // Property is used for passing information
1427 // about an object literal's properties from the parser
1428 // to the code generator.
1429 class ObjectLiteralProperty final : public ZoneObject {
1430  public:
1431   enum Kind {
1432     CONSTANT,              // Property with constant value (compile time).
1433     COMPUTED,              // Property with computed value (execution time).
1434     MATERIALIZED_LITERAL,  // Property value is a materialized literal.
1435     GETTER, SETTER,        // Property is an accessor function.
1436     PROTOTYPE              // Property is __proto__.
1437   };
1438
1439   Expression* key() { return key_; }
1440   Expression* value() { return value_; }
1441   Kind kind() { return kind_; }
1442
1443   // Type feedback information.
1444   bool IsMonomorphic() { return !receiver_type_.is_null(); }
1445   Handle<Map> GetReceiverType() { return receiver_type_; }
1446
1447   bool IsCompileTimeValue();
1448
1449   void set_emit_store(bool emit_store);
1450   bool emit_store();
1451
1452   bool is_static() const { return is_static_; }
1453   bool is_computed_name() const { return is_computed_name_; }
1454
1455   void set_receiver_type(Handle<Map> map) { receiver_type_ = map; }
1456
1457  protected:
1458   friend class AstNodeFactory;
1459
1460   ObjectLiteralProperty(Expression* key, Expression* value, Kind kind,
1461                         bool is_static, bool is_computed_name);
1462   ObjectLiteralProperty(AstValueFactory* ast_value_factory, Expression* key,
1463                         Expression* value, bool is_static,
1464                         bool is_computed_name);
1465
1466  private:
1467   Expression* key_;
1468   Expression* value_;
1469   Kind kind_;
1470   bool emit_store_;
1471   bool is_static_;
1472   bool is_computed_name_;
1473   Handle<Map> receiver_type_;
1474 };
1475
1476
1477 // An object literal has a boilerplate object that is used
1478 // for minimizing the work when constructing it at runtime.
1479 class ObjectLiteral final : public MaterializedLiteral {
1480  public:
1481   typedef ObjectLiteralProperty Property;
1482
1483   DECLARE_NODE_TYPE(ObjectLiteral)
1484
1485   Handle<FixedArray> constant_properties() const {
1486     return constant_properties_;
1487   }
1488   int properties_count() const { return constant_properties_->length() / 2; }
1489   ZoneList<Property*>* properties() const { return properties_; }
1490   bool fast_elements() const { return fast_elements_; }
1491   bool may_store_doubles() const { return may_store_doubles_; }
1492   bool has_function() const { return has_function_; }
1493   bool has_elements() const { return has_elements_; }
1494
1495   // Decide if a property should be in the object boilerplate.
1496   static bool IsBoilerplateProperty(Property* property);
1497
1498   // Populate the constant properties fixed array.
1499   void BuildConstantProperties(Isolate* isolate);
1500
1501   // Mark all computed expressions that are bound to a key that
1502   // is shadowed by a later occurrence of the same key. For the
1503   // marked expressions, no store code is emitted.
1504   void CalculateEmitStore(Zone* zone);
1505
1506   // Assemble bitfield of flags for the CreateObjectLiteral helper.
1507   int ComputeFlags(bool disable_mementos = false) const {
1508     int flags = fast_elements() ? kFastElements : kNoFlags;
1509     flags |= has_function() ? kHasFunction : kNoFlags;
1510     if (depth() == 1 && !has_elements() && !may_store_doubles()) {
1511       flags |= kShallowProperties;
1512     }
1513     if (disable_mementos) {
1514       flags |= kDisableMementos;
1515     }
1516     return flags;
1517   }
1518
1519   enum Flags {
1520     kNoFlags = 0,
1521     kFastElements = 1,
1522     kHasFunction = 1 << 1,
1523     kShallowProperties = 1 << 2,
1524     kDisableMementos = 1 << 3
1525   };
1526
1527   struct Accessors: public ZoneObject {
1528     Accessors() : getter(NULL), setter(NULL) {}
1529     Expression* getter;
1530     Expression* setter;
1531   };
1532
1533   BailoutId CreateLiteralId() const { return BailoutId(local_id(0)); }
1534
1535   // Return an AST id for a property that is used in simulate instructions.
1536   BailoutId GetIdForProperty(int i) { return BailoutId(local_id(i + 1)); }
1537
1538   // Unlike other AST nodes, this number of bailout IDs allocated for an
1539   // ObjectLiteral can vary, so num_ids() is not a static method.
1540   int num_ids() const { return parent_num_ids() + 1 + properties()->length(); }
1541
1542  protected:
1543   ObjectLiteral(Zone* zone, ZoneList<Property*>* properties, int literal_index,
1544                 int boilerplate_properties, bool has_function, int pos)
1545       : MaterializedLiteral(zone, literal_index, pos),
1546         properties_(properties),
1547         boilerplate_properties_(boilerplate_properties),
1548         fast_elements_(false),
1549         has_elements_(false),
1550         may_store_doubles_(false),
1551         has_function_(has_function) {}
1552   static int parent_num_ids() { return MaterializedLiteral::num_ids(); }
1553
1554  private:
1555   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1556   Handle<FixedArray> constant_properties_;
1557   ZoneList<Property*>* properties_;
1558   int boilerplate_properties_;
1559   bool fast_elements_;
1560   bool has_elements_;
1561   bool may_store_doubles_;
1562   bool has_function_;
1563 };
1564
1565
1566 // Node for capturing a regexp literal.
1567 class RegExpLiteral final : public MaterializedLiteral {
1568  public:
1569   DECLARE_NODE_TYPE(RegExpLiteral)
1570
1571   Handle<String> pattern() const { return pattern_->string(); }
1572   Handle<String> flags() const { return flags_->string(); }
1573
1574  protected:
1575   RegExpLiteral(Zone* zone, const AstRawString* pattern,
1576                 const AstRawString* flags, int literal_index, int pos)
1577       : MaterializedLiteral(zone, literal_index, pos),
1578         pattern_(pattern),
1579         flags_(flags) {
1580     set_depth(1);
1581   }
1582
1583  private:
1584   const AstRawString* pattern_;
1585   const AstRawString* flags_;
1586 };
1587
1588
1589 // An array literal has a literals object that is used
1590 // for minimizing the work when constructing it at runtime.
1591 class ArrayLiteral final : public MaterializedLiteral {
1592  public:
1593   DECLARE_NODE_TYPE(ArrayLiteral)
1594
1595   Handle<FixedArray> constant_elements() const { return constant_elements_; }
1596   ElementsKind constant_elements_kind() const {
1597     DCHECK_EQ(2, constant_elements_->length());
1598     return static_cast<ElementsKind>(
1599         Smi::cast(constant_elements_->get(0))->value());
1600   }
1601
1602   ZoneList<Expression*>* values() const { return values_; }
1603
1604   BailoutId CreateLiteralId() const { return BailoutId(local_id(0)); }
1605
1606   // Return an AST id for an element that is used in simulate instructions.
1607   BailoutId GetIdForElement(int i) { return BailoutId(local_id(i + 1)); }
1608
1609   // Unlike other AST nodes, this number of bailout IDs allocated for an
1610   // ArrayLiteral can vary, so num_ids() is not a static method.
1611   int num_ids() const { return parent_num_ids() + 1 + values()->length(); }
1612
1613   // Populate the constant elements fixed array.
1614   void BuildConstantElements(Isolate* isolate);
1615
1616   // Assemble bitfield of flags for the CreateArrayLiteral helper.
1617   int ComputeFlags(bool disable_mementos = false) const {
1618     int flags = depth() == 1 ? kShallowElements : kNoFlags;
1619     if (disable_mementos) {
1620       flags |= kDisableMementos;
1621     }
1622     return flags;
1623   }
1624
1625   enum Flags {
1626     kNoFlags = 0,
1627     kShallowElements = 1,
1628     kDisableMementos = 1 << 1
1629   };
1630
1631  protected:
1632   ArrayLiteral(Zone* zone, ZoneList<Expression*>* values, int literal_index,
1633                int pos)
1634       : MaterializedLiteral(zone, literal_index, pos), values_(values) {}
1635   static int parent_num_ids() { return MaterializedLiteral::num_ids(); }
1636
1637  private:
1638   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1639
1640   Handle<FixedArray> constant_elements_;
1641   ZoneList<Expression*>* values_;
1642 };
1643
1644
1645 class VariableProxy final : public Expression {
1646  public:
1647   DECLARE_NODE_TYPE(VariableProxy)
1648
1649   bool IsValidReferenceExpression() const override { return !is_this(); }
1650
1651   bool IsArguments() const { return is_resolved() && var()->is_arguments(); }
1652
1653   Handle<String> name() const { return raw_name()->string(); }
1654   const AstRawString* raw_name() const {
1655     return is_resolved() ? var_->raw_name() : raw_name_;
1656   }
1657
1658   Variable* var() const {
1659     DCHECK(is_resolved());
1660     return var_;
1661   }
1662   void set_var(Variable* v) {
1663     DCHECK(!is_resolved());
1664     DCHECK_NOT_NULL(v);
1665     var_ = v;
1666   }
1667
1668   bool is_this() const { return IsThisField::decode(bit_field_); }
1669
1670   bool is_assigned() const { return IsAssignedField::decode(bit_field_); }
1671   void set_is_assigned() {
1672     bit_field_ = IsAssignedField::update(bit_field_, true);
1673   }
1674
1675   bool is_resolved() const { return IsResolvedField::decode(bit_field_); }
1676   void set_is_resolved() {
1677     bit_field_ = IsResolvedField::update(bit_field_, true);
1678   }
1679
1680   int end_position() const { return end_position_; }
1681
1682   // Bind this proxy to the variable var.
1683   void BindTo(Variable* var);
1684
1685   bool UsesVariableFeedbackSlot() const {
1686     return FLAG_vector_ics && (var()->IsUnallocated() || var()->IsLookupSlot());
1687   }
1688
1689   virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
1690       Isolate* isolate, const ICSlotCache* cache) override;
1691
1692   void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot,
1693                               ICSlotCache* cache) override;
1694   Code::Kind FeedbackICSlotKind(int index) override { return Code::LOAD_IC; }
1695   FeedbackVectorICSlot VariableFeedbackSlot() {
1696     DCHECK(!UsesVariableFeedbackSlot() || !variable_feedback_slot_.IsInvalid());
1697     return variable_feedback_slot_;
1698   }
1699
1700  protected:
1701   VariableProxy(Zone* zone, Variable* var, int start_position,
1702                 int end_position);
1703
1704   VariableProxy(Zone* zone, const AstRawString* name,
1705                 Variable::Kind variable_kind, int start_position,
1706                 int end_position);
1707
1708   class IsThisField : public BitField8<bool, 0, 1> {};
1709   class IsAssignedField : public BitField8<bool, 1, 1> {};
1710   class IsResolvedField : public BitField8<bool, 2, 1> {};
1711
1712   // Start with 16-bit (or smaller) field, which should get packed together
1713   // with Expression's trailing 16-bit field.
1714   uint8_t bit_field_;
1715   FeedbackVectorICSlot variable_feedback_slot_;
1716   union {
1717     const AstRawString* raw_name_;  // if !is_resolved_
1718     Variable* var_;                 // if is_resolved_
1719   };
1720   // Position is stored in the AstNode superclass, but VariableProxy needs to
1721   // know its end position too (for error messages). It cannot be inferred from
1722   // the variable name length because it can contain escapes.
1723   int end_position_;
1724 };
1725
1726
1727 class Property final : public Expression {
1728  public:
1729   DECLARE_NODE_TYPE(Property)
1730
1731   bool IsValidReferenceExpression() const override { return true; }
1732
1733   Expression* obj() const { return obj_; }
1734   Expression* key() const { return key_; }
1735
1736   static int num_ids() { return parent_num_ids() + 2; }
1737   BailoutId LoadId() const { return BailoutId(local_id(0)); }
1738   TypeFeedbackId PropertyFeedbackId() { return TypeFeedbackId(local_id(1)); }
1739
1740   bool IsStringAccess() const {
1741     return IsStringAccessField::decode(bit_field_);
1742   }
1743
1744   // Type feedback information.
1745   bool IsMonomorphic() override { return receiver_types_.length() == 1; }
1746   SmallMapList* GetReceiverTypes() override { return &receiver_types_; }
1747   KeyedAccessStoreMode GetStoreMode() const override { return STANDARD_STORE; }
1748   IcCheckType GetKeyType() const override {
1749     return KeyTypeField::decode(bit_field_);
1750   }
1751   bool IsUninitialized() const {
1752     return !is_for_call() && HasNoTypeInformation();
1753   }
1754   bool HasNoTypeInformation() const {
1755     return GetInlineCacheState() == UNINITIALIZED;
1756   }
1757   InlineCacheState GetInlineCacheState() const {
1758     return InlineCacheStateField::decode(bit_field_);
1759   }
1760   void set_is_string_access(bool b) {
1761     bit_field_ = IsStringAccessField::update(bit_field_, b);
1762   }
1763   void set_key_type(IcCheckType key_type) {
1764     bit_field_ = KeyTypeField::update(bit_field_, key_type);
1765   }
1766   void set_inline_cache_state(InlineCacheState state) {
1767     bit_field_ = InlineCacheStateField::update(bit_field_, state);
1768   }
1769   void mark_for_call() {
1770     bit_field_ = IsForCallField::update(bit_field_, true);
1771   }
1772   bool is_for_call() const { return IsForCallField::decode(bit_field_); }
1773
1774   bool IsSuperAccess() {
1775     return obj()->IsSuperReference();
1776   }
1777
1778   virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
1779       Isolate* isolate, const ICSlotCache* cache) override {
1780     return FeedbackVectorRequirements(0, FLAG_vector_ics ? 1 : 0);
1781   }
1782   void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot,
1783                               ICSlotCache* cache) override {
1784     property_feedback_slot_ = slot;
1785   }
1786   Code::Kind FeedbackICSlotKind(int index) override {
1787     return key()->IsPropertyName() ? Code::LOAD_IC : Code::KEYED_LOAD_IC;
1788   }
1789
1790   FeedbackVectorICSlot PropertyFeedbackSlot() const {
1791     DCHECK(!FLAG_vector_ics || !property_feedback_slot_.IsInvalid());
1792     return property_feedback_slot_;
1793   }
1794
1795  protected:
1796   Property(Zone* zone, Expression* obj, Expression* key, int pos)
1797       : Expression(zone, pos),
1798         bit_field_(IsForCallField::encode(false) |
1799                    IsStringAccessField::encode(false) |
1800                    InlineCacheStateField::encode(UNINITIALIZED)),
1801         property_feedback_slot_(FeedbackVectorICSlot::Invalid()),
1802         obj_(obj),
1803         key_(key) {}
1804   static int parent_num_ids() { return Expression::num_ids(); }
1805
1806  private:
1807   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1808
1809   class IsForCallField : public BitField8<bool, 0, 1> {};
1810   class IsStringAccessField : public BitField8<bool, 1, 1> {};
1811   class KeyTypeField : public BitField8<IcCheckType, 2, 1> {};
1812   class InlineCacheStateField : public BitField8<InlineCacheState, 3, 4> {};
1813   uint8_t bit_field_;
1814   FeedbackVectorICSlot property_feedback_slot_;
1815   Expression* obj_;
1816   Expression* key_;
1817   SmallMapList receiver_types_;
1818 };
1819
1820
1821 class Call final : public Expression {
1822  public:
1823   DECLARE_NODE_TYPE(Call)
1824
1825   Expression* expression() const { return expression_; }
1826   ZoneList<Expression*>* arguments() const { return arguments_; }
1827
1828   // Type feedback information.
1829   virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
1830       Isolate* isolate, const ICSlotCache* cache) override;
1831   void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot,
1832                               ICSlotCache* cache) override {
1833     ic_slot_or_slot_ = slot.ToInt();
1834   }
1835   void SetFirstFeedbackSlot(FeedbackVectorSlot slot) override {
1836     ic_slot_or_slot_ = slot.ToInt();
1837   }
1838   Code::Kind FeedbackICSlotKind(int index) override { return Code::CALL_IC; }
1839
1840   FeedbackVectorSlot CallFeedbackSlot() const {
1841     DCHECK(ic_slot_or_slot_ != FeedbackVectorSlot::Invalid().ToInt());
1842     return FeedbackVectorSlot(ic_slot_or_slot_);
1843   }
1844
1845   FeedbackVectorICSlot CallFeedbackICSlot() const {
1846     DCHECK(ic_slot_or_slot_ != FeedbackVectorICSlot::Invalid().ToInt());
1847     return FeedbackVectorICSlot(ic_slot_or_slot_);
1848   }
1849
1850   SmallMapList* GetReceiverTypes() override {
1851     if (expression()->IsProperty()) {
1852       return expression()->AsProperty()->GetReceiverTypes();
1853     }
1854     return NULL;
1855   }
1856
1857   bool IsMonomorphic() override {
1858     if (expression()->IsProperty()) {
1859       return expression()->AsProperty()->IsMonomorphic();
1860     }
1861     return !target_.is_null();
1862   }
1863
1864   bool global_call() const {
1865     VariableProxy* proxy = expression_->AsVariableProxy();
1866     return proxy != NULL && proxy->var()->IsUnallocated();
1867   }
1868
1869   bool known_global_function() const {
1870     return global_call() && !target_.is_null();
1871   }
1872
1873   Handle<JSFunction> target() { return target_; }
1874
1875   Handle<AllocationSite> allocation_site() { return allocation_site_; }
1876
1877   void SetKnownGlobalTarget(Handle<JSFunction> target) {
1878     target_ = target;
1879     set_is_uninitialized(false);
1880   }
1881   void set_target(Handle<JSFunction> target) { target_ = target; }
1882   void set_allocation_site(Handle<AllocationSite> site) {
1883     allocation_site_ = site;
1884   }
1885
1886   static int num_ids() { return parent_num_ids() + 2; }
1887   BailoutId ReturnId() const { return BailoutId(local_id(0)); }
1888   BailoutId EvalOrLookupId() const { return BailoutId(local_id(1)); }
1889
1890   bool is_uninitialized() const {
1891     return IsUninitializedField::decode(bit_field_);
1892   }
1893   void set_is_uninitialized(bool b) {
1894     bit_field_ = IsUninitializedField::update(bit_field_, b);
1895   }
1896
1897   enum CallType {
1898     POSSIBLY_EVAL_CALL,
1899     GLOBAL_CALL,
1900     LOOKUP_SLOT_CALL,
1901     PROPERTY_CALL,
1902     SUPER_CALL,
1903     OTHER_CALL
1904   };
1905
1906   // Helpers to determine how to handle the call.
1907   CallType GetCallType(Isolate* isolate) const;
1908   bool IsUsingCallFeedbackSlot(Isolate* isolate) const;
1909   bool IsUsingCallFeedbackICSlot(Isolate* isolate) const;
1910
1911 #ifdef DEBUG
1912   // Used to assert that the FullCodeGenerator records the return site.
1913   bool return_is_recorded_;
1914 #endif
1915
1916  protected:
1917   Call(Zone* zone, Expression* expression, ZoneList<Expression*>* arguments,
1918        int pos)
1919       : Expression(zone, pos),
1920         ic_slot_or_slot_(FeedbackVectorICSlot::Invalid().ToInt()),
1921         expression_(expression),
1922         arguments_(arguments),
1923         bit_field_(IsUninitializedField::encode(false)) {
1924     if (expression->IsProperty()) {
1925       expression->AsProperty()->mark_for_call();
1926     }
1927   }
1928   static int parent_num_ids() { return Expression::num_ids(); }
1929
1930  private:
1931   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
1932
1933   // We store this as an integer because we don't know if we have a slot or
1934   // an ic slot until scoping time.
1935   int ic_slot_or_slot_;
1936   Expression* expression_;
1937   ZoneList<Expression*>* arguments_;
1938   Handle<JSFunction> target_;
1939   Handle<AllocationSite> allocation_site_;
1940   class IsUninitializedField : public BitField8<bool, 0, 1> {};
1941   uint8_t bit_field_;
1942 };
1943
1944
1945 class CallNew final : public Expression {
1946  public:
1947   DECLARE_NODE_TYPE(CallNew)
1948
1949   Expression* expression() const { return expression_; }
1950   ZoneList<Expression*>* arguments() const { return arguments_; }
1951
1952   // Type feedback information.
1953   virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
1954       Isolate* isolate, const ICSlotCache* cache) override {
1955     return FeedbackVectorRequirements(FLAG_pretenuring_call_new ? 2 : 1, 0);
1956   }
1957   void SetFirstFeedbackSlot(FeedbackVectorSlot slot) override {
1958     callnew_feedback_slot_ = slot;
1959   }
1960
1961   FeedbackVectorSlot CallNewFeedbackSlot() {
1962     DCHECK(!callnew_feedback_slot_.IsInvalid());
1963     return callnew_feedback_slot_;
1964   }
1965   FeedbackVectorSlot AllocationSiteFeedbackSlot() {
1966     DCHECK(FLAG_pretenuring_call_new);
1967     return CallNewFeedbackSlot().next();
1968   }
1969
1970   bool IsMonomorphic() override { return is_monomorphic_; }
1971   Handle<JSFunction> target() const { return target_; }
1972   Handle<AllocationSite> allocation_site() const {
1973     return allocation_site_;
1974   }
1975
1976   static int num_ids() { return parent_num_ids() + 1; }
1977   static int feedback_slots() { return 1; }
1978   BailoutId ReturnId() const { return BailoutId(local_id(0)); }
1979
1980   void set_allocation_site(Handle<AllocationSite> site) {
1981     allocation_site_ = site;
1982   }
1983   void set_is_monomorphic(bool monomorphic) { is_monomorphic_ = monomorphic; }
1984   void set_target(Handle<JSFunction> target) { target_ = target; }
1985   void SetKnownGlobalTarget(Handle<JSFunction> target) {
1986     target_ = target;
1987     is_monomorphic_ = true;
1988   }
1989
1990  protected:
1991   CallNew(Zone* zone, Expression* expression, ZoneList<Expression*>* arguments,
1992           int pos)
1993       : Expression(zone, pos),
1994         expression_(expression),
1995         arguments_(arguments),
1996         is_monomorphic_(false),
1997         callnew_feedback_slot_(FeedbackVectorSlot::Invalid()) {}
1998
1999   static int parent_num_ids() { return Expression::num_ids(); }
2000
2001  private:
2002   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2003
2004   Expression* expression_;
2005   ZoneList<Expression*>* arguments_;
2006   bool is_monomorphic_;
2007   Handle<JSFunction> target_;
2008   Handle<AllocationSite> allocation_site_;
2009   FeedbackVectorSlot callnew_feedback_slot_;
2010 };
2011
2012
2013 // The CallRuntime class does not represent any official JavaScript
2014 // language construct. Instead it is used to call a C or JS function
2015 // with a set of arguments. This is used from the builtins that are
2016 // implemented in JavaScript (see "v8natives.js").
2017 class CallRuntime final : public Expression {
2018  public:
2019   DECLARE_NODE_TYPE(CallRuntime)
2020
2021   Handle<String> name() const { return raw_name_->string(); }
2022   const AstRawString* raw_name() const { return raw_name_; }
2023   const Runtime::Function* function() const { return function_; }
2024   ZoneList<Expression*>* arguments() const { return arguments_; }
2025   bool is_jsruntime() const { return function_ == NULL; }
2026
2027   // Type feedback information.
2028   bool HasCallRuntimeFeedbackSlot() const {
2029     return FLAG_vector_ics && is_jsruntime();
2030   }
2031   virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
2032       Isolate* isolate, const ICSlotCache* cache) override {
2033     return FeedbackVectorRequirements(0, HasCallRuntimeFeedbackSlot() ? 1 : 0);
2034   }
2035   void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot,
2036                               ICSlotCache* cache) override {
2037     callruntime_feedback_slot_ = slot;
2038   }
2039   Code::Kind FeedbackICSlotKind(int index) override { return Code::LOAD_IC; }
2040
2041   FeedbackVectorICSlot CallRuntimeFeedbackSlot() {
2042     DCHECK(!HasCallRuntimeFeedbackSlot() ||
2043            !callruntime_feedback_slot_.IsInvalid());
2044     return callruntime_feedback_slot_;
2045   }
2046
2047   static int num_ids() { return parent_num_ids() + 1; }
2048   TypeFeedbackId CallRuntimeFeedbackId() const {
2049     return TypeFeedbackId(local_id(0));
2050   }
2051
2052  protected:
2053   CallRuntime(Zone* zone, const AstRawString* name,
2054               const Runtime::Function* function,
2055               ZoneList<Expression*>* arguments, int pos)
2056       : Expression(zone, pos),
2057         raw_name_(name),
2058         function_(function),
2059         arguments_(arguments),
2060         callruntime_feedback_slot_(FeedbackVectorICSlot::Invalid()) {}
2061   static int parent_num_ids() { return Expression::num_ids(); }
2062
2063  private:
2064   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2065
2066   const AstRawString* raw_name_;
2067   const Runtime::Function* function_;
2068   ZoneList<Expression*>* arguments_;
2069   FeedbackVectorICSlot callruntime_feedback_slot_;
2070 };
2071
2072
2073 class UnaryOperation final : public Expression {
2074  public:
2075   DECLARE_NODE_TYPE(UnaryOperation)
2076
2077   Token::Value op() const { return op_; }
2078   Expression* expression() const { return expression_; }
2079
2080   // For unary not (Token::NOT), the AST ids where true and false will
2081   // actually be materialized, respectively.
2082   static int num_ids() { return parent_num_ids() + 2; }
2083   BailoutId MaterializeTrueId() const { return BailoutId(local_id(0)); }
2084   BailoutId MaterializeFalseId() const { return BailoutId(local_id(1)); }
2085
2086   virtual void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle) override;
2087
2088  protected:
2089   UnaryOperation(Zone* zone, Token::Value op, Expression* expression, int pos)
2090       : Expression(zone, pos), op_(op), expression_(expression) {
2091     DCHECK(Token::IsUnaryOp(op));
2092   }
2093   static int parent_num_ids() { return Expression::num_ids(); }
2094
2095  private:
2096   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2097
2098   Token::Value op_;
2099   Expression* expression_;
2100 };
2101
2102
2103 class BinaryOperation final : public Expression {
2104  public:
2105   DECLARE_NODE_TYPE(BinaryOperation)
2106
2107   Token::Value op() const { return static_cast<Token::Value>(op_); }
2108   Expression* left() const { return left_; }
2109   Expression* right() const { return right_; }
2110   Handle<AllocationSite> allocation_site() const { return allocation_site_; }
2111   void set_allocation_site(Handle<AllocationSite> allocation_site) {
2112     allocation_site_ = allocation_site;
2113   }
2114
2115   // The short-circuit logical operations need an AST ID for their
2116   // right-hand subexpression.
2117   static int num_ids() { return parent_num_ids() + 2; }
2118   BailoutId RightId() const { return BailoutId(local_id(0)); }
2119
2120   TypeFeedbackId BinaryOperationFeedbackId() const {
2121     return TypeFeedbackId(local_id(1));
2122   }
2123   Maybe<int> fixed_right_arg() const {
2124     return has_fixed_right_arg_ ? Just(fixed_right_arg_value_) : Nothing<int>();
2125   }
2126   void set_fixed_right_arg(Maybe<int> arg) {
2127     has_fixed_right_arg_ = arg.IsJust();
2128     if (arg.IsJust()) fixed_right_arg_value_ = arg.FromJust();
2129   }
2130
2131   virtual void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle) override;
2132
2133  protected:
2134   BinaryOperation(Zone* zone, Token::Value op, Expression* left,
2135                   Expression* right, int pos)
2136       : Expression(zone, pos),
2137         op_(static_cast<byte>(op)),
2138         has_fixed_right_arg_(false),
2139         fixed_right_arg_value_(0),
2140         left_(left),
2141         right_(right) {
2142     DCHECK(Token::IsBinaryOp(op));
2143   }
2144   static int parent_num_ids() { return Expression::num_ids(); }
2145
2146  private:
2147   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2148
2149   const byte op_;  // actually Token::Value
2150   // TODO(rossberg): the fixed arg should probably be represented as a Constant
2151   // type for the RHS. Currenty it's actually a Maybe<int>
2152   bool has_fixed_right_arg_;
2153   int fixed_right_arg_value_;
2154   Expression* left_;
2155   Expression* right_;
2156   Handle<AllocationSite> allocation_site_;
2157 };
2158
2159
2160 class CountOperation final : public Expression {
2161  public:
2162   DECLARE_NODE_TYPE(CountOperation)
2163
2164   bool is_prefix() const { return IsPrefixField::decode(bit_field_); }
2165   bool is_postfix() const { return !is_prefix(); }
2166
2167   Token::Value op() const { return TokenField::decode(bit_field_); }
2168   Token::Value binary_op() {
2169     return (op() == Token::INC) ? Token::ADD : Token::SUB;
2170   }
2171
2172   Expression* expression() const { return expression_; }
2173
2174   bool IsMonomorphic() override { return receiver_types_.length() == 1; }
2175   SmallMapList* GetReceiverTypes() override { return &receiver_types_; }
2176   IcCheckType GetKeyType() const override {
2177     return KeyTypeField::decode(bit_field_);
2178   }
2179   KeyedAccessStoreMode GetStoreMode() const override {
2180     return StoreModeField::decode(bit_field_);
2181   }
2182   Type* type() const { return type_; }
2183   void set_key_type(IcCheckType type) {
2184     bit_field_ = KeyTypeField::update(bit_field_, type);
2185   }
2186   void set_store_mode(KeyedAccessStoreMode mode) {
2187     bit_field_ = StoreModeField::update(bit_field_, mode);
2188   }
2189   void set_type(Type* type) { type_ = type; }
2190
2191   static int num_ids() { return parent_num_ids() + 4; }
2192   BailoutId AssignmentId() const { return BailoutId(local_id(0)); }
2193   BailoutId ToNumberId() const { return BailoutId(local_id(1)); }
2194   TypeFeedbackId CountBinOpFeedbackId() const {
2195     return TypeFeedbackId(local_id(2));
2196   }
2197   TypeFeedbackId CountStoreFeedbackId() const {
2198     return TypeFeedbackId(local_id(3));
2199   }
2200
2201  protected:
2202   CountOperation(Zone* zone, Token::Value op, bool is_prefix, Expression* expr,
2203                  int pos)
2204       : Expression(zone, pos),
2205         bit_field_(IsPrefixField::encode(is_prefix) |
2206                    KeyTypeField::encode(ELEMENT) |
2207                    StoreModeField::encode(STANDARD_STORE) |
2208                    TokenField::encode(op)),
2209         type_(NULL),
2210         expression_(expr) {}
2211   static int parent_num_ids() { return Expression::num_ids(); }
2212
2213  private:
2214   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2215
2216   class IsPrefixField : public BitField16<bool, 0, 1> {};
2217   class KeyTypeField : public BitField16<IcCheckType, 1, 1> {};
2218   class StoreModeField : public BitField16<KeyedAccessStoreMode, 2, 4> {};
2219   class TokenField : public BitField16<Token::Value, 6, 8> {};
2220
2221   // Starts with 16-bit field, which should get packed together with
2222   // Expression's trailing 16-bit field.
2223   uint16_t bit_field_;
2224   Type* type_;
2225   Expression* expression_;
2226   SmallMapList receiver_types_;
2227 };
2228
2229
2230 class CompareOperation final : public Expression {
2231  public:
2232   DECLARE_NODE_TYPE(CompareOperation)
2233
2234   Token::Value op() const { return op_; }
2235   Expression* left() const { return left_; }
2236   Expression* right() const { return right_; }
2237
2238   // Type feedback information.
2239   static int num_ids() { return parent_num_ids() + 1; }
2240   TypeFeedbackId CompareOperationFeedbackId() const {
2241     return TypeFeedbackId(local_id(0));
2242   }
2243   Type* combined_type() const { return combined_type_; }
2244   void set_combined_type(Type* type) { combined_type_ = type; }
2245
2246   // Match special cases.
2247   bool IsLiteralCompareTypeof(Expression** expr, Handle<String>* check);
2248   bool IsLiteralCompareUndefined(Expression** expr, Isolate* isolate);
2249   bool IsLiteralCompareNull(Expression** expr);
2250
2251  protected:
2252   CompareOperation(Zone* zone, Token::Value op, Expression* left,
2253                    Expression* right, int pos)
2254       : Expression(zone, pos),
2255         op_(op),
2256         left_(left),
2257         right_(right),
2258         combined_type_(Type::None(zone)) {
2259     DCHECK(Token::IsCompareOp(op));
2260   }
2261   static int parent_num_ids() { return Expression::num_ids(); }
2262
2263  private:
2264   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2265
2266   Token::Value op_;
2267   Expression* left_;
2268   Expression* right_;
2269
2270   Type* combined_type_;
2271 };
2272
2273
2274 class Spread final : public Expression {
2275  public:
2276   DECLARE_NODE_TYPE(Spread)
2277
2278   Expression* expression() const { return expression_; }
2279
2280   static int num_ids() { return parent_num_ids(); }
2281
2282  protected:
2283   Spread(Zone* zone, Expression* expression, int pos)
2284       : Expression(zone, pos), expression_(expression) {}
2285   static int parent_num_ids() { return Expression::num_ids(); }
2286
2287  private:
2288   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2289
2290   Expression* expression_;
2291 };
2292
2293
2294 class Conditional final : public Expression {
2295  public:
2296   DECLARE_NODE_TYPE(Conditional)
2297
2298   Expression* condition() const { return condition_; }
2299   Expression* then_expression() const { return then_expression_; }
2300   Expression* else_expression() const { return else_expression_; }
2301
2302   static int num_ids() { return parent_num_ids() + 2; }
2303   BailoutId ThenId() const { return BailoutId(local_id(0)); }
2304   BailoutId ElseId() const { return BailoutId(local_id(1)); }
2305
2306  protected:
2307   Conditional(Zone* zone, Expression* condition, Expression* then_expression,
2308               Expression* else_expression, int position)
2309       : Expression(zone, position),
2310         condition_(condition),
2311         then_expression_(then_expression),
2312         else_expression_(else_expression) {}
2313   static int parent_num_ids() { return Expression::num_ids(); }
2314
2315  private:
2316   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2317
2318   Expression* condition_;
2319   Expression* then_expression_;
2320   Expression* else_expression_;
2321 };
2322
2323
2324 class Assignment final : public Expression {
2325  public:
2326   DECLARE_NODE_TYPE(Assignment)
2327
2328   Assignment* AsSimpleAssignment() { return !is_compound() ? this : NULL; }
2329
2330   Token::Value binary_op() const;
2331
2332   Token::Value op() const { return TokenField::decode(bit_field_); }
2333   Expression* target() const { return target_; }
2334   Expression* value() const { return value_; }
2335   BinaryOperation* binary_operation() const { return binary_operation_; }
2336
2337   // This check relies on the definition order of token in token.h.
2338   bool is_compound() const { return op() > Token::ASSIGN; }
2339
2340   static int num_ids() { return parent_num_ids() + 2; }
2341   BailoutId AssignmentId() const { return BailoutId(local_id(0)); }
2342
2343   // Type feedback information.
2344   TypeFeedbackId AssignmentFeedbackId() { return TypeFeedbackId(local_id(1)); }
2345   bool IsMonomorphic() override { return receiver_types_.length() == 1; }
2346   bool IsUninitialized() const {
2347     return IsUninitializedField::decode(bit_field_);
2348   }
2349   bool HasNoTypeInformation() {
2350     return IsUninitializedField::decode(bit_field_);
2351   }
2352   SmallMapList* GetReceiverTypes() override { return &receiver_types_; }
2353   IcCheckType GetKeyType() const override {
2354     return KeyTypeField::decode(bit_field_);
2355   }
2356   KeyedAccessStoreMode GetStoreMode() const override {
2357     return StoreModeField::decode(bit_field_);
2358   }
2359   void set_is_uninitialized(bool b) {
2360     bit_field_ = IsUninitializedField::update(bit_field_, b);
2361   }
2362   void set_key_type(IcCheckType key_type) {
2363     bit_field_ = KeyTypeField::update(bit_field_, key_type);
2364   }
2365   void set_store_mode(KeyedAccessStoreMode mode) {
2366     bit_field_ = StoreModeField::update(bit_field_, mode);
2367   }
2368
2369  protected:
2370   Assignment(Zone* zone, Token::Value op, Expression* target, Expression* value,
2371              int pos);
2372   static int parent_num_ids() { return Expression::num_ids(); }
2373
2374  private:
2375   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2376
2377   class IsUninitializedField : public BitField16<bool, 0, 1> {};
2378   class KeyTypeField : public BitField16<IcCheckType, 1, 1> {};
2379   class StoreModeField : public BitField16<KeyedAccessStoreMode, 2, 4> {};
2380   class TokenField : public BitField16<Token::Value, 6, 8> {};
2381
2382   // Starts with 16-bit field, which should get packed together with
2383   // Expression's trailing 16-bit field.
2384   uint16_t bit_field_;
2385   Expression* target_;
2386   Expression* value_;
2387   BinaryOperation* binary_operation_;
2388   SmallMapList receiver_types_;
2389 };
2390
2391
2392 class Yield final : public Expression {
2393  public:
2394   DECLARE_NODE_TYPE(Yield)
2395
2396   enum Kind {
2397     kInitial,  // The initial yield that returns the unboxed generator object.
2398     kSuspend,  // A normal yield: { value: EXPRESSION, done: false }
2399     kDelegating,  // A yield*.
2400     kFinal        // A return: { value: EXPRESSION, done: true }
2401   };
2402
2403   Expression* generator_object() const { return generator_object_; }
2404   Expression* expression() const { return expression_; }
2405   Kind yield_kind() const { return yield_kind_; }
2406
2407   // Delegating yield surrounds the "yield" in a "try/catch".  This index
2408   // locates the catch handler in the handler table, and is equivalent to
2409   // TryCatchStatement::index().
2410   int index() const {
2411     DCHECK_EQ(kDelegating, yield_kind());
2412     return index_;
2413   }
2414   void set_index(int index) {
2415     DCHECK_EQ(kDelegating, yield_kind());
2416     index_ = index;
2417   }
2418
2419   // Type feedback information.
2420   bool HasFeedbackSlots() const {
2421     return FLAG_vector_ics && (yield_kind() == kDelegating);
2422   }
2423   virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
2424       Isolate* isolate, const ICSlotCache* cache) override {
2425     return FeedbackVectorRequirements(0, HasFeedbackSlots() ? 3 : 0);
2426   }
2427   void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot,
2428                               ICSlotCache* cache) override {
2429     yield_first_feedback_slot_ = slot;
2430   }
2431   Code::Kind FeedbackICSlotKind(int index) override {
2432     return index == 0 ? Code::KEYED_LOAD_IC : Code::LOAD_IC;
2433   }
2434
2435   FeedbackVectorICSlot KeyedLoadFeedbackSlot() {
2436     DCHECK(!HasFeedbackSlots() || !yield_first_feedback_slot_.IsInvalid());
2437     return yield_first_feedback_slot_;
2438   }
2439
2440   FeedbackVectorICSlot DoneFeedbackSlot() {
2441     return KeyedLoadFeedbackSlot().next();
2442   }
2443
2444   FeedbackVectorICSlot ValueFeedbackSlot() { return DoneFeedbackSlot().next(); }
2445
2446  protected:
2447   Yield(Zone* zone, Expression* generator_object, Expression* expression,
2448         Kind yield_kind, int pos)
2449       : Expression(zone, pos),
2450         generator_object_(generator_object),
2451         expression_(expression),
2452         yield_kind_(yield_kind),
2453         index_(-1),
2454         yield_first_feedback_slot_(FeedbackVectorICSlot::Invalid()) {}
2455
2456  private:
2457   Expression* generator_object_;
2458   Expression* expression_;
2459   Kind yield_kind_;
2460   int index_;
2461   FeedbackVectorICSlot yield_first_feedback_slot_;
2462 };
2463
2464
2465 class Throw final : public Expression {
2466  public:
2467   DECLARE_NODE_TYPE(Throw)
2468
2469   Expression* exception() const { return exception_; }
2470
2471  protected:
2472   Throw(Zone* zone, Expression* exception, int pos)
2473       : Expression(zone, pos), exception_(exception) {}
2474
2475  private:
2476   Expression* exception_;
2477 };
2478
2479
2480 class FunctionLiteral final : public Expression {
2481  public:
2482   enum FunctionType {
2483     ANONYMOUS_EXPRESSION,
2484     NAMED_EXPRESSION,
2485     DECLARATION
2486   };
2487
2488   enum ParameterFlag {
2489     kNoDuplicateParameters = 0,
2490     kHasDuplicateParameters = 1
2491   };
2492
2493   enum IsFunctionFlag {
2494     kGlobalOrEval,
2495     kIsFunction
2496   };
2497
2498   enum IsParenthesizedFlag {
2499     kIsParenthesized,
2500     kNotParenthesized
2501   };
2502
2503   enum ArityRestriction {
2504     NORMAL_ARITY,
2505     GETTER_ARITY,
2506     SETTER_ARITY
2507   };
2508
2509   DECLARE_NODE_TYPE(FunctionLiteral)
2510
2511   Handle<String> name() const { return raw_name_->string(); }
2512   const AstRawString* raw_name() const { return raw_name_; }
2513   Scope* scope() const { return scope_; }
2514   ZoneList<Statement*>* body() const { return body_; }
2515   void set_function_token_position(int pos) { function_token_position_ = pos; }
2516   int function_token_position() const { return function_token_position_; }
2517   int start_position() const;
2518   int end_position() const;
2519   int SourceSize() const { return end_position() - start_position(); }
2520   bool is_expression() const { return IsExpression::decode(bitfield_); }
2521   bool is_anonymous() const { return IsAnonymous::decode(bitfield_); }
2522   LanguageMode language_mode() const;
2523   bool uses_super_property() const;
2524
2525   static bool NeedsHomeObject(Expression* literal) {
2526     return literal != NULL && literal->IsFunctionLiteral() &&
2527            literal->AsFunctionLiteral()->uses_super_property();
2528   }
2529
2530   int materialized_literal_count() { return materialized_literal_count_; }
2531   int expected_property_count() { return expected_property_count_; }
2532   int handler_count() { return handler_count_; }
2533   int parameter_count() { return parameter_count_; }
2534
2535   bool AllowsLazyCompilation();
2536   bool AllowsLazyCompilationWithoutContext();
2537
2538   void InitializeSharedInfo(Handle<Code> code);
2539
2540   Handle<String> debug_name() const {
2541     if (raw_name_ != NULL && !raw_name_->IsEmpty()) {
2542       return raw_name_->string();
2543     }
2544     return inferred_name();
2545   }
2546
2547   Handle<String> inferred_name() const {
2548     if (!inferred_name_.is_null()) {
2549       DCHECK(raw_inferred_name_ == NULL);
2550       return inferred_name_;
2551     }
2552     if (raw_inferred_name_ != NULL) {
2553       return raw_inferred_name_->string();
2554     }
2555     UNREACHABLE();
2556     return Handle<String>();
2557   }
2558
2559   // Only one of {set_inferred_name, set_raw_inferred_name} should be called.
2560   void set_inferred_name(Handle<String> inferred_name) {
2561     DCHECK(!inferred_name.is_null());
2562     inferred_name_ = inferred_name;
2563     DCHECK(raw_inferred_name_== NULL || raw_inferred_name_->IsEmpty());
2564     raw_inferred_name_ = NULL;
2565   }
2566
2567   void set_raw_inferred_name(const AstString* raw_inferred_name) {
2568     DCHECK(raw_inferred_name != NULL);
2569     raw_inferred_name_ = raw_inferred_name;
2570     DCHECK(inferred_name_.is_null());
2571     inferred_name_ = Handle<String>();
2572   }
2573
2574   // shared_info may be null if it's not cached in full code.
2575   Handle<SharedFunctionInfo> shared_info() { return shared_info_; }
2576
2577   bool pretenure() { return Pretenure::decode(bitfield_); }
2578   void set_pretenure() { bitfield_ |= Pretenure::encode(true); }
2579
2580   bool has_duplicate_parameters() {
2581     return HasDuplicateParameters::decode(bitfield_);
2582   }
2583
2584   bool is_function() { return IsFunction::decode(bitfield_) == kIsFunction; }
2585
2586   // This is used as a heuristic on when to eagerly compile a function
2587   // literal. We consider the following constructs as hints that the
2588   // function will be called immediately:
2589   // - (function() { ... })();
2590   // - var x = function() { ... }();
2591   bool is_parenthesized() {
2592     return IsParenthesized::decode(bitfield_) == kIsParenthesized;
2593   }
2594   void set_parenthesized() {
2595     bitfield_ = IsParenthesized::update(bitfield_, kIsParenthesized);
2596   }
2597
2598   FunctionKind kind() { return FunctionKindBits::decode(bitfield_); }
2599
2600   int ast_node_count() { return ast_properties_.node_count(); }
2601   AstProperties::Flags* flags() { return ast_properties_.flags(); }
2602   void set_ast_properties(AstProperties* ast_properties) {
2603     ast_properties_ = *ast_properties;
2604   }
2605   const ZoneFeedbackVectorSpec* feedback_vector_spec() const {
2606     return ast_properties_.get_spec();
2607   }
2608   bool dont_optimize() { return dont_optimize_reason_ != kNoReason; }
2609   BailoutReason dont_optimize_reason() { return dont_optimize_reason_; }
2610   void set_dont_optimize_reason(BailoutReason reason) {
2611     dont_optimize_reason_ = reason;
2612   }
2613
2614  protected:
2615   FunctionLiteral(Zone* zone, const AstRawString* name,
2616                   AstValueFactory* ast_value_factory, Scope* scope,
2617                   ZoneList<Statement*>* body, int materialized_literal_count,
2618                   int expected_property_count, int handler_count,
2619                   int parameter_count, FunctionType function_type,
2620                   ParameterFlag has_duplicate_parameters,
2621                   IsFunctionFlag is_function,
2622                   IsParenthesizedFlag is_parenthesized, FunctionKind kind,
2623                   int position)
2624       : Expression(zone, position),
2625         raw_name_(name),
2626         scope_(scope),
2627         body_(body),
2628         raw_inferred_name_(ast_value_factory->empty_string()),
2629         ast_properties_(zone),
2630         dont_optimize_reason_(kNoReason),
2631         materialized_literal_count_(materialized_literal_count),
2632         expected_property_count_(expected_property_count),
2633         handler_count_(handler_count),
2634         parameter_count_(parameter_count),
2635         function_token_position_(RelocInfo::kNoPosition) {
2636     bitfield_ = IsExpression::encode(function_type != DECLARATION) |
2637                 IsAnonymous::encode(function_type == ANONYMOUS_EXPRESSION) |
2638                 Pretenure::encode(false) |
2639                 HasDuplicateParameters::encode(has_duplicate_parameters) |
2640                 IsFunction::encode(is_function) |
2641                 IsParenthesized::encode(is_parenthesized) |
2642                 FunctionKindBits::encode(kind);
2643     DCHECK(IsValidFunctionKind(kind));
2644   }
2645
2646  private:
2647   const AstRawString* raw_name_;
2648   Handle<String> name_;
2649   Handle<SharedFunctionInfo> shared_info_;
2650   Scope* scope_;
2651   ZoneList<Statement*>* body_;
2652   const AstString* raw_inferred_name_;
2653   Handle<String> inferred_name_;
2654   AstProperties ast_properties_;
2655   BailoutReason dont_optimize_reason_;
2656
2657   int materialized_literal_count_;
2658   int expected_property_count_;
2659   int handler_count_;
2660   int parameter_count_;
2661   int function_token_position_;
2662
2663   unsigned bitfield_;
2664   class IsExpression : public BitField<bool, 0, 1> {};
2665   class IsAnonymous : public BitField<bool, 1, 1> {};
2666   class Pretenure : public BitField<bool, 2, 1> {};
2667   class HasDuplicateParameters : public BitField<ParameterFlag, 3, 1> {};
2668   class IsFunction : public BitField<IsFunctionFlag, 4, 1> {};
2669   class IsParenthesized : public BitField<IsParenthesizedFlag, 5, 1> {};
2670   class FunctionKindBits : public BitField<FunctionKind, 6, 8> {};
2671 };
2672
2673
2674 class ClassLiteral final : public Expression {
2675  public:
2676   typedef ObjectLiteralProperty Property;
2677
2678   DECLARE_NODE_TYPE(ClassLiteral)
2679
2680   Handle<String> name() const { return raw_name_->string(); }
2681   const AstRawString* raw_name() const { return raw_name_; }
2682   Scope* scope() const { return scope_; }
2683   VariableProxy* class_variable_proxy() const { return class_variable_proxy_; }
2684   Expression* extends() const { return extends_; }
2685   FunctionLiteral* constructor() const { return constructor_; }
2686   ZoneList<Property*>* properties() const { return properties_; }
2687   int start_position() const { return position(); }
2688   int end_position() const { return end_position_; }
2689
2690   BailoutId EntryId() const { return BailoutId(local_id(0)); }
2691   BailoutId DeclsId() const { return BailoutId(local_id(1)); }
2692   BailoutId ExitId() { return BailoutId(local_id(2)); }
2693
2694   // Return an AST id for a property that is used in simulate instructions.
2695   BailoutId GetIdForProperty(int i) { return BailoutId(local_id(i + 3)); }
2696
2697   // Unlike other AST nodes, this number of bailout IDs allocated for an
2698   // ClassLiteral can vary, so num_ids() is not a static method.
2699   int num_ids() const { return parent_num_ids() + 3 + properties()->length(); }
2700
2701  protected:
2702   ClassLiteral(Zone* zone, const AstRawString* name, Scope* scope,
2703                VariableProxy* class_variable_proxy, Expression* extends,
2704                FunctionLiteral* constructor, ZoneList<Property*>* properties,
2705                int start_position, int end_position)
2706       : Expression(zone, start_position),
2707         raw_name_(name),
2708         scope_(scope),
2709         class_variable_proxy_(class_variable_proxy),
2710         extends_(extends),
2711         constructor_(constructor),
2712         properties_(properties),
2713         end_position_(end_position) {}
2714   static int parent_num_ids() { return Expression::num_ids(); }
2715
2716  private:
2717   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2718
2719   const AstRawString* raw_name_;
2720   Scope* scope_;
2721   VariableProxy* class_variable_proxy_;
2722   Expression* extends_;
2723   FunctionLiteral* constructor_;
2724   ZoneList<Property*>* properties_;
2725   int end_position_;
2726 };
2727
2728
2729 class NativeFunctionLiteral final : public Expression {
2730  public:
2731   DECLARE_NODE_TYPE(NativeFunctionLiteral)
2732
2733   Handle<String> name() const { return name_->string(); }
2734   v8::Extension* extension() const { return extension_; }
2735
2736  protected:
2737   NativeFunctionLiteral(Zone* zone, const AstRawString* name,
2738                         v8::Extension* extension, int pos)
2739       : Expression(zone, pos), name_(name), extension_(extension) {}
2740
2741  private:
2742   const AstRawString* name_;
2743   v8::Extension* extension_;
2744 };
2745
2746
2747 class ThisFunction final : public Expression {
2748  public:
2749   DECLARE_NODE_TYPE(ThisFunction)
2750
2751  protected:
2752   ThisFunction(Zone* zone, int pos) : Expression(zone, pos) {}
2753 };
2754
2755
2756 class SuperReference final : public Expression {
2757  public:
2758   DECLARE_NODE_TYPE(SuperReference)
2759
2760   VariableProxy* this_var() const { return this_var_; }
2761
2762   static int num_ids() { return parent_num_ids() + 1; }
2763   TypeFeedbackId HomeObjectFeedbackId() { return TypeFeedbackId(local_id(0)); }
2764
2765   // Type feedback information.
2766   virtual FeedbackVectorRequirements ComputeFeedbackRequirements(
2767       Isolate* isolate, const ICSlotCache* cache) override {
2768     return FeedbackVectorRequirements(0, FLAG_vector_ics ? 1 : 0);
2769   }
2770   void SetFirstFeedbackICSlot(FeedbackVectorICSlot slot,
2771                               ICSlotCache* cache) override {
2772     homeobject_feedback_slot_ = slot;
2773   }
2774   Code::Kind FeedbackICSlotKind(int index) override { return Code::LOAD_IC; }
2775
2776   FeedbackVectorICSlot HomeObjectFeedbackSlot() {
2777     DCHECK(!FLAG_vector_ics || !homeobject_feedback_slot_.IsInvalid());
2778     return homeobject_feedback_slot_;
2779   }
2780
2781  protected:
2782   SuperReference(Zone* zone, VariableProxy* this_var, int pos)
2783       : Expression(zone, pos),
2784         this_var_(this_var),
2785         homeobject_feedback_slot_(FeedbackVectorICSlot::Invalid()) {
2786     DCHECK(this_var->is_this());
2787   }
2788   static int parent_num_ids() { return Expression::num_ids(); }
2789
2790  private:
2791   int local_id(int n) const { return base_id() + parent_num_ids() + n; }
2792
2793   VariableProxy* this_var_;
2794   FeedbackVectorICSlot homeobject_feedback_slot_;
2795 };
2796
2797
2798 #undef DECLARE_NODE_TYPE
2799
2800
2801 // ----------------------------------------------------------------------------
2802 // Regular expressions
2803
2804
2805 class RegExpVisitor BASE_EMBEDDED {
2806  public:
2807   virtual ~RegExpVisitor() { }
2808 #define MAKE_CASE(Name)                                              \
2809   virtual void* Visit##Name(RegExp##Name*, void* data) = 0;
2810   FOR_EACH_REG_EXP_TREE_TYPE(MAKE_CASE)
2811 #undef MAKE_CASE
2812 };
2813
2814
2815 class RegExpTree : public ZoneObject {
2816  public:
2817   static const int kInfinity = kMaxInt;
2818   virtual ~RegExpTree() {}
2819   virtual void* Accept(RegExpVisitor* visitor, void* data) = 0;
2820   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2821                              RegExpNode* on_success) = 0;
2822   virtual bool IsTextElement() { return false; }
2823   virtual bool IsAnchoredAtStart() { return false; }
2824   virtual bool IsAnchoredAtEnd() { return false; }
2825   virtual int min_match() = 0;
2826   virtual int max_match() = 0;
2827   // Returns the interval of registers used for captures within this
2828   // expression.
2829   virtual Interval CaptureRegisters() { return Interval::Empty(); }
2830   virtual void AppendToText(RegExpText* text, Zone* zone);
2831   std::ostream& Print(std::ostream& os, Zone* zone);  // NOLINT
2832 #define MAKE_ASTYPE(Name)                                                  \
2833   virtual RegExp##Name* As##Name();                                        \
2834   virtual bool Is##Name();
2835   FOR_EACH_REG_EXP_TREE_TYPE(MAKE_ASTYPE)
2836 #undef MAKE_ASTYPE
2837 };
2838
2839
2840 class RegExpDisjunction final : public RegExpTree {
2841  public:
2842   explicit RegExpDisjunction(ZoneList<RegExpTree*>* alternatives);
2843   void* Accept(RegExpVisitor* visitor, void* data) override;
2844   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2845                              RegExpNode* on_success) override;
2846   RegExpDisjunction* AsDisjunction() override;
2847   Interval CaptureRegisters() override;
2848   bool IsDisjunction() override;
2849   bool IsAnchoredAtStart() override;
2850   bool IsAnchoredAtEnd() override;
2851   int min_match() override { return min_match_; }
2852   int max_match() override { return max_match_; }
2853   ZoneList<RegExpTree*>* alternatives() { return alternatives_; }
2854  private:
2855   ZoneList<RegExpTree*>* alternatives_;
2856   int min_match_;
2857   int max_match_;
2858 };
2859
2860
2861 class RegExpAlternative final : public RegExpTree {
2862  public:
2863   explicit RegExpAlternative(ZoneList<RegExpTree*>* nodes);
2864   void* Accept(RegExpVisitor* visitor, void* data) override;
2865   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2866                              RegExpNode* on_success) override;
2867   RegExpAlternative* AsAlternative() override;
2868   Interval CaptureRegisters() override;
2869   bool IsAlternative() override;
2870   bool IsAnchoredAtStart() override;
2871   bool IsAnchoredAtEnd() override;
2872   int min_match() override { return min_match_; }
2873   int max_match() override { return max_match_; }
2874   ZoneList<RegExpTree*>* nodes() { return nodes_; }
2875  private:
2876   ZoneList<RegExpTree*>* nodes_;
2877   int min_match_;
2878   int max_match_;
2879 };
2880
2881
2882 class RegExpAssertion final : public RegExpTree {
2883  public:
2884   enum AssertionType {
2885     START_OF_LINE,
2886     START_OF_INPUT,
2887     END_OF_LINE,
2888     END_OF_INPUT,
2889     BOUNDARY,
2890     NON_BOUNDARY
2891   };
2892   explicit RegExpAssertion(AssertionType type) : assertion_type_(type) { }
2893   void* Accept(RegExpVisitor* visitor, void* data) override;
2894   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2895                              RegExpNode* on_success) override;
2896   RegExpAssertion* AsAssertion() override;
2897   bool IsAssertion() override;
2898   bool IsAnchoredAtStart() override;
2899   bool IsAnchoredAtEnd() override;
2900   int min_match() override { return 0; }
2901   int max_match() override { return 0; }
2902   AssertionType assertion_type() { return assertion_type_; }
2903  private:
2904   AssertionType assertion_type_;
2905 };
2906
2907
2908 class CharacterSet final BASE_EMBEDDED {
2909  public:
2910   explicit CharacterSet(uc16 standard_set_type)
2911       : ranges_(NULL),
2912         standard_set_type_(standard_set_type) {}
2913   explicit CharacterSet(ZoneList<CharacterRange>* ranges)
2914       : ranges_(ranges),
2915         standard_set_type_(0) {}
2916   ZoneList<CharacterRange>* ranges(Zone* zone);
2917   uc16 standard_set_type() { return standard_set_type_; }
2918   void set_standard_set_type(uc16 special_set_type) {
2919     standard_set_type_ = special_set_type;
2920   }
2921   bool is_standard() { return standard_set_type_ != 0; }
2922   void Canonicalize();
2923  private:
2924   ZoneList<CharacterRange>* ranges_;
2925   // If non-zero, the value represents a standard set (e.g., all whitespace
2926   // characters) without having to expand the ranges.
2927   uc16 standard_set_type_;
2928 };
2929
2930
2931 class RegExpCharacterClass final : public RegExpTree {
2932  public:
2933   RegExpCharacterClass(ZoneList<CharacterRange>* ranges, bool is_negated)
2934       : set_(ranges),
2935         is_negated_(is_negated) { }
2936   explicit RegExpCharacterClass(uc16 type)
2937       : set_(type),
2938         is_negated_(false) { }
2939   void* Accept(RegExpVisitor* visitor, void* data) override;
2940   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2941                              RegExpNode* on_success) override;
2942   RegExpCharacterClass* AsCharacterClass() override;
2943   bool IsCharacterClass() override;
2944   bool IsTextElement() override { return true; }
2945   int min_match() override { return 1; }
2946   int max_match() override { return 1; }
2947   void AppendToText(RegExpText* text, Zone* zone) override;
2948   CharacterSet character_set() { return set_; }
2949   // TODO(lrn): Remove need for complex version if is_standard that
2950   // recognizes a mangled standard set and just do { return set_.is_special(); }
2951   bool is_standard(Zone* zone);
2952   // Returns a value representing the standard character set if is_standard()
2953   // returns true.
2954   // Currently used values are:
2955   // s : unicode whitespace
2956   // S : unicode non-whitespace
2957   // w : ASCII word character (digit, letter, underscore)
2958   // W : non-ASCII word character
2959   // d : ASCII digit
2960   // D : non-ASCII digit
2961   // . : non-unicode non-newline
2962   // * : All characters
2963   uc16 standard_type() { return set_.standard_set_type(); }
2964   ZoneList<CharacterRange>* ranges(Zone* zone) { return set_.ranges(zone); }
2965   bool is_negated() { return is_negated_; }
2966
2967  private:
2968   CharacterSet set_;
2969   bool is_negated_;
2970 };
2971
2972
2973 class RegExpAtom final : public RegExpTree {
2974  public:
2975   explicit RegExpAtom(Vector<const uc16> data) : data_(data) { }
2976   void* Accept(RegExpVisitor* visitor, void* data) override;
2977   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2978                              RegExpNode* on_success) override;
2979   RegExpAtom* AsAtom() override;
2980   bool IsAtom() override;
2981   bool IsTextElement() override { return true; }
2982   int min_match() override { return data_.length(); }
2983   int max_match() override { return data_.length(); }
2984   void AppendToText(RegExpText* text, Zone* zone) override;
2985   Vector<const uc16> data() { return data_; }
2986   int length() { return data_.length(); }
2987  private:
2988   Vector<const uc16> data_;
2989 };
2990
2991
2992 class RegExpText final : public RegExpTree {
2993  public:
2994   explicit RegExpText(Zone* zone) : elements_(2, zone), length_(0) {}
2995   void* Accept(RegExpVisitor* visitor, void* data) override;
2996   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
2997                              RegExpNode* on_success) override;
2998   RegExpText* AsText() override;
2999   bool IsText() override;
3000   bool IsTextElement() override { return true; }
3001   int min_match() override { return length_; }
3002   int max_match() override { return length_; }
3003   void AppendToText(RegExpText* text, Zone* zone) override;
3004   void AddElement(TextElement elm, Zone* zone)  {
3005     elements_.Add(elm, zone);
3006     length_ += elm.length();
3007   }
3008   ZoneList<TextElement>* elements() { return &elements_; }
3009  private:
3010   ZoneList<TextElement> elements_;
3011   int length_;
3012 };
3013
3014
3015 class RegExpQuantifier final : public RegExpTree {
3016  public:
3017   enum QuantifierType { GREEDY, NON_GREEDY, POSSESSIVE };
3018   RegExpQuantifier(int min, int max, QuantifierType type, RegExpTree* body)
3019       : body_(body),
3020         min_(min),
3021         max_(max),
3022         min_match_(min * body->min_match()),
3023         quantifier_type_(type) {
3024     if (max > 0 && body->max_match() > kInfinity / max) {
3025       max_match_ = kInfinity;
3026     } else {
3027       max_match_ = max * body->max_match();
3028     }
3029   }
3030   void* Accept(RegExpVisitor* visitor, void* data) override;
3031   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
3032                              RegExpNode* on_success) override;
3033   static RegExpNode* ToNode(int min,
3034                             int max,
3035                             bool is_greedy,
3036                             RegExpTree* body,
3037                             RegExpCompiler* compiler,
3038                             RegExpNode* on_success,
3039                             bool not_at_start = false);
3040   RegExpQuantifier* AsQuantifier() override;
3041   Interval CaptureRegisters() override;
3042   bool IsQuantifier() override;
3043   int min_match() override { return min_match_; }
3044   int max_match() override { return max_match_; }
3045   int min() { return min_; }
3046   int max() { return max_; }
3047   bool is_possessive() { return quantifier_type_ == POSSESSIVE; }
3048   bool is_non_greedy() { return quantifier_type_ == NON_GREEDY; }
3049   bool is_greedy() { return quantifier_type_ == GREEDY; }
3050   RegExpTree* body() { return body_; }
3051
3052  private:
3053   RegExpTree* body_;
3054   int min_;
3055   int max_;
3056   int min_match_;
3057   int max_match_;
3058   QuantifierType quantifier_type_;
3059 };
3060
3061
3062 class RegExpCapture final : public RegExpTree {
3063  public:
3064   explicit RegExpCapture(RegExpTree* body, int index)
3065       : body_(body), index_(index) { }
3066   void* Accept(RegExpVisitor* visitor, void* data) override;
3067   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
3068                              RegExpNode* on_success) override;
3069   static RegExpNode* ToNode(RegExpTree* body,
3070                             int index,
3071                             RegExpCompiler* compiler,
3072                             RegExpNode* on_success);
3073   RegExpCapture* AsCapture() override;
3074   bool IsAnchoredAtStart() override;
3075   bool IsAnchoredAtEnd() override;
3076   Interval CaptureRegisters() override;
3077   bool IsCapture() override;
3078   int min_match() override { return body_->min_match(); }
3079   int max_match() override { return body_->max_match(); }
3080   RegExpTree* body() { return body_; }
3081   int index() { return index_; }
3082   static int StartRegister(int index) { return index * 2; }
3083   static int EndRegister(int index) { return index * 2 + 1; }
3084
3085  private:
3086   RegExpTree* body_;
3087   int index_;
3088 };
3089
3090
3091 class RegExpLookahead final : public RegExpTree {
3092  public:
3093   RegExpLookahead(RegExpTree* body,
3094                   bool is_positive,
3095                   int capture_count,
3096                   int capture_from)
3097       : body_(body),
3098         is_positive_(is_positive),
3099         capture_count_(capture_count),
3100         capture_from_(capture_from) { }
3101
3102   void* Accept(RegExpVisitor* visitor, void* data) override;
3103   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
3104                              RegExpNode* on_success) override;
3105   RegExpLookahead* AsLookahead() override;
3106   Interval CaptureRegisters() override;
3107   bool IsLookahead() override;
3108   bool IsAnchoredAtStart() override;
3109   int min_match() override { return 0; }
3110   int max_match() override { return 0; }
3111   RegExpTree* body() { return body_; }
3112   bool is_positive() { return is_positive_; }
3113   int capture_count() { return capture_count_; }
3114   int capture_from() { return capture_from_; }
3115
3116  private:
3117   RegExpTree* body_;
3118   bool is_positive_;
3119   int capture_count_;
3120   int capture_from_;
3121 };
3122
3123
3124 class RegExpBackReference final : public RegExpTree {
3125  public:
3126   explicit RegExpBackReference(RegExpCapture* capture)
3127       : capture_(capture) { }
3128   void* Accept(RegExpVisitor* visitor, void* data) override;
3129   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
3130                              RegExpNode* on_success) override;
3131   RegExpBackReference* AsBackReference() override;
3132   bool IsBackReference() override;
3133   int min_match() override { return 0; }
3134   int max_match() override { return capture_->max_match(); }
3135   int index() { return capture_->index(); }
3136   RegExpCapture* capture() { return capture_; }
3137  private:
3138   RegExpCapture* capture_;
3139 };
3140
3141
3142 class RegExpEmpty final : public RegExpTree {
3143  public:
3144   RegExpEmpty() { }
3145   void* Accept(RegExpVisitor* visitor, void* data) override;
3146   virtual RegExpNode* ToNode(RegExpCompiler* compiler,
3147                              RegExpNode* on_success) override;
3148   RegExpEmpty* AsEmpty() override;
3149   bool IsEmpty() override;
3150   int min_match() override { return 0; }
3151   int max_match() override { return 0; }
3152 };
3153
3154
3155 // ----------------------------------------------------------------------------
3156 // Basic visitor
3157 // - leaf node visitors are abstract.
3158
3159 class AstVisitor BASE_EMBEDDED {
3160  public:
3161   AstVisitor() {}
3162   virtual ~AstVisitor() {}
3163
3164   // Stack overflow check and dynamic dispatch.
3165   virtual void Visit(AstNode* node) = 0;
3166
3167   // Iteration left-to-right.
3168   virtual void VisitDeclarations(ZoneList<Declaration*>* declarations);
3169   virtual void VisitStatements(ZoneList<Statement*>* statements);
3170   virtual void VisitExpressions(ZoneList<Expression*>* expressions);
3171
3172   // Individual AST nodes.
3173 #define DEF_VISIT(type)                         \
3174   virtual void Visit##type(type* node) = 0;
3175   AST_NODE_LIST(DEF_VISIT)
3176 #undef DEF_VISIT
3177 };
3178
3179
3180 #define DEFINE_AST_VISITOR_SUBCLASS_MEMBERS()               \
3181  public:                                                    \
3182   void Visit(AstNode* node) final {                         \
3183     if (!CheckStackOverflow()) node->Accept(this);          \
3184   }                                                         \
3185                                                             \
3186   void SetStackOverflow() { stack_overflow_ = true; }       \
3187   void ClearStackOverflow() { stack_overflow_ = false; }    \
3188   bool HasStackOverflow() const { return stack_overflow_; } \
3189                                                             \
3190   bool CheckStackOverflow() {                               \
3191     if (stack_overflow_) return true;                       \
3192     StackLimitCheck check(isolate_);                        \
3193     if (!check.HasOverflowed()) return false;               \
3194     stack_overflow_ = true;                                 \
3195     return true;                                            \
3196   }                                                         \
3197                                                             \
3198  private:                                                   \
3199   void InitializeAstVisitor(Isolate* isolate, Zone* zone) { \
3200     isolate_ = isolate;                                     \
3201     zone_ = zone;                                           \
3202     stack_overflow_ = false;                                \
3203   }                                                         \
3204   Zone* zone() { return zone_; }                            \
3205   Isolate* isolate() { return isolate_; }                   \
3206                                                             \
3207   Isolate* isolate_;                                        \
3208   Zone* zone_;                                              \
3209   bool stack_overflow_
3210
3211
3212 // ----------------------------------------------------------------------------
3213 // AstNode factory
3214
3215 class AstNodeFactory final BASE_EMBEDDED {
3216  public:
3217   explicit AstNodeFactory(AstValueFactory* ast_value_factory)
3218       : zone_(ast_value_factory->zone()),
3219         ast_value_factory_(ast_value_factory) {}
3220
3221   VariableDeclaration* NewVariableDeclaration(
3222       VariableProxy* proxy, VariableMode mode, Scope* scope, int pos,
3223       bool is_class_declaration = false) {
3224     return new (zone_) VariableDeclaration(zone_, proxy, mode, scope, pos,
3225                                            is_class_declaration);
3226   }
3227
3228   FunctionDeclaration* NewFunctionDeclaration(VariableProxy* proxy,
3229                                               VariableMode mode,
3230                                               FunctionLiteral* fun,
3231                                               Scope* scope,
3232                                               int pos) {
3233     return new (zone_) FunctionDeclaration(zone_, proxy, mode, fun, scope, pos);
3234   }
3235
3236   ModuleDeclaration* NewModuleDeclaration(VariableProxy* proxy,
3237                                           Module* module,
3238                                           Scope* scope,
3239                                           int pos) {
3240     return new (zone_) ModuleDeclaration(zone_, proxy, module, scope, pos);
3241   }
3242
3243   ImportDeclaration* NewImportDeclaration(VariableProxy* proxy,
3244                                           const AstRawString* import_name,
3245                                           const AstRawString* module_specifier,
3246                                           Scope* scope, int pos) {
3247     return new (zone_) ImportDeclaration(zone_, proxy, import_name,
3248                                          module_specifier, scope, pos);
3249   }
3250
3251   ExportDeclaration* NewExportDeclaration(VariableProxy* proxy,
3252                                           Scope* scope,
3253                                           int pos) {
3254     return new (zone_) ExportDeclaration(zone_, proxy, scope, pos);
3255   }
3256
3257   ModuleLiteral* NewModuleLiteral(Block* body, ModuleDescriptor* descriptor,
3258                                   int pos) {
3259     return new (zone_) ModuleLiteral(zone_, body, descriptor, pos);
3260   }
3261
3262   ModulePath* NewModulePath(Module* origin, const AstRawString* name, int pos) {
3263     return new (zone_) ModulePath(zone_, origin, name, pos);
3264   }
3265
3266   ModuleUrl* NewModuleUrl(Handle<String> url, int pos) {
3267     return new (zone_) ModuleUrl(zone_, url, pos);
3268   }
3269
3270   Block* NewBlock(ZoneList<const AstRawString*>* labels,
3271                   int capacity,
3272                   bool is_initializer_block,
3273                   int pos) {
3274     return new (zone_)
3275         Block(zone_, labels, capacity, is_initializer_block, pos);
3276   }
3277
3278 #define STATEMENT_WITH_LABELS(NodeType)                                     \
3279   NodeType* New##NodeType(ZoneList<const AstRawString*>* labels, int pos) { \
3280     return new (zone_) NodeType(zone_, labels, pos);                        \
3281   }
3282   STATEMENT_WITH_LABELS(DoWhileStatement)
3283   STATEMENT_WITH_LABELS(WhileStatement)
3284   STATEMENT_WITH_LABELS(ForStatement)
3285   STATEMENT_WITH_LABELS(SwitchStatement)
3286 #undef STATEMENT_WITH_LABELS
3287
3288   ForEachStatement* NewForEachStatement(ForEachStatement::VisitMode visit_mode,
3289                                         ZoneList<const AstRawString*>* labels,
3290                                         int pos) {
3291     switch (visit_mode) {
3292       case ForEachStatement::ENUMERATE: {
3293         return new (zone_) ForInStatement(zone_, labels, pos);
3294       }
3295       case ForEachStatement::ITERATE: {
3296         return new (zone_) ForOfStatement(zone_, labels, pos);
3297       }
3298     }
3299     UNREACHABLE();
3300     return NULL;
3301   }
3302
3303   ModuleStatement* NewModuleStatement(Block* body, int pos) {
3304     return new (zone_) ModuleStatement(zone_, body, pos);
3305   }
3306
3307   ExpressionStatement* NewExpressionStatement(Expression* expression, int pos) {
3308     return new (zone_) ExpressionStatement(zone_, expression, pos);
3309   }
3310
3311   ContinueStatement* NewContinueStatement(IterationStatement* target, int pos) {
3312     return new (zone_) ContinueStatement(zone_, target, pos);
3313   }
3314
3315   BreakStatement* NewBreakStatement(BreakableStatement* target, int pos) {
3316     return new (zone_) BreakStatement(zone_, target, pos);
3317   }
3318
3319   ReturnStatement* NewReturnStatement(Expression* expression, int pos) {
3320     return new (zone_) ReturnStatement(zone_, expression, pos);
3321   }
3322
3323   WithStatement* NewWithStatement(Scope* scope,
3324                                   Expression* expression,
3325                                   Statement* statement,
3326                                   int pos) {
3327     return new (zone_) WithStatement(zone_, scope, expression, statement, pos);
3328   }
3329
3330   IfStatement* NewIfStatement(Expression* condition,
3331                               Statement* then_statement,
3332                               Statement* else_statement,
3333                               int pos) {
3334     return new (zone_)
3335         IfStatement(zone_, condition, then_statement, else_statement, pos);
3336   }
3337
3338   TryCatchStatement* NewTryCatchStatement(int index,
3339                                           Block* try_block,
3340                                           Scope* scope,
3341                                           Variable* variable,
3342                                           Block* catch_block,
3343                                           int pos) {
3344     return new (zone_) TryCatchStatement(zone_, index, try_block, scope,
3345                                          variable, catch_block, pos);
3346   }
3347
3348   TryFinallyStatement* NewTryFinallyStatement(int index,
3349                                               Block* try_block,
3350                                               Block* finally_block,
3351                                               int pos) {
3352     return new (zone_)
3353         TryFinallyStatement(zone_, index, try_block, finally_block, pos);
3354   }
3355
3356   DebuggerStatement* NewDebuggerStatement(int pos) {
3357     return new (zone_) DebuggerStatement(zone_, pos);
3358   }
3359
3360   EmptyStatement* NewEmptyStatement(int pos) {
3361     return new(zone_) EmptyStatement(zone_, pos);
3362   }
3363
3364   CaseClause* NewCaseClause(
3365       Expression* label, ZoneList<Statement*>* statements, int pos) {
3366     return new (zone_) CaseClause(zone_, label, statements, pos);
3367   }
3368
3369   Literal* NewStringLiteral(const AstRawString* string, int pos) {
3370     return new (zone_)
3371         Literal(zone_, ast_value_factory_->NewString(string), pos);
3372   }
3373
3374   // A JavaScript symbol (ECMA-262 edition 6).
3375   Literal* NewSymbolLiteral(const char* name, int pos) {
3376     return new (zone_) Literal(zone_, ast_value_factory_->NewSymbol(name), pos);
3377   }
3378
3379   Literal* NewNumberLiteral(double number, int pos) {
3380     return new (zone_)
3381         Literal(zone_, ast_value_factory_->NewNumber(number), pos);
3382   }
3383
3384   Literal* NewSmiLiteral(int number, int pos) {
3385     return new (zone_) Literal(zone_, ast_value_factory_->NewSmi(number), pos);
3386   }
3387
3388   Literal* NewBooleanLiteral(bool b, int pos) {
3389     return new (zone_) Literal(zone_, ast_value_factory_->NewBoolean(b), pos);
3390   }
3391
3392   Literal* NewNullLiteral(int pos) {
3393     return new (zone_) Literal(zone_, ast_value_factory_->NewNull(), pos);
3394   }
3395
3396   Literal* NewUndefinedLiteral(int pos) {
3397     return new (zone_) Literal(zone_, ast_value_factory_->NewUndefined(), pos);
3398   }
3399
3400   Literal* NewTheHoleLiteral(int pos) {
3401     return new (zone_) Literal(zone_, ast_value_factory_->NewTheHole(), pos);
3402   }
3403
3404   ObjectLiteral* NewObjectLiteral(
3405       ZoneList<ObjectLiteral::Property*>* properties,
3406       int literal_index,
3407       int boilerplate_properties,
3408       bool has_function,
3409       int pos) {
3410     return new (zone_) ObjectLiteral(zone_, properties, literal_index,
3411                                      boilerplate_properties, has_function, pos);
3412   }
3413
3414   ObjectLiteral::Property* NewObjectLiteralProperty(
3415       Expression* key, Expression* value, ObjectLiteralProperty::Kind kind,
3416       bool is_static, bool is_computed_name) {
3417     return new (zone_)
3418         ObjectLiteral::Property(key, value, kind, is_static, is_computed_name);
3419   }
3420
3421   ObjectLiteral::Property* NewObjectLiteralProperty(Expression* key,
3422                                                     Expression* value,
3423                                                     bool is_static,
3424                                                     bool is_computed_name) {
3425     return new (zone_) ObjectLiteral::Property(ast_value_factory_, key, value,
3426                                                is_static, is_computed_name);
3427   }
3428
3429   RegExpLiteral* NewRegExpLiteral(const AstRawString* pattern,
3430                                   const AstRawString* flags,
3431                                   int literal_index,
3432                                   int pos) {
3433     return new (zone_) RegExpLiteral(zone_, pattern, flags, literal_index, pos);
3434   }
3435
3436   ArrayLiteral* NewArrayLiteral(ZoneList<Expression*>* values,
3437                                 int literal_index,
3438                                 int pos) {
3439     return new (zone_) ArrayLiteral(zone_, values, literal_index, pos);
3440   }
3441
3442   VariableProxy* NewVariableProxy(Variable* var,
3443                                   int start_position = RelocInfo::kNoPosition,
3444                                   int end_position = RelocInfo::kNoPosition) {
3445     return new (zone_) VariableProxy(zone_, var, start_position, end_position);
3446   }
3447
3448   VariableProxy* NewVariableProxy(const AstRawString* name,
3449                                   Variable::Kind variable_kind,
3450                                   int start_position = RelocInfo::kNoPosition,
3451                                   int end_position = RelocInfo::kNoPosition) {
3452     return new (zone_)
3453         VariableProxy(zone_, name, variable_kind, start_position, end_position);
3454   }
3455
3456   Property* NewProperty(Expression* obj, Expression* key, int pos) {
3457     return new (zone_) Property(zone_, obj, key, pos);
3458   }
3459
3460   Call* NewCall(Expression* expression,
3461                 ZoneList<Expression*>* arguments,
3462                 int pos) {
3463     return new (zone_) Call(zone_, expression, arguments, pos);
3464   }
3465
3466   CallNew* NewCallNew(Expression* expression,
3467                       ZoneList<Expression*>* arguments,
3468                       int pos) {
3469     return new (zone_) CallNew(zone_, expression, arguments, pos);
3470   }
3471
3472   CallRuntime* NewCallRuntime(const AstRawString* name,
3473                               const Runtime::Function* function,
3474                               ZoneList<Expression*>* arguments,
3475                               int pos) {
3476     return new (zone_) CallRuntime(zone_, name, function, arguments, pos);
3477   }
3478
3479   UnaryOperation* NewUnaryOperation(Token::Value op,
3480                                     Expression* expression,
3481                                     int pos) {
3482     return new (zone_) UnaryOperation(zone_, op, expression, pos);
3483   }
3484
3485   BinaryOperation* NewBinaryOperation(Token::Value op,
3486                                       Expression* left,
3487                                       Expression* right,
3488                                       int pos) {
3489     return new (zone_) BinaryOperation(zone_, op, left, right, pos);
3490   }
3491
3492   CountOperation* NewCountOperation(Token::Value op,
3493                                     bool is_prefix,
3494                                     Expression* expr,
3495                                     int pos) {
3496     return new (zone_) CountOperation(zone_, op, is_prefix, expr, pos);
3497   }
3498
3499   CompareOperation* NewCompareOperation(Token::Value op,
3500                                         Expression* left,
3501                                         Expression* right,
3502                                         int pos) {
3503     return new (zone_) CompareOperation(zone_, op, left, right, pos);
3504   }
3505
3506   Spread* NewSpread(Expression* expression, int pos) {
3507     return new (zone_) Spread(zone_, expression, pos);
3508   }
3509
3510   Conditional* NewConditional(Expression* condition,
3511                               Expression* then_expression,
3512                               Expression* else_expression,
3513                               int position) {
3514     return new (zone_) Conditional(zone_, condition, then_expression,
3515                                    else_expression, position);
3516   }
3517
3518   Assignment* NewAssignment(Token::Value op,
3519                             Expression* target,
3520                             Expression* value,
3521                             int pos) {
3522     DCHECK(Token::IsAssignmentOp(op));
3523     Assignment* assign = new (zone_) Assignment(zone_, op, target, value, pos);
3524     if (assign->is_compound()) {
3525       DCHECK(Token::IsAssignmentOp(op));
3526       assign->binary_operation_ =
3527           NewBinaryOperation(assign->binary_op(), target, value, pos + 1);
3528     }
3529     return assign;
3530   }
3531
3532   Yield* NewYield(Expression *generator_object,
3533                   Expression* expression,
3534                   Yield::Kind yield_kind,
3535                   int pos) {
3536     if (!expression) expression = NewUndefinedLiteral(pos);
3537     return new (zone_)
3538         Yield(zone_, generator_object, expression, yield_kind, pos);
3539   }
3540
3541   Throw* NewThrow(Expression* exception, int pos) {
3542     return new (zone_) Throw(zone_, exception, pos);
3543   }
3544
3545   FunctionLiteral* NewFunctionLiteral(
3546       const AstRawString* name, AstValueFactory* ast_value_factory,
3547       Scope* scope, ZoneList<Statement*>* body, int materialized_literal_count,
3548       int expected_property_count, int handler_count, int parameter_count,
3549       FunctionLiteral::ParameterFlag has_duplicate_parameters,
3550       FunctionLiteral::FunctionType function_type,
3551       FunctionLiteral::IsFunctionFlag is_function,
3552       FunctionLiteral::IsParenthesizedFlag is_parenthesized, FunctionKind kind,
3553       int position) {
3554     return new (zone_) FunctionLiteral(
3555         zone_, name, ast_value_factory, scope, body, materialized_literal_count,
3556         expected_property_count, handler_count, parameter_count, function_type,
3557         has_duplicate_parameters, is_function, is_parenthesized, kind,
3558         position);
3559   }
3560
3561   ClassLiteral* NewClassLiteral(const AstRawString* name, Scope* scope,
3562                                 VariableProxy* proxy, Expression* extends,
3563                                 FunctionLiteral* constructor,
3564                                 ZoneList<ObjectLiteral::Property*>* properties,
3565                                 int start_position, int end_position) {
3566     return new (zone_)
3567         ClassLiteral(zone_, name, scope, proxy, extends, constructor,
3568                      properties, start_position, end_position);
3569   }
3570
3571   NativeFunctionLiteral* NewNativeFunctionLiteral(const AstRawString* name,
3572                                                   v8::Extension* extension,
3573                                                   int pos) {
3574     return new (zone_) NativeFunctionLiteral(zone_, name, extension, pos);
3575   }
3576
3577   ThisFunction* NewThisFunction(int pos) {
3578     return new (zone_) ThisFunction(zone_, pos);
3579   }
3580
3581   SuperReference* NewSuperReference(VariableProxy* this_var, int pos) {
3582     return new (zone_) SuperReference(zone_, this_var, pos);
3583   }
3584
3585  private:
3586   Zone* zone_;
3587   AstValueFactory* ast_value_factory_;
3588 };
3589
3590
3591 } }  // namespace v8::internal
3592
3593 #endif  // V8_AST_H_