diff options
author | Nathan Sidwell <nathan@acm.org> | 2019-10-15 12:03:04 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2019-10-15 12:03:04 +0000 |
commit | 9158f0ba97ff987948cd5ce8391a546751c6dff3 (patch) | |
tree | 23993f28ac6545c0a27d83cecfcfe29a6cd27608 /libcpp/include | |
parent | d8955dc0f4583317c4d6a65d17c92c538f46a60c (diff) | |
download | gcc-9158f0ba97ff987948cd5ce8391a546751c6dff3.zip gcc-9158f0ba97ff987948cd5ce8391a546751c6dff3.tar.gz gcc-9158f0ba97ff987948cd5ce8391a546751c6dff3.tar.bz2 |
[linemap PATCH] Constify lookup
https://gcc.gnu.org/ml/gcc-patches/2019-10/msg01080.html
looking up a line map takes a non-constant line_maps object, which is confusing.
This makes the caching fields mutable, so permits a constant object, as one might expect for a lookup.
* include/line-map.h (struct maps_info_ordinary): Make cache
mutable.
(struct maps_info_macro): Likewise.
(LINEMAPS_CACHE): Remove non-ref accessor. Constify ref accessor.
(LINEMAPS_ORDINARY_CACHE, LINEMAPS_MACRO_CACHE): Likewise.
(LINEMAPS_ORDINARY_MAP_AT, LINEMAPS_MACRO_MAP_AT): Use
LINEMAPS_USED and LINEMAPS_MAP_AT.
(linemap_lookup): Constify line_map arg.
linemap.c (linemap_ordinary_map_lookup, linemap_macro_map_lookup):
Constify line_map arg.
From-SVN: r276994
Diffstat (limited to 'libcpp/include')
-rw-r--r-- | libcpp/include/line-map.h | 53 |
1 files changed, 13 insertions, 40 deletions
diff --git a/libcpp/include/line-map.h b/libcpp/include/line-map.h index bde5e53..6f4cf5b 100644 --- a/libcpp/include/line-map.h +++ b/libcpp/include/line-map.h @@ -724,7 +724,7 @@ struct GTY(()) maps_info_ordinary { or equal to ALLOCATED. */ unsigned int used; - unsigned int cache; + mutable unsigned int cache; }; struct GTY(()) maps_info_macro { @@ -739,7 +739,7 @@ struct GTY(()) maps_info_macro { or equal to ALLOCATED. */ unsigned int used; - unsigned int cache; + mutable unsigned int cache; }; /* Data structure to associate a source_range together with an arbitrary @@ -865,19 +865,8 @@ LINEMAPS_USED (line_maps *set, bool map_kind) /* Returns the index of the last map that was looked up with linemap_lookup. MAP_KIND shall be TRUE if we are interested in macro maps, FALSE otherwise. */ -inline unsigned int -LINEMAPS_CACHE (const line_maps *set, bool map_kind) -{ - if (map_kind) - return set->info_macro.cache; - else - return set->info_ordinary.cache; -} - -/* As above, but by reference (e.g. as an lvalue). */ - inline unsigned int & -LINEMAPS_CACHE (line_maps *set, bool map_kind) +LINEMAPS_CACHE (const line_maps *set, bool map_kind) { if (map_kind) return set->info_macro.cache; @@ -927,9 +916,9 @@ LINEMAPS_ORDINARY_MAPS (const line_maps *set) inline line_map_ordinary * LINEMAPS_ORDINARY_MAP_AT (const line_maps *set, int index) { - linemap_assert (index >= 0); - linemap_assert ((unsigned int)index < set->info_ordinary.used); - return &set->info_ordinary.maps[index]; + linemap_assert (index >= 0 + && (unsigned int)index < LINEMAPS_USED (set, false)); + return (line_map_ordinary *)LINEMAPS_MAP_AT (set, false, index); } /* Return the number of ordinary maps allocated in the line table @@ -949,16 +938,8 @@ LINEMAPS_ORDINARY_USED (const line_maps *set) /* Return the index of the last ordinary map that was looked up with linemap_lookup. */ -inline unsigned int -LINEMAPS_ORDINARY_CACHE (const line_maps *set) -{ - return LINEMAPS_CACHE (set, false); -} - -/* As above, but by reference (e.g. as an lvalue). */ - inline unsigned int & -LINEMAPS_ORDINARY_CACHE (line_maps *set) +LINEMAPS_ORDINARY_CACHE (const line_maps *set) { return LINEMAPS_CACHE (set, false); } @@ -991,9 +972,9 @@ LINEMAPS_MACRO_MAPS (const line_maps *set) inline line_map_macro * LINEMAPS_MACRO_MAP_AT (const line_maps *set, int index) { - linemap_assert (index >= 0); - linemap_assert ((unsigned int)index < set->info_macro.used); - return &set->info_macro.maps[index]; + linemap_assert (index >= 0 + && (unsigned int)index < LINEMAPS_USED (set, true)); + return (line_map_macro *)LINEMAPS_MAP_AT (set, true, index); } /* Returns the number of macro maps that were allocated in the line @@ -1011,18 +992,10 @@ LINEMAPS_MACRO_USED (const line_maps *set) return LINEMAPS_USED (set, true); } -/* Returns the index of the last macro map looked up with +/* Return the index of the last macro map that was looked up with linemap_lookup. */ -inline unsigned int -LINEMAPS_MACRO_CACHE (const line_maps *set) -{ - return LINEMAPS_CACHE (set, true); -} - -/* As above, but by reference (e.g. as an lvalue). */ - inline unsigned int & -LINEMAPS_MACRO_CACHE (line_maps *set) +LINEMAPS_MACRO_CACHE (const line_maps *set) { return LINEMAPS_CACHE (set, true); } @@ -1130,7 +1103,7 @@ extern const line_map *linemap_add binary search. If no line map have been allocated yet, this function returns NULL. */ extern const line_map *linemap_lookup - (class line_maps *, location_t); + (const line_maps *, location_t); /* Returns TRUE if the line table set tracks token locations across macro expansion, FALSE otherwise. */ |