| 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 2207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2218 | 2218 |
| 2219 void AstGraphBuilder::VisitThrow(Throw* expr) { | 2219 void AstGraphBuilder::VisitThrow(Throw* expr) { |
| 2220 VisitForValue(expr->exception()); | 2220 VisitForValue(expr->exception()); |
| 2221 Node* exception = environment()->Pop(); | 2221 Node* exception = environment()->Pop(); |
| 2222 Node* value = BuildThrowError(exception, expr->id()); | 2222 Node* value = BuildThrowError(exception, expr->id()); |
| 2223 ast_context()->ProduceValue(value); | 2223 ast_context()->ProduceValue(value); |
| 2224 } | 2224 } |
| 2225 | 2225 |
| 2226 | 2226 |
| 2227 void AstGraphBuilder::VisitProperty(Property* expr) { | 2227 void AstGraphBuilder::VisitProperty(Property* expr) { |
| 2228 if (expr->obj()->IsSuperReference()) { | |
| 2229 // TODO(turbofan): Implement super here. | |
| 2230 SetStackOverflow(); | |
| 2231 ast_context()->ProduceValue(jsgraph()->UndefinedConstant()); | |
| 2232 return; | |
| 2233 } | |
| 2234 | |
| 2235 Node* value; | 2228 Node* value; |
| 2236 VectorSlotPair pair = CreateVectorSlotPair(expr->PropertyFeedbackSlot()); | 2229 VectorSlotPair pair = CreateVectorSlotPair(expr->PropertyFeedbackSlot()); |
| 2237 if (expr->key()->IsPropertyName()) { | 2230 if (expr->key()->IsPropertyName()) { |
| 2238 VisitForValue(expr->obj()); | 2231 VisitForValue(expr->obj()); |
| 2239 FrameStateBeforeAndAfter states(this, expr->obj()->id()); | 2232 FrameStateBeforeAndAfter states(this, expr->obj()->id()); |
| 2240 Node* object = environment()->Pop(); | 2233 Node* object = environment()->Pop(); |
| 2241 Handle<Name> name = expr->key()->AsLiteral()->AsPropertyName(); | 2234 Handle<Name> name = expr->key()->AsLiteral()->AsPropertyName(); |
| 2242 value = BuildNamedLoad(object, name, pair); | 2235 value = BuildNamedLoad(object, name, pair); |
| 2243 states.AddToNode(value, expr->id(), ast_context()->GetStateCombine()); | 2236 states.AddToNode(value, expr->id(), ast_context()->GetStateCombine()); |
| 2244 } else { | 2237 } else { |
| (...skipping 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3797 // Phi does not exist yet, introduce one. | 3790 // Phi does not exist yet, introduce one. |
| 3798 value = NewPhi(inputs, value, control); | 3791 value = NewPhi(inputs, value, control); |
| 3799 value->ReplaceInput(inputs - 1, other); | 3792 value->ReplaceInput(inputs - 1, other); |
| 3800 } | 3793 } |
| 3801 return value; | 3794 return value; |
| 3802 } | 3795 } |
| 3803 | 3796 |
| 3804 } // namespace compiler | 3797 } // namespace compiler |
| 3805 } // namespace internal | 3798 } // namespace internal |
| 3806 } // namespace v8 | 3799 } // namespace v8 |
| OLD | NEW |