Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Side by Side Diff: src/ast/ast.h

Issue 2126233002: Devirtualize AstNode and subclasses, except for visiting-related methods. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: cleanup Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/ast/ast.cc » ('j') | src/compiler/ast-graph-builder.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_AST_AST_H_ 5 #ifndef V8_AST_AST_H_
6 #define V8_AST_AST_H_ 6 #define V8_AST_AST_H_
7 7
8 #include "src/ast/ast-value-factory.h" 8 #include "src/ast/ast-value-factory.h"
9 #include "src/ast/modules.h" 9 #include "src/ast/modules.h"
10 #include "src/ast/variables.h" 10 #include "src/ast/variables.h"
(...skipping 24 matching lines...) Expand all
35 35
36 // ---------------------------------------------------------------------------- 36 // ----------------------------------------------------------------------------
37 // Nodes of the abstract syntax tree. Only concrete classes are 37 // Nodes of the abstract syntax tree. Only concrete classes are
38 // enumerated here. 38 // enumerated here.
39 39
40 #define DECLARATION_NODE_LIST(V) \ 40 #define DECLARATION_NODE_LIST(V) \
41 V(VariableDeclaration) \ 41 V(VariableDeclaration) \
42 V(FunctionDeclaration) \ 42 V(FunctionDeclaration) \
43 V(ImportDeclaration) 43 V(ImportDeclaration)
44 44
45 #define ITERATION_NODE_LIST(V) \
46 V(DoWhileStatement) \
47 V(WhileStatement) \
48 V(ForStatement) \
49 V(ForInStatement) \
50 V(ForOfStatement)
51
52 #define BREAKABLE_NODE_LIST(V) \
53 V(Block) \
54 V(SwitchStatement)
55
45 #define STATEMENT_NODE_LIST(V) \ 56 #define STATEMENT_NODE_LIST(V) \
46 V(Block) \ 57 ITERATION_NODE_LIST(V) \
58 BREAKABLE_NODE_LIST(V) \
47 V(ExpressionStatement) \ 59 V(ExpressionStatement) \
48 V(EmptyStatement) \ 60 V(EmptyStatement) \
49 V(SloppyBlockFunctionStatement) \ 61 V(SloppyBlockFunctionStatement) \
50 V(IfStatement) \ 62 V(IfStatement) \
51 V(ContinueStatement) \ 63 V(ContinueStatement) \
52 V(BreakStatement) \ 64 V(BreakStatement) \
53 V(ReturnStatement) \ 65 V(ReturnStatement) \
54 V(WithStatement) \ 66 V(WithStatement) \
55 V(SwitchStatement) \
56 V(DoWhileStatement) \
57 V(WhileStatement) \
58 V(ForStatement) \
59 V(ForInStatement) \
60 V(ForOfStatement) \
61 V(TryCatchStatement) \ 67 V(TryCatchStatement) \
62 V(TryFinallyStatement) \ 68 V(TryFinallyStatement) \
63 V(DebuggerStatement) 69 V(DebuggerStatement)
64 70
71 #define LITERAL_NODE_LIST(V) \
72 V(RegExpLiteral) \
73 V(ObjectLiteral) \
74 V(ArrayLiteral)
75
65 #define EXPRESSION_NODE_LIST(V) \ 76 #define EXPRESSION_NODE_LIST(V) \
77 LITERAL_NODE_LIST(V) \
66 V(FunctionLiteral) \ 78 V(FunctionLiteral) \
67 V(ClassLiteral) \ 79 V(ClassLiteral) \
68 V(NativeFunctionLiteral) \ 80 V(NativeFunctionLiteral) \
69 V(Conditional) \ 81 V(Conditional) \
70 V(VariableProxy) \ 82 V(VariableProxy) \
71 V(Literal) \ 83 V(Literal) \
72 V(RegExpLiteral) \
73 V(ObjectLiteral) \
74 V(ArrayLiteral) \
75 V(Assignment) \ 84 V(Assignment) \
76 V(Yield) \ 85 V(Yield) \
77 V(Throw) \ 86 V(Throw) \
78 V(Property) \ 87 V(Property) \
79 V(Call) \ 88 V(Call) \
80 V(CallNew) \ 89 V(CallNew) \
81 V(CallRuntime) \ 90 V(CallRuntime) \
82 V(UnaryOperation) \ 91 V(UnaryOperation) \
83 V(CountOperation) \ 92 V(CountOperation) \
84 V(BinaryOperation) \ 93 V(BinaryOperation) \
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 #endif // DEBUG 211 #endif // DEBUG
203 212
204 // Type testing & conversion functions overridden by concrete subclasses. 213 // Type testing & conversion functions overridden by concrete subclasses.
205 #define DECLARE_NODE_FUNCTIONS(type) \ 214 #define DECLARE_NODE_FUNCTIONS(type) \
206 V8_INLINE bool Is##type() const; \ 215 V8_INLINE bool Is##type() const; \
207 V8_INLINE type* As##type(); \ 216 V8_INLINE type* As##type(); \
208 V8_INLINE const type* As##type() const; 217 V8_INLINE const type* As##type() const;
209 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS) 218 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS)
210 #undef DECLARE_NODE_FUNCTIONS 219 #undef DECLARE_NODE_FUNCTIONS
211 220
212 virtual BreakableStatement* AsBreakableStatement() { return NULL; } 221 BreakableStatement* AsBreakableStatement();
213 virtual IterationStatement* AsIterationStatement() { return NULL; } 222 IterationStatement* AsIterationStatement();
214 virtual MaterializedLiteral* AsMaterializedLiteral() { return NULL; } 223 MaterializedLiteral* AsMaterializedLiteral();
215 224
216 private: 225 private:
217 // Hidden to prevent accidental usage. It would have to load the 226 // Hidden to prevent accidental usage. It would have to load the
218 // current zone from the TLS. 227 // current zone from the TLS.
219 void* operator new(size_t size); 228 void* operator new(size_t size);
220 229
221 friend class CaseClause; // Generates AST IDs. 230 friend class CaseClause; // Generates AST IDs.
222 231
223 int position_; 232 int position_;
224 }; 233 };
225 234
226 235
227 class Statement : public AstNode { 236 class Statement : public AstNode {
228 public: 237 public:
229 explicit Statement(Zone* zone, int position) : AstNode(position) {} 238 explicit Statement(Zone* zone, int position) : AstNode(position) {}
230 239
231 bool IsEmpty() { return AsEmptyStatement() != NULL; } 240 bool IsEmpty() { return AsEmptyStatement() != NULL; }
232 virtual bool IsJump() const { return false; } 241 bool IsJump() const;
233 }; 242 };
234 243
235 244
236 class SmallMapList final { 245 class SmallMapList final {
237 public: 246 public:
238 SmallMapList() {} 247 SmallMapList() {}
239 SmallMapList(int capacity, Zone* zone) : list_(capacity, zone) {} 248 SmallMapList(int capacity, Zone* zone) : list_(capacity, zone) {}
240 249
241 void Reserve(int capacity, Zone* zone) { list_.Reserve(capacity, zone); } 250 void Reserve(int capacity, Zone* zone) { list_.Reserve(capacity, zone); }
242 void Clear() { list_.Clear(); } 251 void Clear() { list_.Clear(); }
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 kUninitialized, 297 kUninitialized,
289 // Evaluated for its side effects. 298 // Evaluated for its side effects.
290 kEffect, 299 kEffect,
291 // Evaluated for its value (and side effects). 300 // Evaluated for its value (and side effects).
292 kValue, 301 kValue,
293 // Evaluated for control flow (and side effects). 302 // Evaluated for control flow (and side effects).
294 kTest 303 kTest
295 }; 304 };
296 305
297 // Mark this expression as being in tail position. 306 // Mark this expression as being in tail position.
298 virtual void MarkTail() {} 307 void MarkTail();
299 308
300 // True iff the expression is a valid reference expression. 309 // True iff the expression is a valid reference expression.
301 virtual bool IsValidReferenceExpression() const { return false; } 310 bool IsValidReferenceExpression() const;
302 311
303 // Helpers for ToBoolean conversion. 312 // Helpers for ToBoolean conversion.
304 virtual bool ToBooleanIsTrue() const { return false; } 313 bool ToBooleanIsTrue() const;
305 virtual bool ToBooleanIsFalse() const { return false; } 314 bool ToBooleanIsFalse() const;
306 315
307 // Symbols that cannot be parsed as array indices are considered property 316 // Symbols that cannot be parsed as array indices are considered property
308 // names. We do not treat symbols that can be array indexes as property 317 // names. We do not treat symbols that can be array indexes as property
309 // names because [] for string objects is handled only by keyed ICs. 318 // names because [] for string objects is handled only by keyed ICs.
310 virtual bool IsPropertyName() const { return false; } 319 bool IsPropertyName() const;
311 320
312 // True iff the expression is a class or function expression without 321 // True iff the expression is a class or function expression without
313 // a syntactic name. 322 // a syntactic name.
314 virtual bool IsAnonymousFunctionDefinition() const { return false; } 323 bool IsAnonymousFunctionDefinition() const;
315 324
316 // True iff the expression is a literal represented as a smi. 325 // True iff the expression is a literal represented as a smi.
317 bool IsSmiLiteral() const; 326 bool IsSmiLiteral() const;
318 327
319 // True iff the expression is a string literal. 328 // True iff the expression is a string literal.
320 bool IsStringLiteral() const; 329 bool IsStringLiteral() const;
321 330
322 // True iff the expression is the null literal. 331 // True iff the expression is the null literal.
323 bool IsNullLiteral() const; 332 bool IsNullLiteral() const;
324 333
325 // True if we can prove that the expression is the undefined literal. Note 334 // True if we can prove that the expression is the undefined literal. Note
326 // that this also checks for loads of the global "undefined" variable. 335 // that this also checks for loads of the global "undefined" variable.
327 bool IsUndefinedLiteral() const; 336 bool IsUndefinedLiteral() const;
328 337
329 // True iff the expression is a valid target for an assignment. 338 // True iff the expression is a valid target for an assignment.
330 bool IsValidReferenceExpressionOrThis() const; 339 bool IsValidReferenceExpressionOrThis() const;
331 340
332 // Type feedback information for assignments and properties.
333 virtual bool IsMonomorphic() {
334 UNREACHABLE();
335 return false;
336 }
337 virtual SmallMapList* GetReceiverTypes() {
338 UNREACHABLE();
339 return NULL;
340 }
341 virtual KeyedAccessStoreMode GetStoreMode() const {
342 UNREACHABLE();
343 return STANDARD_STORE;
344 }
345 virtual IcCheckType GetKeyType() const {
346 UNREACHABLE();
347 return ELEMENT;
348 }
349
350 // TODO(rossberg): this should move to its own AST node eventually. 341 // TODO(rossberg): this should move to its own AST node eventually.
351 virtual void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle); 342 void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle);
352 uint16_t to_boolean_types() const { 343 uint16_t to_boolean_types() const {
353 return ToBooleanTypesField::decode(bit_field_); 344 return ToBooleanTypesField::decode(bit_field_);
354 } 345 }
355 346
356 void set_base_id(int id) { base_id_ = id; } 347 void set_base_id(int id) { base_id_ = id; }
357 static int num_ids() { return parent_num_ids() + 2; } 348 static int num_ids() { return parent_num_ids() + 2; }
358 BailoutId id() const { return BailoutId(local_id(0)); } 349 BailoutId id() const { return BailoutId(local_id(0)); }
359 TypeFeedbackId test_id() const { return TypeFeedbackId(local_id(1)); } 350 TypeFeedbackId test_id() const { return TypeFeedbackId(local_id(1)); }
360 351
361 protected: 352 protected:
(...skipping 26 matching lines...) Expand all
388 public: 379 public:
389 enum BreakableType { 380 enum BreakableType {
390 TARGET_FOR_ANONYMOUS, 381 TARGET_FOR_ANONYMOUS,
391 TARGET_FOR_NAMED_ONLY 382 TARGET_FOR_NAMED_ONLY
392 }; 383 };
393 384
394 // The labels associated with this statement. May be NULL; 385 // The labels associated with this statement. May be NULL;
395 // if it is != NULL, guaranteed to contain at least one entry. 386 // if it is != NULL, guaranteed to contain at least one entry.
396 ZoneList<const AstRawString*>* labels() const { return labels_; } 387 ZoneList<const AstRawString*>* labels() const { return labels_; }
397 388
398 // Type testing & conversion.
399 BreakableStatement* AsBreakableStatement() final { return this; }
400
401 // Code generation 389 // Code generation
402 Label* break_target() { return &break_target_; } 390 Label* break_target() { return &break_target_; }
403 391
404 // Testers. 392 // Testers.
405 bool is_target_for_anonymous() const { 393 bool is_target_for_anonymous() const {
406 return breakable_type_ == TARGET_FOR_ANONYMOUS; 394 return breakable_type_ == TARGET_FOR_ANONYMOUS;
407 } 395 }
408 396
409 void set_base_id(int id) { base_id_ = id; } 397 void set_base_id(int id) { base_id_ = id; }
410 static int num_ids() { return parent_num_ids() + 2; } 398 static int num_ids() { return parent_num_ids() + 2; }
(...skipping 29 matching lines...) Expand all
440 class Block final : public BreakableStatement { 428 class Block final : public BreakableStatement {
441 public: 429 public:
442 DECLARE_NODE_TYPE(Block) 430 DECLARE_NODE_TYPE(Block)
443 431
444 ZoneList<Statement*>* statements() { return &statements_; } 432 ZoneList<Statement*>* statements() { return &statements_; }
445 bool ignore_completion_value() const { return ignore_completion_value_; } 433 bool ignore_completion_value() const { return ignore_completion_value_; }
446 434
447 static int num_ids() { return parent_num_ids() + 1; } 435 static int num_ids() { return parent_num_ids() + 1; }
448 BailoutId DeclsId() const { return BailoutId(local_id(0)); } 436 BailoutId DeclsId() const { return BailoutId(local_id(0)); }
449 437
450 bool IsJump() const override { 438 bool IsJump() const {
451 return !statements_.is_empty() && statements_.last()->IsJump() 439 return !statements_.is_empty() && statements_.last()->IsJump()
452 && labels() == NULL; // Good enough as an approximation... 440 && labels() == NULL; // Good enough as an approximation...
453 } 441 }
454 442
455 Scope* scope() const { return scope_; } 443 Scope* scope() const { return scope_; }
456 void set_scope(Scope* scope) { scope_ = scope; } 444 void set_scope(Scope* scope) { scope_ = scope; }
457 445
458 protected: 446 protected:
459 Block(Zone* zone, ZoneList<const AstRawString*>* labels, int capacity, 447 Block(Zone* zone, ZoneList<const AstRawString*>* labels, int capacity,
460 bool ignore_completion_value, int pos) 448 bool ignore_completion_value, int pos)
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 Block* block_; 484 Block* block_;
497 VariableProxy* result_; 485 VariableProxy* result_;
498 }; 486 };
499 487
500 488
501 class Declaration : public AstNode { 489 class Declaration : public AstNode {
502 public: 490 public:
503 VariableProxy* proxy() const { return proxy_; } 491 VariableProxy* proxy() const { return proxy_; }
504 VariableMode mode() const { return mode_; } 492 VariableMode mode() const { return mode_; }
505 Scope* scope() const { return scope_; } 493 Scope* scope() const { return scope_; }
506 virtual InitializationFlag initialization() const = 0; 494 InitializationFlag initialization() const;
507 495
508 protected: 496 protected:
509 Declaration(Zone* zone, VariableProxy* proxy, VariableMode mode, Scope* scope, 497 Declaration(Zone* zone, VariableProxy* proxy, VariableMode mode, Scope* scope,
510 int pos) 498 int pos)
511 : AstNode(pos), mode_(mode), proxy_(proxy), scope_(scope) { 499 : AstNode(pos), mode_(mode), proxy_(proxy), scope_(scope) {
512 DCHECK(IsDeclaredVariableMode(mode)); 500 DCHECK(IsDeclaredVariableMode(mode));
513 } 501 }
514 502
515 private: 503 private:
516 VariableMode mode_; 504 VariableMode mode_;
517 VariableProxy* proxy_; 505 VariableProxy* proxy_;
518 506
519 // Nested scope from which the declaration originated. 507 // Nested scope from which the declaration originated.
520 Scope* scope_; 508 Scope* scope_;
521 }; 509 };
522 510
523 511
524 class VariableDeclaration final : public Declaration { 512 class VariableDeclaration final : public Declaration {
525 public: 513 public:
526 DECLARE_NODE_TYPE(VariableDeclaration) 514 DECLARE_NODE_TYPE(VariableDeclaration)
527 515
528 InitializationFlag initialization() const override { 516 InitializationFlag initialization() const {
529 return mode() == VAR ? kCreatedInitialized : kNeedsInitialization; 517 return mode() == VAR ? kCreatedInitialized : kNeedsInitialization;
530 } 518 }
531 519
532 protected: 520 protected:
533 VariableDeclaration(Zone* zone, VariableProxy* proxy, VariableMode mode, 521 VariableDeclaration(Zone* zone, VariableProxy* proxy, VariableMode mode,
534 Scope* scope, int pos) 522 Scope* scope, int pos)
535 : Declaration(zone, proxy, mode, scope, pos) {} 523 : Declaration(zone, proxy, mode, scope, pos) {}
536 }; 524 };
537 525
538 526
539 class FunctionDeclaration final : public Declaration { 527 class FunctionDeclaration final : public Declaration {
540 public: 528 public:
541 DECLARE_NODE_TYPE(FunctionDeclaration) 529 DECLARE_NODE_TYPE(FunctionDeclaration)
542 530
543 FunctionLiteral* fun() const { return fun_; } 531 FunctionLiteral* fun() const { return fun_; }
544 void set_fun(FunctionLiteral* f) { fun_ = f; } 532 void set_fun(FunctionLiteral* f) { fun_ = f; }
545 InitializationFlag initialization() const override { 533 InitializationFlag initialization() const { return kCreatedInitialized; }
546 return kCreatedInitialized;
547 }
548 534
549 protected: 535 protected:
550 FunctionDeclaration(Zone* zone, 536 FunctionDeclaration(Zone* zone,
551 VariableProxy* proxy, 537 VariableProxy* proxy,
552 VariableMode mode, 538 VariableMode mode,
553 FunctionLiteral* fun, 539 FunctionLiteral* fun,
554 Scope* scope, 540 Scope* scope,
555 int pos) 541 int pos)
556 : Declaration(zone, proxy, mode, scope, pos), 542 : Declaration(zone, proxy, mode, scope, pos),
557 fun_(fun) { 543 fun_(fun) {
558 DCHECK(mode == VAR || mode == LET || mode == CONST); 544 DCHECK(mode == VAR || mode == LET || mode == CONST);
559 DCHECK(fun != NULL); 545 DCHECK(fun != NULL);
560 } 546 }
561 547
562 private: 548 private:
563 FunctionLiteral* fun_; 549 FunctionLiteral* fun_;
564 }; 550 };
565 551
566 552
567 class ImportDeclaration final : public Declaration { 553 class ImportDeclaration final : public Declaration {
568 public: 554 public:
569 DECLARE_NODE_TYPE(ImportDeclaration) 555 DECLARE_NODE_TYPE(ImportDeclaration)
570 556
571 const AstRawString* import_name() const { return import_name_; } 557 const AstRawString* import_name() const { return import_name_; }
572 const AstRawString* module_specifier() const { return module_specifier_; } 558 const AstRawString* module_specifier() const { return module_specifier_; }
573 void set_module_specifier(const AstRawString* module_specifier) { 559 void set_module_specifier(const AstRawString* module_specifier) {
574 DCHECK(module_specifier_ == NULL); 560 DCHECK(module_specifier_ == NULL);
575 module_specifier_ = module_specifier; 561 module_specifier_ = module_specifier;
576 } 562 }
577 InitializationFlag initialization() const override { 563 InitializationFlag initialization() const { return kNeedsInitialization; }
578 return kNeedsInitialization;
579 }
580 564
581 protected: 565 protected:
582 ImportDeclaration(Zone* zone, VariableProxy* proxy, 566 ImportDeclaration(Zone* zone, VariableProxy* proxy,
583 const AstRawString* import_name, 567 const AstRawString* import_name,
584 const AstRawString* module_specifier, Scope* scope, int pos) 568 const AstRawString* module_specifier, Scope* scope, int pos)
585 : Declaration(zone, proxy, CONST, scope, pos), 569 : Declaration(zone, proxy, CONST, scope, pos),
586 import_name_(import_name), 570 import_name_(import_name),
587 module_specifier_(module_specifier) {} 571 module_specifier_(module_specifier) {}
588 572
589 private: 573 private:
(...skipping 14 matching lines...) Expand all
604 : AstNode(pos), descriptor_(descriptor), body_(body) {} 588 : AstNode(pos), descriptor_(descriptor), body_(body) {}
605 589
606 private: 590 private:
607 ModuleDescriptor* descriptor_; 591 ModuleDescriptor* descriptor_;
608 Block* body_; 592 Block* body_;
609 }; 593 };
610 594
611 595
612 class IterationStatement : public BreakableStatement { 596 class IterationStatement : public BreakableStatement {
613 public: 597 public:
614 // Type testing & conversion.
615 IterationStatement* AsIterationStatement() final { return this; }
616
617 Statement* body() const { return body_; } 598 Statement* body() const { return body_; }
618 void set_body(Statement* s) { body_ = s; } 599 void set_body(Statement* s) { body_ = s; }
619 600
620 int yield_count() const { return yield_count_; } 601 int yield_count() const { return yield_count_; }
621 int first_yield_id() const { return first_yield_id_; } 602 int first_yield_id() const { return first_yield_id_; }
622 void set_yield_count(int yield_count) { yield_count_ = yield_count; } 603 void set_yield_count(int yield_count) { yield_count_ = yield_count; }
623 void set_first_yield_id(int first_yield_id) { 604 void set_first_yield_id(int first_yield_id) {
624 first_yield_id_ = first_yield_id; 605 first_yield_id_ = first_yield_id;
625 } 606 }
626 607
627 static int num_ids() { return parent_num_ids() + 1; } 608 static int num_ids() { return parent_num_ids() + 1; }
628 BailoutId OsrEntryId() const { return BailoutId(local_id(0)); } 609 BailoutId OsrEntryId() const { return BailoutId(local_id(0)); }
629 virtual BailoutId ContinueId() const = 0;
630 virtual BailoutId StackCheckId() const = 0;
631 610
632 // Code generation 611 // Code generation
633 Label* continue_target() { return &continue_target_; } 612 Label* continue_target() { return &continue_target_; }
634 613
635 protected: 614 protected:
636 IterationStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos) 615 IterationStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
637 : BreakableStatement(zone, labels, TARGET_FOR_ANONYMOUS, pos), 616 : BreakableStatement(zone, labels, TARGET_FOR_ANONYMOUS, pos),
638 body_(NULL), 617 body_(NULL),
639 yield_count_(0), 618 yield_count_(0),
640 first_yield_id_(0) {} 619 first_yield_id_(0) {}
(...skipping 16 matching lines...) Expand all
657 636
658 void Initialize(Expression* cond, Statement* body) { 637 void Initialize(Expression* cond, Statement* body) {
659 IterationStatement::Initialize(body); 638 IterationStatement::Initialize(body);
660 cond_ = cond; 639 cond_ = cond;
661 } 640 }
662 641
663 Expression* cond() const { return cond_; } 642 Expression* cond() const { return cond_; }
664 void set_cond(Expression* e) { cond_ = e; } 643 void set_cond(Expression* e) { cond_ = e; }
665 644
666 static int num_ids() { return parent_num_ids() + 2; } 645 static int num_ids() { return parent_num_ids() + 2; }
667 BailoutId ContinueId() const override { return BailoutId(local_id(0)); } 646 BailoutId ContinueId() const { return BailoutId(local_id(0)); }
668 BailoutId StackCheckId() const override { return BackEdgeId(); } 647 BailoutId StackCheckId() const { return BackEdgeId(); }
669 BailoutId BackEdgeId() const { return BailoutId(local_id(1)); } 648 BailoutId BackEdgeId() const { return BailoutId(local_id(1)); }
670 649
671 protected: 650 protected:
672 DoWhileStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos) 651 DoWhileStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
673 : IterationStatement(zone, labels, pos), cond_(NULL) {} 652 : IterationStatement(zone, labels, pos), cond_(NULL) {}
674 static int parent_num_ids() { return IterationStatement::num_ids(); } 653 static int parent_num_ids() { return IterationStatement::num_ids(); }
675 654
676 private: 655 private:
677 int local_id(int n) const { return base_id() + parent_num_ids() + n; } 656 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
678 657
679 Expression* cond_; 658 Expression* cond_;
680 }; 659 };
681 660
682 661
683 class WhileStatement final : public IterationStatement { 662 class WhileStatement final : public IterationStatement {
684 public: 663 public:
685 DECLARE_NODE_TYPE(WhileStatement) 664 DECLARE_NODE_TYPE(WhileStatement)
686 665
687 void Initialize(Expression* cond, Statement* body) { 666 void Initialize(Expression* cond, Statement* body) {
688 IterationStatement::Initialize(body); 667 IterationStatement::Initialize(body);
689 cond_ = cond; 668 cond_ = cond;
690 } 669 }
691 670
692 Expression* cond() const { return cond_; } 671 Expression* cond() const { return cond_; }
693 void set_cond(Expression* e) { cond_ = e; } 672 void set_cond(Expression* e) { cond_ = e; }
694 673
695 static int num_ids() { return parent_num_ids() + 1; } 674 static int num_ids() { return parent_num_ids() + 1; }
696 BailoutId ContinueId() const override { return EntryId(); } 675 BailoutId ContinueId() const { return EntryId(); }
697 BailoutId StackCheckId() const override { return BodyId(); } 676 BailoutId StackCheckId() const { return BodyId(); }
698 BailoutId BodyId() const { return BailoutId(local_id(0)); } 677 BailoutId BodyId() const { return BailoutId(local_id(0)); }
699 678
700 protected: 679 protected:
701 WhileStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos) 680 WhileStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
702 : IterationStatement(zone, labels, pos), cond_(NULL) {} 681 : IterationStatement(zone, labels, pos), cond_(NULL) {}
703 static int parent_num_ids() { return IterationStatement::num_ids(); } 682 static int parent_num_ids() { return IterationStatement::num_ids(); }
704 683
705 private: 684 private:
706 int local_id(int n) const { return base_id() + parent_num_ids() + n; } 685 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
707 686
(...skipping 17 matching lines...) Expand all
725 704
726 Statement* init() const { return init_; } 705 Statement* init() const { return init_; }
727 Expression* cond() const { return cond_; } 706 Expression* cond() const { return cond_; }
728 Statement* next() const { return next_; } 707 Statement* next() const { return next_; }
729 708
730 void set_init(Statement* s) { init_ = s; } 709 void set_init(Statement* s) { init_ = s; }
731 void set_cond(Expression* e) { cond_ = e; } 710 void set_cond(Expression* e) { cond_ = e; }
732 void set_next(Statement* s) { next_ = s; } 711 void set_next(Statement* s) { next_ = s; }
733 712
734 static int num_ids() { return parent_num_ids() + 2; } 713 static int num_ids() { return parent_num_ids() + 2; }
735 BailoutId ContinueId() const override { return BailoutId(local_id(0)); } 714 BailoutId ContinueId() const { return BailoutId(local_id(0)); }
736 BailoutId StackCheckId() const override { return BodyId(); } 715 BailoutId StackCheckId() const { return BodyId(); }
737 BailoutId BodyId() const { return BailoutId(local_id(1)); } 716 BailoutId BodyId() const { return BailoutId(local_id(1)); }
738 717
739 protected: 718 protected:
740 ForStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos) 719 ForStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
741 : IterationStatement(zone, labels, pos), 720 : IterationStatement(zone, labels, pos),
742 init_(NULL), 721 init_(NULL),
743 cond_(NULL), 722 cond_(NULL),
744 next_(NULL) {} 723 next_(NULL) {}
745 static int parent_num_ids() { return IterationStatement::num_ids(); } 724 static int parent_num_ids() { return IterationStatement::num_ids(); }
746 725
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 ForInType for_in_type() const { return for_in_type_; } 784 ForInType for_in_type() const { return for_in_type_; }
806 void set_for_in_type(ForInType type) { for_in_type_ = type; } 785 void set_for_in_type(ForInType type) { for_in_type_ = type; }
807 786
808 static int num_ids() { return parent_num_ids() + 6; } 787 static int num_ids() { return parent_num_ids() + 6; }
809 BailoutId BodyId() const { return BailoutId(local_id(0)); } 788 BailoutId BodyId() const { return BailoutId(local_id(0)); }
810 BailoutId EnumId() const { return BailoutId(local_id(1)); } 789 BailoutId EnumId() const { return BailoutId(local_id(1)); }
811 BailoutId ToObjectId() const { return BailoutId(local_id(2)); } 790 BailoutId ToObjectId() const { return BailoutId(local_id(2)); }
812 BailoutId PrepareId() const { return BailoutId(local_id(3)); } 791 BailoutId PrepareId() const { return BailoutId(local_id(3)); }
813 BailoutId FilterId() const { return BailoutId(local_id(4)); } 792 BailoutId FilterId() const { return BailoutId(local_id(4)); }
814 BailoutId AssignmentId() const { return BailoutId(local_id(5)); } 793 BailoutId AssignmentId() const { return BailoutId(local_id(5)); }
815 BailoutId ContinueId() const override { return EntryId(); } 794 BailoutId ContinueId() const { return EntryId(); }
816 BailoutId StackCheckId() const override { return BodyId(); } 795 BailoutId StackCheckId() const { return BodyId(); }
817 796
818 protected: 797 protected:
819 ForInStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos) 798 ForInStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
820 : ForEachStatement(zone, labels, pos), 799 : ForEachStatement(zone, labels, pos),
821 each_(nullptr), 800 each_(nullptr),
822 subject_(nullptr), 801 subject_(nullptr),
823 for_in_type_(SLOW_FOR_IN) {} 802 for_in_type_(SLOW_FOR_IN) {}
824 static int parent_num_ids() { return ForEachStatement::num_ids(); } 803 static int parent_num_ids() { return ForEachStatement::num_ids(); }
825 804
826 private: 805 private:
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 // each = result.value 850 // each = result.value
872 Expression* assign_each() const { 851 Expression* assign_each() const {
873 return assign_each_; 852 return assign_each_;
874 } 853 }
875 854
876 void set_assign_iterator(Expression* e) { assign_iterator_ = e; } 855 void set_assign_iterator(Expression* e) { assign_iterator_ = e; }
877 void set_next_result(Expression* e) { next_result_ = e; } 856 void set_next_result(Expression* e) { next_result_ = e; }
878 void set_result_done(Expression* e) { result_done_ = e; } 857 void set_result_done(Expression* e) { result_done_ = e; }
879 void set_assign_each(Expression* e) { assign_each_ = e; } 858 void set_assign_each(Expression* e) { assign_each_ = e; }
880 859
881 BailoutId ContinueId() const override { return EntryId(); } 860 BailoutId ContinueId() const { return EntryId(); }
882 BailoutId StackCheckId() const override { return BackEdgeId(); } 861 BailoutId StackCheckId() const { return BackEdgeId(); }
883 862
884 static int num_ids() { return parent_num_ids() + 1; } 863 static int num_ids() { return parent_num_ids() + 1; }
885 BailoutId BackEdgeId() const { return BailoutId(local_id(0)); } 864 BailoutId BackEdgeId() const { return BailoutId(local_id(0)); }
886 865
887 protected: 866 protected:
888 ForOfStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos) 867 ForOfStatement(Zone* zone, ZoneList<const AstRawString*>* labels, int pos)
889 : ForEachStatement(zone, labels, pos), 868 : ForEachStatement(zone, labels, pos),
890 iterator_(NULL), 869 iterator_(NULL),
891 assign_iterator_(NULL), 870 assign_iterator_(NULL),
892 next_result_(NULL), 871 next_result_(NULL),
(...skipping 11 matching lines...) Expand all
904 Expression* assign_each_; 883 Expression* assign_each_;
905 }; 884 };
906 885
907 886
908 class ExpressionStatement final : public Statement { 887 class ExpressionStatement final : public Statement {
909 public: 888 public:
910 DECLARE_NODE_TYPE(ExpressionStatement) 889 DECLARE_NODE_TYPE(ExpressionStatement)
911 890
912 void set_expression(Expression* e) { expression_ = e; } 891 void set_expression(Expression* e) { expression_ = e; }
913 Expression* expression() const { return expression_; } 892 Expression* expression() const { return expression_; }
914 bool IsJump() const override { return expression_->IsThrow(); } 893 bool IsJump() const { return expression_->IsThrow(); }
915 894
916 protected: 895 protected:
917 ExpressionStatement(Zone* zone, Expression* expression, int pos) 896 ExpressionStatement(Zone* zone, Expression* expression, int pos)
918 : Statement(zone, pos), expression_(expression) { } 897 : Statement(zone, pos), expression_(expression) { }
919 898
920 private: 899 private:
921 Expression* expression_; 900 Expression* expression_;
922 }; 901 };
923 902
924 903
925 class JumpStatement : public Statement { 904 class JumpStatement : public Statement {
926 public: 905 public:
927 bool IsJump() const final { return true; } 906 bool IsJump() const { return true; }
928 907
929 protected: 908 protected:
930 explicit JumpStatement(Zone* zone, int pos) : Statement(zone, pos) {} 909 explicit JumpStatement(Zone* zone, int pos) : Statement(zone, pos) {}
931 }; 910 };
932 911
933 912
934 class ContinueStatement final : public JumpStatement { 913 class ContinueStatement final : public JumpStatement {
935 public: 914 public:
936 DECLARE_NODE_TYPE(ContinueStatement) 915 DECLARE_NODE_TYPE(ContinueStatement)
937 916
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 bool HasElseStatement() const { return !else_statement()->IsEmpty(); } 1071 bool HasElseStatement() const { return !else_statement()->IsEmpty(); }
1093 1072
1094 Expression* condition() const { return condition_; } 1073 Expression* condition() const { return condition_; }
1095 Statement* then_statement() const { return then_statement_; } 1074 Statement* then_statement() const { return then_statement_; }
1096 Statement* else_statement() const { return else_statement_; } 1075 Statement* else_statement() const { return else_statement_; }
1097 1076
1098 void set_condition(Expression* e) { condition_ = e; } 1077 void set_condition(Expression* e) { condition_ = e; }
1099 void set_then_statement(Statement* s) { then_statement_ = s; } 1078 void set_then_statement(Statement* s) { then_statement_ = s; }
1100 void set_else_statement(Statement* s) { else_statement_ = s; } 1079 void set_else_statement(Statement* s) { else_statement_ = s; }
1101 1080
1102 bool IsJump() const override { 1081 bool IsJump() const {
1103 return HasThenStatement() && then_statement()->IsJump() 1082 return HasThenStatement() && then_statement()->IsJump()
1104 && HasElseStatement() && else_statement()->IsJump(); 1083 && HasElseStatement() && else_statement()->IsJump();
1105 } 1084 }
1106 1085
1107 void set_base_id(int id) { base_id_ = id; } 1086 void set_base_id(int id) { base_id_ = id; }
1108 static int num_ids() { return parent_num_ids() + 3; } 1087 static int num_ids() { return parent_num_ids() + 3; }
1109 BailoutId IfId() const { return BailoutId(local_id(0)); } 1088 BailoutId IfId() const { return BailoutId(local_id(0)); }
1110 BailoutId ThenId() const { return BailoutId(local_id(1)); } 1089 BailoutId ThenId() const { return BailoutId(local_id(1)); }
1111 BailoutId ElseId() const { return BailoutId(local_id(2)); } 1090 BailoutId ElseId() const { return BailoutId(local_id(2)); }
1112 1091
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
1259 1238
1260 Statement* statement_; 1239 Statement* statement_;
1261 Scope* const scope_; 1240 Scope* const scope_;
1262 }; 1241 };
1263 1242
1264 1243
1265 class Literal final : public Expression { 1244 class Literal final : public Expression {
1266 public: 1245 public:
1267 DECLARE_NODE_TYPE(Literal) 1246 DECLARE_NODE_TYPE(Literal)
1268 1247
1269 bool IsPropertyName() const override { return value_->IsPropertyName(); } 1248 bool IsPropertyName() const { return value_->IsPropertyName(); }
1270 1249
1271 Handle<String> AsPropertyName() { 1250 Handle<String> AsPropertyName() {
1272 DCHECK(IsPropertyName()); 1251 DCHECK(IsPropertyName());
1273 return Handle<String>::cast(value()); 1252 return Handle<String>::cast(value());
1274 } 1253 }
1275 1254
1276 const AstRawString* AsRawPropertyName() { 1255 const AstRawString* AsRawPropertyName() {
1277 DCHECK(IsPropertyName()); 1256 DCHECK(IsPropertyName());
1278 return value_->AsString(); 1257 return value_->AsString();
1279 } 1258 }
1280 1259
1281 bool ToBooleanIsTrue() const override { return value()->BooleanValue(); } 1260 bool ToBooleanIsTrue() const { return value()->BooleanValue(); }
1282 bool ToBooleanIsFalse() const override { return !value()->BooleanValue(); } 1261 bool ToBooleanIsFalse() const { return !value()->BooleanValue(); }
1283 1262
1284 Handle<Object> value() const { return value_->value(); } 1263 Handle<Object> value() const { return value_->value(); }
1285 const AstValue* raw_value() const { return value_; } 1264 const AstValue* raw_value() const { return value_; }
1286 1265
1287 // Support for using Literal as a HashMap key. NOTE: Currently, this works 1266 // Support for using Literal as a HashMap key. NOTE: Currently, this works
1288 // only for string and number literals! 1267 // only for string and number literals!
1289 uint32_t Hash(); 1268 uint32_t Hash();
1290 static bool Match(void* literal1, void* literal2); 1269 static bool Match(void* literal1, void* literal2);
1291 1270
1292 static int num_ids() { return parent_num_ids() + 1; } 1271 static int num_ids() { return parent_num_ids() + 1; }
(...skipping 11 matching lines...) Expand all
1304 1283
1305 const AstValue* value_; 1284 const AstValue* value_;
1306 }; 1285 };
1307 1286
1308 1287
1309 class AstLiteralReindexer; 1288 class AstLiteralReindexer;
1310 1289
1311 // Base class for literals that needs space in the corresponding JSFunction. 1290 // Base class for literals that needs space in the corresponding JSFunction.
1312 class MaterializedLiteral : public Expression { 1291 class MaterializedLiteral : public Expression {
1313 public: 1292 public:
1314 MaterializedLiteral* AsMaterializedLiteral() final { return this; }
1315
1316 int literal_index() { return literal_index_; } 1293 int literal_index() { return literal_index_; }
1317 1294
1318 int depth() const { 1295 int depth() const {
1319 // only callable after initialization. 1296 // only callable after initialization.
1320 DCHECK(depth_ >= 1); 1297 DCHECK(depth_ >= 1);
1321 return depth_; 1298 return depth_;
1322 } 1299 }
1323 1300
1324 protected: 1301 protected:
1325 MaterializedLiteral(Zone* zone, int literal_index, int pos) 1302 MaterializedLiteral(Zone* zone, int literal_index, int pos)
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 }; 1351 };
1375 1352
1376 Expression* key() { return key_; } 1353 Expression* key() { return key_; }
1377 Expression* value() { return value_; } 1354 Expression* value() { return value_; }
1378 Kind kind() { return kind_; } 1355 Kind kind() { return kind_; }
1379 1356
1380 void set_key(Expression* e) { key_ = e; } 1357 void set_key(Expression* e) { key_ = e; }
1381 void set_value(Expression* e) { value_ = e; } 1358 void set_value(Expression* e) { value_ = e; }
1382 1359
1383 // Type feedback information. 1360 // Type feedback information.
1384 bool IsMonomorphic() { return !receiver_type_.is_null(); } 1361 bool IsMonomorphic() const { return !receiver_type_.is_null(); }
1385 Handle<Map> GetReceiverType() { return receiver_type_; } 1362 Handle<Map> GetReceiverType() { return receiver_type_; }
1386 1363
1387 bool IsCompileTimeValue(); 1364 bool IsCompileTimeValue();
1388 1365
1389 void set_emit_store(bool emit_store); 1366 void set_emit_store(bool emit_store);
1390 bool emit_store(); 1367 bool emit_store();
1391 1368
1392 bool is_static() const { return is_static_; } 1369 bool is_static() const { return is_static_; }
1393 bool is_computed_name() const { return is_computed_name_; } 1370 bool is_computed_name() const { return is_computed_name_; }
1394 1371
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
1645 ZoneList<Expression*>* values_; 1622 ZoneList<Expression*>* values_;
1646 int first_spread_index_; 1623 int first_spread_index_;
1647 FeedbackVectorSlot literal_slot_; 1624 FeedbackVectorSlot literal_slot_;
1648 }; 1625 };
1649 1626
1650 1627
1651 class VariableProxy final : public Expression { 1628 class VariableProxy final : public Expression {
1652 public: 1629 public:
1653 DECLARE_NODE_TYPE(VariableProxy) 1630 DECLARE_NODE_TYPE(VariableProxy)
1654 1631
1655 bool IsValidReferenceExpression() const override { 1632 bool IsValidReferenceExpression() const {
1656 return !is_this() && !is_new_target(); 1633 return !is_this() && !is_new_target();
1657 } 1634 }
1658 1635
1659 bool IsArguments() const { return is_resolved() && var()->is_arguments(); } 1636 bool IsArguments() const { return is_resolved() && var()->is_arguments(); }
1660 1637
1661 Handle<String> name() const { return raw_name()->string(); } 1638 Handle<String> name() const { return raw_name()->string(); }
1662 const AstRawString* raw_name() const { 1639 const AstRawString* raw_name() const {
1663 return is_resolved() ? var_->raw_name() : raw_name_; 1640 return is_resolved() ? var_->raw_name() : raw_name_;
1664 } 1641 }
1665 1642
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1745 KEYED_PROPERTY, 1722 KEYED_PROPERTY,
1746 NAMED_SUPER_PROPERTY, 1723 NAMED_SUPER_PROPERTY,
1747 KEYED_SUPER_PROPERTY 1724 KEYED_SUPER_PROPERTY
1748 }; 1725 };
1749 1726
1750 1727
1751 class Property final : public Expression { 1728 class Property final : public Expression {
1752 public: 1729 public:
1753 DECLARE_NODE_TYPE(Property) 1730 DECLARE_NODE_TYPE(Property)
1754 1731
1755 bool IsValidReferenceExpression() const override { return true; } 1732 bool IsValidReferenceExpression() const { return true; }
1756 1733
1757 Expression* obj() const { return obj_; } 1734 Expression* obj() const { return obj_; }
1758 Expression* key() const { return key_; } 1735 Expression* key() const { return key_; }
1759 1736
1760 void set_obj(Expression* e) { obj_ = e; } 1737 void set_obj(Expression* e) { obj_ = e; }
1761 void set_key(Expression* e) { key_ = e; } 1738 void set_key(Expression* e) { key_ = e; }
1762 1739
1763 static int num_ids() { return parent_num_ids() + 1; } 1740 static int num_ids() { return parent_num_ids() + 1; }
1764 BailoutId LoadId() const { return BailoutId(local_id(0)); } 1741 BailoutId LoadId() const { return BailoutId(local_id(0)); }
1765 1742
1766 bool IsStringAccess() const { 1743 bool IsStringAccess() const {
1767 return IsStringAccessField::decode(bit_field_); 1744 return IsStringAccessField::decode(bit_field_);
1768 } 1745 }
1769 1746
1770 // Type feedback information. 1747 // Type feedback information.
1771 bool IsMonomorphic() override { return receiver_types_.length() == 1; } 1748 bool IsMonomorphic() const { return receiver_types_.length() == 1; }
1772 SmallMapList* GetReceiverTypes() override { return &receiver_types_; } 1749 SmallMapList* GetReceiverTypes() { return &receiver_types_; }
1773 KeyedAccessStoreMode GetStoreMode() const override { return STANDARD_STORE; } 1750 KeyedAccessStoreMode GetStoreMode() const { return STANDARD_STORE; }
1774 IcCheckType GetKeyType() const override { 1751 IcCheckType GetKeyType() const { return KeyTypeField::decode(bit_field_); }
1775 return KeyTypeField::decode(bit_field_);
1776 }
1777 bool IsUninitialized() const { 1752 bool IsUninitialized() const {
1778 return !is_for_call() && HasNoTypeInformation(); 1753 return !is_for_call() && HasNoTypeInformation();
1779 } 1754 }
1780 bool HasNoTypeInformation() const { 1755 bool HasNoTypeInformation() const {
1781 return GetInlineCacheState() == UNINITIALIZED; 1756 return GetInlineCacheState() == UNINITIALIZED;
1782 } 1757 }
1783 InlineCacheState GetInlineCacheState() const { 1758 InlineCacheState GetInlineCacheState() const {
1784 return InlineCacheStateField::decode(bit_field_); 1759 return InlineCacheStateField::decode(bit_field_);
1785 } 1760 }
1786 void set_is_string_access(bool b) { 1761 void set_is_string_access(bool b) {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
1854 void set_expression(Expression* e) { expression_ = e; } 1829 void set_expression(Expression* e) { expression_ = e; }
1855 1830
1856 // Type feedback information. 1831 // Type feedback information.
1857 void AssignFeedbackVectorSlots(Isolate* isolate, FeedbackVectorSpec* spec, 1832 void AssignFeedbackVectorSlots(Isolate* isolate, FeedbackVectorSpec* spec,
1858 FeedbackVectorSlotCache* cache); 1833 FeedbackVectorSlotCache* cache);
1859 1834
1860 FeedbackVectorSlot CallFeedbackSlot() const { return stub_slot_; } 1835 FeedbackVectorSlot CallFeedbackSlot() const { return stub_slot_; }
1861 1836
1862 FeedbackVectorSlot CallFeedbackICSlot() const { return ic_slot_; } 1837 FeedbackVectorSlot CallFeedbackICSlot() const { return ic_slot_; }
1863 1838
1864 SmallMapList* GetReceiverTypes() override { 1839 SmallMapList* GetReceiverTypes() {
1865 if (expression()->IsProperty()) { 1840 if (expression()->IsProperty()) {
1866 return expression()->AsProperty()->GetReceiverTypes(); 1841 return expression()->AsProperty()->GetReceiverTypes();
1867 } 1842 }
1868 return NULL; 1843 return NULL;
1869 } 1844 }
1870 1845
1871 bool IsMonomorphic() override { 1846 bool IsMonomorphic() const {
1872 if (expression()->IsProperty()) { 1847 if (expression()->IsProperty()) {
1873 return expression()->AsProperty()->IsMonomorphic(); 1848 return expression()->AsProperty()->IsMonomorphic();
1874 } 1849 }
1875 return !target_.is_null(); 1850 return !target_.is_null();
1876 } 1851 }
1877 1852
1878 bool global_call() const { 1853 bool global_call() const {
1879 VariableProxy* proxy = expression_->AsVariableProxy(); 1854 VariableProxy* proxy = expression_->AsVariableProxy();
1880 return proxy != NULL && proxy->var()->IsUnallocatedOrGlobalSlot(); 1855 return proxy != NULL && proxy->var()->IsUnallocatedOrGlobalSlot();
1881 } 1856 }
(...skipping 25 matching lines...) Expand all
1907 return IsUninitializedField::decode(bit_field_); 1882 return IsUninitializedField::decode(bit_field_);
1908 } 1883 }
1909 void set_is_uninitialized(bool b) { 1884 void set_is_uninitialized(bool b) {
1910 bit_field_ = IsUninitializedField::update(bit_field_, b); 1885 bit_field_ = IsUninitializedField::update(bit_field_, b);
1911 } 1886 }
1912 1887
1913 TailCallMode tail_call_mode() const { 1888 TailCallMode tail_call_mode() const {
1914 return IsTailField::decode(bit_field_) ? TailCallMode::kAllow 1889 return IsTailField::decode(bit_field_) ? TailCallMode::kAllow
1915 : TailCallMode::kDisallow; 1890 : TailCallMode::kDisallow;
1916 } 1891 }
1917 void MarkTail() override { 1892 void MarkTail() { bit_field_ = IsTailField::update(bit_field_, true); }
1918 bit_field_ = IsTailField::update(bit_field_, true);
1919 }
1920 1893
1921 enum CallType { 1894 enum CallType {
1922 POSSIBLY_EVAL_CALL, 1895 POSSIBLY_EVAL_CALL,
1923 GLOBAL_CALL, 1896 GLOBAL_CALL,
1924 LOOKUP_SLOT_CALL, 1897 LOOKUP_SLOT_CALL,
1925 NAMED_PROPERTY_CALL, 1898 NAMED_PROPERTY_CALL,
1926 KEYED_PROPERTY_CALL, 1899 KEYED_PROPERTY_CALL,
1927 NAMED_SUPER_PROPERTY_CALL, 1900 NAMED_SUPER_PROPERTY_CALL,
1928 KEYED_SUPER_PROPERTY_CALL, 1901 KEYED_SUPER_PROPERTY_CALL,
1929 SUPER_CALL, 1902 SUPER_CALL,
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1984 // Construct calls have two slots, one right after the other. 1957 // Construct calls have two slots, one right after the other.
1985 // The second slot stores the call count for monomorphic calls. 1958 // The second slot stores the call count for monomorphic calls.
1986 spec->AddGeneralSlot(); 1959 spec->AddGeneralSlot();
1987 } 1960 }
1988 1961
1989 FeedbackVectorSlot CallNewFeedbackSlot() { 1962 FeedbackVectorSlot CallNewFeedbackSlot() {
1990 DCHECK(!callnew_feedback_slot_.IsInvalid()); 1963 DCHECK(!callnew_feedback_slot_.IsInvalid());
1991 return callnew_feedback_slot_; 1964 return callnew_feedback_slot_;
1992 } 1965 }
1993 1966
1994 bool IsMonomorphic() override { return is_monomorphic_; } 1967 bool IsMonomorphic() const { return is_monomorphic_; }
1995 Handle<JSFunction> target() const { return target_; } 1968 Handle<JSFunction> target() const { return target_; }
1996 Handle<AllocationSite> allocation_site() const { 1969 Handle<AllocationSite> allocation_site() const {
1997 return allocation_site_; 1970 return allocation_site_;
1998 } 1971 }
1999 1972
2000 static int num_ids() { return parent_num_ids() + 1; } 1973 static int num_ids() { return parent_num_ids() + 1; }
2001 static int feedback_slots() { return 1; } 1974 static int feedback_slots() { return 1; }
2002 BailoutId ReturnId() const { return BailoutId(local_id(0)); } 1975 BailoutId ReturnId() const { return BailoutId(local_id(0)); }
2003 1976
2004 void set_allocation_site(Handle<AllocationSite> site) { 1977 void set_allocation_site(Handle<AllocationSite> site) {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
2090 Token::Value op() const { return op_; } 2063 Token::Value op() const { return op_; }
2091 Expression* expression() const { return expression_; } 2064 Expression* expression() const { return expression_; }
2092 void set_expression(Expression* e) { expression_ = e; } 2065 void set_expression(Expression* e) { expression_ = e; }
2093 2066
2094 // For unary not (Token::NOT), the AST ids where true and false will 2067 // For unary not (Token::NOT), the AST ids where true and false will
2095 // actually be materialized, respectively. 2068 // actually be materialized, respectively.
2096 static int num_ids() { return parent_num_ids() + 2; } 2069 static int num_ids() { return parent_num_ids() + 2; }
2097 BailoutId MaterializeTrueId() const { return BailoutId(local_id(0)); } 2070 BailoutId MaterializeTrueId() const { return BailoutId(local_id(0)); }
2098 BailoutId MaterializeFalseId() const { return BailoutId(local_id(1)); } 2071 BailoutId MaterializeFalseId() const { return BailoutId(local_id(1)); }
2099 2072
2100 void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle) override; 2073 void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle);
2101 2074
2102 protected: 2075 protected:
2103 UnaryOperation(Zone* zone, Token::Value op, Expression* expression, int pos) 2076 UnaryOperation(Zone* zone, Token::Value op, Expression* expression, int pos)
2104 : Expression(zone, pos), op_(op), expression_(expression) { 2077 : Expression(zone, pos), op_(op), expression_(expression) {
2105 DCHECK(Token::IsUnaryOp(op)); 2078 DCHECK(Token::IsUnaryOp(op));
2106 } 2079 }
2107 static int parent_num_ids() { return Expression::num_ids(); } 2080 static int parent_num_ids() { return Expression::num_ids(); }
2108 2081
2109 private: 2082 private:
2110 int local_id(int n) const { return base_id() + parent_num_ids() + n; } 2083 int local_id(int n) const { return base_id() + parent_num_ids() + n; }
(...skipping 10 matching lines...) Expand all
2121 Token::Value op() const { return static_cast<Token::Value>(op_); } 2094 Token::Value op() const { return static_cast<Token::Value>(op_); }
2122 Expression* left() const { return left_; } 2095 Expression* left() const { return left_; }
2123 void set_left(Expression* e) { left_ = e; } 2096 void set_left(Expression* e) { left_ = e; }
2124 Expression* right() const { return right_; } 2097 Expression* right() const { return right_; }
2125 void set_right(Expression* e) { right_ = e; } 2098 void set_right(Expression* e) { right_ = e; }
2126 Handle<AllocationSite> allocation_site() const { return allocation_site_; } 2099 Handle<AllocationSite> allocation_site() const { return allocation_site_; }
2127 void set_allocation_site(Handle<AllocationSite> allocation_site) { 2100 void set_allocation_site(Handle<AllocationSite> allocation_site) {
2128 allocation_site_ = allocation_site; 2101 allocation_site_ = allocation_site;
2129 } 2102 }
2130 2103
2131 void MarkTail() override { 2104 void MarkTail() {
2132 switch (op()) { 2105 switch (op()) {
2133 case Token::COMMA: 2106 case Token::COMMA:
2134 case Token::AND: 2107 case Token::AND:
2135 case Token::OR: 2108 case Token::OR:
2136 right_->MarkTail(); 2109 right_->MarkTail();
2137 default: 2110 default:
2138 break; 2111 break;
2139 } 2112 }
2140 } 2113 }
2141 2114
2142 // The short-circuit logical operations need an AST ID for their 2115 // The short-circuit logical operations need an AST ID for their
2143 // right-hand subexpression. 2116 // right-hand subexpression.
2144 static int num_ids() { return parent_num_ids() + 2; } 2117 static int num_ids() { return parent_num_ids() + 2; }
2145 BailoutId RightId() const { return BailoutId(local_id(0)); } 2118 BailoutId RightId() const { return BailoutId(local_id(0)); }
2146 2119
2147 TypeFeedbackId BinaryOperationFeedbackId() const { 2120 TypeFeedbackId BinaryOperationFeedbackId() const {
2148 return TypeFeedbackId(local_id(1)); 2121 return TypeFeedbackId(local_id(1));
2149 } 2122 }
2150 Maybe<int> fixed_right_arg() const { 2123 Maybe<int> fixed_right_arg() const {
2151 return has_fixed_right_arg_ ? Just(fixed_right_arg_value_) : Nothing<int>(); 2124 return has_fixed_right_arg_ ? Just(fixed_right_arg_value_) : Nothing<int>();
2152 } 2125 }
2153 void set_fixed_right_arg(Maybe<int> arg) { 2126 void set_fixed_right_arg(Maybe<int> arg) {
2154 has_fixed_right_arg_ = arg.IsJust(); 2127 has_fixed_right_arg_ = arg.IsJust();
2155 if (arg.IsJust()) fixed_right_arg_value_ = arg.FromJust(); 2128 if (arg.IsJust()) fixed_right_arg_value_ = arg.FromJust();
2156 } 2129 }
2157 2130
2158 void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle) override; 2131 void RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle);
2159 2132
2160 protected: 2133 protected:
2161 BinaryOperation(Zone* zone, Token::Value op, Expression* left, 2134 BinaryOperation(Zone* zone, Token::Value op, Expression* left,
2162 Expression* right, int pos) 2135 Expression* right, int pos)
2163 : Expression(zone, pos), 2136 : Expression(zone, pos),
2164 op_(static_cast<byte>(op)), 2137 op_(static_cast<byte>(op)),
2165 has_fixed_right_arg_(false), 2138 has_fixed_right_arg_(false),
2166 fixed_right_arg_value_(0), 2139 fixed_right_arg_value_(0),
2167 left_(left), 2140 left_(left),
2168 right_(right) { 2141 right_(right) {
(...skipping 23 matching lines...) Expand all
2192 bool is_postfix() const { return !is_prefix(); } 2165 bool is_postfix() const { return !is_prefix(); }
2193 2166
2194 Token::Value op() const { return TokenField::decode(bit_field_); } 2167 Token::Value op() const { return TokenField::decode(bit_field_); }
2195 Token::Value binary_op() { 2168 Token::Value binary_op() {
2196 return (op() == Token::INC) ? Token::ADD : Token::SUB; 2169 return (op() == Token::INC) ? Token::ADD : Token::SUB;
2197 } 2170 }
2198 2171
2199 Expression* expression() const { return expression_; } 2172 Expression* expression() const { return expression_; }
2200 void set_expression(Expression* e) { expression_ = e; } 2173 void set_expression(Expression* e) { expression_ = e; }
2201 2174
2202 bool IsMonomorphic() override { return receiver_types_.length() == 1; } 2175 bool IsMonomorphic() const { return receiver_types_.length() == 1; }
2203 SmallMapList* GetReceiverTypes() override { return &receiver_types_; } 2176 SmallMapList* GetReceiverTypes() { return &receiver_types_; }
2204 IcCheckType GetKeyType() const override { 2177 IcCheckType GetKeyType() const { return KeyTypeField::decode(bit_field_); }
2205 return KeyTypeField::decode(bit_field_); 2178 KeyedAccessStoreMode GetStoreMode() const {
2206 }
2207 KeyedAccessStoreMode GetStoreMode() const override {
2208 return StoreModeField::decode(bit_field_); 2179 return StoreModeField::decode(bit_field_);
2209 } 2180 }
2210 Type* type() const { return type_; } 2181 Type* type() const { return type_; }
2211 void set_key_type(IcCheckType type) { 2182 void set_key_type(IcCheckType type) {
2212 bit_field_ = KeyTypeField::update(bit_field_, type); 2183 bit_field_ = KeyTypeField::update(bit_field_, type);
2213 } 2184 }
2214 void set_store_mode(KeyedAccessStoreMode mode) { 2185 void set_store_mode(KeyedAccessStoreMode mode) {
2215 bit_field_ = StoreModeField::update(bit_field_, mode); 2186 bit_field_ = StoreModeField::update(bit_field_, mode);
2216 } 2187 }
2217 void set_type(Type* type) { type_ = type; } 2188 void set_type(Type* type) { type_ = type; }
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
2335 DECLARE_NODE_TYPE(Conditional) 2306 DECLARE_NODE_TYPE(Conditional)
2336 2307
2337 Expression* condition() const { return condition_; } 2308 Expression* condition() const { return condition_; }
2338 Expression* then_expression() const { return then_expression_; } 2309 Expression* then_expression() const { return then_expression_; }
2339 Expression* else_expression() const { return else_expression_; } 2310 Expression* else_expression() const { return else_expression_; }
2340 2311
2341 void set_condition(Expression* e) { condition_ = e; } 2312 void set_condition(Expression* e) { condition_ = e; }
2342 void set_then_expression(Expression* e) { then_expression_ = e; } 2313 void set_then_expression(Expression* e) { then_expression_ = e; }
2343 void set_else_expression(Expression* e) { else_expression_ = e; } 2314 void set_else_expression(Expression* e) { else_expression_ = e; }
2344 2315
2345 void MarkTail() override { 2316 void MarkTail() {
2346 then_expression_->MarkTail(); 2317 then_expression_->MarkTail();
2347 else_expression_->MarkTail(); 2318 else_expression_->MarkTail();
2348 } 2319 }
2349 2320
2350 static int num_ids() { return parent_num_ids() + 2; } 2321 static int num_ids() { return parent_num_ids() + 2; }
2351 BailoutId ThenId() const { return BailoutId(local_id(0)); } 2322 BailoutId ThenId() const { return BailoutId(local_id(0)); }
2352 BailoutId ElseId() const { return BailoutId(local_id(1)); } 2323 BailoutId ElseId() const { return BailoutId(local_id(1)); }
2353 2324
2354 protected: 2325 protected:
2355 Conditional(Zone* zone, Expression* condition, Expression* then_expression, 2326 Conditional(Zone* zone, Expression* condition, Expression* then_expression,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
2387 BinaryOperation* binary_operation() const { return binary_operation_; } 2358 BinaryOperation* binary_operation() const { return binary_operation_; }
2388 2359
2389 // This check relies on the definition order of token in token.h. 2360 // This check relies on the definition order of token in token.h.
2390 bool is_compound() const { return op() > Token::ASSIGN; } 2361 bool is_compound() const { return op() > Token::ASSIGN; }
2391 2362
2392 static int num_ids() { return parent_num_ids() + 2; } 2363 static int num_ids() { return parent_num_ids() + 2; }
2393 BailoutId AssignmentId() const { return BailoutId(local_id(0)); } 2364 BailoutId AssignmentId() const { return BailoutId(local_id(0)); }
2394 2365
2395 // Type feedback information. 2366 // Type feedback information.
2396 TypeFeedbackId AssignmentFeedbackId() { return TypeFeedbackId(local_id(1)); } 2367 TypeFeedbackId AssignmentFeedbackId() { return TypeFeedbackId(local_id(1)); }
2397 bool IsMonomorphic() override { return receiver_types_.length() == 1; } 2368 bool IsMonomorphic() const { return receiver_types_.length() == 1; }
2398 bool IsUninitialized() const { 2369 bool IsUninitialized() const {
2399 return IsUninitializedField::decode(bit_field_); 2370 return IsUninitializedField::decode(bit_field_);
2400 } 2371 }
2401 bool HasNoTypeInformation() { 2372 bool HasNoTypeInformation() {
2402 return IsUninitializedField::decode(bit_field_); 2373 return IsUninitializedField::decode(bit_field_);
2403 } 2374 }
2404 SmallMapList* GetReceiverTypes() override { return &receiver_types_; } 2375 SmallMapList* GetReceiverTypes() { return &receiver_types_; }
2405 IcCheckType GetKeyType() const override { 2376 IcCheckType GetKeyType() const { return KeyTypeField::decode(bit_field_); }
2406 return KeyTypeField::decode(bit_field_); 2377 KeyedAccessStoreMode GetStoreMode() const {
2407 }
2408 KeyedAccessStoreMode GetStoreMode() const override {
2409 return StoreModeField::decode(bit_field_); 2378 return StoreModeField::decode(bit_field_);
2410 } 2379 }
2411 void set_is_uninitialized(bool b) { 2380 void set_is_uninitialized(bool b) {
2412 bit_field_ = IsUninitializedField::update(bit_field_, b); 2381 bit_field_ = IsUninitializedField::update(bit_field_, b);
2413 } 2382 }
2414 void set_key_type(IcCheckType key_type) { 2383 void set_key_type(IcCheckType key_type) {
2415 bit_field_ = KeyTypeField::update(bit_field_, key_type); 2384 bit_field_ = KeyTypeField::update(bit_field_, key_type);
2416 } 2385 }
2417 void set_store_mode(KeyedAccessStoreMode mode) { 2386 void set_store_mode(KeyedAccessStoreMode mode) {
2418 bit_field_ = StoreModeField::update(bit_field_, mode); 2387 bit_field_ = StoreModeField::update(bit_field_, mode);
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
2661 } 2630 }
2662 const FeedbackVectorSpec* feedback_vector_spec() const { 2631 const FeedbackVectorSpec* feedback_vector_spec() const {
2663 return ast_properties_.get_spec(); 2632 return ast_properties_.get_spec();
2664 } 2633 }
2665 bool dont_optimize() { return dont_optimize_reason_ != kNoReason; } 2634 bool dont_optimize() { return dont_optimize_reason_ != kNoReason; }
2666 BailoutReason dont_optimize_reason() { return dont_optimize_reason_; } 2635 BailoutReason dont_optimize_reason() { return dont_optimize_reason_; }
2667 void set_dont_optimize_reason(BailoutReason reason) { 2636 void set_dont_optimize_reason(BailoutReason reason) {
2668 dont_optimize_reason_ = reason; 2637 dont_optimize_reason_ = reason;
2669 } 2638 }
2670 2639
2671 bool IsAnonymousFunctionDefinition() const final { 2640 bool IsAnonymousFunctionDefinition() const {
2672 return is_anonymous_expression(); 2641 return is_anonymous_expression();
2673 } 2642 }
2674 2643
2675 int yield_count() { return yield_count_; } 2644 int yield_count() { return yield_count_; }
2676 void set_yield_count(int yield_count) { yield_count_ = yield_count; } 2645 void set_yield_count(int yield_count) { yield_count_ = yield_count; }
2677 2646
2678 protected: 2647 protected:
2679 FunctionLiteral(Zone* zone, const AstString* name, 2648 FunctionLiteral(Zone* zone, const AstString* name,
2680 AstValueFactory* ast_value_factory, Scope* scope, 2649 AstValueFactory* ast_value_factory, Scope* scope,
2681 ZoneList<Statement*>* body, int materialized_literal_count, 2650 ZoneList<Statement*>* body, int materialized_literal_count,
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
2770 FeedbackVectorSlotCache* cache); 2739 FeedbackVectorSlotCache* cache);
2771 2740
2772 bool NeedsProxySlot() const { 2741 bool NeedsProxySlot() const {
2773 return class_variable_proxy() != nullptr && 2742 return class_variable_proxy() != nullptr &&
2774 class_variable_proxy()->var()->IsUnallocated(); 2743 class_variable_proxy()->var()->IsUnallocated();
2775 } 2744 }
2776 2745
2777 FeedbackVectorSlot PrototypeSlot() const { return prototype_slot_; } 2746 FeedbackVectorSlot PrototypeSlot() const { return prototype_slot_; }
2778 FeedbackVectorSlot ProxySlot() const { return proxy_slot_; } 2747 FeedbackVectorSlot ProxySlot() const { return proxy_slot_; }
2779 2748
2780 bool IsAnonymousFunctionDefinition() const final { 2749 bool IsAnonymousFunctionDefinition() const {
2781 return constructor()->raw_name()->length() == 0; 2750 return constructor()->raw_name()->length() == 0;
2782 } 2751 }
2783 2752
2784 protected: 2753 protected:
2785 ClassLiteral(Zone* zone, Scope* scope, VariableProxy* class_variable_proxy, 2754 ClassLiteral(Zone* zone, Scope* scope, VariableProxy* class_variable_proxy,
2786 Expression* extends, FunctionLiteral* constructor, 2755 Expression* extends, FunctionLiteral* constructor,
2787 ZoneList<Property*>* properties, int start_position, 2756 ZoneList<Property*>* properties, int start_position,
2788 int end_position) 2757 int end_position)
2789 : Expression(zone, start_position), 2758 : Expression(zone, start_position),
2790 scope_(scope), 2759 scope_(scope),
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
3547 : NULL; \ 3516 : NULL; \
3548 } 3517 }
3549 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS) 3518 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS)
3550 #undef DECLARE_NODE_FUNCTIONS 3519 #undef DECLARE_NODE_FUNCTIONS
3551 3520
3552 3521
3553 } // namespace internal 3522 } // namespace internal
3554 } // namespace v8 3523 } // namespace v8
3555 3524
3556 #endif // V8_AST_AST_H_ 3525 #endif // V8_AST_AST_H_
OLDNEW
« no previous file with comments | « no previous file | src/ast/ast.cc » ('j') | src/compiler/ast-graph-builder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698