blob: 7a1decc7501e37b77b36ab9bbc19b4c0d21ab831 [file] [log] [blame]
Neil Boothd82fc102001-08-02 23:03:31 +00001/* Map logical line numbers to (source file, line number) pairs.
Tom Tromey92582b72011-10-17 09:59:12 +00002 Copyright (C) 2001, 2003, 2004, 2007, 2008, 2009, 2010, 2011
Neil Boothd82fc102001-08-02 23:03:31 +00003 Free Software Foundation, Inc.
4
5This program is free software; you can redistribute it and/or modify it
6under the terms of the GNU General Public License as published by the
Jakub Jelinek748086b2009-04-09 17:00:19 +02007Free Software Foundation; either version 3, or (at your option) any
Neil Boothd82fc102001-08-02 23:03:31 +00008later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
Jakub Jelinek748086b2009-04-09 17:00:19 +020016along with this program; see the file COPYING3. If not see
17<http://www.gnu.org/licenses/>.
Neil Boothd82fc102001-08-02 23:03:31 +000018
19 In other words, you are welcome to use, share and improve this program.
20 You are forbidden to forbid anyone else to use, share and improve
21 what you give them. Help stamp out software-hoarding! */
22
23#include "config.h"
24#include "system.h"
25#include "line-map.h"
Tom Tromey46427372011-10-17 11:58:56 +020026#include "cpplib.h"
27#include "internal.h"
Neil Boothd82fc102001-08-02 23:03:31 +000028
Neil Boothe2b98532003-06-20 05:51:13 +000029static void trace_include (const struct line_maps *, const struct line_map *);
Tom Tromey46427372011-10-17 11:58:56 +020030static const struct line_map * linemap_ordinary_map_lookup (struct line_maps *,
31 source_location);
32static const struct line_map* linemap_macro_map_lookup (struct line_maps *,
33 source_location);
34static source_location linemap_macro_map_loc_to_def_point
35(const struct line_map*, source_location);
36static source_location linemap_macro_map_loc_unwind_toward_spelling
37(const struct line_map*, source_location);
38static source_location linemap_macro_map_loc_to_exp_point
39(const struct line_map*, source_location);
40static source_location linemap_macro_loc_to_spelling_point
41(struct line_maps *, source_location, const struct line_map **);
42static source_location linemap_macro_loc_to_def_point (struct line_maps *,
43 source_location,
44 const struct line_map **);
45static source_location linemap_macro_loc_to_exp_point (struct line_maps *,
46 source_location,
47 const struct line_map **);
Neil Booth59930192001-08-21 21:17:48 +000048
Tom Tromey64a1a422011-10-17 09:59:52 +000049/* Counters defined in macro.c. */
50extern unsigned num_expanded_macros_counter;
51extern unsigned num_macro_tokens_counter;
52
Neil Boothd82fc102001-08-02 23:03:31 +000053/* Initialize a line map set. */
54
55void
Zack Weinberga2f7be92003-07-22 16:24:53 +000056linemap_init (struct line_maps *set)
Neil Boothd82fc102001-08-02 23:03:31 +000057{
Tom Tromey46427372011-10-17 11:58:56 +020058 memset (set, 0, sizeof (struct line_maps));
Jakub Jelinek96c169e2009-10-14 12:04:22 +020059 set->highest_location = RESERVED_LOCATION_COUNT - 1;
60 set->highest_line = RESERVED_LOCATION_COUNT - 1;
Neil Boothd82fc102001-08-02 23:03:31 +000061}
62
Kazu Hirata9ac97462004-02-16 14:20:10 +000063/* Check for and warn about line_maps entered but not exited. */
Per Bothner12f9df42004-02-11 07:29:30 -080064
65void
66linemap_check_files_exited (struct line_maps *set)
67{
68 struct line_map *map;
69 /* Depending upon whether we are handling preprocessed input or
70 not, this can be a user error or an ICE. */
Tom Tromey46427372011-10-17 11:58:56 +020071 for (map = LINEMAPS_LAST_ORDINARY_MAP (set);
72 ! MAIN_FILE_P (map);
Per Bothner12f9df42004-02-11 07:29:30 -080073 map = INCLUDED_FROM (set, map))
74 fprintf (stderr, "line-map.c: file \"%s\" entered but not left\n",
Tom Tromey46427372011-10-17 11:58:56 +020075 ORDINARY_MAP_FILE_NAME (map));
Per Bothner12f9df42004-02-11 07:29:30 -080076}
Neil Boothd82fc102001-08-02 23:03:31 +000077
Tom Tromey46427372011-10-17 11:58:56 +020078/* Create a new line map in the line map set SET, and return it.
79 REASON is the reason of creating the map. It determines the type
80 of map created (ordinary or macro map). Note that ordinary maps and
81 macro maps are allocated in different memory location. */
82
83static struct line_map *
84new_linemap (struct line_maps *set,
85 enum lc_reason reason)
Neil Boothd82fc102001-08-02 23:03:31 +000086{
Tom Tromey46427372011-10-17 11:58:56 +020087 /* Depending on this variable, a macro map would be allocated in a
88 different memory location than an ordinary map. */
89 bool macro_map_p = (reason == LC_ENTER_MACRO);
90 struct line_map *result;
Neil Booth47d89cf2001-08-11 07:33:39 +000091
Tom Tromey46427372011-10-17 11:58:56 +020092 if (LINEMAPS_USED (set, macro_map_p) == LINEMAPS_ALLOCATED (set, macro_map_p))
93 {
94 /* We ran out of allocated line maps. Let's allocate more. */
Tom Tromeyb9bd6f72011-10-17 10:00:07 +000095 unsigned alloc_size;
Tom Tromey46427372011-10-17 11:58:56 +020096
97 line_map_realloc reallocator
98 = set->reallocator ? set->reallocator : xrealloc;
Tom Tromeyb9bd6f72011-10-17 10:00:07 +000099 line_map_round_alloc_size_func round_alloc_size =
100 set->round_alloc_size;
101
102 /* We are going to execute some dance to try to reduce the
103 overhead of the memory allocator, in case we are using the
104 ggc-page.c one.
105
106 The actual size of memory we are going to get back from the
107 allocator is the smallest power of 2 that is greater than the
108 size we requested. So let's consider that size then. */
109
110 alloc_size =
111 (2 * LINEMAPS_ALLOCATED (set, macro_map_p) + 256)
112 * sizeof (struct line_map);
113
114 /* Get the actual size of memory that is going to be allocated
115 by the allocator. */
116 alloc_size = round_alloc_size (alloc_size);
117
118 /* Now alloc_size contains the exact memory size we would get if
119 we have asked for the initial alloc_size amount of memory.
120 Let's get back to the number of macro map that amounts
121 to. */
Tom Tromey46427372011-10-17 11:58:56 +0200122 LINEMAPS_ALLOCATED (set, macro_map_p) =
Tom Tromeyb9bd6f72011-10-17 10:00:07 +0000123 alloc_size / (sizeof (struct line_map));
124
125 /* And now let's really do the re-allocation. */
126 LINEMAPS_MAPS (set, macro_map_p) =
127 (struct line_map *) (*reallocator)
128 (LINEMAPS_MAPS (set, macro_map_p),
129 (LINEMAPS_ALLOCATED (set, macro_map_p)
130 * sizeof (struct line_map)));
131
Tom Tromey46427372011-10-17 11:58:56 +0200132 result =
133 &LINEMAPS_MAPS (set, macro_map_p)[LINEMAPS_USED (set, macro_map_p)];
134 memset (result, 0,
135 ((LINEMAPS_ALLOCATED (set, macro_map_p)
136 - LINEMAPS_USED (set, macro_map_p))
137 * sizeof (struct line_map)));
Neil Boothfde84342001-08-06 21:07:41 +0000138 }
Tom Tromey46427372011-10-17 11:58:56 +0200139 else
140 result =
141 &LINEMAPS_MAPS (set, macro_map_p)[LINEMAPS_USED (set, macro_map_p)];
142
143 LINEMAPS_USED (set, macro_map_p)++;
144
145 result->reason = reason;
146 return result;
Neil Boothd82fc102001-08-02 23:03:31 +0000147}
148
149/* Add a mapping of logical source line to physical source file and
Geoffrey Keating90744642003-07-30 06:43:33 +0000150 line number.
151
152 The text pointed to by TO_FILE must have a lifetime
153 at least as long as the final call to lookup_line (). An empty
154 TO_FILE means standard input. If reason is LC_LEAVE, and
155 TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their
156 natural values considering the file we are returning to.
Neil Boothd82fc102001-08-02 23:03:31 +0000157
158 FROM_LINE should be monotonic increasing across calls to this
Geoffrey Keating90744642003-07-30 06:43:33 +0000159 function. A call to this function can relocate the previous set of
160 maps, so any stored line_map pointers should not be used. */
Neil Boothd82fc102001-08-02 23:03:31 +0000161
Neil Booth47d89cf2001-08-11 07:33:39 +0000162const struct line_map *
Zack Weinberga2f7be92003-07-22 16:24:53 +0000163linemap_add (struct line_maps *set, enum lc_reason reason,
Manuel López-Ibáñez1bb64662008-07-21 09:33:38 +0000164 unsigned int sysp, const char *to_file, linenum_type to_line)
Neil Boothd82fc102001-08-02 23:03:31 +0000165{
166 struct line_map *map;
Per Bothner12f9df42004-02-11 07:29:30 -0800167 source_location start_location = set->highest_location + 1;
Neil Boothd82fc102001-08-02 23:03:31 +0000168
Tom Tromey46427372011-10-17 11:58:56 +0200169 linemap_assert (!(LINEMAPS_ORDINARY_USED (set)
170 && (start_location
171 < MAP_START_LOCATION (LINEMAPS_LAST_ORDINARY_MAP (set)))));
Neil Boothd82fc102001-08-02 23:03:31 +0000172
Tom Tromey46427372011-10-17 11:58:56 +0200173 /* When we enter the file for the first time reason cannot be
174 LC_RENAME. */
175 linemap_assert (!(set->depth == 0 && reason == LC_RENAME));
176
177 /* If we are leaving the main file, return a NULL map. */
178 if (reason == LC_LEAVE
179 && MAIN_FILE_P (LINEMAPS_LAST_ORDINARY_MAP (set))
180 && to_file == NULL)
Neil Boothd82fc102001-08-02 23:03:31 +0000181 {
Tom Tromey46427372011-10-17 11:58:56 +0200182 set->depth--;
183 return NULL;
Neil Boothd82fc102001-08-02 23:03:31 +0000184 }
185
Tom Tromey46427372011-10-17 11:58:56 +0200186 map = new_linemap (set, reason);
Neil Boothd82fc102001-08-02 23:03:31 +0000187
Joseph Myersc7f9c0b2009-04-18 18:36:28 +0100188 if (to_file && *to_file == '\0' && reason != LC_RENAME_VERBATIM)
Geoffrey Keating90744642003-07-30 06:43:33 +0000189 to_file = "<stdin>";
190
Joseph Myersc7f9c0b2009-04-18 18:36:28 +0100191 if (reason == LC_RENAME_VERBATIM)
192 reason = LC_RENAME;
193
Dodji Seketeli892a3712011-08-28 20:14:46 +0000194 if (reason == LC_LEAVE)
Neil Boothfde84342001-08-06 21:07:41 +0000195 {
Tom Tromey46427372011-10-17 11:58:56 +0200196 /* When we are just leaving an "included" file, and jump to the next
197 location inside the "includer" right after the #include
198 "included", this variable points the map in use right before the
199 #include "included", inside the same "includer" file. */
Neil Booth47d89cf2001-08-11 07:33:39 +0000200 struct line_map *from;
201 bool error;
202
203 if (MAIN_FILE_P (map - 1))
Neil Boothfde84342001-08-06 21:07:41 +0000204 {
Tom Tromey46427372011-10-17 11:58:56 +0200205 /* So this _should_ means we are leaving the main file --
206 effectively ending the compilation unit. But to_file not
207 being NULL means the caller thinks we are leaving to
208 another file. This is an erroneous behaviour but we'll
209 try to recover from it. Let's pretend we are not leaving
210 the main file. */
Per Bothnerb3147022003-07-22 23:11:34 +0000211 error = true;
212 reason = LC_RENAME;
213 from = map - 1;
Neil Booth47d89cf2001-08-11 07:33:39 +0000214 }
215 else
216 {
Tom Tromey46427372011-10-17 11:58:56 +0200217 /* (MAP - 1) points to the map we are leaving. The
218 map from which (MAP - 1) got included should be the map
219 that comes right before MAP in the same file. */
Neil Booth47d89cf2001-08-11 07:33:39 +0000220 from = INCLUDED_FROM (set, map - 1);
Tom Tromey46427372011-10-17 11:58:56 +0200221 error = to_file && filename_cmp (ORDINARY_MAP_FILE_NAME (from),
222 to_file);
Neil Booth47d89cf2001-08-11 07:33:39 +0000223 }
224
225 /* Depending upon whether we are handling preprocessed input or
226 not, this can be a user error or an ICE. */
227 if (error)
228 fprintf (stderr, "line-map.c: file \"%s\" left but not entered\n",
229 to_file);
230
231 /* A TO_FILE of NULL is special - we use the natural values. */
232 if (error || to_file == NULL)
233 {
Tom Tromey46427372011-10-17 11:58:56 +0200234 to_file = ORDINARY_MAP_FILE_NAME (from);
Per Bothner12f9df42004-02-11 07:29:30 -0800235 to_line = SOURCE_LINE (from, from[1].start_location);
Tom Tromey46427372011-10-17 11:58:56 +0200236 sysp = ORDINARY_MAP_IN_SYSTEM_HEADER_P (from);
Neil Boothfde84342001-08-06 21:07:41 +0000237 }
238 }
239
Tom Tromey46427372011-10-17 11:58:56 +0200240 linemap_assert (reason != LC_ENTER_MACRO);
241 ORDINARY_MAP_IN_SYSTEM_HEADER_P (map) = sysp;
242 MAP_START_LOCATION (map) = start_location;
243 ORDINARY_MAP_FILE_NAME (map) = to_file;
244 ORDINARY_MAP_STARTING_LINE_NUMBER (map) = to_line;
245 LINEMAPS_ORDINARY_CACHE (set) = LINEMAPS_ORDINARY_USED (set) - 1;
246 ORDINARY_MAP_NUMBER_OF_COLUMN_BITS (map) = 0;
Per Bothner12f9df42004-02-11 07:29:30 -0800247 set->highest_location = start_location;
Per Bothner500bee02004-04-22 19:22:27 -0700248 set->highest_line = start_location;
Per Bothner12f9df42004-02-11 07:29:30 -0800249 set->max_column_hint = 0;
Neil Booth47d89cf2001-08-11 07:33:39 +0000250
Neil Boothfde84342001-08-06 21:07:41 +0000251 if (reason == LC_ENTER)
Neil Boothd8693c62001-08-21 23:05:12 +0000252 {
Tom Tromey46427372011-10-17 11:58:56 +0200253 ORDINARY_MAP_INCLUDER_FILE_INDEX (map) =
254 set->depth == 0 ? -1 : (int) (LINEMAPS_ORDINARY_USED (set) - 2);
Neil Boothd8693c62001-08-21 23:05:12 +0000255 set->depth++;
Neil Boothd8693c62001-08-21 23:05:12 +0000256 if (set->trace_includes)
257 trace_include (set, map);
258 }
Neil Boothd82fc102001-08-02 23:03:31 +0000259 else if (reason == LC_RENAME)
Tom Tromey46427372011-10-17 11:58:56 +0200260 ORDINARY_MAP_INCLUDER_FILE_INDEX (map) =
261 ORDINARY_MAP_INCLUDER_FILE_INDEX (&map[-1]);
Neil Boothd82fc102001-08-02 23:03:31 +0000262 else if (reason == LC_LEAVE)
Neil Boothd8693c62001-08-21 23:05:12 +0000263 {
264 set->depth--;
Tom Tromey46427372011-10-17 11:58:56 +0200265 ORDINARY_MAP_INCLUDER_FILE_INDEX (map) =
266 ORDINARY_MAP_INCLUDER_FILE_INDEX (INCLUDED_FROM (set, map - 1));
Neil Boothd8693c62001-08-21 23:05:12 +0000267 }
Neil Booth59930192001-08-21 21:17:48 +0000268
Neil Boothd82fc102001-08-02 23:03:31 +0000269 return map;
270}
271
Tom Tromey46427372011-10-17 11:58:56 +0200272/* Returns TRUE if the line table set tracks token locations accross
273 macro expansion, FALSE otherwise. */
274
275bool
276linemap_tracks_macro_expansion_locs_p (struct line_maps *set)
277{
278 return LINEMAPS_MACRO_MAPS (set) != NULL;
279}
280
281/* Create a macro map. A macro map encodes source locations of tokens
282 that are part of a macro replacement-list, at a macro expansion
283 point. See the extensive comments of struct line_map and struct
284 line_map_macro, in line-map.h.
285
286 This map shall be created when the macro is expanded. The map
287 encodes the source location of the expansion point of the macro as
288 well as the "original" source location of each token that is part
289 of the macro replacement-list. If a macro is defined but never
290 expanded, it has no macro map. SET is the set of maps the macro
291 map should be part of. MACRO_NODE is the macro which the new macro
292 map should encode source locations for. EXPANSION is the location
293 of the expansion point of MACRO. For function-like macros
294 invocations, it's best to make it point to the closing parenthesis
295 of the macro, rather than the the location of the first character
296 of the macro. NUM_TOKENS is the number of tokens that are part of
297 the replacement-list of MACRO.
298
299 Note that when we run out of the integer space available for source
300 locations, this function returns NULL. In that case, callers of
301 this function cannot encode {line,column} pairs into locations of
302 macro tokens anymore. */
303
304const struct line_map *
305linemap_enter_macro (struct line_maps *set, struct cpp_hashnode *macro_node,
306 source_location expansion, unsigned int num_tokens)
307{
308 struct line_map *map;
309 source_location start_location;
310 line_map_realloc reallocator
311 = set->reallocator ? set->reallocator : xrealloc;
312
313 start_location = LINEMAPS_MACRO_LOWEST_LOCATION (set) - num_tokens;
314
315 if (start_location <= set->highest_line
316 || start_location > LINEMAPS_MACRO_LOWEST_LOCATION (set))
317 /* We ran out of macro map space. */
318 return NULL;
319
320 map = new_linemap (set, LC_ENTER_MACRO);
321
322 MAP_START_LOCATION (map) = start_location;
323 MACRO_MAP_MACRO (map) = macro_node;
324 MACRO_MAP_NUM_MACRO_TOKENS (map) = num_tokens;
325 MACRO_MAP_LOCATIONS (map)
326 = (source_location*) reallocator (NULL,
327 2 * num_tokens
328 * sizeof (source_location));
329 MACRO_MAP_EXPANSION_POINT_LOCATION (map) = expansion;
330 memset (MACRO_MAP_LOCATIONS (map), 0,
331 num_tokens * sizeof (source_location));
332
333 LINEMAPS_MACRO_CACHE (set) = LINEMAPS_MACRO_USED (set) - 1;
334 set->max_column_hint = 0;
335
336 return map;
337}
338
339/* Create and return a virtual location for a token that is part of a
340 macro expansion-list at a macro expansion point. See the comment
341 inside struct line_map_macro to see what an expansion-list exactly
342 is.
343
344 A call to this function must come after a call to
345 linemap_enter_macro.
346
347 MAP is the map into which the source location is created. TOKEN_NO
348 is the index of the token in the macro replacement-list, starting
349 at number 0.
350
351 ORIG_LOC is the location of the token outside of this macro
352 expansion. If the token comes originally from the macro
353 definition, it is the locus in the macro definition; otherwise it
354 is a location in the context of the caller of this macro expansion
355 (which is a virtual location or a source location if the caller is
356 itself a macro expansion or not).
357
358 MACRO_DEFINITION_LOC is the location in the macro definition,
359 either of the token itself or of a macro parameter that it
360 replaces. */
361
362source_location
363linemap_add_macro_token (const struct line_map *map,
364 unsigned int token_no,
365 source_location orig_loc,
366 source_location orig_parm_replacement_loc)
367{
368 source_location result;
369
370 linemap_assert (linemap_macro_expansion_map_p (map));
371 linemap_assert (token_no < MACRO_MAP_NUM_MACRO_TOKENS (map));
372
373 MACRO_MAP_LOCATIONS (map)[2 * token_no] = orig_loc;
374 MACRO_MAP_LOCATIONS (map)[2 * token_no + 1] = orig_parm_replacement_loc;
375
376 result = MAP_START_LOCATION (map) + token_no;
377 return result;
378}
379
380/* Return a source_location for the start (i.e. column==0) of
381 (physical) line TO_LINE in the current source file (as in the
382 most recent linemap_add). MAX_COLUMN_HINT is the highest column
383 number we expect to use in this line (but it does not change
384 the highest_location). */
385
Per Bothner12f9df42004-02-11 07:29:30 -0800386source_location
Manuel López-Ibáñez1bb64662008-07-21 09:33:38 +0000387linemap_line_start (struct line_maps *set, linenum_type to_line,
Per Bothner12f9df42004-02-11 07:29:30 -0800388 unsigned int max_column_hint)
389{
Tom Tromey46427372011-10-17 11:58:56 +0200390 struct line_map *map = LINEMAPS_LAST_ORDINARY_MAP (set);
Per Bothner12f9df42004-02-11 07:29:30 -0800391 source_location highest = set->highest_location;
392 source_location r;
Tom Tromey46427372011-10-17 11:58:56 +0200393 linenum_type last_line =
394 SOURCE_LINE (map, set->highest_line);
Per Bothner12f9df42004-02-11 07:29:30 -0800395 int line_delta = to_line - last_line;
396 bool add_map = false;
Tom Tromey46427372011-10-17 11:58:56 +0200397
Per Bothner12f9df42004-02-11 07:29:30 -0800398 if (line_delta < 0
Tom Tromey46427372011-10-17 11:58:56 +0200399 || (line_delta > 10
400 && line_delta * ORDINARY_MAP_NUMBER_OF_COLUMN_BITS (map) > 1000)
401 || (max_column_hint >= (1U << ORDINARY_MAP_NUMBER_OF_COLUMN_BITS (map)))
402 || (max_column_hint <= 80
403 && ORDINARY_MAP_NUMBER_OF_COLUMN_BITS (map) >= 10))
Per Bothner12f9df42004-02-11 07:29:30 -0800404 {
405 add_map = true;
406 }
407 else
408 max_column_hint = set->max_column_hint;
409 if (add_map)
410 {
411 int column_bits;
Per Bothner500bee02004-04-22 19:22:27 -0700412 if (max_column_hint > 100000 || highest > 0xC0000000)
Per Bothner12f9df42004-02-11 07:29:30 -0800413 {
Per Bothnerc1fc5042005-04-21 10:08:27 -0700414 /* If the column number is ridiculous or we've allocated a huge
415 number of source_locations, give up on column numbers. */
Per Bothner12f9df42004-02-11 07:29:30 -0800416 max_column_hint = 0;
417 if (highest >0xF0000000)
418 return 0;
419 column_bits = 0;
420 }
421 else
422 {
423 column_bits = 7;
424 while (max_column_hint >= (1U << column_bits))
425 column_bits++;
426 max_column_hint = 1U << column_bits;
427 }
Per Bothnerc1fc5042005-04-21 10:08:27 -0700428 /* Allocate the new line_map. However, if the current map only has a
429 single line we can sometimes just increase its column_bits instead. */
Per Bothner12f9df42004-02-11 07:29:30 -0800430 if (line_delta < 0
Tom Tromey46427372011-10-17 11:58:56 +0200431 || last_line != ORDINARY_MAP_STARTING_LINE_NUMBER (map)
Per Bothner12f9df42004-02-11 07:29:30 -0800432 || SOURCE_COLUMN (map, highest) >= (1U << column_bits))
Tom Tromey46427372011-10-17 11:58:56 +0200433 map = (struct line_map *) linemap_add (set, LC_RENAME,
434 ORDINARY_MAP_IN_SYSTEM_HEADER_P
435 (map),
436 ORDINARY_MAP_FILE_NAME (map),
437 to_line);
438 ORDINARY_MAP_NUMBER_OF_COLUMN_BITS (map) = column_bits;
439 r = (MAP_START_LOCATION (map)
440 + ((to_line - ORDINARY_MAP_STARTING_LINE_NUMBER (map))
441 << column_bits));
Per Bothner12f9df42004-02-11 07:29:30 -0800442 }
443 else
444 r = highest - SOURCE_COLUMN (map, highest)
Tom Tromey46427372011-10-17 11:58:56 +0200445 + (line_delta << ORDINARY_MAP_NUMBER_OF_COLUMN_BITS (map));
446
447 /* Locations of ordinary tokens are always lower than locations of
448 macro tokens. */
449 if (r >= LINEMAPS_MACRO_LOWEST_LOCATION (set))
450 return 0;
451
Per Bothner500bee02004-04-22 19:22:27 -0700452 set->highest_line = r;
Per Bothner12f9df42004-02-11 07:29:30 -0800453 if (r > set->highest_location)
454 set->highest_location = r;
455 set->max_column_hint = max_column_hint;
456 return r;
457}
458
Tom Tromey46427372011-10-17 11:58:56 +0200459/* Encode and return a source_location from a column number. The
460 source line considered is the last source line used to call
461 linemap_line_start, i.e, the last source line which a location was
462 encoded from. */
463
Per Bothner500bee02004-04-22 19:22:27 -0700464source_location
465linemap_position_for_column (struct line_maps *set, unsigned int to_column)
466{
467 source_location r = set->highest_line;
Tom Tromey46427372011-10-17 11:58:56 +0200468
469 linemap_assert
470 (!linemap_macro_expansion_map_p (LINEMAPS_LAST_ORDINARY_MAP (set)));
471
Per Bothner500bee02004-04-22 19:22:27 -0700472 if (to_column >= set->max_column_hint)
473 {
474 if (r >= 0xC000000 || to_column > 100000)
475 {
476 /* Running low on source_locations - disable column numbers. */
477 return r;
478 }
479 else
480 {
Tom Tromey46427372011-10-17 11:58:56 +0200481 struct line_map *map = LINEMAPS_LAST_ORDINARY_MAP (set);
Per Bothner500bee02004-04-22 19:22:27 -0700482 r = linemap_line_start (set, SOURCE_LINE (map, r), to_column + 50);
483 }
484 }
485 r = r + to_column;
486 if (r >= set->highest_location)
487 set->highest_location = r;
488 return r;
489}
490
Tom Tromey46427372011-10-17 11:58:56 +0200491/* Encode and return a source location from a given line and
492 column. */
Neil Boothd82fc102001-08-02 23:03:31 +0000493
Tom Tromey46427372011-10-17 11:58:56 +0200494source_location
495linemap_position_for_line_and_column (struct line_map *map,
496 linenum_type line,
497 unsigned column)
498{
499 linemap_assert (ORDINARY_MAP_STARTING_LINE_NUMBER (map) <= line);
500
501 return (MAP_START_LOCATION (map)
502 + ((line - ORDINARY_MAP_STARTING_LINE_NUMBER (map))
503 << ORDINARY_MAP_NUMBER_OF_COLUMN_BITS (map))
504 + (column & ((1 << ORDINARY_MAP_NUMBER_OF_COLUMN_BITS (map)) - 1)));
505}
506
507/* Given a virtual source location yielded by a map (either an
508 ordinary or a macro map), returns that map. */
509
510const struct line_map*
Per Bothner7d40b452003-12-05 12:52:39 -0800511linemap_lookup (struct line_maps *set, source_location line)
Neil Boothd82fc102001-08-02 23:03:31 +0000512{
Tom Tromey46427372011-10-17 11:58:56 +0200513 if (linemap_location_from_macro_expansion_p (set, line))
514 return linemap_macro_map_lookup (set, line);
515 return linemap_ordinary_map_lookup (set, line);
516}
Neil Boothd82fc102001-08-02 23:03:31 +0000517
Tom Tromey46427372011-10-17 11:58:56 +0200518/* Given a source location yielded by an ordinary map, returns that
519 map. Since the set is built chronologically, the logical lines are
520 monotonic increasing, and so the list is sorted and we can use a
521 binary search. */
522
523static const struct line_map *
524linemap_ordinary_map_lookup (struct line_maps *set, source_location line)
525{
526 unsigned int md, mn, mx;
527 const struct line_map *cached, *result;
528
529 if (set == NULL || line < RESERVED_LOCATION_COUNT)
530 return NULL;
531
532 mn = LINEMAPS_ORDINARY_CACHE (set);
533 mx = LINEMAPS_ORDINARY_USED (set);
Per Bothner9132fbb2004-01-20 05:17:48 +0000534
Tom Tromey46427372011-10-17 11:58:56 +0200535 cached = LINEMAPS_ORDINARY_MAP_AT (set, mn);
Kazu Hirata9ac97462004-02-16 14:20:10 +0000536 /* We should get a segfault if no line_maps have been added yet. */
Tom Tromey46427372011-10-17 11:58:56 +0200537 if (line >= MAP_START_LOCATION (cached))
Per Bothner9132fbb2004-01-20 05:17:48 +0000538 {
Tom Tromey46427372011-10-17 11:58:56 +0200539 if (mn + 1 == mx || line < MAP_START_LOCATION (&cached[1]))
Per Bothner9132fbb2004-01-20 05:17:48 +0000540 return cached;
541 }
542 else
543 {
544 mx = mn;
545 mn = 0;
546 }
Neil Boothd82fc102001-08-02 23:03:31 +0000547
548 while (mx - mn > 1)
549 {
550 md = (mn + mx) / 2;
Tom Tromey46427372011-10-17 11:58:56 +0200551 if (MAP_START_LOCATION (LINEMAPS_ORDINARY_MAP_AT (set, md)) > line)
Neil Boothd82fc102001-08-02 23:03:31 +0000552 mx = md;
553 else
554 mn = md;
555 }
556
Tom Tromey46427372011-10-17 11:58:56 +0200557 LINEMAPS_ORDINARY_CACHE (set) = mn;
558 result = LINEMAPS_ORDINARY_MAP_AT (set, mn);
559 linemap_assert (line >= MAP_START_LOCATION (result));
560 return result;
561}
562
563/* Given a source location yielded by a macro map, returns that map.
564 Since the set is built chronologically, the logical lines are
565 monotonic decreasing, and so the list is sorted and we can use a
566 binary search. */
567
568static const struct line_map*
569linemap_macro_map_lookup (struct line_maps *set, source_location line)
570{
571 unsigned int md, mn, mx;
572 const struct line_map *cached, *result;
573
574 linemap_assert (line >= LINEMAPS_MACRO_LOWEST_LOCATION (set));
575
576 if (set == NULL)
577 return NULL;
578
579 mn = LINEMAPS_MACRO_CACHE (set);
580 mx = LINEMAPS_MACRO_USED (set);
581 cached = LINEMAPS_MACRO_MAP_AT (set, mn);
582
583 if (line >= MAP_START_LOCATION (cached))
584 {
585 if (mn == 0 || line < MAP_START_LOCATION (&cached[-1]))
586 return cached;
587 mx = mn - 1;
588 mn = 0;
589 }
590
591 do
592 {
593 md = (mx + mn) / 2;
594 if (MAP_START_LOCATION (LINEMAPS_MACRO_MAP_AT (set, md)) > line)
595 mn = md;
596 else
597 mx = md;
598 } while (mx - mn > 1);
599
600 LINEMAPS_MACRO_CACHE (set) = mx;
601 result = LINEMAPS_MACRO_MAP_AT (set, LINEMAPS_MACRO_CACHE (set));
602 linemap_assert (MAP_START_LOCATION (result) <= line);
603
604 return result;
605}
606
607/* Return TRUE if MAP encodes locations coming from a macro
608 replacement-list at macro expansion point. */
609
610bool
611linemap_macro_expansion_map_p (const struct line_map *map)
612{
613 if (!map)
614 return false;
615 return (map->reason == LC_ENTER_MACRO);
616}
617
618/* If LOCATION is the locus of a token in a replacement-list of a
619 macro expansion return the location of the macro expansion point.
620
621 Read the comments of struct line_map and struct line_map_macro in
622 line-map.h to understand what a macro expansion point is. */
623
Dodji Seketeli411f92de2011-10-17 14:01:37 +0000624static source_location
Tom Tromey46427372011-10-17 11:58:56 +0200625linemap_macro_map_loc_to_exp_point (const struct line_map *map,
Dodji Seketeli411f92de2011-10-17 14:01:37 +0000626 source_location location ATTRIBUTE_UNUSED)
Tom Tromey46427372011-10-17 11:58:56 +0200627{
Tom Tromey46427372011-10-17 11:58:56 +0200628 linemap_assert (linemap_macro_expansion_map_p (map)
629 && location >= MAP_START_LOCATION (map));
630
631 /* Make sure LOCATION is correct. */
Dodji Seketeli411f92de2011-10-17 14:01:37 +0000632 linemap_assert ((location - MAP_START_LOCATION (map))
633 < MACRO_MAP_NUM_MACRO_TOKENS (map));
Tom Tromey46427372011-10-17 11:58:56 +0200634
635 return MACRO_MAP_EXPANSION_POINT_LOCATION (map);
636}
637
638/* If LOCATION is the source location of a token that belongs to a
639 macro replacement-list -- as part of a macro expansion -- then
640 return the location of the token at the definition point of the
641 macro. Otherwise, return LOCATION. SET is the set of maps
642 location come from. ORIGINAL_MAP is an output parm. If non NULL,
643 the function sets *ORIGINAL_MAP to the ordinary (non-macro) map the
644 returned location comes from. */
645
646source_location
647linemap_macro_map_loc_to_def_point (const struct line_map *map,
648 source_location location)
649{
650 unsigned token_no;
651
652 linemap_assert (linemap_macro_expansion_map_p (map)
653 && location >= MAP_START_LOCATION (map));
654 linemap_assert (location >= RESERVED_LOCATION_COUNT);
655
656 token_no = location - MAP_START_LOCATION (map);
657 linemap_assert (token_no < MACRO_MAP_NUM_MACRO_TOKENS (map));
658
659 location = MACRO_MAP_LOCATIONS (map)[2 * token_no + 1];
660
661 return location;
662}
663
664/* If LOCATION is the locus of a token that is an argument of a
665 function-like macro M and appears in the expansion of M, return the
666 locus of that argument in the context of the caller of M.
667
668 In other words, this returns the xI location presented in the
669 comments of line_map_macro above. */
670source_location
671linemap_macro_map_loc_unwind_toward_spelling (const struct line_map* map,
672 source_location location)
673{
674 unsigned token_no;
675
676 linemap_assert (linemap_macro_expansion_map_p (map)
677 && location >= MAP_START_LOCATION (map));
678 linemap_assert (location >= RESERVED_LOCATION_COUNT);
679
680 token_no = location - MAP_START_LOCATION (map);
681 linemap_assert (token_no < MACRO_MAP_NUM_MACRO_TOKENS (map));
682
683 location = MACRO_MAP_LOCATIONS (map)[2 * token_no];
684
685 return location;
686}
687
688/* Return the source line number corresponding to source location
689 LOCATION. SET is the line map set LOCATION comes from. If
690 LOCATION is the source location of token that is part of the
691 replacement-list of a macro expansion return the line number of the
692 macro expansion point. */
693
694int
695linemap_get_expansion_line (struct line_maps *set,
696 source_location location)
697{
698 const struct line_map *map = NULL;
699
700 if (location < RESERVED_LOCATION_COUNT)
701 return 0;
702
703 location =
704 linemap_macro_loc_to_exp_point (set, location, &map);
705
706 return SOURCE_LINE (map, location);
707}
708
709/* Return the path of the file corresponding to source code location
710 LOCATION.
711
712 If LOCATION is the source location of token that is part of the
713 replacement-list of a macro expansion return the file path of the
714 macro expansion point.
715
716 SET is the line map set LOCATION comes from. */
717
718const char*
719linemap_get_expansion_filename (struct line_maps *set,
720 source_location location)
721{
722 const struct line_map *map = NULL;
723
724 if (location < RESERVED_LOCATION_COUNT)
725 return NULL;
726
727 location =
728 linemap_macro_loc_to_exp_point (set, location, &map);
729
730 return LINEMAP_FILE (map);
731}
732
733/* Return the name of the macro associated to MACRO_MAP. */
734
735const char*
736linemap_map_get_macro_name (const struct line_map* macro_map)
737{
738 linemap_assert (macro_map && linemap_macro_expansion_map_p (macro_map));
739 return (const char*) NODE_NAME (MACRO_MAP_MACRO (macro_map));
740}
741
742/* Return a positive value if LOCATION is the locus of a token that is
743 located in a system header, O otherwise. It returns 1 if LOCATION
744 is the locus of a token that is located in a system header, and 2
745 if LOCATION is the locus of a token located in a C system header
746 that therefore needs to be extern "C" protected in C++.
747
748 Note that this function returns 1 if LOCATION belongs to a token
749 that is part of a macro replacement-list defined in a system
750 header, but expanded in a non-system file. */
751
752int
753linemap_location_in_system_header_p (struct line_maps *set,
754 source_location location)
755{
756 const struct line_map *map = NULL;
757
Tom Tromey46427372011-10-17 11:58:56 +0200758 location =
759 linemap_resolve_location (set, location, LRK_SPELLING_LOCATION, &map);
760
Dodji Seketeli84756fd42011-10-25 08:58:54 +0000761 if (location < RESERVED_LOCATION_COUNT)
762 return false;
763
Tom Tromey46427372011-10-17 11:58:56 +0200764 return LINEMAP_SYSP (map);
765}
766
767/* Return TRUE if LOCATION is a source code location of a token coming
768 from a macro replacement-list at a macro expansion point, FALSE
769 otherwise. */
770
771bool
772linemap_location_from_macro_expansion_p (struct line_maps *set,
773 source_location location)
774{
775 linemap_assert (location <= MAX_SOURCE_LOCATION
776 && (set->highest_location
777 < LINEMAPS_MACRO_LOWEST_LOCATION (set)));
778 if (set == NULL)
779 return false;
780 return (location > set->highest_location);
781}
782
783/* Given two virtual locations *LOC0 and *LOC1, return the first
784 common macro map in their macro expansion histories. Return NULL
785 if no common macro was found. *LOC0 (resp. *LOC1) is set to the
786 virtual location of the token inside the resulting macro. */
787
788static const struct line_map*
789first_map_in_common_1 (struct line_maps *set,
790 source_location *loc0,
791 source_location *loc1)
792{
793 source_location l0 = *loc0, l1 = *loc1;
794 const struct line_map *map0 = linemap_lookup (set, l0),
795 *map1 = linemap_lookup (set, l1);
796
797 while (linemap_macro_expansion_map_p (map0)
798 && linemap_macro_expansion_map_p (map1)
799 && (map0 != map1))
800 {
801 if (MAP_START_LOCATION (map0) < MAP_START_LOCATION (map1))
802 {
803 l0 = linemap_macro_map_loc_to_exp_point (map0, l0);
804 map0 = linemap_lookup (set, l0);
805 }
806 else
807 {
808 l1 = linemap_macro_map_loc_to_exp_point (map1, l1);
809 map1 = linemap_lookup (set, l1);
810 }
811 }
812
813 if (map0 == map1)
814 {
815 *loc0 = l0;
816 *loc1 = l1;
817 return map0;
818 }
819 return NULL;
820}
821
822/* Given two virtual locations LOC0 and LOC1, return the first common
823 macro map in their macro expansion histories. Return NULL if no
824 common macro was found. *RES_LOC0 (resp. *RES_LOC1) is set to the
825 virtual location of the token inside the resulting macro, upon
826 return of a non-NULL result. */
827
828static const struct line_map*
829first_map_in_common (struct line_maps *set,
830 source_location loc0,
831 source_location loc1,
832 source_location *res_loc0,
833 source_location *res_loc1)
834{
835 *res_loc0 = loc0;
836 *res_loc1 = loc1;
837
838 return first_map_in_common_1 (set, res_loc0, res_loc1);
839}
840
841/* Return a positive value if PRE denotes the location of a token that
842 comes before the token of POST, 0 if PRE denotes the location of
843 the same token as the token for POST, and a negative value
844 otherwise. */
845
846int
847linemap_compare_locations (struct line_maps *set,
848 source_location pre,
849 source_location post)
850{
851 bool pre_virtual_p, post_virtual_p;
852 source_location l0 = pre, l1 = post;
853
854 if (l0 == l1)
855 return 0;
856
857 if ((pre_virtual_p = linemap_location_from_macro_expansion_p (set, l0)))
858 l0 = linemap_resolve_location (set, l0,
859 LRK_MACRO_EXPANSION_POINT,
860 NULL);
861
862 if ((post_virtual_p = linemap_location_from_macro_expansion_p (set, l1)))
863 l1 = linemap_resolve_location (set, l1,
864 LRK_MACRO_EXPANSION_POINT,
865 NULL);
866
867 if (l0 == l1
868 && pre_virtual_p
869 && post_virtual_p)
870 {
871 /* So pre and post represent two tokens that are present in a
872 same macro expansion. Let's see if the token for pre was
873 before the token for post in that expansion. */
874 unsigned i0, i1;
875 const struct line_map *map =
876 first_map_in_common (set, pre, post, &l0, &l1);
877
878 if (map == NULL)
879 /* This should not be possible. */
880 abort ();
881
882 i0 = l0 - MAP_START_LOCATION (map);
883 i1 = l1 - MAP_START_LOCATION (map);
884 return i1 - i0;
885 }
886
887 return l1 - l0;
Neil Boothd82fc102001-08-02 23:03:31 +0000888}
Neil Boothfde84342001-08-06 21:07:41 +0000889
Neil Booth59930192001-08-21 21:17:48 +0000890/* Print an include trace, for e.g. the -H option of the preprocessor. */
891
892static void
Neil Boothe2b98532003-06-20 05:51:13 +0000893trace_include (const struct line_maps *set, const struct line_map *map)
Neil Booth59930192001-08-21 21:17:48 +0000894{
Neil Boothd8693c62001-08-21 23:05:12 +0000895 unsigned int i = set->depth;
Neil Booth59930192001-08-21 21:17:48 +0000896
Neil Boothd8693c62001-08-21 23:05:12 +0000897 while (--i)
Neil Booth59930192001-08-21 21:17:48 +0000898 putc ('.', stderr);
Tom Tromey46427372011-10-17 11:58:56 +0200899
900 fprintf (stderr, " %s\n", ORDINARY_MAP_FILE_NAME (map));
901}
902
903/* Return the spelling location of the token wherever it comes from,
904 whether part of a macro definition or not.
905
906 This is a subroutine for linemap_resolve_location. */
907
908static source_location
909linemap_macro_loc_to_spelling_point (struct line_maps *set,
910 source_location location,
911 const struct line_map **original_map)
912{
913 struct line_map *map;
914
915 linemap_assert (set && location >= RESERVED_LOCATION_COUNT);
916
917 while (true)
918 {
919 map = (struct line_map*) linemap_lookup (set, location);
920 if (!linemap_macro_expansion_map_p (map))
921 break;
922
923 location =
924 linemap_macro_map_loc_unwind_toward_spelling (map, location);
925 }
926
927 if (original_map)
928 *original_map = map;
929 return location;
930}
931
932/* If LOCATION is the source location of a token that belongs to a
933 macro replacement-list -- as part of a macro expansion -- then
934 return the location of the token at the definition point of the
935 macro. Otherwise, return LOCATION. SET is the set of maps
936 location come from. ORIGINAL_MAP is an output parm. If non NULL,
937 the function sets *ORIGINAL_MAP to the ordinary (non-macro) map the
938 returned location comes from.
939
940 This is a subroutine of linemap_resolve_location. */
941
942static source_location
943linemap_macro_loc_to_def_point (struct line_maps *set,
944 source_location location,
945 const struct line_map **original_map)
946{
947 struct line_map *map;
948
949 linemap_assert (set && location >= RESERVED_LOCATION_COUNT);
950
951 while (true)
952 {
953 map = (struct line_map*) linemap_lookup (set, location);
954 if (!linemap_macro_expansion_map_p (map))
955 break;
956
957 location =
958 linemap_macro_map_loc_to_def_point (map, location);
959 }
960
961 if (original_map)
962 *original_map = map;
963 return location;
964}
965
966/* If LOCATION is the source location of a token that belongs to a
967 macro replacement-list -- at a macro expansion point -- then return
968 the location of the topmost expansion point of the macro. We say
969 topmost because if we are in the context of a nested macro
970 expansion, the function returns the source location of the first
971 macro expansion that triggered the nested expansions.
972
973 Otherwise, return LOCATION. SET is the set of maps location come
974 from. ORIGINAL_MAP is an output parm. If non NULL, the function
975 sets *ORIGINAL_MAP to the ordinary (non-macro) map the returned
976 location comes from.
977
978 This is a subroutine of linemap_resolve_location. */
979
980static source_location
981linemap_macro_loc_to_exp_point (struct line_maps *set,
982 source_location location,
983 const struct line_map **original_map)
984{
985 struct line_map *map;
986
987 linemap_assert (set && location >= RESERVED_LOCATION_COUNT);
988
989 while (true)
990 {
991 map = (struct line_map*) linemap_lookup (set, location);
992 if (!linemap_macro_expansion_map_p (map))
993 break;
994 location = linemap_macro_map_loc_to_exp_point (map, location);
995 }
996
997 if (original_map)
998 *original_map = map;
999 return location;
1000}
1001
1002/* Resolve a virtual location into either a spelling location, an
1003 expansion point location or a token argument replacement point
1004 location. Return the map that encodes the virtual location as well
1005 as the resolved location.
1006
1007 If LOC is *NOT* the location of a token resulting from the
1008 expansion of a macro, then the parameter LRK (which stands for
1009 Location Resolution Kind) is ignored and the resulting location
1010 just equals the one given in argument.
1011
1012 Now if LOC *IS* the location of a token resulting from the
1013 expansion of a macro, this is what happens.
1014
1015 * If LRK is set to LRK_MACRO_EXPANSION_POINT
1016 -------------------------------
1017
1018 The virtual location is resolved to the location to the locus of
1019 the expansion point of the macro.
1020
1021 * If LRK is set to LRK_SPELLING_LOCATION
1022 -------------------------------------
1023
1024 The virtual location is resolved to the location to the locus where
1025 the token has been spelled in the source. This can follow through
1026 all the macro expansions that led to the token.
1027
1028 * If LRK is set to LRK_MACRO_PARM_REPLACEMENT_POINT
1029 --------------------------------------
1030
1031 If LOC is the locus of a token that is an argument of a
1032 function-like macro [replacing a parameter in the replacement list
1033 of the macro] the virtual location is resolved to the locus of the
1034 parameter that is replaced, in the context of the definition of the
1035 macro.
1036
1037 If LOC is the locus of a token that is not an argument of a
1038 function-like macro, then the function behaves as if LRK was set to
1039 LRK_SPELLING_LOCATION.
1040
1041 If MAP is non-NULL, *MAP is set to the map of the resolved
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001042 location. Note that if the resturned location wasn't originally
1043 encoded by a map, the *MAP is set to NULL. This can happen if LOC
1044 resolves to a location reserved for the client code, like
1045 UNKNOWN_LOCATION or BUILTINS_LOCATION in GCC. */
Tom Tromey46427372011-10-17 11:58:56 +02001046
1047source_location
1048linemap_resolve_location (struct line_maps *set,
1049 source_location loc,
1050 enum location_resolution_kind lrk,
1051 const struct line_map **map)
1052{
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001053 if (loc < RESERVED_LOCATION_COUNT)
1054 {
1055 /* A reserved location wasn't encoded in a map. Let's return a
1056 NULL map here, just like what linemap_ordinary_map_lookup
1057 does. */
1058 if (map)
1059 *map = NULL;
1060 return loc;
1061 }
Tom Tromey46427372011-10-17 11:58:56 +02001062
1063 switch (lrk)
1064 {
1065 case LRK_MACRO_EXPANSION_POINT:
1066 loc = linemap_macro_loc_to_exp_point (set, loc, map);
1067 break;
1068 case LRK_SPELLING_LOCATION:
1069 loc = linemap_macro_loc_to_spelling_point (set, loc, map);
1070 break;
1071 case LRK_MACRO_DEFINITION_LOCATION:
1072 loc = linemap_macro_loc_to_def_point (set, loc, map);
1073 break;
1074 default:
1075 abort ();
1076 }
1077 return loc;
1078}
1079
1080/*
1081 Suppose that LOC is the virtual location of a token T coming from
1082 the expansion of a macro M. This function then steps up to get the
1083 location L of the point where M got expanded. If L is a spelling
1084 location inside a macro expansion M', then this function returns
1085 the locus of the point where M' was expanded. Said otherwise, this
1086 function returns the location of T in the context that triggered
1087 the expansion of M.
1088
1089 *LOC_MAP must be set to the map of LOC. This function then sets it
1090 to the map of the returned location. */
1091
1092source_location
1093linemap_unwind_toward_expansion (struct line_maps *set,
1094 source_location loc,
1095 const struct line_map **map)
1096{
1097 source_location resolved_location;
1098 const struct line_map *resolved_map;
1099
1100 resolved_location =
1101 linemap_macro_map_loc_unwind_toward_spelling (*map, loc);
1102 resolved_map = linemap_lookup (set, resolved_location);
1103
1104 if (!linemap_macro_expansion_map_p (resolved_map))
1105 {
1106 resolved_location = linemap_macro_map_loc_to_exp_point (*map, loc);
1107 resolved_map = linemap_lookup (set, resolved_location);
1108 }
1109
1110 *map = resolved_map;
1111 return resolved_location;
1112}
1113
1114/* Expand source code location LOC and return a user readable source
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001115 code location. LOC must be a spelling (non-virtual) location. If
1116 it's a location < RESERVED_LOCATION_COUNT a zeroed expanded source
1117 location is returned. */
Tom Tromey46427372011-10-17 11:58:56 +02001118
1119expanded_location
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001120linemap_expand_location (struct line_maps *set,
1121 const struct line_map *map,
Tom Tromey46427372011-10-17 11:58:56 +02001122 source_location loc)
1123
1124{
1125 expanded_location xloc;
1126
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001127 memset (&xloc, 0, sizeof (xloc));
Tom Tromey46427372011-10-17 11:58:56 +02001128
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001129 if (loc < RESERVED_LOCATION_COUNT)
1130 /* The location for this token wasn't generated from a line map.
1131 It was probably a location for a builtin token, chosen by some
1132 client code. Let's not try to expand the location in that
1133 case. */;
1134 else if (map == NULL)
1135 /* We shouldn't be getting a NULL map with a location that is not
1136 reserved by the client code. */
1137 abort ();
1138 else
1139 {
1140 /* MAP must be an ordinary map and LOC must be non-virtual,
1141 encoded into this map, obviously; the accessors used on MAP
1142 below ensure it is ordinary. Let's just assert the
1143 non-virtualness of LOC here. */
1144 if (linemap_location_from_macro_expansion_p (set, loc))
1145 abort ();
Tom Tromey46427372011-10-17 11:58:56 +02001146
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001147 xloc.file = LINEMAP_FILE (map);
1148 xloc.line = SOURCE_LINE (map, loc);
1149 xloc.column = SOURCE_COLUMN (map, loc);
1150 xloc.sysp = LINEMAP_SYSP (map) != 0;
1151 }
Tom Tromey46427372011-10-17 11:58:56 +02001152
Tom Tromey46427372011-10-17 11:58:56 +02001153 return xloc;
Neil Booth59930192001-08-21 21:17:48 +00001154}
Tom Tromey847e6972011-10-17 09:59:40 +00001155
1156/* Dump debugging information about source location LOC into the file
1157 stream STREAM. SET is the line map set LOC comes from. */
1158
1159void
1160linemap_dump_location (struct line_maps *set,
1161 source_location loc,
1162 FILE *stream)
1163{
1164 const struct line_map *map;
1165 source_location location;
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001166 const char *path = "", *from = "";
1167 int l = -1, c = -1, s = -1, e = -1;
Tom Tromey847e6972011-10-17 09:59:40 +00001168
1169 if (loc == 0)
1170 return;
1171
1172 location =
1173 linemap_resolve_location (set, loc, LRK_MACRO_DEFINITION_LOCATION, &map);
Tom Tromey847e6972011-10-17 09:59:40 +00001174
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001175 if (map == NULL)
1176 /* Only reserved locations can be tolerated in this case. */
1177 linemap_assert (location < RESERVED_LOCATION_COUNT);
Tom Tromey847e6972011-10-17 09:59:40 +00001178 else
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001179 {
1180 path = LINEMAP_FILE (map);
1181 l = SOURCE_LINE (map, location);
1182 c = SOURCE_COLUMN (map, location);
1183 s = LINEMAP_SYSP (map) != 0;
1184 e = location != loc;
1185 if (e)
1186 from = "N/A";
1187 else
1188 from = (INCLUDED_FROM (set, map))
1189 ? LINEMAP_FILE (INCLUDED_FROM (set, map))
1190 : "<NULL>";
1191 }
Tom Tromey847e6972011-10-17 09:59:40 +00001192
1193 /* P: path, L: line, C: column, S: in-system-header, M: map address,
Dodji Seketeli84756fd42011-10-25 08:58:54 +00001194 E: macro expansion?, LOC: original location, R: resolved location */
1195 fprintf (stream, "{P:%s;F:%s;L:%d;C:%d;S:%d;M:%p;E:%d,LOC:%d,R:%d}",
1196 path, from, l, c, s, (void*)map, e, loc, location);
Tom Tromey847e6972011-10-17 09:59:40 +00001197}
Tom Tromey64a1a422011-10-17 09:59:52 +00001198
1199/* Compute and return statistics about the memory consumption of some
1200 parts of the line table SET. */
1201
1202void
1203linemap_get_statistics (struct line_maps *set,
1204 struct linemap_stats *s)
1205{
Dodji Seketelid17687f2011-10-18 08:44:49 +00001206 long ordinary_maps_allocated_size, ordinary_maps_used_size,
Tom Tromey64a1a422011-10-17 09:59:52 +00001207 macro_maps_allocated_size, macro_maps_used_size,
1208 macro_maps_locations_size = 0, duplicated_macro_maps_locations_size = 0;
1209
1210 struct line_map *cur_map;
1211
1212 ordinary_maps_allocated_size =
1213 LINEMAPS_ORDINARY_ALLOCATED (set) * sizeof (struct line_map);
1214
1215 ordinary_maps_used_size =
1216 LINEMAPS_ORDINARY_USED (set) * sizeof (struct line_map);
1217
1218 macro_maps_allocated_size =
1219 LINEMAPS_MACRO_ALLOCATED (set) * sizeof (struct line_map);
1220
1221 for (cur_map = LINEMAPS_MACRO_MAPS (set);
1222 cur_map && cur_map <= LINEMAPS_LAST_MACRO_MAP (set);
1223 ++cur_map)
1224 {
1225 unsigned i;
1226
1227 linemap_assert (linemap_macro_expansion_map_p (cur_map));
1228
1229 macro_maps_locations_size +=
1230 2 * MACRO_MAP_NUM_MACRO_TOKENS (cur_map) * sizeof (source_location);
1231
1232 for (i = 0; i < 2 * MACRO_MAP_NUM_MACRO_TOKENS (cur_map); i += 2)
1233 {
1234 if (MACRO_MAP_LOCATIONS (cur_map)[i] ==
1235 MACRO_MAP_LOCATIONS (cur_map)[i + 1])
1236 duplicated_macro_maps_locations_size +=
1237 sizeof (source_location);
1238 }
1239 }
1240
1241 macro_maps_used_size =
1242 LINEMAPS_MACRO_USED (set) * sizeof (struct line_map);
1243
1244 s->num_ordinary_maps_allocated = LINEMAPS_ORDINARY_ALLOCATED (set);
1245 s->num_ordinary_maps_used = LINEMAPS_ORDINARY_USED (set);
1246 s->ordinary_maps_allocated_size = ordinary_maps_allocated_size;
1247 s->ordinary_maps_used_size = ordinary_maps_used_size;
1248 s->num_expanded_macros = num_expanded_macros_counter;
1249 s->num_macro_tokens = num_macro_tokens_counter;
1250 s->num_macro_maps_used = LINEMAPS_MACRO_USED (set);
1251 s->macro_maps_allocated_size = macro_maps_allocated_size;
1252 s->macro_maps_locations_size = macro_maps_locations_size;
1253 s->macro_maps_used_size = macro_maps_used_size;
1254 s->duplicated_macro_maps_locations_size =
1255 duplicated_macro_maps_locations_size;
1256}