Re: Kernel Development & Objective-C

From: Andi Kleen
Date: Mon Dec 03 2007 - 04:50:34 EST


> Even these (with the exception of the page fault path) are hardly "we
> care about a single instruction" material suggested above. Even with a

With 10Gbit/s ethernet working you start to care about every cycle.
Similar with highend routing or in some latency sensitive network
applications (e.g. in HPC). Another simple noticeable case is Unix
sockets and your X server communication.

And there are some special cases where block IO is also pretty critical.
A popular one is TPC-* benchmarking, but there are also others and it
looks likely in the future that this will become more critical
as block devices become faster (e.g. highend SSDs)

> The real benefits aren't in keeping close to the metal, but in high
> level optimizations. Ironically, these are easier when the code is a
> little more abstracted. You can add quite a lot of instructions if it
> allows you not to do some of the I/O at all.

While that's partly true -- cache misses are good for a lot of cycles --
it is not the whole truth and at some point raw code efficiency matters
too.

For example there are some CPUs who are relatively slow at indirect
function calls and there are actually cases where this can be measured.

-Andi

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/