Blame view

scripts/dtc/srcpos.c 5.39 KB
a4da2e3ec   David Gibson   [POWERPC] Merge d...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  /*
   * Copyright 2007 Jon Loeliger, Freescale Semiconductor, Inc.
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License as
   * published by the Free Software Foundation; either version 2 of the
   * License, or (at your option) any later version.
   *
   *  This program is distributed in the hope that it will be useful,
   *  but WITHOUT ANY WARRANTY; without even the implied warranty of
   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   *  General Public License for more details.
   *
   *  You should have received a copy of the GNU General Public License
   *  along with this program; if not, write to the Free Software
   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
   *                                                                   USA
   */
658f29a51   John Bonesio   of/flattree: Upda...
19
20
21
  #define _GNU_SOURCE
  
  #include <stdio.h>
a4da2e3ec   David Gibson   [POWERPC] Merge d...
22
23
  #include "dtc.h"
  #include "srcpos.h"
a4da2e3ec   David Gibson   [POWERPC] Merge d...
24

658f29a51   John Bonesio   of/flattree: Upda...
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  static char *dirname(const char *path)
  {
  	const char *slash = strrchr(path, '/');
  
  	if (slash) {
  		int len = slash - path;
  		char *dir = xmalloc(len + 1);
  
  		memcpy(dir, path, len);
  		dir[len] = '\0';
  		return dir;
  	}
  	return NULL;
  }
136ec2049   Stephen Warren   dtc: Implement -d...
39
  FILE *depfile; /* = NULL */
658f29a51   John Bonesio   of/flattree: Upda...
40
  struct srcfile_state *current_srcfile; /* = NULL */
a4da2e3ec   David Gibson   [POWERPC] Merge d...
41

658f29a51   John Bonesio   of/flattree: Upda...
42
43
44
45
46
  /* Detect infinite include recursion. */
  #define MAX_SRCFILE_DEPTH     (100)
  static int srcfile_depth; /* = 0 */
  
  FILE *srcfile_relative_open(const char *fname, char **fullnamep)
a4da2e3ec   David Gibson   [POWERPC] Merge d...
47
  {
658f29a51   John Bonesio   of/flattree: Upda...
48
  	FILE *f;
ed95d7450   David Gibson   powerpc: Update i...
49
  	char *fullname;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
50

658f29a51   John Bonesio   of/flattree: Upda...
51
52
53
  	if (streq(fname, "-")) {
  		f = stdin;
  		fullname = xstrdup("<stdin>");
ed95d7450   David Gibson   powerpc: Update i...
54
  	} else {
658f29a51   John Bonesio   of/flattree: Upda...
55
56
57
58
59
60
61
62
63
64
65
  		if (!current_srcfile || !current_srcfile->dir
  		    || (fname[0] == '/'))
  			fullname = xstrdup(fname);
  		else
  			fullname = join_path(current_srcfile->dir, fname);
  
  		f = fopen(fullname, "r");
  		if (!f)
  			die("Couldn't open \"%s\": %s
  ", fname,
  			    strerror(errno));
ed95d7450   David Gibson   powerpc: Update i...
66
  	}
a4da2e3ec   David Gibson   [POWERPC] Merge d...
67

136ec2049   Stephen Warren   dtc: Implement -d...
68
69
  	if (depfile)
  		fprintf(depfile, " %s", fullname);
658f29a51   John Bonesio   of/flattree: Upda...
70
71
72
  	if (fullnamep)
  		*fullnamep = fullname;
  	else
ed95d7450   David Gibson   powerpc: Update i...
73
  		free(fullname);
a4da2e3ec   David Gibson   [POWERPC] Merge d...
74

658f29a51   John Bonesio   of/flattree: Upda...
75
  	return f;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
76
  }
658f29a51   John Bonesio   of/flattree: Upda...
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  void srcfile_push(const char *fname)
  {
  	struct srcfile_state *srcfile;
  
  	if (srcfile_depth++ >= MAX_SRCFILE_DEPTH)
  		die("Includes nested too deeply");
  
  	srcfile = xmalloc(sizeof(*srcfile));
  
  	srcfile->f = srcfile_relative_open(fname, &srcfile->name);
  	srcfile->dir = dirname(srcfile->name);
  	srcfile->prev = current_srcfile;
  
  	srcfile->lineno = 1;
  	srcfile->colno = 1;
  
  	current_srcfile = srcfile;
  }
a4da2e3ec   David Gibson   [POWERPC] Merge d...
95

658f29a51   John Bonesio   of/flattree: Upda...
96
  int srcfile_pop(void)
ed95d7450   David Gibson   powerpc: Update i...
97
  {
658f29a51   John Bonesio   of/flattree: Upda...
98
  	struct srcfile_state *srcfile = current_srcfile;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
99

658f29a51   John Bonesio   of/flattree: Upda...
100
  	assert(srcfile);
a4da2e3ec   David Gibson   [POWERPC] Merge d...
101

658f29a51   John Bonesio   of/flattree: Upda...
102
  	current_srcfile = srcfile->prev;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
103

658f29a51   John Bonesio   of/flattree: Upda...
104
105
106
107
  	if (fclose(srcfile->f))
  		die("Error closing \"%s\": %s
  ", srcfile->name,
  		    strerror(errno));
ed95d7450   David Gibson   powerpc: Update i...
108

658f29a51   John Bonesio   of/flattree: Upda...
109
110
111
112
113
  	/* FIXME: We allow the srcfile_state structure to leak,
  	 * because it could still be referenced from a location
  	 * variable being carried through the parser somewhere.  To
  	 * fix this we could either allocate all the files from a
  	 * table, or use a pool allocator. */
a4da2e3ec   David Gibson   [POWERPC] Merge d...
114

658f29a51   John Bonesio   of/flattree: Upda...
115
116
  	return current_srcfile ? 1 : 0;
  }
a4da2e3ec   David Gibson   [POWERPC] Merge d...
117

658f29a51   John Bonesio   of/flattree: Upda...
118
119
120
  /*
   * The empty source position.
   */
ed95d7450   David Gibson   powerpc: Update i...
121

658f29a51   John Bonesio   of/flattree: Upda...
122
123
124
125
126
127
128
  struct srcpos srcpos_empty = {
  	.first_line = 0,
  	.first_column = 0,
  	.last_line = 0,
  	.last_column = 0,
  	.file = NULL,
  };
a4da2e3ec   David Gibson   [POWERPC] Merge d...
129

658f29a51   John Bonesio   of/flattree: Upda...
130
  #define TAB_SIZE      8
a4da2e3ec   David Gibson   [POWERPC] Merge d...
131

658f29a51   John Bonesio   of/flattree: Upda...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
  void srcpos_update(struct srcpos *pos, const char *text, int len)
  {
  	int i;
  
  	pos->file = current_srcfile;
  
  	pos->first_line = current_srcfile->lineno;
  	pos->first_column = current_srcfile->colno;
  
  	for (i = 0; i < len; i++)
  		if (text[i] == '
  ') {
  			current_srcfile->lineno++;
  			current_srcfile->colno = 1;
  		} else if (text[i] == '\t') {
  			current_srcfile->colno =
  				ALIGN(current_srcfile->colno, TAB_SIZE);
  		} else {
  			current_srcfile->colno++;
  		}
  
  	pos->last_line = current_srcfile->lineno;
  	pos->last_column = current_srcfile->colno;
  }
ed95d7450   David Gibson   powerpc: Update i...
156

658f29a51   John Bonesio   of/flattree: Upda...
157
158
159
160
  struct srcpos *
  srcpos_copy(struct srcpos *pos)
  {
  	struct srcpos *pos_new;
ed95d7450   David Gibson   powerpc: Update i...
161

658f29a51   John Bonesio   of/flattree: Upda...
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
  	pos_new = xmalloc(sizeof(struct srcpos));
  	memcpy(pos_new, pos, sizeof(struct srcpos));
  
  	return pos_new;
  }
  
  
  
  void
  srcpos_dump(struct srcpos *pos)
  {
  	printf("file        : \"%s\"
  ",
  	       pos->file ? (char *) pos->file : "<no file>");
  	printf("first_line  : %d
  ", pos->first_line);
  	printf("first_column: %d
  ", pos->first_column);
  	printf("last_line   : %d
  ", pos->last_line);
  	printf("last_column : %d
  ", pos->last_column);
  	printf("file        : %s
  ", pos->file->name);
  }
a4da2e3ec   David Gibson   [POWERPC] Merge d...
187

658f29a51   John Bonesio   of/flattree: Upda...
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  
  char *
  srcpos_string(struct srcpos *pos)
  {
  	const char *fname = "<no-file>";
  	char *pos_str;
  	int rc;
  
  	if (pos)
  		fname = pos->file->name;
  
  
  	if (pos->first_line != pos->last_line)
  		rc = asprintf(&pos_str, "%s:%d.%d-%d.%d", fname,
  			      pos->first_line, pos->first_column,
  			      pos->last_line, pos->last_column);
  	else if (pos->first_column != pos->last_column)
  		rc = asprintf(&pos_str, "%s:%d.%d-%d", fname,
  			      pos->first_line, pos->first_column,
  			      pos->last_column);
  	else
  		rc = asprintf(&pos_str, "%s:%d.%d", fname,
  			      pos->first_line, pos->first_column);
  
  	if (rc == -1)
  		die("Couldn't allocate in srcpos string");
  
  	return pos_str;
  }
  
  void
  srcpos_verror(struct srcpos *pos, char const *fmt, va_list va)
  {
         const char *srcstr;
  
         srcstr = srcpos_string(pos);
  
         fprintf(stdout, "Error: %s ", srcstr);
         vfprintf(stdout, fmt, va);
         fprintf(stdout, "
  ");
a4da2e3ec   David Gibson   [POWERPC] Merge d...
229
  }
658f29a51   John Bonesio   of/flattree: Upda...
230
231
  void
  srcpos_error(struct srcpos *pos, char const *fmt, ...)
a4da2e3ec   David Gibson   [POWERPC] Merge d...
232
  {
658f29a51   John Bonesio   of/flattree: Upda...
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
  	va_list va;
  
  	va_start(va, fmt);
  	srcpos_verror(pos, fmt, va);
  	va_end(va);
  }
  
  
  void
  srcpos_warn(struct srcpos *pos, char const *fmt, ...)
  {
  	const char *srcstr;
  	va_list va;
  	va_start(va, fmt);
  
  	srcstr = srcpos_string(pos);
  
  	fprintf(stderr, "Warning: %s ", srcstr);
  	vfprintf(stderr, fmt, va);
  	fprintf(stderr, "
  ");
ed95d7450   David Gibson   powerpc: Update i...
254

658f29a51   John Bonesio   of/flattree: Upda...
255
  	va_end(va);
a4da2e3ec   David Gibson   [POWERPC] Merge d...
256
  }