Get rid of JSExitStub which is no longer used anywhere.

Review URL: http://codereview.chromium.org/268016

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3042 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
sgjesse@chromium.org 2009-10-08 15:10:14 +00:00
parent 8105ae3106
commit 8222bf3ba7
3 changed files with 0 additions and 4 deletions

View File

@ -246,7 +246,6 @@ class MacroAssembler: public Assembler {
// Call a code stub. // Call a code stub.
void CallStub(CodeStub* stub, Condition cond = al); void CallStub(CodeStub* stub, Condition cond = al);
void CallJSExitStub(CodeStub* stub);
// Return from a code stub after popping its arguments. // Return from a code stub after popping its arguments.
void StubReturn(int argc); void StubReturn(int argc);

View File

@ -132,8 +132,6 @@ const char* CodeStub::MajorName(CodeStub::Major major_key) {
return "SetProperty"; return "SetProperty";
case InvokeBuiltin: case InvokeBuiltin:
return "InvokeBuiltin"; return "InvokeBuiltin";
case JSExit:
return "JSExit";
case ConvertToDouble: case ConvertToDouble:
return "ConvertToDouble"; return "ConvertToDouble";
case WriteInt32ToHeapNumber: case WriteInt32ToHeapNumber:

View File

@ -56,7 +56,6 @@ class CodeStub BASE_EMBEDDED {
GetProperty, // ARM only GetProperty, // ARM only
SetProperty, // ARM only SetProperty, // ARM only
InvokeBuiltin, // ARM only InvokeBuiltin, // ARM only
JSExit, // ARM only
RegExpCEntry, // ARM only RegExpCEntry, // ARM only
NUMBER_OF_IDS NUMBER_OF_IDS
}; };