2016-10-21 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / libcpp / line-map.c
blobc5c42f0966b81710ce77c4e2b72a2c4b64270186
1 /* Map (unsigned int) keys to (source file, line, column) triples.
2 Copyright (C) 2001-2016 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 3, or (at your option) any
7 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING3. If not see
16 <http://www.gnu.org/licenses/>.
18 In other words, you are welcome to use, share and improve this program.
19 You are forbidden to forbid anyone else to use, share and improve
20 what you give them. Help stamp out software-hoarding! */
22 #include "config.h"
23 #include "system.h"
24 #include "line-map.h"
25 #include "cpplib.h"
26 #include "internal.h"
27 #include "hashtab.h"
29 /* Do not track column numbers higher than this one. As a result, the
30 range of column_bits is [12, 18] (or 0 if column numbers are
31 disabled). */
32 const unsigned int LINE_MAP_MAX_COLUMN_NUMBER = (1U << 12);
34 /* Highest possible source location encoded within an ordinary or
35 macro map. */
36 const source_location LINE_MAP_MAX_SOURCE_LOCATION = 0x70000000;
38 static void trace_include (const struct line_maps *, const line_map_ordinary *);
39 static const line_map_ordinary * linemap_ordinary_map_lookup (struct line_maps *,
40 source_location);
41 static const line_map_macro* linemap_macro_map_lookup (struct line_maps *,
42 source_location);
43 static source_location linemap_macro_map_loc_to_def_point
44 (const line_map_macro *, source_location);
45 static source_location linemap_macro_map_loc_to_exp_point
46 (const line_map_macro *, source_location);
47 static source_location linemap_macro_loc_to_spelling_point
48 (struct line_maps *, source_location, const line_map_ordinary **);
49 static source_location linemap_macro_loc_to_def_point (struct line_maps *,
50 source_location,
51 const line_map_ordinary **);
52 static source_location linemap_macro_loc_to_exp_point (struct line_maps *,
53 source_location,
54 const line_map_ordinary **);
56 /* Counters defined in macro.c. */
57 extern unsigned num_expanded_macros_counter;
58 extern unsigned num_macro_tokens_counter;
60 /* Hash function for location_adhoc_data hashtable. */
62 static hashval_t
63 location_adhoc_data_hash (const void *l)
65 const struct location_adhoc_data *lb =
66 (const struct location_adhoc_data *) l;
67 return ((hashval_t) lb->locus
68 + (hashval_t) lb->src_range.m_start
69 + (hashval_t) lb->src_range.m_finish
70 + (size_t) lb->data);
73 /* Compare function for location_adhoc_data hashtable. */
75 static int
76 location_adhoc_data_eq (const void *l1, const void *l2)
78 const struct location_adhoc_data *lb1 =
79 (const struct location_adhoc_data *) l1;
80 const struct location_adhoc_data *lb2 =
81 (const struct location_adhoc_data *) l2;
82 return (lb1->locus == lb2->locus
83 && lb1->src_range.m_start == lb2->src_range.m_start
84 && lb1->src_range.m_finish == lb2->src_range.m_finish
85 && lb1->data == lb2->data);
88 /* Update the hashtable when location_adhoc_data is reallocated. */
90 static int
91 location_adhoc_data_update (void **slot, void *data)
93 *((char **) slot) += *((int64_t *) data);
94 return 1;
97 /* Rebuild the hash table from the location adhoc data. */
99 void
100 rebuild_location_adhoc_htab (struct line_maps *set)
102 unsigned i;
103 set->location_adhoc_data_map.htab =
104 htab_create (100, location_adhoc_data_hash, location_adhoc_data_eq, NULL);
105 for (i = 0; i < set->location_adhoc_data_map.curr_loc; i++)
106 htab_find_slot (set->location_adhoc_data_map.htab,
107 set->location_adhoc_data_map.data + i, INSERT);
110 /* Helper function for get_combined_adhoc_loc.
111 Can the given LOCUS + SRC_RANGE and DATA pointer be stored compactly
112 within a source_location, without needing to use an ad-hoc location. */
114 static bool
115 can_be_stored_compactly_p (struct line_maps *set,
116 source_location locus,
117 source_range src_range,
118 void *data)
120 /* If there's an ad-hoc pointer, we can't store it directly in the
121 source_location, we need the lookaside. */
122 if (data)
123 return false;
125 /* We only store ranges that begin at the locus and that are sufficiently
126 "sane". */
127 if (src_range.m_start != locus)
128 return false;
130 if (src_range.m_finish < src_range.m_start)
131 return false;
133 if (src_range.m_start < RESERVED_LOCATION_COUNT)
134 return false;
136 if (locus >= LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES)
137 return false;
139 /* All 3 locations must be within ordinary maps, typically, the same
140 ordinary map. */
141 source_location lowest_macro_loc = LINEMAPS_MACRO_LOWEST_LOCATION (set);
142 if (locus >= lowest_macro_loc)
143 return false;
144 if (src_range.m_start >= lowest_macro_loc)
145 return false;
146 if (src_range.m_finish >= lowest_macro_loc)
147 return false;
149 /* Passed all tests. */
150 return true;
153 /* Combine LOCUS and DATA to a combined adhoc loc. */
155 source_location
156 get_combined_adhoc_loc (struct line_maps *set,
157 source_location locus,
158 source_range src_range,
159 void *data)
161 struct location_adhoc_data lb;
162 struct location_adhoc_data **slot;
164 if (IS_ADHOC_LOC (locus))
165 locus
166 = set->location_adhoc_data_map.data[locus & MAX_SOURCE_LOCATION].locus;
167 if (locus == 0 && data == NULL)
168 return 0;
170 /* Any ordinary locations ought to be "pure" at this point: no
171 compressed ranges. */
172 linemap_assert (locus < RESERVED_LOCATION_COUNT
173 || locus >= LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES
174 || locus >= LINEMAPS_MACRO_LOWEST_LOCATION (set)
175 || pure_location_p (set, locus));
177 /* Consider short-range optimization. */
178 if (can_be_stored_compactly_p (set, locus, src_range, data))
180 /* The low bits ought to be clear. */
181 linemap_assert (pure_location_p (set, locus));
182 const line_map *map = linemap_lookup (set, locus);
183 const line_map_ordinary *ordmap = linemap_check_ordinary (map);
184 unsigned int int_diff = src_range.m_finish - src_range.m_start;
185 unsigned int col_diff = (int_diff >> ordmap->m_range_bits);
186 if (col_diff < (1U << ordmap->m_range_bits))
188 source_location packed = locus | col_diff;
189 set->num_optimized_ranges++;
190 return packed;
194 /* We can also compactly store locations
195 when locus == start == finish (and data is NULL). */
196 if (locus == src_range.m_start
197 && locus == src_range.m_finish
198 && !data)
199 return locus;
201 if (!data)
202 set->num_unoptimized_ranges++;
204 lb.locus = locus;
205 lb.src_range = src_range;
206 lb.data = data;
207 slot = (struct location_adhoc_data **)
208 htab_find_slot (set->location_adhoc_data_map.htab, &lb, INSERT);
209 if (*slot == NULL)
211 if (set->location_adhoc_data_map.curr_loc >=
212 set->location_adhoc_data_map.allocated)
214 char *orig_data = (char *) set->location_adhoc_data_map.data;
215 int64_t offset;
216 /* Cast away extern "C" from the type of xrealloc. */
217 line_map_realloc reallocator = (set->reallocator
218 ? set->reallocator
219 : (line_map_realloc) xrealloc);
221 if (set->location_adhoc_data_map.allocated == 0)
222 set->location_adhoc_data_map.allocated = 128;
223 else
224 set->location_adhoc_data_map.allocated *= 2;
225 set->location_adhoc_data_map.data = (struct location_adhoc_data *)
226 reallocator (set->location_adhoc_data_map.data,
227 set->location_adhoc_data_map.allocated
228 * sizeof (struct location_adhoc_data));
229 offset = (char *) (set->location_adhoc_data_map.data) - orig_data;
230 if (set->location_adhoc_data_map.allocated > 128)
231 htab_traverse (set->location_adhoc_data_map.htab,
232 location_adhoc_data_update, &offset);
234 *slot = set->location_adhoc_data_map.data
235 + set->location_adhoc_data_map.curr_loc;
236 set->location_adhoc_data_map.data[set->location_adhoc_data_map.curr_loc++]
237 = lb;
239 return ((*slot) - set->location_adhoc_data_map.data) | 0x80000000;
242 /* Return the data for the adhoc loc. */
244 void *
245 get_data_from_adhoc_loc (struct line_maps *set, source_location loc)
247 linemap_assert (IS_ADHOC_LOC (loc));
248 return set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].data;
251 /* Return the location for the adhoc loc. */
253 source_location
254 get_location_from_adhoc_loc (struct line_maps *set, source_location loc)
256 linemap_assert (IS_ADHOC_LOC (loc));
257 return set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].locus;
260 /* Return the source_range for adhoc location LOC. */
262 static source_range
263 get_range_from_adhoc_loc (struct line_maps *set, source_location loc)
265 linemap_assert (IS_ADHOC_LOC (loc));
266 return set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].src_range;
269 /* Get the source_range of location LOC, either from the ad-hoc
270 lookaside table, or embedded inside LOC itself. */
272 source_range
273 get_range_from_loc (struct line_maps *set,
274 source_location loc)
276 if (IS_ADHOC_LOC (loc))
277 return get_range_from_adhoc_loc (set, loc);
279 /* For ordinary maps, extract packed range. */
280 if (loc >= RESERVED_LOCATION_COUNT
281 && loc < LINEMAPS_MACRO_LOWEST_LOCATION (set)
282 && loc <= LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES)
284 const line_map *map = linemap_lookup (set, loc);
285 const line_map_ordinary *ordmap = linemap_check_ordinary (map);
286 source_range result;
287 int offset = loc & ((1 << ordmap->m_range_bits) - 1);
288 result.m_start = loc - offset;
289 result.m_finish = result.m_start + (offset << ordmap->m_range_bits);
290 return result;
293 return source_range::from_location (loc);
296 /* Get whether location LOC is a "pure" location, or
297 whether it is an ad-hoc location, or embeds range information. */
299 bool
300 pure_location_p (line_maps *set, source_location loc)
302 if (IS_ADHOC_LOC (loc))
303 return false;
305 const line_map *map = linemap_lookup (set, loc);
306 const line_map_ordinary *ordmap = linemap_check_ordinary (map);
308 if (loc & ((1U << ordmap->m_range_bits) - 1))
309 return false;
311 return true;
314 /* Given location LOC within SET, strip away any packed range information
315 or ad-hoc information. */
317 source_location
318 get_pure_location (line_maps *set, source_location loc)
320 if (IS_ADHOC_LOC (loc))
322 = set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].locus;
324 if (loc >= LINEMAPS_MACRO_LOWEST_LOCATION (set))
325 return loc;
327 if (loc < RESERVED_LOCATION_COUNT)
328 return loc;
330 const line_map *map = linemap_lookup (set, loc);
331 const line_map_ordinary *ordmap = linemap_check_ordinary (map);
333 return loc & ~((1 << ordmap->m_range_bits) - 1);
336 /* Finalize the location_adhoc_data structure. */
337 void
338 location_adhoc_data_fini (struct line_maps *set)
340 htab_delete (set->location_adhoc_data_map.htab);
343 /* Initialize a line map set. */
345 void
346 linemap_init (struct line_maps *set,
347 source_location builtin_location)
349 memset (set, 0, sizeof (struct line_maps));
350 set->highest_location = RESERVED_LOCATION_COUNT - 1;
351 set->highest_line = RESERVED_LOCATION_COUNT - 1;
352 set->location_adhoc_data_map.htab =
353 htab_create (100, location_adhoc_data_hash, location_adhoc_data_eq, NULL);
354 set->builtin_location = builtin_location;
357 /* Check for and warn about line_maps entered but not exited. */
359 void
360 linemap_check_files_exited (struct line_maps *set)
362 const line_map_ordinary *map;
363 /* Depending upon whether we are handling preprocessed input or
364 not, this can be a user error or an ICE. */
365 for (map = LINEMAPS_LAST_ORDINARY_MAP (set);
366 ! MAIN_FILE_P (map);
367 map = INCLUDED_FROM (set, map))
368 fprintf (stderr, "line-map.c: file \"%s\" entered but not left\n",
369 ORDINARY_MAP_FILE_NAME (map));
372 /* Create a new line map in the line map set SET, and return it.
373 REASON is the reason of creating the map. It determines the type
374 of map created (ordinary or macro map). Note that ordinary maps and
375 macro maps are allocated in different memory location. */
377 static struct line_map *
378 new_linemap (struct line_maps *set,
379 enum lc_reason reason)
381 /* Depending on this variable, a macro map would be allocated in a
382 different memory location than an ordinary map. */
383 bool macro_map_p = (reason == LC_ENTER_MACRO);
384 struct line_map *result;
386 if (LINEMAPS_USED (set, macro_map_p) == LINEMAPS_ALLOCATED (set, macro_map_p))
388 /* We ran out of allocated line maps. Let's allocate more. */
389 size_t alloc_size;
391 /* Cast away extern "C" from the type of xrealloc. */
392 line_map_realloc reallocator = (set->reallocator
393 ? set->reallocator
394 : (line_map_realloc) xrealloc);
395 line_map_round_alloc_size_func round_alloc_size =
396 set->round_alloc_size;
398 size_t map_size = (macro_map_p
399 ? sizeof (line_map_macro)
400 : sizeof (line_map_ordinary));
402 /* We are going to execute some dance to try to reduce the
403 overhead of the memory allocator, in case we are using the
404 ggc-page.c one.
406 The actual size of memory we are going to get back from the
407 allocator is the smallest power of 2 that is greater than the
408 size we requested. So let's consider that size then. */
410 alloc_size =
411 (2 * LINEMAPS_ALLOCATED (set, macro_map_p) + 256)
412 * map_size;
414 /* Get the actual size of memory that is going to be allocated
415 by the allocator. */
416 alloc_size = round_alloc_size (alloc_size);
418 /* Now alloc_size contains the exact memory size we would get if
419 we have asked for the initial alloc_size amount of memory.
420 Let's get back to the number of macro map that amounts
421 to. */
422 LINEMAPS_ALLOCATED (set, macro_map_p) =
423 alloc_size / map_size;
425 /* And now let's really do the re-allocation. */
426 if (macro_map_p)
428 set->info_macro.maps
429 = (line_map_macro *) (*reallocator) (set->info_macro.maps,
430 (LINEMAPS_ALLOCATED (set, macro_map_p)
431 * map_size));
432 result = &set->info_macro.maps[LINEMAPS_USED (set, macro_map_p)];
434 else
436 set->info_ordinary.maps =
437 (line_map_ordinary *) (*reallocator) (set->info_ordinary.maps,
438 (LINEMAPS_ALLOCATED (set, macro_map_p)
439 * map_size));
440 result = &set->info_ordinary.maps[LINEMAPS_USED (set, macro_map_p)];
442 memset (result, 0,
443 ((LINEMAPS_ALLOCATED (set, macro_map_p)
444 - LINEMAPS_USED (set, macro_map_p))
445 * map_size));
447 else
449 if (macro_map_p)
450 result = &set->info_macro.maps[LINEMAPS_USED (set, macro_map_p)];
451 else
452 result = &set->info_ordinary.maps[LINEMAPS_USED (set, macro_map_p)];
455 LINEMAPS_USED (set, macro_map_p)++;
457 result->reason = reason;
458 return result;
461 /* Add a mapping of logical source line to physical source file and
462 line number.
464 The text pointed to by TO_FILE must have a lifetime
465 at least as long as the final call to lookup_line (). An empty
466 TO_FILE means standard input. If reason is LC_LEAVE, and
467 TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their
468 natural values considering the file we are returning to.
470 FROM_LINE should be monotonic increasing across calls to this
471 function. A call to this function can relocate the previous set of
472 maps, so any stored line_map pointers should not be used. */
474 const struct line_map *
475 linemap_add (struct line_maps *set, enum lc_reason reason,
476 unsigned int sysp, const char *to_file, linenum_type to_line)
478 /* Generate a start_location above the current highest_location.
479 If possible, make the low range bits be zero. */
480 source_location start_location;
481 if (set->highest_location < LINE_MAP_MAX_LOCATION_WITH_COLS)
483 start_location = set->highest_location + (1 << set->default_range_bits);
484 if (set->default_range_bits)
485 start_location &= ~((1 << set->default_range_bits) - 1);
486 linemap_assert (0 == (start_location
487 & ((1 << set->default_range_bits) - 1)));
489 else
490 start_location = set->highest_location + 1;
492 linemap_assert (!(LINEMAPS_ORDINARY_USED (set)
493 && (start_location
494 < MAP_START_LOCATION (LINEMAPS_LAST_ORDINARY_MAP (set)))));
496 /* When we enter the file for the first time reason cannot be
497 LC_RENAME. */
498 linemap_assert (!(set->depth == 0 && reason == LC_RENAME));
500 /* If we are leaving the main file, return a NULL map. */
501 if (reason == LC_LEAVE
502 && MAIN_FILE_P (LINEMAPS_LAST_ORDINARY_MAP (set))
503 && to_file == NULL)
505 set->depth--;
506 return NULL;
509 linemap_assert (reason != LC_ENTER_MACRO);
510 line_map_ordinary *map = linemap_check_ordinary (new_linemap (set, reason));
512 if (to_file && *to_file == '\0' && reason != LC_RENAME_VERBATIM)
513 to_file = "<stdin>";
515 if (reason == LC_RENAME_VERBATIM)
516 reason = LC_RENAME;
518 if (reason == LC_LEAVE)
520 /* When we are just leaving an "included" file, and jump to the next
521 location inside the "includer" right after the #include
522 "included", this variable points the map in use right before the
523 #include "included", inside the same "includer" file. */
524 line_map_ordinary *from;
526 linemap_assert (!MAIN_FILE_P (map - 1));
527 /* (MAP - 1) points to the map we are leaving. The
528 map from which (MAP - 1) got included should be the map
529 that comes right before MAP in the same file. */
530 from = INCLUDED_FROM (set, map - 1);
532 /* A TO_FILE of NULL is special - we use the natural values. */
533 if (to_file == NULL)
535 to_file = ORDINARY_MAP_FILE_NAME (from);
536 to_line = SOURCE_LINE (from, from[1].start_location);
537 sysp = ORDINARY_MAP_IN_SYSTEM_HEADER_P (from);
539 else
540 linemap_assert (filename_cmp (ORDINARY_MAP_FILE_NAME (from),
541 to_file) == 0);
544 map->sysp = sysp;
545 map->start_location = start_location;
546 map->to_file = to_file;
547 map->to_line = to_line;
548 LINEMAPS_ORDINARY_CACHE (set) = LINEMAPS_ORDINARY_USED (set) - 1;
549 map->m_column_and_range_bits = 0;
550 map->m_range_bits = 0;
551 set->highest_location = start_location;
552 set->highest_line = start_location;
553 set->max_column_hint = 0;
555 /* This assertion is placed after set->highest_location has
556 been updated, since the latter affects
557 linemap_location_from_macro_expansion_p, which ultimately affects
558 pure_location_p. */
559 linemap_assert (pure_location_p (set, start_location));
561 if (reason == LC_ENTER)
563 map->included_from =
564 set->depth == 0 ? -1 : (int) (LINEMAPS_ORDINARY_USED (set) - 2);
565 set->depth++;
566 if (set->trace_includes)
567 trace_include (set, map);
569 else if (reason == LC_RENAME)
570 map->included_from = ORDINARY_MAP_INCLUDER_FILE_INDEX (&map[-1]);
571 else if (reason == LC_LEAVE)
573 set->depth--;
574 map->included_from =
575 ORDINARY_MAP_INCLUDER_FILE_INDEX (INCLUDED_FROM (set, map - 1));
578 return map;
581 /* Returns TRUE if the line table set tracks token locations across
582 macro expansion, FALSE otherwise. */
584 bool
585 linemap_tracks_macro_expansion_locs_p (struct line_maps *set)
587 return LINEMAPS_MACRO_MAPS (set) != NULL;
590 /* Create a macro map. A macro map encodes source locations of tokens
591 that are part of a macro replacement-list, at a macro expansion
592 point. See the extensive comments of struct line_map and struct
593 line_map_macro, in line-map.h.
595 This map shall be created when the macro is expanded. The map
596 encodes the source location of the expansion point of the macro as
597 well as the "original" source location of each token that is part
598 of the macro replacement-list. If a macro is defined but never
599 expanded, it has no macro map. SET is the set of maps the macro
600 map should be part of. MACRO_NODE is the macro which the new macro
601 map should encode source locations for. EXPANSION is the location
602 of the expansion point of MACRO. For function-like macros
603 invocations, it's best to make it point to the closing parenthesis
604 of the macro, rather than the the location of the first character
605 of the macro. NUM_TOKENS is the number of tokens that are part of
606 the replacement-list of MACRO.
608 Note that when we run out of the integer space available for source
609 locations, this function returns NULL. In that case, callers of
610 this function cannot encode {line,column} pairs into locations of
611 macro tokens anymore. */
613 const line_map_macro *
614 linemap_enter_macro (struct line_maps *set, struct cpp_hashnode *macro_node,
615 source_location expansion, unsigned int num_tokens)
617 line_map_macro *map;
618 source_location start_location;
619 /* Cast away extern "C" from the type of xrealloc. */
620 line_map_realloc reallocator = (set->reallocator
621 ? set->reallocator
622 : (line_map_realloc) xrealloc);
624 start_location = LINEMAPS_MACRO_LOWEST_LOCATION (set) - num_tokens;
626 if (start_location <= set->highest_line
627 || start_location > LINEMAPS_MACRO_LOWEST_LOCATION (set))
628 /* We ran out of macro map space. */
629 return NULL;
631 map = linemap_check_macro (new_linemap (set, LC_ENTER_MACRO));
633 map->start_location = start_location;
634 map->macro = macro_node;
635 map->n_tokens = num_tokens;
636 map->macro_locations
637 = (source_location*) reallocator (NULL,
638 2 * num_tokens
639 * sizeof (source_location));
640 map->expansion = expansion;
641 memset (MACRO_MAP_LOCATIONS (map), 0,
642 num_tokens * sizeof (source_location));
644 LINEMAPS_MACRO_CACHE (set) = LINEMAPS_MACRO_USED (set) - 1;
646 return map;
649 /* Create and return a virtual location for a token that is part of a
650 macro expansion-list at a macro expansion point. See the comment
651 inside struct line_map_macro to see what an expansion-list exactly
654 A call to this function must come after a call to
655 linemap_enter_macro.
657 MAP is the map into which the source location is created. TOKEN_NO
658 is the index of the token in the macro replacement-list, starting
659 at number 0.
661 ORIG_LOC is the location of the token outside of this macro
662 expansion. If the token comes originally from the macro
663 definition, it is the locus in the macro definition; otherwise it
664 is a location in the context of the caller of this macro expansion
665 (which is a virtual location or a source location if the caller is
666 itself a macro expansion or not).
668 ORIG_PARM_REPLACEMENT_LOC is the location in the macro definition,
669 either of the token itself or of a macro parameter that it
670 replaces. */
672 source_location
673 linemap_add_macro_token (const line_map_macro *map,
674 unsigned int token_no,
675 source_location orig_loc,
676 source_location orig_parm_replacement_loc)
678 source_location result;
680 linemap_assert (linemap_macro_expansion_map_p (map));
681 linemap_assert (token_no < MACRO_MAP_NUM_MACRO_TOKENS (map));
683 MACRO_MAP_LOCATIONS (map)[2 * token_no] = orig_loc;
684 MACRO_MAP_LOCATIONS (map)[2 * token_no + 1] = orig_parm_replacement_loc;
686 result = MAP_START_LOCATION (map) + token_no;
687 return result;
690 /* Return a source_location for the start (i.e. column==0) of
691 (physical) line TO_LINE in the current source file (as in the
692 most recent linemap_add). MAX_COLUMN_HINT is the highest column
693 number we expect to use in this line (but it does not change
694 the highest_location). */
696 source_location
697 linemap_line_start (struct line_maps *set, linenum_type to_line,
698 unsigned int max_column_hint)
700 line_map_ordinary *map = LINEMAPS_LAST_ORDINARY_MAP (set);
701 source_location highest = set->highest_location;
702 source_location r;
703 linenum_type last_line =
704 SOURCE_LINE (map, set->highest_line);
705 int line_delta = to_line - last_line;
706 bool add_map = false;
707 linemap_assert (map->m_column_and_range_bits >= map->m_range_bits);
708 int effective_column_bits = map->m_column_and_range_bits - map->m_range_bits;
710 if (line_delta < 0
711 || (line_delta > 10
712 && line_delta * map->m_column_and_range_bits > 1000)
713 || (max_column_hint >= (1U << effective_column_bits))
714 || (max_column_hint <= 80 && effective_column_bits >= 10)
715 || (highest > LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES
716 && map->m_range_bits > 0)
717 || (highest > LINE_MAP_MAX_LOCATION_WITH_COLS
718 && (set->max_column_hint || highest >= LINE_MAP_MAX_SOURCE_LOCATION)))
719 add_map = true;
720 else
721 max_column_hint = set->max_column_hint;
722 if (add_map)
724 int column_bits;
725 int range_bits;
726 if (max_column_hint > LINE_MAP_MAX_COLUMN_NUMBER
727 || highest > LINE_MAP_MAX_LOCATION_WITH_COLS)
729 /* If the column number is ridiculous or we've allocated a huge
730 number of source_locations, give up on column numbers
731 (and on packed ranges). */
732 max_column_hint = 0;
733 column_bits = 0;
734 range_bits = 0;
735 if (highest > LINE_MAP_MAX_SOURCE_LOCATION)
736 return 0;
738 else
740 column_bits = 7;
741 if (highest <= LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES)
742 range_bits = set->default_range_bits;
743 else
744 range_bits = 0;
745 while (max_column_hint >= (1U << column_bits))
746 column_bits++;
747 max_column_hint = 1U << column_bits;
748 column_bits += range_bits;
750 /* Allocate the new line_map. However, if the current map only has a
751 single line we can sometimes just increase its column_bits instead. */
752 if (line_delta < 0
753 || last_line != ORDINARY_MAP_STARTING_LINE_NUMBER (map)
754 || SOURCE_COLUMN (map, highest) >= (1U << column_bits)
755 || range_bits < map->m_range_bits)
756 map = linemap_check_ordinary
757 (const_cast <line_map *>
758 (linemap_add (set, LC_RENAME,
759 ORDINARY_MAP_IN_SYSTEM_HEADER_P (map),
760 ORDINARY_MAP_FILE_NAME (map),
761 to_line)));
762 map->m_column_and_range_bits = column_bits;
763 map->m_range_bits = range_bits;
764 r = (MAP_START_LOCATION (map)
765 + ((to_line - ORDINARY_MAP_STARTING_LINE_NUMBER (map))
766 << column_bits));
768 else
769 r = set->highest_line + (line_delta << map->m_column_and_range_bits);
771 /* Locations of ordinary tokens are always lower than locations of
772 macro tokens. */
773 if (r >= LINEMAPS_MACRO_LOWEST_LOCATION (set))
774 return 0;
776 set->highest_line = r;
777 if (r > set->highest_location)
778 set->highest_location = r;
779 set->max_column_hint = max_column_hint;
781 /* At this point, we expect one of:
782 (a) the normal case: a "pure" location with 0 range bits, or
783 (b) we've gone past LINE_MAP_MAX_LOCATION_WITH_COLS so can't track
784 columns anymore (or ranges), or
785 (c) we're in a region with a column hint exceeding
786 LINE_MAP_MAX_COLUMN_NUMBER, so column-tracking is off,
787 with column_bits == 0. */
788 linemap_assert (pure_location_p (set, r)
789 || r >= LINE_MAP_MAX_LOCATION_WITH_COLS
790 || map->m_column_and_range_bits == 0);
791 linemap_assert (SOURCE_LINE (map, r) == to_line);
792 return r;
795 /* Encode and return a source_location from a column number. The
796 source line considered is the last source line used to call
797 linemap_line_start, i.e, the last source line which a location was
798 encoded from. */
800 source_location
801 linemap_position_for_column (struct line_maps *set, unsigned int to_column)
803 source_location r = set->highest_line;
805 linemap_assert
806 (!linemap_macro_expansion_map_p (LINEMAPS_LAST_ORDINARY_MAP (set)));
808 if (to_column >= set->max_column_hint)
810 if (r > LINE_MAP_MAX_LOCATION_WITH_COLS
811 || to_column > LINE_MAP_MAX_COLUMN_NUMBER)
813 /* Running low on source_locations - disable column numbers. */
814 return r;
816 else
818 line_map_ordinary *map = LINEMAPS_LAST_ORDINARY_MAP (set);
819 r = linemap_line_start (set, SOURCE_LINE (map, r), to_column + 50);
822 line_map_ordinary *map = LINEMAPS_LAST_ORDINARY_MAP (set);
823 r = r + (to_column << map->m_range_bits);
824 if (r >= set->highest_location)
825 set->highest_location = r;
826 return r;
829 /* Encode and return a source location from a given line and
830 column. */
832 source_location
833 linemap_position_for_line_and_column (line_maps *set,
834 const line_map_ordinary *ord_map,
835 linenum_type line,
836 unsigned column)
838 linemap_assert (ORDINARY_MAP_STARTING_LINE_NUMBER (ord_map) <= line);
840 source_location r = MAP_START_LOCATION (ord_map);
841 r += ((line - ORDINARY_MAP_STARTING_LINE_NUMBER (ord_map))
842 << ord_map->m_column_and_range_bits);
843 if (r <= LINE_MAP_MAX_LOCATION_WITH_COLS)
844 r += ((column & ((1 << ord_map->m_column_and_range_bits) - 1))
845 << ord_map->m_range_bits);
846 source_location upper_limit = LINEMAPS_MACRO_LOWEST_LOCATION (set);
847 if (r >= upper_limit)
848 r = upper_limit - 1;
849 if (r > set->highest_location)
850 set->highest_location = r;
851 return r;
854 /* Encode and return a source_location starting from location LOC and
855 shifting it by COLUMN_OFFSET columns. This function does not support
856 virtual locations. */
858 source_location
859 linemap_position_for_loc_and_offset (struct line_maps *set,
860 source_location loc,
861 unsigned int column_offset)
863 const line_map_ordinary * map = NULL;
865 if (IS_ADHOC_LOC (loc))
866 loc = set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].locus;
868 /* This function does not support virtual locations yet. */
869 if (linemap_assert_fails
870 (!linemap_location_from_macro_expansion_p (set, loc)))
871 return loc;
873 if (column_offset == 0
874 /* Adding an offset to a reserved location (like
875 UNKNOWN_LOCATION for the C/C++ FEs) does not really make
876 sense. So let's leave the location intact in that case. */
877 || loc < RESERVED_LOCATION_COUNT)
878 return loc;
880 /* We find the real location and shift it. */
881 loc = linemap_resolve_location (set, loc, LRK_SPELLING_LOCATION, &map);
882 /* The new location (loc + offset) should be higher than the first
883 location encoded by MAP. This can fail if the line information
884 is messed up because of line directives (see PR66415). */
885 if (MAP_START_LOCATION (map) >= loc + (column_offset << map->m_range_bits))
886 return loc;
888 linenum_type line = SOURCE_LINE (map, loc);
889 unsigned int column = SOURCE_COLUMN (map, loc);
891 /* If MAP is not the last line map of its set, then the new location
892 (loc + offset) should be less than the first location encoded by
893 the next line map of the set. Otherwise, we try to encode the
894 location in the next map. */
895 while (map != LINEMAPS_LAST_ORDINARY_MAP (set)
896 && (loc + (column_offset << map->m_range_bits)
897 >= MAP_START_LOCATION (&map[1])))
899 map = &map[1];
900 /* If the next map starts in a higher line, we cannot encode the
901 location there. */
902 if (line < ORDINARY_MAP_STARTING_LINE_NUMBER (map))
903 return loc;
906 column += column_offset;
907 if (linemap_assert_fails (column < (1u << map->m_column_and_range_bits)))
908 return loc;
910 source_location r =
911 linemap_position_for_line_and_column (set, map, line, column);
912 if (linemap_assert_fails (r <= set->highest_location)
913 || linemap_assert_fails (map == linemap_lookup (set, r)))
914 return loc;
916 return r;
919 /* Given a virtual source location yielded by a map (either an
920 ordinary or a macro map), returns that map. */
922 const struct line_map*
923 linemap_lookup (struct line_maps *set, source_location line)
925 if (IS_ADHOC_LOC (line))
926 line = set->location_adhoc_data_map.data[line & MAX_SOURCE_LOCATION].locus;
927 if (linemap_location_from_macro_expansion_p (set, line))
928 return linemap_macro_map_lookup (set, line);
929 return linemap_ordinary_map_lookup (set, line);
932 /* Given a source location yielded by an ordinary map, returns that
933 map. Since the set is built chronologically, the logical lines are
934 monotonic increasing, and so the list is sorted and we can use a
935 binary search. */
937 static const line_map_ordinary *
938 linemap_ordinary_map_lookup (struct line_maps *set, source_location line)
940 unsigned int md, mn, mx;
941 const line_map_ordinary *cached, *result;
943 if (IS_ADHOC_LOC (line))
944 line = set->location_adhoc_data_map.data[line & MAX_SOURCE_LOCATION].locus;
946 if (set == NULL || line < RESERVED_LOCATION_COUNT)
947 return NULL;
949 mn = LINEMAPS_ORDINARY_CACHE (set);
950 mx = LINEMAPS_ORDINARY_USED (set);
952 cached = LINEMAPS_ORDINARY_MAP_AT (set, mn);
953 /* We should get a segfault if no line_maps have been added yet. */
954 if (line >= MAP_START_LOCATION (cached))
956 if (mn + 1 == mx || line < MAP_START_LOCATION (&cached[1]))
957 return cached;
959 else
961 mx = mn;
962 mn = 0;
965 while (mx - mn > 1)
967 md = (mn + mx) / 2;
968 if (MAP_START_LOCATION (LINEMAPS_ORDINARY_MAP_AT (set, md)) > line)
969 mx = md;
970 else
971 mn = md;
974 LINEMAPS_ORDINARY_CACHE (set) = mn;
975 result = LINEMAPS_ORDINARY_MAP_AT (set, mn);
976 linemap_assert (line >= MAP_START_LOCATION (result));
977 return result;
980 /* Given a source location yielded by a macro map, returns that map.
981 Since the set is built chronologically, the logical lines are
982 monotonic decreasing, and so the list is sorted and we can use a
983 binary search. */
985 static const line_map_macro *
986 linemap_macro_map_lookup (struct line_maps *set, source_location line)
988 unsigned int md, mn, mx;
989 const struct line_map_macro *cached, *result;
991 if (IS_ADHOC_LOC (line))
992 line = set->location_adhoc_data_map.data[line & MAX_SOURCE_LOCATION].locus;
994 linemap_assert (line >= LINEMAPS_MACRO_LOWEST_LOCATION (set));
996 if (set == NULL)
997 return NULL;
999 mn = LINEMAPS_MACRO_CACHE (set);
1000 mx = LINEMAPS_MACRO_USED (set);
1001 cached = LINEMAPS_MACRO_MAP_AT (set, mn);
1003 if (line >= MAP_START_LOCATION (cached))
1005 if (mn == 0 || line < MAP_START_LOCATION (&cached[-1]))
1006 return cached;
1007 mx = mn - 1;
1008 mn = 0;
1011 while (mn < mx)
1013 md = (mx + mn) / 2;
1014 if (MAP_START_LOCATION (LINEMAPS_MACRO_MAP_AT (set, md)) > line)
1015 mn = md + 1;
1016 else
1017 mx = md;
1020 LINEMAPS_MACRO_CACHE (set) = mx;
1021 result = LINEMAPS_MACRO_MAP_AT (set, LINEMAPS_MACRO_CACHE (set));
1022 linemap_assert (MAP_START_LOCATION (result) <= line);
1024 return result;
1027 /* Return TRUE if MAP encodes locations coming from a macro
1028 replacement-list at macro expansion point. */
1030 bool
1031 linemap_macro_expansion_map_p (const struct line_map *map)
1033 if (!map)
1034 return false;
1035 return (map->reason == LC_ENTER_MACRO);
1038 /* If LOCATION is the locus of a token in a replacement-list of a
1039 macro expansion return the location of the macro expansion point.
1041 Read the comments of struct line_map and struct line_map_macro in
1042 line-map.h to understand what a macro expansion point is. */
1044 static source_location
1045 linemap_macro_map_loc_to_exp_point (const line_map_macro *map,
1046 source_location location ATTRIBUTE_UNUSED)
1048 linemap_assert (linemap_macro_expansion_map_p (map)
1049 && location >= MAP_START_LOCATION (map));
1051 /* Make sure LOCATION is correct. */
1052 linemap_assert ((location - MAP_START_LOCATION (map))
1053 < MACRO_MAP_NUM_MACRO_TOKENS (map));
1055 return MACRO_MAP_EXPANSION_POINT_LOCATION (map);
1058 /* LOCATION is the source location of a token that belongs to a macro
1059 replacement-list as part of the macro expansion denoted by MAP.
1061 Return the location of the token at the definition point of the
1062 macro. */
1064 static source_location
1065 linemap_macro_map_loc_to_def_point (const line_map_macro *map,
1066 source_location location)
1068 unsigned token_no;
1070 linemap_assert (linemap_macro_expansion_map_p (map)
1071 && location >= MAP_START_LOCATION (map));
1072 linemap_assert (location >= RESERVED_LOCATION_COUNT);
1074 token_no = location - MAP_START_LOCATION (map);
1075 linemap_assert (token_no < MACRO_MAP_NUM_MACRO_TOKENS (map));
1077 location = MACRO_MAP_LOCATIONS (map)[2 * token_no + 1];
1079 return location;
1082 /* If LOCATION is the locus of a token that is an argument of a
1083 function-like macro M and appears in the expansion of M, return the
1084 locus of that argument in the context of the caller of M.
1086 In other words, this returns the xI location presented in the
1087 comments of line_map_macro above. */
1088 source_location
1089 linemap_macro_map_loc_unwind_toward_spelling (line_maps *set,
1090 const line_map_macro* map,
1091 source_location location)
1093 unsigned token_no;
1095 if (IS_ADHOC_LOC (location))
1096 location = get_location_from_adhoc_loc (set, location);
1098 linemap_assert (linemap_macro_expansion_map_p (map)
1099 && location >= MAP_START_LOCATION (map));
1100 linemap_assert (location >= RESERVED_LOCATION_COUNT);
1101 linemap_assert (!IS_ADHOC_LOC (location));
1103 token_no = location - MAP_START_LOCATION (map);
1104 linemap_assert (token_no < MACRO_MAP_NUM_MACRO_TOKENS (map));
1106 location = MACRO_MAP_LOCATIONS (map)[2 * token_no];
1108 return location;
1111 /* Return the source line number corresponding to source location
1112 LOCATION. SET is the line map set LOCATION comes from. If
1113 LOCATION is the source location of token that is part of the
1114 replacement-list of a macro expansion return the line number of the
1115 macro expansion point. */
1118 linemap_get_expansion_line (struct line_maps *set,
1119 source_location location)
1121 const line_map_ordinary *map = NULL;
1123 if (IS_ADHOC_LOC (location))
1124 location = set->location_adhoc_data_map.data[location
1125 & MAX_SOURCE_LOCATION].locus;
1127 if (location < RESERVED_LOCATION_COUNT)
1128 return 0;
1130 location =
1131 linemap_macro_loc_to_exp_point (set, location, &map);
1133 return SOURCE_LINE (map, location);
1136 /* Return the path of the file corresponding to source code location
1137 LOCATION.
1139 If LOCATION is the source location of token that is part of the
1140 replacement-list of a macro expansion return the file path of the
1141 macro expansion point.
1143 SET is the line map set LOCATION comes from. */
1145 const char*
1146 linemap_get_expansion_filename (struct line_maps *set,
1147 source_location location)
1149 const struct line_map_ordinary *map = NULL;
1151 if (IS_ADHOC_LOC (location))
1152 location = set->location_adhoc_data_map.data[location
1153 & MAX_SOURCE_LOCATION].locus;
1155 if (location < RESERVED_LOCATION_COUNT)
1156 return NULL;
1158 location =
1159 linemap_macro_loc_to_exp_point (set, location, &map);
1161 return LINEMAP_FILE (map);
1164 /* Return the name of the macro associated to MACRO_MAP. */
1166 const char*
1167 linemap_map_get_macro_name (const line_map_macro *macro_map)
1169 linemap_assert (macro_map && linemap_macro_expansion_map_p (macro_map));
1170 return (const char*) NODE_NAME (MACRO_MAP_MACRO (macro_map));
1173 /* Return a positive value if LOCATION is the locus of a token that is
1174 located in a system header, O otherwise. It returns 1 if LOCATION
1175 is the locus of a token that is located in a system header, and 2
1176 if LOCATION is the locus of a token located in a C system header
1177 that therefore needs to be extern "C" protected in C++.
1179 Note that this function returns 1 if LOCATION belongs to a token
1180 that is part of a macro replacement-list defined in a system
1181 header, but expanded in a non-system file. */
1184 linemap_location_in_system_header_p (struct line_maps *set,
1185 source_location location)
1187 const struct line_map *map = NULL;
1189 if (IS_ADHOC_LOC (location))
1190 location = set->location_adhoc_data_map.data[location
1191 & MAX_SOURCE_LOCATION].locus;
1193 if (location < RESERVED_LOCATION_COUNT)
1194 return false;
1196 /* Let's look at where the token for LOCATION comes from. */
1197 while (true)
1199 map = linemap_lookup (set, location);
1200 if (map != NULL)
1202 if (!linemap_macro_expansion_map_p (map))
1203 /* It's a normal token. */
1204 return LINEMAP_SYSP (linemap_check_ordinary (map));
1205 else
1207 const line_map_macro *macro_map = linemap_check_macro (map);
1209 /* It's a token resulting from a macro expansion. */
1210 source_location loc =
1211 linemap_macro_map_loc_unwind_toward_spelling (set, macro_map, location);
1212 if (loc < RESERVED_LOCATION_COUNT)
1213 /* This token might come from a built-in macro. Let's
1214 look at where that macro got expanded. */
1215 location = linemap_macro_map_loc_to_exp_point (macro_map, location);
1216 else
1217 location = loc;
1220 else
1221 break;
1223 return false;
1226 /* Return TRUE if LOCATION is a source code location of a token that is part of
1227 a macro expansion, FALSE otherwise. */
1229 bool
1230 linemap_location_from_macro_expansion_p (const struct line_maps *set,
1231 source_location location)
1233 if (IS_ADHOC_LOC (location))
1234 location = set->location_adhoc_data_map.data[location
1235 & MAX_SOURCE_LOCATION].locus;
1237 linemap_assert (location <= MAX_SOURCE_LOCATION
1238 && (set->highest_location
1239 < LINEMAPS_MACRO_LOWEST_LOCATION (set)));
1240 if (set == NULL)
1241 return false;
1242 return (location > set->highest_location);
1245 /* Given two virtual locations *LOC0 and *LOC1, return the first
1246 common macro map in their macro expansion histories. Return NULL
1247 if no common macro was found. *LOC0 (resp. *LOC1) is set to the
1248 virtual location of the token inside the resulting macro. */
1250 static const struct line_map*
1251 first_map_in_common_1 (struct line_maps *set,
1252 source_location *loc0,
1253 source_location *loc1)
1255 source_location l0 = *loc0, l1 = *loc1;
1256 const struct line_map *map0 = linemap_lookup (set, l0),
1257 *map1 = linemap_lookup (set, l1);
1259 while (linemap_macro_expansion_map_p (map0)
1260 && linemap_macro_expansion_map_p (map1)
1261 && (map0 != map1))
1263 if (MAP_START_LOCATION (map0) < MAP_START_LOCATION (map1))
1265 l0 = linemap_macro_map_loc_to_exp_point (linemap_check_macro (map0),
1266 l0);
1267 map0 = linemap_lookup (set, l0);
1269 else
1271 l1 = linemap_macro_map_loc_to_exp_point (linemap_check_macro (map1),
1272 l1);
1273 map1 = linemap_lookup (set, l1);
1277 if (map0 == map1)
1279 *loc0 = l0;
1280 *loc1 = l1;
1281 return map0;
1283 return NULL;
1286 /* Given two virtual locations LOC0 and LOC1, return the first common
1287 macro map in their macro expansion histories. Return NULL if no
1288 common macro was found. *RES_LOC0 (resp. *RES_LOC1) is set to the
1289 virtual location of the token inside the resulting macro, upon
1290 return of a non-NULL result. */
1292 static const struct line_map*
1293 first_map_in_common (struct line_maps *set,
1294 source_location loc0,
1295 source_location loc1,
1296 source_location *res_loc0,
1297 source_location *res_loc1)
1299 *res_loc0 = loc0;
1300 *res_loc1 = loc1;
1302 return first_map_in_common_1 (set, res_loc0, res_loc1);
1305 /* Return a positive value if PRE denotes the location of a token that
1306 comes before the token of POST, 0 if PRE denotes the location of
1307 the same token as the token for POST, and a negative value
1308 otherwise. */
1311 linemap_compare_locations (struct line_maps *set,
1312 source_location pre,
1313 source_location post)
1315 bool pre_virtual_p, post_virtual_p;
1316 source_location l0 = pre, l1 = post;
1318 if (IS_ADHOC_LOC (l0))
1319 l0 = get_location_from_adhoc_loc (set, l0);
1320 if (IS_ADHOC_LOC (l1))
1321 l1 = get_location_from_adhoc_loc (set, l1);
1323 if (l0 == l1)
1324 return 0;
1326 if ((pre_virtual_p = linemap_location_from_macro_expansion_p (set, l0)))
1327 l0 = linemap_resolve_location (set, l0,
1328 LRK_MACRO_EXPANSION_POINT,
1329 NULL);
1331 if ((post_virtual_p = linemap_location_from_macro_expansion_p (set, l1)))
1332 l1 = linemap_resolve_location (set, l1,
1333 LRK_MACRO_EXPANSION_POINT,
1334 NULL);
1336 if (l0 == l1
1337 && pre_virtual_p
1338 && post_virtual_p)
1340 /* So pre and post represent two tokens that are present in a
1341 same macro expansion. Let's see if the token for pre was
1342 before the token for post in that expansion. */
1343 unsigned i0, i1;
1344 const struct line_map *map =
1345 first_map_in_common (set, pre, post, &l0, &l1);
1347 if (map == NULL)
1348 /* This should not be possible. */
1349 abort ();
1351 i0 = l0 - MAP_START_LOCATION (map);
1352 i1 = l1 - MAP_START_LOCATION (map);
1353 return i1 - i0;
1356 if (IS_ADHOC_LOC (l0))
1357 l0 = get_location_from_adhoc_loc (set, l0);
1358 if (IS_ADHOC_LOC (l1))
1359 l1 = get_location_from_adhoc_loc (set, l1);
1361 return l1 - l0;
1364 /* Print an include trace, for e.g. the -H option of the preprocessor. */
1366 static void
1367 trace_include (const struct line_maps *set, const line_map_ordinary *map)
1369 unsigned int i = set->depth;
1371 while (--i)
1372 putc ('.', stderr);
1374 fprintf (stderr, " %s\n", ORDINARY_MAP_FILE_NAME (map));
1377 /* Return the spelling location of the token wherever it comes from,
1378 whether part of a macro definition or not.
1380 This is a subroutine for linemap_resolve_location. */
1382 static source_location
1383 linemap_macro_loc_to_spelling_point (struct line_maps *set,
1384 source_location location,
1385 const line_map_ordinary **original_map)
1387 struct line_map *map;
1388 linemap_assert (set && location >= RESERVED_LOCATION_COUNT);
1390 while (true)
1392 map = const_cast <line_map *> (linemap_lookup (set, location));
1393 if (!linemap_macro_expansion_map_p (map))
1394 break;
1396 location
1397 = linemap_macro_map_loc_unwind_toward_spelling
1398 (set, linemap_check_macro (map),
1399 location);
1402 if (original_map)
1403 *original_map = linemap_check_ordinary (map);
1404 return location;
1407 /* If LOCATION is the source location of a token that belongs to a
1408 macro replacement-list -- as part of a macro expansion -- then
1409 return the location of the token at the definition point of the
1410 macro. Otherwise, return LOCATION. SET is the set of maps
1411 location come from. ORIGINAL_MAP is an output parm. If non NULL,
1412 the function sets *ORIGINAL_MAP to the ordinary (non-macro) map the
1413 returned location comes from.
1415 This is a subroutine of linemap_resolve_location. */
1417 static source_location
1418 linemap_macro_loc_to_def_point (struct line_maps *set,
1419 source_location location,
1420 const line_map_ordinary **original_map)
1422 struct line_map *map;
1424 if (IS_ADHOC_LOC (location))
1425 location = set->location_adhoc_data_map.data[location
1426 & MAX_SOURCE_LOCATION].locus;
1428 linemap_assert (set && location >= RESERVED_LOCATION_COUNT);
1430 while (true)
1432 map = const_cast <line_map *> (linemap_lookup (set, location));
1433 if (!linemap_macro_expansion_map_p (map))
1434 break;
1436 location =
1437 linemap_macro_map_loc_to_def_point (linemap_check_macro (map),
1438 location);
1441 if (original_map)
1442 *original_map = linemap_check_ordinary (map);
1443 return location;
1446 /* If LOCATION is the source location of a token that belongs to a
1447 macro replacement-list -- at a macro expansion point -- then return
1448 the location of the topmost expansion point of the macro. We say
1449 topmost because if we are in the context of a nested macro
1450 expansion, the function returns the source location of the first
1451 macro expansion that triggered the nested expansions.
1453 Otherwise, return LOCATION. SET is the set of maps location come
1454 from. ORIGINAL_MAP is an output parm. If non NULL, the function
1455 sets *ORIGINAL_MAP to the ordinary (non-macro) map the returned
1456 location comes from.
1458 This is a subroutine of linemap_resolve_location. */
1460 static source_location
1461 linemap_macro_loc_to_exp_point (struct line_maps *set,
1462 source_location location,
1463 const line_map_ordinary **original_map)
1465 struct line_map *map;
1467 if (IS_ADHOC_LOC (location))
1468 location = set->location_adhoc_data_map.data[location
1469 & MAX_SOURCE_LOCATION].locus;
1471 linemap_assert (set && location >= RESERVED_LOCATION_COUNT);
1473 while (true)
1475 map = const_cast <line_map *> (linemap_lookup (set, location));
1476 if (!linemap_macro_expansion_map_p (map))
1477 break;
1478 location = linemap_macro_map_loc_to_exp_point (linemap_check_macro (map),
1479 location);
1482 if (original_map)
1483 *original_map = linemap_check_ordinary (map);
1484 return location;
1487 /* Resolve a virtual location into either a spelling location, an
1488 expansion point location or a token argument replacement point
1489 location. Return the map that encodes the virtual location as well
1490 as the resolved location.
1492 If LOC is *NOT* the location of a token resulting from the
1493 expansion of a macro, then the parameter LRK (which stands for
1494 Location Resolution Kind) is ignored and the resulting location
1495 just equals the one given in argument.
1497 Now if LOC *IS* the location of a token resulting from the
1498 expansion of a macro, this is what happens.
1500 * If LRK is set to LRK_MACRO_EXPANSION_POINT
1501 -------------------------------
1503 The virtual location is resolved to the first macro expansion point
1504 that led to this macro expansion.
1506 * If LRK is set to LRK_SPELLING_LOCATION
1507 -------------------------------------
1509 The virtual location is resolved to the locus where the token has
1510 been spelled in the source. This can follow through all the macro
1511 expansions that led to the token.
1513 * If LRK is set to LRK_MACRO_DEFINITION_LOCATION
1514 --------------------------------------
1516 The virtual location is resolved to the locus of the token in the
1517 context of the macro definition.
1519 If LOC is the locus of a token that is an argument of a
1520 function-like macro [replacing a parameter in the replacement list
1521 of the macro] the virtual location is resolved to the locus of the
1522 parameter that is replaced, in the context of the definition of the
1523 macro.
1525 If LOC is the locus of a token that is not an argument of a
1526 function-like macro, then the function behaves as if LRK was set to
1527 LRK_SPELLING_LOCATION.
1529 If MAP is not NULL, *MAP is set to the map encoding the
1530 returned location. Note that if the returned location wasn't originally
1531 encoded by a map, then *MAP is set to NULL. This can happen if LOC
1532 resolves to a location reserved for the client code, like
1533 UNKNOWN_LOCATION or BUILTINS_LOCATION in GCC. */
1535 source_location
1536 linemap_resolve_location (struct line_maps *set,
1537 source_location loc,
1538 enum location_resolution_kind lrk,
1539 const line_map_ordinary **map)
1541 source_location locus = loc;
1542 if (IS_ADHOC_LOC (loc))
1543 locus = set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].locus;
1545 if (locus < RESERVED_LOCATION_COUNT)
1547 /* A reserved location wasn't encoded in a map. Let's return a
1548 NULL map here, just like what linemap_ordinary_map_lookup
1549 does. */
1550 if (map)
1551 *map = NULL;
1552 return loc;
1555 switch (lrk)
1557 case LRK_MACRO_EXPANSION_POINT:
1558 loc = linemap_macro_loc_to_exp_point (set, loc, map);
1559 break;
1560 case LRK_SPELLING_LOCATION:
1561 loc = linemap_macro_loc_to_spelling_point (set, loc, map);
1562 break;
1563 case LRK_MACRO_DEFINITION_LOCATION:
1564 loc = linemap_macro_loc_to_def_point (set, loc, map);
1565 break;
1566 default:
1567 abort ();
1569 return loc;
1572 /* TRUE if LOCATION is a source code location of a token that is part of the
1573 definition of a macro, FALSE otherwise. */
1575 bool
1576 linemap_location_from_macro_definition_p (struct line_maps *set,
1577 source_location loc)
1579 if (IS_ADHOC_LOC (loc))
1580 loc = get_location_from_adhoc_loc (set, loc);
1582 if (!linemap_location_from_macro_expansion_p (set, loc))
1583 return false;
1585 while (true)
1587 const struct line_map_macro *map
1588 = linemap_check_macro (linemap_lookup (set, loc));
1590 source_location s_loc
1591 = linemap_macro_map_loc_unwind_toward_spelling (set, map, loc);
1592 if (linemap_location_from_macro_expansion_p (set, s_loc))
1593 loc = s_loc;
1594 else
1596 source_location def_loc
1597 = linemap_macro_map_loc_to_def_point (map, loc);
1598 return s_loc == def_loc;
1604 Suppose that LOC is the virtual location of a token T coming from
1605 the expansion of a macro M. This function then steps up to get the
1606 location L of the point where M got expanded. If L is a spelling
1607 location inside a macro expansion M', then this function returns
1608 the locus of the point where M' was expanded. Said otherwise, this
1609 function returns the location of T in the context that triggered
1610 the expansion of M.
1612 *LOC_MAP must be set to the map of LOC. This function then sets it
1613 to the map of the returned location. */
1615 source_location
1616 linemap_unwind_toward_expansion (struct line_maps *set,
1617 source_location loc,
1618 const struct line_map **map)
1620 source_location resolved_location;
1621 const line_map_macro *macro_map = linemap_check_macro (*map);
1622 const struct line_map *resolved_map;
1624 if (IS_ADHOC_LOC (loc))
1625 loc = set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].locus;
1627 resolved_location =
1628 linemap_macro_map_loc_unwind_toward_spelling (set, macro_map, loc);
1629 resolved_map = linemap_lookup (set, resolved_location);
1631 if (!linemap_macro_expansion_map_p (resolved_map))
1633 resolved_location = linemap_macro_map_loc_to_exp_point (macro_map, loc);
1634 resolved_map = linemap_lookup (set, resolved_location);
1637 *map = resolved_map;
1638 return resolved_location;
1641 /* If LOC is the virtual location of a token coming from the expansion
1642 of a macro M and if its spelling location is reserved (e.g, a
1643 location for a built-in token), then this function unwinds (using
1644 linemap_unwind_toward_expansion) the location until a location that
1645 is not reserved and is not in a system header is reached. In other
1646 words, this unwinds the reserved location until a location that is
1647 in real source code is reached.
1649 Otherwise, if the spelling location for LOC is not reserved or if
1650 LOC doesn't come from the expansion of a macro, the function
1651 returns LOC as is and *MAP is not touched.
1653 *MAP is set to the map of the returned location if the later is
1654 different from LOC. */
1655 source_location
1656 linemap_unwind_to_first_non_reserved_loc (struct line_maps *set,
1657 source_location loc,
1658 const struct line_map **map)
1660 source_location resolved_loc;
1661 const struct line_map *map0 = NULL;
1662 const line_map_ordinary *map1 = NULL;
1664 if (IS_ADHOC_LOC (loc))
1665 loc = set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].locus;
1667 map0 = linemap_lookup (set, loc);
1668 if (!linemap_macro_expansion_map_p (map0))
1669 return loc;
1671 resolved_loc = linemap_resolve_location (set, loc,
1672 LRK_SPELLING_LOCATION,
1673 &map1);
1675 if (resolved_loc >= RESERVED_LOCATION_COUNT
1676 && !LINEMAP_SYSP (map1))
1677 return loc;
1679 while (linemap_macro_expansion_map_p (map0)
1680 && (resolved_loc < RESERVED_LOCATION_COUNT
1681 || LINEMAP_SYSP (map1)))
1683 loc = linemap_unwind_toward_expansion (set, loc, &map0);
1684 resolved_loc = linemap_resolve_location (set, loc,
1685 LRK_SPELLING_LOCATION,
1686 &map1);
1689 if (map != NULL)
1690 *map = map0;
1691 return loc;
1694 /* Expand source code location LOC and return a user readable source
1695 code location. LOC must be a spelling (non-virtual) location. If
1696 it's a location < RESERVED_LOCATION_COUNT a zeroed expanded source
1697 location is returned. */
1699 expanded_location
1700 linemap_expand_location (struct line_maps *set,
1701 const struct line_map *map,
1702 source_location loc)
1705 expanded_location xloc;
1707 memset (&xloc, 0, sizeof (xloc));
1708 if (IS_ADHOC_LOC (loc))
1710 xloc.data
1711 = set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].data;
1712 loc = set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].locus;
1715 if (loc < RESERVED_LOCATION_COUNT)
1716 /* The location for this token wasn't generated from a line map.
1717 It was probably a location for a builtin token, chosen by some
1718 client code. Let's not try to expand the location in that
1719 case. */;
1720 else if (map == NULL)
1721 /* We shouldn't be getting a NULL map with a location that is not
1722 reserved by the client code. */
1723 abort ();
1724 else
1726 /* MAP must be an ordinary map and LOC must be non-virtual,
1727 encoded into this map, obviously; the accessors used on MAP
1728 below ensure it is ordinary. Let's just assert the
1729 non-virtualness of LOC here. */
1730 if (linemap_location_from_macro_expansion_p (set, loc))
1731 abort ();
1733 const line_map_ordinary *ord_map = linemap_check_ordinary (map);
1735 xloc.file = LINEMAP_FILE (ord_map);
1736 xloc.line = SOURCE_LINE (ord_map, loc);
1737 xloc.column = SOURCE_COLUMN (ord_map, loc);
1738 xloc.sysp = LINEMAP_SYSP (ord_map) != 0;
1741 return xloc;
1745 /* Dump line map at index IX in line table SET to STREAM. If STREAM
1746 is NULL, use stderr. IS_MACRO is true if the caller wants to
1747 dump a macro map, false otherwise. */
1749 void
1750 linemap_dump (FILE *stream, struct line_maps *set, unsigned ix, bool is_macro)
1752 const char *lc_reasons_v[LC_ENTER_MACRO + 1]
1753 = { "LC_ENTER", "LC_LEAVE", "LC_RENAME", "LC_RENAME_VERBATIM",
1754 "LC_ENTER_MACRO" };
1755 const char *reason;
1756 const line_map *map;
1758 if (stream == NULL)
1759 stream = stderr;
1761 if (!is_macro)
1762 map = LINEMAPS_ORDINARY_MAP_AT (set, ix);
1763 else
1764 map = LINEMAPS_MACRO_MAP_AT (set, ix);
1766 reason = (map->reason <= LC_ENTER_MACRO) ? lc_reasons_v[map->reason] : "???";
1768 fprintf (stream, "Map #%u [%p] - LOC: %u - REASON: %s - SYSP: %s\n",
1769 ix, (void *) map, map->start_location, reason,
1770 ((!is_macro
1771 && ORDINARY_MAP_IN_SYSTEM_HEADER_P (linemap_check_ordinary (map)))
1772 ? "yes" : "no"));
1773 if (!is_macro)
1775 const line_map_ordinary *ord_map = linemap_check_ordinary (map);
1776 unsigned includer_ix;
1777 const line_map_ordinary *includer_map;
1779 includer_ix = ORDINARY_MAP_INCLUDER_FILE_INDEX (ord_map);
1780 includer_map = includer_ix < LINEMAPS_ORDINARY_USED (set)
1781 ? LINEMAPS_ORDINARY_MAP_AT (set, includer_ix)
1782 : NULL;
1784 fprintf (stream, "File: %s:%d\n", ORDINARY_MAP_FILE_NAME (ord_map),
1785 ORDINARY_MAP_STARTING_LINE_NUMBER (ord_map));
1786 fprintf (stream, "Included from: [%d] %s\n", includer_ix,
1787 includer_map ? ORDINARY_MAP_FILE_NAME (includer_map) : "None");
1789 else
1791 const line_map_macro *macro_map = linemap_check_macro (map);
1792 fprintf (stream, "Macro: %s (%u tokens)\n",
1793 linemap_map_get_macro_name (macro_map),
1794 MACRO_MAP_NUM_MACRO_TOKENS (macro_map));
1797 fprintf (stream, "\n");
1801 /* Dump debugging information about source location LOC into the file
1802 stream STREAM. SET is the line map set LOC comes from. */
1804 void
1805 linemap_dump_location (struct line_maps *set,
1806 source_location loc,
1807 FILE *stream)
1809 const line_map_ordinary *map;
1810 source_location location;
1811 const char *path = "", *from = "";
1812 int l = -1, c = -1, s = -1, e = -1;
1814 if (IS_ADHOC_LOC (loc))
1815 loc = set->location_adhoc_data_map.data[loc & MAX_SOURCE_LOCATION].locus;
1817 if (loc == 0)
1818 return;
1820 location =
1821 linemap_resolve_location (set, loc, LRK_MACRO_DEFINITION_LOCATION, &map);
1823 if (map == NULL)
1824 /* Only reserved locations can be tolerated in this case. */
1825 linemap_assert (location < RESERVED_LOCATION_COUNT);
1826 else
1828 path = LINEMAP_FILE (map);
1829 l = SOURCE_LINE (map, location);
1830 c = SOURCE_COLUMN (map, location);
1831 s = LINEMAP_SYSP (map) != 0;
1832 e = location != loc;
1833 if (e)
1834 from = "N/A";
1835 else
1836 from = (INCLUDED_FROM (set, map))
1837 ? LINEMAP_FILE (INCLUDED_FROM (set, map))
1838 : "<NULL>";
1841 /* P: path, L: line, C: column, S: in-system-header, M: map address,
1842 E: macro expansion?, LOC: original location, R: resolved location */
1843 fprintf (stream, "{P:%s;F:%s;L:%d;C:%d;S:%d;M:%p;E:%d,LOC:%d,R:%d}",
1844 path, from, l, c, s, (void*)map, e, loc, location);
1847 /* Return the highest location emitted for a given file for which
1848 there is a line map in SET. FILE_NAME is the file name to
1849 consider. If the function returns TRUE, *LOC is set to the highest
1850 location emitted for that file. */
1852 bool
1853 linemap_get_file_highest_location (struct line_maps *set,
1854 const char *file_name,
1855 source_location *loc)
1857 /* If the set is empty or no ordinary map has been created then
1858 there is no file to look for ... */
1859 if (set == NULL || set->info_ordinary.used == 0)
1860 return false;
1862 /* Now look for the last ordinary map created for FILE_NAME. */
1863 int i;
1864 for (i = set->info_ordinary.used - 1; i >= 0; --i)
1866 const char *fname = set->info_ordinary.maps[i].to_file;
1867 if (fname && !filename_cmp (fname, file_name))
1868 break;
1871 if (i < 0)
1872 return false;
1874 /* The highest location for a given map is either the starting
1875 location of the next map minus one, or -- if the map is the
1876 latest one -- the highest location of the set. */
1877 source_location result;
1878 if (i == (int) set->info_ordinary.used - 1)
1879 result = set->highest_location;
1880 else
1881 result = set->info_ordinary.maps[i + 1].start_location - 1;
1883 *loc = result;
1884 return true;
1887 /* Compute and return statistics about the memory consumption of some
1888 parts of the line table SET. */
1890 void
1891 linemap_get_statistics (struct line_maps *set,
1892 struct linemap_stats *s)
1894 long ordinary_maps_allocated_size, ordinary_maps_used_size,
1895 macro_maps_allocated_size, macro_maps_used_size,
1896 macro_maps_locations_size = 0, duplicated_macro_maps_locations_size = 0;
1898 const line_map_macro *cur_map;
1900 ordinary_maps_allocated_size =
1901 LINEMAPS_ORDINARY_ALLOCATED (set) * sizeof (struct line_map_ordinary);
1903 ordinary_maps_used_size =
1904 LINEMAPS_ORDINARY_USED (set) * sizeof (struct line_map_ordinary);
1906 macro_maps_allocated_size =
1907 LINEMAPS_MACRO_ALLOCATED (set) * sizeof (struct line_map_macro);
1909 for (cur_map = LINEMAPS_MACRO_MAPS (set);
1910 cur_map && cur_map <= LINEMAPS_LAST_MACRO_MAP (set);
1911 ++cur_map)
1913 unsigned i;
1915 linemap_assert (linemap_macro_expansion_map_p (cur_map));
1917 macro_maps_locations_size +=
1918 2 * MACRO_MAP_NUM_MACRO_TOKENS (cur_map) * sizeof (source_location);
1920 for (i = 0; i < 2 * MACRO_MAP_NUM_MACRO_TOKENS (cur_map); i += 2)
1922 if (MACRO_MAP_LOCATIONS (cur_map)[i] ==
1923 MACRO_MAP_LOCATIONS (cur_map)[i + 1])
1924 duplicated_macro_maps_locations_size +=
1925 sizeof (source_location);
1929 macro_maps_used_size =
1930 LINEMAPS_MACRO_USED (set) * sizeof (struct line_map_macro);
1932 s->num_ordinary_maps_allocated = LINEMAPS_ORDINARY_ALLOCATED (set);
1933 s->num_ordinary_maps_used = LINEMAPS_ORDINARY_USED (set);
1934 s->ordinary_maps_allocated_size = ordinary_maps_allocated_size;
1935 s->ordinary_maps_used_size = ordinary_maps_used_size;
1936 s->num_expanded_macros = num_expanded_macros_counter;
1937 s->num_macro_tokens = num_macro_tokens_counter;
1938 s->num_macro_maps_used = LINEMAPS_MACRO_USED (set);
1939 s->macro_maps_allocated_size = macro_maps_allocated_size;
1940 s->macro_maps_locations_size = macro_maps_locations_size;
1941 s->macro_maps_used_size = macro_maps_used_size;
1942 s->duplicated_macro_maps_locations_size =
1943 duplicated_macro_maps_locations_size;
1944 s->adhoc_table_size = (set->location_adhoc_data_map.allocated
1945 * sizeof (struct location_adhoc_data));
1946 s->adhoc_table_entries_used = set->location_adhoc_data_map.curr_loc;
1950 /* Dump line table SET to STREAM. If STREAM is NULL, stderr is used.
1951 NUM_ORDINARY specifies how many ordinary maps to dump. NUM_MACRO
1952 specifies how many macro maps to dump. */
1954 void
1955 line_table_dump (FILE *stream, struct line_maps *set, unsigned int num_ordinary,
1956 unsigned int num_macro)
1958 unsigned int i;
1960 if (set == NULL)
1961 return;
1963 if (stream == NULL)
1964 stream = stderr;
1966 fprintf (stream, "# of ordinary maps: %d\n", LINEMAPS_ORDINARY_USED (set));
1967 fprintf (stream, "# of macro maps: %d\n", LINEMAPS_MACRO_USED (set));
1968 fprintf (stream, "Include stack depth: %d\n", set->depth);
1969 fprintf (stream, "Highest location: %u\n", set->highest_location);
1971 if (num_ordinary)
1973 fprintf (stream, "\nOrdinary line maps\n");
1974 for (i = 0; i < num_ordinary && i < LINEMAPS_ORDINARY_USED (set); i++)
1975 linemap_dump (stream, set, i, false);
1976 fprintf (stream, "\n");
1979 if (num_macro)
1981 fprintf (stream, "\nMacro line maps\n");
1982 for (i = 0; i < num_macro && i < LINEMAPS_MACRO_USED (set); i++)
1983 linemap_dump (stream, set, i, true);
1984 fprintf (stream, "\n");
1988 /* struct source_range. */
1990 /* Is there any part of this range on the given line? */
1992 bool
1993 source_range::intersects_line_p (const char *file, int line) const
1995 expanded_location exploc_start
1996 = linemap_client_expand_location_to_spelling_point (m_start);
1997 if (file != exploc_start.file)
1998 return false;
1999 if (line < exploc_start.line)
2000 return false;
2001 expanded_location exploc_finish
2002 = linemap_client_expand_location_to_spelling_point (m_finish);
2003 if (file != exploc_finish.file)
2004 return false;
2005 if (line > exploc_finish.line)
2006 return false;
2007 return true;
2010 /* class rich_location. */
2012 /* Construct a rich_location with location LOC as its initial range. */
2014 rich_location::rich_location (line_maps *set, source_location loc) :
2015 m_line_table (set),
2016 m_ranges (),
2017 m_column_override (0),
2018 m_have_expanded_location (false),
2019 m_fixit_hints (),
2020 m_seen_impossible_fixit (false)
2022 add_range (loc, true);
2025 /* The destructor for class rich_location. */
2027 rich_location::~rich_location ()
2029 for (unsigned int i = 0; i < m_fixit_hints.count (); i++)
2030 delete get_fixit_hint (i);
2033 /* Get location IDX within this rich_location. */
2035 source_location
2036 rich_location::get_loc (unsigned int idx) const
2038 const location_range *locrange = get_range (idx);
2039 return locrange->m_loc;
2042 /* Get range IDX within this rich_location. */
2044 const location_range *
2045 rich_location::get_range (unsigned int idx) const
2047 return &m_ranges[idx];
2050 /* Mutable access to range IDX within this rich_location. */
2052 location_range *
2053 rich_location::get_range (unsigned int idx)
2055 return &m_ranges[idx];
2058 /* Expand location IDX within this rich_location. */
2059 /* Get an expanded_location for this rich_location's primary
2060 location. */
2062 expanded_location
2063 rich_location::get_expanded_location (unsigned int idx)
2065 if (idx == 0)
2067 /* Cache the expansion of the primary location. */
2068 if (!m_have_expanded_location)
2070 m_expanded_location
2071 = linemap_client_expand_location_to_spelling_point (get_loc (0));
2072 if (m_column_override)
2073 m_expanded_location.column = m_column_override;
2074 m_have_expanded_location = true;
2077 return m_expanded_location;
2079 else
2080 return linemap_client_expand_location_to_spelling_point (get_loc (idx));
2083 /* Set the column of the primary location, with 0 meaning
2084 "don't override it". */
2086 void
2087 rich_location::override_column (int column)
2089 m_column_override = column;
2090 m_have_expanded_location = false;
2093 /* Add the given range. */
2095 void
2096 rich_location::add_range (source_location loc, bool show_caret_p)
2098 location_range range;
2099 range.m_loc = loc;
2100 range.m_show_caret_p = show_caret_p;
2101 m_ranges.push (range);
2104 /* Add or overwrite the location given by IDX, setting its location to LOC,
2105 and setting its "should my caret be printed" flag to SHOW_CARET_P.
2107 It must either overwrite an existing location, or add one *exactly* on
2108 the end of the array.
2110 This is primarily for use by gcc when implementing diagnostic format
2111 decoders e.g.
2112 - the "+" in the C/C++ frontends, for handling format codes like "%q+D"
2113 (which writes the source location of a tree back into location 0 of
2114 the rich_location), and
2115 - the "%C" and "%L" format codes in the Fortran frontend. */
2117 void
2118 rich_location::set_range (line_maps * /*set*/, unsigned int idx,
2119 source_location loc, bool show_caret_p)
2121 /* We can either overwrite an existing range, or add one exactly
2122 on the end of the array. */
2123 linemap_assert (idx <= m_ranges.count ());
2125 if (idx == m_ranges.count ())
2126 add_range (loc, show_caret_p);
2127 else
2129 location_range *locrange = get_range (idx);
2130 locrange->m_loc = loc;
2131 locrange->m_show_caret_p = show_caret_p;
2134 if (idx == 0)
2135 /* Mark any cached value here as dirty. */
2136 m_have_expanded_location = false;
2139 /* Methods for adding insertion fix-it hints. */
2141 /* Add a fixit-hint, suggesting insertion of NEW_CONTENT
2142 immediately before the primary range's start location. */
2144 void
2145 rich_location::add_fixit_insert_before (const char *new_content)
2147 add_fixit_insert_before (get_loc (), new_content);
2150 /* Add a fixit-hint, suggesting insertion of NEW_CONTENT
2151 immediately before the start of WHERE. */
2153 void
2154 rich_location::add_fixit_insert_before (source_location where,
2155 const char *new_content)
2157 source_location start = get_range_from_loc (m_line_table, where).m_start;
2159 if (reject_impossible_fixit (start))
2160 return;
2161 /* We do not yet support newlines within fix-it hints. */
2162 if (strchr (new_content, '\n'))
2164 stop_supporting_fixits ();
2165 return;
2167 add_fixit (new fixit_insert (start, new_content));
2170 /* Add a fixit-hint, suggesting insertion of NEW_CONTENT
2171 immediately after the primary range's end-point. */
2173 void
2174 rich_location::add_fixit_insert_after (const char *new_content)
2176 add_fixit_insert_after (get_loc (), new_content);
2179 /* Add a fixit-hint, suggesting insertion of NEW_CONTENT
2180 immediately after the end-point of WHERE. */
2182 void
2183 rich_location::add_fixit_insert_after (source_location where,
2184 const char *new_content)
2186 source_location finish = get_range_from_loc (m_line_table, where).m_finish;
2188 if (reject_impossible_fixit (finish))
2189 return;
2191 source_location next_loc
2192 = linemap_position_for_loc_and_offset (m_line_table, finish, 1);
2194 /* linemap_position_for_loc_and_offset can fail, if so, it returns
2195 its input value. */
2196 if (next_loc == finish)
2198 stop_supporting_fixits ();
2199 return;
2202 add_fixit (new fixit_insert (next_loc, new_content));
2205 /* Methods for adding removal fix-it hints. */
2207 /* Add a fixit-hint, suggesting removal of the content covered
2208 by range 0. */
2210 void
2211 rich_location::add_fixit_remove ()
2213 add_fixit_remove (get_loc ());
2216 /* Add a fixit-hint, suggesting removal of the content between
2217 the start and finish of WHERE. */
2219 void
2220 rich_location::add_fixit_remove (source_location where)
2222 source_range range = get_range_from_loc (m_line_table, where);
2223 add_fixit_remove (range);
2226 /* Add a fixit-hint, suggesting removal of the content at
2227 SRC_RANGE. */
2229 void
2230 rich_location::add_fixit_remove (source_range src_range)
2232 add_fixit_replace (src_range, "");
2235 /* Return true iff A is in the column directly before B, on the
2236 same line of the same source file. */
2238 static bool
2239 column_before_p (line_maps *set, source_location a, source_location b)
2241 if (IS_ADHOC_LOC (a))
2242 a = get_location_from_adhoc_loc (set, a);
2243 if (IS_ADHOC_LOC (b))
2244 b = get_location_from_adhoc_loc (set, b);
2246 /* They must both be in ordinary maps. */
2247 const struct line_map *linemap_a = linemap_lookup (set, a);
2248 if (linemap_macro_expansion_map_p (linemap_a))
2249 return false;
2250 const struct line_map *linemap_b = linemap_lookup (set, b);
2251 if (linemap_macro_expansion_map_p (linemap_b))
2252 return false;
2254 /* To be on the same line, they must be in the same ordinary map. */
2255 if (linemap_a != linemap_b)
2256 return false;
2258 linenum_type line_a
2259 = SOURCE_LINE (linemap_check_ordinary (linemap_a), a);
2260 linenum_type line_b
2261 = SOURCE_LINE (linemap_check_ordinary (linemap_b), b);
2262 if (line_a != line_b)
2263 return false;
2265 linenum_type column_a
2266 = SOURCE_COLUMN (linemap_check_ordinary (linemap_a), a);
2267 linenum_type column_b
2268 = SOURCE_COLUMN (linemap_check_ordinary (linemap_b), b);
2270 return column_b == column_a + 1;
2273 /* Add a fixit-hint, suggesting replacement of the content covered
2274 by range 0 with NEW_CONTENT. */
2276 void
2277 rich_location::add_fixit_replace (const char *new_content)
2279 add_fixit_replace (get_loc (), new_content);
2282 /* Methods for adding "replace" fix-it hints. */
2284 /* Add a fixit-hint, suggesting replacement of the content between
2285 the start and finish of WHERE with NEW_CONTENT. */
2287 void
2288 rich_location::add_fixit_replace (source_location where,
2289 const char *new_content)
2291 source_range range = get_range_from_loc (m_line_table, where);
2292 add_fixit_replace (range, new_content);
2295 /* Add a fixit-hint, suggesting replacement of the content at
2296 SRC_RANGE with NEW_CONTENT. */
2298 void
2299 rich_location::add_fixit_replace (source_range src_range,
2300 const char *new_content)
2302 src_range.m_start = get_pure_location (m_line_table, src_range.m_start);
2303 src_range.m_finish = get_pure_location (m_line_table, src_range.m_finish);
2305 if (reject_impossible_fixit (src_range.m_start))
2306 return;
2307 if (reject_impossible_fixit (src_range.m_finish))
2308 return;
2310 /* We do not yet support newlines within fix-it hints. */
2311 if (strchr (new_content, '\n'))
2313 stop_supporting_fixits ();
2314 return;
2317 /* Consolidate neighboring fixits. */
2318 fixit_hint *prev = get_last_fixit_hint ();
2319 if (prev)
2320 if (prev->maybe_append_replace (m_line_table, src_range, new_content))
2321 return;
2323 add_fixit (new fixit_replace (src_range, new_content));
2326 /* Get the last fix-it hint within this rich_location, or NULL if none. */
2328 fixit_hint *
2329 rich_location::get_last_fixit_hint () const
2331 if (m_fixit_hints.count () > 0)
2332 return get_fixit_hint (m_fixit_hints.count () - 1);
2333 else
2334 return NULL;
2337 /* If WHERE is an "awkward" location, then mark this rich_location as not
2338 supporting fixits, purging any thay were already added, and return true.
2340 Otherwise (the common case), return false. */
2342 bool
2343 rich_location::reject_impossible_fixit (source_location where)
2345 /* Fix-its within a rich_location should either all be suggested, or
2346 none of them should be suggested.
2347 Once we've rejected a fixit, we reject any more, even those
2348 with reasonable locations. */
2349 if (m_seen_impossible_fixit)
2350 return true;
2352 if (where <= LINE_MAP_MAX_LOCATION_WITH_COLS)
2353 /* WHERE is a reasonable location for a fix-it; don't reject it. */
2354 return false;
2356 /* Otherwise we have an attempt to add a fix-it with an "awkward"
2357 location: either one that we can't obtain column information
2358 for (within an ordinary map), or one within a macro expansion. */
2359 stop_supporting_fixits ();
2360 return true;
2363 /* Mark this rich_location as not supporting fixits, purging any that were
2364 already added. */
2366 void
2367 rich_location::stop_supporting_fixits ()
2369 m_seen_impossible_fixit = true;
2371 /* Purge the rich_location of any fix-its that were already added. */
2372 for (unsigned int i = 0; i < m_fixit_hints.count (); i++)
2373 delete get_fixit_hint (i);
2374 m_fixit_hints.truncate (0);
2377 /* Add HINT to the fix-it hints in this rich_location. */
2379 void
2380 rich_location::add_fixit (fixit_hint *hint)
2382 m_fixit_hints.push (hint);
2385 /* class fixit_insert. */
2387 fixit_insert::fixit_insert (source_location where,
2388 const char *new_content)
2389 : m_where (where),
2390 m_bytes (xstrdup (new_content)),
2391 m_len (strlen (new_content))
2395 fixit_insert::~fixit_insert ()
2397 free (m_bytes);
2400 /* Implementation of fixit_hint::affects_line_p for fixit_insert. */
2402 bool
2403 fixit_insert::affects_line_p (const char *file, int line) const
2405 expanded_location exploc
2406 = linemap_client_expand_location_to_spelling_point (m_where);
2407 if (file == exploc.file)
2408 if (line == exploc.line)
2409 return true;
2410 return false;
2413 /* Implementation of maybe_append_replace for fixit_insert. Reject
2414 the attempt to consolidate fix-its. */
2416 bool
2417 fixit_insert::maybe_append_replace (line_maps *, source_range, const char *)
2419 return false;
2422 /* class fixit_replace. */
2424 fixit_replace::fixit_replace (source_range src_range,
2425 const char *new_content)
2426 : m_src_range (src_range),
2427 m_bytes (xstrdup (new_content)),
2428 m_len (strlen (new_content))
2432 fixit_replace::~fixit_replace ()
2434 free (m_bytes);
2437 /* Implementation of fixit_hint::affects_line_p for fixit_replace. */
2439 bool
2440 fixit_replace::affects_line_p (const char *file, int line) const
2442 return m_src_range.intersects_line_p (file, line);
2445 /* Implementation of maybe_append_replace for fixit_replace. If
2446 possible, merge the new replacement into this one and return true.
2447 Otherwise return false. */
2449 bool
2450 fixit_replace::maybe_append_replace (line_maps *set,
2451 source_range src_range,
2452 const char *new_content)
2454 /* Does SRC_RANGE start immediately after this one finishes? */
2455 if (!column_before_p (set, m_src_range.m_finish, src_range.m_start))
2456 return false;
2458 /* We have neighboring replacements; merge them. */
2459 m_src_range.m_finish = src_range.m_finish;
2460 size_t extra_len = strlen (new_content);
2461 m_bytes = (char *)xrealloc (m_bytes, m_len + extra_len + 1);
2462 memcpy (m_bytes + m_len, new_content, extra_len);
2463 m_len += extra_len;
2464 m_bytes[m_len] = '\0';
2465 return true;