On Thu, Nov 19, 2020 at 09:59:51AM -0500, Steven Rostedt wrote:
On Thu, 19 Nov 2020 08:37:35 -0600
Segher Boessenkool [off-list ref] wrote:
quoted
quoted
Note that we have a fairly extensive tradition of defining away UB with
language extentions, -fno-strict-overflow, -fno-strict-aliasing,
These are options to make a large swath of not correct C programs
compile (and often work) anyway. This is useful because there are so
many such programs, because a) people did not lint; and/or b) the
problem never was obvious with some other (or older) compiler; and/or
c) people do not care about writing portable C and prefer writing in
their own non-C dialect.
Note, this is not about your average C program. This is about the Linux
kernel, which already does a lot of tricks in C.
Yes, I know. And some of that can be supported just fine (usually
because the compiler explicitly supports it); some of that will not
cause problems in practice (e.g. the scope it could cause problems in
is very limited); and some of that is just waiting to break down. The
question is what category your situation here is in. The middle one I
think.
There's a lot of code in
assembly that gets called from C (and vise versa).
That is just fine, that is what ABIs are for :-)
We modify code on the
fly (which tracepoints use two methods of that - with asm-goto/jump-labels
and static functions).
And that is a lot trickier. It can be made to work, but there are many
dark nooks and crannies problems can hide in.
As for your point c), I'm not sure what you mean about portable C
I just meant "valid C language code as defined by the standards". Many
people want all UB to just go away, while that is *impossible* to do for
many compilers: for example where different architectures or different
ABIs have contradictory requirements.
(stuck to
a single compiler, or stuck to a single architecture?). Linux obviously
supports multiple architectures (more than any other OS), but it is pretty
stuck to gcc as a compiler (with LLVM just starting to work too).
We are fine with being stuck to a compiler if it gives us what we want.
Right. Just know that a compiler can make defined behaviour for *some*
things that are UB in standard C (possibly at a runtime performance
cost), but most things are not feasible.
Alexei's SPARC example (thanks!) shows that even "obvious" things are
not so obviously (or at all) implemented the way you expect on all
systems you care about.
Segher