mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-08-04 02:06:31 -04:00

Move the x86 and ARM-specific code into their own directories to prevent it from cluttering up the main library. This will make it a bit easier to add new architecture-specific code. But to avoid complicating things too much for people who aren't using the provided Makefile, we still just compile all .c files for all architectures (irrelevant ones end up #ifdef'ed out), and the headers are included explicitly for each architecture so that an architecture-specific include path isn't needed. So, now people just need to compile both lib/*.c and lib/*/*.c instead of only lib/*.c.
27 lines
625 B
C
27 lines
625 B
C
#include "cpu_features.h"
|
|
|
|
/* Include the BMI2-optimized version? */
|
|
#undef DISPATCH_BMI2
|
|
#if !defined(__BMI2__) && X86_CPU_FEATURES_ENABLED && \
|
|
COMPILER_SUPPORTS_BMI2_TARGET
|
|
# define FUNCNAME deflate_decompress_bmi2
|
|
# define ATTRIBUTES __attribute__((target("bmi2")))
|
|
# define DISPATCH 1
|
|
# define DISPATCH_BMI2 1
|
|
# include "../decompress_template.h"
|
|
#endif
|
|
|
|
#ifdef DISPATCH
|
|
static inline decompress_func_t
|
|
arch_select_decompress_func(void)
|
|
{
|
|
u32 features = get_cpu_features();
|
|
|
|
#ifdef DISPATCH_BMI2
|
|
if (features & X86_CPU_FEATURE_BMI2)
|
|
return deflate_decompress_bmi2;
|
|
#endif
|
|
return NULL;
|
|
}
|
|
#endif /* DISPATCH */
|