#alignment #aligned #align #alloc #allocator

yanked aligned_alloc

Provides cross-platform primitives for aligned memory allocation

Uses old Rust 2015

0.1.3 Jan 28, 2017
0.1.2 Jan 24, 2016
0.1.1 Oct 14, 2015
0.1.0 Oct 14, 2015

#20 in #aligned

Download history 67/week @ 2023-12-22 28/week @ 2023-12-29 84/week @ 2024-01-05 96/week @ 2024-01-12 92/week @ 2024-01-19 103/week @ 2024-01-26 44/week @ 2024-02-02 80/week @ 2024-02-09 92/week @ 2024-02-16 84/week @ 2024-02-23 93/week @ 2024-03-01 117/week @ 2024-03-08 95/week @ 2024-03-15 122/week @ 2024-03-22 136/week @ 2024-03-29 70/week @ 2024-04-05

440 downloads per month
Used in 8 crates (3 directly)

Apache-2.0/MIT

9KB
127 lines

Aligned Allocations for Rust

Linux / OS X Windows
Build Status Build status

This crate provides cross-platform primitives for requesting specifically aligned allocations. It is not meant to be used as a general allocator API like alloc::heap, but can be used for infrequent large allocations that have a specific alignment requirement.

For example, certain arena allocators can find the arena in which an object was allocated by masking the address bits if the arena is aligned to its size.

On Unix, this crate makes use of the posix_memalign function. On Windows, it's a little more complicated: We use VirtualAlloc to reserve a chunk of address space large enough for the allocation plus alignment (no memory is actually allocated), then calculate an aligned address inside this reserved space, undo the reservation with VirtualFree (the extra bit of reserved memory for the alignment won't get wasted), and VirtualAlloc again, this time passing the aligned pointer and actually allocating the memory instead of just reserving address space.

Usage

As usual, in your Cargo.toml:

[dependencies]
aligned_alloc = "0.1"

And in your lib.rs or bin.rs:

extern crate aligned_alloc;

API

The API is simple, there are just two methods:

fn aligned_alloc(size: usize, align: usize) -> *mut ()

Allocates size Bytes aligned to align Bytes. Returns a null pointer on allocation failure.

The returned pointer must be deallocated by using aligned_free.

Note: This function is meant to be used for infrequent large allocations (as malloc already guarantees suitable alignment for all native datatypes) and might be quite slow when used heavily.

Parameters
  • size: The size of the allocation in bytes.
  • align: The alignment of the allocation (at least the size of usize on the current platform). Must also be a power of two.

unsafe fn aligned_free(ptr: *mut ())

Deallocates aligned memory that was allocated with aligned_alloc. Unsafe because calling this with a pointer that was not allocated with aligned_alloc (or already released) causes undefined behavior.

Dependencies

~115KB