summaryrefslogtreecommitdiffstats
path: root/assembler/util.c
blob: 6e697a30de7f9cb04b938e85333f3293b2e39a62 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 *   Copyright (C) 2006  Michael Buesch <m@bues.ch>
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License version 2
 *   as published by the Free Software Foundation.
 *
 *   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.
 */

#include "util.h"

#include <stdio.h>
#include <string.h>


void dump(const char *data,
	  size_t size,
	  const char *description)
{
	size_t i;
	char c;

	fprintf(stderr, "Data dump (%s, %zd bytes):",
	        description, size);
	for (i = 0; i < size; i++) {
		c = data[i];
		if (i % 8 == 0) {
			fprintf(stderr, "\n0x%08zx:  0x%02x, ",
				i, c & 0xff);
		} else
			fprintf(stderr, "0x%02x, ", c & 0xff);
	}
	fprintf(stderr, "\n");
}

void * xmalloc(size_t size)
{
	void *p;

	p = malloc(size);
	if (!p) {
		fprintf(stderr, "Out of memory\n");
		exit(1);
	}
	memset(p, 0, size);

	return p;
}

char * xstrdup(const char *str)
{
	char *c;

	c = strdup(str);
	if (!c) {
		fprintf(stderr, "Out of memory\n");
		exit(1);
	}

	return c;
}

be16_t cpu_to_be16(uint16_t x)
{
	be16_t ret;
	uint8_t *tmp = (uint8_t *)(&ret);

	tmp[0] = (x & 0xFF00) >> 8;
	tmp[1] = (x & 0x00FF);

	return ret;
}

be32_t cpu_to_be32(uint32_t x)
{
	be32_t ret;
	uint8_t *tmp = (uint8_t *)(&ret);

	tmp[0] = (x & 0xFF000000) >> 24;
	tmp[1] = (x & 0x00FF0000) >> 16;
	tmp[2] = (x & 0x0000FF00) >> 8;
	tmp[3] = (x & 0x000000FF);

	return ret;
}
bues.ch cgit interface