From 6959a1d6d16164f40bbeb5f65faaf17028932054 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 29 Oct 2009 16:11:05 +0100 Subject: Upgrade v8 to 1.3.18 --- deps/v8/src/codegen.h | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) (limited to 'deps/v8/src/codegen.h') diff --git a/deps/v8/src/codegen.h b/deps/v8/src/codegen.h index fc4a53b2e..8c1b73367 100644 --- a/deps/v8/src/codegen.h +++ b/deps/v8/src/codegen.h @@ -301,7 +301,7 @@ class CEntryStub : public CodeStub { Label* throw_normal_exception, Label* throw_termination_exception, Label* throw_out_of_memory_exception, - ExitFrame::Mode mode, + StackFrame::Type frame_type, bool do_gc, bool always_allocate_scope); void GenerateThrowTOS(MacroAssembler* masm); @@ -320,32 +320,6 @@ class CEntryStub : public CodeStub { }; -class ApiGetterEntryStub : public CodeStub { - public: - ApiGetterEntryStub(Handle info, - ApiFunction* fun) - : info_(info), - fun_(fun) { } - void Generate(MacroAssembler* masm); - virtual bool has_custom_cache() { return true; } - virtual bool GetCustomCache(Code** code_out); - virtual void SetCustomCache(Code* value); - - static const int kStackSpace = 6; - static const int kArgc = 4; - private: - Handle info() { return info_; } - ApiFunction* fun() { return fun_; } - Major MajorKey() { return NoCache; } - int MinorKey() { return 0; } - const char* GetName() { return "ApiEntryStub"; } - // The accessor info associated with the function. - Handle info_; - // The function to be called. - ApiFunction* fun_; -}; - - class CEntryDebugBreakStub : public CEntryStub { public: CEntryDebugBreakStub() : CEntryStub(1) { } -- cgit v1.2.1