VirtualBox

source: kBuild/vendor/gnumake/current/filedef.h@ 486

Last change on this file since 486 was 280, checked in by bird, 19 years ago

Current make snaphot, 2005-05-16.

  • Property svn:eol-style set to native
File size: 8.8 KB
Line 
1/* Definition of target file data structures for GNU Make.
2Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1997,
32002 Free Software Foundation, Inc.
4This file is part of GNU Make.
5
6GNU Make is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Make is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Make; see the file COPYING. If not, write to
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
21
22/* Structure that represents the info on one file
23 that the makefile says how to make.
24 All of these are chained together through `next'. */
25
26#include "hash.h"
27
28struct file
29 {
30 char *name;
31 char *hname; /* Hashed filename */
32 char *vpath; /* VPATH/vpath pathname */
33 struct dep *deps; /* all dependencies, including duplicates */
34 struct commands *cmds; /* Commands to execute for this target. */
35 int command_flags; /* Flags OR'd in for cmds; see commands.h. */
36 char *stem; /* Implicit stem, if an implicit
37 rule has been used */
38 struct dep *also_make; /* Targets that are made by making this. */
39 FILE_TIMESTAMP last_mtime; /* File's modtime, if already known. */
40 FILE_TIMESTAMP mtime_before_update; /* File's modtime before any updating
41 has been performed. */
42 struct file *prev; /* Previous entry for same file name;
43 used when there are multiple double-colon
44 entries for the same file. */
45
46 /* File that this file was renamed to. After any time that a
47 file could be renamed, call `check_renamed' (below). */
48 struct file *renamed;
49
50 /* List of variable sets used for this file. */
51 struct variable_set_list *variables;
52
53 /* Pattern-specific variable reference for this target, or null if there
54 isn't one. Also see the pat_searched flag, below. */
55 struct variable_set_list *pat_variables;
56
57 /* Immediate dependent that caused this target to be remade,
58 or nil if there isn't one. */
59 struct file *parent;
60
61 /* For a double-colon entry, this is the first double-colon entry for
62 the same file. Otherwise this is null. */
63 struct file *double_colon;
64
65 short int update_status; /* Status of the last attempt to update,
66 or -1 if none has been made. */
67
68 enum cmd_state /* State of the commands. */
69 { /* Note: It is important that cs_not_started be zero. */
70 cs_not_started, /* Not yet started. */
71 cs_deps_running, /* Dep commands running. */
72 cs_running, /* Commands running. */
73 cs_finished /* Commands finished. */
74 } command_state ENUM_BITFIELD (2);
75
76 unsigned int precious:1; /* Non-0 means don't delete file on quit */
77 unsigned int low_resolution_time:1; /* Nonzero if this file's time stamp
78 has only one-second resolution. */
79 unsigned int tried_implicit:1; /* Nonzero if have searched
80 for implicit rule for making
81 this file; don't search again. */
82 unsigned int updating:1; /* Nonzero while updating deps of this file */
83 unsigned int updated:1; /* Nonzero if this file has been remade. */
84 unsigned int is_target:1; /* Nonzero if file is described as target. */
85 unsigned int cmd_target:1; /* Nonzero if file was given on cmd line. */
86 unsigned int phony:1; /* Nonzero if this is a phony file
87 i.e., a dependency of .PHONY. */
88 unsigned int intermediate:1;/* Nonzero if this is an intermediate file. */
89 /* Nonzero, for an intermediate file,
90 means remove_intermediates should not delete it. */
91 unsigned int secondary:1;
92 unsigned int dontcare:1; /* Nonzero if no complaint is to be made if
93 this target cannot be remade. */
94 unsigned int ignore_vpath:1;/* Nonzero if we threw out VPATH name. */
95 unsigned int pat_searched:1;/* Nonzero if we already searched for
96 pattern-specific variables. */
97 unsigned int considered:1; /* equal to `considered' if file has been
98 considered on current scan of goal chain */
99 };
100
101
102extern struct file *default_goal_file, *suffix_file, *default_file;
103extern char **default_goal_name;
104
105
106extern struct file *lookup_file PARAMS ((char *name));
107extern struct file *enter_file PARAMS ((char *name));
108extern void remove_intermediates PARAMS ((int sig));
109extern void snap_deps PARAMS ((void));
110extern void rename_file PARAMS ((struct file *file, char *name));
111extern void rehash_file PARAMS ((struct file *file, char *name));
112extern void set_command_state PARAMS ((struct file *file, enum cmd_state state));
113extern void notice_finished_file PARAMS ((struct file *file));
114extern void init_hash_files PARAMS ((void));
115extern char *build_target_list PARAMS ((char *old_list));
116
117#if FILE_TIMESTAMP_HI_RES
118# define FILE_TIMESTAMP_STAT_MODTIME(fname, st) \
119 file_timestamp_cons (fname, (st).st_mtime, (st).st_mtim.ST_MTIM_NSEC)
120#else
121# define FILE_TIMESTAMP_STAT_MODTIME(fname, st) \
122 file_timestamp_cons (fname, (st).st_mtime, 0)
123#endif
124
125/* If FILE_TIMESTAMP is 64 bits (or more), use nanosecond resolution.
126 (Multiply by 2**30 instead of by 10**9 to save time at the cost of
127 slightly decreasing the number of available timestamps.) With
128 64-bit FILE_TIMESTAMP, this stops working on 2514-05-30 01:53:04
129 UTC, but by then uintmax_t should be larger than 64 bits. */
130#define FILE_TIMESTAMPS_PER_S (FILE_TIMESTAMP_HI_RES ? 1000000000 : 1)
131#define FILE_TIMESTAMP_LO_BITS (FILE_TIMESTAMP_HI_RES ? 30 : 0)
132
133#define FILE_TIMESTAMP_S(ts) (((ts) - ORDINARY_MTIME_MIN) \
134 >> FILE_TIMESTAMP_LO_BITS)
135#define FILE_TIMESTAMP_NS(ts) ((int) (((ts) - ORDINARY_MTIME_MIN) \
136 & ((1 << FILE_TIMESTAMP_LO_BITS) - 1)))
137
138/* Upper bound on length of string "YYYY-MM-DD HH:MM:SS.NNNNNNNNN"
139 representing a file timestamp. The upper bound is not necessarily 19,
140 since the year might be less than -999 or greater than 9999.
141
142 Subtract one for the sign bit if in case file timestamps can be negative;
143 subtract FLOOR_LOG2_SECONDS_PER_YEAR to yield an upper bound on how many
144 file timestamp bits might affect the year;
145 302 / 1000 is log10 (2) rounded up;
146 add one for integer division truncation;
147 add one more for a minus sign if file timestamps can be negative;
148 add 4 to allow for any 4-digit epoch year (e.g. 1970);
149 add 25 to allow for "-MM-DD HH:MM:SS.NNNNNNNNN". */
150#define FLOOR_LOG2_SECONDS_PER_YEAR 24
151#define FILE_TIMESTAMP_PRINT_LEN_BOUND \
152 (((sizeof (FILE_TIMESTAMP) * CHAR_BIT - 1 - FLOOR_LOG2_SECONDS_PER_YEAR) \
153 * 302 / 1000) \
154 + 1 + 1 + 4 + 25)
155
156extern FILE_TIMESTAMP file_timestamp_cons PARAMS ((char const *,
157 time_t, int));
158extern FILE_TIMESTAMP file_timestamp_now PARAMS ((int *));
159extern void file_timestamp_sprintf PARAMS ((char *p, FILE_TIMESTAMP ts));
160
161/* Return the mtime of file F (a struct file *), caching it.
162 The value is NONEXISTENT_MTIME if the file does not exist. */
163#define file_mtime(f) file_mtime_1 ((f), 1)
164/* Return the mtime of file F (a struct file *), caching it.
165 Don't search using vpath for the file--if it doesn't actually exist,
166 we don't find it.
167 The value is NONEXISTENT_MTIME if the file does not exist. */
168#define file_mtime_no_search(f) file_mtime_1 ((f), 0)
169extern FILE_TIMESTAMP f_mtime PARAMS ((struct file *file, int search));
170#define file_mtime_1(f, v) \
171 ((f)->last_mtime == UNKNOWN_MTIME ? f_mtime ((f), v) : (f)->last_mtime)
172
173/* Special timestamp values. */
174
175/* The file's timestamp is not yet known. */
176#define UNKNOWN_MTIME 0
177
178/* The file does not exist. */
179#define NONEXISTENT_MTIME 1
180
181/* The file does not exist, and we assume that it is older than any
182 actual file. */
183#define OLD_MTIME 2
184
185/* The smallest and largest ordinary timestamps. */
186#define ORDINARY_MTIME_MIN (OLD_MTIME + 1)
187#define ORDINARY_MTIME_MAX ((FILE_TIMESTAMP_S (NEW_MTIME) \
188 << FILE_TIMESTAMP_LO_BITS) \
189 + ORDINARY_MTIME_MIN + FILE_TIMESTAMPS_PER_S - 1)
190
191/* Modtime value to use for `infinitely new'. We used to get the current time
192 from the system and use that whenever we wanted `new'. But that causes
193 trouble when the machine running make and the machine holding a file have
194 different ideas about what time it is; and can also lose for `force'
195 targets, which need to be considered newer than anything that depends on
196 them, even if said dependents' modtimes are in the future. */
197#define NEW_MTIME INTEGER_TYPE_MAXIMUM (FILE_TIMESTAMP)
198
199#define check_renamed(file) \
200 while ((file)->renamed != 0) (file) = (file)->renamed /* No ; here. */
201
202/* Have we snapped deps yet? */
203extern int snapped_deps;
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette