mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
bd9b921713
heap: ported tlsf allocator into multi heap heap_host_tests: added tlsf allocator into host test heap_host_test: update freebytes after using free heap_tests: tlsf now passing on host tests without poisoning multi_heap: added support for memalign using tlsf implementation heap_caps: removed heap_caps_aligned_free heap/test: fixed broken aligned alloc test build heap: added poisoning pattern when blocks are being merged heap/tests: added timing tests for memory allocation heap: reduced tlsf structure overhead heap/tlsf: made all short functions inside of tlsf module as inline to improve timings heap: moved tlsf heap routines outside of flash memory newlib: linked multiheap memalign with newlib memalign function heap: moved block member functions to a separate file so multi_heap can use the functions heap/test: improved the tlsf timing test heap/test: added memalign on aligned alloc tests heap: moved tlsf configuration constants to a separated file heap: added random allocations test with timings heap: modified the calculation of heap free bytes heap: make aligned free true deprecated functions and update their documentation heap: add extra assert after successive mallocs on small allocation host test heap: remove legacy aligned alloc implementation. performance: added malloc and free time performance default values
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
TEST_PROGRAM=test_multi_heap
|
|
all: $(TEST_PROGRAM)
|
|
|
|
ifneq ($(filter clean,$(MAKECMDGOALS)),)
|
|
.NOTPARALLEL: # prevent make clean racing the other targets
|
|
endif
|
|
|
|
SOURCE_FILES = $(abspath \
|
|
../multi_heap.c \
|
|
../heap_tlsf.c \
|
|
../multi_heap_poisoning.c \
|
|
test_multi_heap.cpp \
|
|
main.cpp \
|
|
)
|
|
|
|
INCLUDE_FLAGS = -I../include -I../../../tools/catch
|
|
|
|
GCOV ?= gcov
|
|
|
|
CPPFLAGS += $(INCLUDE_FLAGS) -D CONFIG_LOG_DEFAULT_LEVEL -g -fstack-protector-all -m32
|
|
CFLAGS += -Wall -Werror -fprofile-arcs -ftest-coverage
|
|
CXXFLAGS += -std=c++11 -Wall -Werror -fprofile-arcs -ftest-coverage
|
|
LDFLAGS += -lstdc++ -fprofile-arcs -ftest-coverage -m32
|
|
|
|
OBJ_FILES = $(filter %.o, $(SOURCE_FILES:.cpp=.o) $(SOURCE_FILES:.c=.o))
|
|
|
|
COVERAGE_FILES = $(OBJ_FILES:.o=.gc*)
|
|
|
|
$(TEST_PROGRAM): $(OBJ_FILES)
|
|
g++ $(LDFLAGS) -o $(TEST_PROGRAM) $(OBJ_FILES)
|
|
|
|
$(OUTPUT_DIR):
|
|
mkdir -p $(OUTPUT_DIR)
|
|
|
|
test: $(TEST_PROGRAM)
|
|
./$(TEST_PROGRAM)
|
|
|
|
$(COVERAGE_FILES): $(TEST_PROGRAM) test
|
|
|
|
coverage.info: $(COVERAGE_FILES)
|
|
find ../ -name "*.gcno" -exec $(GCOV) -r -pb {} +
|
|
lcov --capture --directory $(abspath ../) --no-external --output-file coverage.info --gcov-tool $(GCOV)
|
|
|
|
coverage_report: coverage.info
|
|
genhtml coverage.info --output-directory coverage_report
|
|
@echo "Coverage report is in coverage_report/index.html"
|
|
|
|
clean:
|
|
rm -f $(OBJ_FILES) $(TEST_PROGRAM)
|
|
rm -f $(COVERAGE_FILES) *.gcov
|
|
rm -rf coverage_report/
|
|
rm -f coverage.info
|
|
|
|
.PHONY: clean all test
|