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