| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 #include "src/compiler/ast-graph-builder.h" | 5 #include "src/compiler/ast-graph-builder.h" |
| 6 | 6 |
| 7 #include "src/compiler.h" | 7 #include "src/compiler.h" |
| 8 #include "src/compiler/ast-loop-assignment-analyzer.h" | 8 #include "src/compiler/ast-loop-assignment-analyzer.h" |
| 9 #include "src/compiler/control-builders.h" | 9 #include "src/compiler/control-builders.h" |
| 10 #include "src/compiler/js-type-feedback.h" | 10 #include "src/compiler/js-type-feedback.h" |
| (...skipping 2572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2583 | 2583 |
| 2584 void AstGraphBuilder::VisitSpread(Spread* expr) { UNREACHABLE(); } | 2584 void AstGraphBuilder::VisitSpread(Spread* expr) { UNREACHABLE(); } |
| 2585 | 2585 |
| 2586 | 2586 |
| 2587 void AstGraphBuilder::VisitThisFunction(ThisFunction* expr) { | 2587 void AstGraphBuilder::VisitThisFunction(ThisFunction* expr) { |
| 2588 Node* value = GetFunctionClosure(); | 2588 Node* value = GetFunctionClosure(); |
| 2589 ast_context()->ProduceValue(value); | 2589 ast_context()->ProduceValue(value); |
| 2590 } | 2590 } |
| 2591 | 2591 |
| 2592 | 2592 |
| 2593 void AstGraphBuilder::VisitSuperPropertyReference( | 2593 void AstGraphBuilder::VisitSuperReference(SuperReference* expr) { |
| 2594 SuperPropertyReference* expr) { | |
| 2595 // TODO(turbofan): Implement super here. | 2594 // TODO(turbofan): Implement super here. |
| 2596 SetStackOverflow(); | 2595 SetStackOverflow(); |
| 2597 ast_context()->ProduceValue(jsgraph()->UndefinedConstant()); | 2596 ast_context()->ProduceValue(jsgraph()->UndefinedConstant()); |
| 2598 } | |
| 2599 | |
| 2600 | |
| 2601 void AstGraphBuilder::VisitSuperCallReference(SuperCallReference* expr) { | |
| 2602 // TODO(turbofan): Implement super here. | |
| 2603 SetStackOverflow(); | |
| 2604 ast_context()->ProduceValue(jsgraph()->UndefinedConstant()); | |
| 2605 } | 2597 } |
| 2606 | 2598 |
| 2607 | 2599 |
| 2608 void AstGraphBuilder::VisitCaseClause(CaseClause* expr) { UNREACHABLE(); } | 2600 void AstGraphBuilder::VisitCaseClause(CaseClause* expr) { UNREACHABLE(); } |
| 2609 | 2601 |
| 2610 | 2602 |
| 2611 void AstGraphBuilder::VisitDeclarations(ZoneList<Declaration*>* declarations) { | 2603 void AstGraphBuilder::VisitDeclarations(ZoneList<Declaration*>* declarations) { |
| 2612 DCHECK(globals()->empty()); | 2604 DCHECK(globals()->empty()); |
| 2613 AstVisitor::VisitDeclarations(declarations); | 2605 AstVisitor::VisitDeclarations(declarations); |
| 2614 if (globals()->empty()) return; | 2606 if (globals()->empty()) return; |
| (...skipping 1165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3780 // Phi does not exist yet, introduce one. | 3772 // Phi does not exist yet, introduce one. |
| 3781 value = NewPhi(inputs, value, control); | 3773 value = NewPhi(inputs, value, control); |
| 3782 value->ReplaceInput(inputs - 1, other); | 3774 value->ReplaceInput(inputs - 1, other); |
| 3783 } | 3775 } |
| 3784 return value; | 3776 return value; |
| 3785 } | 3777 } |
| 3786 | 3778 |
| 3787 } // namespace compiler | 3779 } // namespace compiler |
| 3788 } // namespace internal | 3780 } // namespace internal |
| 3789 } // namespace v8 | 3781 } // namespace v8 |
| OLD | NEW |