2 * "Optimize" a list of dependencies as spit out by gcc -MD
4 * ===========================================================================
6 * Author Kai Germaschewski
7 * Copyright 2002 by Kai Germaschewski <kai.germaschewski@gmx.de>
9 * This software may be used and distributed according to the terms
10 * of the GNU General Public License, incorporated herein by reference.
15 * gcc produces a very nice and correct list of dependencies which
16 * tells make when to remake a file.
18 * To use this list as-is however has the drawback that virtually
19 * every file in the kernel includes autoconf.h.
21 * If the user re-runs make *config, autoconf.h will be
22 * regenerated. make notices that and will rebuild every file which
23 * includes autoconf.h, i.e. basically all files. This is extremely
24 * annoying if the user just changed CONFIG_HIS_DRIVER from n to m.
26 * So we play the same trick that "mkdep" played before. We replace
27 * the dependency on autoconf.h by a dependency on every config
28 * option which is mentioned in any of the listed prerequisites.
30 * kconfig populates a tree in include/config/ with an empty file
31 * for each config symbol and when the configuration is updated
32 * the files representing changed config options are touched
33 * which then let make pick up the changes and the files that use
34 * the config symbols are rebuilt.
36 * So if the user changes his CONFIG_HIS_DRIVER option, only the objects
37 * which depend on "include/config/HIS_DRIVER" will be rebuilt,
38 * so most likely only his driver ;-)
40 * The idea above dates, by the way, back to Michael E Chastain, AFAIK.
42 * So to get dependencies right, there are two issues:
43 * o if any of the files the compiler read changed, we need to rebuild
44 * o if the command line given to the compile the file changed, we
45 * better rebuild as well.
47 * The former is handled by using the -MD output, the later by saving
48 * the command line used to compile the old object and comparing it
49 * to the one we would now use.
51 * Again, also this idea is pretty old and has been discussed on
52 * kbuild-devel a long time ago. I don't have a sensibly working
53 * internet connection right now, so I rather don't mention names
54 * without double checking.
56 * This code here has been based partially based on mkdep.c, which
57 * says the following about its history:
59 * Copyright abandoned, Michael Chastain, <mailto:mec@shout.net>.
60 * This is a C version of syncdep.pl by Werner Almesberger.
65 * fixdep <depfile> <target> <cmdline>
67 * and will read the dependency file <depfile>
69 * The transformed dependency snipped is written to stdout.
71 * It first generates a line
73 * savedcmd_<target> = <cmdline>
75 * and then basically copies the .<target>.d file to stdout, in the
76 * process filtering out the dependency on autoconf.h and adding
77 * dependencies on include/config/MY_OPTION for every
78 * CONFIG_MY_OPTION encountered in any of the prerequisites.
80 * We don't even try to really parse the header files, but
81 * merely grep, i.e. if CONFIG_FOO is mentioned in a comment, it will
82 * be picked up as well. It's not a problem with respect to
83 * correctness, since that can only give too many dependencies, thus
84 * we cannot miss a rebuild. Since people tend to not mention totally
85 * unrelated CONFIG_ options all over the place, it's not an
86 * efficiency problem either.
88 * (Note: it'd be easy to port over the complete mkdep state machine,
89 * but I don't think the added complexity is worth it)
92 #include <sys/types.h>
104 static void usage(void)
106 fprintf(stderr
, "Usage: fixdep <depfile> <target> <cmdline>\n");
118 static struct item
*config_hashtab
[HASHSZ
], *file_hashtab
[HASHSZ
];
120 static unsigned int strhash(const char *str
, unsigned int sz
)
123 unsigned int i
, hash
= 2166136261U;
125 for (i
= 0; i
< sz
; i
++)
126 hash
= (hash
^ str
[i
]) * 0x01000193;
131 * Add a new value to the configuration string.
133 static void add_to_hashtable(const char *name
, int len
, unsigned int hash
,
134 struct item
*hashtab
[])
138 aux
= xmalloc(sizeof(*aux
) + len
);
139 memcpy(aux
->name
, name
, len
);
142 aux
->next
= hashtab
[hash
% HASHSZ
];
143 hashtab
[hash
% HASHSZ
] = aux
;
147 * Lookup a string in the hash table. If found, just return true.
148 * If not, add it to the hashtable and return false.
150 static bool in_hashtable(const char *name
, int len
, struct item
*hashtab
[])
153 unsigned int hash
= strhash(name
, len
);
155 for (aux
= hashtab
[hash
% HASHSZ
]; aux
; aux
= aux
->next
) {
156 if (aux
->hash
== hash
&& aux
->len
== len
&&
157 memcmp(aux
->name
, name
, len
) == 0)
161 add_to_hashtable(name
, len
, hash
, hashtab
);
167 * Record the use of a CONFIG_* word.
169 static void use_config(const char *m
, int slen
)
171 if (in_hashtable(m
, slen
, config_hashtab
))
174 /* Print out a dependency path from a symbol name. */
175 printf(" $(wildcard include/config/%.*s) \\\n", slen
, m
);
178 /* test if s ends in sub */
179 static int str_ends_with(const char *s
, int slen
, const char *sub
)
181 int sublen
= strlen(sub
);
186 return !memcmp(s
+ slen
- sublen
, sub
, sublen
);
189 static void parse_config_file(const char *p
)
192 const char *start
= p
;
194 while ((p
= strstr(p
, "CONFIG_"))) {
195 if (p
> start
&& (isalnum(p
[-1]) || p
[-1] == '_')) {
201 while (isalnum(*q
) || *q
== '_')
203 if (str_ends_with(p
, q
- p
, "_MODULE"))
208 use_config(p
, r
- p
);
213 static void *read_file(const char *filename
)
219 fd
= open(filename
, O_RDONLY
);
221 fprintf(stderr
, "fixdep: error opening file: ");
225 if (fstat(fd
, &st
) < 0) {
226 fprintf(stderr
, "fixdep: error fstat'ing file: ");
230 buf
= xmalloc(st
.st_size
+ 1);
231 if (read(fd
, buf
, st
.st_size
) != st
.st_size
) {
232 perror("fixdep: read");
235 buf
[st
.st_size
] = '\0';
241 /* Ignore certain dependencies */
242 static int is_ignored_file(const char *s
, int len
)
244 return str_ends_with(s
, len
, "include/generated/autoconf.h");
247 /* Do not parse these files */
248 static int is_no_parse_file(const char *s
, int len
)
250 /* rustc may list binary files in dep-info */
251 return str_ends_with(s
, len
, ".rlib") ||
252 str_ends_with(s
, len
, ".rmeta") ||
253 str_ends_with(s
, len
, ".so");
257 * Important: The below generated source_foo.o and deps_foo.o variable
258 * assignments are parsed not only by make, but also by the rather simple
259 * parser in scripts/mod/sumversion.c.
261 static void parse_dep_file(char *p
, const char *target
)
263 bool saw_any_target
= false;
264 bool is_target
= true;
265 bool is_source
= false;
270 /* handle some special characters first. */
275 * rustc may emit comments to dep-info.
278 while (*p
!= '\0' && *p
!= '\n') {
280 * escaped newlines continue the comment across
290 /* skip whitespaces */
295 * backslash/newline combinations continue the
296 * statement. Skip it just like a whitespace.
298 if (*(p
+ 1) == '\n') {
305 * Makefiles use a line-based syntax, where the newline
306 * is the end of a statement. After seeing a newline,
307 * we expect the next token is a target.
314 * assume the first dependency after a colon as the
323 /* find the end of the token */
325 while (*q
!= ' ' && *q
!= '\t' && *q
!= '\n' && *q
!= '#' && *q
!= ':') {
328 * backslash/newline combinations work like as
329 * a whitespace, so this is the end of token.
331 if (*(q
+ 1) == '\n')
334 /* escaped special characters */
335 if (*(q
+ 1) == '#' || *(q
+ 1) == ':') {
336 memmove(p
+ 1, p
, q
- p
);
348 /* Just discard the target */
359 * Do not list the source file as dependency, so that kbuild is
360 * not confused if a .c file is rewritten into .S or vice versa.
361 * Storing it in source_* is needed for modpost to compute
366 * The DT build rule concatenates multiple dep files.
367 * When processing them, only process the first source
368 * name, which will be the original one, and ignore any
369 * other source names, which will be intermediate
372 * rustc emits the same dependency list for each
373 * emission type. It is enough to list the source name
376 if (!saw_any_target
) {
377 saw_any_target
= true;
378 printf("source_%s := %s\n\n", target
, p
);
379 printf("deps_%s := \\\n", target
);
382 } else if (!is_ignored_file(p
, q
- p
) &&
383 !in_hashtable(p
, q
- p
, file_hashtab
)) {
384 printf(" %s \\\n", p
);
388 if (need_parse
&& !is_no_parse_file(p
, q
- p
)) {
392 parse_config_file(buf
);
401 if (!saw_any_target
) {
402 fprintf(stderr
, "fixdep: parse error; no targets found\n");
406 printf("\n%s: $(deps_%s)\n\n", target
, target
);
407 printf("$(deps_%s):\n", target
);
410 int main(int argc
, char *argv
[])
412 const char *depfile
, *target
, *cmdline
;
422 printf("savedcmd_%s := %s\n\n", target
, cmdline
);
424 buf
= read_file(depfile
);
425 parse_dep_file(buf
, target
);
431 * In the intended usage, the stdout is redirected to .*.cmd files.
432 * Call ferror() to catch errors such as "No space left on device".
434 if (ferror(stdout
)) {
435 fprintf(stderr
, "fixdep: not all data was written to the output\n");