[Webkit-unassigned] [Bug 30154] Allow custom memory allocation control for JavaScriptCore's SharedSymbolTable

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Oct 7 09:55:11 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=30154


Zoltan Horvath <zoltan at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #40767|review+                     |review-
               Flag|                            |




--- Comment #3 from Zoltan Horvath <zoltan at webkit.org>  2009-10-07 09:55:12 PDT ---
(From update of attachment 40767)
> Index: JavaScriptCore/ChangeLog
> ===================================================================
> --- JavaScriptCore/ChangeLog	(revision 49225)
> +++ JavaScriptCore/ChangeLog	(working copy)
> @@ -1,3 +1,15 @@
> +2009-10-07  Zoltan Horvath  <zoltan at webkit.org>
> +
> +        Reviewed by NOBODY (OOPS!).
> +
> +        Allow custom memory allocation control for JavaScriptCore's SharedSymbolTable
> +        https://bugs.webkit.org/show_bug.cgi?id=30154
> +
> +        Inherits SharedSymbolTable struct from FastAllocBase because it
> +        has been instantiated by 'new' in JavaScriptCore/bytecode/CodeBlock.h:621.
> +
> +        * runtime/SymbolTable.h:
> +
>  2009-10-06  Priit Laes  <plaes at plaes.org>
>  
>          Reviewed by Gavin Barraclough.
> Index: JavaScriptCore/runtime/SymbolTable.h
> ===================================================================
> --- JavaScriptCore/runtime/SymbolTable.h	(revision 49225)
> +++ JavaScriptCore/runtime/SymbolTable.h	(working copy)
> @@ -41,7 +41,7 @@ namespace JSC {
>      // reasonably small positive or negative number, and therefore has its high
>      // four bits all set or all unset.
>  
> -    struct SymbolTableEntry {
> +    struct SymbolTableEntry : FastAllocBase {
>          SymbolTableEntry()
>              : m_bits(0)
>          {

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list