Changeset 48005 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Sep 3, 2009, 12:14:55 AM (16 years ago)
Author:
[email protected]
Message:

2009-09-03 Zoltan Horvath <[email protected]>

Reviewed by Darin Adler.

Allow custom memory allocation control for JavaScriptCore's HashEntry class
https://bugs.webkit.org/show_bug.cgi?id=27830

Inherits HashEntry class from FastAllocBase because it has been
instantiated by 'new' JavaScriptCore/runtime/Lookup.cpp:32.

  • runtime/Lookup.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r48000 r48005  
     12009-09-03  Zoltan Horvath  <[email protected]>
     2
     3        Reviewed by Darin Adler.
     4
     5        Allow custom memory allocation control for JavaScriptCore's HashEntry class
     6        https://bugs.webkit.org/show_bug.cgi?id=27830
     7
     8        Inherits HashEntry class from FastAllocBase because it has been
     9        instantiated by 'new' JavaScriptCore/runtime/Lookup.cpp:32.
     10
     11        * runtime/Lookup.h:
     12
    1132009-09-02  Gavin Barraclough  <[email protected]>
    214
  • trunk/JavaScriptCore/runtime/Lookup.h

    r47780 r48005  
    5252    typedef void (*PutFunction)(ExecState*, JSObject* baseObject, JSValue value);
    5353
    54     class HashEntry {
     54    class HashEntry : public FastAllocBase {
    5555    public:
    5656        void initialize(UString::Rep* key, unsigned char attributes, intptr_t v1, intptr_t v2)
Note: See TracChangeset for help on using the changeset viewer.