diff options
author | David Malcolm <dmalcolm@redhat.com> | 2023-10-08 18:43:16 -0400 |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2023-10-08 18:43:16 -0400 |
commit | 1f68a3e8727f36da80be8fe1c67ed6a4d9a568d9 (patch) | |
tree | 922b625640e0d50342b195af4afab81d6c8bc7b7 /gcc/tree.cc | |
parent | 25af7c1a806c0c2464d51fb395a88ced353be22d (diff) | |
download | gcc-1f68a3e8727f36da80be8fe1c67ed6a4d9a568d9.zip gcc-1f68a3e8727f36da80be8fe1c67ed6a4d9a568d9.tar.gz gcc-1f68a3e8727f36da80be8fe1c67ed6a4d9a568d9.tar.bz2 |
libcpp: eliminate COMBINE_LOCATION_DATA
This patch eliminates the function "COMBINE_LOCATION_DATA" (which hasn't
been a macro since r6-739-g0501dbd932a7e9) and the function
"get_combined_adhoc_loc" in favor of a new
line_maps::get_or_create_combined_loc member function.
No functional change intended.
gcc/cp/ChangeLog:
* module.cc (module_state::read_location): Update for renaming of
get_combined_adhoc_loc.
gcc/ChangeLog:
* genmatch.cc (main): Update for "m_" prefix of some fields of
line_maps.
* input.cc (make_location): Update for removal of
COMBINE_LOCATION_DATA.
(dump_line_table_statistics): Update for "m_" prefix of some
fields of line_maps.
(location_with_discriminator): Update for removal of
COMBINE_LOCATION_DATA.
(line_table_test::line_table_test): Update for "m_" prefix of some
fields of line_maps.
* toplev.cc (general_init): Likewise.
* tree.cc (set_block): Update for removal of
COMBINE_LOCATION_DATA.
(set_source_range): Likewise.
libcpp/ChangeLog:
* include/line-map.h (line_maps::reallocator): Rename to...
(line_maps::m_reallocator): ...this.
(line_maps::round_alloc_size): Rename to...
(line_maps::m_round_alloc_size): ...this.
(line_maps::location_adhoc_data_map): Rename to...
(line_maps::m_location_adhoc_data_map): ...this.
(line_maps::num_optimized_ranges): Rename to...
(line_maps::m_num_optimized_ranges): ..this.
(line_maps::num_unoptimized_ranges): Rename to...
(line_maps::m_num_unoptimized_ranges): ...this.
(get_combined_adhoc_loc): Delete decl.
(COMBINE_LOCATION_DATA): Delete.
* lex.cc (get_location_for_byte_range_in_cur_line): Update for
removal of COMBINE_LOCATION_DATA.
(warn_about_normalization): Likewise.
(_cpp_lex_direct): Likewise.
* line-map.cc (line_maps::~line_maps): Update for "m_" prefix of
some fields of line_maps.
(rebuild_location_adhoc_htab): Likewise.
(can_be_stored_compactly_p): Convert to...
(line_maps::can_be_stored_compactly_p): ...this private member
function.
(get_combined_adhoc_loc): Convert to...
(line_maps::get_or_create_combined_loc): ...this public member
function.
(line_maps::make_location): Update for removal of
COMBINE_LOCATION_DATA.
(get_data_from_adhoc_loc): Update for "m_" prefix of some fields
of line_maps.
(get_discriminator_from_adhoc_loc): Likewise.
(get_location_from_adhoc_loc): Likewise.
(get_range_from_adhoc_loc): Convert to...
(line_maps::get_range_from_adhoc_loc): ...this private member
function.
(line_maps::get_range_from_loc): Update for conversion of
get_range_from_adhoc_loc to a member function.
(linemap_init): Update for "m_" prefix of some fields of
line_maps.
(line_map_new_raw): Likewise.
(linemap_enter_macro): Likewise.
(linemap_get_statistics): Likewise.
Signed-off-by: David Malcolm <dmalcolm@redhat.com>
Diffstat (limited to 'gcc/tree.cc')
-rw-r--r-- | gcc/tree.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/tree.cc b/gcc/tree.cc index 54ca5e7..850a4de 100644 --- a/gcc/tree.cc +++ b/gcc/tree.cc @@ -14505,7 +14505,8 @@ set_block (location_t loc, tree block) location_t pure_loc = get_pure_location (loc); source_range src_range = get_range_from_loc (line_table, loc); unsigned discriminator = get_discriminator_from_loc (line_table, loc); - return COMBINE_LOCATION_DATA (line_table, pure_loc, src_range, block, discriminator); + return line_table->get_or_create_combined_loc (pure_loc, src_range, block, + discriminator); } location_t @@ -14526,11 +14527,10 @@ set_source_range (tree expr, source_range src_range) location_t expr_location = EXPR_LOCATION (expr); location_t pure_loc = get_pure_location (expr_location); unsigned discriminator = get_discriminator_from_loc (expr_location); - location_t adhoc = COMBINE_LOCATION_DATA (line_table, - pure_loc, - src_range, - NULL, - discriminator); + location_t adhoc = line_table->get_or_create_combined_loc (pure_loc, + src_range, + nullptr, + discriminator); SET_EXPR_LOCATION (expr, adhoc); return adhoc; } |