[PATCH] line-map include-from representation

https://gcc.gnu.org/ml/gcc-patches/2018-08/msg00554.html
	Make linemap::included_from a location
	libcpp/
	* include/line-map.h (struct line_map_ordinary): Replace
	included_from map index with included_at source_location.
	(ORDINARY_MAP_INCLUDER_FILE_INDEX): Delete.
	(LAST_SOURCE_LINE_LOCATION): Delete.
	(LAST_SOURCE_LINE, LAST_SOURCE_COLUMN): Delete.
	(linemap_included_from): New.
	(linemap_included_from_linemap): Declare.
	(MAIN_FILE_P): Adjust.
	* line-map.c (linemap_included_from_linemap): New.
	(lonemap_check_files_exited): Use linemap_included_at.
	(linemap_add): Adjust inclusion setting.
	(linemap_dump, linemap_dump_location): Adjust.
	* directives.c (do_linemarker): Use linemap_included_at.
	gcc/
	* diagnostic.c (diagnostic_report_current_module): Use
	linemap_included_from & linemap_included_from_linemap.
	gcc/c-family/
	* c-common.c (try_to_locate_new_include_inertion_point): Use
	linemap_included_from_linemap.
	* c-lex.c (fe_file_change): Use linemap_included_from.
	* c-ppoutput.c (pp_file_change): Likewise.
	gcc/fortran/
	* cpp.c (cb_file_change): Use linemap_included_from.
	gcc/testsuite/
	* c-c++-common/inc-from-1a.h, c-c++-common/inc-from-1b.h,
	c-c++-common/inc-from-1.c: New

From-SVN: r263429
This commit is contained in:
Nathan Sidwell 2018-08-08 18:13:00 +00:00 committed by Nathan Sidwell
parent a801991954
commit f10a91352f
16 changed files with 101 additions and 87 deletions

View File

@ -1,3 +1,8 @@
2018-08-08 Nathan Sidwell <nathan@acm.org>
* diagnostic.c (diagnostic_report_current_module): Use
linemap_included_from & linemap_included_from_linemap.
2018-08-08 Hongbo Zhang <hongbo.zhang@linaro.org> 2018-08-08 Hongbo Zhang <hongbo.zhang@linaro.org>
* config/aarch64/aarch64-cores.def: Add phecda core. * config/aarch64/aarch64-cores.def: Add phecda core.

View File

@ -1,3 +1,10 @@
2018-08-08 Nathan Sidwell <nathan@acm.org>
* c-common.c (try_to_locate_new_include_inertion_point): Use
linemap_included_from_linemap.
* c-lex.c (fe_file_change): Use linemap_included_from.
* c-ppoutput.c (pp_file_change): Likewise.
2018-08-01 Martin Sebor <msebor@redhat.com> 2018-08-01 Martin Sebor <msebor@redhat.com>
PR tree-optimization/86650 PR tree-optimization/86650

View File

@ -8413,8 +8413,8 @@ try_to_locate_new_include_insertion_point (const char *file, location_t loc)
const line_map_ordinary *ord_map const line_map_ordinary *ord_map
= LINEMAPS_ORDINARY_MAP_AT (line_table, i); = LINEMAPS_ORDINARY_MAP_AT (line_table, i);
const line_map_ordinary *from = INCLUDED_FROM (line_table, ord_map); if (const line_map_ordinary *from
if (from) = linemap_included_from_linemap (line_table, ord_map))
if (from->to_file == file) if (from->to_file == file)
{ {
last_include_ord_map = from; last_include_ord_map = from;

View File

@ -199,7 +199,7 @@ fe_file_change (const line_map_ordinary *new_map)
we already did in compile_file. */ we already did in compile_file. */
if (!MAIN_FILE_P (new_map)) if (!MAIN_FILE_P (new_map))
{ {
unsigned int included_at = LAST_SOURCE_LINE_LOCATION (new_map - 1); location_t included_at = linemap_included_from (new_map);
int line = 0; int line = 0;
if (included_at > BUILTINS_LOCATION) if (included_at > BUILTINS_LOCATION)
line = SOURCE_LINE (new_map - 1, included_at); line = SOURCE_LINE (new_map - 1, included_at);

View File

@ -663,11 +663,9 @@ pp_file_change (const line_map_ordinary *map)
/* Bring current file to correct line when entering a new file. */ /* Bring current file to correct line when entering a new file. */
if (map->reason == LC_ENTER) if (map->reason == LC_ENTER)
{ {
const line_map_ordinary *from = INCLUDED_FROM (line_table, map); maybe_print_line (linemap_included_from (map));
maybe_print_line (LAST_SOURCE_LINE_LOCATION (from)); flags = " 1";
} }
if (map->reason == LC_ENTER)
flags = " 1";
else if (map->reason == LC_LEAVE) else if (map->reason == LC_LEAVE)
flags = " 2"; flags = " 2";
print_line (map->start_location, flags); print_line (map->start_location, flags);

View File

@ -590,9 +590,10 @@ diagnostic_report_current_module (diagnostic_context *context, location_t where)
bool first = true; bool first = true;
do do
{ {
map = INCLUDED_FROM (line_table, map); where = linemap_included_from (map);
map = linemap_included_from_linemap (line_table, map);
const char *line_col const char *line_col
= maybe_line_and_column (LAST_SOURCE_LINE (map), = maybe_line_and_column (SOURCE_LINE (map, where),
first && context->show_column first && context->show_column
? SOURCE_COLUMN (map, where) : 0); ? SOURCE_COLUMN (map, where) : 0);
static const char *const msgs[] = static const char *const msgs[] =

View File

@ -1,3 +1,7 @@
2018-08-08 Nathan Sidwell <nathan@acm.org>
* cpp.c (cb_file_change): Use linemap_included_from.
2018-08-07 Cesar Philippidis <cesar@codesourcery.com> 2018-08-07 Cesar Philippidis <cesar@codesourcery.com>
* trans-stmt.h: Remove stale reference to trans-openacc.c. * trans-stmt.h: Remove stale reference to trans-openacc.c.

View File

@ -881,10 +881,7 @@ cb_file_change (cpp_reader * ARG_UNUSED (pfile), const line_map_ordinary *map)
{ {
/* Bring current file to correct line when entering a new file. */ /* Bring current file to correct line when entering a new file. */
if (map->reason == LC_ENTER) if (map->reason == LC_ENTER)
{ maybe_print_line (linemap_included_from (map));
const line_map_ordinary *from = INCLUDED_FROM (line_table, map);
maybe_print_line (LAST_SOURCE_LINE_LOCATION (from));
}
if (map->reason == LC_ENTER) if (map->reason == LC_ENTER)
flags = " 1"; flags = " 1";
else if (map->reason == LC_LEAVE) else if (map->reason == LC_LEAVE)

View File

@ -1,3 +1,8 @@
2018-08-08 Nathan Sidwell <nathan@acm.org>
* c-c++-common/inc-from-1a.h, c-c++-common/inc-from-1b.h,
c-c++-common/inc-from-1.c: New
2018-08-08 Andreas Krebbel <krebbel@linux.ibm.com> 2018-08-08 Andreas Krebbel <krebbel@linux.ibm.com>
PR target/85295 PR target/85295

View File

@ -0,0 +1,5 @@
#include "inc-from-1b.h"
/* { dg-error "" "" { target *-*-* } 1 } */
/* { dg-regexp "In file included from \[^\n]*inc-from-1b.h:1,\n *from \[^\n]*inc-from-1.c:1:\n" } */

View File

@ -0,0 +1 @@
void bleah;

View File

@ -0,0 +1 @@
#include "inc-from-1a.h"

View File

@ -1,3 +1,21 @@
2018-08-08 Nathan Sidwell <nathan@acm.org>
Make linemap::included_from a location
libcpp/
* include/line-map.h (struct line_map_ordinary): Replace
included_from map index with included_at source_location.
(ORDINARY_MAP_INCLUDER_FILE_INDEX): Delete.
(LAST_SOURCE_LINE_LOCATION): Delete.
(LAST_SOURCE_LINE, LAST_SOURCE_COLUMN): Delete.
(linemap_included_from): New.
(linemap_included_from_linemap): Declare.
(MAIN_FILE_P): Adjust.
* line-map.c (linemap_included_from_linemap): New.
(lonemap_check_files_exited): Use linemap_included_at.
(linemap_add): Adjust inclusion setting.
(linemap_dump, linemap_dump_location): Adjust.
* directives.c (do_linemarker): Use linemap_included_at.
2018-08-07 Nathan Sidwell <nathan@acm.org> 2018-08-07 Nathan Sidwell <nathan@acm.org>
* line-map.c: (linemap_init): Set default allocator here. * line-map.c: (linemap_init): Set default allocator here.

View File

@ -1088,10 +1088,10 @@ do_linemarker (cpp_reader *pfile)
/* Reread map since cpp_get_token can invalidate it with a /* Reread map since cpp_get_token can invalidate it with a
reallocation. */ reallocation. */
map = LINEMAPS_LAST_ORDINARY_MAP (line_table); map = LINEMAPS_LAST_ORDINARY_MAP (line_table);
const line_map_ordinary *from; const line_map_ordinary *from
= linemap_included_from_linemap (line_table, map);
if (MAIN_FILE_P (map) if (MAIN_FILE_P (map)
|| (new_file || (from
&& (from = INCLUDED_FROM (pfile->line_table, map)) != NULL
&& filename_cmp (ORDINARY_MAP_FILE_NAME (from), new_file) != 0)) && filename_cmp (ORDINARY_MAP_FILE_NAME (from), new_file) != 0))
{ {
cpp_warning (pfile, CPP_W_NONE, cpp_warning (pfile, CPP_W_NONE,

View File

@ -440,10 +440,10 @@ struct GTY((tag ("1"))) line_map_ordinary : public line_map {
const char *to_file; const char *to_file;
linenum_type to_line; linenum_type to_line;
/* An index into the set that gives the line mapping at whose end /* Location from whence this line map was included. For regular
the current one was included. File(s) at the bottom of the #includes, this location will be the last location of a map. For
include stack have this set to -1. */ outermost file, this is 0. */
int included_from; source_location included_from;
/* Size is 20 or 24 bytes, no padding */ /* Size is 20 or 24 bytes, no padding */
}; };
@ -634,17 +634,6 @@ ORDINARY_MAP_STARTING_LINE_NUMBER (const line_map_ordinary *ord_map)
return ord_map->to_line; return ord_map->to_line;
} }
/* Get the index of the ordinary map at whose end
ordinary map MAP was included.
File(s) at the bottom of the include stack have this set. */
inline int
ORDINARY_MAP_INCLUDER_FILE_INDEX (const line_map_ordinary *ord_map)
{
return ord_map->included_from;
}
/* Return a positive value if map encodes locations from a system /* Return a positive value if map encodes locations from a system
header, 0 otherwise. Returns 1 if ordinary map MAP encodes locations header, 0 otherwise. Returns 1 if ordinary map MAP encodes locations
in a system header and 2 if it encodes locations in a C system header in a system header and 2 if it encodes locations in a C system header
@ -1192,51 +1181,23 @@ SOURCE_COLUMN (const line_map_ordinary *ord_map, source_location loc)
& ((1 << ord_map->m_column_and_range_bits) - 1)) >> ord_map->m_range_bits; & ((1 << ord_map->m_column_and_range_bits) - 1)) >> ord_map->m_range_bits;
} }
/* Return the location of the last source line within an ordinary
map. */
inline source_location inline source_location
LAST_SOURCE_LINE_LOCATION (const line_map_ordinary *map) linemap_included_from (const line_map_ordinary *ord_map)
{ {
return (((map[1].start_location - 1 return ord_map->included_from;
- map->start_location)
& ~((1 << map->m_column_and_range_bits) - 1))
+ map->start_location);
} }
/* Returns the last source line number within an ordinary map. This /* The linemap containing the included-from location of MAP. */
is the (last) line of the #include, or other directive, that caused const line_map_ordinary *linemap_included_from_linemap
a map change. */ (line_maps *set, const line_map_ordinary *map);
inline linenum_type
LAST_SOURCE_LINE (const line_map_ordinary *map)
{
return SOURCE_LINE (map, LAST_SOURCE_LINE_LOCATION (map));
}
/* Return the last column number within an ordinary map. */
inline linenum_type
LAST_SOURCE_COLUMN (const line_map_ordinary *map)
{
return SOURCE_COLUMN (map, LAST_SOURCE_LINE_LOCATION (map));
}
/* Returns the map a given map was included from, or NULL if the map
belongs to the main file, i.e, a file that wasn't included by
another one. */
inline line_map_ordinary *
INCLUDED_FROM (struct line_maps *set, const line_map_ordinary *ord_map)
{
return ((ord_map->included_from == -1)
? NULL
: LINEMAPS_ORDINARY_MAP_AT (set, ord_map->included_from));
}
/* True if the map is at the bottom of the include stack. */ /* True if the map is at the bottom of the include stack. */
inline bool inline bool
MAIN_FILE_P (const line_map_ordinary *ord_map) MAIN_FILE_P (const line_map_ordinary *ord_map)
{ {
return ord_map->included_from < 0; return ord_map->included_from == 0;
} }
/* Encode and return a source_location from a column number. The /* Encode and return a source_location from a column number. The

View File

@ -355,17 +355,25 @@ linemap_init (struct line_maps *set,
set->builtin_location = builtin_location; set->builtin_location = builtin_location;
} }
/* Return the ordinary line map from whence MAP was included. Returns
NULL if MAP was not an include. */
const line_map_ordinary *
linemap_included_from_linemap (line_maps *set, const line_map_ordinary *map)
{
return linemap_ordinary_map_lookup (set, linemap_included_from (map));
}
/* Check for and warn about line_maps entered but not exited. */ /* Check for and warn about line_maps entered but not exited. */
void void
linemap_check_files_exited (struct line_maps *set) linemap_check_files_exited (struct line_maps *set)
{ {
const line_map_ordinary *map;
/* Depending upon whether we are handling preprocessed input or /* Depending upon whether we are handling preprocessed input or
not, this can be a user error or an ICE. */ not, this can be a user error or an ICE. */
for (map = LINEMAPS_LAST_ORDINARY_MAP (set); for (const line_map_ordinary *map = LINEMAPS_LAST_ORDINARY_MAP (set);
! MAIN_FILE_P (map); ! MAIN_FILE_P (map);
map = INCLUDED_FROM (set, map)) map = linemap_included_from_linemap (set, map))
fprintf (stderr, "line-map.c: file \"%s\" entered but not left\n", fprintf (stderr, "line-map.c: file \"%s\" entered but not left\n",
ORDINARY_MAP_FILE_NAME (map)); ORDINARY_MAP_FILE_NAME (map));
} }
@ -494,19 +502,19 @@ linemap_add (struct line_maps *set, enum lc_reason reason,
if (reason == LC_RENAME_VERBATIM) if (reason == LC_RENAME_VERBATIM)
reason = LC_RENAME; reason = LC_RENAME;
const line_map_ordinary *from = NULL;
if (reason == LC_LEAVE) if (reason == LC_LEAVE)
{ {
/* When we are just leaving an "included" file, and jump to the next /* When we are just leaving an "included" file, and jump to the next
location inside the "includer" right after the #include location inside the "includer" right after the #include
"included", this variable points the map in use right before the "included", this variable points the map in use right before the
#include "included", inside the same "includer" file. */ #include "included", inside the same "includer" file. */
line_map_ordinary *from;
linemap_assert (!MAIN_FILE_P (map - 1)); linemap_assert (!MAIN_FILE_P (map - 1));
/* (MAP - 1) points to the map we are leaving. The /* (MAP - 1) points to the map we are leaving. The
map from which (MAP - 1) got included should be the map map from which (MAP - 1) got included should be the map
that comes right before MAP in the same file. */ that comes right before MAP in the same file. */
from = INCLUDED_FROM (set, map - 1); from = linemap_included_from_linemap (set, map - 1);
/* A TO_FILE of NULL is special - we use the natural values. */ /* A TO_FILE of NULL is special - we use the natural values. */
if (to_file == NULL) if (to_file == NULL)
@ -538,19 +546,24 @@ linemap_add (struct line_maps *set, enum lc_reason reason,
if (reason == LC_ENTER) if (reason == LC_ENTER)
{ {
map->included_from = if (set->depth == 0)
set->depth == 0 ? -1 : (int) (LINEMAPS_ORDINARY_USED (set) - 2); map->included_from = 0;
else
/* The location of the end of the just-closed map. */
map->included_from
= (((map[0].start_location - 1 - map[-1].start_location)
& ~((1 << map[-1].m_column_and_range_bits) - 1))
+ map[-1].start_location);
set->depth++; set->depth++;
if (set->trace_includes) if (set->trace_includes)
trace_include (set, map); trace_include (set, map);
} }
else if (reason == LC_RENAME) else if (reason == LC_RENAME)
map->included_from = ORDINARY_MAP_INCLUDER_FILE_INDEX (&map[-1]); map->included_from = linemap_included_from (&map[-1]);
else if (reason == LC_LEAVE) else if (reason == LC_LEAVE)
{ {
set->depth--; set->depth--;
map->included_from = map->included_from = linemap_included_from (from);
ORDINARY_MAP_INCLUDER_FILE_INDEX (INCLUDED_FROM (set, map - 1));
} }
return map; return map;
@ -1761,17 +1774,13 @@ linemap_dump (FILE *stream, struct line_maps *set, unsigned ix, bool is_macro)
if (!is_macro) if (!is_macro)
{ {
const line_map_ordinary *ord_map = linemap_check_ordinary (map); const line_map_ordinary *ord_map = linemap_check_ordinary (map);
unsigned includer_ix; const line_map_ordinary *includer_map
const line_map_ordinary *includer_map; = linemap_included_from_linemap (set, ord_map);
includer_ix = ORDINARY_MAP_INCLUDER_FILE_INDEX (ord_map);
includer_map = includer_ix < LINEMAPS_ORDINARY_USED (set)
? LINEMAPS_ORDINARY_MAP_AT (set, includer_ix)
: NULL;
fprintf (stream, "File: %s:%d\n", ORDINARY_MAP_FILE_NAME (ord_map), fprintf (stream, "File: %s:%d\n", ORDINARY_MAP_FILE_NAME (ord_map),
ORDINARY_MAP_STARTING_LINE_NUMBER (ord_map)); ORDINARY_MAP_STARTING_LINE_NUMBER (ord_map));
fprintf (stream, "Included from: [%d] %s\n", includer_ix, fprintf (stream, "Included from: [%d] %s\n",
includer_map ? int (includer_map - set->info_ordinary.maps) : -1,
includer_map ? ORDINARY_MAP_FILE_NAME (includer_map) : "None"); includer_map ? ORDINARY_MAP_FILE_NAME (includer_map) : "None");
} }
else else
@ -1821,9 +1830,11 @@ linemap_dump_location (struct line_maps *set,
if (e) if (e)
from = "N/A"; from = "N/A";
else else
from = (INCLUDED_FROM (set, map)) {
? LINEMAP_FILE (INCLUDED_FROM (set, map)) const line_map_ordinary *from_map
: "<NULL>"; = linemap_included_from_linemap (set, map);
from = from_map ? LINEMAP_FILE (from_map) : "<NULL>";
}
} }
/* P: path, L: line, C: column, S: in-system-header, M: map address, /* P: path, L: line, C: column, S: in-system-header, M: map address,