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

Side by Side Diff: src/ia32/fast-codegen-ia32.cc

Issue 669240: - Remove function boilerplate objects and use SharedFunctionInfos in... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Committed Created 10 years, 9 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/ia32/codegen-ia32.cc ('k') | src/ia32/full-codegen-ia32.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 DebuggerStatement* stmt) { 188 DebuggerStatement* stmt) {
189 BAILOUT("DebuggerStatement"); 189 BAILOUT("DebuggerStatement");
190 } 190 }
191 191
192 192
193 void FastCodeGenSyntaxChecker::VisitFunctionLiteral(FunctionLiteral* expr) { 193 void FastCodeGenSyntaxChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
194 BAILOUT("FunctionLiteral"); 194 BAILOUT("FunctionLiteral");
195 } 195 }
196 196
197 197
198 void FastCodeGenSyntaxChecker::VisitFunctionBoilerplateLiteral( 198 void FastCodeGenSyntaxChecker::VisitSharedFunctionInfoLiteral(
199 FunctionBoilerplateLiteral* expr) { 199 SharedFunctionInfoLiteral* expr) {
200 BAILOUT("FunctionBoilerplateLiteral"); 200 BAILOUT("SharedFunctionInfoLiteral");
201 } 201 }
202 202
203 203
204 void FastCodeGenSyntaxChecker::VisitConditional(Conditional* expr) { 204 void FastCodeGenSyntaxChecker::VisitConditional(Conditional* expr) {
205 BAILOUT("Conditional"); 205 BAILOUT("Conditional");
206 } 206 }
207 207
208 208
209 void FastCodeGenSyntaxChecker::VisitSlot(Slot* expr) { 209 void FastCodeGenSyntaxChecker::VisitSlot(Slot* expr) {
210 UNREACHABLE(); 210 UNREACHABLE();
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 void FastCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) { 757 void FastCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) {
758 UNREACHABLE(); 758 UNREACHABLE();
759 } 759 }
760 760
761 761
762 void FastCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) { 762 void FastCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
763 UNREACHABLE(); 763 UNREACHABLE();
764 } 764 }
765 765
766 766
767 void FastCodeGenerator::VisitFunctionBoilerplateLiteral( 767 void FastCodeGenerator::VisitSharedFunctionInfoLiteral(
768 FunctionBoilerplateLiteral* expr) { 768 SharedFunctionInfoLiteral* expr) {
769 UNREACHABLE(); 769 UNREACHABLE();
770 } 770 }
771 771
772 772
773 void FastCodeGenerator::VisitConditional(Conditional* expr) { 773 void FastCodeGenerator::VisitConditional(Conditional* expr) {
774 UNREACHABLE(); 774 UNREACHABLE();
775 } 775 }
776 776
777 777
778 void FastCodeGenerator::VisitSlot(Slot* expr) { 778 void FastCodeGenerator::VisitSlot(Slot* expr) {
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
941 941
942 942
943 void FastCodeGenerator::VisitThisFunction(ThisFunction* expr) { 943 void FastCodeGenerator::VisitThisFunction(ThisFunction* expr) {
944 UNREACHABLE(); 944 UNREACHABLE();
945 } 945 }
946 946
947 #undef __ 947 #undef __
948 948
949 949
950 } } // namespace v8::internal 950 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698