make.c revision 1.123 1 1.123 rillig /* $NetBSD: make.c,v 1.123 2020/08/25 16:27:24 rillig Exp $ */
2 1.7 christos
3 1.1 cgd /*
4 1.10 christos * Copyright (c) 1988, 1989, 1990, 1993
5 1.10 christos * The Regents of the University of California. All rights reserved.
6 1.51 agc *
7 1.51 agc * This code is derived from software contributed to Berkeley by
8 1.51 agc * Adam de Boor.
9 1.51 agc *
10 1.51 agc * Redistribution and use in source and binary forms, with or without
11 1.51 agc * modification, are permitted provided that the following conditions
12 1.51 agc * are met:
13 1.51 agc * 1. Redistributions of source code must retain the above copyright
14 1.51 agc * notice, this list of conditions and the following disclaimer.
15 1.51 agc * 2. Redistributions in binary form must reproduce the above copyright
16 1.51 agc * notice, this list of conditions and the following disclaimer in the
17 1.51 agc * documentation and/or other materials provided with the distribution.
18 1.51 agc * 3. Neither the name of the University nor the names of its contributors
19 1.51 agc * may be used to endorse or promote products derived from this software
20 1.51 agc * without specific prior written permission.
21 1.51 agc *
22 1.51 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.51 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.51 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.51 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.51 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.51 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.51 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.51 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.51 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.51 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.51 agc * SUCH DAMAGE.
33 1.51 agc */
34 1.51 agc
35 1.51 agc /*
36 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
37 1.1 cgd * All rights reserved.
38 1.1 cgd *
39 1.1 cgd * This code is derived from software contributed to Berkeley by
40 1.1 cgd * Adam de Boor.
41 1.1 cgd *
42 1.1 cgd * Redistribution and use in source and binary forms, with or without
43 1.1 cgd * modification, are permitted provided that the following conditions
44 1.1 cgd * are met:
45 1.1 cgd * 1. Redistributions of source code must retain the above copyright
46 1.1 cgd * notice, this list of conditions and the following disclaimer.
47 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
48 1.1 cgd * notice, this list of conditions and the following disclaimer in the
49 1.1 cgd * documentation and/or other materials provided with the distribution.
50 1.1 cgd * 3. All advertising materials mentioning features or use of this software
51 1.1 cgd * must display the following acknowledgement:
52 1.1 cgd * This product includes software developed by the University of
53 1.1 cgd * California, Berkeley and its contributors.
54 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
55 1.1 cgd * may be used to endorse or promote products derived from this software
56 1.1 cgd * without specific prior written permission.
57 1.1 cgd *
58 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 1.1 cgd * SUCH DAMAGE.
69 1.1 cgd */
70 1.1 cgd
71 1.53 ross #ifndef MAKE_NATIVE
72 1.123 rillig static char rcsid[] = "$NetBSD: make.c,v 1.123 2020/08/25 16:27:24 rillig Exp $";
73 1.19 lukem #else
74 1.18 christos #include <sys/cdefs.h>
75 1.1 cgd #ifndef lint
76 1.7 christos #if 0
77 1.10 christos static char sccsid[] = "@(#)make.c 8.1 (Berkeley) 6/6/93";
78 1.7 christos #else
79 1.123 rillig __RCSID("$NetBSD: make.c,v 1.123 2020/08/25 16:27:24 rillig Exp $");
80 1.7 christos #endif
81 1.1 cgd #endif /* not lint */
82 1.19 lukem #endif
83 1.1 cgd
84 1.1 cgd /*-
85 1.1 cgd * make.c --
86 1.1 cgd * The functions which perform the examination of targets and
87 1.1 cgd * their suitability for creation
88 1.1 cgd *
89 1.1 cgd * Interface:
90 1.1 cgd * Make_Run Initialize things for the module and recreate
91 1.1 cgd * whatever needs recreating. Returns TRUE if
92 1.1 cgd * work was (or would have been) done and FALSE
93 1.1 cgd * otherwise.
94 1.1 cgd *
95 1.1 cgd * Make_Update Update all parents of a given child. Performs
96 1.1 cgd * various bookkeeping chores like the updating
97 1.83 christos * of the cmgn field of the parent, filling
98 1.1 cgd * of the IMPSRC context variable, etc. It will
99 1.1 cgd * place the parent on the toBeMade queue if it
100 1.1 cgd * should be.
101 1.1 cgd *
102 1.83 christos * Make_TimeStamp Function to set the parent's cmgn field
103 1.1 cgd * based on a child's modification time.
104 1.1 cgd *
105 1.1 cgd * Make_DoAllVar Set up the various local variables for a
106 1.1 cgd * target, including the .ALLSRC variable, making
107 1.1 cgd * sure that any variable that needs to exist
108 1.1 cgd * at the very least has the empty value.
109 1.1 cgd *
110 1.1 cgd * Make_OODate Determine if a target is out-of-date.
111 1.1 cgd *
112 1.1 cgd * Make_HandleUse See if a child is a .USE node for a parent
113 1.1 cgd * and perform the .USE actions if so.
114 1.11 christos *
115 1.68 dsl * Make_ExpandUse Expand .USE nodes
116 1.1 cgd */
117 1.1 cgd
118 1.1 cgd #include "make.h"
119 1.122 rillig #include "enum.h"
120 1.4 cgd #include "dir.h"
121 1.4 cgd #include "job.h"
122 1.1 cgd
123 1.70 dsl static unsigned int checked = 1;/* Sequence # to detect recursion */
124 1.1 cgd static Lst toBeMade; /* The current fringe of the graph. These
125 1.1 cgd * are nodes which await examination by
126 1.1 cgd * MakeOODate. It is added to by
127 1.1 cgd * Make_Update and subtracted from by
128 1.1 cgd * MakeStartJobs */
129 1.1 cgd
130 1.78 dsl static int MakeAddChild(void *, void *);
131 1.78 dsl static int MakeFindChild(void *, void *);
132 1.78 dsl static int MakeUnmark(void *, void *);
133 1.78 dsl static int MakeAddAllSrc(void *, void *);
134 1.78 dsl static int MakeTimeStamp(void *, void *);
135 1.78 dsl static int MakeHandleUse(void *, void *);
136 1.50 wiz static Boolean MakeStartJobs(void);
137 1.78 dsl static int MakePrintStatus(void *, void *);
138 1.78 dsl static int MakeCheckOrder(void *, void *);
139 1.78 dsl static int MakeBuildChild(void *, void *);
140 1.78 dsl static int MakeBuildParent(void *, void *);
141 1.68 dsl
142 1.87 joerg MAKE_ATTR_DEAD static void
143 1.68 dsl make_abort(GNode *gn, int line)
144 1.68 dsl {
145 1.74 dsl static int two = 2;
146 1.74 dsl
147 1.68 dsl fprintf(debug_file, "make_abort from line %d\n", line);
148 1.74 dsl Targ_PrintNode(gn, &two);
149 1.74 dsl Lst_ForEach(toBeMade, Targ_PrintNode, &two);
150 1.68 dsl Targ_PrintGraph(3);
151 1.68 dsl abort();
152 1.68 dsl }
153 1.68 dsl
154 1.123 rillig ENUM_VALUE_RTTI_8(GNodeMade,
155 1.123 rillig UNMADE, DEFERRED, REQUESTED, BEINGMADE,
156 1.123 rillig MADE, UPTODATE, ERROR, ABORTED);
157 1.123 rillig
158 1.123 rillig ENUM_FLAGS_RTTI_31(GNodeType,
159 1.123 rillig OP_DEPENDS, OP_FORCE, OP_DOUBLEDEP,
160 1.123 rillig /* OP_OPMASK is omitted since it combines other flags */
161 1.123 rillig OP_OPTIONAL, OP_USE, OP_EXEC, OP_IGNORE,
162 1.123 rillig OP_PRECIOUS, OP_SILENT, OP_MAKE, OP_JOIN,
163 1.123 rillig OP_MADE, OP_SPECIAL, OP_USEBEFORE, OP_INVISIBLE,
164 1.123 rillig OP_NOTMAIN, OP_PHONY, OP_NOPATH, OP_WAIT,
165 1.123 rillig OP_NOMETA, OP_META, OP_NOMETA_CMP, OP_SUBMAKE,
166 1.123 rillig OP_TRANSFORM, OP_MEMBER, OP_LIB, OP_ARCHV,
167 1.123 rillig OP_HAS_COMMANDS, OP_SAVE_CMDS, OP_DEPS_FOUND, OP_MARK);
168 1.123 rillig
169 1.123 rillig ENUM_FLAGS_RTTI_10(GNodeFlags,
170 1.123 rillig REMAKE, CHILDMADE, FORCE, DONE_WAIT,
171 1.123 rillig DONE_ORDER, FROM_DEPEND, DONE_ALLSRC, CYCLE,
172 1.123 rillig DONECYCLE, INTERNAL);
173 1.122 rillig
174 1.122 rillig void
175 1.122 rillig GNode_FprintDetails(FILE *f, const char *prefix, const GNode *gn,
176 1.122 rillig const char *suffix)
177 1.122 rillig {
178 1.122 rillig char type_buf[GNodeType_ToStringSize];
179 1.122 rillig char flags_buf[GNodeFlags_ToStringSize];
180 1.122 rillig
181 1.122 rillig fprintf(f, "%smade %s, type %s, flags %s%s",
182 1.122 rillig prefix,
183 1.122 rillig Enum_ValueToString(gn->made, GNodeMade_ToStringSpecs),
184 1.122 rillig Enum_FlagsToString(type_buf, sizeof type_buf,
185 1.122 rillig gn->type, GNodeType_ToStringSpecs),
186 1.122 rillig Enum_FlagsToString(flags_buf, sizeof flags_buf,
187 1.122 rillig gn->flags, GNodeFlags_ToStringSpecs),
188 1.122 rillig suffix);
189 1.122 rillig }
190 1.122 rillig
191 1.1 cgd /*-
192 1.1 cgd *-----------------------------------------------------------------------
193 1.1 cgd * Make_TimeStamp --
194 1.83 christos * Set the cmgn field of a parent node based on the mtime stamp in its
195 1.10 christos * child. Called from MakeOODate via Lst_ForEach.
196 1.1 cgd *
197 1.50 wiz * Input:
198 1.50 wiz * pgn the current parent
199 1.50 wiz * cgn the child we've just examined
200 1.50 wiz *
201 1.1 cgd * Results:
202 1.10 christos * Always returns 0.
203 1.1 cgd *
204 1.1 cgd * Side Effects:
205 1.83 christos * The cmgn of the parent node will be changed if the mtime
206 1.1 cgd * field of the child is greater than it.
207 1.1 cgd *-----------------------------------------------------------------------
208 1.1 cgd */
209 1.1 cgd int
210 1.50 wiz Make_TimeStamp(GNode *pgn, GNode *cgn)
211 1.1 cgd {
212 1.83 christos if (pgn->cmgn == NULL || cgn->mtime > pgn->cmgn->mtime) {
213 1.83 christos pgn->cmgn = cgn;
214 1.1 cgd }
215 1.98 rillig return 0;
216 1.1 cgd }
217 1.5 jtc
218 1.50 wiz /*
219 1.50 wiz * Input:
220 1.50 wiz * pgn the current parent
221 1.50 wiz * cgn the child we've just examined
222 1.50 wiz *
223 1.50 wiz */
224 1.5 jtc static int
225 1.78 dsl MakeTimeStamp(void *pgn, void *cgn)
226 1.5 jtc {
227 1.58 christos return Make_TimeStamp((GNode *)pgn, (GNode *)cgn);
228 1.5 jtc }
229 1.108 rillig
230 1.1 cgd /*-
231 1.1 cgd *-----------------------------------------------------------------------
232 1.1 cgd * Make_OODate --
233 1.1 cgd * See if a given node is out of date with respect to its sources.
234 1.1 cgd * Used by Make_Run when deciding which nodes to place on the
235 1.1 cgd * toBeMade queue initially and by Make_Update to screen out USE and
236 1.1 cgd * EXEC nodes. In the latter case, however, any other sort of node
237 1.1 cgd * must be considered out-of-date since at least one of its children
238 1.1 cgd * will have been recreated.
239 1.1 cgd *
240 1.50 wiz * Input:
241 1.50 wiz * gn the node to check
242 1.50 wiz *
243 1.1 cgd * Results:
244 1.10 christos * TRUE if the node is out of date. FALSE otherwise.
245 1.1 cgd *
246 1.1 cgd * Side Effects:
247 1.83 christos * The mtime field of the node and the cmgn field of its parents
248 1.1 cgd * will/may be changed.
249 1.1 cgd *-----------------------------------------------------------------------
250 1.1 cgd */
251 1.1 cgd Boolean
252 1.50 wiz Make_OODate(GNode *gn)
253 1.1 cgd {
254 1.1 cgd Boolean oodate;
255 1.1 cgd
256 1.1 cgd /*
257 1.1 cgd * Certain types of targets needn't even be sought as their datedness
258 1.1 cgd * doesn't depend on their modification time...
259 1.1 cgd */
260 1.39 christos if ((gn->type & (OP_JOIN|OP_USE|OP_USEBEFORE|OP_EXEC)) == 0) {
261 1.86 christos (void)Dir_MTime(gn, 1);
262 1.1 cgd if (DEBUG(MAKE)) {
263 1.1 cgd if (gn->mtime != 0) {
264 1.66 dsl fprintf(debug_file, "modified %s...", Targ_FmtTime(gn->mtime));
265 1.1 cgd } else {
266 1.66 dsl fprintf(debug_file, "non-existent...");
267 1.1 cgd }
268 1.1 cgd }
269 1.1 cgd }
270 1.1 cgd
271 1.1 cgd /*
272 1.1 cgd * A target is remade in one of the following circumstances:
273 1.1 cgd * its modification time is smaller than that of its youngest child
274 1.1 cgd * and it would actually be run (has commands or type OP_NOP)
275 1.1 cgd * it's the object of a force operator
276 1.1 cgd * it has no children, was on the lhs of an operator and doesn't exist
277 1.1 cgd * already.
278 1.1 cgd *
279 1.1 cgd * Libraries are only considered out-of-date if the archive module says
280 1.1 cgd * they are.
281 1.1 cgd *
282 1.37 wiz * These weird rules are brought to you by Backward-Compatibility and
283 1.1 cgd * the strange people who wrote 'Make'.
284 1.1 cgd */
285 1.39 christos if (gn->type & (OP_USE|OP_USEBEFORE)) {
286 1.1 cgd /*
287 1.1 cgd * If the node is a USE node it is *never* out of date
288 1.1 cgd * no matter *what*.
289 1.1 cgd */
290 1.1 cgd if (DEBUG(MAKE)) {
291 1.66 dsl fprintf(debug_file, ".USE node...");
292 1.1 cgd }
293 1.1 cgd oodate = FALSE;
294 1.25 sjg } else if ((gn->type & OP_LIB) &&
295 1.25 sjg ((gn->mtime==0) || Arch_IsLib(gn))) {
296 1.1 cgd if (DEBUG(MAKE)) {
297 1.66 dsl fprintf(debug_file, "library...");
298 1.1 cgd }
299 1.6 christos
300 1.6 christos /*
301 1.6 christos * always out of date if no children and :: target
302 1.26 sjg * or non-existent.
303 1.6 christos */
304 1.99 rillig oodate = (gn->mtime == 0 || Arch_LibOODate(gn) ||
305 1.83 christos (gn->cmgn == NULL && (gn->type & OP_DOUBLEDEP)));
306 1.1 cgd } else if (gn->type & OP_JOIN) {
307 1.1 cgd /*
308 1.1 cgd * A target with the .JOIN attribute is only considered
309 1.1 cgd * out-of-date if any of its children was out-of-date.
310 1.1 cgd */
311 1.1 cgd if (DEBUG(MAKE)) {
312 1.66 dsl fprintf(debug_file, ".JOIN node...");
313 1.1 cgd }
314 1.22 christos if (DEBUG(MAKE)) {
315 1.66 dsl fprintf(debug_file, "source %smade...", gn->flags & CHILDMADE ? "" : "not ");
316 1.22 christos }
317 1.52 dsl oodate = (gn->flags & CHILDMADE) ? TRUE : FALSE;
318 1.8 christos } else if (gn->type & (OP_FORCE|OP_EXEC|OP_PHONY)) {
319 1.1 cgd /*
320 1.1 cgd * A node which is the object of the force (!) operator or which has
321 1.1 cgd * the .EXEC attribute is always considered out-of-date.
322 1.1 cgd */
323 1.1 cgd if (DEBUG(MAKE)) {
324 1.1 cgd if (gn->type & OP_FORCE) {
325 1.66 dsl fprintf(debug_file, "! operator...");
326 1.8 christos } else if (gn->type & OP_PHONY) {
327 1.66 dsl fprintf(debug_file, ".PHONY node...");
328 1.1 cgd } else {
329 1.66 dsl fprintf(debug_file, ".EXEC node...");
330 1.1 cgd }
331 1.1 cgd }
332 1.1 cgd oodate = TRUE;
333 1.83 christos } else if ((gn->cmgn != NULL && gn->mtime < gn->cmgn->mtime) ||
334 1.83 christos (gn->cmgn == NULL &&
335 1.52 dsl ((gn->mtime == 0 && !(gn->type & OP_OPTIONAL))
336 1.52 dsl || gn->type & OP_DOUBLEDEP)))
337 1.1 cgd {
338 1.1 cgd /*
339 1.1 cgd * A node whose modification time is less than that of its
340 1.83 christos * youngest child or that has no children (cmgn == NULL) and
341 1.52 dsl * either doesn't exist (mtime == 0) and it isn't optional
342 1.52 dsl * or was the object of a * :: operator is out-of-date.
343 1.52 dsl * Why? Because that's the way Make does it.
344 1.1 cgd */
345 1.1 cgd if (DEBUG(MAKE)) {
346 1.83 christos if (gn->cmgn != NULL && gn->mtime < gn->cmgn->mtime) {
347 1.83 christos fprintf(debug_file, "modified before source %s...",
348 1.96 sjg gn->cmgn->path ? gn->cmgn->path : gn->cmgn->name);
349 1.1 cgd } else if (gn->mtime == 0) {
350 1.66 dsl fprintf(debug_file, "non-existent and no sources...");
351 1.1 cgd } else {
352 1.66 dsl fprintf(debug_file, ":: operator and no sources...");
353 1.1 cgd }
354 1.1 cgd }
355 1.1 cgd oodate = TRUE;
356 1.1 cgd } else {
357 1.99 rillig /*
358 1.22 christos * When a non-existing child with no sources
359 1.21 christos * (such as a typically used FORCE source) has been made and
360 1.21 christos * the target of the child (usually a directory) has the same
361 1.21 christos * timestamp as the timestamp just given to the non-existing child
362 1.21 christos * after it was considered made.
363 1.21 christos */
364 1.1 cgd if (DEBUG(MAKE)) {
365 1.22 christos if (gn->flags & FORCE)
366 1.66 dsl fprintf(debug_file, "non existing child...");
367 1.1 cgd }
368 1.52 dsl oodate = (gn->flags & FORCE) ? TRUE : FALSE;
369 1.1 cgd }
370 1.1 cgd
371 1.82 sjg #ifdef USE_META
372 1.82 sjg if (useMeta) {
373 1.82 sjg oodate = meta_oodate(gn, oodate);
374 1.82 sjg }
375 1.82 sjg #endif
376 1.82 sjg
377 1.1 cgd /*
378 1.1 cgd * If the target isn't out-of-date, the parents need to know its
379 1.1 cgd * modification time. Note that targets that appear to be out-of-date
380 1.1 cgd * but aren't, because they have no commands and aren't of type OP_NOP,
381 1.1 cgd * have their mtime stay below their children's mtime to keep parents from
382 1.1 cgd * thinking they're out-of-date.
383 1.1 cgd */
384 1.1 cgd if (!oodate) {
385 1.67 dsl Lst_ForEach(gn->parents, MakeTimeStamp, gn);
386 1.1 cgd }
387 1.1 cgd
388 1.98 rillig return oodate;
389 1.1 cgd }
390 1.108 rillig
391 1.1 cgd /*-
392 1.1 cgd *-----------------------------------------------------------------------
393 1.1 cgd * MakeAddChild --
394 1.1 cgd * Function used by Make_Run to add a child to the list l.
395 1.1 cgd * It will only add the child if its make field is FALSE.
396 1.1 cgd *
397 1.50 wiz * Input:
398 1.50 wiz * gnp the node to add
399 1.50 wiz * lp the list to which to add it
400 1.50 wiz *
401 1.1 cgd * Results:
402 1.1 cgd * Always returns 0
403 1.1 cgd *
404 1.1 cgd * Side Effects:
405 1.1 cgd * The given list is extended
406 1.1 cgd *-----------------------------------------------------------------------
407 1.1 cgd */
408 1.1 cgd static int
409 1.78 dsl MakeAddChild(void *gnp, void *lp)
410 1.1 cgd {
411 1.58 christos GNode *gn = (GNode *)gnp;
412 1.5 jtc Lst l = (Lst) lp;
413 1.14 christos
414 1.39 christos if ((gn->flags & REMAKE) == 0 && !(gn->type & (OP_USE|OP_USEBEFORE))) {
415 1.68 dsl if (DEBUG(MAKE))
416 1.68 dsl fprintf(debug_file, "MakeAddChild: need to examine %s%s\n",
417 1.68 dsl gn->name, gn->cohort_num);
418 1.115 rillig Lst_EnqueueS(l, gn);
419 1.1 cgd }
420 1.98 rillig return 0;
421 1.1 cgd }
422 1.108 rillig
423 1.13 christos /*-
424 1.13 christos *-----------------------------------------------------------------------
425 1.13 christos * MakeFindChild --
426 1.13 christos * Function used by Make_Run to find the pathname of a child
427 1.13 christos * that was already made.
428 1.13 christos *
429 1.50 wiz * Input:
430 1.50 wiz * gnp the node to find
431 1.50 wiz *
432 1.13 christos * Results:
433 1.13 christos * Always returns 0
434 1.13 christos *
435 1.13 christos * Side Effects:
436 1.83 christos * The path and mtime of the node and the cmgn of the parent are
437 1.42 pk * updated; the unmade children count of the parent is decremented.
438 1.13 christos *-----------------------------------------------------------------------
439 1.13 christos */
440 1.13 christos static int
441 1.78 dsl MakeFindChild(void *gnp, void *pgnp)
442 1.13 christos {
443 1.58 christos GNode *gn = (GNode *)gnp;
444 1.58 christos GNode *pgn = (GNode *)pgnp;
445 1.14 christos
446 1.85 christos (void)Dir_MTime(gn, 0);
447 1.22 christos Make_TimeStamp(pgn, gn);
448 1.42 pk pgn->unmade--;
449 1.14 christos
450 1.98 rillig return 0;
451 1.13 christos }
452 1.108 rillig
453 1.109 rillig /* Called by Make_Run and SuffApplyTransform on the downward pass to handle
454 1.109 rillig * .USE and transformation nodes, by copying the child node's commands, type
455 1.109 rillig * flags and children to the parent node.
456 1.109 rillig *
457 1.109 rillig * A .USE node is much like an explicit transformation rule, except its
458 1.109 rillig * commands are always added to the target node, even if the target already
459 1.109 rillig * has commands.
460 1.1 cgd *
461 1.50 wiz * Input:
462 1.50 wiz * cgn The .USE node
463 1.50 wiz * pgn The target of the .USE node
464 1.1 cgd */
465 1.43 pk void
466 1.50 wiz Make_HandleUse(GNode *cgn, GNode *pgn)
467 1.1 cgd {
468 1.44 pk LstNode ln; /* An element in the children list */
469 1.44 pk
470 1.44 pk #ifdef DEBUG_SRC
471 1.44 pk if ((cgn->type & (OP_USE|OP_USEBEFORE|OP_TRANSFORM)) == 0) {
472 1.66 dsl fprintf(debug_file, "Make_HandleUse: called for plain node %s\n", cgn->name);
473 1.44 pk return;
474 1.44 pk }
475 1.44 pk #endif
476 1.1 cgd
477 1.44 pk if ((cgn->type & (OP_USE|OP_USEBEFORE)) || Lst_IsEmpty(pgn->commands)) {
478 1.39 christos if (cgn->type & OP_USEBEFORE) {
479 1.112 rillig /* .USEBEFORE */
480 1.112 rillig Lst_PrependAllS(pgn->commands, cgn->commands);
481 1.39 christos } else {
482 1.112 rillig /* .USE, or target has no commands */
483 1.112 rillig Lst_AppendAllS(pgn->commands, cgn->commands);
484 1.39 christos }
485 1.44 pk }
486 1.10 christos
487 1.119 rillig Lst_OpenS(cgn->children);
488 1.119 rillig while ((ln = Lst_NextS(cgn->children)) != NULL) {
489 1.119 rillig GNode *gn = Lst_DatumS(ln);
490 1.11 christos
491 1.119 rillig /*
492 1.119 rillig * Expand variables in the .USE node's name
493 1.119 rillig * and save the unexpanded form.
494 1.119 rillig * We don't need to do this for commands.
495 1.119 rillig * They get expanded properly when we execute.
496 1.119 rillig */
497 1.119 rillig if (gn->uname == NULL) {
498 1.119 rillig gn->uname = gn->name;
499 1.119 rillig } else {
500 1.119 rillig free(gn->name);
501 1.119 rillig }
502 1.119 rillig gn->name = Var_Subst(gn->uname, pgn, VARE_WANTRES);
503 1.119 rillig if (gn->name && gn->uname && strcmp(gn->name, gn->uname) != 0) {
504 1.119 rillig /* See if we have a target for this node. */
505 1.119 rillig GNode *tgn = Targ_FindNode(gn->name, TARG_NOCREATE);
506 1.119 rillig if (tgn != NULL)
507 1.119 rillig gn = tgn;
508 1.119 rillig }
509 1.1 cgd
510 1.119 rillig Lst_AppendS(pgn->children, gn);
511 1.119 rillig Lst_AppendS(gn->parents, pgn);
512 1.119 rillig pgn->unmade += 1;
513 1.44 pk }
514 1.119 rillig Lst_CloseS(cgn->children);
515 1.10 christos
516 1.90 joerg pgn->type |= cgn->type & ~(OP_OPMASK|OP_USE|OP_USEBEFORE|OP_TRANSFORM);
517 1.1 cgd }
518 1.31 mycroft
519 1.44 pk /*-
520 1.44 pk *-----------------------------------------------------------------------
521 1.44 pk * MakeHandleUse --
522 1.44 pk * Callback function for Lst_ForEach, used by Make_Run on the downward
523 1.44 pk * pass to handle .USE nodes. Should be called before the children
524 1.44 pk * are enqueued to be looked at by MakeAddChild.
525 1.44 pk * This function calls Make_HandleUse to copy the .USE node's commands,
526 1.44 pk * type flags and children to the parent node.
527 1.44 pk *
528 1.50 wiz * Input:
529 1.50 wiz * cgnp the child we've just examined
530 1.50 wiz * pgnp the current parent
531 1.50 wiz *
532 1.44 pk * Results:
533 1.44 pk * returns 0.
534 1.44 pk *
535 1.44 pk * Side Effects:
536 1.44 pk * After expansion, .USE child nodes are removed from the parent
537 1.44 pk *
538 1.44 pk *-----------------------------------------------------------------------
539 1.44 pk */
540 1.5 jtc static int
541 1.78 dsl MakeHandleUse(void *cgnp, void *pgnp)
542 1.5 jtc {
543 1.58 christos GNode *cgn = (GNode *)cgnp;
544 1.58 christos GNode *pgn = (GNode *)pgnp;
545 1.43 pk LstNode ln; /* An element in the children list */
546 1.44 pk int unmarked;
547 1.44 pk
548 1.44 pk unmarked = ((cgn->type & OP_MARK) == 0);
549 1.44 pk cgn->type |= OP_MARK;
550 1.31 mycroft
551 1.44 pk if ((cgn->type & (OP_USE|OP_USEBEFORE)) == 0)
552 1.98 rillig return 0;
553 1.44 pk
554 1.44 pk if (unmarked)
555 1.43 pk Make_HandleUse(cgn, pgn);
556 1.31 mycroft
557 1.43 pk /*
558 1.43 pk * This child node is now "made", so we decrement the count of
559 1.43 pk * unmade children in the parent... We also remove the child
560 1.43 pk * from the parent's list to accurately reflect the number of decent
561 1.43 pk * children the parent has. This is used by Make_Run to decide
562 1.43 pk * whether to queue the parent or examine its children...
563 1.43 pk */
564 1.118 rillig if ((ln = Lst_MemberS(pgn->children, cgn)) != NULL) {
565 1.105 rillig Lst_RemoveS(pgn->children, ln);
566 1.43 pk pgn->unmade--;
567 1.43 pk }
568 1.98 rillig return 0;
569 1.5 jtc }
570 1.22 christos
571 1.22 christos
572 1.22 christos /*-
573 1.22 christos *-----------------------------------------------------------------------
574 1.22 christos * Make_Recheck --
575 1.22 christos * Check the modification time of a gnode, and update it as described
576 1.22 christos * in the comments below.
577 1.22 christos *
578 1.22 christos * Results:
579 1.91 snj * returns 0 if the gnode does not exist, or its filesystem
580 1.22 christos * time if it does.
581 1.22 christos *
582 1.22 christos * Side Effects:
583 1.22 christos * the gnode's modification time and path name are affected.
584 1.22 christos *
585 1.22 christos *-----------------------------------------------------------------------
586 1.22 christos */
587 1.22 christos time_t
588 1.50 wiz Make_Recheck(GNode *gn)
589 1.22 christos {
590 1.85 christos time_t mtime = Dir_MTime(gn, 1);
591 1.22 christos
592 1.22 christos #ifndef RECHECK
593 1.22 christos /*
594 1.22 christos * We can't re-stat the thing, but we can at least take care of rules
595 1.22 christos * where a target depends on a source that actually creates the
596 1.22 christos * target, but only if it has changed, e.g.
597 1.22 christos *
598 1.22 christos * parse.h : parse.o
599 1.22 christos *
600 1.22 christos * parse.o : parse.y
601 1.22 christos * yacc -d parse.y
602 1.22 christos * cc -c y.tab.c
603 1.22 christos * mv y.tab.o parse.o
604 1.22 christos * cmp -s y.tab.h parse.h || mv y.tab.h parse.h
605 1.22 christos *
606 1.22 christos * In this case, if the definitions produced by yacc haven't changed
607 1.22 christos * from before, parse.h won't have been updated and gn->mtime will
608 1.22 christos * reflect the current modification time for parse.h. This is
609 1.22 christos * something of a kludge, I admit, but it's a useful one..
610 1.22 christos * XXX: People like to use a rule like
611 1.22 christos *
612 1.22 christos * FRC:
613 1.22 christos *
614 1.22 christos * To force things that depend on FRC to be made, so we have to
615 1.22 christos * check for gn->children being empty as well...
616 1.22 christos */
617 1.22 christos if (!Lst_IsEmpty(gn->commands) || Lst_IsEmpty(gn->children)) {
618 1.22 christos gn->mtime = now;
619 1.22 christos }
620 1.22 christos #else
621 1.22 christos /*
622 1.22 christos * This is what Make does and it's actually a good thing, as it
623 1.22 christos * allows rules like
624 1.22 christos *
625 1.22 christos * cmp -s y.tab.h parse.h || cp y.tab.h parse.h
626 1.22 christos *
627 1.22 christos * to function as intended. Unfortunately, thanks to the stateless
628 1.22 christos * nature of NFS (by which I mean the loose coupling of two clients
629 1.22 christos * using the same file from a common server), there are times
630 1.22 christos * when the modification time of a file created on a remote
631 1.22 christos * machine will not be modified before the local stat() implied by
632 1.22 christos * the Dir_MTime occurs, thus leading us to believe that the file
633 1.22 christos * is unchanged, wreaking havoc with files that depend on this one.
634 1.22 christos *
635 1.22 christos * I have decided it is better to make too much than to make too
636 1.22 christos * little, so this stuff is commented out unless you're sure it's ok.
637 1.22 christos * -- ardeb 1/12/88
638 1.22 christos */
639 1.22 christos /*
640 1.22 christos * Christos, 4/9/92: If we are saving commands pretend that
641 1.22 christos * the target is made now. Otherwise archives with ... rules
642 1.22 christos * don't work!
643 1.22 christos */
644 1.73 dsl if (NoExecute(gn) || (gn->type & OP_SAVE_CMDS) ||
645 1.73 dsl (mtime == 0 && !(gn->type & OP_WAIT))) {
646 1.22 christos if (DEBUG(MAKE)) {
647 1.73 dsl fprintf(debug_file, " recheck(%s): update time from %s to now\n",
648 1.42 pk gn->name, Targ_FmtTime(gn->mtime));
649 1.22 christos }
650 1.22 christos gn->mtime = now;
651 1.22 christos }
652 1.22 christos else {
653 1.22 christos if (DEBUG(MAKE)) {
654 1.66 dsl fprintf(debug_file, " recheck(%s): current update time: %s\n",
655 1.42 pk gn->name, Targ_FmtTime(gn->mtime));
656 1.22 christos }
657 1.22 christos }
658 1.22 christos #endif
659 1.22 christos return mtime;
660 1.22 christos }
661 1.22 christos
662 1.1 cgd /*-
663 1.1 cgd *-----------------------------------------------------------------------
664 1.1 cgd * Make_Update --
665 1.1 cgd * Perform update on the parents of a node. Used by JobFinish once
666 1.1 cgd * a node has been dealt with and by MakeStartJobs if it finds an
667 1.10 christos * up-to-date node.
668 1.1 cgd *
669 1.50 wiz * Input:
670 1.50 wiz * cgn the child node
671 1.50 wiz *
672 1.1 cgd * Results:
673 1.1 cgd * Always returns 0
674 1.1 cgd *
675 1.1 cgd * Side Effects:
676 1.1 cgd * The unmade field of pgn is decremented and pgn may be placed on
677 1.1 cgd * the toBeMade queue if this field becomes 0.
678 1.1 cgd *
679 1.22 christos * If the child was made, the parent's flag CHILDMADE field will be
680 1.83 christos * set true.
681 1.22 christos *
682 1.22 christos * If the child is not up-to-date and still does not exist,
683 1.22 christos * set the FORCE flag on the parents.
684 1.1 cgd *
685 1.83 christos * If the child wasn't made, the cmgn field of the parent will be
686 1.1 cgd * altered if the child's mtime is big enough.
687 1.1 cgd *
688 1.1 cgd * Finally, if the child is the implied source for the parent, the
689 1.1 cgd * parent's IMPSRC variable is set appropriately.
690 1.1 cgd *
691 1.1 cgd *-----------------------------------------------------------------------
692 1.1 cgd */
693 1.1 cgd void
694 1.50 wiz Make_Update(GNode *cgn)
695 1.1 cgd {
696 1.44 pk GNode *pgn; /* the parent node */
697 1.102 rillig const char *cname; /* the child's name */
698 1.44 pk LstNode ln; /* Element in parents and iParents lists */
699 1.44 pk time_t mtime = -1;
700 1.44 pk char *p1;
701 1.47 pk Lst parents;
702 1.47 pk GNode *centurion;
703 1.1 cgd
704 1.70 dsl /* It is save to re-examine any nodes again */
705 1.70 dsl checked++;
706 1.70 dsl
707 1.56 christos cname = Var_Value(TARGET, cgn, &p1);
708 1.103 rillig bmake_free(p1);
709 1.1 cgd
710 1.68 dsl if (DEBUG(MAKE))
711 1.68 dsl fprintf(debug_file, "Make_Update: %s%s\n", cgn->name, cgn->cohort_num);
712 1.68 dsl
713 1.1 cgd /*
714 1.1 cgd * If the child was actually made, see what its modification time is
715 1.1 cgd * now -- some rules won't actually update the file. If the file still
716 1.1 cgd * doesn't exist, make its mtime now.
717 1.1 cgd */
718 1.1 cgd if (cgn->made != UPTODATE) {
719 1.22 christos mtime = Make_Recheck(cgn);
720 1.1 cgd }
721 1.10 christos
722 1.47 pk /*
723 1.47 pk * If this is a `::' node, we must consult its first instance
724 1.47 pk * which is where all parents are linked.
725 1.47 pk */
726 1.47 pk if ((centurion = cgn->centurion) != NULL) {
727 1.47 pk if (!Lst_IsEmpty(cgn->parents))
728 1.68 dsl Punt("%s%s: cohort has parents", cgn->name, cgn->cohort_num);
729 1.47 pk centurion->unmade_cohorts -= 1;
730 1.47 pk if (centurion->unmade_cohorts < 0)
731 1.56 christos Error("Graph cycles through centurion %s", centurion->name);
732 1.47 pk } else {
733 1.47 pk centurion = cgn;
734 1.47 pk }
735 1.68 dsl parents = centurion->parents;
736 1.68 dsl
737 1.68 dsl /* If this was a .ORDER node, schedule the RHS */
738 1.68 dsl Lst_ForEach(centurion->order_succ, MakeBuildParent, Lst_First(toBeMade));
739 1.68 dsl
740 1.68 dsl /* Now mark all the parents as having one less unmade child */
741 1.119 rillig Lst_OpenS(parents);
742 1.119 rillig while ((ln = Lst_NextS(parents)) != NULL) {
743 1.119 rillig pgn = Lst_DatumS(ln);
744 1.119 rillig if (DEBUG(MAKE))
745 1.119 rillig fprintf(debug_file, "inspect parent %s%s: flags %x, "
746 1.119 rillig "type %x, made %d, unmade %d ",
747 1.119 rillig pgn->name, pgn->cohort_num, pgn->flags,
748 1.119 rillig pgn->type, pgn->made, pgn->unmade-1);
749 1.119 rillig
750 1.119 rillig if (!(pgn->flags & REMAKE)) {
751 1.119 rillig /* This parent isn't needed */
752 1.119 rillig if (DEBUG(MAKE))
753 1.119 rillig fprintf(debug_file, "- not needed\n");
754 1.119 rillig continue;
755 1.119 rillig }
756 1.119 rillig if (mtime == 0 && !(cgn->type & OP_WAIT))
757 1.119 rillig pgn->flags |= FORCE;
758 1.119 rillig
759 1.119 rillig /*
760 1.119 rillig * If the parent has the .MADE attribute, its timestamp got
761 1.119 rillig * updated to that of its newest child, and its unmake
762 1.119 rillig * child count got set to zero in Make_ExpandUse().
763 1.119 rillig * However other things might cause us to build one of its
764 1.119 rillig * children - and so we mustn't do any processing here when
765 1.119 rillig * the child build finishes.
766 1.119 rillig */
767 1.119 rillig if (pgn->type & OP_MADE) {
768 1.68 dsl if (DEBUG(MAKE))
769 1.119 rillig fprintf(debug_file, "- .MADE\n");
770 1.119 rillig continue;
771 1.119 rillig }
772 1.119 rillig
773 1.119 rillig if ( ! (cgn->type & (OP_EXEC|OP_USE|OP_USEBEFORE))) {
774 1.119 rillig if (cgn->made == MADE)
775 1.119 rillig pgn->flags |= CHILDMADE;
776 1.119 rillig (void)Make_TimeStamp(pgn, cgn);
777 1.119 rillig }
778 1.68 dsl
779 1.119 rillig /*
780 1.119 rillig * A parent must wait for the completion of all instances
781 1.119 rillig * of a `::' dependency.
782 1.119 rillig */
783 1.119 rillig if (centurion->unmade_cohorts != 0 || centurion->made < MADE) {
784 1.119 rillig if (DEBUG(MAKE))
785 1.119 rillig fprintf(debug_file,
786 1.119 rillig "- centurion made %d, %d unmade cohorts\n",
787 1.119 rillig centurion->made, centurion->unmade_cohorts);
788 1.119 rillig continue;
789 1.119 rillig }
790 1.47 pk
791 1.119 rillig /* One more child of this parent is now made */
792 1.119 rillig pgn->unmade -= 1;
793 1.119 rillig if (pgn->unmade < 0) {
794 1.119 rillig if (DEBUG(MAKE)) {
795 1.119 rillig fprintf(debug_file, "Graph cycles through %s%s\n",
796 1.119 rillig pgn->name, pgn->cohort_num);
797 1.119 rillig Targ_PrintGraph(2);
798 1.47 pk }
799 1.119 rillig Error("Graph cycles through %s%s", pgn->name, pgn->cohort_num);
800 1.119 rillig }
801 1.1 cgd
802 1.119 rillig /* We must always rescan the parents of .WAIT and .ORDER nodes. */
803 1.119 rillig if (pgn->unmade != 0 && !(centurion->type & OP_WAIT)
804 1.119 rillig && !(centurion->flags & DONE_ORDER)) {
805 1.119 rillig if (DEBUG(MAKE))
806 1.119 rillig fprintf(debug_file, "- unmade children\n");
807 1.119 rillig continue;
808 1.119 rillig }
809 1.119 rillig if (pgn->made != DEFERRED) {
810 1.47 pk /*
811 1.119 rillig * Either this parent is on a different branch of the tree,
812 1.119 rillig * or it on the RHS of a .WAIT directive
813 1.119 rillig * or it is already on the toBeMade list.
814 1.47 pk */
815 1.119 rillig if (DEBUG(MAKE))
816 1.119 rillig fprintf(debug_file, "- not deferred\n");
817 1.119 rillig continue;
818 1.119 rillig }
819 1.119 rillig if (pgn->order_pred
820 1.119 rillig && Lst_ForEach(pgn->order_pred, MakeCheckOrder, 0)) {
821 1.119 rillig /* A .ORDER rule stops us building this */
822 1.119 rillig continue;
823 1.1 cgd }
824 1.119 rillig if (DEBUG(MAKE)) {
825 1.119 rillig static int two = 2;
826 1.119 rillig fprintf(debug_file, "- %s%s made, schedule %s%s (made %d)\n",
827 1.119 rillig cgn->name, cgn->cohort_num,
828 1.119 rillig pgn->name, pgn->cohort_num, pgn->made);
829 1.119 rillig Targ_PrintNode(pgn, &two);
830 1.119 rillig }
831 1.119 rillig /* Ok, we can schedule the parent again */
832 1.119 rillig pgn->made = REQUESTED;
833 1.119 rillig Lst_EnqueueS(toBeMade, pgn);
834 1.1 cgd }
835 1.119 rillig Lst_CloseS(parents);
836 1.10 christos
837 1.1 cgd /*
838 1.1 cgd * Set the .PREFIX and .IMPSRC variables for all the implied parents
839 1.1 cgd * of this node.
840 1.1 cgd */
841 1.119 rillig Lst_OpenS(cgn->iParents);
842 1.119 rillig {
843 1.102 rillig const char *cpref = Var_Value(PREFIX, cgn, &p1);
844 1.1 cgd
845 1.106 rillig while ((ln = Lst_NextS(cgn->iParents)) != NULL) {
846 1.117 rillig pgn = Lst_DatumS(ln);
847 1.22 christos if (pgn->flags & REMAKE) {
848 1.97 rillig Var_Set(IMPSRC, cname, pgn);
849 1.35 christos if (cpref != NULL)
850 1.97 rillig Var_Set(PREFIX, cpref, pgn);
851 1.1 cgd }
852 1.1 cgd }
853 1.103 rillig bmake_free(p1);
854 1.107 rillig Lst_CloseS(cgn->iParents);
855 1.1 cgd }
856 1.1 cgd }
857 1.108 rillig
858 1.1 cgd /*-
859 1.1 cgd *-----------------------------------------------------------------------
860 1.1 cgd * MakeAddAllSrc --
861 1.1 cgd * Add a child's name to the ALLSRC and OODATE variables of the given
862 1.1 cgd * node. Called from Make_DoAllVar via Lst_ForEach. A child is added only
863 1.1 cgd * if it has not been given the .EXEC, .USE or .INVISIBLE attributes.
864 1.1 cgd * .EXEC and .USE children are very rarely going to be files, so...
865 1.45 pk * If the child is a .JOIN node, its ALLSRC is propagated to the parent.
866 1.45 pk *
867 1.1 cgd * A child is added to the OODATE variable if its modification time is
868 1.1 cgd * later than that of its parent, as defined by Make, except if the
869 1.1 cgd * parent is a .JOIN node. In that case, it is only added to the OODATE
870 1.1 cgd * variable if it was actually made (since .JOIN nodes don't have
871 1.1 cgd * modification times, the comparison is rather unfair...)..
872 1.1 cgd *
873 1.1 cgd * Results:
874 1.1 cgd * Always returns 0
875 1.1 cgd *
876 1.1 cgd * Side Effects:
877 1.1 cgd * The ALLSRC variable for the given node is extended.
878 1.1 cgd *-----------------------------------------------------------------------
879 1.1 cgd */
880 1.1 cgd static int
881 1.87 joerg MakeUnmark(void *cgnp, void *pgnp MAKE_ATTR_UNUSED)
882 1.31 mycroft {
883 1.58 christos GNode *cgn = (GNode *)cgnp;
884 1.31 mycroft
885 1.31 mycroft cgn->type &= ~OP_MARK;
886 1.98 rillig return 0;
887 1.31 mycroft }
888 1.31 mycroft
889 1.50 wiz /*
890 1.50 wiz * Input:
891 1.50 wiz * cgnp The child to add
892 1.50 wiz * pgnp The parent to whose ALLSRC variable it should
893 1.50 wiz * be added
894 1.50 wiz *
895 1.50 wiz */
896 1.31 mycroft static int
897 1.78 dsl MakeAddAllSrc(void *cgnp, void *pgnp)
898 1.1 cgd {
899 1.58 christos GNode *cgn = (GNode *)cgnp;
900 1.58 christos GNode *pgn = (GNode *)pgnp;
901 1.31 mycroft
902 1.31 mycroft if (cgn->type & OP_MARK)
903 1.98 rillig return 0;
904 1.31 mycroft cgn->type |= OP_MARK;
905 1.31 mycroft
906 1.39 christos if ((cgn->type & (OP_EXEC|OP_USE|OP_USEBEFORE|OP_INVISIBLE)) == 0) {
907 1.102 rillig const char *child, *allsrc;
908 1.45 pk char *p1 = NULL, *p2 = NULL;
909 1.1 cgd
910 1.17 christos if (cgn->type & OP_ARCHV)
911 1.56 christos child = Var_Value(MEMBER, cgn, &p1);
912 1.17 christos else
913 1.17 christos child = cgn->path ? cgn->path : cgn->name;
914 1.45 pk if (cgn->type & OP_JOIN) {
915 1.56 christos allsrc = Var_Value(ALLSRC, cgn, &p2);
916 1.45 pk } else {
917 1.45 pk allsrc = child;
918 1.45 pk }
919 1.46 pk if (allsrc != NULL)
920 1.56 christos Var_Append(ALLSRC, allsrc, pgn);
921 1.103 rillig bmake_free(p2);
922 1.1 cgd if (pgn->type & OP_JOIN) {
923 1.1 cgd if (cgn->made == MADE) {
924 1.1 cgd Var_Append(OODATE, child, pgn);
925 1.1 cgd }
926 1.1 cgd } else if ((pgn->mtime < cgn->mtime) ||
927 1.1 cgd (cgn->mtime >= now && cgn->made == MADE))
928 1.1 cgd {
929 1.1 cgd /*
930 1.1 cgd * It goes in the OODATE variable if the parent is younger than the
931 1.1 cgd * child or if the child has been modified more recently than
932 1.1 cgd * the start of the make. This is to keep pmake from getting
933 1.1 cgd * confused if something else updates the parent after the
934 1.1 cgd * make starts (shouldn't happen, I know, but sometimes it
935 1.1 cgd * does). In such a case, if we've updated the kid, the parent
936 1.1 cgd * is likely to have a modification time later than that of
937 1.1 cgd * the kid and anything that relies on the OODATE variable will
938 1.1 cgd * be hosed.
939 1.1 cgd *
940 1.1 cgd * XXX: This will cause all made children to go in the OODATE
941 1.1 cgd * variable, even if they're not touched, if RECHECK isn't defined,
942 1.1 cgd * since cgn->mtime is set to now in Make_Update. According to
943 1.1 cgd * some people, this is good...
944 1.1 cgd */
945 1.1 cgd Var_Append(OODATE, child, pgn);
946 1.1 cgd }
947 1.103 rillig bmake_free(p1);
948 1.1 cgd }
949 1.98 rillig return 0;
950 1.1 cgd }
951 1.108 rillig
952 1.1 cgd /*-
953 1.1 cgd *-----------------------------------------------------------------------
954 1.1 cgd * Make_DoAllVar --
955 1.1 cgd * Set up the ALLSRC and OODATE variables. Sad to say, it must be
956 1.1 cgd * done separately, rather than while traversing the graph. This is
957 1.1 cgd * because Make defined OODATE to contain all sources whose modification
958 1.1 cgd * times were later than that of the target, *not* those sources that
959 1.1 cgd * were out-of-date. Since in both compatibility and native modes,
960 1.1 cgd * the modification time of the parent isn't found until the child
961 1.1 cgd * has been dealt with, we have to wait until now to fill in the
962 1.1 cgd * variable. As for ALLSRC, the ordering is important and not
963 1.1 cgd * guaranteed when in native mode, so it must be set here, too.
964 1.1 cgd *
965 1.1 cgd * Results:
966 1.1 cgd * None
967 1.1 cgd *
968 1.1 cgd * Side Effects:
969 1.1 cgd * The ALLSRC and OODATE variables of the given node is filled in.
970 1.1 cgd * If the node is a .JOIN node, its TARGET variable will be set to
971 1.1 cgd * match its ALLSRC variable.
972 1.1 cgd *-----------------------------------------------------------------------
973 1.1 cgd */
974 1.1 cgd void
975 1.50 wiz Make_DoAllVar(GNode *gn)
976 1.1 cgd {
977 1.79 sjg if (gn->flags & DONE_ALLSRC)
978 1.79 sjg return;
979 1.99 rillig
980 1.67 dsl Lst_ForEach(gn->children, MakeUnmark, gn);
981 1.67 dsl Lst_ForEach(gn->children, MakeAddAllSrc, gn);
982 1.1 cgd
983 1.1 cgd if (!Var_Exists (OODATE, gn)) {
984 1.97 rillig Var_Set(OODATE, "", gn);
985 1.1 cgd }
986 1.1 cgd if (!Var_Exists (ALLSRC, gn)) {
987 1.97 rillig Var_Set(ALLSRC, "", gn);
988 1.1 cgd }
989 1.1 cgd
990 1.1 cgd if (gn->type & OP_JOIN) {
991 1.5 jtc char *p1;
992 1.97 rillig Var_Set(TARGET, Var_Value(ALLSRC, gn, &p1), gn);
993 1.103 rillig bmake_free(p1);
994 1.1 cgd }
995 1.79 sjg gn->flags |= DONE_ALLSRC;
996 1.1 cgd }
997 1.108 rillig
998 1.1 cgd /*-
999 1.1 cgd *-----------------------------------------------------------------------
1000 1.1 cgd * MakeStartJobs --
1001 1.1 cgd * Start as many jobs as possible.
1002 1.1 cgd *
1003 1.1 cgd * Results:
1004 1.1 cgd * If the query flag was given to pmake, no job will be started,
1005 1.1 cgd * but as soon as an out-of-date target is found, this function
1006 1.1 cgd * returns TRUE. At all other times, this function returns FALSE.
1007 1.1 cgd *
1008 1.1 cgd * Side Effects:
1009 1.1 cgd * Nodes are removed from the toBeMade queue and job table slots
1010 1.1 cgd * are filled.
1011 1.1 cgd *
1012 1.1 cgd *-----------------------------------------------------------------------
1013 1.1 cgd */
1014 1.68 dsl
1015 1.68 dsl static int
1016 1.87 joerg MakeCheckOrder(void *v_bn, void *ignore MAKE_ATTR_UNUSED)
1017 1.68 dsl {
1018 1.68 dsl GNode *bn = v_bn;
1019 1.68 dsl
1020 1.68 dsl if (bn->made >= MADE || !(bn->flags & REMAKE))
1021 1.68 dsl return 0;
1022 1.68 dsl if (DEBUG(MAKE))
1023 1.68 dsl fprintf(debug_file, "MakeCheckOrder: Waiting for .ORDER node %s%s\n",
1024 1.68 dsl bn->name, bn->cohort_num);
1025 1.68 dsl return 1;
1026 1.68 dsl }
1027 1.68 dsl
1028 1.68 dsl static int
1029 1.78 dsl MakeBuildChild(void *v_cn, void *toBeMade_next)
1030 1.68 dsl {
1031 1.68 dsl GNode *cn = v_cn;
1032 1.68 dsl
1033 1.68 dsl if (DEBUG(MAKE))
1034 1.68 dsl fprintf(debug_file, "MakeBuildChild: inspect %s%s, made %d, type %x\n",
1035 1.68 dsl cn->name, cn->cohort_num, cn->made, cn->type);
1036 1.68 dsl if (cn->made > DEFERRED)
1037 1.68 dsl return 0;
1038 1.68 dsl
1039 1.68 dsl /* If this node is on the RHS of a .ORDER, check LHSs. */
1040 1.68 dsl if (cn->order_pred && Lst_ForEach(cn->order_pred, MakeCheckOrder, 0)) {
1041 1.68 dsl /* Can't build this (or anything else in this child list) yet */
1042 1.68 dsl cn->made = DEFERRED;
1043 1.88 sjg return 0; /* but keep looking */
1044 1.68 dsl }
1045 1.68 dsl
1046 1.68 dsl if (DEBUG(MAKE))
1047 1.68 dsl fprintf(debug_file, "MakeBuildChild: schedule %s%s\n",
1048 1.68 dsl cn->name, cn->cohort_num);
1049 1.68 dsl
1050 1.68 dsl cn->made = REQUESTED;
1051 1.77 dsl if (toBeMade_next == NULL)
1052 1.113 rillig Lst_AppendS(toBeMade, cn);
1053 1.68 dsl else
1054 1.116 rillig Lst_InsertBeforeS(toBeMade, toBeMade_next, cn);
1055 1.68 dsl
1056 1.68 dsl if (cn->unmade_cohorts != 0)
1057 1.68 dsl Lst_ForEach(cn->cohorts, MakeBuildChild, toBeMade_next);
1058 1.68 dsl
1059 1.68 dsl /*
1060 1.68 dsl * If this node is a .WAIT node with unmade chlidren
1061 1.68 dsl * then don't add the next sibling.
1062 1.68 dsl */
1063 1.68 dsl return cn->type & OP_WAIT && cn->unmade > 0;
1064 1.68 dsl }
1065 1.68 dsl
1066 1.88 sjg /* When a .ORDER LHS node completes we do this on each RHS */
1067 1.68 dsl static int
1068 1.78 dsl MakeBuildParent(void *v_pn, void *toBeMade_next)
1069 1.68 dsl {
1070 1.68 dsl GNode *pn = v_pn;
1071 1.68 dsl
1072 1.68 dsl if (pn->made != DEFERRED)
1073 1.68 dsl return 0;
1074 1.68 dsl
1075 1.68 dsl if (MakeBuildChild(pn, toBeMade_next) == 0) {
1076 1.68 dsl /* Mark so that when this node is built we reschedule its parents */
1077 1.68 dsl pn->flags |= DONE_ORDER;
1078 1.68 dsl }
1079 1.68 dsl
1080 1.68 dsl return 0;
1081 1.68 dsl }
1082 1.68 dsl
1083 1.1 cgd static Boolean
1084 1.50 wiz MakeStartJobs(void)
1085 1.1 cgd {
1086 1.44 pk GNode *gn;
1087 1.59 dsl int have_token = 0;
1088 1.10 christos
1089 1.115 rillig while (!Lst_IsEmpty(toBeMade)) {
1090 1.60 dsl /* Get token now to avoid cycling job-list when we only have 1 token */
1091 1.60 dsl if (!have_token && !Job_TokenWithdraw())
1092 1.60 dsl break;
1093 1.60 dsl have_token = 1;
1094 1.60 dsl
1095 1.115 rillig gn = Lst_DequeueS(toBeMade);
1096 1.68 dsl if (DEBUG(MAKE))
1097 1.68 dsl fprintf(debug_file, "Examining %s%s...\n",
1098 1.68 dsl gn->name, gn->cohort_num);
1099 1.68 dsl
1100 1.68 dsl if (gn->made != REQUESTED) {
1101 1.68 dsl if (DEBUG(MAKE))
1102 1.68 dsl fprintf(debug_file, "state %d\n", gn->made);
1103 1.68 dsl
1104 1.68 dsl make_abort(gn, __LINE__);
1105 1.1 cgd }
1106 1.1 cgd
1107 1.70 dsl if (gn->checked == checked) {
1108 1.70 dsl /* We've already looked at this node since a job finished... */
1109 1.70 dsl if (DEBUG(MAKE))
1110 1.71 dsl fprintf(debug_file, "already checked %s%s\n",
1111 1.70 dsl gn->name, gn->cohort_num);
1112 1.71 dsl gn->made = DEFERRED;
1113 1.70 dsl continue;
1114 1.70 dsl }
1115 1.70 dsl gn->checked = checked;
1116 1.70 dsl
1117 1.68 dsl if (gn->unmade != 0) {
1118 1.1 cgd /*
1119 1.68 dsl * We can't build this yet, add all unmade children to toBeMade,
1120 1.68 dsl * just before the current first element.
1121 1.1 cgd */
1122 1.68 dsl gn->made = DEFERRED;
1123 1.68 dsl Lst_ForEach(gn->children, MakeBuildChild, Lst_First(toBeMade));
1124 1.68 dsl /* and drop this node on the floor */
1125 1.68 dsl if (DEBUG(MAKE))
1126 1.68 dsl fprintf(debug_file, "dropped %s%s\n", gn->name, gn->cohort_num);
1127 1.68 dsl continue;
1128 1.1 cgd }
1129 1.10 christos
1130 1.68 dsl gn->made = BEINGMADE;
1131 1.56 christos if (Make_OODate(gn)) {
1132 1.1 cgd if (DEBUG(MAKE)) {
1133 1.66 dsl fprintf(debug_file, "out-of-date\n");
1134 1.1 cgd }
1135 1.1 cgd if (queryFlag) {
1136 1.98 rillig return TRUE;
1137 1.1 cgd }
1138 1.56 christos Make_DoAllVar(gn);
1139 1.56 christos Job_Make(gn);
1140 1.59 dsl have_token = 0;
1141 1.1 cgd } else {
1142 1.1 cgd if (DEBUG(MAKE)) {
1143 1.66 dsl fprintf(debug_file, "up-to-date\n");
1144 1.1 cgd }
1145 1.1 cgd gn->made = UPTODATE;
1146 1.1 cgd if (gn->type & OP_JOIN) {
1147 1.1 cgd /*
1148 1.1 cgd * Even for an up-to-date .JOIN node, we need it to have its
1149 1.1 cgd * context variables so references to it get the correct
1150 1.1 cgd * value for .TARGET when building up the context variables
1151 1.1 cgd * of its parent(s)...
1152 1.1 cgd */
1153 1.56 christos Make_DoAllVar(gn);
1154 1.1 cgd }
1155 1.56 christos Make_Update(gn);
1156 1.1 cgd }
1157 1.1 cgd }
1158 1.59 dsl
1159 1.59 dsl if (have_token)
1160 1.59 dsl Job_TokenReturn();
1161 1.59 dsl
1162 1.98 rillig return FALSE;
1163 1.1 cgd }
1164 1.108 rillig
1165 1.1 cgd /*-
1166 1.1 cgd *-----------------------------------------------------------------------
1167 1.1 cgd * MakePrintStatus --
1168 1.1 cgd * Print the status of a top-level node, viz. it being up-to-date
1169 1.1 cgd * already or not created due to an error in a lower level.
1170 1.1 cgd * Callback function for Make_Run via Lst_ForEach.
1171 1.1 cgd *
1172 1.50 wiz * Input:
1173 1.50 wiz * gnp Node to examine
1174 1.50 wiz * cyclep True if gn->unmade being non-zero implies a
1175 1.50 wiz * cycle in the graph, not an error in an
1176 1.50 wiz * inferior.
1177 1.50 wiz *
1178 1.1 cgd * Results:
1179 1.1 cgd * Always returns 0.
1180 1.1 cgd *
1181 1.1 cgd * Side Effects:
1182 1.1 cgd * A message may be printed.
1183 1.1 cgd *
1184 1.1 cgd *-----------------------------------------------------------------------
1185 1.1 cgd */
1186 1.1 cgd static int
1187 1.78 dsl MakePrintStatusOrder(void *ognp, void *gnp)
1188 1.68 dsl {
1189 1.68 dsl GNode *ogn = ognp;
1190 1.68 dsl GNode *gn = gnp;
1191 1.68 dsl
1192 1.68 dsl if (!(ogn->flags & REMAKE) || ogn->made > REQUESTED)
1193 1.68 dsl /* not waiting for this one */
1194 1.68 dsl return 0;
1195 1.68 dsl
1196 1.122 rillig printf(" `%s%s' has .ORDER dependency against %s%s ",
1197 1.122 rillig gn->name, gn->cohort_num, ogn->name, ogn->cohort_num);
1198 1.122 rillig GNode_FprintDetails(stdout, "(", ogn, ")\n");
1199 1.122 rillig
1200 1.122 rillig if (DEBUG(MAKE) && debug_file != stdout) {
1201 1.122 rillig fprintf(debug_file, " `%s%s' has .ORDER dependency against %s%s ",
1202 1.122 rillig gn->name, gn->cohort_num, ogn->name, ogn->cohort_num);
1203 1.122 rillig GNode_FprintDetails(debug_file, "(", ogn, ")\n");
1204 1.122 rillig }
1205 1.68 dsl return 0;
1206 1.68 dsl }
1207 1.68 dsl
1208 1.68 dsl static int
1209 1.78 dsl MakePrintStatus(void *gnp, void *v_errors)
1210 1.1 cgd {
1211 1.58 christos GNode *gn = (GNode *)gnp;
1212 1.68 dsl int *errors = v_errors;
1213 1.68 dsl
1214 1.68 dsl if (gn->flags & DONECYCLE)
1215 1.68 dsl /* We've completely processed this node before, don't do it again. */
1216 1.68 dsl return 0;
1217 1.68 dsl
1218 1.68 dsl if (gn->unmade == 0) {
1219 1.68 dsl gn->flags |= DONECYCLE;
1220 1.68 dsl switch (gn->made) {
1221 1.68 dsl case UPTODATE:
1222 1.68 dsl printf("`%s%s' is up to date.\n", gn->name, gn->cohort_num);
1223 1.68 dsl break;
1224 1.68 dsl case MADE:
1225 1.68 dsl break;
1226 1.68 dsl case UNMADE:
1227 1.68 dsl case DEFERRED:
1228 1.68 dsl case REQUESTED:
1229 1.68 dsl case BEINGMADE:
1230 1.68 dsl (*errors)++;
1231 1.122 rillig printf("`%s%s' was not built", gn->name, gn->cohort_num);
1232 1.122 rillig GNode_FprintDetails(stdout, " (", gn, ")!\n");
1233 1.122 rillig if (DEBUG(MAKE) && debug_file != stdout) {
1234 1.122 rillig fprintf(debug_file, "`%s%s' was not built",
1235 1.122 rillig gn->name, gn->cohort_num);
1236 1.122 rillig GNode_FprintDetails(debug_file, " (", gn, ")!\n");
1237 1.122 rillig }
1238 1.68 dsl /* Most likely problem is actually caused by .ORDER */
1239 1.68 dsl Lst_ForEach(gn->order_pred, MakePrintStatusOrder, gn);
1240 1.68 dsl break;
1241 1.68 dsl default:
1242 1.68 dsl /* Errors - already counted */
1243 1.68 dsl printf("`%s%s' not remade because of errors.\n",
1244 1.68 dsl gn->name, gn->cohort_num);
1245 1.68 dsl if (DEBUG(MAKE) && debug_file != stdout)
1246 1.68 dsl fprintf(debug_file, "`%s%s' not remade because of errors.\n",
1247 1.68 dsl gn->name, gn->cohort_num);
1248 1.68 dsl break;
1249 1.1 cgd }
1250 1.68 dsl return 0;
1251 1.68 dsl }
1252 1.68 dsl
1253 1.68 dsl if (DEBUG(MAKE))
1254 1.68 dsl fprintf(debug_file, "MakePrintStatus: %s%s has %d unmade children\n",
1255 1.68 dsl gn->name, gn->cohort_num, gn->unmade);
1256 1.68 dsl /*
1257 1.68 dsl * If printing cycles and came to one that has unmade children,
1258 1.70 dsl * print out the cycle by recursing on its children.
1259 1.68 dsl */
1260 1.70 dsl if (!(gn->flags & CYCLE)) {
1261 1.70 dsl /* Fist time we've seen this node, check all children */
1262 1.68 dsl gn->flags |= CYCLE;
1263 1.68 dsl Lst_ForEach(gn->children, MakePrintStatus, errors);
1264 1.70 dsl /* Mark that this node needn't be processed again */
1265 1.68 dsl gn->flags |= DONECYCLE;
1266 1.70 dsl return 0;
1267 1.1 cgd }
1268 1.68 dsl
1269 1.70 dsl /* Only output the error once per node */
1270 1.70 dsl gn->flags |= DONECYCLE;
1271 1.70 dsl Error("Graph cycles through `%s%s'", gn->name, gn->cohort_num);
1272 1.70 dsl if ((*errors)++ > 100)
1273 1.70 dsl /* Abandon the whole error report */
1274 1.70 dsl return 1;
1275 1.70 dsl
1276 1.70 dsl /* Reporting for our children will give the rest of the loop */
1277 1.70 dsl Lst_ForEach(gn->children, MakePrintStatus, errors);
1278 1.70 dsl return 0;
1279 1.1 cgd }
1280 1.108 rillig
1281 1.11 christos
1282 1.1 cgd /*-
1283 1.1 cgd *-----------------------------------------------------------------------
1284 1.11 christos * Make_ExpandUse --
1285 1.11 christos * Expand .USE nodes and create a new targets list
1286 1.50 wiz *
1287 1.50 wiz * Input:
1288 1.50 wiz * targs the initial list of targets
1289 1.50 wiz *
1290 1.1 cgd * Side Effects:
1291 1.1 cgd *-----------------------------------------------------------------------
1292 1.1 cgd */
1293 1.68 dsl void
1294 1.50 wiz Make_ExpandUse(Lst targs)
1295 1.1 cgd {
1296 1.44 pk GNode *gn; /* a temporary pointer */
1297 1.44 pk Lst examine; /* List of targets to examine */
1298 1.1 cgd
1299 1.121 rillig examine = Lst_CopyS(targs, NULL);
1300 1.10 christos
1301 1.1 cgd /*
1302 1.1 cgd * Make an initial downward pass over the graph, marking nodes to be made
1303 1.1 cgd * as we go down. We call Suff_FindDeps to find where a node is and
1304 1.1 cgd * to get some children for it if it has none and also has no commands.
1305 1.1 cgd * If the node is a leaf, we stick it on the toBeMade queue to
1306 1.1 cgd * be looked at in a minute, otherwise we add its children to our queue
1307 1.10 christos * and go on about our business.
1308 1.1 cgd */
1309 1.115 rillig while (!Lst_IsEmpty(examine)) {
1310 1.115 rillig gn = Lst_DequeueS(examine);
1311 1.99 rillig
1312 1.68 dsl if (gn->flags & REMAKE)
1313 1.68 dsl /* We've looked at this one already */
1314 1.68 dsl continue;
1315 1.68 dsl gn->flags |= REMAKE;
1316 1.68 dsl if (DEBUG(MAKE))
1317 1.68 dsl fprintf(debug_file, "Make_ExpandUse: examine %s%s\n",
1318 1.68 dsl gn->name, gn->cohort_num);
1319 1.10 christos
1320 1.120 rillig if (gn->type & OP_DOUBLEDEP)
1321 1.120 rillig Lst_PrependAllS(examine, gn->cohorts);
1322 1.10 christos
1323 1.68 dsl /*
1324 1.68 dsl * Apply any .USE rules before looking for implicit dependencies
1325 1.68 dsl * to make sure everything has commands that should...
1326 1.68 dsl * Make sure that the TARGET is set, so that we can make
1327 1.68 dsl * expansions.
1328 1.68 dsl */
1329 1.68 dsl if (gn->type & OP_ARCHV) {
1330 1.68 dsl char *eoa, *eon;
1331 1.68 dsl eoa = strchr(gn->name, '(');
1332 1.68 dsl eon = strchr(gn->name, ')');
1333 1.68 dsl if (eoa == NULL || eon == NULL)
1334 1.68 dsl continue;
1335 1.68 dsl *eoa = '\0';
1336 1.68 dsl *eon = '\0';
1337 1.97 rillig Var_Set(MEMBER, eoa + 1, gn);
1338 1.97 rillig Var_Set(ARCHIVE, gn->name, gn);
1339 1.68 dsl *eoa = '(';
1340 1.68 dsl *eon = ')';
1341 1.68 dsl }
1342 1.68 dsl
1343 1.85 christos (void)Dir_MTime(gn, 0);
1344 1.97 rillig Var_Set(TARGET, gn->path ? gn->path : gn->name, gn);
1345 1.68 dsl Lst_ForEach(gn->children, MakeUnmark, gn);
1346 1.68 dsl Lst_ForEach(gn->children, MakeHandleUse, gn);
1347 1.68 dsl
1348 1.68 dsl if ((gn->type & OP_MADE) == 0)
1349 1.68 dsl Suff_FindDeps(gn);
1350 1.68 dsl else {
1351 1.68 dsl /* Pretend we made all this node's children */
1352 1.68 dsl Lst_ForEach(gn->children, MakeFindChild, gn);
1353 1.68 dsl if (gn->unmade != 0)
1354 1.68 dsl printf("Warning: %s%s still has %d unmade children\n",
1355 1.68 dsl gn->name, gn->cohort_num, gn->unmade);
1356 1.68 dsl }
1357 1.68 dsl
1358 1.68 dsl if (gn->unmade != 0)
1359 1.68 dsl Lst_ForEach(gn->children, MakeAddChild, examine);
1360 1.68 dsl }
1361 1.68 dsl
1362 1.77 dsl Lst_Destroy(examine, NULL);
1363 1.68 dsl }
1364 1.68 dsl
1365 1.68 dsl /*-
1366 1.68 dsl *-----------------------------------------------------------------------
1367 1.68 dsl * Make_ProcessWait --
1368 1.68 dsl * Convert .WAIT nodes into dependencies
1369 1.68 dsl *
1370 1.68 dsl * Input:
1371 1.68 dsl * targs the initial list of targets
1372 1.68 dsl *
1373 1.68 dsl *-----------------------------------------------------------------------
1374 1.68 dsl */
1375 1.68 dsl
1376 1.68 dsl static int
1377 1.78 dsl link_parent(void *cnp, void *pnp)
1378 1.68 dsl {
1379 1.68 dsl GNode *cn = cnp;
1380 1.68 dsl GNode *pn = pnp;
1381 1.68 dsl
1382 1.113 rillig Lst_AppendS(pn->children, cn);
1383 1.113 rillig Lst_AppendS(cn->parents, pn);
1384 1.68 dsl pn->unmade++;
1385 1.68 dsl return 0;
1386 1.68 dsl }
1387 1.68 dsl
1388 1.68 dsl static int
1389 1.68 dsl add_wait_dep(void *v_cn, void *v_wn)
1390 1.68 dsl {
1391 1.68 dsl GNode *cn = v_cn;
1392 1.68 dsl GNode *wn = v_wn;
1393 1.68 dsl
1394 1.68 dsl if (cn == wn)
1395 1.68 dsl return 1;
1396 1.68 dsl
1397 1.68 dsl if (cn == NULL || wn == NULL) {
1398 1.68 dsl printf("bad wait dep %p %p\n", cn, wn);
1399 1.68 dsl exit(4);
1400 1.68 dsl }
1401 1.68 dsl if (DEBUG(MAKE))
1402 1.68 dsl fprintf(debug_file, ".WAIT: add dependency %s%s -> %s\n",
1403 1.68 dsl cn->name, cn->cohort_num, wn->name);
1404 1.68 dsl
1405 1.113 rillig Lst_AppendS(wn->children, cn);
1406 1.68 dsl wn->unmade++;
1407 1.113 rillig Lst_AppendS(cn->parents, wn);
1408 1.68 dsl return 0;
1409 1.68 dsl }
1410 1.68 dsl
1411 1.68 dsl static void
1412 1.68 dsl Make_ProcessWait(Lst targs)
1413 1.68 dsl {
1414 1.68 dsl GNode *pgn; /* 'parent' node we are examining */
1415 1.68 dsl GNode *cgn; /* Each child in turn */
1416 1.68 dsl LstNode owln; /* Previous .WAIT node */
1417 1.68 dsl Lst examine; /* List of targets to examine */
1418 1.68 dsl LstNode ln;
1419 1.68 dsl
1420 1.68 dsl /*
1421 1.68 dsl * We need all the nodes to have a common parent in order for the
1422 1.68 dsl * .WAIT and .ORDER scheduling to work.
1423 1.68 dsl * Perhaps this should be done earlier...
1424 1.68 dsl */
1425 1.68 dsl
1426 1.68 dsl pgn = Targ_NewGN(".MAIN");
1427 1.68 dsl pgn->flags = REMAKE;
1428 1.68 dsl pgn->type = OP_PHONY | OP_DEPENDS;
1429 1.68 dsl /* Get it displayed in the diag dumps */
1430 1.114 rillig Lst_PrependS(Targ_List(), pgn);
1431 1.68 dsl
1432 1.68 dsl Lst_ForEach(targs, link_parent, pgn);
1433 1.68 dsl
1434 1.68 dsl /* Start building with the 'dummy' .MAIN' node */
1435 1.77 dsl MakeBuildChild(pgn, NULL);
1436 1.68 dsl
1437 1.104 rillig examine = Lst_Init();
1438 1.113 rillig Lst_AppendS(examine, pgn);
1439 1.68 dsl
1440 1.115 rillig while (!Lst_IsEmpty(examine)) {
1441 1.115 rillig pgn = Lst_DequeueS(examine);
1442 1.99 rillig
1443 1.68 dsl /* We only want to process each child-list once */
1444 1.68 dsl if (pgn->flags & DONE_WAIT)
1445 1.68 dsl continue;
1446 1.68 dsl pgn->flags |= DONE_WAIT;
1447 1.68 dsl if (DEBUG(MAKE))
1448 1.68 dsl fprintf(debug_file, "Make_ProcessWait: examine %s\n", pgn->name);
1449 1.68 dsl
1450 1.120 rillig if (pgn->type & OP_DOUBLEDEP)
1451 1.120 rillig Lst_PrependAllS(examine, pgn->cohorts);
1452 1.1 cgd
1453 1.68 dsl owln = Lst_First(pgn->children);
1454 1.107 rillig Lst_OpenS(pgn->children);
1455 1.106 rillig for (; (ln = Lst_NextS(pgn->children)) != NULL; ) {
1456 1.117 rillig cgn = Lst_DatumS(ln);
1457 1.68 dsl if (cgn->type & OP_WAIT) {
1458 1.68 dsl /* Make the .WAIT node depend on the previous children */
1459 1.68 dsl Lst_ForEachFrom(pgn->children, owln, add_wait_dep, cgn);
1460 1.68 dsl owln = ln;
1461 1.1 cgd } else {
1462 1.113 rillig Lst_AppendS(examine, cgn);
1463 1.1 cgd }
1464 1.1 cgd }
1465 1.107 rillig Lst_CloseS(pgn->children);
1466 1.1 cgd }
1467 1.10 christos
1468 1.77 dsl Lst_Destroy(examine, NULL);
1469 1.11 christos }
1470 1.11 christos
1471 1.11 christos /*-
1472 1.11 christos *-----------------------------------------------------------------------
1473 1.11 christos * Make_Run --
1474 1.11 christos * Initialize the nodes to remake and the list of nodes which are
1475 1.11 christos * ready to be made by doing a breadth-first traversal of the graph
1476 1.11 christos * starting from the nodes in the given list. Once this traversal
1477 1.11 christos * is finished, all the 'leaves' of the graph are in the toBeMade
1478 1.11 christos * queue.
1479 1.11 christos * Using this queue and the Job module, work back up the graph,
1480 1.11 christos * calling on MakeStartJobs to keep the job table as full as
1481 1.11 christos * possible.
1482 1.11 christos *
1483 1.50 wiz * Input:
1484 1.50 wiz * targs the initial list of targets
1485 1.50 wiz *
1486 1.11 christos * Results:
1487 1.11 christos * TRUE if work was done. FALSE otherwise.
1488 1.11 christos *
1489 1.11 christos * Side Effects:
1490 1.11 christos * The make field of all nodes involved in the creation of the given
1491 1.11 christos * targets is set to 1. The toBeMade list is set to contain all the
1492 1.11 christos * 'leaves' of these subgraphs.
1493 1.11 christos *-----------------------------------------------------------------------
1494 1.11 christos */
1495 1.11 christos Boolean
1496 1.50 wiz Make_Run(Lst targs)
1497 1.11 christos {
1498 1.11 christos int errors; /* Number of errors the Job module reports */
1499 1.11 christos
1500 1.68 dsl /* Start trying to make the current targets... */
1501 1.104 rillig toBeMade = Lst_Init();
1502 1.68 dsl
1503 1.68 dsl Make_ExpandUse(targs);
1504 1.68 dsl Make_ProcessWait(targs);
1505 1.68 dsl
1506 1.60 dsl if (DEBUG(MAKE)) {
1507 1.68 dsl fprintf(debug_file, "#***# full graph\n");
1508 1.68 dsl Targ_PrintGraph(1);
1509 1.60 dsl }
1510 1.1 cgd
1511 1.1 cgd if (queryFlag) {
1512 1.1 cgd /*
1513 1.1 cgd * We wouldn't do any work unless we could start some jobs in the
1514 1.1 cgd * next loop... (we won't actually start any, of course, this is just
1515 1.1 cgd * to see if any of the targets was out of date)
1516 1.1 cgd */
1517 1.98 rillig return MakeStartJobs();
1518 1.1 cgd }
1519 1.68 dsl /*
1520 1.68 dsl * Initialization. At the moment, no jobs are running and until some
1521 1.68 dsl * get started, nothing will happen since the remaining upward
1522 1.68 dsl * traversal of the graph is performed by the routines in job.c upon
1523 1.68 dsl * the finishing of a job. So we fill the Job table as much as we can
1524 1.68 dsl * before going into our loop.
1525 1.68 dsl */
1526 1.68 dsl (void)MakeStartJobs();
1527 1.1 cgd
1528 1.1 cgd /*
1529 1.1 cgd * Main Loop: The idea here is that the ending of jobs will take
1530 1.1 cgd * care of the maintenance of data structures and the waiting for output
1531 1.1 cgd * will cause us to be idle most of the time while our children run as
1532 1.1 cgd * much as possible. Because the job table is kept as full as possible,
1533 1.1 cgd * the only time when it will be empty is when all the jobs which need
1534 1.1 cgd * running have been run, so that is the end condition of this loop.
1535 1.1 cgd * Note that the Job module will exit if there were any errors unless the
1536 1.1 cgd * keepgoing flag was given.
1537 1.1 cgd */
1538 1.62 dsl while (!Lst_IsEmpty(toBeMade) || jobTokensRunning > 0) {
1539 1.56 christos Job_CatchOutput();
1540 1.1 cgd (void)MakeStartJobs();
1541 1.1 cgd }
1542 1.1 cgd
1543 1.20 christos errors = Job_Finish();
1544 1.1 cgd
1545 1.1 cgd /*
1546 1.1 cgd * Print the final status of each target. E.g. if it wasn't made
1547 1.1 cgd * because some inferior reported an error.
1548 1.1 cgd */
1549 1.68 dsl if (DEBUG(MAKE))
1550 1.68 dsl fprintf(debug_file, "done: errors %d\n", errors);
1551 1.68 dsl if (errors == 0) {
1552 1.68 dsl Lst_ForEach(targs, MakePrintStatus, &errors);
1553 1.68 dsl if (DEBUG(MAKE)) {
1554 1.68 dsl fprintf(debug_file, "done: errors %d\n", errors);
1555 1.68 dsl if (errors)
1556 1.68 dsl Targ_PrintGraph(4);
1557 1.68 dsl }
1558 1.68 dsl }
1559 1.68 dsl return errors != 0;
1560 1.1 cgd }
1561