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