]> git.baikalelectronics.ru Git - kernel.git/commit
fixdep: faster CONFIG_ search
authorAlexey Dobriyan <adobriyan@gmail.com>
Wed, 24 Aug 2016 18:03:05 +0000 (21:03 +0300)
committerMichal Marek <mmarek@suse.com>
Wed, 24 Aug 2016 20:34:19 +0000 (22:34 +0200)
commit8533979c1c09c5af1a7f4e0b9eee32f35b3efdb8
tree5c1bc1e5b8c6475e7d5845593f958e34807bfa1c
parentfc5bafac00db26203e81617a136e8063e50b4d16
fixdep: faster CONFIG_ search

Do you think kernel build is 100% dominated by gcc? You are wrong!
One small utility called "fixdep" consistently manages to sneak into
profile's first page (unless you have small monitor of course).

The choke point is this clever code:

for (; m < end; m++) {
if (*m == INT_CONF) { p = (char *) m  ; goto conf; }
if (*m == INT_ONFI) { p = (char *) m-1; goto conf; }
if (*m == INT_NFIG) { p = (char *) m-2; goto conf; }
if (*m == INT_FIG_) { p = (char *) m-3; goto conf; }

4 branches per 4 characters is not fast.

Use strstr(3), so that SSE2 etc can be used.

With this patch, fixdep is so deep at the bottom, it is hard to find it.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
scripts/basic/fixdep.c