blob: d383db04a047dd79158e80f838e0c62e175ee018 (
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
|
#include <bitfield/bitfield.h>
/**
* Find the ending bit of a bitfield within the final byte.
*
* Returns: a bit position from 0 to 7.
*/
int findEndBit(int startBit, int numBits) {
int endBit = (startBit + numBits) % 8;
return endBit == 0 ? 8 : endBit;
}
uint64_t bitmask(int numBits) {
return (((uint64_t)0x1) << numBits) - 1;
}
int startingByte(int startBit) {
return startBit / 8;
}
int endingByte(int startBit, int numBits) {
return (startBit + numBits - 1) / 8;
}
uint64_t getBitField(uint64_t data, int startBit, int numBits, bool bigEndian) {
int startByte = startingByte(startBit);
int endByte = endingByte(startBit, numBits);
if(!bigEndian) {
data = __builtin_bswap64(data);
}
uint8_t* bytes = (uint8_t*)&data;
uint64_t ret = bytes[startByte];
if(startByte != endByte) {
// The lowest byte address contains the most significant bit.
int i;
for(i = startByte + 1; i <= endByte; i++) {
ret = ret << 8;
ret = ret | bytes[i];
}
}
ret >>= 8 - findEndBit(startBit, numBits);
return ret & bitmask(numBits);
}
/**
* TODO it would be nice to have a warning if you call with this a value that
* won't fit in the number of bits you've specified it should use.
*/
void setBitField(uint64_t* data, uint64_t value, int startBit, int numBits) {
int shiftDistance = 64 - startBit - numBits;
value <<= shiftDistance;
*data &= ~(bitmask(numBits) << shiftDistance);
*data |= value;
}
uint8_t nthByte(uint64_t source, int byteNum) {
return (source >> (64 - ((byteNum + 1) * 8))) & 0xFF;
}
|