vote up 1 vote down star

Left and right shift operators (<< and >>) are already available in C++. However, I couldn't find out how I could perform circular shift or rotate operations.

How can operations like "Rotate Left" and "Rotate Right" be performed?

Rotating right twice here

Initial --> 1000 0011 0100 0010

should result in:

Final   --> 1010 0000 1101 0000

An example would be helpful.

flag

8 Answers

vote up 7 vote down check

using the inline assembler:

__asm
{
rol number,1
}

Clarification: rol, ror are the bitshift operators of the cpu. the one represents the amount. You can use normal variable names in the inline assemler.

Addit: Here's a page with solutions in C

link|flag
2  
This assumes a particular architecture of course, and makes the code acutely less portable. :) Obvious points, but worth mentioning, imo. – unwind Apr 22 at 10:38
x86 only? Or does this work on all CPUs? – MSalters Apr 22 at 10:38
2  
it works on all cpus with the ROL/R commands. So the answer is: "no. But on most relevant ones." However, when you look at the examples under the link, you see that, this is really the most elegant solution, as everything else gets wordy and/or produces much more machine code. – AndreasT Apr 22 at 10:48
In the statement "rol number, 1" , can't we have the number of shifts as a variable? – Elroy Apr 22 at 13:59
I don't think so. I'm fairly certain that there are RISC CPUs that do not offer it. They only have ROL x, constant. – MSalters Apr 22 at 14:20
show 1 more comment
vote up 7 vote down

Since it's C++, use an inline function:

template <typename INT> 
T rol(T val) {
    return (val << 1) | (val >> (sizeof(T)*CHAR_BIT-1));
}

C++0x would add constexpr as the return expression is an ICE if the argument is.

link|flag
Is this really a rotate left? And isn't the part with the sizeof missing an &, or something? – unwind Apr 22 at 10:40
Looks like a rotate right, but otherwise correct – James Hopkin Apr 22 at 10:52
Fixed the roation direction, and this assumes you're shifting in zeroes on both sides (which is why you shouldn't do this for signed integer types). – MSalters Apr 22 at 14:25
vote up 3 vote down

Most compilers have intrinsics for that. Visual Studio for example _rotr8, _rotr16

link|flag
vote up 2 vote down

Assuming you want to shift right by L bits, and the input x is a number with N bits:

unsigned ror(unsigned x, int L, int N) 
{
    unsigned lsbs = x & ((1 << L) - 1);
    return (x >> L) | (lsbs << (N-L));
}
link|flag
vote up 1 vote down

In details you can apply the following logic.

If Bit Pattern is 33602 in Integer 1000 0011 0100 0010

and you need to Roll over with 2 right shifs then: first make a copy of bit pattern and then left shift it: Length - RightShift i.e. length is 16 right shift value is 2 16 - 2 = 14

After 14 times left shifting you get. 1000 0000 0000 0000

Now right shift the value 33602, 2 times as required. You get 0010 0000 1101 0000

Now take an OR between 14 time left shifted value and 2 times right shifted value.

1000 0000 0000 0000

0010 0000 1101 0000

1010 0000 1101 0000

And you get your shifted rollover value. Remember bit wise operations are faster and this don't even required any loop.

link|flag
Similar to the subroutines above... b = b << m | b >> (N-m); – S M Kamran Apr 22 at 11:41
vote up 0 vote down

#define ROTATE_RIGHT(x) ( (x>>1) | (x&1?0x8000:0) )

link|flag
you should wrap x into parentheses to avoid nasty surprises with expressions as argument to the macro. – Johannes Rössel Apr 22 at 10:32
If the value's not 16-bit, you silently get nonsense – James Hopkin Apr 22 at 10:32
vote up 0 vote down

Overload a function:

unsigned int rotate_right(unsigned int x)
{
 return (x>>1 | (x&1?0x80000000:0))
}

unsigned short rotate_right(unsigned short x) { /* etc. */ }
link|flag
vote up 0 vote down

How abt something like this, using the standard bitset ...

#include <bitset> 
#include <iostream> 

template <std::size_t N> 
inline void 
rotate(std::bitset<N>& b, unsigned m) 
{ 
   b = b << m | b >> (N-m); 
} 

int main() 
{ 
   std::bitset<8> b(15); 
   std::cout << b << '\n'; 
   rotate(b, 2); 
   std::cout << b << '\n'; 

   return 0;
}

HTH,

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.