Bug 26078

Summary: Allow custom memory allocation control in JavaScriptCore's interpreter
Product: WebKit Reporter: Zoltan Horvath <zoltan>
Component: JavaScriptCoreAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: PC   
OS: Linux   
Attachments:
Description Flags
proposed patch darin: review+

Description Zoltan Horvath 2009-05-29 05:13:46 PDT
Inherits Interpreter class from FastAllocBase because it has been instantiated by 'new' in JavaScriptCore/runtime/JSGlobalData.cpp:131.
Comment 1 Zoltan Horvath 2009-05-29 05:14:28 PDT
Created attachment 30775 [details]
proposed patch
Comment 2 Darin Adler 2009-05-31 23:22:31 PDT
Comment on attachment 30775 [details]
proposed patch

> -    class Interpreter {
> +    class Interpreter : public WTF::FastAllocBase {

Don't need the namespace prefix.

r=me
Comment 3 Brent Fulgham 2009-06-01 14:32:16 PDT
Assign for landing.
Comment 4 Brent Fulgham 2009-06-01 15:20:19 PDT
Landed in @r44336.