473,396 Members | 1,689 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

creating int from contiguous bits in an int

I'd like to be able to create an integer from a range of contiguous
bits
in another integer. I'm on a big-ending machine, in case that matters.
I would ideally like to create a function with this prototype:

unsigned long long extractValue(unsigned long long target, int a, int
b)

where a and b are the range of bits counted off from the most
significant
bit (where the msb is the 0th bit). For instance, 12345678900 is

00000000 00000000 00000000 00000010 11011111 11011100 00011100
00110100

A call to extractValue(value, 32, 35) should result in 13 (1101 in
binary).

Can someone please help?

Nov 26 '05 #1
7 2260
Digital Puer wrote:
I'd like to be able to create an integer from a range of contiguous
bits
in another integer. I'm on a big-ending machine, in case that matters.
I would ideally like to create a function with this prototype:

unsigned long long extractValue(unsigned long long target, int a, int
b)

where a and b are the range of bits counted off from the most
significant
bit (where the msb is the 0th bit). For instance, 12345678900 is

00000000 00000000 00000000 00000010 11011111 11011100 00011100
00110100

A call to extractValue(value, 32, 35) should result in 13 (1101 in
binary).

Can someone please help?

You've chosen an unhelpful way of specifying the bits you want. :-)

The idea is that we shift enough bits to the left for the desired MSB to
be the actual MSB, then shift back to make the desired LSB the actual
LSB, losing undesired bits in the overflow. This can be done in one
expression, but I'll do it in more for clarity.

#include <limits.h>

unsigned long long extractValue(unsigned long long target, int msb,
int lsb) {
const size_t ull_bits = CHAR_BIT * sizeof(unsigned long long);
unsigned long long result;
if (msb > lsb) {
/* empty range */
result = 0;
} else {
/* shift the desired msb to the actual msb */
result = target << msb;
/* there are (lsb - msb + 1) bits in the range, shift them
from high to low */
result >>= ull_bits - (lsb - msb + 1);
}
return result;
}

This function does not check if the arguments are in range; it assumes
you know what bits you can access.

S.
Nov 26 '05 #2
Digital Puer wrote:
I'd like to be able to create an integer from a range of contiguous
bits
in another integer. I'm on a big-ending machine, in case that matters.
I would ideally like to create a function with this prototype:

unsigned long long extractValue(unsigned long long target, int a, int
b)

where a and b are the range of bits counted off from the most
significant
bit (where the msb is the 0th bit). For instance, 12345678900 is

00000000 00000000 00000000 00000010 11011111 11011100 00011100
00110100

A call to extractValue(value, 32, 35) should result in 13 (1101 in
binary).

Can someone please help?

I'll try.
First though, why declare msb the 0th bit? It seems arbitrary and
counterintuitive in C where we think of the lsb as the 0th. Endianess
does not seem to be an issue.

Using 32 and 35 calculate that you need a four-bit mask and create it.

00000000 00000000 00000000 00000000 00000000 00000000 00000000 00001111

Now shift 'value' right such that the four bits of interest are the
least significant. Now 'and' the shifted value with the mask. Voila, 13.

--
Joe Wright
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 26 '05 #3

Skarmander wrote:
You've chosen an unhelpful way of specifying the bits you want. :-)
What's a better way of specifying the bits?
unsigned long long extractValue(unsigned long long target, int msb,
int lsb) {

thank you. This works perfectly.

Nov 26 '05 #4

Joe Wright wrote:
I'll try.
First though, why declare msb the 0th bit? It seems arbitrary and
counterintuitive in C where we think of the lsb as the 0th.
Sorry. I guess I'm thinking of the bit representation as a
character array, so '0010' would have the '1' bit in the
array[2] position. That's probably not too helpful.

Using 32 and 35 calculate that you need a four-bit mask and create it.

00000000 00000000 00000000 00000000 00000000 00000000 00000000 00001111

Now shift 'value' right such that the four bits of interest are the
least significant. Now 'and' the shifted value with the mask. Voila, 13.

Thank you for the insight. Here's an implemention based on
your suggestion.
unsigned long long extract(unsigned long long target, int msb, int lsb)
{
int mask_size = lsb - msb + 1;
unsigned long long mask;
unsigned long long result;
int ull_size = CHAR_BIT * sizeof(unsigned long long);

mask = (1 << mask_size) - 1;
target >>= (ull_size - lsb - 1);
result = mask & target;

return result;

}

Nov 26 '05 #5
Digital Puer wrote:
Skarmander wrote:
You've chosen an unhelpful way of specifying the bits you want. :-)

What's a better way of specifying the bits?

Well, bits are usually numbered from the LSB, starting at 0. Also, a
range specified by its ends needs checking to handle the case when it's
empty. An easier function to write would be

unsigned long long extractBits(unsigned long long source, int low,
int count) {
return (source >> low) && ((1ull << count) - 1);
}

Shorter, clearer, and it doesn't actually need to know how many bits are
in an unsigned long long. But, of course, this may not be what you need
at all, and may instead make things more difficult at the calling end. I
was just making the observation that *if* I had been free to write the
function as conveniently as possible, this would be its interface. :-)

S.
Nov 27 '05 #6
Digital Puer wrote:
Skarmander wrote:
You've chosen an unhelpful way of specifying the bits you want. :-)


What's a better way of specifying the bits?


Specify them as you do with decimal digits
42 base 10
means
4 * 10^1 + 2 * 10^0

Just in the same way,
10 base 2
means
1 * 2^1 + 0 * 2^0

You can leave out leading digits evaluating to zero.
So, if talking about bit 0 (the binary digit associated
with 2^0), everyone knows that it is the least
significant bit and toggles +0/+1 -- irrespective of the
absolute number of available bits.
So, you'd rather go at it like that:
binary ... x ... 1 0 1 1
bit no ... n ... 3 2 1 0

Cheers
Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
Nov 27 '05 #7

Digital Puer wrote:
I'd like to be able to create an integer from a range of contiguous
bits
in another integer. I'm on a big-ending machine, in case that matters.
I would ideally like to create a function with this prototype:

unsigned long long extractValue(unsigned long long target, int a, int
b)

where a and b are the range of bits counted off from the most
significant
bit (where the msb is the 0th bit). For instance, 12345678900 is

00000000 00000000 00000000 00000010 11011111 11011100 00011100
00110100

A call to extractValue(value, 32, 35) should result in 13 (1101 in
binary).

Can someone please help?


It's easier going from the lsb rather than the msb, because it makes
the shifting easier. Then you have:

unsigned long long
extractValue(unsigned long long target, int a, int b)
{
return (target >> a) & ~(~0ULL << (b - a + 1));
}

Rewriting this to work going from the msb is left as an exercise to the
reader.

Gregory Pietsch

Nov 28 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

19
by: cppaddict | last post by:
Hi, I am going to have a series of bit flags which I could store in an array, or as a string ("10011001"), or any other way. I want to be able to turn this series of bits into an int. I know...
9
by: Olumide | last post by:
Thats the question. I know about virtual memory, and the MMU. I just wonder if array members guaranteed to be contiguous in physical memory (and if so, why). Thanks, Olumide
3
by: Vish | last post by:
Hi All I have written a program to count the maximum contiguous set bits in an integer . Like if my binary representation of integer is : 1100111 : then output should be 3....
2
by: Amongin Ewinyu | last post by:
Hi, I'm trying to create a Windows service programmatically that will do the following: - When a user logs on, it will automatically run a service that uses BITS (Background Intelligent...
38
by: Peteroid | last post by:
I looked at the addresses in an 'array<>' during debug and noticed that the addresses were contiguous. Is this guaranteed, or just something it does if it can? PS = VS C++.NET 2005 Express...
22
by: divya_rathore_ | last post by:
No pun intended in the subject :) Is dynamically allocated memory contiguous in C++? In C? Deails would be appreciated. warm regards, Divya Rathore (remove underscores for email ID)
22
by: Jack | last post by:
The following code can be compiled. But When I run it, it causes "Segmentation fault". int main(){ char **c1; *c1 = "HOW"; // LINE1 ++(*c1); *c1 = "ARE";
38
by: djhulme | last post by:
Hi, I'm using GCC. Please could you tell me, what is the maximum number of array elements that I can create in C, i.e. char* anArray = (char*) calloc( ??MAX?? , sizeof(char) ) ; I've...
9
by: jmcgill | last post by:
Saw this used as an example. Compiles without warnings. "Works." Kosher or not? Why or why not? #include <stdio.h> int main(int argc, char **argv){ int i,j,k,l,m; int *p; i=2; j=4; k=8;...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.