Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: src/full-codegen.cc

Issue 570001: Fix build error on Win32, fix spelling of DebugerStatementStub. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/codegen.cc ('k') | src/heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/codegen.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698