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