Compare commits
8 Commits
0e9b25dd68
...
master
Author | SHA1 | Date | |
---|---|---|---|
180839c960 | |||
a48ebf9099 | |||
553dc6bd07 | |||
7bedfddfba | |||
8ff163dcf5 | |||
9162db31e3 | |||
24baf3524a | |||
f9aec10459 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,6 +2,7 @@ compile_commands.json
|
||||
core
|
||||
/.ccls-cache/
|
||||
/test/test/
|
||||
.lastbuild
|
||||
# /test/cutest/
|
||||
/tmp/
|
||||
# created when building
|
||||
|
100
Makefile
100
Makefile
@@ -44,30 +44,88 @@ BIN := $(addprefix $(BINDIR)/,$(TEST_FN:.c=))
|
||||
|
||||
CCLSCMDS := compile_commands.json
|
||||
|
||||
##################################### Check for compiler and requested build
|
||||
BUILDS := release dev perf debug
|
||||
# last compilation build
|
||||
BUILDFILE := .lastbuild
|
||||
lastbuild := $(file < $(BUILDFILE))
|
||||
$(info brlib last:$(lastbuild))
|
||||
# default to gcc
|
||||
CC ?= cc
|
||||
ifeq ($(CC),cc)
|
||||
CC = gcc
|
||||
endif
|
||||
|
||||
# if no build specified, use last one
|
||||
ifeq ($(build),)
|
||||
build := $(lastbuild)
|
||||
endif
|
||||
# if build is still undefined, set a default
|
||||
ifeq ($(build),)
|
||||
build := release
|
||||
endif
|
||||
|
||||
$(info brlib build=$(build))
|
||||
|
||||
# check for valid build
|
||||
ifeq ($(filter $(build),$(BUILDS)),)
|
||||
$(error Error: Unknown build=`$(build)`. Possible builds are: $(BUILDS))
|
||||
endif
|
||||
|
||||
# if new build, rewrite BUILDFILE
|
||||
ifneq ($(build),$(lastbuild))
|
||||
$(info New build:`$(build)` (was:$(lastbuild)))
|
||||
$(file >$(BUILDFILE),$(build))
|
||||
endif
|
||||
##################################### pre-processor flags
|
||||
CPPFLAGS := -I $(INCDIR)
|
||||
#CPPFLAGS += -DDEBUG # global
|
||||
#CPPFLAGS += -DDEBUG_DEBUG_C # log() funcs debug
|
||||
CPPFLAGS += -DDEBUG_DEBUG # activate logs funcs
|
||||
CPPFLAGS += -DDEBUG_POOL # mem pools
|
||||
override CPPFLAGS += -I $(INCDIR)
|
||||
|
||||
ifeq ($(BUILD),release)
|
||||
CPPFLAGS += -DNDEBUG # assert (unused)
|
||||
CPPFLAGS += -DBUG_ON=0 CPPFLAGS += -DWARN_ON=0 else # ifeq ($(BUILD),dev)
|
||||
#CPPFLAGS += -DDEBUG #CPPFLAGS += -DDEBUG_DEBUG_C CPPFLAGS += -DDEBUG_DEBUG CPPFLAGS += -DDEBUG_POOL CPPFLAGS += -DBUG_ON=1 CPPFLAGS += -DWARN_ON=1 # warn_on in bug.h
|
||||
endif
|
||||
|
||||
# remove extraneous spaces (due to spaces before comments)
|
||||
CPPFLAGS := $(strip $(CPPFLAGS))
|
||||
|
||||
##################################### compiler flags
|
||||
CFLAGS := -std=gnu11
|
||||
CFLAGS += -O2
|
||||
CFLAGS += -g
|
||||
|
||||
CFLAGS += -Wall
|
||||
CFLAGS += -Wextra
|
||||
CFLAGS += -march=native
|
||||
CFLAGS += -Wmissing-declarations
|
||||
CFLAGS += -Wno-unused-result
|
||||
# TODO: specific to dynamic
|
||||
CFLAGS += -fPIC
|
||||
# for gprof
|
||||
#CFLAGS += -pg
|
||||
# Next one may be useful for valgrind (some invalid instructions)
|
||||
# CFLAGS += -mno-tbm
|
||||
|
||||
### dev OR release
|
||||
ifeq ($(BUILD),release)
|
||||
CFLAGS += -O3
|
||||
CFLAGS += -funroll-loops
|
||||
CFLAGS += -flto
|
||||
else ifeq ($(BUILD),dev)
|
||||
CFLAGS += -Og
|
||||
CFLAGS += -g
|
||||
CFLAGS += -ginline-points # inlined funcs debug info
|
||||
# for gprof
|
||||
#CFLAGS += -pg
|
||||
# Next one may be useful for valgrind (some invalid instructions)
|
||||
# CFLAGS += -mno-tbm
|
||||
else ifeq ($(BUILD),perf)
|
||||
CFLAGS += -O3
|
||||
CFLAGS += -g # symbols (gdb, perf, etc.)
|
||||
CFLAGS += -ginline-points # inlined funcs debug info
|
||||
CFLAGS += -funroll-loops
|
||||
else ifeq ($(BUILD),debug)
|
||||
CFLAGS += -O0
|
||||
CFLAGS += -g # symbols (gdb, perf, etc.)
|
||||
# for gprof
|
||||
#CFLAGS += -pg
|
||||
# Next one may be useful for valgrind (when invalid instructions)
|
||||
#CFLAGS += -mno-tbm
|
||||
endif
|
||||
|
||||
CFLAGS := $(strip $(CFLAGS))
|
||||
|
||||
@@ -77,14 +135,21 @@ LDFLAGS := -L$(LIBDIR)
|
||||
LIBS := -l$(LIB)
|
||||
DEPFLAGS = -MMD -MP -MF $(DEPDIR)/$*.d
|
||||
|
||||
ifeq ($(BUILD),release)
|
||||
LDFLAGS += -flto
|
||||
endif
|
||||
|
||||
##################################### General targets
|
||||
.PHONY: all libs compile test emacs ccls bear clean cleanall cleanallall
|
||||
.PHONY: all libs lib-static lib-dynamic compile test emacs ccls bear clean \
|
||||
cleanall cleanallall
|
||||
|
||||
# default: build libraries
|
||||
all: libs
|
||||
|
||||
# default: build libraries
|
||||
libs: $(DLIB) $(SLIB)
|
||||
# libraries
|
||||
libs: lib-static lib-dynamic
|
||||
lib-static: $(SLIB)
|
||||
lib-dynamic: $(DLIB)
|
||||
|
||||
# build objects
|
||||
compile: $(OBJ)
|
||||
@@ -178,9 +243,10 @@ cleanobj:
|
||||
cleanobjdir:
|
||||
$(call rmdir,$(OBJDIR),brlib objects)
|
||||
|
||||
$(OBJDIR)/%.o: $(SRCDIR)/%.c | $(OBJDIR) $(DEPDIR)
|
||||
# $(OBJDIR)/%.o: $(BUILDFILE)
|
||||
$(OBJDIR)/%.o: $(SRCDIR)/%.c $(BUILDFILE) | $(OBJDIR) $(DEPDIR)
|
||||
@echo compiling $< "->" $@.
|
||||
@$(CC) -c $(DEPFLAGS) $(CPPFLAGS) $(CFLAGS) $< -o $@
|
||||
$(CC) -c $(DEPFLAGS) $(CPPFLAGS) $(CFLAGS) $< -o $@
|
||||
|
||||
##################################### brlib libraries
|
||||
.PHONY: cleanlib cleanlibdir
|
||||
@@ -248,7 +314,7 @@ cleanccls:
|
||||
# maybe run cleanobj cleanlibobj in commands ?
|
||||
$(CCLSCMDS): cleanobj $(SRC) | $(CCLSROOT)
|
||||
@echo "Generating ccls compile commands file ($@)."
|
||||
@$(BEAR) -- make test
|
||||
@$(BEAR) -- $(MAKE) test
|
||||
|
||||
##################################### valgrind (mem check)
|
||||
.PHONY: memcheck
|
||||
|
38
include/bitops-emulated/generic-bswap.h
Normal file
38
include/bitops-emulated/generic-bswap.h
Normal file
@@ -0,0 +1,38 @@
|
||||
/* generic-bswap.h - generic bswap implementations.
|
||||
*
|
||||
* Copyright (C) 2024 Bruno Raoult ("br")
|
||||
* Licensed under the GNU General Public License v3.0 or later.
|
||||
* Some rights reserved. See COPYING.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with this
|
||||
* program. If not, see <https://www.gnu.org/licenses/gpl-3.0-standalone.html>.
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later <https://spdx.org/licenses/GPL-3.0-or-later.html>
|
||||
*
|
||||
*/
|
||||
#ifndef _GENERIC_BSWAP_H_
|
||||
#define _GENERIC_BSWAP_H_
|
||||
|
||||
#include "brlib.h"
|
||||
|
||||
/* Adapted from: http://www-graphics.stanford.edu/%7Eseander/bithacks.html
|
||||
*/
|
||||
static __always_inline u32 __bswap32_emulated(u32 n)
|
||||
{
|
||||
const u32 k = 0x00FF00FF;
|
||||
n = ((n >> 8) & k) | ((n & k) << 8);
|
||||
n = ( n >> 16) | ( n << 16);
|
||||
return n;
|
||||
}
|
||||
|
||||
static __always_inline u64 __bswap64_emulated(u64 n)
|
||||
{
|
||||
const u64 k1 = 0x00FF00FF00FF00FFull;
|
||||
const u64 k2 = 0x0000FFFF0000FFFFull;
|
||||
n = ((n >> 8) & k1) | ((n & k1) << 8);
|
||||
n = ((n >> 16) & k2) | ((n & k2) << 16);
|
||||
n = ( n >> 32) | ( n << 32);
|
||||
return n;
|
||||
}
|
||||
|
||||
#endif /* _GENERIC_BSWAP_H_ */
|
@@ -16,6 +16,7 @@
|
||||
#include "brlib.h"
|
||||
#include "bitops-emulated/generic-ctz.h"
|
||||
#include "bitops-emulated/generic-clz.h"
|
||||
#include "bitops-emulated/generic-bswap.h"
|
||||
|
||||
#ifndef __has_builtin
|
||||
#define __has_builtin(x) 0
|
||||
@@ -35,7 +36,9 @@
|
||||
#if __has_builtin(__builtin_ffs)
|
||||
# define HAS_FFS
|
||||
#endif
|
||||
|
||||
#if __has_builtin(__builtin_bswap32)
|
||||
# define HAS_BSWAP
|
||||
#endif
|
||||
|
||||
/**
|
||||
* print_bitops_impl() - print bitops implementation.
|
||||
@@ -174,6 +177,24 @@ void print_bitops_impl(void);
|
||||
#define ffz32(n) ffs32(~(n))
|
||||
#define ffz64(n) ffs64(~(n))
|
||||
|
||||
/**
|
||||
* bswap32, bswap64 - reverse bytes: 0x01020304 -> 0x04030201
|
||||
* @n: unsigned 32 or 64 bits integer.
|
||||
*
|
||||
* ffs(n) is similar to ctz(n) + 1, but returns 0 if n == 0 (except
|
||||
* for ctz version, where ffs(0) is undefined).
|
||||
* ffz(n) is ffz(~n), with undefine value if n = 0.
|
||||
*/
|
||||
#if defined(HAS_BSWAP)
|
||||
# define __bswap32_native(n) __builtin_bswap32(n)
|
||||
# define __bswap64_native(n) __builtin_bswap64(n)
|
||||
# define bswap32(n) __bswap32_native(n)
|
||||
# define bswap64(n) __bswap64_native(n)
|
||||
#else
|
||||
# define bswap32(n) __bswap32_emulated(n)
|
||||
# define bswap64(n) __bswap64_emulated(n)
|
||||
#endif
|
||||
|
||||
/**
|
||||
* fls32, fls64 - return one plus MSB index: 00101000 -> 6
|
||||
* @n: unsigned 32 or 64 bits integer.
|
||||
|
@@ -18,6 +18,7 @@
|
||||
#ifndef _BRLIB_H
|
||||
#define _BRLIB_H
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <bits/wordsize.h> /* defines __WORDSIZE: 32 or 64 */
|
||||
|
@@ -11,38 +11,51 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _BUG_H
|
||||
#define _BUG_H
|
||||
#ifndef BUG_H
|
||||
#define BUG_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "likely.h"
|
||||
|
||||
#define bug_on(expr) do { \
|
||||
if (unlikely(expr)) { \
|
||||
#define bug_on_always(expr) do { \
|
||||
if (expr) { \
|
||||
fprintf(stderr, \
|
||||
"** BUG IN %s[%s:%d]: assertion \"" #expr "\" failed.\n", \
|
||||
__func__, __FILE__,__LINE__); \
|
||||
"** BUG ON %s[%s:%d]: assertion '%s' failed.\n", \
|
||||
__func__, __FILE__,__LINE__, #expr); \
|
||||
abort(); \
|
||||
/* not reached */ \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#define warn_on(expr) ({ \
|
||||
int _ret = !!(expr); \
|
||||
if (unlikely(_ret)) \
|
||||
fprintf(stderr, \
|
||||
"** WARN ON %s[%s:%d]: assertion \"" #expr "\" failed.\n", \
|
||||
__func__, __FILE__,__LINE__); \
|
||||
unlikely(_ret); \
|
||||
})
|
||||
|
||||
#define warn(expr, args...) ({ \
|
||||
int _ret = !!(expr); \
|
||||
if (unlikely(_ret)) \
|
||||
if (_ret) \
|
||||
fprintf(stderr, ##args); \
|
||||
unlikely(_ret); \
|
||||
_ret; \
|
||||
})
|
||||
|
||||
#endif /* _BUG_H */
|
||||
#define warn_on_always(expr) ({ \
|
||||
warn(expr, \
|
||||
"** WARN ON %s[%s:%d]: assertion '%s' failed.\n", \
|
||||
__func__, __FILE__,__LINE__, #expr); \
|
||||
})
|
||||
|
||||
#ifdef BUG_ON
|
||||
|
||||
#define bug_on(expr) bug_on_always(expr)
|
||||
|
||||
#define warn_on(expr) warn_on_always(expr)
|
||||
#define warn_on_or_eval(expr) warn_on(expr)
|
||||
|
||||
#else
|
||||
|
||||
#define bug_on(expr)
|
||||
|
||||
#define warn_on(expr)
|
||||
#define warn_on_or_eval(expr) (expr)
|
||||
|
||||
#endif /* BUG_ON */
|
||||
|
||||
#endif /* BUG_H */
|
||||
|
@@ -14,12 +14,13 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "br.h"
|
||||
#include "brlib.h"
|
||||
#include "bitops.h"
|
||||
#include "cutest/CuTest.h"
|
||||
|
||||
static const struct test32_1 {
|
||||
u32 t32; /* input */
|
||||
u32 bswap;
|
||||
int popc;
|
||||
int ctz;
|
||||
int clz;
|
||||
@@ -32,19 +33,19 @@ static const struct test32_1 {
|
||||
uchar bfe[32];
|
||||
};
|
||||
} test32_1[] = {
|
||||
{ 0x00000000, 0, 32, 32, 0, 1, 0, 0, /* sometimes undefined */
|
||||
{ 0x00000000, 0x00000000, 0, 32, 32, 0, 1, 0, 0, /* sometimes undefined */
|
||||
{ 0, { 0 } } },
|
||||
{ 0xffffffff, 32, 0, 0, 1, 0, 32, 31,
|
||||
{ 0xffffffff, 0xffffffff, 32, 0, 0, 1, 0, 32, 31,
|
||||
{ 32, { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
||||
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31 } } },
|
||||
{ 0x00000001, 1, 0, 31, 1, 2, 1, 0,
|
||||
{ 0x00000001, 0x01000000, 1, 0, 31, 1, 2, 1, 0,
|
||||
{ 1, { 0 } } },
|
||||
{ 0x80000000, 1, 31, 0, 32, 1, 32, 31,
|
||||
{ 0x80000000, 0x00000080, 1, 31, 0, 32, 1, 32, 31,
|
||||
{ 1, { 31 } } },
|
||||
{ 0x71800718, 10, 3, 1, 4, 1, 31, 30,
|
||||
{ 0x71800718, 0x18078071, 10, 3, 1, 4, 1, 31, 30,
|
||||
/* 0111 0001 1000 0000 0000 0111 0001 1000 */
|
||||
{ 10, { 3, 4, 8, 9, 10, 23, 24, 28, 29, 30 } } },
|
||||
{ 0x07eeeef7, 22, 0, 5, 1, 4, 27, 26,
|
||||
{ 0x07eeeef7, 0xf7eeee07, 22, 0, 5, 1, 4, 27, 26,
|
||||
/* 0000 0111 1110 1110 1110 1110 0111 1111*/
|
||||
{ 22, { 0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 13,
|
||||
14, 15, 17, 18, 19, 21, 22, 23, 24, 25, 26 } } },
|
||||
@@ -52,7 +53,8 @@ static const struct test32_1 {
|
||||
|
||||
static const struct test64_1 {
|
||||
u64 t64; /* input */
|
||||
int popc;
|
||||
u64 bswap;
|
||||
int popc; /* some values may be undefined */
|
||||
int ctz;
|
||||
int clz;
|
||||
int ffs;
|
||||
@@ -64,22 +66,22 @@ static const struct test64_1 {
|
||||
uchar bfe[64];
|
||||
};
|
||||
} test64_1[] = {
|
||||
{ 0x0000000000000000, 0, 64, 64, 0, 1, 0, 0, /* sometimes undefined */
|
||||
{ 0x0000000000000000, 0x0000000000000000, 0, 64, 64, 0, 1, 0, 0,
|
||||
{ 0, { 0 } } },
|
||||
{ 0xffffffffffffffff, 64, 0, 0, 1, 0, 64, 63,
|
||||
{ 0xffffffffffffffff, 0xffffffffffffffff, 64, 0, 0, 1, 0, 64, 63,
|
||||
{ 64, { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
||||
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
||||
32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
|
||||
48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63 } } },
|
||||
{ 0x0000000100000001, 2, 0, 31, 1, 2, 33, 32,
|
||||
{ 0x0000000100000001, 0x0100000001000000, 2, 0, 31, 1, 2, 33, 32,
|
||||
{ 2, { 0, 32 } } },
|
||||
{ 0x8000000000000000, 1, 63, 0, 64, 1, 64, 63,
|
||||
{ 0x8000000000000000, 0x0000000000000080, 1, 63, 0, 64, 1, 64, 63,
|
||||
{ 1, { 63 } } },
|
||||
{ 0x7180071871800718, 20, 3, 1, 4, 1, 63, 62,
|
||||
{ 0x7180071871800718, 0x1807807118078071, 20, 3, 1, 4, 1, 63, 62,
|
||||
/* 2 x 0111 0001 1000 0000 0000 0111 0001 1000 */
|
||||
{ 20, { 3, 4, 8, 9, 10, 23, 24, 28, 29, 30,
|
||||
35, 36, 40, 41, 42, 55, 56, 60, 61, 62 } } },
|
||||
{ 0x07eeeef707eeeef7, 44, 0, 5, 1, 4, 59, 58 ,
|
||||
{ 0x07eeeef707eeeef7, 0xf7eeee07f7eeee07, 44, 0, 5, 1, 4, 59, 58 ,
|
||||
/* 2 x 0000 0111 1110 1110 1110 1110 0111 1111*/
|
||||
{ 44, { 0, 1, 2, 4, 5, 6, 7, 9, 10, 11, 13,
|
||||
14, 15, 17, 18, 19, 21, 22, 23, 24, 25, 26,
|
||||
@@ -167,6 +169,20 @@ static void cutest_fls(CuTest *tc)
|
||||
}
|
||||
}
|
||||
|
||||
static void cutest_bswap(CuTest *tc)
|
||||
{
|
||||
for (uint i = 0; i < ARRAY_SIZE(test32_1); ++i) {
|
||||
int res = bswap32(test32_1[i].t32);
|
||||
//printf("fls32 t=%#x r=%d e=%d\n", test32_1[i].t32, res, test32_1[i].fls);
|
||||
CuAssertIntEquals(tc, test32_1[i].bswap, res);
|
||||
}
|
||||
for (uint i = 0; i < ARRAY_SIZE(test64_1); ++i) {
|
||||
int res = bswap64(test64_1[i].t64);
|
||||
//printf("fls64 t=%#llx r=%d e=%d\n", test64_1[i].t64, res, test64_1[i].fls);
|
||||
CuAssertIntEquals(tc, test64_1[i].bswap, res);
|
||||
}
|
||||
}
|
||||
|
||||
static void cutest_ilog(CuTest *tc)
|
||||
{
|
||||
for (uint i = 0; i < ARRAY_SIZE(test32_1); ++i) {
|
||||
@@ -322,6 +338,7 @@ static CuSuite *bitops_GetSuite()
|
||||
SUITE_ADD_TEST(suite, cutest_fls);
|
||||
SUITE_ADD_TEST(suite, cutest_ilog);
|
||||
SUITE_ADD_TEST(suite, cutest_bfe);
|
||||
SUITE_ADD_TEST(suite, cutest_bswap);
|
||||
|
||||
SUITE_ADD_TEST(suite, cutest_rol);
|
||||
SUITE_ADD_TEST(suite, cutest_ror);
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "br.h"
|
||||
#include "brlib.h"
|
||||
#include "pool.h"
|
||||
#include "debug.h"
|
||||
|
||||
|
Reference in New Issue
Block a user