1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright 2007 Jon Loeliger, Freescale Semiconductor, Inc.
13 struct srcfile_state {
18 struct srcfile_state *prev;
21 extern FILE *depfile; /* = NULL */
22 extern struct srcfile_state *current_srcfile; /* = NULL */
27 * If the source file is a relative pathname, then it is searched for in the
28 * current directory (the directory of the last source file read) and after
29 * that in the search path.
31 * We work through the search path in order from the first path specified to
34 * If the file is not found, then this function does not return, but calls
37 * @param fname Filename to search
38 * @param fullnamep If non-NULL, it is set to the allocated filename of the
39 * file that was opened. The caller is then responsible
40 * for freeing the pointer.
41 * @return pointer to opened FILE
43 FILE *srcfile_relative_open(const char *fname, char **fullnamep);
45 void srcfile_push(const char *fname);
46 bool srcfile_pop(void);
49 * Add a new directory to the search path for input files
51 * The new path is added at the end of the list.
53 * @param dirname Directory to add
55 void srcfile_add_search_path(const char *dirname);
62 struct srcfile_state *file;
66 #define YYLTYPE struct srcpos
68 #define YYLLOC_DEFAULT(Current, Rhs, N) \
71 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
72 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
73 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
74 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
75 (Current).file = YYRHSLOC(Rhs, N).file; \
77 (Current).first_line = (Current).last_line = \
78 YYRHSLOC(Rhs, 0).last_line; \
79 (Current).first_column = (Current).last_column = \
80 YYRHSLOC(Rhs, 0).last_column; \
81 (Current).file = YYRHSLOC (Rhs, 0).file; \
83 (Current).next = NULL; \
87 extern void srcpos_update(struct srcpos *pos, const char *text, int len);
88 extern struct srcpos *srcpos_copy(struct srcpos *pos);
89 extern struct srcpos *srcpos_extend(struct srcpos *new_srcpos,
90 struct srcpos *old_srcpos);
91 extern char *srcpos_string(struct srcpos *pos);
92 extern char *srcpos_string_first(struct srcpos *pos, int level);
93 extern char *srcpos_string_last(struct srcpos *pos, int level);
96 extern void PRINTF(3, 0) srcpos_verror(struct srcpos *pos, const char *prefix,
97 const char *fmt, va_list va);
98 extern void PRINTF(3, 4) srcpos_error(struct srcpos *pos, const char *prefix,
99 const char *fmt, ...);
101 extern void srcpos_set_line(char *f, int l);
103 #endif /* SRCPOS_H */