#include <vm/lz4_assembly_select.h>

vm/lz4_assembly_select.h Kernel.framework

Common header to enable/disable the assembly code paths
4 macros

macroLZ4_ENABLE_ASSEMBLY_ENCODE_ARM64

To enable assembly
#define LZ4_ENABLE_ASSEMBLY_ENCODE_ARM64 1

macroLZ4_ENABLE_ASSEMBLY_DECODE_ARM64

#define LZ4_ENABLE_ASSEMBLY_DECODE_ARM64 1

macroLZ4_ENABLE_ASSEMBLY_ENCODE

To disable C
#define LZ4_ENABLE_ASSEMBLY_ENCODE ((LZ4_ENABLE_ASSEMBLY_ENCODE_ARMV7) || (LZ4_ENABLE_ASSEMBLY_ENCODE_ARM64))

macroLZ4_ENABLE_ASSEMBLY_DECODE

#define LZ4_ENABLE_ASSEMBLY_DECODE (LZ4_ENABLE_ASSEMBLY_DECODE_ARM64 || LZ4_ENABLE_ASSEMBLY_DECODE_ARMV7 || LZ4_ENABLE_ASSEMBLY_DECODE_X86_64)