Changeset 225652 in webkit


Ignore:
Timestamp:
Dec 7, 2017 4:18:00 PM (6 years ago)
Author:
pvollan@apple.com
Message:

Use fastAlignedFree to free aligned memory.
https://bugs.webkit.org/show_bug.cgi?id=180540

Reviewed by Saam Barati.

  • heap/IsoAlignedMemoryAllocator.cpp:

(JSC::IsoAlignedMemoryAllocator::~IsoAlignedMemoryAllocator):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r225643 r225652  
     12017-12-07  Per Arne Vollan  <pvollan@apple.com>
     2
     3        Use fastAlignedFree to free aligned memory.
     4        https://bugs.webkit.org/show_bug.cgi?id=180540
     5
     6        Reviewed by Saam Barati.
     7
     8        * heap/IsoAlignedMemoryAllocator.cpp:
     9        (JSC::IsoAlignedMemoryAllocator::~IsoAlignedMemoryAllocator):
     10
    1112017-12-07  Matt Lewis  <jlewis3@apple.com>
    212
  • trunk/Source/JavaScriptCore/heap/IsoAlignedMemoryAllocator.cpp

    r225540 r225652  
    3939        if (!m_committed[i])
    4040            OSAllocator::commit(block, MarkedBlock::blockSize, true, false);
    41         fastFree(block);
     41        fastAlignedFree(block);
    4242    }
    4343}
Note: See TracChangeset for help on using the changeset viewer.