2 * Copyright 2007 Jon Loeliger, Freescale Semiconductor, Inc.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
25 struct srcfile_state
{
30 struct srcfile_state
*prev
;
33 extern FILE *depfile
; /* = NULL */
34 extern struct srcfile_state
*current_srcfile
; /* = NULL */
36 FILE *srcfile_relative_open(const char *fname
, char **fullnamep
);
37 void srcfile_push(const char *fname
);
38 int srcfile_pop(void);
45 struct srcfile_state
*file
;
48 #define YYLTYPE struct srcpos
50 #define YYLLOC_DEFAULT(Current, Rhs, N) \
53 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
54 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
55 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
56 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
57 (Current).file = YYRHSLOC(Rhs, N).file; \
59 (Current).first_line = (Current).last_line = \
60 YYRHSLOC(Rhs, 0).last_line; \
61 (Current).first_column = (Current).last_column = \
62 YYRHSLOC(Rhs, 0).last_column; \
63 (Current).file = YYRHSLOC (Rhs, 0).file; \
69 * Fictional source position used for IR nodes that are
70 * created without otherwise knowing a true source position.
71 * For example,constant definitions from the command line.
73 extern struct srcpos srcpos_empty
;
75 extern void srcpos_update(struct srcpos
*pos
, const char *text
, int len
);
76 extern struct srcpos
*srcpos_copy(struct srcpos
*pos
);
77 extern char *srcpos_string(struct srcpos
*pos
);
78 extern void srcpos_dump(struct srcpos
*pos
);
80 extern void srcpos_verror(struct srcpos
*pos
, char const *, va_list va
)
81 __attribute__((format(printf
, 2, 0)));
82 extern void srcpos_error(struct srcpos
*pos
, char const *, ...)
83 __attribute__((format(printf
, 2, 3)));
84 extern void srcpos_warn(struct srcpos
*pos
, char const *, ...)
85 __attribute__((format(printf
, 2, 3)));
87 #endif /* _SRCPOS_H_ */