Bug 22897

Summary: Clear bytecode vector after JITing
Product: WebKit Reporter: Sam Weinig <sam>
Component: JavaScriptCoreAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Mac   
OS: OS X 10.5   
Attachments:
Description Flags
patch darin: review+

Sam Weinig
Reported 2008-12-16 23:09:05 PST
Clearing the bytecode vector after JITing will save about 4.8MB on Membuster head.
Attachments
patch (3.95 KB, patch)
2008-12-16 23:10 PST, Sam Weinig
darin: review+
Sam Weinig
Comment 1 2008-12-16 23:10:02 PST
Darin Adler
Comment 2 2008-12-17 10:00:21 PST
Comment on attachment 26087 [details] patch > + (JSC::CodeBlock::handlerForBytecodeOffset): Don't assert that the offset > + is less than the size of the bytecode vector since it may have been cleared > + and therefore 0. I think it would be better to keep around the size of the bytecode vector in a separate variable in debug versions so we could keep these assertions. r=me
Geoffrey Garen
Comment 3 2008-12-17 11:41:20 PST
Comment on attachment 26087 [details] patch > m_codeBlock->setJITCode(codeRef); > +#if !ENABLE(OPCODE_SAMPLING) > + m_codeBlock->instructions().clear(); > +#endif I think it would be better to do this: #if ENABLE(OPCODE_SAMPLING) // Don't clear instructions -- we need them for sampling. #elsif !defined(NDEBUG) if (!s_dumpsGeneratedCode) m_codeBlock->instructions().clear(); #else m_codeBlock->instructions().clear(); #endif
Geoffrey Garen
Comment 4 2008-12-17 11:41:56 PST
> I think it would be better to do this: That way, you can still dump code in debug builds.
Sam Weinig
Comment 5 2008-12-17 13:31:45 PST
Fixed in r39366.
Note You need to log in before you can comment on or make changes to this bug.