Is this an useful optimization ??
Is this an useful optimization ??
Posted Apr 21, 2008 1:30 UTC (Mon) by mikov (guest, #33179)In reply to: Is this an useful optimization ?? by nix
Parent article: GCC and pointer overflows
I understand that. (In fact I used to be intimately familiar with the C99 Standard several years back, before I got disillusioned with it - how can you have any respect for a standard containing "atoi()" ? :-) ). I am not discussing the "meaning" of the Standard. The meaning is more than clear, at least in this case, and if you look at my first post in this thread, you will see me explicitly noting that this is a completely valid transformation according to the Standard. However it is also completely valid *not* to to perform this transformation. So, this is clearly a QOI issue and I am discussing it as such. I am not convinced that optimizing away operations which are otherwise completely valid and useful, only because the standard says that it is allowed (but not required!), is a good idea. The Standard is just a document. Fortunately it is not an absolute truth and it does not prevent us from thinking on our own. Plus, it is not particularly inspiring or useful. As you probably know very well, it is impossible to write an useful C application using only the C standard. *Any* C application is non-portable and non-standard compliant. The C Standard is so weak, that it is practically useless, except as mental self pleasuring, much as we are doing now. (BTW, people often delude themselves that they are writing compliant C, when their applications happen to run on a couple of conventional 32-bit architectures, using the same compiler, in a POSIX environment. Ha! Then they get ported to Windows (or the other way around) and it is taken as an absolute proof of compliance. In fact the applications are a mess of special cases, ifdef-s and non-standard assumptions.)
Posted Apr 21, 2008 6:50 UTC (Mon)
by nix (subscriber, #2304)
[Link] (1 responses)
Posted Apr 21, 2008 17:32 UTC (Mon)
by mikov (guest, #33179)
[Link]
Is this an useful optimization ??
Ah, right. Well, QoI is in the eye of the beholder: I happen to think that
the semantics of pointer overflow are semantics that only a maniac would
rely upon intentionally, so the *most* we need is an extension of the
existing compiler warning that `comparison is always true' or something
along those lines.
Is this an useful optimization ??
I was thinking mostly of integers, not pointers. However I am hard pressed to think of an
example where a pointer overflow would not safely wrap around _in practice_. Even with x86 FAR
pointers, the offset will safely wrap around. There will be no trap and the comparison will
still work.
Are there many architectures, in use today, where pointers are not integers and do not wrap
around on overflow ? Secondly, do these architecture run Linux and are they supported by GCC ?
Regardless of the answer to these questions, why would people writing code with zero chance
for running on those architectures, be maniacs ?
The C Standard is not a measurement for good programming. It simply has a set of restrictions
to ensure portability between all kinds of weird architectures (I should say it fails in this
miserably, but that is beside the point). However portability is not the only, and by far not
the most important measurement of code.