1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#ifndef SRCPOS_H
21#define SRCPOS_H
22
23#include <stdio.h>
24#include <stdbool.h>
25#include "util.h"
26
27struct srcfile_state {
28 FILE *f;
29 char *name;
30 char *dir;
31 int lineno, colno;
32 struct srcfile_state *prev;
33};
34
35extern FILE *depfile;
36extern struct srcfile_state *current_srcfile;
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57FILE *srcfile_relative_open(const char *fname, char **fullnamep);
58
59void srcfile_push(const char *fname);
60bool srcfile_pop(void);
61
62
63
64
65
66
67
68
69void srcfile_add_search_path(const char *dirname);
70
71struct srcpos {
72 int first_line;
73 int first_column;
74 int last_line;
75 int last_column;
76 struct srcfile_state *file;
77};
78
79#define YYLTYPE struct srcpos
80
81#define YYLLOC_DEFAULT(Current, Rhs, N) \
82 do { \
83 if (N) { \
84 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
85 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
86 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
87 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
88 (Current).file = YYRHSLOC(Rhs, N).file; \
89 } else { \
90 (Current).first_line = (Current).last_line = \
91 YYRHSLOC(Rhs, 0).last_line; \
92 (Current).first_column = (Current).last_column = \
93 YYRHSLOC(Rhs, 0).last_column; \
94 (Current).file = YYRHSLOC (Rhs, 0).file; \
95 } \
96 } while (0)
97
98
99
100
101
102
103
104extern struct srcpos srcpos_empty;
105
106extern void srcpos_update(struct srcpos *pos, const char *text, int len);
107extern struct srcpos *srcpos_copy(struct srcpos *pos);
108extern char *srcpos_string(struct srcpos *pos);
109
110extern void PRINTF(3, 0) srcpos_verror(struct srcpos *pos, const char *prefix,
111 const char *fmt, va_list va);
112extern void PRINTF(3, 4) srcpos_error(struct srcpos *pos, const char *prefix,
113 const char *fmt, ...);
114
115extern void srcpos_set_line(char *f, int l);
116
117#endif
118