blob: b4142dc6a5fb47d30d3ad999f7aca5aa1f915d59 (
plain) (
blame)
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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
enum libsyscalls_error
libsyscalls_make_signed_integer(unsigned long long int value_in, int negative,
enum libsyscalls_datatype_sign_representation representation,
size_t bits, unsigned long long int *value_out)
{
unsigned long long int value = value_in, mask, highbit;
if (!bits || bits > sizeof(value) / sizeof(char) * CHAR_BIT)
return LIBSYSCALLS_E_INVAL;
switch (representation) {
case LIBSYSCALLS_SIGN_UNDETERMINED:
break;
case LIBSYSCALLS_SIGN_TWOS_COMPLEMENT:
if (negative && value) {
highbit = 1ULL << (bits - 1U);
mask = highbit - 1ULL;
value = ~(value - 1) & mask;
value |= highbit;
}
break;
case LIBSYSCALLS_SIGN_ONES_COMPLEMENT:
if (negative) {
highbit = 1ULL << (bits - 1U);
mask = highbit - 1ULL;
value = ~value & mask;
value |= highbit;
}
break;
case LIBSYSCALLS_SIGN_SIGN_MAGNITUDE:
if (negative)
value ^= 1ULL << (bits - 1);
break;
case LIBSYSCALLS_SIGN_EXCESS_HALF:
if (!negative)
value ^= 1ULL << (bits - 1);
else
value = (1ULL << (bits - 1)) - value;
break;
default:
return LIBSYSCALLS_E_INVAL;
}
if (value_out)
*value_out = value;
return LIBSYSCALLS_E_OK;
}
|