From 16ef25b5eda3a9fc51ecea309d2cb6b0508b009b Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Sun, 11 Aug 2019 16:53:06 +0200 Subject: improve bumpptr_alloc Return always 16 Byte aligned blocks and mmap the whole available memory reported by free -t per thread. --- src/Makefile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 9858cdf..47d0dd4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,23 +4,27 @@ CC ?= gcc WARNFLAGS ?= -Wall -Wextra COMMONFLAGS ?= -fno-builtin -fPIC -DPIC -pthread -OPTFLAGS ?= -O3 -DNDEBUG +OPTFLAGS ?= -O0 -g CFLAGS ?= $(OPTFLAGS) $(WARNFLAGS) $(COMMONFLAGS) LDFLAGS ?= -pthread -static-libgcc +MEMSIZE_KB=$(shell free -t | tail -1 | tr -s ' ' | cut -d ' ' -f 2) +MEMSIZE=$(shell echo $(MEMSIZE_KB)"* 1024" | bc) + .PHONY: all clean all: $(OBJDIR)/print_status_on_exit.so $(OBJDIR)/allocators/bumpptr_alloc.so -$(OBJDIR)/allocators/bumpptr_alloc.so: bumpptr_alloc.c | $(OBJDIR)/allocators +$(OBJDIR)/allocators/bumpptr_alloc.so: bumpptr_alloc.c Makefile | $(OBJDIR)/allocators @echo "Compiling $@..."; - $(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $< + $(CC) $(LDFLAGS) -shared -DMEMSIZE=$(MEMSIZE) $(CFLAGS) -o $@ $< + # $(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $< -$(OBJDIR)/print_status_on_exit.so: print_status_on_exit.c | $(OBJDIR) +$(OBJDIR)/print_status_on_exit.so: print_status_on_exit.c Makefile | $(OBJDIR) @echo "Compiling $@..."; - $(CC) $(LDFLAGS) -shared -O2 $(CFLAGS) -o $@ $< + $(CC) $(LDFLAGS) -shared $(CFLAGS) -o $@ $< $(OBJDIR)/allocators: mkdir -p $@ -- cgit v1.2.3