[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:
committed by
Nathan Sidwell
parent
a801991954
commit
f10a91352f
+11
-50
@@ -440,10 +440,10 @@ struct GTY((tag ("1"))) line_map_ordinary : public line_map {
|
||||
const char *to_file;
|
||||
linenum_type to_line;
|
||||
|
||||
/* An index into the set that gives the line mapping at whose end
|
||||
the current one was included. File(s) at the bottom of the
|
||||
include stack have this set to -1. */
|
||||
int included_from;
|
||||
/* Location from whence this line map was included. For regular
|
||||
#includes, this location will be the last location of a map. For
|
||||
outermost file, this is 0. */
|
||||
source_location included_from;
|
||||
|
||||
/* 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;
|
||||
}
|
||||
|
||||
/* 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
|
||||
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
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
/* Return the location of the last source line within an ordinary
|
||||
map. */
|
||||
|
||||
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
|
||||
- map->start_location)
|
||||
& ~((1 << map->m_column_and_range_bits) - 1))
|
||||
+ map->start_location);
|
||||
return ord_map->included_from;
|
||||
}
|
||||
|
||||
/* Returns the last source line number within an ordinary map. This
|
||||
is the (last) line of the #include, or other directive, that caused
|
||||
a map change. */
|
||||
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));
|
||||
}
|
||||
/* The linemap containing the included-from location of MAP. */
|
||||
const line_map_ordinary *linemap_included_from_linemap
|
||||
(line_maps *set, const line_map_ordinary *map);
|
||||
|
||||
/* True if the map is at the bottom of the include stack. */
|
||||
|
||||
inline bool
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user