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

Side by Side Diff: src/code-stubs.cc

Issue 268016: Get rid of JSExitStub which is no longer used anywhere. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 2 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/code-stubs.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 case CEntry: 125 case CEntry:
126 return "CEntry"; 126 return "CEntry";
127 case JSEntry: 127 case JSEntry:
128 return "JSEntry"; 128 return "JSEntry";
129 case GetProperty: 129 case GetProperty:
130 return "GetProperty"; 130 return "GetProperty";
131 case SetProperty: 131 case SetProperty:
132 return "SetProperty"; 132 return "SetProperty";
133 case InvokeBuiltin: 133 case InvokeBuiltin:
134 return "InvokeBuiltin"; 134 return "InvokeBuiltin";
135 case JSExit:
136 return "JSExit";
137 case ConvertToDouble: 135 case ConvertToDouble:
138 return "ConvertToDouble"; 136 return "ConvertToDouble";
139 case WriteInt32ToHeapNumber: 137 case WriteInt32ToHeapNumber:
140 return "WriteInt32ToHeapNumber"; 138 return "WriteInt32ToHeapNumber";
141 default: 139 default:
142 UNREACHABLE(); 140 UNREACHABLE();
143 return NULL; 141 return NULL;
144 } 142 }
145 } 143 }
146 144
147 145
148 } } // namespace v8::internal 146 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698