1 /* Map logical line numbers to (source file, line number) pairs.
2 Copyright (C) 2001, 2003, 2004, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 3, or (at your option) any
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING3. If not see
17 <http://www.gnu.org/licenses/>.
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! */
29 static void trace_include (const struct line_maps
*, const struct line_map
*);
30 static const struct line_map
* linemap_ordinary_map_lookup (struct line_maps
*,
32 static const struct line_map
* linemap_macro_map_lookup (struct line_maps
*,
34 static source_location linemap_macro_map_loc_to_def_point
35 (const struct line_map
*, source_location
);
36 static source_location linemap_macro_map_loc_unwind_toward_spelling
37 (const struct line_map
*, source_location
);
38 static source_location linemap_macro_map_loc_to_exp_point
39 (const struct line_map
*, source_location
);
40 static source_location linemap_macro_loc_to_spelling_point
41 (struct line_maps
*, source_location
, const struct line_map
**);
42 static source_location
linemap_macro_loc_to_def_point (struct line_maps
*,
44 const struct line_map
**);
45 static source_location
linemap_macro_loc_to_exp_point (struct line_maps
*,
47 const struct line_map
**);
49 /* Counters defined in macro.c. */
50 extern unsigned num_expanded_macros_counter
;
51 extern unsigned num_macro_tokens_counter
;
53 /* Initialize a line map set. */
56 linemap_init (struct line_maps
*set
)
58 memset (set
, 0, sizeof (struct line_maps
));
59 set
->highest_location
= RESERVED_LOCATION_COUNT
- 1;
60 set
->highest_line
= RESERVED_LOCATION_COUNT
- 1;
63 /* Check for and warn about line_maps entered but not exited. */
66 linemap_check_files_exited (struct line_maps
*set
)
69 /* Depending upon whether we are handling preprocessed input or
70 not, this can be a user error or an ICE. */
71 for (map
= LINEMAPS_LAST_ORDINARY_MAP (set
);
73 map
= INCLUDED_FROM (set
, map
))
74 fprintf (stderr
, "line-map.c: file \"%s\" entered but not left\n",
75 ORDINARY_MAP_FILE_NAME (map
));
78 /* 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. */
83 static struct line_map
*
84 new_linemap (struct line_maps
*set
,
85 enum lc_reason reason
)
87 /* 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
;
92 if (LINEMAPS_USED (set
, macro_map_p
) == LINEMAPS_ALLOCATED (set
, macro_map_p
))
94 /* We ran out of allocated line maps. Let's allocate more. */
97 line_map_realloc reallocator
98 = set
->reallocator
? set
->reallocator
: xrealloc
;
99 line_map_round_alloc_size_func round_alloc_size
=
100 set
->round_alloc_size
;
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
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. */
111 (2 * LINEMAPS_ALLOCATED (set
, macro_map_p
) + 256)
112 * sizeof (struct line_map
);
114 /* Get the actual size of memory that is going to be allocated
116 alloc_size
= round_alloc_size (alloc_size
);
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
122 LINEMAPS_ALLOCATED (set
, macro_map_p
) =
123 alloc_size
/ (sizeof (struct line_map
));
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
)));
133 &LINEMAPS_MAPS (set
, macro_map_p
)[LINEMAPS_USED (set
, macro_map_p
)];
135 ((LINEMAPS_ALLOCATED (set
, macro_map_p
)
136 - LINEMAPS_USED (set
, macro_map_p
))
137 * sizeof (struct line_map
)));
141 &LINEMAPS_MAPS (set
, macro_map_p
)[LINEMAPS_USED (set
, macro_map_p
)];
143 LINEMAPS_USED (set
, macro_map_p
)++;
145 result
->reason
= reason
;
149 /* Add a mapping of logical source line to physical source file and
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.
158 FROM_LINE should be monotonic increasing across calls to this
159 function. A call to this function can relocate the previous set of
160 maps, so any stored line_map pointers should not be used. */
162 const struct line_map
*
163 linemap_add (struct line_maps
*set
, enum lc_reason reason
,
164 unsigned int sysp
, const char *to_file
, linenum_type to_line
)
166 struct line_map
*map
;
167 source_location start_location
= set
->highest_location
+ 1;
169 linemap_assert (!(LINEMAPS_ORDINARY_USED (set
)
171 < MAP_START_LOCATION (LINEMAPS_LAST_ORDINARY_MAP (set
)))));
173 /* When we enter the file for the first time reason cannot be
175 linemap_assert (!(set
->depth
== 0 && reason
== LC_RENAME
));
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
))
186 map
= new_linemap (set
, reason
);
188 if (to_file
&& *to_file
== '\0' && reason
!= LC_RENAME_VERBATIM
)
191 if (reason
== LC_RENAME_VERBATIM
)
194 if (reason
== LC_LEAVE
)
196 /* 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. */
200 struct line_map
*from
;
203 if (MAIN_FILE_P (map
- 1))
205 /* 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
217 /* (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. */
220 from
= INCLUDED_FROM (set
, map
- 1);
221 error
= to_file
&& filename_cmp (ORDINARY_MAP_FILE_NAME (from
),
225 /* Depending upon whether we are handling preprocessed input or
226 not, this can be a user error or an ICE. */
228 fprintf (stderr
, "line-map.c: file \"%s\" left but not entered\n",
231 /* A TO_FILE of NULL is special - we use the natural values. */
232 if (error
|| to_file
== NULL
)
234 to_file
= ORDINARY_MAP_FILE_NAME (from
);
235 to_line
= SOURCE_LINE (from
, from
[1].start_location
);
236 sysp
= ORDINARY_MAP_IN_SYSTEM_HEADER_P (from
);
240 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;
247 set
->highest_location
= start_location
;
248 set
->highest_line
= start_location
;
249 set
->max_column_hint
= 0;
251 if (reason
== LC_ENTER
)
253 ORDINARY_MAP_INCLUDER_FILE_INDEX (map
) =
254 set
->depth
== 0 ? -1 : (int) (LINEMAPS_ORDINARY_USED (set
) - 2);
256 if (set
->trace_includes
)
257 trace_include (set
, map
);
259 else if (reason
== LC_RENAME
)
260 ORDINARY_MAP_INCLUDER_FILE_INDEX (map
) =
261 ORDINARY_MAP_INCLUDER_FILE_INDEX (&map
[-1]);
262 else if (reason
== LC_LEAVE
)
265 ORDINARY_MAP_INCLUDER_FILE_INDEX (map
) =
266 ORDINARY_MAP_INCLUDER_FILE_INDEX (INCLUDED_FROM (set
, map
- 1));
272 /* Returns TRUE if the line table set tracks token locations accross
273 macro expansion, FALSE otherwise. */
276 linemap_tracks_macro_expansion_locs_p (struct line_maps
*set
)
278 return LINEMAPS_MACRO_MAPS (set
) != NULL
;
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.
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.
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. */
304 const struct line_map
*
305 linemap_enter_macro (struct line_maps
*set
, struct cpp_hashnode
*macro_node
,
306 source_location expansion
, unsigned int num_tokens
)
308 struct line_map
*map
;
309 source_location start_location
;
310 line_map_realloc reallocator
311 = set
->reallocator
? set
->reallocator
: xrealloc
;
313 start_location
= LINEMAPS_MACRO_LOWEST_LOCATION (set
) - num_tokens
;
315 if (start_location
<= set
->highest_line
316 || start_location
> LINEMAPS_MACRO_LOWEST_LOCATION (set
))
317 /* We ran out of macro map space. */
320 map
= new_linemap (set
, LC_ENTER_MACRO
);
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
,
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
));
333 LINEMAPS_MACRO_CACHE (set
) = LINEMAPS_MACRO_USED (set
) - 1;
334 set
->max_column_hint
= 0;
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
344 A call to this function must come after a call to
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
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).
358 MACRO_DEFINITION_LOC is the location in the macro definition,
359 either of the token itself or of a macro parameter that it
363 linemap_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
)
368 source_location result
;
370 linemap_assert (linemap_macro_expansion_map_p (map
));
371 linemap_assert (token_no
< MACRO_MAP_NUM_MACRO_TOKENS (map
));
373 MACRO_MAP_LOCATIONS (map
)[2 * token_no
] = orig_loc
;
374 MACRO_MAP_LOCATIONS (map
)[2 * token_no
+ 1] = orig_parm_replacement_loc
;
376 result
= MAP_START_LOCATION (map
) + token_no
;
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). */
387 linemap_line_start (struct line_maps
*set
, linenum_type to_line
,
388 unsigned int max_column_hint
)
390 struct line_map
*map
= LINEMAPS_LAST_ORDINARY_MAP (set
);
391 source_location highest
= set
->highest_location
;
393 linenum_type last_line
=
394 SOURCE_LINE (map
, set
->highest_line
);
395 int line_delta
= to_line
- last_line
;
396 bool add_map
= false;
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))
408 max_column_hint
= set
->max_column_hint
;
412 if (max_column_hint
> 100000 || highest
> 0xC0000000)
414 /* If the column number is ridiculous or we've allocated a huge
415 number of source_locations, give up on column numbers. */
417 if (highest
>0xF0000000)
424 while (max_column_hint
>= (1U << column_bits
))
426 max_column_hint
= 1U << column_bits
;
428 /* 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. */
431 || last_line
!= ORDINARY_MAP_STARTING_LINE_NUMBER (map
)
432 || SOURCE_COLUMN (map
, highest
) >= (1U << column_bits
))
433 map
= (struct line_map
*) linemap_add (set
, LC_RENAME
,
434 ORDINARY_MAP_IN_SYSTEM_HEADER_P
436 ORDINARY_MAP_FILE_NAME (map
),
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
))
444 r
= highest
- SOURCE_COLUMN (map
, highest
)
445 + (line_delta
<< ORDINARY_MAP_NUMBER_OF_COLUMN_BITS (map
));
447 /* Locations of ordinary tokens are always lower than locations of
449 if (r
>= LINEMAPS_MACRO_LOWEST_LOCATION (set
))
452 set
->highest_line
= r
;
453 if (r
> set
->highest_location
)
454 set
->highest_location
= r
;
455 set
->max_column_hint
= max_column_hint
;
459 /* 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
465 linemap_position_for_column (struct line_maps
*set
, unsigned int to_column
)
467 source_location r
= set
->highest_line
;
470 (!linemap_macro_expansion_map_p (LINEMAPS_LAST_ORDINARY_MAP (set
)));
472 if (to_column
>= set
->max_column_hint
)
474 if (r
>= 0xC000000 || to_column
> 100000)
476 /* Running low on source_locations - disable column numbers. */
481 struct line_map
*map
= LINEMAPS_LAST_ORDINARY_MAP (set
);
482 r
= linemap_line_start (set
, SOURCE_LINE (map
, r
), to_column
+ 50);
486 if (r
>= set
->highest_location
)
487 set
->highest_location
= r
;
491 /* Encode and return a source location from a given line and
495 linemap_position_for_line_and_column (struct line_map
*map
,
499 linemap_assert (ORDINARY_MAP_STARTING_LINE_NUMBER (map
) <= line
);
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)));
507 /* Given a virtual source location yielded by a map (either an
508 ordinary or a macro map), returns that map. */
510 const struct line_map
*
511 linemap_lookup (struct line_maps
*set
, source_location line
)
513 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
);
518 /* 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
523 static const struct line_map
*
524 linemap_ordinary_map_lookup (struct line_maps
*set
, source_location line
)
526 unsigned int md
, mn
, mx
;
527 const struct line_map
*cached
, *result
;
529 if (set
== NULL
|| line
< RESERVED_LOCATION_COUNT
)
532 mn
= LINEMAPS_ORDINARY_CACHE (set
);
533 mx
= LINEMAPS_ORDINARY_USED (set
);
535 cached
= LINEMAPS_ORDINARY_MAP_AT (set
, mn
);
536 /* We should get a segfault if no line_maps have been added yet. */
537 if (line
>= MAP_START_LOCATION (cached
))
539 if (mn
+ 1 == mx
|| line
< MAP_START_LOCATION (&cached
[1]))
551 if (MAP_START_LOCATION (LINEMAPS_ORDINARY_MAP_AT (set
, md
)) > line
)
557 LINEMAPS_ORDINARY_CACHE (set
) = mn
;
558 result
= LINEMAPS_ORDINARY_MAP_AT (set
, mn
);
559 linemap_assert (line
>= MAP_START_LOCATION (result
));
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
568 static const struct line_map
*
569 linemap_macro_map_lookup (struct line_maps
*set
, source_location line
)
571 unsigned int md
, mn
, mx
;
572 const struct line_map
*cached
, *result
;
574 linemap_assert (line
>= LINEMAPS_MACRO_LOWEST_LOCATION (set
));
579 mn
= LINEMAPS_MACRO_CACHE (set
);
580 mx
= LINEMAPS_MACRO_USED (set
);
581 cached
= LINEMAPS_MACRO_MAP_AT (set
, mn
);
583 if (line
>= MAP_START_LOCATION (cached
))
585 if (mn
== 0 || line
< MAP_START_LOCATION (&cached
[-1]))
594 if (MAP_START_LOCATION (LINEMAPS_MACRO_MAP_AT (set
, md
)) > line
)
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
);
607 /* Return TRUE if MAP encodes locations coming from a macro
608 replacement-list at macro expansion point. */
611 linemap_macro_expansion_map_p (const struct line_map
*map
)
615 return (map
->reason
== LC_ENTER_MACRO
);
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.
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. */
624 static source_location
625 linemap_macro_map_loc_to_exp_point (const struct line_map
*map
,
626 source_location location ATTRIBUTE_UNUSED
)
628 linemap_assert (linemap_macro_expansion_map_p (map
)
629 && location
>= MAP_START_LOCATION (map
));
631 /* Make sure LOCATION is correct. */
632 linemap_assert ((location
- MAP_START_LOCATION (map
))
633 < MACRO_MAP_NUM_MACRO_TOKENS (map
));
635 return MACRO_MAP_EXPANSION_POINT_LOCATION (map
);
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. */
647 linemap_macro_map_loc_to_def_point (const struct line_map
*map
,
648 source_location location
)
652 linemap_assert (linemap_macro_expansion_map_p (map
)
653 && location
>= MAP_START_LOCATION (map
));
654 linemap_assert (location
>= RESERVED_LOCATION_COUNT
);
656 token_no
= location
- MAP_START_LOCATION (map
);
657 linemap_assert (token_no
< MACRO_MAP_NUM_MACRO_TOKENS (map
));
659 location
= MACRO_MAP_LOCATIONS (map
)[2 * token_no
+ 1];
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.
668 In other words, this returns the xI location presented in the
669 comments of line_map_macro above. */
671 linemap_macro_map_loc_unwind_toward_spelling (const struct line_map
* map
,
672 source_location location
)
676 linemap_assert (linemap_macro_expansion_map_p (map
)
677 && location
>= MAP_START_LOCATION (map
));
678 linemap_assert (location
>= RESERVED_LOCATION_COUNT
);
680 token_no
= location
- MAP_START_LOCATION (map
);
681 linemap_assert (token_no
< MACRO_MAP_NUM_MACRO_TOKENS (map
));
683 location
= MACRO_MAP_LOCATIONS (map
)[2 * token_no
];
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. */
695 linemap_get_expansion_line (struct line_maps
*set
,
696 source_location location
)
698 const struct line_map
*map
= NULL
;
700 if (location
< RESERVED_LOCATION_COUNT
)
704 linemap_macro_loc_to_exp_point (set
, location
, &map
);
706 return SOURCE_LINE (map
, location
);
709 /* Return the path of the file corresponding to source code location
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.
716 SET is the line map set LOCATION comes from. */
719 linemap_get_expansion_filename (struct line_maps
*set
,
720 source_location location
)
722 const struct line_map
*map
= NULL
;
724 if (location
< RESERVED_LOCATION_COUNT
)
728 linemap_macro_loc_to_exp_point (set
, location
, &map
);
730 return LINEMAP_FILE (map
);
733 /* Return the name of the macro associated to MACRO_MAP. */
736 linemap_map_get_macro_name (const struct line_map
* macro_map
)
738 linemap_assert (macro_map
&& linemap_macro_expansion_map_p (macro_map
));
739 return (const char*) NODE_NAME (MACRO_MAP_MACRO (macro_map
));
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++.
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. */
753 linemap_location_in_system_header_p (struct line_maps
*set
,
754 source_location location
)
756 const struct line_map
*map
= NULL
;
759 linemap_resolve_location (set
, location
, LRK_SPELLING_LOCATION
, &map
);
761 if (location
< RESERVED_LOCATION_COUNT
)
764 return LINEMAP_SYSP (map
);
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
772 linemap_location_from_macro_expansion_p (struct line_maps
*set
,
773 source_location location
)
775 linemap_assert (location
<= MAX_SOURCE_LOCATION
776 && (set
->highest_location
777 < LINEMAPS_MACRO_LOWEST_LOCATION (set
)));
780 return (location
> set
->highest_location
);
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. */
788 static const struct line_map
*
789 first_map_in_common_1 (struct line_maps
*set
,
790 source_location
*loc0
,
791 source_location
*loc1
)
793 source_location l0
= *loc0
, l1
= *loc1
;
794 const struct line_map
*map0
= linemap_lookup (set
, l0
),
795 *map1
= linemap_lookup (set
, l1
);
797 while (linemap_macro_expansion_map_p (map0
)
798 && linemap_macro_expansion_map_p (map1
)
801 if (MAP_START_LOCATION (map0
) < MAP_START_LOCATION (map1
))
803 l0
= linemap_macro_map_loc_to_exp_point (map0
, l0
);
804 map0
= linemap_lookup (set
, l0
);
808 l1
= linemap_macro_map_loc_to_exp_point (map1
, l1
);
809 map1
= linemap_lookup (set
, l1
);
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. */
828 static const struct line_map
*
829 first_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
)
838 return first_map_in_common_1 (set
, res_loc0
, res_loc1
);
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
847 linemap_compare_locations (struct line_maps
*set
,
849 source_location post
)
851 bool pre_virtual_p
, post_virtual_p
;
852 source_location l0
= pre
, l1
= post
;
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
,
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
,
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. */
875 const struct line_map
*map
=
876 first_map_in_common (set
, pre
, post
, &l0
, &l1
);
879 /* This should not be possible. */
882 i0
= l0
- MAP_START_LOCATION (map
);
883 i1
= l1
- MAP_START_LOCATION (map
);
890 /* Print an include trace, for e.g. the -H option of the preprocessor. */
893 trace_include (const struct line_maps
*set
, const struct line_map
*map
)
895 unsigned int i
= set
->depth
;
900 fprintf (stderr
, " %s\n", ORDINARY_MAP_FILE_NAME (map
));
903 /* Return the spelling location of the token wherever it comes from,
904 whether part of a macro definition or not.
906 This is a subroutine for linemap_resolve_location. */
908 static source_location
909 linemap_macro_loc_to_spelling_point (struct line_maps
*set
,
910 source_location location
,
911 const struct line_map
**original_map
)
913 struct line_map
*map
;
915 linemap_assert (set
&& location
>= RESERVED_LOCATION_COUNT
);
919 map
= (struct line_map
*) linemap_lookup (set
, location
);
920 if (!linemap_macro_expansion_map_p (map
))
924 linemap_macro_map_loc_unwind_toward_spelling (map
, location
);
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.
940 This is a subroutine of linemap_resolve_location. */
942 static source_location
943 linemap_macro_loc_to_def_point (struct line_maps
*set
,
944 source_location location
,
945 const struct line_map
**original_map
)
947 struct line_map
*map
;
949 linemap_assert (set
&& location
>= RESERVED_LOCATION_COUNT
);
953 map
= (struct line_map
*) linemap_lookup (set
, location
);
954 if (!linemap_macro_expansion_map_p (map
))
958 linemap_macro_map_loc_to_def_point (map
, location
);
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.
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
978 This is a subroutine of linemap_resolve_location. */
980 static source_location
981 linemap_macro_loc_to_exp_point (struct line_maps
*set
,
982 source_location location
,
983 const struct line_map
**original_map
)
985 struct line_map
*map
;
987 linemap_assert (set
&& location
>= RESERVED_LOCATION_COUNT
);
991 map
= (struct line_map
*) linemap_lookup (set
, location
);
992 if (!linemap_macro_expansion_map_p (map
))
994 location
= linemap_macro_map_loc_to_exp_point (map
, location
);
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.
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.
1012 Now if LOC *IS* the location of a token resulting from the
1013 expansion of a macro, this is what happens.
1015 * If LRK is set to LRK_MACRO_EXPANSION_POINT
1016 -------------------------------
1018 The virtual location is resolved to the location to the locus of
1019 the expansion point of the macro.
1021 * If LRK is set to LRK_SPELLING_LOCATION
1022 -------------------------------------
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.
1028 * If LRK is set to LRK_MACRO_PARM_REPLACEMENT_POINT
1029 --------------------------------------
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
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.
1041 If MAP is non-NULL, *MAP is set to the map of the resolved
1042 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. */
1048 linemap_resolve_location (struct line_maps
*set
,
1049 source_location loc
,
1050 enum location_resolution_kind lrk
,
1051 const struct line_map
**map
)
1053 if (loc
< RESERVED_LOCATION_COUNT
)
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
1065 case LRK_MACRO_EXPANSION_POINT
:
1066 loc
= linemap_macro_loc_to_exp_point (set
, loc
, map
);
1068 case LRK_SPELLING_LOCATION
:
1069 loc
= linemap_macro_loc_to_spelling_point (set
, loc
, map
);
1071 case LRK_MACRO_DEFINITION_LOCATION
:
1072 loc
= linemap_macro_loc_to_def_point (set
, loc
, map
);
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
1089 *LOC_MAP must be set to the map of LOC. This function then sets it
1090 to the map of the returned location. */
1093 linemap_unwind_toward_expansion (struct line_maps
*set
,
1094 source_location loc
,
1095 const struct line_map
**map
)
1097 source_location resolved_location
;
1098 const struct line_map
*resolved_map
;
1101 linemap_macro_map_loc_unwind_toward_spelling (*map
, loc
);
1102 resolved_map
= linemap_lookup (set
, resolved_location
);
1104 if (!linemap_macro_expansion_map_p (resolved_map
))
1106 resolved_location
= linemap_macro_map_loc_to_exp_point (*map
, loc
);
1107 resolved_map
= linemap_lookup (set
, resolved_location
);
1110 *map
= resolved_map
;
1111 return resolved_location
;
1114 /* Expand source code location LOC and return a user readable source
1115 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. */
1120 linemap_expand_location (struct line_maps
*set
,
1121 const struct line_map
*map
,
1122 source_location loc
)
1125 expanded_location xloc
;
1127 memset (&xloc
, 0, sizeof (xloc
));
1129 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
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. */
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
))
1147 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;
1157 /* Dump line map at index IX in line table SET to STREAM. If STREAM
1158 is NULL, use stderr. IS_MACRO is true if the caller wants to
1159 dump a macro map, false otherwise. */
1162 linemap_dump (FILE *stream
, struct line_maps
*set
, unsigned ix
, bool is_macro
)
1164 const char *lc_reasons_v
[LC_ENTER_MACRO
+ 1]
1165 = { "LC_ENTER", "LC_LEAVE", "LC_RENAME", "LC_RENAME_VERBATIM",
1168 struct line_map
*map
;
1174 map
= LINEMAPS_ORDINARY_MAP_AT (set
, ix
);
1176 map
= LINEMAPS_MACRO_MAP_AT (set
, ix
);
1178 reason
= (map
->reason
<= LC_ENTER_MACRO
) ? lc_reasons_v
[map
->reason
] : "???";
1180 fprintf (stream
, "Map #%u [%p] - LOC: %u - REASON: %s - SYSP: %s\n",
1181 ix
, (void *) map
, map
->start_location
, reason
,
1182 (!is_macro
&& ORDINARY_MAP_IN_SYSTEM_HEADER_P (map
)) ? "yes" : "no");
1185 unsigned includer_ix
;
1186 struct line_map
*includer_map
;
1188 includer_ix
= ORDINARY_MAP_INCLUDER_FILE_INDEX (map
);
1189 includer_map
= includer_ix
< LINEMAPS_ORDINARY_USED (set
)
1190 ? LINEMAPS_ORDINARY_MAP_AT (set
, includer_ix
)
1193 fprintf (stream
, "File: %s:%d\n", ORDINARY_MAP_FILE_NAME (map
),
1194 ORDINARY_MAP_STARTING_LINE_NUMBER (map
));
1195 fprintf (stream
, "Included from: [%d] %s\n", includer_ix
,
1196 includer_map
? ORDINARY_MAP_FILE_NAME (includer_map
) : "None");
1199 fprintf (stream
, "Macro: %s (%u tokens)\n",
1200 linemap_map_get_macro_name (map
),
1201 MACRO_MAP_NUM_MACRO_TOKENS (map
));
1203 fprintf (stream
, "\n");
1207 /* Dump debugging information about source location LOC into the file
1208 stream STREAM. SET is the line map set LOC comes from. */
1211 linemap_dump_location (struct line_maps
*set
,
1212 source_location loc
,
1215 const struct line_map
*map
;
1216 source_location location
;
1217 const char *path
= "", *from
= "";
1218 int l
= -1, c
= -1, s
= -1, e
= -1;
1224 linemap_resolve_location (set
, loc
, LRK_MACRO_DEFINITION_LOCATION
, &map
);
1227 /* Only reserved locations can be tolerated in this case. */
1228 linemap_assert (location
< RESERVED_LOCATION_COUNT
);
1231 path
= LINEMAP_FILE (map
);
1232 l
= SOURCE_LINE (map
, location
);
1233 c
= SOURCE_COLUMN (map
, location
);
1234 s
= LINEMAP_SYSP (map
) != 0;
1235 e
= location
!= loc
;
1239 from
= (INCLUDED_FROM (set
, map
))
1240 ? LINEMAP_FILE (INCLUDED_FROM (set
, map
))
1244 /* P: path, L: line, C: column, S: in-system-header, M: map address,
1245 E: macro expansion?, LOC: original location, R: resolved location */
1246 fprintf (stream
, "{P:%s;F:%s;L:%d;C:%d;S:%d;M:%p;E:%d,LOC:%d,R:%d}",
1247 path
, from
, l
, c
, s
, (void*)map
, e
, loc
, location
);
1250 /* Compute and return statistics about the memory consumption of some
1251 parts of the line table SET. */
1254 linemap_get_statistics (struct line_maps
*set
,
1255 struct linemap_stats
*s
)
1257 long ordinary_maps_allocated_size
, ordinary_maps_used_size
,
1258 macro_maps_allocated_size
, macro_maps_used_size
,
1259 macro_maps_locations_size
= 0, duplicated_macro_maps_locations_size
= 0;
1261 struct line_map
*cur_map
;
1263 ordinary_maps_allocated_size
=
1264 LINEMAPS_ORDINARY_ALLOCATED (set
) * sizeof (struct line_map
);
1266 ordinary_maps_used_size
=
1267 LINEMAPS_ORDINARY_USED (set
) * sizeof (struct line_map
);
1269 macro_maps_allocated_size
=
1270 LINEMAPS_MACRO_ALLOCATED (set
) * sizeof (struct line_map
);
1272 for (cur_map
= LINEMAPS_MACRO_MAPS (set
);
1273 cur_map
&& cur_map
<= LINEMAPS_LAST_MACRO_MAP (set
);
1278 linemap_assert (linemap_macro_expansion_map_p (cur_map
));
1280 macro_maps_locations_size
+=
1281 2 * MACRO_MAP_NUM_MACRO_TOKENS (cur_map
) * sizeof (source_location
);
1283 for (i
= 0; i
< 2 * MACRO_MAP_NUM_MACRO_TOKENS (cur_map
); i
+= 2)
1285 if (MACRO_MAP_LOCATIONS (cur_map
)[i
] ==
1286 MACRO_MAP_LOCATIONS (cur_map
)[i
+ 1])
1287 duplicated_macro_maps_locations_size
+=
1288 sizeof (source_location
);
1292 macro_maps_used_size
=
1293 LINEMAPS_MACRO_USED (set
) * sizeof (struct line_map
);
1295 s
->num_ordinary_maps_allocated
= LINEMAPS_ORDINARY_ALLOCATED (set
);
1296 s
->num_ordinary_maps_used
= LINEMAPS_ORDINARY_USED (set
);
1297 s
->ordinary_maps_allocated_size
= ordinary_maps_allocated_size
;
1298 s
->ordinary_maps_used_size
= ordinary_maps_used_size
;
1299 s
->num_expanded_macros
= num_expanded_macros_counter
;
1300 s
->num_macro_tokens
= num_macro_tokens_counter
;
1301 s
->num_macro_maps_used
= LINEMAPS_MACRO_USED (set
);
1302 s
->macro_maps_allocated_size
= macro_maps_allocated_size
;
1303 s
->macro_maps_locations_size
= macro_maps_locations_size
;
1304 s
->macro_maps_used_size
= macro_maps_used_size
;
1305 s
->duplicated_macro_maps_locations_size
=
1306 duplicated_macro_maps_locations_size
;
1310 /* Dump line table SET to STREAM. If STREAM is NULL, stderr is used.
1311 NUM_ORDINARY specifies how many ordinary maps to dump. NUM_MACRO
1312 specifies how many macro maps to dump. */
1315 line_table_dump (FILE *stream
, struct line_maps
*set
, unsigned int num_ordinary
,
1316 unsigned int num_macro
)
1326 fprintf (stream
, "# of ordinary maps: %d\n", LINEMAPS_ORDINARY_USED (set
));
1327 fprintf (stream
, "# of macro maps: %d\n", LINEMAPS_MACRO_USED (set
));
1328 fprintf (stream
, "Include stack depth: %d\n", set
->depth
);
1329 fprintf (stream
, "Highest location: %u\n", set
->highest_location
);
1333 fprintf (stream
, "\nOrdinary line maps\n");
1334 for (i
= 0; i
< num_ordinary
&& i
< LINEMAPS_ORDINARY_USED (set
); i
++)
1335 linemap_dump (stream
, set
, i
, false);
1336 fprintf (stream
, "\n");
1341 fprintf (stream
, "\nMacro line maps\n");
1342 for (i
= 0; i
< num_macro
&& i
< LINEMAPS_MACRO_USED (set
); i
++)
1343 linemap_dump (stream
, set
, i
, true);
1344 fprintf (stream
, "\n");