blob: eb9dac1a4bdaae7c023a83abaee1b1199a17beb7 [file] [log] [blame]
Lasse Collin780d6ad2009-04-26 21:04:29 +03001/*
2 * Private includes and definitions for userspace use of XZ Embedded
3 *
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
5 *
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */
9
10#ifndef XZ_CONFIG_H
11#define XZ_CONFIG_H
12
Lasse Collin0568cfa2013-02-27 09:28:55 +020013/* Uncomment to enable CRC64 support. */
14/* #define XZ_USE_CRC64 */
15
Lasse Collin780d6ad2009-04-26 21:04:29 +030016/* Uncomment as needed to enable BCJ filter decoders. */
17/* #define XZ_DEC_X86 */
18/* #define XZ_DEC_POWERPC */
19/* #define XZ_DEC_IA64 */
20/* #define XZ_DEC_ARM */
21/* #define XZ_DEC_ARMTHUMB */
22/* #define XZ_DEC_SPARC */
23
Lasse Collin94d107e2013-04-15 19:42:17 +030024/*
25 * MSVC doesn't support modern C but XZ Embedded is mostly C89
26 * so these are enough.
27 */
28#ifdef _MSC_VER
29typedef unsigned char bool;
30# define true 1
31# define false 0
32# define inline __inline
33#else
34# include <stdbool.h>
35#endif
36
Lasse Collin28892352009-05-26 11:07:45 +030037#include <stdlib.h>
38#include <string.h>
39
Lasse Collin780d6ad2009-04-26 21:04:29 +030040#include "xz.h"
41
Lasse Collin28892352009-05-26 11:07:45 +030042#define kmalloc(size, flags) malloc(size)
43#define kfree(ptr) free(ptr)
44#define vmalloc(size) malloc(size)
45#define vfree(ptr) free(ptr)
46
47#define memeq(a, b, size) (memcmp(a, b, size) == 0)
48#define memzero(buf, size) memset(buf, 0, size)
49
Lasse Collinf8e569c2010-06-22 12:53:11 +030050#ifndef min
51# define min(x, y) ((x) < (y) ? (x) : (y))
52#endif
Lasse Collin780d6ad2009-04-26 21:04:29 +030053#define min_t(type, x, y) min(x, y)
54
55/*
56 * Some functions have been marked with __always_inline to keep the
57 * performance reasonable even when the compiler is optimizing for
58 * small code size. You may be able to save a few bytes by #defining
59 * __always_inline to plain inline, but don't complain if the code
60 * becomes slow.
61 *
62 * NOTE: System headers on GNU/Linux may #define this macro already,
Lasse Collin9f4391b2010-05-30 09:10:02 +030063 * so if you want to change it, you need to #undef it first.
Lasse Collin780d6ad2009-04-26 21:04:29 +030064 */
65#ifndef __always_inline
66# ifdef __GNUC__
67# define __always_inline \
68 inline __attribute__((__always_inline__))
69# else
70# define __always_inline inline
71# endif
72#endif
73
Lasse Collin780d6ad2009-04-26 21:04:29 +030074/* Inline functions to access unaligned unsigned 32-bit integers */
Lasse Collin36b83dd2010-05-30 11:51:21 +030075#ifndef get_unaligned_le32
Lasse Collin4d5e69a2010-11-20 10:14:29 +020076static inline uint32_t get_unaligned_le32(const uint8_t *buf)
Lasse Collin780d6ad2009-04-26 21:04:29 +030077{
78 return (uint32_t)buf[0]
79 | ((uint32_t)buf[1] << 8)
80 | ((uint32_t)buf[2] << 16)
81 | ((uint32_t)buf[3] << 24);
82}
Lasse Collin36b83dd2010-05-30 11:51:21 +030083#endif
Lasse Collin780d6ad2009-04-26 21:04:29 +030084
Lasse Collin36b83dd2010-05-30 11:51:21 +030085#ifndef get_unaligned_be32
Lasse Collin4d5e69a2010-11-20 10:14:29 +020086static inline uint32_t get_unaligned_be32(const uint8_t *buf)
Lasse Collin780d6ad2009-04-26 21:04:29 +030087{
88 return (uint32_t)(buf[0] << 24)
89 | ((uint32_t)buf[1] << 16)
90 | ((uint32_t)buf[2] << 8)
91 | (uint32_t)buf[3];
92}
Lasse Collin36b83dd2010-05-30 11:51:21 +030093#endif
Lasse Collin780d6ad2009-04-26 21:04:29 +030094
Lasse Collin36b83dd2010-05-30 11:51:21 +030095#ifndef put_unaligned_le32
Lasse Collin4d5e69a2010-11-20 10:14:29 +020096static inline void put_unaligned_le32(uint32_t val, uint8_t *buf)
Lasse Collin780d6ad2009-04-26 21:04:29 +030097{
98 buf[0] = (uint8_t)val;
99 buf[1] = (uint8_t)(val >> 8);
100 buf[2] = (uint8_t)(val >> 16);
101 buf[3] = (uint8_t)(val >> 24);
102}
Lasse Collin36b83dd2010-05-30 11:51:21 +0300103#endif
Lasse Collin780d6ad2009-04-26 21:04:29 +0300104
Lasse Collin36b83dd2010-05-30 11:51:21 +0300105#ifndef put_unaligned_be32
Lasse Collin4d5e69a2010-11-20 10:14:29 +0200106static inline void put_unaligned_be32(uint32_t val, uint8_t *buf)
Lasse Collin780d6ad2009-04-26 21:04:29 +0300107{
108 buf[0] = (uint8_t)(val >> 24);
109 buf[1] = (uint8_t)(val >> 16);
110 buf[2] = (uint8_t)(val >> 8);
111 buf[3] = (uint8_t)val;
112}
Lasse Collin36b83dd2010-05-30 11:51:21 +0300113#endif
Lasse Collin780d6ad2009-04-26 21:04:29 +0300114
115/*
116 * Use get_unaligned_le32() also for aligned access for simplicity. On
117 * little endian systems, #define get_le32(ptr) (*(const uint32_t *)(ptr))
118 * could save a few bytes in code size.
119 */
Lasse Collin36b83dd2010-05-30 11:51:21 +0300120#ifndef get_le32
121# define get_le32 get_unaligned_le32
122#endif
Lasse Collin780d6ad2009-04-26 21:04:29 +0300123
124#endif