From f4fbda7dc66604c89b836d9da1652006b238e533 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Mon, 20 Jun 2011 08:45:32 +0000 Subject: * utils/storage.H (Memory::Storage::acquire): Remove. (Memory::SinglyLinkedStorage::acquire): Likewise. (Memory::DoublyLinkedStorage): New. * utils/storage.cc (acquire_storage_with_header): Rename from Storage::acquire. Make template. (OneWayLinkHeader): Rename from SingleLinkHeader. (TwoWayLinkHeader): New. --- src/utils/storage.H | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) (limited to 'src/utils/storage.H') diff --git a/src/utils/storage.H b/src/utils/storage.H index ab334abb..72b9eb1e 100644 --- a/src/utils/storage.H +++ b/src/utils/storage.H @@ -77,7 +77,7 @@ namespace OpenAxiom { Pointer os_acquire_raw_memory(size_t); // Release raw storage to the hosting OS. The first operand must - // be a pointer value previous returned by `os_acquire_raw_memory'. + // be a pointer value previously returned by `os_acquire_raw_memory'. // Otherwise, the result is undefined. void os_release_raw_memory(Pointer, size_t); @@ -96,24 +96,20 @@ namespace OpenAxiom { // ------------- // -- Storage -- // ------------- - // This class is a low-level abstraction intented for use - // to implement higher level storage abstraction. + // This class provides low-level abstractions intented for use + // to implement higher level storage abstractions. struct Storage { - // Objects of this sbstract datatype holds storage objects. + // Objects of this abstract datatype hold storage objects. struct Handle; - // Acquire storage chunk of at least `n' bytes. - // The result is a pointer to a storage object. That object - // `result' is constructed such that `begin(result)' points - // to the next allocatable address. - static Handle* acquire(size_t n); - // Return the storage pointed to by the operand. It // must be a pointer value previously returned by `acquire'. // Otherwise, the result is undefined. static void release(Handle*); - // Return the start address of storage area. + // Return the start address of storage area. Clients would + // want to add padding bytes necessary to accomodate alignment + // requirements. // Note: this should not be confused with the address of // the handle object. static Pointer begin(Handle*); @@ -134,14 +130,28 @@ namespace OpenAxiom { // -- SinglyLinkedStorage -- // ------------------------- // This class implements a simple single-linked list of storage - // objects. + // objects. Each storage object in the link is created with + // a specific starting alignment requirements. struct SinglyLinkedStorage : Storage { - // Same as Storage::acquire, except begin(h) returns an address - // that satisfies the alignment requirement `a'. + // Return the previous handle in the link chain. + static Handle*& previous(Handle*); + }; + + // ------------------------- + // -- DoublyLinkedStorage -- + // ------------------------- + // Like SinglyLinkedStorage, except that the chain of storage + // object supports bidirectional travervsal. + struct DoublyLinkedStorage : Storage { + // Same as Storage::acquire, except that begin(h) returns an + // address that satisfies the alignment requirement `a'. static Handle* acquire(size_t n, size_t a); // Return the previous handle in the link chain. static Handle*& previous(Handle*); + + // Return the next handle in the link chain. + static Handle*& next(Handle*); }; // ------------------ -- cgit v1.2.3