Bug 26078 - Allow custom memory allocation control in JavaScriptCore's interpreter
Summary: Allow custom memory allocation control in JavaScriptCore's interpreter
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Linux
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-05-29 05:13 PDT by Zoltan Horvath
Modified: 2009-06-01 15:20 PDT (History)
0 users

See Also:


Attachments
proposed patch (1.09 KB, patch)
2009-05-29 05:14 PDT, Zoltan Horvath
darin: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
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.