473,378 Members | 1,578 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,378 software developers and data experts.

swap() function without tmp

Hi,
I found the swap() function without a temporary variable.

void swap(int *x, int *y){
*x ^= *y;
*y ^= *x;
*x ^= *y;
}

So, I wrote the next code that exchange the double.

void dswap(double *x, double *y){
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
*(int *)y ^= *(int *)x;
*((int *)y + 1) ^= *((int *)x + 1);
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
}

But it is dirty. Does it rewrite more simply?
---
Regards,
OSHIMA
Nov 14 '05 #1
28 3416
sh*************@mail.goo.ne.jp (OSHIMA) writes:
Hi,
I found the swap() function without a temporary variable.

void swap(int *x, int *y){
*x ^= *y;
*y ^= *x;
*x ^= *y;
}

So, I wrote the next code that exchange the double.

void dswap(double *x, double *y){
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
*(int *)y ^= *(int *)x;
*((int *)y + 1) ^= *((int *)x + 1);
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
}

But it is dirty. Does it rewrite more simply?


This is nonportable, slow, and counterproductive. Use a
temporary, and read the FAQ:

20.15c: How can I swap two values without using a temporary?

A: The standard hoary old assembly language programmer's trick is:

a ^= b;
b ^= a;
a ^= b;

But this sort of code has little place in modern, HLL
programming. Temporary variables are essentially free,
and the idiomatic code using three assignments, namely

int t = a;
a = b;
b = t;

is not only clearer to the human reader, it is more likely to be
recognized by the compiler and turned into the most-efficient
code (e.g. using a swap instruction, if available). The latter
code is obviously also amenable to use with pointers and
floating-point values, unlike the XOR trick. See also questions
3.3b and 10.3.

--
"To get the best out of this book, I strongly recommend that you read it."
--Richard Heathfield
Nov 14 '05 #2
OSHIMA <sh*************@mail.goo.ne.jp> wrote:
Hi,
I found the swap() function without a temporary variable.


I would still recommend using a temporary variable.
--
== Eric Gorr ========= http://www.ericgorr.net ========= ICQ:9293199 ===
"Therefore the considerations of the intelligent always include both
benefit and harm." - Sun Tzu
== Insults, like violence, are the last refuge of the incompetent... ===
Nov 14 '05 #3
OSHIMA wrote:
void swap(int *x, int *y){
*x ^= *y;
*y ^= *x;
*x ^= *y;
}

So, I wrote the next code that exchange the double.

void dswap(double *x, double *y){
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
*(int *)y ^= *(int *)x;
*((int *)y + 1) ^= *((int *)x + 1);
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
}


Hmm, if there was a memxor() function that would exclusive
or one region of memory with another, then this could be
done somewhat portably. memand() and memor() to complete
the set. Maybe it should be added to C2009.

-- glen

Nov 14 '05 #4
Daniel <da****@slashlog.org> scribbled the following:
On 13 May 2004 19:57:29 -0700
sh*************@mail.goo.ne.jp (OSHIMA) wrote:
void swap(int *x, int *y){
*x ^= *y;
*y ^= *x;
*x ^= *y;
}
Beware that this function will not work if *x == *y. I'd say you
should not swap in this case and notify the impossibility somehow. Or
just use a function or a macro that uses a third variable. Speaking for myself only.


It won't work if x == y, you mean. If x == y, the first line will
set *x to 0, and the remaining lines will be XORing 0 by 0, yielding 0.
If x != y but *x == *y it can still work.
Imagine *x == 10 and *y == 10.
First line: *x = 10 ^ 10, i.e. *x = 0
Second line: *y = 10 ^ 0, i.e. *y = 10
Third line: *x = 0 ^ 10, i.e. *x = 10
Output: *x == 10 and *y == 10, as requested.

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
Nov 14 '05 #5
sh*************@mail.goo.ne.jp (OSHIMA) writes:
Hi,
I found the swap() function without a temporary variable.

void swap(int *x, int *y){
*x ^= *y;
*y ^= *x;
*x ^= *y;
}


This fails if x and y point to the same int object.

It can also fail if type int has trap representations. I'm not sure
whether it's reliable if the representation is either one's-complement
or sign-magnitude (each of which has two distinct representations for
0) -- and even if it is, it's probably not worth the effort to prove
it.

If your goal is to swap two variables, just use a temporary. If
you're doing this as an intellectual exercise, have fun, but watch out
for the pitfalls.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
Schroedinger does Shakespeare: "To be *and* not to be"
Nov 14 '05 #6
OSHIMA wrote:
So, I wrote the next code that exchange the double.

void dswap(double *x, double *y){
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
*(int *)y ^= *(int *)x;
*((int *)y + 1) ^= *((int *)x + 1);
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
}


How do you know for sure that sizeof double is 2 * sizeof int?

Kees

Nov 14 '05 #7
sh*************@mail.goo.ne.jp (OSHIMA) wrote in message news:<e2**************************@posting.google. com>...
I found the swap() function without a temporary variable.

void swap(int *x, int *y){
*x ^= *y;
*y ^= *x;
*x ^= *y;
}
basically this is a silly trick. It is also well known. It only works on
scalars. It probably isn't faster than the sane version. And what does this
do?

swap (&a, &a);

So, I wrote the next code that exchange the double.

void dswap(double *x, double *y){
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
*(int *)y ^= *(int *)x;
*((int *)y + 1) ^= *((int *)x + 1);
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
}

But it is dirty. Does it rewrite more simply?


void dswap(double *x, double *y)
{
double t;

t = &a;
&a = &b;
&b = t;
}

--
Nick Keighley
Nov 14 '05 #8
In <e2**************************@posting.google.com > sh*************@mail.goo.ne.jp (OSHIMA) writes:
Hi,
I found the swap() function without a temporary variable.

void swap(int *x, int *y){
*x ^= *y;
*y ^= *x;
*x ^= *y;
}

So, I wrote the next code that exchange the double.

void dswap(double *x, double *y){
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
*(int *)y ^= *(int *)x;
*((int *)y + 1) ^= *((int *)x + 1);
*(int *)x ^= *(int *)y;
*((int *)x + 1) ^= *((int *)y + 1);
}

But it is dirty. Does it rewrite more simply?


Before wasting time with such things, ask yourself: what is the point of
not doing the swap the natural way, using a temporary?

The *portable* way of doing what you want to do is to swap the two doubles
on a byte by byte basis. The result is going to be ludicrously slow,
compared to the normal procedure.

The nonportable way of solving your problem is aliasing your doubles with
unsigned long long's and swapping the latter. It relies on a few
assumptions not guaranteed by the standard and on the existence of the
type long long (or some other 64-bit type) on your implementation.

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 14 '05 #9
In <hXYoc.6889$Dz.414463@attbi_s52> glen herrmannsfeldt <ga*@ugcs.caltech.edu> writes:
the set. Maybe it should be added to C2009.

^^^^^
Apparently, there is going to be no such thing. C99 is far too good to
be replaced after a mere decade ;-)

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 14 '05 #10
Nick Keighley wrote:

sh*************@mail.goo.ne.jp (OSHIMA) wrote in message news:<e2**************************@posting.google. com>...
I found the swap() function without a temporary variable.

void swap(int *x, int *y){
*x ^= *y;
*y ^= *x;
*x ^= *y;
}


basically this is a silly trick. It is also well known.
It only works on scalars.


"scalars" is too general.
Bitwise operations are only defined for integer types.

--
pete
Nov 14 '05 #11
ni***********@marconi.com (Nick Keighley) wrote in message news:<8a**************************@posting.google. com>...
void dswap(double *x, double *y)
{
double t;

t = &a;
&a = &b;
&b = t;
}


I didn't know you could store the address of a variable in a
non-pointer(here double) variable. Or was that a typo?
Nov 14 '05 #12
In <ln************@nuthaus.mib.org> Keith Thompson <ks***@mib.org> writes:
sh*************@mail.goo.ne.jp (OSHIMA) writes:
Hi,
I found the swap() function without a temporary variable.

void swap(int *x, int *y){
*x ^= *y;
*y ^= *x;
*x ^= *y;
}
This fails if x and y point to the same int object.


This can be trivially tested.
It can also fail if type int has trap representations. I'm not sure
whether it's reliable if the representation is either one's-complement
or sign-magnitude (each of which has two distinct representations for
0) -- and even if it is, it's probably not worth the effort to prove
it.
Trivially avoided by using pointers to unsigned int instead. Unless we
start introducing padding bits and other nonsense into the picture...
If your goal is to swap two variables, just use a temporary.
Couldn't agree more.
If you're doing this as an intellectual exercise, have fun, but watch out
for the pitfalls.


The more you study it as an intellectual exercise, the more its futility
becomes obvious.

However, memswap() would have made sense in the standard C library, as
there is no portable and efficient method of implementing it in C.

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 14 '05 #13
"Beni" <be******@hotmail.com> wrote in message
news:e5**************************@posting.google.c om...
ni***********@marconi.com (Nick Keighley) wrote in message

news:<8a**************************@posting.google. com>...
void dswap(double *x, double *y)
{
double t;

t = &a;
&a = &b;
&b = t;
}


I didn't know you could store the address of a variable in a
non-pointer(here double) variable. Or was that a typo?


Should be * instead of & throughout, and either a and b should be x and y
(or y and x) throughout, or x and y should be a and b (or b and a). Other
than that, it was perfect :).

Alex
Nov 14 '05 #14
Dan Pop wrote:
In <hXYoc.6889$Dz.414463@attbi_s52> glen herrmannsfeldt <ga*@ugcs.caltech.edu> writes:
the set. Maybe it should be added to C2009.

^^^^^

Apparently, there is going to be no such thing. C99 is far too good to
be replaced after a mere decade ;-)


Or there might not be enough C99 compilers available by 2009?

I was always so disappointed the Fortran didn't keep up
the trend from 66 to 77 with 88 and 99.

-- glen

Nov 14 '05 #15
pete <pf*****@mindspring.com> writes:
[...]
"scalars" is too general.
Bitwise operations are only defined for integer types.


And personally, I value my sanity too much to try to use bitwise
operators on anything other than unsigned integer types. That's not
to say that you *can't* use bitwise operators on signed integer types,
but it rarely makes sense to do so.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
Schroedinger does Shakespeare: "To be *and* not to be"
Nov 14 '05 #16
Hi,
Thanks a lot of reply messages.
How do you know for sure that sizeof double is 2 * sizeof int?
Kees
It is my mistake. A 'int' means a 'long'. :)
Hmm, if there was a memxor() function that would exclusive
or one region of memory with another, then this could be
done somewhat portably. memand() and memor() to complete
the set. Maybe it should be added to C2009.
-- glen
A memxor() not implemeted my environment(library) yet.
But it's easy to implement for me. Thanks a valuable
information.
I would still recommend using a temporary variable.
Eric *portable* way of doing what you want to do is to swap the two doubles
on a byte by byte basis. The result is going to be ludicrously slow,
Dan
Yes, I know my program is slow and tricky.
But, imagine the microchip programming like a PIC.
(which has 64/128 byte's mem only --It is off topic here?)
A double tmp variable needs 8 bytes stack and microchip
has not engough memory. So, I need a double swap() without
tmp rather than a speed.
Don't say 'Use Assembly Language'. :(
The nonportable way of solving your problem is aliasing
your doubles with unsigned long long's and swapping the latter.


void dswap(double *x, double *y){
*(long long *)x ^= *(long long *)y;
*(long long *)y ^= *(long long *)x;
*(long long *)x ^= *(long long *)y;
}

In my programming environment, it worked correctly and object
code has not use the surplus mem.
Thanks a lot. >> for all
---
Regards,
OSHIMA
Nov 14 '05 #17
Keith Thompson wrote:

pete <pf*****@mindspring.com> writes:
[...]
"scalars" is too general.
Bitwise operations are only defined for integer types.


And personally, I value my sanity too much to try to use bitwise
operators on anything other than unsigned integer types. That's not
to say that you *can't* use bitwise operators on signed integer types,
but it rarely makes sense to do so.


I have only one code example where it is OK
to use a bitwise operator on an int.

The code example is
unsigned mask = ((unsigned char)-1 >> 1) + 1;
for masking the most significant bit of a byte.

The left operand of the shift operator is promoted to either
int or unsigned. In the case when it is promoted to int,
the sign bit is not involved in the operations.

--
pete
Nov 14 '05 #18

On Sat, 15 May 2004, OSHIMA wrote:

Thanks a lot of reply messages.
You're welcome, but please don't snip attributions. Those are
the lines that say "On Foo 2004, Bar wrote:", and they tell the
reader (us) who's talking. It's politeness.

[Someone wrote:]
How do you know for sure that sizeof double is 2 * sizeof int?
Kees


It is my mistake. A 'int' means a 'long'. :)


(: Of course, the same objection applies to 'long' (or any other
type you care to mention).
Hmm, if there was a memxor() function that would exclusive
or one region of memory with another, then this could be
done somewhat portably. memand() and memor() to complete
the set. Maybe it should be added to C2009.


A memxor() not implemented [in] my environment(library) yet.
But it's easy to implement for me. Thanks a valuable
information.


I'm pretty sure this corresponds to what you'll want. Untested
code, though.

#include <stdlib.h>

void mem_xor(void *p, const void *q, size_t len)
{
unsigned char *cp = p, *cend = cp+len;
const unsigned char *cq = q;
while (cp != cend)
*cp++ ^= *cq++;
}
[re: better use a temp] Yes, I know my program is slow and tricky.
But, imagine the microchip programming like a PIC.
(which has 64/128 byte's mem only --It is off topic here?)
Technically, yes, PIC implementations that don't allow the
construction of objects at least 65535 bytes in size cannot be
conforming hosted C implementations, and thus are off-topic
in comp.lang.c. In reality, I think most questions about C
on PICs turn out to apply equally to hosted implementations.
This one seems to me to qualify. :)
A double tmp variable needs 8 bytes stack and microchip
has not enough memory.
You mean, your implementation doesn't even allocate 8 bytes
for a stack? That's pretty tight (and not in the good way,
either)! The obvious "fix" would be to make the temporary
variable 'static', but that would actually be worse, memory-wise,
than the 'auto' solution, assuming a naive optimizer.
Are you *sure* that you can't get a better optimizing compiler,
or activate more optimizations on the one you have? I don't
know your system, but it seems to me that if your system can
perform

x ^= y;

in registers, where x and y are memory locations, then it
certainly ought to also provide an 'XCHG' instruction to exchange
two memory locations. And if such an instruction exists, your
compiler ought to provide a way to access it, either through
its own optimizations or directly through inline assembly code
(which is *definitely* off-topic here).
Don't say 'Use Assembly Language'. :(


Ookaay... but it *would* be the simplest way, wouldn't it? :)
The nonportable way of solving your problem is aliasing
your doubles with unsigned long long's and swapping the latter.


void dswap(double *x, double *y){
*(long long *)x ^= *(long long *)y;
*(long long *)y ^= *(long long *)x;
*(long long *)x ^= *(long long *)y;
}

In my programming environment, it worked correctly and object
code has not use the surplus mem.


But it's just as non-portable as if you'd used inline assembly
code, and much slower and larger --- so where's the gain? I
don't get it.

-Arthur
Nov 14 '05 #19
On 15 May 2004 04:33:10 -0700, in comp.lang.c ,
sh*************@mail.goo.ne.jp (OSHIMA) wrote:
Hi,
Thanks a lot of reply messages.
How do you know for sure that sizeof double is 2 * sizeof int?
Kees


It is my mistake. A 'int' means a 'long'. :)


It doesn't matter, the question still stands. The answer by the way is "you
can't - C doesn't mandate the sizes of types, only how much data they must
be able to hold".
--
Mark McIntyre
CLC FAQ <http://www.eskimo.com/~scs/C-faq/top.html>
CLC readme: <http://www.angelfire.com/ms3/bchambless0/welcome_to_clc.html>
----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Nov 14 '05 #20
In <Ad9pc.1530$gr.85576@attbi_s52> glen herrmannsfeldt <ga*@ugcs.caltech.edu> writes:
Dan Pop wrote:
In <hXYoc.6889$Dz.414463@attbi_s52> glen herrmannsfeldt <ga*@ugcs.caltech.edu> writes:

the set. Maybe it should be added to C2009.

^^^^^

Apparently, there is going to be no such thing. C99 is far too good to
be replaced after a mere decade ;-)


Or there might not be enough C99 compilers available by 2009?


Then, it is a fair bet that there will NEVER be enough C99 compilers.
Any provider of C implementations who didn't upgrade to C99 after 10
years most likely is not interested in providing a C99 implementation
at all.

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 14 '05 #21
In <ln************@nuthaus.mib.org> Keith Thompson <ks***@mib.org> writes:
pete <pf*****@mindspring.com> writes:
[...]
"scalars" is too general.
Bitwise operations are only defined for integer types.


And personally, I value my sanity too much to try to use bitwise
operators on anything other than unsigned integer types. That's not
to say that you *can't* use bitwise operators on signed integer types,
but it rarely makes sense to do so.


It makes sense to do so any time you (have good reasons to) expect a
positive result.

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 14 '05 #22
Dan Pop wrote:
In <Ad9pc.1530$gr.85576@attbi_s52> glen herrmannsfeldt <ga*@ugcs.caltech.edu> writes:

Dan Pop wrote:

In <hXYoc.6889$Dz.414463@attbi_s52> glen herrmannsfeldt <ga*@ugcs.caltech.edu> writes:

the set. Maybe it should be added to C2009.

^^^^^

Apparently, there is going to be no such thing. C99 is far too good to
be replaced after a mere decade ;-)


Or there might not be enough C99 compilers available by 2009?

Then, it is a fair bet that there will NEVER be enough C99 compilers.
Any provider of C implementations who didn't upgrade to C99 after 10
years most likely is not interested in providing a C99 implementation
at all.

Dan


I keep getting subliminal messages from here and elsewhere that C99
is a non-starter. C89 on the other hand did the right thing. It
seems nobody 'needs' C99. K&R2 is a best-seller at $40. All of us
have one and newbies are still buying. The C99 Standard doesn't draw
flies at $18. Maybe nobody wants it.

I could be wrong. I have been before. I'll spare you all the list.
--
Joe Wright mailto:jo********@comcast.net
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 14 '05 #23
On Tue, 18 May 2004 19:23:55 -0400, Joe Wright wrote:
I keep getting subliminal messages from here and elsewhere that C99
is a non-starter. C89 on the other hand did the right thing. It
seems nobody 'needs' C99. K&R2 is a best-seller at $40. All of us
have one and newbies are still buying. The C99 Standard doesn't draw
flies at $18. Maybe nobody wants it.

I could be wrong. I have been before. I'll spare you all the list.


I won't speak to the long-term viability of C99 as a whole, but I do
know this: GCC, the GNU Compiler Collection, implements a conforming C89
compiler. It gives all the right warnings (after a bit of command-line
prodding) and implements all the right semantics. It also implements a
non-conforming attempt at a C99 compiler, some of which is accomplished by
simply not giving warnings or errors for traditional GNU C extensions.

This state of affairs seems to trouble nobody important. Nearly all new
code in the open-source community is either (nominally) C89 or GNU C, and
none that I've found require C99 features beyond what GCC will provide in
a non-conforming mode.

GCC is the standard compiler for this market. If GCC supports it, there's
a chance it will be used. Contrariwise, if GCC ignores it, there's a
chance the community as a whole just doesn't care.

(Of course, I don't see the need for C99, so I'm biased. I think C89 gives
us function prototypes, the ability to return structs and unions, good
pointer semantics and limitations, and the ability to write idiomatic code
in a conforming way. C99 gives us compound literals, the bool type,
restricted pointers, and long long. No killer features, nothing I really
missed when programming C before.)

--
yvoregnevna gjragl-guerr gjb-gubhfnaq guerr ng lnubb qbg pbz
To email me, rot13 and convert spelled-out numbers to numeric form.
"Makes hackers smile" makes hackers smile.

Nov 14 '05 #24
In <Mo********************@comcast.com> Joe Wright <jo********@comcast.net> writes:
I keep getting subliminal messages from here and elsewhere that C99
is a non-starter. C89 on the other hand did the right thing. It
seems nobody 'needs' C99. K&R2 is a best-seller at $40. All of us ^^^^^^have one and newbies are still buying. The C99 Standard doesn't draw
flies at $18. Maybe nobody wants it.

^^^^^^
"Nobody" is too strong. The demand exists, but it's not significant
enough to justify the effort of producing conforming C99 implementations.

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 14 '05 #25
In <pa****************************@sig.now> August Derleth <se*@sig.now> writes:
I won't speak to the long-term viability of C99 as a whole, but I do
know this: GCC, the GNU Compiler Collection, implements a conforming C89
compiler. It gives all the right warnings (after a bit of command-line
prodding) and implements all the right semantics. It also implements a
non-conforming attempt at a C99 compiler, some of which is accomplished by
simply not giving warnings or errors for traditional GNU C extensions.

This state of affairs seems to trouble nobody important. Nearly all new
code in the open-source community is either (nominally) C89 or GNU C, and
none that I've found require C99 features beyond what GCC will provide in
a non-conforming mode.

GCC is the standard compiler for this market. If GCC supports it, there's
a chance it will be used. Contrariwise, if GCC ignores it, there's a
chance the community as a whole just doesn't care.
It was a major blunder to ignore GNU C when designing C99. If a few
C99 features didn't have semantics conflicting with the semantics of
the same features in GNU C, gcc would have had a conforming -std=c99
mode by now. The issue is purely political, there are no technical
difficulties.

Furthermore, if C99 had more GNU C features, the demand for C99 would have
been far greater. E.g. the addition of typeof and block expressions
would have greatly improved the capabilities of the function-like macros.

Of course, these considerations have nothing to do with the standard C99
library, which is where most of work of upgrading from C89 to C99 goes.
(Of course, I don't see the need for C99, so I'm biased. I think C89 gives
us function prototypes, the ability to return structs and unions, good
pointer semantics and limitations, and the ability to write idiomatic code
in a conforming way. C99 gives us compound literals, the bool type,
restricted pointers, and long long. No killer features, nothing I really
missed when programming C before.)


Integer 64-bit support seems to be important to many people, but most
C89 implementations in current use provide it, one way or another, so
people see no point in switching to C99 just for that. And those liking
the idea of <stdint.h>, can have it for C89, too (free implementations
exist).

And Fortran programmers are not going to abandon their favourite
programming language and switch to C99 simply because it now supports
many traditional Fortran features (VLAs, complex arithmetic and library
functions, generic function calls).

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 14 '05 #26
Dan Pop <Da*****@cern.ch> wrote:

It was a major blunder to ignore GNU C when designing C99.
GNU C wasn't ignored, but it wasn't considered to be any more important
than any other existing implementation. And since none of the GCC
developers or serious users could be bothered to join the committee or
attend meetings (not even occasionally), it probably didn't receive as
much attention as implementations that had advocates attending committee
meetings, or as much as it deserved. Microsoft C was in much the same
boat for the same reason.
If a few
C99 features didn't have semantics conflicting with the semantics of
the same features in GNU C, gcc would have had a conforming -std=c99
mode by now. The issue is purely political, there are no technical
difficulties.


That is simply incorrect. Although some of the conflicts were
undoubtedly caused inadvertently due to simple ignorance (see above),
others were deliberate reactions to technical shortcomings in GCC.
Describing the issue as "political" is not accurate -- the committee has
never had any animosity toward GCC, despite the converse not being true.
(But I must hasten to add that that attitude is long gone and the
current GCC developers seem genuinely interested in producing a
conforming implementation.)

-Larry Jones

That gives me a FABULOUS idea. -- Calvin
Nov 14 '05 #27
la************@ugsplm.com wrote:
Dan Pop <Da*****@cern.ch> wrote:

It was a major blunder to ignore GNU C when designing C99.


GNU C wasn't ignored, but it wasn't considered to be any more
important than any other existing implementation. And since none
of the GCC developers or serious users could be bothered to join
the committee or attend meetings (not even occasionally), it
probably didn't receive as much attention as implementations that
had advocates attending committee meetings, or as much as it
deserved. Microsoft C was in much the same boat for the same
reason.


I suspect that the high price of such 'joining', together with the
unpaid volunteer aspect of gcc development, had more than a little
to do with it. Microsoft simply doesn't care, any standards
impede their freedom to 'innovate, foul, and charge'.

--
Chuck F (cb********@yahoo.com) (cb********@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!
Nov 14 '05 #28
In <8i************@jones.homeip.net> la************@ugsplm.com writes:
Dan Pop <Da*****@cern.ch> wrote:

It was a major blunder to ignore GNU C when designing C99.
GNU C wasn't ignored, but it wasn't considered to be any more important
than any other existing implementation.


Which is sheer stupidity. Not all existing implementations are equally
important.
And since none of the GCC
developers or serious users could be bothered to join the committee or
attend meetings (not even occasionally), it probably didn't receive as
much attention as implementations that had advocates attending committee
meetings, or as much as it deserved.
GNU C is pretty well documented. And its extensions are nicely grouped
together in a separate chapter.
Microsoft C was in much the same boat for the same reason.
In other words, the two implementations *by far* the most important have
been given Cinderella status, for purely bureaucratic reasons. Yeah,
that's typical committee thinking and a clear explanation for why the
C programming community at large is turning a deaf ear and a blind eye
to C99.

If gcc and Microsoft C were C99-conforming today, C89 would have been
history: any implementor targeting major hosted platforms and still
willing to survive would have followed their example.
If a few
C99 features didn't have semantics conflicting with the semantics of
the same features in GNU C, gcc would have had a conforming -std=c99
mode by now. The issue is purely political, there are no technical
difficulties.


That is simply incorrect. Although some of the conflicts were
undoubtedly caused inadvertently due to simple ignorance (see above),
others were deliberate reactions to technical shortcomings in GCC.


The idea was not to introduce semantic differences between GNU C features
with a well established status and new C99 features with the same name
and/or purpose. Not to adopt all the technical shortcomings of GNU C in
the C99 standard...
Describing the issue as "political" is not accurate -- the committee has
never had any animosity toward GCC, despite the converse not being true.
You misunderstood my words. I was talking about gcc's conformance issue
as being purely political: the gcc people don't want to break their
semantics, apparently not even in -std=c99 mode.

I attribute the ignorance of GNU C features to sheer committee stupidity,
not to any political agenda.
(But I must hasten to add that that attitude is long gone and the
current GCC developers seem genuinely interested in producing a
conforming implementation.)


Well, I haven't noticed any *documented* progress since 2001 or so...

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 14 '05 #29

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

Similar topics

2
by: Davis King | last post by:
Can I assume that std::swap will not throw when it is used to swap std::string objects? In the standard it says that the swap() std::string member function runs in constant time. I didn't see...
50
by: Steve | last post by:
How do you rewrite the swap function without using a tmp variable in the swap function???? int main() { int x = 3; int y = 5; // Passing by reference
2
by: ma740988 | last post by:
So I'm reading the C++ coding standards(Shutter & Andrei), more specifically item 56. There's a statement: "Prefer to provide a nonmember swap function in the same namespace as your type when...
21
by: Abhishek Jha | last post by:
hello all, this has been an interesting topic since long. you can swap two numbers (say a and b) using temp(as third variable). you can also swap without using third variable.likeThis was also...
12
by: Eugen J. Sobchenko | last post by:
Hi! I'm writing function which swaps two arbitrary elements of double-linked list. References to the next element of list must be unique or NULL (even during swap procedure), the same condition...
9
by: ma740988 | last post by:
Consider: # include <vector> # include <iostream> # include <cstdlib> # include <ctime> bool ispow2i ( double n ) {
28
by: Jess | last post by:
Hello, It is said that if I implement a "swap" member function, then it should never throw any exception. However, if I implement "swap" non- member function, then the restriction doesn't...
11
by: Dennis Jones | last post by:
Hi all, 1) Let's say you have two char 's of the same size. How would you write a no-fail swap method for them? For example: class Test { char s; void swap( Test &rhs ) {
21
by: raylopez99 | last post by:
In the otherwise excellent book C# 3.0 in a Nutshell by Albahari et al. (3rd edition) (highly recommended--it's packed with information, and is a desktop reference book) the following statement is...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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...

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.