All Projects → pavel-kirienko → o1heap

pavel-kirienko / o1heap

Licence: MIT License
Constant-complexity deterministic memory allocator (heap) for hard real-time high-integrity embedded systems

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to o1heap

MemoryAllocator.KanameShiki
Fast multi-threaded memory allocator
Stars: ✭ 73 (-38.66%)
Mutual labels:  allocator, memory-allocator, malloc, memory-management
kocherga
Robust platform-agnostic Cyphal/DroneCAN bootloader for deeply embedded systems
Stars: ✭ 21 (-82.35%)
Mutual labels:  embedded, embedded-systems, avionics, high-integrity
Embedded UKF Library
A compact Unscented Kalman Filter (UKF) library for Teensy4/Arduino system (or any real time embedded system in general)
Stars: ✭ 31 (-73.95%)
Mutual labels:  real-time, embedded, realtime, embedded-systems
buddy alloc
A single header buddy memory allocator for C
Stars: ✭ 46 (-61.34%)
Mutual labels:  allocator, memory-allocator, memory-management
pydevmem
Python interface to /dev/mem
Stars: ✭ 41 (-65.55%)
Mutual labels:  embedded, memory, embedded-systems
Fprime
F' - A flight software and embedded systems framework
Stars: ✭ 8,642 (+7162.18%)
Mutual labels:  real-time, embedded, embedded-systems
smalloc
SMalloc -- a *static* memory allocator.
Stars: ✭ 22 (-81.51%)
Mutual labels:  memory-allocator, malloc, memory-management
gctoolkit
Tool for parsing GC logs
Stars: ✭ 1,127 (+847.06%)
Mutual labels:  memory, heap, memory-management
MemoryPool
simple memory pool / thread safe / minimized context switching / Memory managed in 4 levels / Requirements(Windows xp~ / Visualstudio 2015)
Stars: ✭ 14 (-88.24%)
Mutual labels:  allocator, memory-allocator, memory-management
BIPES
BIPES: Block based Integrated Platform for Embedded Systems allows text and block based programming for several types of embedded systems and Internet of Things modules using MicroPython, CircuitPython, Python or Snek. You can connect, program, debug and monitor several types of boards using network, USB or Bluetooth. No software install needed!
Stars: ✭ 72 (-39.5%)
Mutual labels:  embedded, embedded-systems
transit
Massively real-time city transit streaming application
Stars: ✭ 20 (-83.19%)
Mutual labels:  real-time, realtime
signalo
A DSP toolbox with focus on embedded environments written in Rust.
Stars: ✭ 71 (-40.34%)
Mutual labels:  real-time, embedded
realtime-object-detection
Detects objects in images/streaming video
Stars: ✭ 16 (-86.55%)
Mutual labels:  real-time, realtime
accelerator-core-ios
Syntax sugar of OpenTok iOS SDK with Audio/Video communication including screen sharing
Stars: ✭ 30 (-74.79%)
Mutual labels:  real-time, realtime
traffic
Massively real-time traffic streaming application
Stars: ✭ 25 (-78.99%)
Mutual labels:  real-time, realtime
bigbug
Easy Microcontroller Debugging Tool
Stars: ✭ 37 (-68.91%)
Mutual labels:  real-time, embedded
lwprintf
Lightweight printf library optimized for embedded systems
Stars: ✭ 98 (-17.65%)
Mutual labels:  embedded, embedded-systems
FlipED
A LMS built specifically for Thailand's Education 4.0 system.
Stars: ✭ 24 (-79.83%)
Mutual labels:  real-time, realtime
nested
A memory efficient container for rust nested collections
Stars: ✭ 28 (-76.47%)
Mutual labels:  memory, heap
wymlp
tiny fast portable real-time deep neural network for regression and classification within 50 LOC.
Stars: ✭ 36 (-69.75%)
Mutual labels:  real-time, embedded

O(1) heap

Main Workflow Reliability Rating Coverage

O1heap is a highly deterministic constant-complexity memory allocator designed for hard real-time high-integrity embedded systems. The name stands for O(1) heap.

The allocator offers a constant worst-case execution time (WCET) and a well-characterized worst-case memory fragmentation (consumption) (WCMC). The allocator allows the designer to statically prove its temporal and spatial properties for a given application, which makes it suitable for use in high-integrity embedded systems.

The codebase is implemented in C99/C11 following MISRA C:2012, with several intended deviations which are unavoidable due to the fact that a memory allocator has to rely on inherently unsafe operations to fulfill its purpose. The codebase is extremely compact (<500 LoC) and is therefore trivial to validate.

The allocator is designed to be portable across all conventional architectures, from 8-bit to 64-bit systems.

Design

Objectives

The core objective of this library is to provide a dynamic memory allocator that meets the following requirements:

  • Memory allocation and deallocation routines are constant-time.

  • For a given peak memory requirement M, the worst-case memory consumption H is easily and robustly predictable (i.e., the worst-case heap fragmentation is well-characterized). The application designer shall be able to easily predict the amount of memory that needs to be provided to the memory allocator to ensure that out-of-memory (OOM) failures provably cannot occur at runtime under any circumstances.

  • The implementation shall be simple and conform to relevant high-integrity coding guidelines.

Theory

This implementation derives from or is based on the ideas presented in:

  • "Timing-Predictable Memory Allocation In Hard Real-Time Systems" -- J. Herter, 2014.
  • "An algorithm with constant execution time for dynamic storage allocation" -- T. Ogasawara, 1995.
  • "Worst case fragmentation of first fit and best fit storage allocation strategies" -- J. M. Robson, 1975.

This implementation does not make any non-trivial assumptions about the behavioral properties of the application. Per Herter [2014], it can be described as a predictably bad allocator:

An allocator that provably performs close to its worst-case memory behavior which, in turn, is better than the worst-case behavior of the allocators discussed [in Herter 2014], but much worse than the memory consumption of these for normal programs without (mostly theoretical) bad (de-)allocation sequences.

While it has been shown to be possible to construct a constant-complexity allocator which demonstrates better worst-case and average-case memory requirements by making assumptions about the memory (de-)allocation patterns and/or by relying on more sophisticated algorithms, this implementation chooses a conservative approach where no assumptions are made about the application and the codebase is kept simple to facilitate its integration into verified and validated high-integrity software.

The library implements a modified Half-Fit algorithm -- a constant-complexity strategy originally proposed by Ogasawara. In this implementation, memory is allocated in fragments whose size is rounded up to the next integer power of two. The worst-case memory consumption (WCMC) H of this allocation strategy has been shown to be:

H(M,n) = 2 M (1 + ⌈log2 n⌉)

Where M is the peak total memory requirement of the application (i.e., sum of sizes of all allocated fragments when the heap memory utilization is at its peak) and n is the maximum contiguous fragment that can be requested by the application.

Note that the provided equation is a generalized case that does not explicitly take into account a possible per-fragment metadata allocation overhead.

The state of catastrophic fragmentation is a state where the allocator is unable to serve a memory allocation request even if there is enough free memory due to its suboptimal arrangement. By definition, if the amount of memory available to the allocator is not less than H, then the state of catastrophic fragmentation cannot occur.

Memory allocators used in general-purpose (non-real-time) applications often leverage a different class of algorithms which may feature poorer worst-case performance metrics but perform (much) better on average. For a hard real-time system, the average case performance is generally less relevant, so it can be excluded from analysis.

The above-defined theoretical worst-case upper bound H may be prohibitively high for some memory-constrained applications. It has been shown [Robson 1975] that under a typical workload, for a sufficiently high amount of memory available to the allocator which is less than H, the probability of a (de-)allocation sequence that results in catastrophic fragmentation is low. When combined with an acceptable failure probability and a set of adequate assumptions about the behaviors of the application, this property may allow the designer to drastically reduce the amount of memory dedicated to the heap while ensuring a sufficient degree of predictability and reliability. The methods of such optimization are outside the scope of this document; interested readers are advised to consult with the referred publications.

Following some of the ideas expressed in the discussion about memory caching in real-time systems in [Herter 2014], this implementation takes caching-related issues into consideration. The Half-Fit algorithm itself is inherently optimized to minimize the number of random memory accesses. Furthermore, the allocation strategy favors most recently used memory fragments to minimize cache misses in the application.

Implementation

The implemented variant of Half-Fit allocates memory in fragments of size:

F(r) = 2⌈log2(r+a)⌉

Where r>0 is the requested allocation size and a is the fixed per-allocation metadata overhead implicitly introduced by the allocator for memory management needs. The size of the overhead a is represented in the codebase as O1HEAP_ALIGNMENT, because it also dictates the allocated memory pointer alignment. Due to the overhead, the maximum amount of memory available to the application per allocation is F'(r) = F(r) - a. The amount of the overhead per allocation and, therefore, pointer alignment is 4×(pointer width); e.g., for a 32-bit platform, the overhead/alignment is 16 bytes (128 bits).

From the above follows that F(r) ≥ 2 a. Remember that r>0 -- following the semantics of malloc(..), the allocator returns a null pointer if a zero-sized allocation is requested.

It has been mentioned that the abstract definition of H does not take into account the implementation-specific overheads. Said overheads should be considered when calculating the amount memory needed for a specific application. We define a refined worst-case memory consumption (WCMC) model below.

nf = ⌈n/l⌉

Mf = ⌈M/l⌉

k = Mf - nf + 1

Where l -- the smallest amount of memory that may be requested by the application; nf -- the size of the largest allocation expressed as the number of min-size fragments; Mf -- the total amount of heap space that may be requested by the application in min-size fragments; k -- the maximum number of fragments. The worst case number of min-size memory fragments required is Hf(Mf,nf) = H(Mf,nf). The total amount of space needed to accommodate the per-fragment overhead is (k×a). Then, the total WCMC, expressed in bytes, is:

Hb(M,n,l,a) = a k + (2 l n Mf (⌈log2nf⌉ + 1)) / (l+n)

The above equation should be used for sizing the heap space. Observe that the case where l=n degenerates into the standard fixed-size block allocator. Increase of l lowers the upper bound because larger fragments inherently reduce the fragmentation.

The following illustration shows the worst-case memory consumption (WCMC) for some common memory sizes; as explained above, l is chosen by the application designer freely, and a is the value of O1HEAP_ALIGNMENT which is platform-dependent:

WCMC

Usage

Integration

Copy the files o1heap.c and o1heap.h (find them under o1heap/) into your project tree. Either keep them in the same directory, or make sure that the directory that contains the header is added to the set of include look-up paths. No special compiler options are needed to compile the source file (if you find this to be untrue, please open a ticket).

Dedicate a memory arena for the heap, and pass a pointer to it along with its size to the initialization function o1heapInit(..).

Allocate and deallocate memory using o1heapAllocate(..) and o1heapFree(..). Their semantics are compatible with malloc(..) and free(..) plus additional behavioral guarantees (constant timing, bounded fragmentation).

If necessary, periodically invoke o1heapDoInvariantsHold(..) to ensure that the heap is functioning correctly and its internal data structures are not damaged.

Avoid concurrent access to the heap. Use locking if necessary.

Build configuration options

The preprocessor options given below can be overridden to fine-tune the implementation. None of them are mandatory to use.

O1HEAP_CONFIG_HEADER

Define this optional macro like O1HEAP_CONFIG_HEADER="path/to/my_o1heap_config.h" to pass build configuration macros. This is useful because some build systems do not allow passing function-like macros via command line flags.

O1HEAP_ASSERT(x)

The macro O1HEAP_ASSERT(x) can be defined to customize the assertion handling or to disable it. To disable assertion checks, the macro should expand into (void)(x). If not specified, the macro expands into the standard assertion check macro assert(x) as defined in <assert.h>.

O1HEAP_LIKELY(x)

Some of the conditional branching statements are equipped with this annotation to hint the compiler that the generated code should be optimized for the case where the corresponding branch is taken. This is done to reduce the worst-case execution time.

The macro should expand into a compiler-specific branch weighting intrinsic, or into the original expression (x) if no such hinting is desired. If not specified, the macro expands as follows:

  • For some well-known compilers the macro automatically expands into appropriate branch weighting intrinsics. For example, for GCC, Clang, and ARM Compiler, it expands into __builtin_expect((x), 1).
  • For other (unknown) compilers it expands into the original expression with no modifications: (x).

O1HEAP_CLZ(x)

The count leading zeros (CLZ) function is used for fast binary logarithm computation (which has to be done multiple times per allocation, so its performance is critical). Most of the modern processors implement dedicated hardware support for fast CLZ computation, which is available via compiler intrinsics.

If not overridden by the user, for some compilers O1HEAP_CLZ(x) will expand to the appropriate intrinsic (e.g., __builtin_clzl(x) for GCC/Clang). For other compilers it will default to a slow software implementation, which is likely to significantly degrade the performance of the library.

Development

Dependencies

The following tools should be available locally to conduct library development:

  • Modern versions of CMake, GCC, Clang, and Clang-Tools.
  • An AMD64 machine.
  • (optional) Valgrind.

Conventions

The codebase shall follow the Zubax C/C++ Coding Conventions. Compliance is enforced through the following means:

  • Clang-Tidy -- invoked automatically while building the test suite.
  • Clang-Format -- invoked manually as make format; enforced in CI/CD automatically.
  • SonarCloud -- invoked by CI/CD automatically.

Testing

Please refer to the continuous integration configuration to see how to invoke the tests.

Releasing

Update the version number macro in the header file and create a new git tag like 1.0.

MISRA compliance

MISRA compliance is enforced with the help of the following tools:

  • Clang-Tidy -- invoked automatically during the normal build process.
  • SonarCloud -- invoked as part of the continuous integration build.

Every intentional deviation shall be documented and justified in-place using the following notation, followed by the appropriate static analyser warning suppression statement:

// Intentional violation of MISRA: <valid reason here>
// NOSONAR
// NOLINT

The list of intentional deviations can be obtained by simply searching the codebase for the above comments.

Do not suppress compliance warnings using the means provided by static analysis tools because such deviations are impossible to track at the source code level. An exception applies for the case of false-positive (invalid) warnings -- those should not be mentioned in the codebase.

Further reading

Changelog

v2.1

  • Significantly accelerate (de-)allocation by replacing the naïve log2 implementation with fast CLZ intrinsics; see O1HEAP_CLZ(x).
  • Do not require char to be 8-bit wide: replace uint8_t with uint_fast8_t. This is to enhance compatibility with odd embedded platforms where CHAR_BIT!=8 (e.g., ADSP TS-201, TMS320C2804).

v2.0

  • Remove critical section hooks to enhance MISRA conformance #4
  • Add support for config header via O1HEAP_CONFIG_HEADER #5

v1.0

The first release.

License

The library is available under the terms of the MIT License. Please find it in the file LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].