Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C Programming > Shift Operation

Reply
Thread Tools

Shift Operation

 
 
Nishu
Guest
Posts: n/a
 
      10-09-2006
Hi All,

Could you please explain whether C standard supports logical right
shift operation using some operator?

I know somewhere I read about >>> operator. I thought, it is in C but i
think i'm wrong about it. No where google helps me determining this
lapse in my memory. MSVC 6 compiler gives me error.

Thanks && Regards,
Nishu

 
Reply With Quote
 
 
 
 
Richard Heathfield
Guest
Posts: n/a
 
      10-09-2006
Nishu said:

> Hi All,
>
> Could you please explain whether C standard supports logical right
> shift operation using some operator?


C's right shift operator, >>, works like this:

A >> B will yield a result that is equivalent to A shifted right through B
bit positions. If A is negative, the result is implementation-defined.

There is also a >>= operator, of course, so that you can do A >>= B instead
of A = A >> B

> I know somewhere I read about >>> operator. I thought, it is in C


No, 'fraid not.


--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
 
Reply With Quote
 
 
 
 
Nishu
Guest
Posts: n/a
 
      10-09-2006

Richard Heathfield wrote:
> Nishu said:
>
> > Hi All,
> >
> > Could you please explain whether C standard supports logical right
> > shift operation using some operator?

>
> C's right shift operator, >>, works like this:
>
> A >> B will yield a result that is equivalent to A shifted right through B
> bit positions. If A is negative, the result is implementation-defined.


If i take a signed integer, so right shifting a negative int should
give me another negative int (signed arithmetic) or a positive integer.
Is this C standard defines or implementation defines?

Actually i want to know whether
long A;
A = 0xFFFFFFFF;

A >>= 1;

A &= 0x80000000

if(A)
{
printf("operator is arithmetic right shift");
}
else
{
printf(" operator is logical right shift");
}


Thanks.
Nishu

 
Reply With Quote
 
Richard Bos
Guest
Posts: n/a
 
      10-09-2006
"Nishu" <> wrote:

> Could you please explain whether C standard supports logical right
> shift operation using some operator?


No. Or rather, not reliably.

Right shifting on unsigned integers is, of course, neither logical nor
arithmetical (or both, if you wish); zeros get shifted in from the high
end, but there is no sign bit to copy or not to copy.

Right shifting on signed integers is different for positive and negative
signed integers.
If the signed integer has a positive or zero value, zero bits are
shifted in from the high end just as for unsigned types; it makes no
difference whether this is because it is a logical shift, or whether
it's an arithmetical shift with a zero sign bit being copied. A zero bit
is, after all, equal to any other zero bit.
If, however, the signed integer has a negative value, the resulting
value is implementation-defined. This means that your program is not
allowed to crash on this operation[1], but the Standard doesn't require
any particular result. All it requires is that your implementation
defines what the result will be. This could be a logical shift, an
arithmetical shift, or something entirely different (which might makes
sense on, e.g., one's-complement machines).

So in short, _your compiler_ might use a logical right shift if you use
the normal C >> shifting operator, but that assumption is not portable:
there's no guarantee that this will work on the next platform you try it
on.

> I know somewhere I read about >>> operator. I thought, it is in C but i
> think i'm wrong about it.


There is indeed no such thing.

Richard

[1] Unlike _left_-shifting a signed integer where the result would
overflow; that is undefined, and may therefore crash.
 
Reply With Quote
 
Walter Roberson
Guest
Posts: n/a
 
      10-09-2006
In article <. com>,
Nishu <> wrote:

>If i take a signed integer, so right shifting a negative int should
>give me another negative int (signed arithmetic) or a positive integer.
>Is this C standard defines or implementation defines?


Implementation. Except that those aren't the only two choices
available to the implementation...



>Actually i want to know whether


>long A;
>A = 0xFFFFFFFF;


>A >>= 1;


>A &= 0x80000000


>if(A)
>{
>printf("operator is arithmetic right shift");
>}
>else
>{
>printf(" operator is logical right shift");
>}


You are presuming that A = 0xFFFFFFFF will store a negative number
in A. That is a bad assumption:

1) long might have more than 32 bits, in which case 0xFFFFFFFF
would just be a regular signed number. It is not uncommon for long
to be 64 bits with int being 32 bits, short 16 bits, char 8 bits.
But it is also not uncommon for int and long both to be the same size
of 32 bits; there are also a number of compilers for which
long is 32 bits, int is 16 bits...

2) 0xFFFFFFFF is not specifically indicated as a long constant via an 'L'
suffix; interpretation of it starts out by considering it as a
signed int. No negative sign is present in the number, so the
compiler will inspect to determine whether 0xFFFFFFFF fits within
the positive range of signed int on that system; if it does then
0xFFFFFFFF would be considered a positive signed int and there would
then be an implicit cast of that positive signed int into a long for
storage into A; as long is promised to be at least as wide as int,
that would either involve leaving the number unchanged or else
widening it if necessary; widening on most systems would involve
sticking the value in the low bits and zero-filling the upper bits,
but int and long need not have the same internal padding bit structures
so an actual representation change might take place.

If the compiler determines that 0xFFFFFFFF does not fit within
the positive range of signed int, then it would reconsider it as
potentialy being a positive signed long; if it does not fit within
a positive signed long, then it would convert it to unsigned long, which
it should fit into. So you would now have an unsigned long constant
token and you would have a simple long destination to store it into.
The C standard says that if you attempt to store an unsigned
value into a signed location, and the unsigned value fits within
the positive range of the signed type, then the positive value
will be stored -- but it also says that if the unsigned value does
*not* fit within the positive range of the signed type, that the
result of the conversion is up to the implementation. Thus,
long A = 0xFFFFFFFF is not necessarily going to produce a negative
result in A, even if the implementation happens to use 32 bit long.
--
I was very young in those days, but I was also rather dim.
-- Christopher Priest
 
Reply With Quote
 
Richard Heathfield
Guest
Posts: n/a
 
      10-09-2006
Nishu said:

> Richard Heathfield wrote:


<snip>

>> If A is negative, the result is implementation-defined.

>
> If i take a signed integer, so right shifting a negative int should
> give me another negative int (signed arithmetic) or a positive integer.
> Is this C standard defines or implementation defines?


If A is negative, the result is implementation-defined.

> Actually i want to know whether
> long A;
> A = 0xFFFFFFFF;
>
> A >>= 1;
>
> A &= 0x80000000
>
> if(A)
> {
> printf("operator is arithmetic right shift");
> }
> else
> {
> printf(" operator is logical right shift");
> }


If A is negative, the result is implementation-defined.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
 
Reply With Quote
 
Nishu
Guest
Posts: n/a
 
      10-09-2006

Walter Roberson wrote:
> In article <. com>,
> Nishu <> wrote:
>
> >If i take a signed integer, so right shifting a negative int should
> >give me another negative int (signed arithmetic) or a positive integer.
> >Is this C standard defines or implementation defines?

>
> Implementation. Except that those aren't the only two choices
> available to the implementation...


< snip>

> The C standard says that if you attempt to store an unsigned
> value into a signed location, and the unsigned value fits within
> the positive range of the signed type, then the positive value
> will be stored -- but it also says that if the unsigned value does
> *not* fit within the positive range of the signed type, that the
> result of the conversion is up to the implementation. Thus,
> long A = 0xFFFFFFFF is not necessarily going to produce a negative
> result in A, even if the implementation happens to use 32 bit long.


Thanks. I got it. C is indeed very flexible and benevolent to
compilers.

-Nishu

 
Reply With Quote
 
mark_bluemel@pobox.com
Guest
Posts: n/a
 
      10-09-2006

Nishu wrote:


> I know somewhere I read about >>> operator. I thought, it is in C but i
> think i'm wrong about it.


>>> (unsigned right shift) exists in Java <http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#15.19>, but not in standard C.


 
Reply With Quote
 
Frederick Gotham
Guest
Posts: n/a
 
      10-09-2006
Nishu posted:

> I know somewhere I read about >>> operator.



Maybe you could write one yourself? If you know that "unsigned int" and
"signed int" have no padding, then you could simply do:

int i = -57;

*(unsigned*)&i >>= 4;

Or maybe something like:

i < 0 ? (i = -i) >>= 4, i = -i : i >>= 4

--

Frederick Gotham
 
Reply With Quote
 
Flash Gordon
Guest
Posts: n/a
 
      10-09-2006
Frederick Gotham wrote:
> Nishu posted:
>
>> I know somewhere I read about >>> operator.


Where >>> is meant to be a logical shift right.

> Maybe you could write one yourself? If you know that "unsigned int" and
> "signed int" have no padding, then you could simply do:
>
> int i = -57;
>
> *(unsigned*)&i >>= 4;


Given your limitations I believe this would work.

> Or maybe something like:
>
> i < 0 ? (i = -i) >>= 4, i = -i : i >>= 4


This one will overflow with INT_MIN if INT_MIN == -INT_MAX - 1, i.e. on
most 2s complement machines.
--
Flash Gordon
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Java left shift and right shift operators. Sanny Java 38 04-29-2011 10:02 PM
what "shift" does, if not "$_ = shift;" ? devphylosoff Perl Misc 3 12-04-2007 12:27 AM
Left Shift / Right Shift Operators Santosh Nayak C Programming 16 11-30-2006 05:10 PM
Shift - byte[] buf shift Roberto Gallo Java 3 01-27-2004 04:26 PM
left shift then right shift an unsigned int Wenjie C++ 3 07-11-2003 08:22 PM



Advertisments
 



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