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/full-codegen/full-codegen.h" | 5 #include "src/full-codegen/full-codegen.h" |
6 | 6 |
7 #include "src/ast/ast-numbering.h" | 7 #include "src/ast/ast-numbering.h" |
8 #include "src/ast/ast.h" | 8 #include "src/ast/ast.h" |
9 #include "src/ast/prettyprinter.h" | 9 #include "src/ast/prettyprinter.h" |
10 #include "src/ast/scopes.h" | 10 #include "src/ast/scopes.h" |
(...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1221 } | 1221 } |
1222 | 1222 |
1223 | 1223 |
1224 void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) { | 1224 void FullCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) { |
1225 // Exception handling is not supported. | 1225 // Exception handling is not supported. |
1226 UNREACHABLE(); | 1226 UNREACHABLE(); |
1227 } | 1227 } |
1228 | 1228 |
1229 | 1229 |
1230 void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { | 1230 void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { |
1231 // Debugger statement is not supported. | 1231 Comment cmnt(masm_, "[ DebuggerStatement"); |
1232 UNREACHABLE(); | 1232 SetStatementPosition(stmt); |
| 1233 |
| 1234 __ DebugBreak(); |
| 1235 __ MaybeDropFrames(); |
| 1236 |
| 1237 PrepareForBailoutForId(stmt->DebugBreakId(), BailoutState::NO_REGISTERS); |
1233 } | 1238 } |
1234 | 1239 |
1235 | 1240 |
1236 void FullCodeGenerator::VisitCaseClause(CaseClause* clause) { | 1241 void FullCodeGenerator::VisitCaseClause(CaseClause* clause) { |
1237 UNREACHABLE(); | 1242 UNREACHABLE(); |
1238 } | 1243 } |
1239 | 1244 |
1240 | 1245 |
1241 void FullCodeGenerator::VisitConditional(Conditional* expr) { | 1246 void FullCodeGenerator::VisitConditional(Conditional* expr) { |
1242 Comment cmnt(masm_, "[ Conditional"); | 1247 Comment cmnt(masm_, "[ Conditional"); |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1598 return info_->has_simple_parameters(); | 1603 return info_->has_simple_parameters(); |
1599 } | 1604 } |
1600 | 1605 |
1601 FunctionLiteral* FullCodeGenerator::literal() const { return info_->literal(); } | 1606 FunctionLiteral* FullCodeGenerator::literal() const { return info_->literal(); } |
1602 | 1607 |
1603 #undef __ | 1608 #undef __ |
1604 | 1609 |
1605 | 1610 |
1606 } // namespace internal | 1611 } // namespace internal |
1607 } // namespace v8 | 1612 } // namespace v8 |
OLD | NEW |