| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 980 // Execute the finally block on the way out. | 980 // Execute the finally block on the way out. |
| 981 __ Call(&finally_entry); | 981 __ Call(&finally_entry); |
| 982 } | 982 } |
| 983 | 983 |
| 984 | 984 |
| 985 void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { | 985 void FullCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { |
| 986 #ifdef ENABLE_DEBUGGER_SUPPORT | 986 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 987 Comment cmnt(masm_, "[ DebuggerStatement"); | 987 Comment cmnt(masm_, "[ DebuggerStatement"); |
| 988 SetStatementPosition(stmt); | 988 SetStatementPosition(stmt); |
| 989 | 989 |
| 990 DebugerStatementStub ces; | 990 DebuggerStatementStub ces; |
| 991 __ CallStub(&ces); | 991 __ CallStub(&ces); |
| 992 // Ignore the return value. | 992 // Ignore the return value. |
| 993 #endif | 993 #endif |
| 994 } | 994 } |
| 995 | 995 |
| 996 | 996 |
| 997 void FullCodeGenerator::VisitFunctionBoilerplateLiteral( | 997 void FullCodeGenerator::VisitFunctionBoilerplateLiteral( |
| 998 FunctionBoilerplateLiteral* expr) { | 998 FunctionBoilerplateLiteral* expr) { |
| 999 UNREACHABLE(); | 999 UNREACHABLE(); |
| 1000 } | 1000 } |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 // The macros used here must preserve the result register. | 1146 // The macros used here must preserve the result register. |
| 1147 __ Drop(stack_depth); | 1147 __ Drop(stack_depth); |
| 1148 __ PopTryHandler(); | 1148 __ PopTryHandler(); |
| 1149 return 0; | 1149 return 0; |
| 1150 } | 1150 } |
| 1151 | 1151 |
| 1152 #undef __ | 1152 #undef __ |
| 1153 | 1153 |
| 1154 | 1154 |
| 1155 } } // namespace v8::internal | 1155 } } // namespace v8::internal |
| OLD | NEW |