|
Embedded Artistry libmemory
Memory library for embedded systems (malloc and friends)
|
Embedded Artistry's libmemory is a memory management library for embedded systems. If you have a bare metal system and want to use malloc(), this library is for you!
libmemory provides various implementations of the malloc() and free() functions. The primary malloc implementation is a free-list allocator which can be used on a bare-metal system. Wrappers for some RTOSes are also provided (and can be added if not already). You will also find other useful memory functions, such as aligned_malloc().
This library is meant to be coupled with a libc implementation (such as the Embedded Artistry libc). malloc() and free() are not redefined in these headers, so you can safely use this library with your platform's existing libc.
This library is meant to allow developers of embedded systems to utilize the malloc() and free() functions if their platform does not currently support it. The baseline malloc() implementation can be used without an RTOS or any other supporting software. Only a block of memory needs to be assigned.
Many RTOSes provide dynamic memory allocation functionality, but these functions are not typically called malloc() and free(). Wrappers can be provided for these RTOSes to improve code portability.
A block of memory needs to be initially assigned using the malloc_addblock() function. This tells the malloc implementation what memory address and size to use for the heap.
One memory has been allocated to the heap, you can use malloc() and free() as expected.
malloc(), free(), aligned_malloc(), and aligned_free()git-lfs is used to store binary files in this repositorymake is needed if you want to use the Makefile shimsContributors will also need:
adr-tools for documenting major project decisionsclang-format for code formattingThis project stores some files using git-lfs.
To install git-lfs on Linux:
To install git-lfs on OS X:
Additional installation instructions can be found on the git-lfs website.
The [Meson][meson] build system depends on python3 and ninja-build.
To install on Linux:
To install on OSX:
Meson can be installed through pip3:
If you want to install Meson globally on Linux, use:
adr-toolsThis repository uses Architecture Decision Records. Please install adr-tools to contribute to architecture decisions.
If you are using OSX, you can install adr-tools through Homebrew:
If you are using Windows or Linux, please install adr-tools via GitHub.
This project uses git-lfs, so please install it before cloning. If you cloned prior to installing git-lfs, simply run git lfs pull after installation.
This project is hosted on GitHub. You can clone the project directly using this command:
If you don't clone recursively, be sure to run the following command in the repository or your build will fail:
The library can be built by issuing the following command:
This will build all targets for your current architecture.
You can clean builds using:
You can eliminate the generated buildresults folder using:
You can also use the meson method for compiling.
Create a build output folder:
Then change into that folder and build targets by running:
At this point, make would still work.
Cross-compilation is handled using meson cross files. Example files are included in the build/cross folder. You can write your own cross files for your specific platform (or open an issue and we can help you).
Cross-compilation must be configured using the meson command when creating the build output folder. For example:
Following that, you can run make (at the project root) or ninja (within the build output directory) to build the project.
Tests will not be cross-compiled. They will be built for the native platform.
If you don't use meson for your project, the best method to use this project is to build it separately and copy the headers and library contents into your source tree.
include/ directory contents into your source tree.buildresults/src folderExample linker flags:
If you're using meson, you can use libmemory as a subproject. Place it into your subproject directory of choice and add a subproject statement:
You will need to promote the subproject dependencies to your project:
You can use the dependency for your target library configuration in your executable declarations(s) or other dependencies. For example:
The tests for this library are written with CMocka. You can run the tests by issuing the following command:
By default, test results are generated for use by the CI server and are formatted in JUnit XML. The test results XML files can be found in buildresults/test/.
The following meson project options can be set for this library when creating the build results directory with meson, or by using meson configure:
enable-werror: Cause the build to fail if warnings are presentenable-pedantic-error: Turn on pedantic warnings and errorsuse-ea-libc: If true, the build will set flags to prevent usage of the compiler libc so the Embedded Artistry libc can supply the headersea-libc-path: The relative path to the root directory of the Embedded Artistry libc source treeOptions can be specified using -D and the option name:
The same style works with meson configure:
A block of memory needs to be initially assigned using the malloc_addblock() function:
This tells the malloc implementation what memory address and size to use for the heap.
malloc() and free() will fail (return NULL) if no memory has been allocated. Once memory has been allocated to the heap, you can use malloc() and free() as expected.
Multiple blocks of memory can be added using malloc_addblock(). The memory blocks do not have to be contiguous.
You can allocate aligned memory using aligned_malloc():
Alignment must be a power of two!
Aligned memory can only be free'd using aligned_free():
For more information, see aligned_memory.hand the documentation.
This repository enforces formatting using clang-format.
You can auto-format your code to match the style guidelines by issuing the following command:
Formatting is enforced by the Jenkins build server which runs continuous integration for this project. Your pull request will not be accepted if the formatting check fails.
Documentation for the latest release can always be found here.
Documentation can be built locally by running the following command:
Documentation can be found in buildresults/doc, and the root page is index.html.
If you need further assistance or have any questions, please file a GitHub Issue or send us an email using the Embedded Artistry Contact Form.
You can also reach out on Twitter: @mbeddedartistry.
If you are interested in contributing to this project, please read our contributing guidelines.
Copyright (c) 2017 Embedded Artistry LLC
This project is licensed under the MIT License - see [LICENSE](LICENSE) file for details.