Skip to content

Commit 027bde1

Browse files
author
GCC Administrator
committed
Daily bump.
1 parent a9e9f77 commit 027bde1

File tree

5 files changed

+166
-1
lines changed

5 files changed

+166
-1
lines changed

gcc/ChangeLog

+94
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,97 @@
1+
2024-07-27 Roger Sayle <[email protected]>
2+
Andrew Pinski <[email protected]>
3+
4+
* match.pd (ctz (-X) => ctz (X)): New simplification.
5+
(ctz (abs (X)) => ctz (X)): Likewise.
6+
7+
2024-07-27 Pan Li <[email protected]>
8+
9+
* match.pd: Add case 9 and case 10 for .SAT_SUB when one
10+
of the op is IMM.
11+
12+
2024-07-27 David Malcolm <[email protected]>
13+
14+
PR middle-end/107941
15+
* diagnostic-format-sarif.cc: Define INCLUDE_LIST and INCLUDE_MAP.
16+
(enum class location_relationship_kind): New.
17+
(diagnostic_artifact_role::scanned_file): New value.
18+
(class sarif_location_manager): New.
19+
(class sarif_result): Derive from sarif_location_manager rather
20+
than directly from sarif_object.
21+
(sarif_result::add_related_location): Convert to vfunc
22+
implementation.
23+
(sarif_location::m_relationships_map): New field.
24+
(class sarif_location_relationship): New.
25+
(class sarif_ice_notification): Derive from sarif_location_manager
26+
rather than directly from sarif_object.
27+
(sarif_builder::take_current_result): New.
28+
(sarif_builder::m_line_maps): New field.
29+
(sarif_builder::m_cur_group_result): Convert to std::unique_ptr.
30+
(sarif_artifact::add_role): Skip scanned_file.
31+
(get_artifact_role_string): Handle scanned_file.
32+
(sarif_location_manager::add_relationship_to_worklist): New.
33+
(sarif_location_manager::process_worklist): New.
34+
(sarif_location_manager::process_worklist_item): New.
35+
(sarif_result::on_nested_diagnostic): Pass *this to
36+
make_location_object.
37+
(sarif_location::lazily_add_id): New.
38+
(sarif_location::get_id): New.
39+
(get_string_for_location_relationship_kind): New.
40+
(sarif_location::lazily_add_relationship): New.
41+
(sarif_location::lazily_add_relationship_object): New.
42+
(sarif_location::lazily_add_relationships_array): New.
43+
(sarif_ice_notification::sarif_ice_notification): Fix overlong line.
44+
Pass *this to make_locations_arr.
45+
(sarif_ice_notification::add_related_location): New.
46+
(sarif_location_relationship::sarif_location_relationship): New.
47+
(sarif_location_relationship::get_target_id): New.
48+
(sarif_location_relationship::lazily_add_kind): New.
49+
(sarif_builder::sarif_builder): Add "line_maps" param and use it
50+
to initialize m_line_maps.
51+
(sarif_builder::end_diagnostic): Update for m_cur_group_result
52+
becoming a std::unique_ptr. Don't append to m_results_array yet.
53+
(sarif_builder::end_group): Append m_cur_group_result to
54+
m_results_array here, rather than in end_diagnostic.
55+
(sarif_builder::make_result_object): Pass result_obj to
56+
make_locations_arr and to make_code_flow_object.
57+
(sarif_builder::make_locations_arr): Add "loc_mgr" param and pass
58+
it to make_location_object.
59+
(sarif_builder::make_location_object): For two overloads, add
60+
"loc_mgr" param and call add_any_include_chain on the location.
61+
(sarif_builder::add_any_include_chain): New.
62+
(sarif_builder::make_location_object): New overload.
63+
(sarif_builder::make_code_flow_object): Add "result" param and
64+
pass it to make_thread_flow_location_object.
65+
(sarif_builder::make_thread_flow_location_object): Add "result"
66+
param and pass it to make_location_object.
67+
(sarif_builder::get_or_create_artifact): Handle scanned_file.
68+
(sarif_output_format::~sarif_output_format): Assert that there
69+
isn't a pending result.
70+
(sarif_output_format::sarif_output_format): Add "line_maps" param
71+
and pass it to m_builder's ctor.
72+
(sarif_stream_output_format::sarif_stream_output_format): Add
73+
"line_maps" param and pass it to base class ctor.
74+
(sarif_file_output_format::sarif_file_output_format): Likewise.
75+
(diagnostic_output_format_init_sarif_stderr): Pass "line_table"
76+
global to format.
77+
(diagnostic_output_format_init_sarif_file): Likewise.
78+
(diagnostic_output_format_init_sarif_stream): Likewise.
79+
(test_sarif_diagnostic_context::test_sarif_diagnostic_context):
80+
Likewise.
81+
(buffered_output_format::buffered_output_format): Likewise.
82+
(selftest::test_make_location_object): Likewise.
83+
(selftest::test_make_location_object): Create a sarif_result for
84+
use when calling make_location_object.
85+
* diagnostic.cc (diagnostic_context::finish): End any active
86+
diagnostic groups.
87+
(diagnostic_context::report_diagnostic): Assert that we're within
88+
a diagnostic group.
89+
* diagnostic.h (diagnostic_report_diagnostic): Add
90+
begin_group/end_group pair around call to
91+
diagnostic_context::report_diagnostic.
92+
* selftest-diagnostic.cc (test_diagnostic_context::report): Add
93+
begin_group/end_group pair around diagnostic_impl call.
94+
195
2024-07-26 Jeff Law <[email protected]>
296

397
PR target/116085

gcc/DATESTAMP

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20240727
1+
20240728

gcc/cp/ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2024-07-27 Jason Merrill <[email protected]>
2+
3+
PR c++/115986
4+
* cp-gimplify.cc (remember_escalating_expr): Skip function
5+
templates.
6+
7+
2024-07-27 Jason Merrill <[email protected]>
8+
9+
PR c++/115561
10+
* semantics.cc (finish_call_expr): Check cp_unevaluated_operand.
11+
112
2024-07-26 Jason Merrill <[email protected]>
213

314
PR c++/116052

gcc/testsuite/ChangeLog

+40
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
2024-07-27 Jason Merrill <[email protected]>
2+
3+
PR c++/115986
4+
* g++.dg/cpp2a/consteval-prop21.C: New test.
5+
6+
2024-07-27 Jason Merrill <[email protected]>
7+
8+
PR c++/115561
9+
* g++.dg/cpp2a/concepts-lambda21.C: New test.
10+
11+
2024-07-27 Jason Merrill <[email protected]>
12+
13+
* lib/gcc-dg.exp (get_matching_lines): New.
14+
* lib/g++-dg.exp: Improve std_list selection.
15+
16+
2024-07-27 Roger Sayle <[email protected]>
17+
Andrew Pinski <[email protected]>
18+
19+
* gcc.dg/fold-ctz-1.c: New test case.
20+
* gcc.dg/fold-ctz-2.c: Likewise.
21+
22+
2024-07-27 David Malcolm <[email protected]>
23+
24+
PR middle-end/107941
25+
* gcc.dg/sarif-output/include-chain-1-1.h: New test.
26+
* gcc.dg/sarif-output/include-chain-1-2.h: New test.
27+
* gcc.dg/sarif-output/include-chain-1.c: New test.
28+
* gcc.dg/sarif-output/include-chain-1.h: New test.
29+
* gcc.dg/sarif-output/include-chain-2.c: New test.
30+
* gcc.dg/sarif-output/include-chain-2.h: New test.
31+
* gcc.dg/sarif-output/sarif-output.exp: New file.
32+
* gcc.dg/sarif-output/sarif.py: New test, adapted from
33+
g++.dg/gcov/gcov.py.
34+
* gcc.dg/sarif-output/test-include-chain-1.py: New test.
35+
* gcc.dg/sarif-output/test-include-chain-2.py: New test.
36+
* lib/scansarif.exp (sarif-pytest-format-line): New, taken
37+
from lib/gcov.exp.
38+
(run-sarif-pytest): New, adapted from run-gcov-pytest in
39+
lib/gcov.exp.
40+
141
2024-07-26 Jeff Law <[email protected]>
242

343
PR target/116085

libstdc++-v3/ChangeLog

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
2024-07-27 Jonathan Wakely <[email protected]>
2+
3+
* include/std/charconv (__to_chars_16, __to_chars_10)
4+
(__to_chars_8, __to_chars_2, __to_chars): Cast ptrdiff_t to
5+
size_t for comparison.
6+
(__to_chars_i): Check for first >= last instead of first == last
7+
for initial sanity check.
8+
9+
2024-07-27 Jonathan Wakely <[email protected]>
10+
11+
* include/bits/std_function.h: Add comment about LWG 3617 being
12+
supported.
13+
14+
2024-07-27 Jonathan Wakely <[email protected]>
15+
16+
* include/bits/stl_algobase.h (__find_if): Remove overloads for
17+
dispatching on iterator_category. Do not unroll loop manually.
18+
* include/bits/stl_algo.h (__find_if_not): Remove
19+
iterator_category argument from __find_if call.
20+
121
2024-07-25 Jonathan Wakely <[email protected]>
222

323
* include/std/expected (expected::value): Add assertions for LWG

0 commit comments

Comments
 (0)