-
Notifications
You must be signed in to change notification settings - Fork 4
/
target.h
70 lines (56 loc) · 1.22 KB
/
target.h
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
64
65
66
67
68
69
70
#ifndef TARGET_H
#define TARGET_H
extern struct symbol *size_t_ctype;
extern struct symbol *ssize_t_ctype;
/*
* For "__attribute__((aligned))"
*/
extern int max_alignment;
/*
* Integer data types
*/
extern int bits_in_bool;
extern int bits_in_char;
extern int bits_in_short;
extern int bits_in_int;
extern int bits_in_long;
extern int bits_in_longlong;
extern int bits_in_longlonglong;
extern int bits_in_wchar;
extern int max_int_alignment;
/*
* Floating point data types
*/
extern int bits_in_float;
extern int bits_in_double;
extern int bits_in_longdouble;
extern int max_fp_alignment;
/*
* Pointer data type
*/
extern int bits_in_pointer;
extern int pointer_alignment;
/*
* Enum data types
*/
extern int bits_in_enum;
extern int enum_alignment;
/*
* Helper functions for converting bits to bytes and vice versa.
*/
static inline int bits_to_bytes(int bits)
{
return bits >= 0 ? (bits + bits_in_char - 1) / bits_in_char : -1;
}
static inline int bytes_to_bits(int bytes)
{
return bytes * bits_in_char;
}
static inline unsigned long array_element_offset(unsigned long base_bits, int idx)
{
int fragment = base_bits % bits_in_char;
if (fragment)
base_bits += bits_in_char - fragment;
return base_bits * idx;
}
#endif