OLD | NEW |
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 #include "src/ast-numbering.h" | 5 #include "src/ast-numbering.h" |
6 | 6 |
7 #include "src/ast.h" | 7 #include "src/ast.h" |
8 #include "src/scopes.h" | 8 #include "src/scopes.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 | 129 |
130 | 130 |
131 void AstNumberingVisitor::VisitNativeFunctionLiteral( | 131 void AstNumberingVisitor::VisitNativeFunctionLiteral( |
132 NativeFunctionLiteral* node) { | 132 NativeFunctionLiteral* node) { |
133 IncrementNodeCount(); | 133 IncrementNodeCount(); |
134 DisableOptimization(kNativeFunctionLiteral); | 134 DisableOptimization(kNativeFunctionLiteral); |
135 node->set_base_id(ReserveIdRange(NativeFunctionLiteral::num_ids())); | 135 node->set_base_id(ReserveIdRange(NativeFunctionLiteral::num_ids())); |
136 } | 136 } |
137 | 137 |
138 | 138 |
| 139 void AstNumberingVisitor::VisitDoExpression(DoExpression* node) { |
| 140 IncrementNodeCount(); |
| 141 DisableCrankshaft(kDoExpression); |
| 142 node->set_base_id(ReserveIdRange(DoExpression::num_ids())); |
| 143 Visit(node->block()); |
| 144 Visit(node->result()); |
| 145 } |
| 146 |
| 147 |
139 void AstNumberingVisitor::VisitLiteral(Literal* node) { | 148 void AstNumberingVisitor::VisitLiteral(Literal* node) { |
140 IncrementNodeCount(); | 149 IncrementNodeCount(); |
141 node->set_base_id(ReserveIdRange(Literal::num_ids())); | 150 node->set_base_id(ReserveIdRange(Literal::num_ids())); |
142 } | 151 } |
143 | 152 |
144 | 153 |
145 void AstNumberingVisitor::VisitRegExpLiteral(RegExpLiteral* node) { | 154 void AstNumberingVisitor::VisitRegExpLiteral(RegExpLiteral* node) { |
146 IncrementNodeCount(); | 155 IncrementNodeCount(); |
147 node->set_base_id(ReserveIdRange(RegExpLiteral::num_ids())); | 156 node->set_base_id(ReserveIdRange(RegExpLiteral::num_ids())); |
148 } | 157 } |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
574 } | 583 } |
575 | 584 |
576 | 585 |
577 bool AstNumbering::Renumber(Isolate* isolate, Zone* zone, | 586 bool AstNumbering::Renumber(Isolate* isolate, Zone* zone, |
578 FunctionLiteral* function) { | 587 FunctionLiteral* function) { |
579 AstNumberingVisitor visitor(isolate, zone); | 588 AstNumberingVisitor visitor(isolate, zone); |
580 return visitor.Renumber(function); | 589 return visitor.Renumber(function); |
581 } | 590 } |
582 } // namespace internal | 591 } // namespace internal |
583 } // namespace v8 | 592 } // namespace v8 |
OLD | NEW |