show/hide this revision's text 4 added 144 characters in body

To expand on what Greg Hewgill says, one way to do an ultra-efficient fixed-size heap is:

  1. Split a big buffer into chunksnodes. Chunk Node size must be at least sizeof(void*).
  2. String them together into a singly-linked list (the "free list"), using the first sizeof(void*) bytes of each free node as a link pointer. Allocated nodes will not need a link pointer, so per-node overhead is 0.
  3. Allocate by removing the head of the list and returning it (2 loads, 1 store).
  4. Free by inserting at the head of the list (1 load, 2 stores).

Obviously step 3 also has to check if the list's empty, and if so do a bunch of work getting a new big buffer (or fail).

Even more efficient, as Greg D and hazzen say, is to allocate by incrementing or decrementing a pointer (1 load, 1 store), and not offer a way to free a single node at all.

Edit: In both cases, free can deal with the complication "anything bigger I pass on the regular heap-manager" by the helpful fact that you get the size back in the call to free. Otherwise you'd be looking at either a flag (overhead probably 4 bytes per node) or else a lookup in some kind of record of the buffer(s) you've used.

show/hide this revision's text 3 deleted 345 characters in body

To expand on what Greg Hewgill says, one way to do an ultra-efficient fixed-size heap is:

  1. Split a big buffer into chunks. Chunk size must be at least sizeof(void*).
  2. String them together into a singly-linked list (the "free list").
  3. Allocate by removing the head of the list and returning it (2 loads, 1 store).
  4. Free by inserting at the head of the list (1 load, 2 stores).

Obviously step 3 also has to check if the list's empty, and if so do a bunch of work getting a new big buffer (or fail).

Even more efficient, as Greg D and hazzen say, is to allocate by incrementing or decrementing a pointer (1 load, 1 store), and not offer a way to free a single node at all.

Edit: In both cases, you free can deal with the complication "anything bigger I pass on the regular heap-manager" by keeping a record in your allocator of all your big buffers (perhaps only one, perhaps a sorted array or tree for fast searching). When the helpful fact that you come to free a pointer, look up its address in get the record. If it's in bounds free as size back in (4). If not, pass it on to the regular heap-manager. This does make call to freeslower than alloc (even in in the case of a single buffer, it's 1 load at the very least, and it could . Otherwise you'd be considerably slower), but the alternative is a per-node overhead to store looking at either a flag . Given the node sizes you've outlined, that will (overhead probably cost 4 bytes per node) or else a lookup in some kind of record of the buffer(s) you've used.

show/hide this revision's text 2 added 596 characters in body

To expand on what Greg Hewgill says, one way to do an ultra-efficient fixed-size heap is:

  1. Split a big buffer into chunks. Chunk size must be at least sizeof(void*).
  2. String them together into a singly-linked list (the "free list").
  3. Allocate by removing the head of the list and returning it (2 loads, 1 store).
  4. Free by inserting at the head of the list (1 load, 2 stores).

Obviously step 3 also has to check if the list's empty, and if so do a bunch of work getting a new big buffer (or fail).

Even more efficient, as Greg D and hazzen say, is to allocate by incrementing or decrementing a pointer (1 load, 1 store), and not offer a way to free a single node at all.

In both cases, you can deal with the complication "anything bigger I pass on the regular heap-manager" by keeping a record in your allocator of all your big buffers (perhaps only one, perhaps a sorted array or tree for fast searching). When you come to free a pointer, look up its address in the record. If it's in bounds free as in (4). If not, pass it on to the regular heap-manager. This does make free slower than alloc (even in in the case of a single buffer, it's 1 load at the very least, and it could be considerably slower), but the alternative is a per-node overhead to store a flag. Given the node sizes you've outlined, that will probably cost 4 bytes per node.

show/hide this revision's text 1