Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactoring: Memory management #4311

Closed
wants to merge 10 commits into from
Closed

Refactoring: Memory management #4311

wants to merge 10 commits into from

Commits on Apr 11, 2018

  1. Configuration menu
    Copy the full SHA
    15d3436 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    afc4afc View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2018

  1. Memory.h fixes

    * Use a Nifty Counter for rpmalloc initialization. This fixes init order
      with other static objects using MmAllocator or MemoryManagger
    * Fix exception throwing in AlignedAllocator
    * Add missing constructor to MmAllocator for compatibility with std
      containers
    lukas-w committed Apr 15, 2018
    Configuration menu
    Copy the full SHA
    a072e87 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2018

  1. Configuration menu
    Copy the full SHA
    f456129 View commit details
    Browse the repository at this point in the history
  2. Replace LocklessAllocator with new MemoryPool class

    MemoryPool maintains a free list of pre-allocated entries stored in a
    libcds MPMC Queue. In contrast to LocklessAllocator, it's a lot faster,
    less (and less complex) code to maintain for us and it doesn't fail when
    it's full.
    lukas-w committed Apr 17, 2018
    Configuration menu
    Copy the full SHA
    b5f3430 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d9ad3eb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d68f100 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2018

  1. Configuration menu
    Copy the full SHA
    af77a88 View commit details
    Browse the repository at this point in the history
  2. Add naive benchmarks

    lukas-w committed Apr 18, 2018
    Configuration menu
    Copy the full SHA
    57a471f View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2018

  1. Fix libcds submodule url

    lukas-w committed Apr 22, 2018
    Configuration menu
    Copy the full SHA
    5d709f6 View commit details
    Browse the repository at this point in the history