]> git.ipfire.org Git - thirdparty/gcc.git/log
thirdparty/gcc.git
3 months agogccrs: replace unreachable with sorry_at
lenny.chiadmi-delage [Fri, 16 Jan 2026 14:50:52 +0000 (14:50 +0000)] 
gccrs: replace unreachable with sorry_at

Do not throw an ICE whit unimplemented `box`.

gcc/rust/ChangeLog:

* hir/rust-ast-lower-expr.cc (ASTLoweringExpr::visit): Replace
unreachable with sorry_at.

Signed-off-by: lenny.chiadmi-delage <lenny.chiadmi-delage@epita.fr>
3 months agogccrs: testsuite: adds some tests for ice 4375
lenny.chiadmi-delage [Wed, 14 Jan 2026 13:44:59 +0000 (13:44 +0000)] 
gccrs: testsuite: adds some tests for ice 4375

Added new tests.

Addresses Rust-GCC/gccrs#4375

gcc/testsuite/ChangeLog:

* rust/compile/issue-4375-ice-regression.rs: New test.
* rust/compile/issue-4375-multiple-errors.rs: New test.
* rust/compile/issue-4375-tuple-pattern.rs: New test.

Signed-off-by: lenny.chiadmi-delage <lenny.chiadmi-delage@epita.fr>
3 months agogccrs: fix ice on let else expession
lenny.chiadmi-delage [Wed, 14 Jan 2026 11:17:13 +0000 (11:17 +0000)] 
gccrs: fix ice on let else expession

added error handling for let else expression.

Fixes Rust-GCC/gccrs#4375

gcc/rust/ChangeLog:

* resolve/rust-late-name-resolver-2.0.cc (Late::visit): Visit
else_expr if has_else_expr, not init_expr.

Signed-off-by: lenny.chiadmi-delage <lenny.chiadmi-delage@epita.fr>
3 months agogccrs: util/attributes: handle #[export_name] on static items
Jayant Chauhan [Thu, 15 Jan 2026 17:59:10 +0000 (23:29 +0530)] 
gccrs: util/attributes: handle #[export_name] on static items

This patch enables validation for the #[export_name] attribute when used
on static items. It reuses the validation logic introduced for functions
to ensure that statics also receive compile-time checks for malformed
inputs (e.g. non-string literals).

Fixes Rust-GCC#4388

gcc/rust/ChangeLog:

* util/rust-attributes.cc (AttributeChecker::visit): Add check for
export_name on static items.

gcc/testsuite/ChangeLog:

* rust/compile/issue-4388.rs: New test.

Signed-off-by: Jayant Chauhan <0001jayant@gmail.com>
3 months agogccrs: util/attributes: error on malformed #[export_name] input
Jayant Chauhan [Thu, 15 Jan 2026 17:15:40 +0000 (22:45 +0530)] 
gccrs: util/attributes: error on malformed #[export_name] input

Emit a diagnostic when #[export_name] is used without arguments or
with invalid arguments (non-string literals). This prevents silent
failures or backend crashes when lowering the attribute to GIMPLE,
ensuring the attribute follows the expected form: #[export_name = name].

Fixes Rust-GCC#4387

gcc/rust/ChangeLog:

* util/rust-attributes.cc (check_export_name_attribute): New helper.
(AttributeChecker::visit): Check export_name on functions.

gcc/testsuite/ChangeLog:

* rust/compile/issue-4387.rs: New test.

Signed-off-by: Jayant Chauhan <0001jayant@gmail.com>
3 months agogccrs: nr: Add proper prelude resolution and fill it upon encountering a prelude.
Arthur Cohen [Wed, 14 Jan 2026 17:42:37 +0000 (18:42 +0100)] 
gccrs: nr: Add proper prelude resolution and fill it upon encountering a prelude.

gcc/rust/ChangeLog:

* ast/rust-ast.h: Add Type::Kind.
* ast/rust-macro.h: Use it.
* ast/rust-path.h: Likewise.
* ast/rust-type.h: Likewise.
* resolve/rust-default-resolver.cc (is_lang_impl): New method.
(DefaultResolver::visit): Collect lang item implementations in the
prelude.
* resolve/rust-forever-stack.h: Add new method for lang prelude injection.
* resolve/rust-forever-stack.hxx: Define it.
* resolve/rust-late-name-resolver-2.0.cc (Late::visit): Identifier patterns
can resolve to empty structs or variants.
* resolve/rust-name-resolution-context.h: Improve resolution.

3 months agogccrs: Use attribute value variable instead of raw text
Pierre-Emmanuel Patry [Thu, 15 Jan 2026 15:01:49 +0000 (16:01 +0100)] 
gccrs: Use attribute value variable instead of raw text

gcc/rust/ChangeLog:

* util/rust-attributes.cc (AttributeChecker::visit): Use const
variable.

Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
3 months agogccrs: Add export_name attribute and lower it
Pierre-Emmanuel Patry [Thu, 15 Jan 2026 14:22:09 +0000 (15:22 +0100)] 
gccrs: Add export_name attribute and lower it

The rust language requires the export_name attribute to change the name
of a symbol within the assembly whilst keeping a different name at the
language level. This is used multiple times within rust-for-linux.

gcc/rust/ChangeLog:

* backend/rust-compile-base.cc: Change the assembly name on functions
with the export_name attribute. Do not mangle the name.
* util/rust-attribute-values.h: Add export_name attribute value.
* util/rust-attributes.cc: Add export_name attribute to builtin
attribute list.

gcc/testsuite/ChangeLog:

* rust/compile/export_name.rs: New test.

Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
3 months agogccrs: util/attributes: Check that #[target_feature] is only used on unsafe functions
Jayant Chauhan [Tue, 13 Jan 2026 21:17:00 +0000 (02:47 +0530)] 
gccrs: util/attributes: Check that #[target_feature] is only used on unsafe functions

The #[target_feature] attribute allows code generation that may not be
supported by the runtime hardware, making it inherently unsafe. This
patch adds a check to ensure it is only applied to functions declared
as 'unsafe', matching rustc behavior (E0658).

Fixes Rust-GCC#4234

gcc/rust/ChangeLog:

* util/rust-attributes.cc (AttributeChecker::visit):
Reject #[target_feature] on non-unsafe functions.

gcc/testsuite/ChangeLog:

* rust/compile/issue-4234.rs: New test.
* rust/compile/unsafe11.rs: Mark function as unsafe to
to satisfy new #[target_feature] restriction.

Signed-off-by: Jayant Chauhan <0001jayant@gmail.com>
3 months agogccrs: add non snake case lint
Lucas Ly Ba [Wed, 14 Jan 2026 16:08:43 +0000 (16:08 +0000)] 
gccrs: add non snake case lint

gcc/rust/ChangeLog:

* checks/lints/unused/rust-unused-checker.cc (is_snake_case):
Add warning for variables, methods, functions,
lifetime parameters and modules.
(UnusedChecker::visit):
New.
* checks/lints/unused/rust-unused-checker.h:
New.

gcc/testsuite/ChangeLog:

* rust/compile/non-snake-case_0.rs: New test.

Signed-off-by: Lucas Ly Ba <lucas.ly-ba@outlook.com>
3 months agogccrs: add non upper case globals lint
Lucas Ly Ba [Wed, 14 Jan 2026 16:19:13 +0000 (16:19 +0000)] 
gccrs: add non upper case globals lint

gcc/rust/ChangeLog:

* checks/lints/unused/rust-unused-checker.cc (UnusedChecker::visit):
Add warning for static variables.

gcc/testsuite/ChangeLog:

* rust/compile/non-upper-case-globals_0.rs: New test.

Signed-off-by: Lucas Ly Ba <lucas.ly-ba@outlook.com>
3 months agogccrs: ast: Add new GlobContainer class and use it
Arthur Cohen [Thu, 25 Dec 2025 10:16:22 +0000 (11:16 +0100)] 
gccrs: ast: Add new GlobContainer class and use it

Allow crates to be used as targets for glob imports, like modules and enums.

gcc/rust/ChangeLog:

* ast/rust-ast-full-decls.h (class GlobContainer): New.
* ast/rust-ast.h (class GlobContainer): New.
(struct Crate): Inherit from GlobContainer.
* ast/rust-item.h (class Module): Likewise.
(class Enum): Likewise.
* resolve/rust-finalize-imports-2.0.cc (GlobbingVisitor::go): Handle crates.
(GlobbingVisitor::visit_crate_container): New.
(GlobbingVisitor::visit): Remove privacy check as it is wrong.
* resolve/rust-finalize-imports-2.0.h: Declare new methods.
* resolve/rust-toplevel-name-resolver-2.0.cc (TopLevel::go): Handle crates.
(TopLevel::visit): Use new insert_glob_container API.
* util/rust-hir-map.cc (Mappings::get_ast_crate_by_node_id_raw): New private method.
(Mappings::get_ast_crate_by_node_id): Use it.
(Mappings::insert_glob_container): New API.
* util/rust-hir-map.h: Likewise.
* resolve/rust-early-name-resolver-2.0.cc (Early::finalize_glob_import): Likewise.

3 months agogccrs: Adds test of issue 1210
lenny.chiadmi-delage [Tue, 6 Jan 2026 16:47:47 +0000 (16:47 +0000)] 
gccrs: Adds test of issue 1210

Adds new test.

Fixes Rust-GCC/gccrs#1210

gcc/testsuite/ChangeLog:

* rust/compile/issue-1210.rs: New test.

Signed-off-by: lenny.chiadmi-delage <lenny.chiadmi-delage@epita.fr>
3 months agogccrs: fixes the error thrown
lenny.chiadmi-delage [Tue, 6 Jan 2026 16:34:52 +0000 (16:34 +0000)] 
gccrs: fixes the error thrown

Removes duplicate error in block expression parsing.
Removes cascading error in match arm parsing.
Adds proper error detection for unterminated expression.

Fixes Rust-GCC/gccrs#1210

gcc/rust/ChangeLog:

* parse/rust-parse-impl-expr.hxx: Removes duplicate errors.
* parse/rust-parse-impl.hxx: Detects when an expression without
block is not properly terminated

Signed-off-by: lenny.chiadmi-delage <lenny.chiadmi-delage@epita.fr>
3 months agogccrs: util/attributes: Error on #[repr] applied to functions
Jayant Chauhan [Tue, 13 Jan 2026 08:10:47 +0000 (13:40 +0530)] 
gccrs: util/attributes: Error on #[repr] applied to functions

The #[repr] attribute is only valid for structs, enums, and unions.
Applying it to a function is invalid and should result in an error.
This patch adds a check in the attribute visitor to reject #[repr]
on functions, matching rustc behavior.

Fixes Rust-GCC#4232

gcc/rust/ChangeLog:

* util/rust-attributes.cc (AttributeChecker::check_attributes): Emit error for #[repr].

gcc/testsuite/ChangeLog:

* rust/compile/issue-4232.rs: New test.

Signed-off-by: Jayant Chauhan <0001jayant@gmail.com>
3 months agogccrs: testsuite: Adds test from issue
lenny.chiadmi-delage [Thu, 8 Jan 2026 11:25:14 +0000 (11:25 +0000)] 
gccrs: testsuite: Adds test from issue

As the issue as been resolved, i just added the test from the issue.

Fixes Rust-GCC/gccrs#1081

gcc/testsuite/ChangeLog:

* rust/compile/issue-1081.rs: New test.

Signed-off-by: lenny.chiadmi-delage <lenny.chiadmi-delage@epita.fr>
3 months agogccrs: testsuite: Adds test from issue 1245
lenny.chiadmi-delage [Thu, 8 Jan 2026 15:13:11 +0000 (15:13 +0000)] 
gccrs: testsuite: Adds test from issue 1245

Added the test from the issue 1245.

Fixes GCC-Rust/gccrs#1245

gcc/testsuite/ChangeLog:

* rust/execute/issue-1245.rs: New test.

Signed-off-by: lenny.chiadmi-delage <lenny.chiadmi-delage@epita.fr>
3 months agogccrs: Fix ICE in insert_associated_trait_impl due to recursion
Harishankar [Tue, 6 Jan 2026 13:50:29 +0000 (19:20 +0530)] 
gccrs: Fix ICE in insert_associated_trait_impl due to recursion

Recursive const blocks containing trait implementations previously caused
an assertion failure (ICE) because the compiler re-visited existing IDs.
This patch adds a check to return early if the ID exists, enabling
graceful handling of recursion.

Fixes Rust-GCC/gccrs#4166

gcc/rust/ChangeLog:

* typecheck/rust-typecheck-context.cc (insert_associated_trait_impl):
Prevent ICE by checking for existing ID.
* typecheck/rust-hir-type-check.h: Update declarations.

gcc/testsuite/ChangeLog:

* rust/compile/issue-4166.rs: New test.

Signed-off-by: Harishankar <harishankarpp7@gmail.com>
3 months agogccrs: util/attributes: error on malformed #[link_section] input
Jayant Chauhan [Fri, 9 Jan 2026 23:47:33 +0000 (05:17 +0530)] 
gccrs: util/attributes: error on malformed #[link_section] input

Emit a diagnostic when #[link_section] is used without arguments on
functions or static items, matching rustc behavior. This prevents
silent acceptance of empty attributes and provides a helpful
diagnostic that shows the expected form.

Fixes Rust-GCC#4229

gcc/rust/ChangeLog:

* util/rust-attributes.cc (check_link_section_attribute): New helper.
(AttributeChecker::visit): Check link_section on functions and statics.

gcc/testsuite/ChangeLog:

* rust/compile/link_section-malformed.rs: New test.

Signed-off-by: Jayant Chauhan <0001jayant@gmail.com>
3 months agogccrs: Revert "gccrs: Remove the template parameter
Philip Herron [Wed, 3 Sep 2025 15:55:46 +0000 (16:55 +0100)] 
gccrs: Revert "gccrs: Remove the template parameter

This reverts commit a50fb38f36506e02139f3ff9343e099c2f5508d7 as it breaks
gcc5 bootstrap.

gcc/rust/ChangeLog:

* typecheck/rust-tyty.cc (VariantDef::clone): revert
(VariantDef::monomorphized_clone): likewise

Signed-off-by: Philip Herron <herron.philip@googlemail.com>
3 months agogccrs: Remove the template parameter so clang format stops barfing on this
Philip Herron [Wed, 3 Sep 2025 11:43:22 +0000 (12:43 +0100)] 
gccrs: Remove the template parameter so clang format stops barfing on this

Change this formatting, so clang format stops formatting this wierd for me.

gcc/rust/ChangeLog:

* typecheck/rust-tyty.cc (VariantDef::clone): remove template param
(VariantDef::monomorphized_clone): likewise

Signed-off-by: Philip Herron <herron.philip@googlemail.com>
3 months agoa68: Allow full range of negative values in integral denotations
James Bohl [Fri, 27 Feb 2026 12:32:16 +0000 (07:32 -0500)] 
a68: Allow full range of negative values in integral denotations

Signed-off-by: James Bohl <bohlj47@gmail.com>
gcc/algol68/ChangeLog

* a68-low-prelude.cc (a68_lower_negate2): Annotate denotation
as being negated.
* a68-low-units.cc (a68_lower_denotation): Allow the full range
of negative values if the denotation is negated.
* a68-types.h (struct NODE_T): Add negated field.
(NEGATED): Define.
* a68-parser.cc (a68_new_node): Initialize NEGATED.

gcc/testsuite/ChangeLog

* algol68/compile/error-denotation-2.a68: Check for no error on
minimum negative value.
* algol68/compile/error-denotation-3.a68: Likewise.

3 months agovect: enforce trapping math checks when early breaks [PR124142]
Tamar Christina [Fri, 27 Feb 2026 14:21:36 +0000 (14:21 +0000)] 
vect: enforce trapping math checks when early breaks [PR124142]

The loop

void
__attribute__((noipa))
bug (int f, int *w, int l)
{
  int i;
  for (i = 0; i < l; ++i)
    while (f % w[i]) w[i]--;
}

is an uncounted loop which performs a trapping operation during vectorization.
Normally the vectorizer doesn't stop vectorization if the operation can't be
masked (though ifcvt does).

For Early breaks however this is unsafe as we are introducing a trap where the
original scalar code may not have.

Some tests now fail to vectorize (including some tsvc ones) which I could have
xfail'ed but instead decided to add -fno-trapping-math just to get the
additional coverage they provide.

gcc/ChangeLog:

PR tree-optimization/124142
* tree-vect-data-refs.cc (vect_analyze_early_break_dependences):
For early break require masking when operation can trap.

gcc/testsuite/ChangeLog:

PR tree-optimization/124142
* gcc.dg/vect/tsvc/vect-tsvc-s481.c: Add -fno-trapping-math.
* gcc.dg/vect/tsvc/vect-tsvc-s332.c: Likewise.
* gcc.dg/vect/tsvc/vect-tsvc-s482.c: Likewise.
* gcc.dg/vect/vect-early-break_61.c: Likewise.
* gcc.target/aarch64/vect-early-break-cbranch_3.c: Likewise.
* gcc.dg/vect/vect-early-break_143-pr124142.c: New test

3 months ago[1/n][PR tree-optimization/90036] All refinement of entries in DOM hash table
Jeff Law [Sun, 22 Feb 2026 16:26:38 +0000 (09:26 -0700)] 
[1/n][PR tree-optimization/90036] All refinement of entries in DOM hash table

This is the first of a few patches to fix pr90036.

I've gone back and forth about whether or not to fix this for gcc-16 or queue
for gcc-17.  Ultimately I don't think these opportunities are *that* common, so
I don't expect widespread code generation changes.

I'm going to drop the changes in a small series as the changes stand on their
own.  This gives us better bisectability.

--

The first patch allows refinement of existing equivalences in a case where we'd
missed it before.  In particular say we have <res> = <expr> in the expression
hash table.  We later use <expr> in a way that creates a temporary expression
equivalence.  We'll fail to record that temporary expression equivalence
because of the pre-existing entry in the hash table.

And just to be clear, the old equivalence will be restored when we leave the
domwalk scope of the newer, more precise, hash table entry.

This matters for pr90036 as we initially enter a simple equivalence in the
table with the result being an SSA_NAME.  Later we have a conditional that
allows us to refine the result to a constant.  And we're going to need that
constant result to trigger additional simplifications and equivalence
discovery.

Bootstrapped and regression tested on x86_64, aarch64, riscv64 and probably a
couple others as well.  It's also been tested across the embedded targets in my
tester.  Pushing to the trunk.

PR tree-optimization/90036
gcc/
* tree-ssa-scopedtables.cc (avail_exprs_stack::record_cond): Always
record the new hash table entry.

3 months agoc++: add test for DR 3110
Marek Polacek [Fri, 27 Feb 2026 14:12:52 +0000 (09:12 -0500)] 
c++: add test for DR 3110

We already compile this code.

DR 3110

gcc/testsuite/ChangeLog:

* g++.dg/DRs/dr3110.C: New test.

3 months agotop-level: Rename forgejo sanity checks
Christophe Lyon [Fri, 27 Feb 2026 09:06:25 +0000 (10:06 +0100)] 
top-level: Rename forgejo sanity checks

These tests currently appear with 'testjob' as name in Forgejo, which
is not very informative.

This patch renames 'testjob' to 'format-checks' which is hopefully
clearer, and renames the sanity-checks.yaml file to
format-checks.yaml.

ChangeLog:
* .forgejo/workflows/sanity-checks.yaml: Rename testjob to
format-checks. Rename file to ...
* .forgejo/workflows/format-checks.yaml: ... this.

3 months agomiddle-end: allow expand_vector_broadcast to broadcast QImode to BImode vector [PR...
Xi Ruoyao [Fri, 27 Feb 2026 08:54:40 +0000 (16:54 +0800)] 
middle-end: allow expand_vector_broadcast to broadcast QImode to BImode vector [PR 124280]

A boolean value is in QImode, but a vector of booleans is in VxxBImode.
And both AArch64 SVE and RISC-V V have vec_duplicatevXXbi accepting a QI
scalar.  Allow this case.

PR middle-end/124280

gcc/

* optabs.cc (expand_vector_broadcast): Allow broadcasting QImode
to BImode vector.

gcc/testsuite/

* gcc.c-torture/compile/pr124280.c: New test.

3 months agoRevert "[PR115042, LRA]: Postpone processing of new reload insns" as it
Vladimir N. Makarov [Fri, 27 Feb 2026 13:32:06 +0000 (08:32 -0500)] 
Revert "[PR115042, LRA]: Postpone processing of new reload insns" as it
results in numerous failures on some secondary targets.

This reverts commit 9a7da540b63e7d77e747b5cdd6fdbbd3954e28c8.

3 months agoipa-prop: Reset param_index of indir. edge when there are no jfuncs (PR123229)
Martin Jambor [Fri, 27 Feb 2026 13:26:13 +0000 (14:26 +0100)] 
ipa-prop: Reset param_index of indir. edge when there are no jfuncs (PR123229)

In my commit r16-6149-g14ee9a2b41bafa I have added an early exit to
update_indirect_edges_after_inlining which was however wrong, as
demonstrated by the PR123229 testcase.  This patch reverts that change,
restoring the previous behavior in this regard.

In the testcase, the edge being inlined is a call to a thunk, which do
not have jump functions associated with them.  This means that with
the early exit we neither reset the parameter index associated with
the indirect edge nor update the edges and the usage flags associated
with them

In the testcase, this meant that the param_used_by_indirect_call flag
was not updated, which in turn meant that the inlining edge cost cache
did not copy necessary information into the context which led to the
fact that two contexts which were not the same were considered the
same, and the checking code that evaluations in the cache should match
a re-evaluation triggered.  But unfortunately this bug can probably
have all sorts of weird and unexpected consequences.

The testcase also shows that inlined thunks are a barrier to
devirtualization which is something I will try to address next stage1.

gcc/ChangeLog:

2026-02-27  Martin Jambor  <mjambor@suse.cz>

PR ipa/123229
* ipa-prop.cc (update_indirect_edges_after_inlining): Reset parameter
index associated with an indirect edge if the inlined edge does not
have any jump functions.

gcc/testsuite/ChangeLog:

2026-02-27  Martin Jambor  <mjambor@suse.cz>

PR ipa/123229
* g++.dg/ipa/pr123229.C: New test.

3 months agoaarch64: Fix NULL structures in base tunings being silently ignored by JSON parser
Soumya AR [Thu, 26 Feb 2026 04:55:48 +0000 (04:55 +0000)] 
aarch64: Fix NULL structures in base tunings being silently ignored by JSON parser

In the JSON parser's parse_object_helper for const pointer members, we have a
if (!member) return; guard at entry.

This is because the function works by dereferencing the member pointer and
making a non-const copy of the object it points to. The parser can then
override this copy with new values and re-assign the pointer to the new object.

This is problematic if member is NULL in the base tunings, but provided in the
JSON file, which can happen with some combinations of -mcpu and
-muser-provided-CPU.

For example, with no -mcpu, if the generic tunings has issue_info set to
nullptr (eg. generic_armv8_a), then even if the user does provide issue_info
data in the JSON file, parse_object_helper will silently ignore it.

The naive fix for this is to create a zero-initialized copy of the object if
it is NULL, and then override it with the new values from the JSON file.

However, this results in another problem: if the user provides only selective
fields of the strucutre, the rest of the fields will be set to zero and
potentially interfere with costing decisions.

I think at that point the best we can do is emit a warning. With David Malcolm's
improved JSON diagnostics, we can be specific about the problematic structure as
well.

----

Since we potentially zero-initialize objects, I had to add a default constructor
to objects that only had parameterized constructors.

Bootstrapped and regtested on aarch64-linux-gnu, OK for trunk?

Signed-off-by: Soumya AR <soumyaa@nvidia.com>
gcc/ChangeLog:

* config/aarch64/aarch64-json-tunings-parser.cc (parse_object_helper):
Zero-initialize objects that are NULL in the base tunings, if provided
in JSON tunings.
* config/aarch64/aarch64-protos.h (struct sve_vec_cost): Add default
constructor.
(struct aarch64_simd_vec_issue_info): Likewise.
(struct aarch64_sve_vec_issue_info): Likewise.

gcc/testsuite/ChangeLog:

* gcc.target/aarch64/aarch64-json-tunings/nullptr-issue-info.c:
New test.
* gcc.target/aarch64/aarch64-json-tunings/nullptr-issue-info.json:
New test input.

3 months agoipa: Meet same speculative and certain polymorphic contexts (PR123629)
Martin Jambor [Fri, 27 Feb 2026 10:58:01 +0000 (11:58 +0100)] 
ipa: Meet same speculative and certain polymorphic contexts (PR123629)

PR 123629 is a somewhat complicated situation.  IPA-CP clones for a
known speculative polymorphic context in a situation when a caller
bringing the known context has itself already been cloned, and now we
can determine that the context coming from that clone is not
speculative (but otherwise the same).  This confuses the meet function
of contexts which gives up and returns a useless context, which in
turn triggers an assert because the value we originally cloned for is
nowhere to be found in the data structures which describe what we know
about the function clone.

This patch changes the meet function so that it can deal with this
situation.  When one of the contexts does not have a certain
component, the other one is moved to the speculative one.

gcc/ChangeLog:

2026-02-23  Martin Jambor  <mjambor@suse.cz>

PR ipa/123629
* ipa-polymorphic-call.cc
(ipa_polymorphic_call_context::meet_with): When an outer context is
NULL, call make_speculative on the other one.

3 months agoAArch64: Don't enable ptest elimination for partial vectors [PR124162]
Tamar Christina [Fri, 27 Feb 2026 07:41:20 +0000 (07:41 +0000)] 
AArch64: Don't enable ptest elimination for partial vectors [PR124162]

The following loop

char b = 41;
int main() {
  signed char a[31];
#pragma GCC novector
  for (int c = 0; c < 31; ++c)
    a[c] = c * c + c % 5;
  {
    signed char *d = a;
#pragma GCC novector
    for (int c = 0; c < 31; ++c, b += -16)
      d[c] += b;
  }
  for (int c = 0; c < 31; ++c) {
    signed char e = c * c + c % 5 + 41 + c * -16;
    if (a[c] != e)
      __builtin_abort();
  }
}

compiled with -O2 -ftree-vectorize -msve-vector-bits=256 -march=armv8.2-a+sve

generates

        ptrue   p6.b, vl32
        add     x2, x2, :lo12:.LC0
        add     w5, w5, 16
        ld1rw   z25.s, p6/z, [x2]
        strb    w5, [x6, #:lo12:.LANCHOR0]
        mov     w0, 0
        mov     p7.b, p6.b
        mov     w2, 31
        index   z30.s, #0, #1
        mov     z26.s, #5
        mov     z27.b, #41
.L6:
        mov     z29.d, z30.d
        movprfx z28, z30
        add     z28.b, z28.b, #240
        mad     z29.b, p6/m, z28.b, z27.b
        mov     w3, w0
        movprfx z31, z30
        smulh   z31.s, p6/m, z31.s, z25.s
        add     w0, w0, 8
        asr     z31.s, z31.s, #1
        msb     z31.s, p6/m, z26.s, z30.s
        add     z31.b, z31.b, z29.b
        ld1b    z29.s, p7/z, [x1]
        cmpne   p7.b, p7/z, z31.b, z29.b
        b.any   .L15
        add     x1, x1, 8
        add     z30.s, z30.s, #8
        whilelo p7.s, w0, w2
        b.any   .L6

Which uses a predicate for the first iteration where all bits are 1. i.e. all
lanes active. This causes the result of the cmpne to set the wrong CC flags.
The second iteration uses

        whilelo p7.s, w0, w2

which gives the correct mask layout going forward.

This is due to the CSE'ing code that tries to share predicates as much as
possible.  In aarch64_expand_mov_immediate we do during predicate generation

  /* Only the low bit of each .H, .S and .D element is defined,
     so we can set the upper bits to whatever we like.  If the
     predicate is all-true in MODE, prefer to set all the undefined
     bits as well, so that we can share a single .B predicate for
     all modes.  */
  if (imm == CONSTM1_RTX (mode))
    imm = CONSTM1_RTX (VNx16BImode);

which essentially maps all predicates to .b unless the predicate is created
outside the immediate expansion code.

It creates the sparse predicate for data lane VNx4QI from a VNx16QI and then
has a "conversion" operation. The conversion operation results in a simple copy:

        mov     p7.b, p6.b

because in the data model for partial vectors the upper lanes are *don't care*.
So computations using this vector are fine.  However for comparisons, or any
operations setting flags the predicate value does matter otherwise we get the
wrong flags as the above.

Additionally we don't have a way to distinguish based on the predicate alone
whether the operation is partial or not. i.e. we have no "partial predicate"
modes.

two ways to solve this:

1. restore the ptest for partial vector compares.  This would slow down the loop
   though and introduce a second ptrue .s, VL8 predicate.

2. disable the sharing of partial vector predicates.  This allows us to remove
   the ptest.  Since the ptest would introduce a second predicate here anyway
   I'm leaning towards disabling sharing between partial and full predicates.

For the patch I ended up going with 1.  The reason is that this is that
unsharing the predicate does end up being pessimistic loops that only operate on
full vectors only (which are the majority of the cases).

I also don't fully understand all the places we depend on this sharing (and
about 3600 ACLE tests fail assembler scans).  I suspect one way to possibly
deal with this is to perform the sharing on GIMPLE using the new isel hook and
make RTL constant expansion not manually force it.  Since in gimple it's easy to
follow compares from a back-edge to figure out if it's safe to share the
predicate.

I also tried changing it so that during cond_vec_cbranch_any we perform an AND
with the proper partial predicate.  But unfortunately folding doesn't realize

that the and on the latch edge is useless (e.g.  whilelo p7.s, w0, w2 makes it
a no-op) and that the AND should be moved outside the loop.  This is something
that again isel should be able to do.

I also tried changing the

        mov     p7.b, p6.b

into an AND, while this worked, folding didn't quite get that the and can be
eliminated.  And this also pessimists actual register copies.

So for now I just undo ptest elimination for partial vectors for GCC 16 and will
revisit it for GCC 17 when we extend ptest elimination.

gcc/ChangeLog:

PR target/124162
* config/aarch64/aarch64-sve.md (cond_vec_cbranch_any,
cond_vec_cbranch_all): Drop partial vectors support.

gcc/testsuite/ChangeLog:

PR target/124162
* gcc.target/aarch64/sve/vect-early-break-cbranch_16.c: New test.

3 months agophiopt: Reject hot/cold predictors for early phiopt [PR117935]
Andrew Pinski [Thu, 26 Feb 2026 20:06:51 +0000 (12:06 -0800)] 
phiopt: Reject hot/cold predictors for early phiopt [PR117935]

In this case, early phiopt would get rid of the user provided predicator
for hot/cold as it would remove the basic blocks. The easiest and best option is
for early phi-opt don't do phi-opt if the middle basic-block(s) have either
a hot or cold predict statement. Then after inlining, jump threading will most likely
happen and that will keep around the predictor.

Note this only needs to be done for match_simplify_replacement and not the other
phi-opt functions because currently only match_simplify_replacement is able to skip
middle bb with predicator statements in it.

This allows for MIN/MAX/ABS/NEG still even with the predicators there as those will
less likely be jump threaded later on.  The main thing that is rejected is ssa names
that are alone where one of the comparisons operands is that one or if we produce
a comparison from the phiopt.

Changes since v1:
 * v2: Only reject if the result was the comparison.

Bootstrapped and tested on x86_64-linux-gnu.

PR tree-optimization/117935

gcc/ChangeLog:

* tree-ssa-phiopt.cc (contains_hot_cold_predict): New function.
(match_simplify_replacement): Return early if early_p and one of
the middle bb(s) have a hot/cold predict statement.

gcc/testsuite/ChangeLog:

* gcc.dg/predict-24.c: New test.
* gcc.dg/predict-25.c: New test.

Signed-off-by: Andrew Pinski <andrew.pinski@oss.qualcomm.com>
3 months agocobol/123238 - fix LTO bootstrap with cobol enabled
Richard Biener [Thu, 26 Feb 2026 07:42:54 +0000 (08:42 +0100)] 
cobol/123238 - fix LTO bootstrap with cobol enabled

This works around an issue resulting in link-failure of cobol1 when
LTO bootstrap is used by removing unused <iostream> from the cobol
frontend.

PR cobol/123238
gcc/cobol/
* lexio.cc: Remove <iostream> include.
(cdftext::process_file): Remove if (false) gated use of
iostream code.

3 months agoFortran: New test cases from [PR123947]
Jerry DeLisle [Thu, 26 Feb 2026 04:50:57 +0000 (20:50 -0800)] 
Fortran: New test cases from [PR123947]

This PR was fixed by the fix for PR124235. Adding test cases to
avoid regressions.

PR fortran/123947

gcc/testsuite/ChangeLog:

* gfortran.dg/pr123947_1.f90: New test.
* gfortran.dg/pr123947_2.f90: New test.

3 months agoDaily bump.
GCC Administrator [Fri, 27 Feb 2026 00:16:38 +0000 (00:16 +0000)] 
Daily bump.

3 months agocobol: Fix FUNCTION TRIM.
Robert Dubner [Thu, 26 Feb 2026 19:42:51 +0000 (14:42 -0500)] 
cobol: Fix FUNCTION TRIM.

The FUNCTION TRIM now works properly with UTF16 inputs.

According to the ISO specification, the return type of a number of
intrinsic functions is defined by the variable type of their first
parameter.  A number of changes here cause more functions to honor that
requirement.

gcc/cobol/ChangeLog:

* parse.y: BASECONVERT and TRIM take their type from their first
parameter.
* parse_util.h (intrinsic_return_field): The function_descrs[] is
adjusted so that a number of functions take their return type from
their first calling parameter.  intrinsic_return_field() has been
refined.
* symbols.cc (new_alphanumeric):  Use set_explicit() instead of
set() in support of refined intrinsic function return type.

libgcobol/ChangeLog:

* intrinsic.cc (__gg__trim):  Rewritten to work properly, and avoid
unnecessary variable codeset encoding translation.

3 months agoAda: Fix bogus visibility error for iterated element association with key
Eric Botcazou [Thu, 26 Feb 2026 21:13:22 +0000 (22:13 +0100)] 
Ada: Fix bogus visibility error for iterated element association with key

The problem is that the Resolve_Iterated_Association procedure, unlike its
sibling Resolve_Iterated_Component_Association, preanalyzes a copy of the
specification so, in a generic context, global references cannot later be
captured.  This changes it to preanalyze the specification directly, which
requires a small adjustment during expansion.

gcc/ada/
PR ada/124201
* exp_aggr.adb (Expand_Iterated_Component): Replace the iteration
variable in the key expression and iterator filter, if any.
* sem_aggr.adb (Resolve_Iterated_Component_Association): Preanalyze
the specification and key expression directly.

gcc/testsuite/
* gnat.dg/generic_inst17.adb: New test.

3 months agolibiberty: fix resource exhaustion in rust demangler (PR demangler/106641)
Ruslan Valiyev [Thu, 26 Feb 2026 19:15:06 +0000 (19:15 +0000)] 
libiberty: fix resource exhaustion in rust demangler (PR demangler/106641)

demangle_binder() parses the bound_lifetimes count as a base-62
integer with no upper bound.  A crafted symbol can encode a huge
lifetime count in very few bytes, causing OOM or CPU hang.

Cap bound_lifetimes at 1024 and check rdm->errored in the loop
so it bails out early on errors during iteration.

libiberty/ChangeLog:

PR demangler/106641
* rust-demangle.c (demangle_binder): Reject bound_lifetimes
above 1024 to prevent resource exhaustion from crafted symbols.
Add rdm->errored check in the loop condition.
* testsuite/rust-demangle-expected: Add regression test.

Signed-off-by: Ruslan Valiyev <linuxoid@gmail.com>
3 months ago[PR115042, LRA]: Postpone processing of new reload insns
Vladimir N. Makarov [Thu, 26 Feb 2026 20:01:53 +0000 (15:01 -0500)] 
[PR115042, LRA]: Postpone processing of new reload insns

LRA in this PR can not find regs for asm insn which requires 11
general regs when 13 regs are available.  Arm subtarget (thumb) has
two stores with low and high general regs.  LRA systematically chooses
stores involving low regs as having less costs and there are only 8
low regs.  That is because LRA (and reload) chooses (mov) insn
alternatives independently from register pressure.

The proposed patch postpones processing new reload insns until reload
pseudos are assigned and after that considers new reload insns.
Depending on the assignment LRA chooses insns involving low or high
regs.  Generally speaking it can change code generation in better or
worse way but it should be a rare case.

The patch does not contain the test as original test is too big (300KB
of C code).  Unfortunately cvise after 2 days of work managed to
decrease the test only to 100KB file.

gcc/ChangeLog:

PR target/115042
* lra-int.h (lra_constraint_insn_stack_clear): New prototype.
* lra.cc (lra_constraint_insn_stack2): New vector.
(lra_constraint_insn_stack_clear): New function.
(lra): Initialize/finalize lra_constraint_insn_stack2.
* lra-constraints.cc (lra_constraints): Use
lra_constraint_insn_stack_clear to postpone processing new reload
insns.

3 months agoc++/reflection: fix crash with substitute [PR124204]
Marek Polacek [Tue, 24 Feb 2026 16:08:55 +0000 (11:08 -0500)] 
c++/reflection: fix crash with substitute [PR124204]

Here we crash in implicit_conversion on:

  /* An argument should have gone through convert_from_reference.  */
  gcc_checking_assert (!expr || !TYPE_REF_P (from));

so let's do that.

PR c++/124204

gcc/cp/ChangeLog:

* reflect.cc (eval_can_substitute): Call convert_from_reference.

gcc/testsuite/ChangeLog:

* g++.dg/reflect/substitute5.C: New test.

Reviewed-by: Jason Merrill <jason@redhat.com>
3 months agoFortran: Use -pthread on target *-*-freebsd*
Steve Kargl [Mon, 23 Feb 2026 18:18:00 +0000 (10:18 -0800)] 
Fortran: Use -pthread on target *-*-freebsd*

PR fortran/88076

gcc/testsuite/ChangeLog:

* gfortran.dg/coarray/caf.exp: If the target is a FreeBSD
system add -pthread when running tests.

3 months agoFortran: Regenerate autoconf/automake files.
Jerry DeLisle [Thu, 19 Feb 2026 20:42:21 +0000 (12:42 -0800)] 
Fortran: Regenerate autoconf/automake files.

PR libfortran/88076

libgfortran/ChangeLog:

* Makefile.in: Regenerate.
* aclocal.m4: Regenerate.
* config.h.in: Regenerate.
* configure: Regenerate.

3 months agoFortran: Make caf_shmem build pthread presence aware.
Andre Vehreschild [Wed, 18 Feb 2026 09:14:58 +0000 (10:14 +0100)] 
Fortran: Make caf_shmem build pthread presence aware.

On some system pthreads needs special treatment.  Use the present
AX_PTHREADS macro to figure what is needed.

libgfortran/ChangeLog:

* Makefile.am: Only build caf_shmem when pthreads is available.
* configure.ac: Check for pthreads availability and needed
flags.

gcc/testsuite/ChangeLog:

* gfortran.dg/coarray/caf.exp: Only add caf_shmem to tests when
is build.

3 months agoFortran: Fix run time failures when compiled with -m32
Jerry DeLisle [Sun, 15 Feb 2026 23:30:39 +0000 (15:30 -0800)] 
Fortran: Fix run time failures when compiled with -m32

PR fortran/124080

libgfortran/ChangeLog:

* caf/shmem/hashmap.c (hash): Use size_t instead of
uint64.
(hmiadd): Use size_t instead of ssize_t.
(scan_inside_lookahead): Likewise.
(scan_empty): Likewise.

3 months agoFortran: Cleanup documentation for coarray -lcaf_shmem.
Jerry DeLisle [Sun, 15 Feb 2026 23:27:59 +0000 (15:27 -0800)] 
Fortran: Cleanup documentation for coarray -lcaf_shmem.

PR fortran/88076

gcc/fortran/ChangeLog:

* invoke.texi: Use corrected english.

3 months agoFortran: Add new testcase for PR121360
Jerry DeLisle [Sun, 15 Feb 2026 23:17:17 +0000 (15:17 -0800)] 
Fortran: Add new testcase for PR121360

This test case is from the PR adjusted to reduce the execution
time and includes a suitable test condition. It was tested with
export GFORTRAN_NUM_IMAGES=200 which of course takes a bit of
time.

PR fortran/121360

gcc/testsuite/ChangeLog:

* gfortran.dg/coarray/lock_3.f90: New test.

3 months agoFortran: Adjust test to work with multiple images.
Jerry DeLisle [Sat, 14 Feb 2026 23:46:44 +0000 (15:46 -0800)] 
Fortran: Adjust test to work with multiple images.

The testcase would fail occasionally with multiple images because the
use of acquired_lock is a non-blocking LOCK. Only UNLOCK this if the
LOCK was acquired. Keep track of the loop count and bail out if the
limit is reached.

During testing it was observed that the loop count could go as high as
33 times depending on system conditions, running the test outside the
testsuite 1000's of times.

PR fortran/121429

gcc/testsuite/ChangeLog:

* gfortran.dg/coarray/lock_1.f90: Updated.

3 months agoFortran: Fix coarray shared mem [PR121429]
Andre Vehreschild [Sat, 14 Feb 2026 19:37:07 +0000 (11:37 -0800)] 
Fortran: Fix coarray shared mem [PR121429]

PR fortran/121429

libgfortran/ChangeLog:

* caf/shmem.c (_gfortran_caf_deregister): Add a call to
sync_team.

gcc/testsuite/ChangeLog:

* gfortran.dg/coarray/deallocate_sync.f90: New test.

3 months agoFortran: Fix form team in caf_shmem [PR124071]
Andre Vehreschild [Thu, 12 Feb 2026 10:13:25 +0000 (11:13 +0100)] 
Fortran: Fix form team in caf_shmem [PR124071]

Form team w/o new_index= tried to compute the new_index assuming that
images are scattered onto to teams. I.e. the distribution is:

Image index: 1 2 3 4 5 6
New team no: 1 2 1 2 1 2 , i.e. scattered

But this algorithm failed, when the images were linearly distributed
into the new teams, like in:

Image index: 1 2 3 4 5 6
New team no: 1 1 1 2 2 2

The new approach is to look up a free index in the new team, when the
computed one is already taken.  Because F2018, 11.6.9, §4 states the
new index is processor dependent, it feels safe to do it this way.

PR fortran/124071

libgfortran/ChangeLog:

* caf/shmem.c (_gfortran_caf_form_team): Take free index, when
computed one is already taken.

gcc/testsuite/ChangeLog:

* gfortran.dg/coarray/form_team_1.f90: New test.

3 months agoFortran: Add a shared memory coarray implementation [PR88076]
Andre Vehreschild [Thu, 12 Feb 2026 19:17:47 +0000 (11:17 -0800)] 
Fortran: Add a shared memory coarray implementation [PR88076]

Add caf_shmem, a shared memory multi process coarray implementation.
The library adheres to the existing coarray ABI and is controlled by
environment variables for selecting the number of images and virtual
memory size.

Co-authored by:  Thomas Koenig  <tkoenig@gcc.gnu.org>
 Nicolas Koenig  <koenigni@gcc.gnu.org>

PR fortran/88076

libgfortran/ChangeLog:

* Makefile.am: Add new library.
* Makefile.in: Regenerated
* acinclude.m4: Add check for reasonable clzl.
* config.h.in: Regenerate.
* configure: Regenerate.
* configure.ac: Call clzl check.

3 months agoFortran: Ensure constant strings are sent correctly to caf.
Andre Vehreschild [Fri, 6 Feb 2026 14:01:52 +0000 (15:01 +0100)] 
Fortran: Ensure constant strings are sent correctly to caf.

gcc/fortran/ChangeLog:

* trans-intrinsic.cc (conv_caf_send_to_remote): Fix treating constant
char arrays when used in coarray sends.

3 months agoFortran: Fix coarray assignment when rhs is complicated.
Andre Vehreschild [Wed, 4 Feb 2026 12:40:41 +0000 (13:40 +0100)] 
Fortran: Fix coarray assignment when rhs is complicated.

PR fortran/121360

gcc/fortran/ChangeLog:

* resolve.cc: Introduce temporary holding rhs when lhs is a
coarray expresssion.

3 months agoFortran: Sync coarray images on exit.
Andre Vehreschild [Thu, 20 Nov 2025 11:52:24 +0000 (12:52 +0100)] 
Fortran: Sync coarray images on exit.

libgfortran/ChangeLog:

* caf/shmem.c (_gfortran_caf_finalize): Add a sync on the
initial team on exit.

3 months agoFortran: Fix creating shared memory on macOS.
Andre Vehreschild [Fri, 5 Sep 2025 12:40:24 +0000 (14:40 +0200)] 
Fortran: Fix creating shared memory on macOS.

On MacOS mmap() very often does not respect the provided base address
for the shared memory segment.  On the other hand the mutexes have to be
on the same (virtual) address for each process to function properly.
Therefore try a configurable number of times to get the same address for
the shared memory segment on MacOS.  If that fails the user is notified
and the program terminates.

gcc/fortran/ChangeLog:

* invoke.texi: Document new environment variable GFORTRAN_IMAGE_
RESTARTS_LIMIT.

libgfortran/ChangeLog:

* caf/shmem.c (_gfortran_caf_finalize): Ensure all memory is
freeed.
* caf/shmem/allocator.c (allocator_shared_malloc): Just assert
that an index is within its bounds.
* caf/shmem/shared_memory.c (shared_memory_init): When shared
memory can not be placed at desired address, exit the image with
a certain code to let the supervisor restart the image.
(shared_memory_cleanup): Only the supervisor must unlink the shm
object.
* caf/shmem/supervisor.c (GFORTRAN_ENV_IMAGE_RESTARTS_LIMITS):
New environment variable.
(get_image_restarts_limit): Get the limit on image restarts
(accumulates over all) form the environment variable or default
to 4000.
(ensure_shmem_initialization): Add error handling.
(startWorker): Start a single worker/image.
(kill_all_images): Kill all images.
(supervisor_main_loop): When a worker/image reports a shared
memory issue just try to restart it.
* caf/shmem/thread_support.c (initialize_shared_mutex): Mark
mutex robust on plattforms that support it.
(initialize_shared_errorcheck_mutex): Same.

3 months agoFortran: Fix caf_shmem syncing on Windows.
Andre Vehreschild [Wed, 6 Aug 2025 13:36:54 +0000 (15:36 +0200)] 
Fortran: Fix caf_shmem syncing on Windows.

Cygwin's libc's pthread implementation does not support setting
pshared on mutexes and condition variables.  Therefore Windows
synchronisation primitives needed to be used directly.
On MSYS2/UCRT64 fork and mmap are not available and Windows core
functionality needs to be used.

libgfortran/ChangeLog:

* caf/shmem.c (_gfortran_caf_init): Cleanup thread helper after
use.
(_gfortran_caf_finalize): Same.
(_gfortran_caf_register): Handle lock_t correctly on Windows.
(GEN_OP): Prevent warnings on non-initialized.
(_gfortran_caf_lock): Handle lock_t correctly on Windows.
(_gfortran_caf_unlock): Same.
(_gfortran_caf_random_init): Fix formatting.
(_gfortran_caf_form_team): Add more images to counter_barrier.
* caf/shmem/alloc.c: Use routines from thread_support.
* caf/shmem/allocator.c (allocator_lock): Same.
(allocator_unlock): Same.
* caf/shmem/allocator.h: Same.
* caf/shmem/collective_subroutine.c (get_collsub_buf): Same.
* caf/shmem/collective_subroutine.h: Same.
* caf/shmem/counter_barrier.c (lock_counter_barrier): Same.
(unlock_counter_barrier): Same.
(counter_barrier_init): Same.
(counter_barrier_wait): Same.
(change_internal_barrier_count): Same.
(counter_barrier_add): Same.
(counter_barrier_init_add): Only increase value w/o signaling.
(counter_barrier_get_count): Use routines from thread_support.
* caf/shmem/counter_barrier.h: Same.
(counter_barrier_init_add): New routine.
* caf/shmem/shared_memory.c: Use windows routines where
applicable.
(shared_memory_set_env): Same.
(shared_memory_get_master): Same.
(shared_memory_init): Same.
(shared_memory_cleanup): Same.
* caf/shmem/shared_memory.h: Use types from thread_support.
* caf/shmem/supervisor.c: Use windows routines where applicable.
(get_memory_size_from_envvar): Same.
(ensure_shmem_initialization): Same.
(supervisor_main_loop): Use windows process start on windows
without fork().
* caf/shmem/supervisor.h: Use types from thread_support.
* caf/shmem/sync.c (lock_table): Use routines from thread_support.
(unlock_table): Same.
(sync_init): Same.
(sync_init_supervisor): Same.
(sync_table): Same.
(lock_event): Same.
(unlock_event): Same.
(event_post): Same.
(event_wait): Same.
* caf/shmem/sync.h: Use types from thread_support.
* caf/shmem/teams_mgmt.c (update_teams_images): Use routines from
thread_support.
* caf/shmem/thread_support.c: Add synchronisation primitives for
windows.
(smax): Windows only: Max for size_t.
(get_handle): Windows only: Get the windows handle for a given
id or create a new one, if it does not exist.
(get_mutex): Windows only: Shortcut for getting a windows mutex
handle.
(get_condvar): Windows only: Same, but for condition variable.
(thread_support_init_supervisor): Windows only: Clear tracker of
allocated handle ids.
(caf_shmem_mutex_lock): Windows only: Implememtation of lock,
(caf_shmem_mutex_trylock): Windows only: trylock, and
(caf_shmem_mutex_unlock): Windows only:  unlock for Windows.
(bm_is_set): Windows only: Check a bit is set in a mask.
(bm_clear_bit): Windows only: Clear a bit in a mask.
(bm_set_mask): Windows only: Set all bits in a mask.
(bm_is_none): Windows only: Check if all bits are cleared.
(caf_shmem_cond_wait): Windows only: Condition variable
implemenation fro wait,
(caf_shmem_cond_broadcast): Windows only: broadcast, and
(caf_shmem_cond_signal): Windows only: signal on Windows.
(caf_shmem_cond_update_count): Windows only: Need to know the
images participating in a condition variable.
(thread_support_cleanup): Windows only: Clean up the handles on
exit.
* caf/shmem/thread_support.h: Conditionally compile the types
as required for Windows and other OSes.

3 months agoFortran: Detect working CLZL or use alternative.
Andre Vehreschild [Mon, 1 Sep 2025 12:11:27 +0000 (14:11 +0200)] 
Fortran: Detect working CLZL or use alternative.

libgfortran/ChangeLog:

* caf/shmem/allocator.c (next_power_of_two): Use sane clzl
implementation or alternative.

3 months agoFortran: Enable coarray tests for multi image use [PR88076]
Andre Vehreschild [Wed, 18 Jun 2025 07:26:22 +0000 (09:26 +0200)] 
Fortran: Enable coarray tests for multi image use [PR88076]

Change some of regression tests to run on single and multiple images.
Add some new tests.

PR fortran/88076

gcc/testsuite/ChangeLog:

* gfortran.dg/coarray/alloc_comp_4.f90: Make multi image
compatible.
* gfortran.dg/coarray/atomic_2.f90: Same.
* gfortran.dg/coarray/caf.exp: Also test caf_shmem and choose
eight images as a default.
* gfortran.dg/coarray/coarray_allocated.f90: Add multi image
support.
* gfortran.dg/coarray/coindexed_1.f90: Same.
* gfortran.dg/coarray/coindexed_3.f08: Same.
* gfortran.dg/coarray/coindexed_5.f90: Same.
* gfortran.dg/coarray/dummy_3.f90: Same.
* gfortran.dg/coarray/event_1.f90: Same.
* gfortran.dg/coarray/event_3.f08: Same.
* gfortran.dg/coarray/event_4.f08: Same.
* gfortran.dg/coarray/failed_images_2.f08: Same.
* gfortran.dg/coarray/image_status_1.f08: Same.
* gfortran.dg/coarray/image_status_2.f08: Same.
* gfortran.dg/coarray/lock_2.f90: Same.
* gfortran.dg/coarray/poly_run_3.f90: Same.
* gfortran.dg/coarray/scalar_alloc_1.f90: Same.
* gfortran.dg/coarray/stopped_images_2.f08: Same.
* gfortran.dg/coarray/sync_1.f90: Same.
* gfortran.dg/coarray/sync_3.f90: Same.
* gfortran.dg/coarray/co_reduce_string.f90: New test.
* gfortran.dg/coarray/sync_team.f90: New test.

3 months agoFortran: Add a shared memory multi process coarray implementation [PR88076]
Andre Vehreschild [Tue, 29 Apr 2025 14:19:45 +0000 (16:19 +0200)] 
Fortran: Add a shared memory multi process coarray implementation [PR88076]

Add caf_shmem, a shared memory multi process coarray implementation.  The
library adheres to the existing coarray ABI and is controlled by some
environment variables for selecting the number of images and virtual
memory size (see invoke.texi).

Co-authored by:  Thomas Koenig  <tkoenig@gcc.gnu.org>
 Nicolas Koenig  <koenigni@gcc.gnu.org>

PR fortran/88076

gcc/fortran/ChangeLog:

* invoke.texi: Add description for use.

libgfortran/ChangeLog:

* caf/libcaf.h (LIBCAF_H): Remove unused header inclusions.
* caf/caf_error.c: New file.
* caf/caf_error.h: New file.
* caf/shmem.c: New file.
* caf/shmem/alloc.c: New file.
* caf/shmem/alloc.h: New file.
* caf/shmem/allocator.c: New file.
* caf/shmem/allocator.h: New file.
* caf/shmem/collective_subroutine.c: New file.
* caf/shmem/collective_subroutine.h: New file.
* caf/shmem/counter_barrier.c: New file.
* caf/shmem/counter_barrier.h: New file.
* caf/shmem/hashmap.c: New file.
* caf/shmem/hashmap.h: New file.
* caf/shmem/shared_memory.c: New file.
* caf/shmem/shared_memory.h: New file.
* caf/shmem/supervisor.c: New file.
* caf/shmem/supervisor.h: New file.
* caf/shmem/sync.c: New file.
* caf/shmem/sync.h: New file.
* caf/shmem/teams_mgmt.c: New file.
* caf/shmem/teams_mgmt.h: New file.
* caf/shmem/thread_support.c: New file.
* caf/shmem/thread_support.h: New file.

3 months agoFortran: Fix signatures of coarray API and caf_single.
Andre Vehreschild [Wed, 18 Jun 2025 07:23:32 +0000 (09:23 +0200)] 
Fortran: Fix signatures of coarray API and caf_single.

The teams argument to some functions was marked as unused in the header.
With upcoming caf_shmem this is incorrect, given the mark is repeated in
caf_single.

libgfortran/ChangeLog:

* caf/libcaf.h (_gfortran_caf_failed_images): Team attribute is
used now in some libs.
(_gfortran_caf_image_status): Same.
(_gfortran_caf_stopped_images): Same.
* caf/single.c (caf_internal_error): Use correct printf function
to handle va_list.

3 months agoFortran: Fix coarray generation for char arrays and derived types.
Andre Vehreschild [Wed, 18 Jun 2025 07:32:19 +0000 (09:32 +0200)] 
Fortran: Fix coarray generation for char arrays and derived types.

Fix the generation of a coarray, esp. its bounds, for char arrays.
When a scalar char array is used in a co_reduce the coarray part was
dropped.

Furthermore for class typed dummy arguments where derived types were
used as actual arguments the coarray generation is now done, too.

gcc/fortran/ChangeLog:

* trans-expr.cc (get_scalar_to_descriptor_type): Fix coarray
generation.
(copy_coarray_desc_part): New function to copy coarray dimensions.
(gfc_class_array_data_assign): Use the new function.
(gfc_conv_derived_to_class): Same.

3 months agoFortran: Small fixes of coarray routines handling and code gen.
Andre Vehreschild [Wed, 18 Jun 2025 07:21:16 +0000 (09:21 +0200)] 
Fortran: Small fixes of coarray routines handling and code gen.

gcc/fortran/ChangeLog:

* check.cc (gfc_check_image_status): Fix argument index of team=
argument for correct error message.
* trans-intrinsic.cc (conv_intrinsic_image_status): Team=
argument is optional and is a pointer to the team handle.
* trans-stmt.cc (gfc_trans_sync): Make images argument also a
dereferencable pointer.  But treat errmsg as a pointer to a
char array like in all other functions.

gcc/testsuite/ChangeLog:

* gfortran.dg/coarray_sync_memory.f90: Adapt grep pattern for
msg being only &msg.

3 months agoFortran: Unify check of teams parameter in failed/stopped_images().
Andre Vehreschild [Fri, 25 Apr 2025 12:37:47 +0000 (14:37 +0200)] 
Fortran: Unify check of teams parameter in failed/stopped_images().

gcc/fortran/ChangeLog:

* check.cc (gfc_check_failed_or_stopped_images): Support teams
argument and check for incorrect type.

gcc/testsuite/ChangeLog:

* gfortran.dg/coarray/failed_images_1.f08: Adapt check of error
message.
* gfortran.dg/coarray/stopped_images_1.f08: Same.

3 months agoaarch64: remove GNU properties expectations from a BTI test
Matthieu Longo [Fri, 30 Jan 2026 15:53:18 +0000 (15:53 +0000)] 
aarch64: remove GNU properties expectations from a BTI test

When branch protections are enabled (see -mbranch-protection), GCC tags
the output object file with metadata describing which security features
are used, allowing the GNU linker to detect incompatibilities between
objects in the same link unit.

Originally, this metadata was conveyed via GNU properties. GCC emitted a
.note.gnu.property section containing a GNU_PROPERTY_AARCH64_FEATURE_1_AND
entry.
Build Attributes v2 (OAv2) aim at replacing GNU properties, provinding
a more flexible way to express complex metadata and making easier for
tools like linkers to parse them.

Since the runtime linker only understands GNU properties, the GNU static
linker translates OAv2 attributes into GNU properties. As a result,
emitting both GNU properties and OAv2 in the same object file is redundant.
When GCC detects OAv2 support in GNU binutils, it therefore emits only
OAv2 directives.

Support for OAv2 was added in [1], along with new tests covering both
the emission/omission of GNU properties/OAv2 directives. However, an older
BTI test that checked for the presence of a GNU properties section was
left unchanged. This test now fails when GNU binutils support OAv2, as no
GNU properties are emitted.

This patch removes the expectations of the presence of GNU properties from
that BTI test.

[1]: 98f5547dce2503d9d0f0cd454184d6870a315538

gcc/testsuite/ChangeLog:

* gcc.target/aarch64/bti-1.c: Update.

3 months agoRISC-V: Consider uses for vsetvl LCM transparency. [PR122448]
Robin Dapp [Thu, 19 Feb 2026 14:44:38 +0000 (15:44 +0100)] 
RISC-V: Consider uses for vsetvl LCM transparency. [PR122448]

Until now we didn't consider (pre-existing) uses of vsetvl's destination
registers when computing transparency for vsetvl LCM.  In rare instances,
this can lead to hoisting vsetvls beyond blocks that have uses on such
registers.

We already check transparency when hoisting but here LCM computes edge
insertion points.

For vsetvl a5,zero,e16,m1 in BB 65 we have the following, not
particularly uncommon, situation:

                BB 63
                 |  \
                 |   \
 |    \
 v     |
BB 64  |
                 |     |
 |    /
 |   /
 | /
 v
BB 65

BB 64 uses a5, so is not transparent with respect to the vsetvl.
BB 63 -> BB 65 is an edge LCM computes as earliest.
But we're not inserting the vsetvl on just that edge like in regular LCM
where we could have a new block along that edge but instead insert it at
the end of BB 63.  At that point, though, the other outgoing edges and
successor blocks have to be considered as well.

The patch is two-fold.  It adds a new bitmap m_reg_use_loc that keeps
track of uses of vsetvl destinations, rather than just new definitions
and adds them to the transparency bitmap.  This correct LCM's
computations with respect to uses.  Then, as described above, it
prevents hoisting into the target block (BB 63) if the vsetvl's
destination register is used outside of vsetvls in any other
successor (BB 64).

In regular, non-speculating LCM we would be able to just check ANTOUT but
as we are hoisting speculatively this won't work.  We don't require all
successors to have a vsetvl in order to hoist it to a block.
Therefore the patch computes reaching definitions for all vsetvl's
destination registers up to their AVL uses.  Knowing a block's live-in
and the reaching definitions we can deduce that a use must be non-vsetvl
and prone to clobbering.

PR target/122448

gcc/ChangeLog:

* config/riscv/riscv-vsetvl.cc (compute_reaching_defintion):
Rename...
(compute_reaching_definition): ...To this.
(pre_vsetvl::compute_vsetvl_def_data):  Compute reaching
definitions for vsetvl VL -> vsetvl AVL.
(pre_vsetvl::compute_transparent): Include VL uses.
(pre_vsetvl::fuse_local_vsetvl_info): Initialize m_reg_use_loc.
(pre_vsetvl::earliest_fuse_vsetvl_info): Don't hoist if any
successor would use VL.

gcc/testsuite/ChangeLog:

* g++.target/riscv/rvv/base/pr122448.C: New test.

3 months agoaarch64: fix `cmpbr-3.c` tests
Karl Meakin [Thu, 11 Dec 2025 16:19:22 +0000 (16:19 +0000)] 
aarch64: fix `cmpbr-3.c` tests

The assembly tests in `cmpbr-3.c` were failing when run with an old
version of `gas` which did not recognise the extension. Fix by changing
`dg-do assemble` to `dg-do compile`.

gcc/testsuite/ChangeLog:

* gcc.target/aarch64/cmpbr-3.c: `dg-do assemble` => `dg-do compile`.

3 months agoc++/reflection: fix wrong "consteval-only" error [PR123662]
Marek Polacek [Mon, 23 Feb 2026 19:16:13 +0000 (14:16 -0500)] 
c++/reflection: fix wrong "consteval-only" error [PR123662]

This patch fixes a very annoying problem where we emit a bogus
check_out_of_consteval_use error.  The error is provoked while
processing

  [: std::meta::reflect_constant_array (data) :]

The argument of a [: :] is a constant-expression = a manifestly
constant-evaluated context, so any consteval-only exprs in it
are OK.  But in eval_reflect_constant_array we do get_template_parm_object
which does push_to_top_level -- so we have no scope_chain, therefore
any in_consteval_if_p and current_function_decl are cleared, so we're
not in an immediate context.  As part of this get_template_parm_object,
we call cp_finish_decl -> check_initializer -> build_aggr_init ->
-> build_vec_init.

Here in build_vec_init try_const is true, but we still generate code
for the initializer like

  <<< Unknown tree: expr_stmt
  (void)  ++D.67757 >>>;
<<< Unknown tree: expr_stmt
  (void)  --D.67758 >>>;

etc.  We add ++D.67757 with finish_expr_stmt which calls
convert_to_void -> check_out_of_consteval_use which causes the error
because ++D.67757's type is consteval-only.  Note that what we end up using
is the simple

  _ZTAX... = {{.name=<<< Unknown tree: reflect_expr _ZTAXtlA2_KcLS_95EEE >>>, .none=1}}

because we didn't see anything non-const in the initializer.

Rather than convincing check_out_of_consteval_use that we are in an
immediate context, we should only call check_out_of_consteval_use on the
outermost statement, not sub-statements like the ++D.67757 above.  This
is not a complete fix though, see the FIXME.

PR c++/123662
PR c++/123611

gcc/cp/ChangeLog:

* cvt.cc (convert_to_void): Only call check_out_of_consteval_use
when stmts_are_full_exprs_p.

gcc/testsuite/ChangeLog:

* g++.dg/reflect/reflect_constant_array5.C: New test.
* g++.dg/reflect/reflect_constant_array6.C: New test.

Reviewed-by: Jason Merrill <jason@redhat.com>
3 months agomiddle-end: extend the narrower shift amount before broadcasting it [PR 124250]
Xi Ruoyao [Thu, 26 Feb 2026 03:55:22 +0000 (11:55 +0800)] 
middle-end: extend the narrower shift amount before broadcasting it [PR 124250]

The comment above expand_vector_broadcast() states a precondition that
the mode of op must be the element mode of vmode.  But when
expand_binop() called expand_vector_broadcast() to broadcast the shift
amount, it only truncated the shift amount if it's too wide, but no
action is performed if the shift amount is too narrow.

PR middle-end/124250
PR target/123807

gcc/
* optabs.cc (expand_vector_broadcast): Add a checking assert to
verify the precondition about the input modes.
(expand_binop): Extend the shift amount if it's narrower than
the element of the shifted vector.

gcc/testsuite/

* gcc.c-torture/compile/pr124250.c: New test.

3 months agolibstdc++: add using std::size_t
Torbjörn SVENSSON [Thu, 26 Feb 2026 11:04:12 +0000 (12:04 +0100)] 
libstdc++: add using std::size_t

Without a definition for size_t in global namespace, there are errors
like this one for arm-none-eabi:

.../requirements_neg.cc:5: error: 'size_t' has not been declared

libstdc++-v3/ChangeLog:

* testsuite/29_atomics/atomic_ref/requirements_neg.cc: Add
using std::size_t.

Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
3 months agoc++/reflection: members_of and cv-qual class types [PR124215]
Marek Polacek [Tue, 24 Feb 2026 18:38:48 +0000 (13:38 -0500)] 
c++/reflection: members_of and cv-qual class types [PR124215]

Here when asking for the members of "^^Test const" we found nothing.
The reason is that members_of_representable_p checks whether
CP_DECL_CONTEXT != c, but if c is a type, it doesn't look at its
TYPE_MAIN_VARIANT.  Fixed as per Jakub's suggestion in the PR.

PR c++/124215

gcc/cp/ChangeLog:

* reflect.cc (class_members_of): Use TYPE_MAIN_VARIANT of R.

gcc/testsuite/ChangeLog:

* g++.dg/reflect/members_of9.C: New test.

Co-authored-by: Jakub Jelinek <jakub@redhat.com>
Reviewed-by: Jason Merrill <jason@redhat.com>
3 months agolibstdc++: complete P0493R5 with pointer support
Yuao Ma [Wed, 25 Feb 2026 12:44:07 +0000 (20:44 +0800)] 
libstdc++: complete P0493R5 with pointer support

Previous implementations of fetch_min/max only supported integers, not
handling pointers. To complete the paper, we need to implement support
for pointers as well. This patch adds the missing functionality and
test cases.

libstdc++-v3/ChangeLog:

* include/bits/atomic_base.h (__atomic_base<_PTp*>::fetch_min,
__atomic_base<_PTp*>::fetch_max,
__atomic_ref<_Pt, false, false, true>::fetch_min,
__atomic_ref<_Pt, false, false, true>::fetch_max): Define new
functions.
* include/std/atomic (atomic<_Tp*>::fetch_min,
atomic<_Tp*>::fetch_max): Likewise.
(atomic_fetch_min_explicit, atomic_fetch_max_explicit,
atomic_fetch_min, atomic_fetch_max): Change parameter from
__atomic_base<_ITp>* to atomic<_Tp>*.
* testsuite/29_atomics/atomic/pointer_fetch_minmax.cc: New test.
* testsuite/29_atomics/atomic_ref/pointer_fetch_minmax.cc: New
test.

3 months agoa68: Add error on integral denotation overflow
James Bohl [Thu, 26 Feb 2026 03:59:44 +0000 (22:59 -0500)] 
a68: Add error on integral denotation overflow

Signed-off-by: James Bohl <bohlj47@gmail.com>
gcc/algol68/ChangeLog

* a68-low-units.cc (a68_lower_denotation): Add error on
integral denotation overflow.

gcc/testsuite/ChangeLog

* algol68/compile/error-denotation-1.a68: New test.
* algol68/compile/error-denotation-2.a68: Likewise.
* algol68/compile/error-denotation-3.a68: Likewise.
* algol68/execute/plusab-1.a68: Fixed denotation overflow.

3 months agoPR target/124194: Fix __builtin_ia32_cmpd256_mask(op,op,TRUE)
Roger Sayle [Thu, 26 Feb 2026 08:07:12 +0000 (08:07 +0000)] 
PR target/124194: Fix __builtin_ia32_cmpd256_mask(op,op,TRUE)

This patch fixes the wrong code regression PR target/124194 on x86_64.
The target implements a pre-reload splitter that recognizes that
integer vector comparisons can be evaluated at compile-time when the
operands being compared are the same (register).  The (admittedly rare)
case when the comparison operator is always-true, was incorrectly
handled and folded to false instead of the correct value true.

2025-02-26  Roger Sayle  <roger@nextmovesoftware.com>

gcc/ChangeLog
PR target/124194
* config/i386/sse.md (*<avx512>_cmp<mode>3_dup_op): Also return
CONSTM1_RTX for the case cmp_imm == 7 (predicate TRUE).

gcc/testsuite/ChangeLog
PR target/124194
* gcc.target/i386/pr124194.c: New test case.

3 months agotestsuite: add require effective target pthread to gcov-threads-1.C
Torbjörn SVENSSON [Wed, 25 Feb 2026 17:07:46 +0000 (18:07 +0100)] 
testsuite: add require effective target pthread to gcov-threads-1.C

gcc/testsuite/ChangeLog:

* g++.dg/gcov/gcov-threads-1.C: Add require effective target
pthread.

Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
3 months agoPR c/119651: Fix some unexpected error_mark_node ICEs.
Roger Sayle [Thu, 26 Feb 2026 08:03:25 +0000 (08:03 +0000)] 
PR c/119651: Fix some unexpected error_mark_node ICEs.

This patch resolves PR c/119651 and PR c/123472 P4 regressions.

2026-02-26  Roger Sayle  <roger@nextmovesoftware.com>

gcc/ChangeLog
PR c/119651
PR c/123472
* fold-const.cc (tree_nonzero_bits): Rename the original as a
static function taking an additional precision parameter.  Make
this implementation robust to error_mark_node.  Preserve the
original API by checking for error_operand_p before invoking the
static helper function.

gcc/testsuite/ChangeLog
PR c/119651
PR c/123472
* gcc.dg/pr119651.c: New test case.
* gcc.dg/pr123472.c: Likewise.

3 months agoAdd default_promote_function_mode_sign_extend
H.J. Lu [Wed, 31 Dec 2025 23:14:57 +0000 (07:14 +0800)] 
Add default_promote_function_mode_sign_extend

TARGET_PROMOTE_PROTOTYPES is an optimization, not an ABI requirement.
TARGET_PROMOTE_FUNCTION_MODE should be used for ABI requirement.  Like
xtensa, mcore ABI requires sign extension of signed 8/16-bit integer
arguments to 32 bits and zero extension of unsigned integer 8/16-bit
arguments to 32 bits:

1. Rename xtensa_promote_function_mode to
default_promote_function_mode_sign_extend to sign-extend signed 8/16-bit
integer arguments to 32 bits and zero-extend of unsigned 8/16-bit
integer arguments to 32 bits.
2. Replace xtensa_promote_function_mode with
default_promote_function_mode_sign_extend.
3. Remove TARGET_PROMOTE_PROTOTYPES for mcore and define
TARGET_PROMOTE_FUNCTION_MODE with
default_promote_function_mode_sign_extend to properly extend 8/16-bit
arguments to 32 bits.

Targets with the same ABI requirement should define
TARGET_PROMOTE_FUNCTION_MODE with
default_promote_function_mode_sign_extend.

gcc/

PR target/119979
PR target/120888
* targhooks.cc (default_promote_function_mode_sign_extend): New.
* targhooks.h (default_promote_function_mode_sign_extend):
Likewise.
* config/mcore/mcore.cc (TARGET_PROMOTE_FUNCTION_MODE): Use
default_promote_function_mode_sign_extend.
(TARGET_PROMOTE_PROTOTYPES): Removed.
* config/xtensa/xtensa.cc (xtensa_promote_function_mode): Removed.
(TARGET_PROMOTE_FUNCTION_MODE): Use
default_promote_function_mode_sign_extend.

gcc/testsuite/

PR target/119979
PR target/120888
* gcc.target/xtensa/pr120888-1.c: Removed to ...
* gcc.dg/zero-extend.c: This.  Enable for mcore and xtensa.
* gcc.target/xtensa/pr120888-2.c: Removed to ...
* gcc.dg/sign-extend.c: This.  Enable for mcore and xtensa.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
3 months agoanalyzer: fix ICE on putenv of a field [PR124232]
David Malcolm [Thu, 26 Feb 2026 02:50:58 +0000 (21:50 -0500)] 
analyzer: fix ICE on putenv of a field [PR124232]

store::mark_as_escaped requires the region passed in to be a base
region, but the analyzer's implementation of putenv wasn't respecting
that.

Fixed thusly.

gcc/analyzer/ChangeLog:
PR analyzer/124232
* kf.cc (kf_putenv::impl_call_pre): Use base region when marking
pointer as having escaped.

gcc/testsuite/ChangeLog:
PR analyzer/124232
* gcc.dg/analyzer/putenv-ice-pr124232.c: New test.

Signed-off-by: David Malcolm <dmalcolm@redhat.com>
3 months agoDaily bump.
GCC Administrator [Thu, 26 Feb 2026 00:16:29 +0000 (00:16 +0000)] 
Daily bump.

3 months agoa68: handle Darwin's #1/NN archive members
Jose E. Marchesi [Wed, 25 Feb 2026 23:43:03 +0000 (00:43 +0100)] 
a68: handle Darwin's #1/NN archive members

In Darwin archives use an extension to encode the member names
off-header, in the first bytes of the contents.  The name in the
header proper is then #1/NN... where NN... is an ascii-encoded number
in decimal with the length of the name, which is encoded right after
the header as part of the contents.

This patch fixes the Algol 68 module importing from archives in Darwin
by acknowledging this extension.  Note that, for the moment, we don't
bother to fetch the actual member name.  This can lead to poor
diagnostics, so we probably will fix that at some point.

Signed-off-by: Jose E. Marchesi <jemarch@gnu.org>
gcc/algol68/ChangeLog

* a68-imports-archive.cc (Archive_file): Handle Darwin #1/NN
archive members.

3 months agoa68: do not revise lower bounds in trimmers with trimscripts
Jose E. Marchesi [Wed, 25 Feb 2026 23:06:26 +0000 (00:06 +0100)] 
a68: do not revise lower bounds in trimmers with trimscripts

Signed-off-by: Jose E. Marchesi <jemarch@gnu.org>
gcc/algol68/ChangeLog

* a68-low-units.cc (lower_subscript_for_trimmers): Do not revise
bounds if no trimscript.

gcc/testsuite/ChangeLog

* algol68/execute/trimmer-13.a68: New test.

3 months agoavoid-store-forwarding: Fix sbitmap memory leak in process_store_forwarding
Philipp Tomsich [Mon, 23 Feb 2026 10:05:06 +0000 (11:05 +0100)] 
avoid-store-forwarding: Fix sbitmap memory leak in process_store_forwarding

forwarded_bytes was allocated with sbitmap_alloc but never freed on any
of the function's return paths.  Use auto_sbitmap instead, which calls
sbitmap_free in its destructor.

gcc/ChangeLog:

* avoid-store-forwarding.cc
(store_forwarding_analyzer::process_store_forwarding): Use
auto_sbitmap for forwarded_bytes to ensure it is freed on all
return paths.

Reviewed-By: Konstantinos Eleftheriou <konstantinos.eleftheriou@vrull.eu>
3 months agoavoid-store-forwarding: Fix wrong counter in statistics reporting
Philipp Tomsich [Mon, 23 Feb 2026 10:04:52 +0000 (11:04 +0100)] 
avoid-store-forwarding: Fix wrong counter in statistics reporting

update_stats() reported stats_sf_detected for both the "detected" and
"avoided" counters.  The second should report stats_sf_avoided.

gcc/ChangeLog:

* avoid-store-forwarding.cc
(store_forwarding_analyzer::update_stats): Use stats_sf_avoided
for the "avoided" counter.

Reviewed-By: Konstantinos Eleftheriou <konstantinos.eleftheriou@vrull.eu>
3 months agoavoid-store-forwarding: Fix include order and drop cselib.h include
Philipp Tomsich [Mon, 23 Feb 2026 11:11:07 +0000 (12:11 +0100)] 
avoid-store-forwarding: Fix include order and drop cselib.h include

The header file included config.h, system.h, coretypes.h,
backend.h, and rtl.h directly, which is unconventional for GCC
headers.  Strip those includes from the header and fix the include
order in the .cc file so that config.h comes first.  Also remove
the unused cselib.h include.

gcc/ChangeLog:

* avoid-store-forwarding.cc: Move config.h before
avoid-store-forwarding.h; place avoid-store-forwarding.h
after rtl.h; remove unused cselib.h include.
* avoid-store-forwarding.h: Remove includes of config.h,
system.h, coretypes.h, backend.h, rtl.h.

Reviewed-By: Konstantinos Eleftheriou <konstantinos.eleftheriou@vrull.eu>
3 months agolibstdc++: debug impls for heterogeneous erasure overloads (P2077) [PR117404]
Nathan Myers [Fri, 6 Feb 2026 21:57:07 +0000 (16:57 -0500)] 
libstdc++: debug impls for heterogeneous erasure overloads (P2077) [PR117404]

Implement the debug versions of new overloads from P2077.

libstdc++-v3/ChangeLog:
PR libstdc++/117404
* include/debug/map.h (extract, erase): Define overloads.
* include/debug/multimap.h: Same.
* include/debug/multiset.h: Same.
* include/debug/set.h: Same.
* include/debug/unordered_map: Same (2x).
* include/debug/unordered_set: Same (2x), rename some locals.

3 months agofortran: Fix ICE in ALLOCATE of sub-objects with recursive types
Christopher Albert [Wed, 25 Feb 2026 08:41:27 +0000 (09:41 +0100)] 
fortran: Fix ICE in ALLOCATE of sub-objects with recursive types

The deep-copy wrapper generation for recursive allocatable array
components (PR121628) calls cgraph_node::add_new_function to register
the wrapper.  During PARSING state, add_new_function calls
finalize_function which triggers ggc_collect().  This garbage
collection frees locally-computed tree nodes (COMPONENT_REFs etc.)
in caller stack frames of structure_alloc_comps that are not yet
attached to any GC-rooted structure, causing a segfault when those
nodes are subsequently accessed.

Use finalize_function with no_collect=true to skip the collection.
The GC will run at a safe point later.

PR fortran/124235

gcc/fortran/ChangeLog:

* trans-array.cc (generate_element_copy_wrapper): Use
cgraph_node::finalize_function with no_collect=true instead
of cgraph_node::add_new_function to avoid garbage collection
while caller frames hold unrooted tree nodes.

gcc/testsuite/ChangeLog:

* gfortran.dg/pr124235.f90: New test.

Signed-off-by: Christopher Albert <albert@tugraz.at>
3 months agoc++/reflection: remove FIXME in members_of5.C
Marek Polacek [Wed, 25 Feb 2026 18:34:23 +0000 (13:34 -0500)] 
c++/reflection: remove FIXME in members_of5.C

The use is no longer needed.

gcc/testsuite/ChangeLog:

* g++.dg/reflect/members_of5.C: Remove a FIXME and declaration.

3 months agobpf: Split expressions for proper CO-RE code generation
Cupertino Miranda [Tue, 21 Oct 2025 12:33:58 +0000 (13:33 +0100)] 
bpf: Split expressions for proper CO-RE code generation

This patch corrects CO-RE generation for the cases where an expression
starts with a non-CO-RE access, but in the middle it requires to
generate CO-RE to correctly compute the access location.

It fixes it by splitting the expression into their CO-RE and non-CO-RE
counterparts. It performs this by walking gimple expressions, and for
each field access to which its type is a struct or union, it verifies if
both the types for the base and field are attributed similarly.
Otherwise, it splits the expression at this location by creating a
temporary variable and performing any required pointer conversions.
This smaller expressions are converted to CO-RE in the subsequent
gimple walker.

There is no way in GCC to distinguish nested struct/union definitions
from non-nested ones.
This patch simplifies code and enforces that all preserve_access_index
structs/unions would be attributed explicitly.
Previous approach was error prone as it would extend CO-RE accesses to
structures which would not be attributed.

All GCC BPF dejagnu passes tests:
  # of expected passes 553
  # of expected failures 6

kernel-next bpf selftests:
 before: Summary: 543/4888 PASSED, 113 SKIPPED, 136 FAILED
 after:  Summary: 545/4893 PASSED, 113 SKIPPED, 134 FAILED

gcc/ChangeLog:
PR target/120241
* config/bpf/core-builtins.cc
(is_attr_preserve_access): Correct for pointer types.
(maybe_get_base_for_field_expr, core_access_index_map,
core_access_clean, core_is_access_index, core_mark_as_access_index):
Remove.
(make_gimple_core_safe_access_index): Remove function.
(struct walker_data): New struct to pass data to tree walker.
(callback_should_do_core_access, should_do_core_access): Add
function to identify expressions that should not be converted to
CO-RE.
(core_make_builtins): Add callback tree walker function to
convert expressions to CO-RE.
(callback_find_next_split_location, core_should_split_expr,
find_next_split_location, gimple_core_early_split_expr): Add
function to split expressions in CO-RE and non-CO-RE
expressions.
(execute_lower_bpf_core): Adapt to new code.
* config/bpf/bpf.opt: Add option Wco-re.
* doc/invoke.texi: Add documentation for Wco-re.

gcc/testsuite/ChangeLog:
PR target/120241
* gcc.target/bpf/core-attr-3.c: Add attribute.
* gcc.target/bpf/core-attr-4.c: Add attribute.
* gcc.target/bpf/core-attr-5.c: Add attribute.
* gcc.target/bpf/core-attr-6.c: Add attribute.
* gcc.target/bpf/core-attr-7.c: New test.
* gcc.target/bpf/core-attr-calls.c: Adapt.

3 months agofn-split: Move clobbers from the old exit bb to new call block after the call [PR110091]
Andrew Pinski [Sun, 22 Feb 2026 00:43:53 +0000 (16:43 -0800)] 
fn-split: Move clobbers from the old exit bb to new call block after the call [PR110091]

After outlinining the bbs for function splitting, we move the clobbers that were in the
last bb to be after the newly calling function.
This allows for stack location sharing and more when the non split out part is inlined
into another function.

This also fixes some of the warnings about dangling-pointers because
the clobbers are now correctly handled while function splitting.
The testcases test for the cases where the dangling-pointers pointer
warnings would show up too.

Note only end of storage clobbers in this case.

Changes since v1:
 * v2: Add comments and add a call to unlink_stmt_vdef/release_ssa_name.

Bootstrapped and tested on x86_64-linux-gnu.

PR tree-optimization/110091

gcc/ChangeLog:

* ipa-split.cc (split_function): Find the bb
which is used for return in the outlined function.
Move the clobbers that are at the end of that bb
to be after the new call.

gcc/testsuite/ChangeLog:

* gcc.dg/tree-ssa/pr110091-3.c: New test.
* gcc.dg/tree-ssa/pr110091-4.c: New test.

Signed-off-by: Andrew Pinski <andrew.pinski@oss.qualcomm.com>
3 months agofn-split: Insert new call after clobbers/debug stmt [PR110091]
Andrew Pinski [Sat, 21 Feb 2026 22:38:12 +0000 (14:38 -0800)] 
fn-split: Insert new call after clobbers/debug stmt [PR110091]

So for function splitting when we outlined the function, we
should keep around the clobbers that were at the begining of
the bb which will be outlined. So change the last stmt
to where we split the bb for where the function call will be
to be after the clobbers.

Note we have to ignore the debug stmts here otherwise you would
get a debug comparison failure.

This also fixes some of the warnings about dangling-pointers because
the clobbers are now correctly handled while function splitting.
The testcases test for the cases where the dangling-pointers pointer
warnings would show up too.

Note only end of storage clobbers in this case.

Bootstrapped and tested on x86_64-linux-gnu.

PR tree-optimization/110091

gcc/ChangeLog:

* ipa-split.cc (split_function): Split after
the clobbers/debug stmts rather than after the labels.

gcc/testsuite/ChangeLog:

* gcc.dg/tree-ssa/pr110091-1.c: New test.
* gcc.dg/tree-ssa/pr110091-2.c: New test.

Signed-off-by: Andrew Pinski <andrew.pinski@oss.qualcomm.com>
3 months agoc++/reflection: remove TODO in compare9.C
Marek Polacek [Wed, 25 Feb 2026 15:39:43 +0000 (10:39 -0500)] 
c++/reflection: remove TODO in compare9.C

This compiles since r16-7472-gae37ade22ecf4e.  Yay!

gcc/testsuite/ChangeLog:

* g++.dg/reflect/compare9.C: Uncomment the commented out asserts.

3 months agoxtensa: Add 'spaceshipsi4' insn pattern
Takayuki 'January June' Suwa [Tue, 24 Feb 2026 21:28:17 +0000 (06:28 +0900)] 
xtensa: Add 'spaceshipsi4' insn pattern

When TARGET_SALT is configured in the Xtensa ISA, a Boolean evaluation of
LT/GT[U] between address (GP) registers can be done in a single machine
instruction, making it easy to implement the spaceship operator by sub-
tracting one from the other result.

     /* examples */
     int test0(int a, int b) {
       return a == b ? 0 : (a > b ? 1 : -1);
     }
     int test1(unsigned int a, unsigned int b) {
       return a == b ? 0 : (a > b ? 1 : -1);
     }

     ;; before (-msalt)
     test0:
      entry sp, 32
      mov.n a8, a2
      movi.n a2, 0
      beq a8, a3, .L1
      movi.n a2, -1
      bge a3, a8, .L1
      movi.n a2, 1
     .L1:
      retw.n
     test1:
      entry sp, 32
      mov.n a8, a2
      movi.n a2, 0
      beq a8, a3, .L6
      movi.n a2, -1
      bgeu a3, a8, .L6
      movi.n a2, 1
     .L6:
      retw.n

     ;; after (-msalt)
     test0:
      entry sp, 32
      salt a8, a2, a3
      salt a2, a3, a2
      sub a2, a2, a8
      retw.n
     test1:
      entry sp, 32
      saltu a8, a2, a3
      saltu a2, a3, a2
      sub a2, a2, a8
      retw.n

gcc/ChangeLog:

* config/xtensa/xtensa.md (spaceshipsi4):
New RTL generation pattern.

3 months agotestsuite: Fix default on arm_v8_3a_fp16_complex_neon_hw [PR124236]
Tamar Christina [Wed, 25 Feb 2026 13:39:29 +0000 (13:39 +0000)] 
testsuite: Fix default on arm_v8_3a_fp16_complex_neon_hw [PR124236]

check_effective_target_arm_v8_3a_complex_neon_hw was return 1 instead of 0
whenever armv8.3-a wasn't supported.

This fixes it.

gcc/testsuite/ChangeLog:

PR target/124236
* lib/target-supports.exp
(check_effective_target_arm_v8_3a_complex_neon_hw): Fix default value.

3 months agoc++/reflection: also walk BIND_EXPR_BODY
Marek Polacek [Thu, 19 Feb 2026 17:40:39 +0000 (12:40 -0500)] 
c++/reflection: also walk BIND_EXPR_BODY

As discussed in
<https://gcc.gnu.org/pipermail/gcc-patches/2026-January/705756.html>,
we shouldn't walk BIND_EXPR_VARS in check_out_of_consteval_use_r, but
BIND_EXPR_BODY should still be walked.

The IF_STMT is there so that we don't emit bogus errors in "if consteval"
branches, as tested in expr12.C.

gcc/cp/ChangeLog:

* reflect.cc (check_out_of_consteval_use_r): Walk BIND_EXPR_BODY.
For IF_STMT_CONSTEVAL_P, only walk the ELSE_CLAUSE.  For
IF_STMT_CONSTEXPR_P, only walk the THEN_ and ELSE_CLAUSE.

gcc/testsuite/ChangeLog:

* g++.dg/reflect/expr11.C: Test more if constexpr.
* g++.dg/reflect/expr12.C: Adjust test.

Reviewed-by: Jason Merrill <jason@redhat.com>
3 months agoc++/reflection: fix ICE with OMP_CLAUSE [PR124227]
Marek Polacek [Tue, 24 Feb 2026 13:55:31 +0000 (08:55 -0500)] 
c++/reflection: fix ICE with OMP_CLAUSE [PR124227]

This test crashes with -fopenmp -freflection because consteval_only_p
gets

  <omp_clause 0x7fffe99db120
    type <tree_vec 0x7fffe982b900 length:3>
    reduction
    op-0: <var_decl 0x7fffe99d6390 acc>
    op-1: <init_expr 0x7fffe99c9870>
    op-2: <bind_expr 0x7fffe982b8a0>
    op-3: <var_decl 0x7fffe99d6428 D.2864>
    op-4:>

so it takes its type, but complete_type crashes on a TREE_VEC.

So let's handle TREE_VEC in consteval_only_p.

PR c++/124227

gcc/cp/ChangeLog:

* reflect.cc (consteval_only_p): Handle TREE_VEC.

gcc/testsuite/ChangeLog:

* g++.dg/reflect/pr124227.C: New test.

Reviewed-by: Jason Merrill <jason@redhat.com>
3 months agoAda: Fix missing implicit dereference for access-to-protected used as prefix
Eric Botcazou [Wed, 25 Feb 2026 13:00:21 +0000 (14:00 +0100)] 
Ada: Fix missing implicit dereference for access-to-protected used as prefix

... of access-related attribute.  This is a regression present on all active
branches caused by a local resolution of the N_Selected_Component node.

gcc/ada/
PR ada/124226
* sem_res.adb (Resolve_Implicit_Dereference): Move declaration to...
* sem_res.ads (Resolve_Implicit_Dereference): ...here.
* sem_attr.adb (Resolve_Attribute) <Attribute_Access>: Also call
Resolve_Implicit_Dereference when resolving a protected operation.

gcc/testsuite/
* gnat.dg/protected_deref1.adb: New test.

3 months agotarget/120234 - adjust vector construction costs
Richard Biener [Tue, 24 Feb 2026 08:53:00 +0000 (09:53 +0100)] 
target/120234 - adjust vector construction costs

The following allows vectorizing the gcc.target/i386/pr111023*.c
testcases again with -m32 -msse2 by ensuring we see through a cast
when looking for vector extract sources during costing of vector construction.

This, together with the forwprop fix fixes the regression on those testcases.

PR target/120234
* config/i386/i386.cc (ix86_vector_costs::add_stmt_cost):
For constructor elements always look through a conversion.
Rewrite load and vector extraction matching to be more obvious.
Allow arbitrary conversions from the vector extract to elide
costing of a gpr<->xmm move.

3 months agolibiberty, Darwin: Fix handling of file offsets.
Iain Sandoe [Tue, 24 Feb 2026 11:44:27 +0000 (11:44 +0000)] 
libiberty, Darwin: Fix handling of file offsets.

In the case where a Mach-O object is embedded inside some container
(e.g. an archive) we must account the offset from the start of that
container when reading.  In most cases, this has been done correctly.
However, we were missing the case for reading segment data.  This
only showed up once we tried using archives (since regular Mach-O
objects start at the begining of the file).

Fixed thus.

libiberty/ChangeLog:

* simple-object-mach-o.c
(simple_object_mach_o_segment): Account for the offset of
this Mach-O object from the start of any container.

Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
3 months agoaarch64: early-ra: Fix handling of multi-register allocation with clobbers [PR123285]
Andrew Pinski [Tue, 27 Jan 2026 20:19:13 +0000 (12:19 -0800)] 
aarch64: early-ra: Fix handling of multi-register allocation with clobbers [PR123285]

So the problem here is while forming chains, we don't process hard register
conflicts (and ABI based ones) for allocnos which are already part of a chain.
This means sometimes we allocate a register to a color which might be clobbered
over is live range.
Processing clobbers for all allocnos don't work while forming a chain does
not work as the chain's front allocnos' candidates does not get updated.
So we need to the processing of clobbers (and ABI clobbers) before starting
to form the chains.

Changes since v1:
 * v2: remove accidental hack which was there just for testing.
 * v3: Move the copying of the shared part to new earlier loop too.
       Fix small white space issue.

Bootstrappd and tested on aarch64-linux-gnu.

PR target/123285

gcc/ChangeLog:

* config/aarch64/aarch64-early-ra.cc (early_ra::form_chains): Process clobbers
and ABI clobbers before starting to form the chain.

gcc/testsuite/ChangeLog:

* gcc.target/aarch64/pr123285-1.c: New test.

Signed-off-by: Andrew Pinski <andrew.pinski@oss.qualcomm.com>
3 months agofortran: Fix iterator counting in nested block scopes [PR fortran/124208]
Christopher Albert [Mon, 23 Feb 2026 21:42:44 +0000 (22:42 +0100)] 
fortran: Fix iterator counting in nested block scopes [PR fortran/124208]

Count FORALL/DO CONCURRENT iterators in EXEC_BLOCK namespace code chains
while sizing VAR_EXPR in gfc_resolve_forall.

This prevents undersized allocation and an ICE for nested FORALL/DO
CONCURRENT inside ASSOCIATE/BLOCK constructs.

PR fortran/124208

gcc/fortran/ChangeLog:

* resolve.cc (gfc_max_forall_iterators_in_chain): Count
iterators in EXEC_BLOCK namespaces.

gcc/testsuite/ChangeLog:

* gfortran.dg/pr124208.f90: New test.

Signed-off-by: Christopher Albert <albert@tugraz.at>
3 months agogcc.dg/plugin: fix spurious llp64 warnings
Jonathan Yong [Tue, 17 Feb 2026 02:08:55 +0000 (02:08 +0000)] 
gcc.dg/plugin: fix spurious llp64 warnings

Fixes compile tests with mingw-w64.

gcc/testsuite/ChangeLog:

* gcc.dg/plugin/taint-pr112850-precise.c:
(__kernel_ulong_t): Change unsigned long to __UINTPTR_TYPE__.
(__kernel_size_t): Change __kernel_ulong_t to __kernel_size_t.
(copy_from_user): Change unsigned long n to size_t n.
(snd_rawmidi_ioctl): Change unsigned long arg to uintptr_t arg.
* gcc.dg/plugin/taint-pr112850-too-complex.c: Ditto.
* gcc.dg/plugin/taint-pr112850-unsanitized.c: Ditto.
* gcc.dg/plugin/taint-pr112850.c: Ditto.

Signed-off-by: Jonathan Yong <10walls@gmail.com>