summaryrefslogtreecommitdiffstats
path: root/clib/misc.h
blob: ad8f261a547809b893793b5070515c90c8965c64 (plain)
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
71
72
73
/*
 * Copyright (c) International Business Machines Corp., 2014
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

/*
 *   File: misc.h
 * Author: Shaun Wetzstein <shaun@us.ibm.com?
 *  Descr: Misc. library helper functions
 *   Note:
 *   Date: 10/22/10
 */

#ifndef __MISC_H__
#define __MISC_H__

#include <stdint.h>
#include <stdio.h>

#include <sys/syscall.h>

#include "attribute.h"

#include "align.h"
#include "min.h"
#include "max.h"

#define INT32_BIT	(CHAR_BIT*sizeof(int32_t))

#define ARRAY_SIZE(x)	(sizeof(x) / sizeof((x)[0]))

#ifndef gettid
#define gettid()	({			\
    pid_t __tid = (pid_t)syscall(SYS_gettid);	\
    __tid;					\
			 })
#endif

#define is_pow2(x)				\
({						\
    typeof(x) _x = (x);				\
    (((_x) != 0) && !((_x) & ((_x) - 1)));	\
})

#define __align(x,y)				\
({						\
    assert(is_pow2((y)));			\
    typeof((y)) _y = (y) - 1;			\
    typeof((x)) _x = ((x)+_y) & ~_y;		\
    _x;						\
})

extern void prefetch(void *addr, size_t len, ...) __nonnull((1));
extern void print_binary(FILE *, void *, size_t);
extern void dump_memory(FILE *, uint32_t, const void *__restrict,
			size_t) __nonnull((1, 3));
extern unsigned long align(unsigned long size, unsigned long offset);
extern int __round_pow2(int size);

#endif				/* __MISC_H__ */
OpenPOWER on IntegriCloud