Hi Haochen,
on 2024/7/11 13:50, HAO CHEN GUI wrote:
> Hi,
> This patch adds TARGET_FLOAT128_HW into pattern conditions for quad-
> precision insns. Also it removes FLOAT128_IEEE_P check from pattern
> conditions if the mode of pattern is IEEE128 as the mode iterator -
> IEEE128 already checks wi
Hi Victor,
> -Original Message-
> From: Victor Do Nascimento
> Sent: Wednesday, July 10, 2024 3:06 PM
> To: gcc-patches@gcc.gnu.org
> Cc: Richard Sandiford ; Richard Earnshaw
> ; Victor Do Nascimento
>
> Subject: [PATCH 10/10] autovectorizer: Test autovectorization of different
> dot-
>
v3: Rebase
v2: Rebase
The vector type of BFloat16 format is added in this patch,
subsequent extensions to zvfbfmin and zvfwma need to be based
on this patch.
Signed-off-by: Feng Wang
gcc/ChangeLog:
* config/riscv/genrvv-type-indexer.cc (bfloat16_type):
Generate bf16 vector_ty
Cache the source files as they are read, rather than discarding them at
the end of output_lines (), and move the reading of the source file to
the new function slurp.
This patch does not really change anything other than moving the file
reading out of output_file, but set gcov up for more interact
v3: Modify warning message in riscv.cc
v2: Rebase
Accroding to the intrinsic doc, the 'Zvfbfmin' and 'Zvfbfwma' intrinsic
functions are added by this patch.
Signed-off-by: Feng Wang
gcc/ChangeLog:
* config/riscv/riscv-vector-builtins-bases.cc (class vfncvtbf16_f):
Add 'Zvfbfm
V3: Add Bfloat16 vector insn in generic-vector-ooo.md
v2: Rebase
Accroding to the BFloat16 spec, some vector iterators and new pattern
are added in md files.
Signed-off-by: Feng Wang
gcc/ChangeLog:
* config/riscv/generic-vector-ooo.md: Add def_insn_reservation for
vector BFloat16.
Hi Victor,
> -Original Message-
> From: Victor Do Nascimento
> Sent: Wednesday, July 10, 2024 3:06 PM
> To: gcc-patches@gcc.gnu.org
> Cc: Richard Sandiford ; Richard Earnshaw
> ; Victor Do Nascimento
>
> Subject: [PATCH 02/10] autovectorizer: Add basic support for convert optabs
>
> Giv
Ensure that the function.end_line in the lines vector for the source
file, even if it is not explicitly touched by a basic block. This
ensures consistency with what you would expect. For example, this file
has sources[sum.cc].lines.size () == 23 and main.end_line == 2 without
adjusting sources.line
Add the --include and --exclude flags to gcov to control what functions
to report on. This is meant to make gcov more practical as an when
writing test suites or performing other coverage experiments, which
tends to focus on a few functions at the time. This really shines in
combination with the -t
Hi Vladimir,
> On 10 Jul 2024, at 15:34, vladimir.miloser...@arm.com wrote:
>
> External email: Use caution opening links or attachments
>
>
> This patch introduces support for LUTI2/LUTI4 ACLE for SVE2.
>
> LUTI instructions are used for efficient table lookups with 2-bit
> or 4-bit indices.
> On 11 Jul 2024, at 09:18, Kyrylo Tkachov wrote:
>
> External email: Use caution opening links or attachments
>
>
> Hi Vladimir,
>
>> On 10 Jul 2024, at 15:34, vladimir.miloser...@arm.com wrote:
>>
>> External email: Use caution opening links or attachments
>>
>>
>> This patch introduces
The original method tried to overwrite the march option when the target
doesn't support v exctension, which caused unexpected compile and
runtime test failures
This patch change the way to handle targets that don't support v
extension by simply skip the test cases that requires v extension
The te
Hi Victor,
> On 10 Jul 2024, at 16:05, Victor Do Nascimento
> wrote:
>
> External email: Use caution opening links or attachments
>
>
> Given recent changes to the dot_prod standard pattern name, this patch
> fixes the aarch64 back-end by implementing the following changes:
>
> 1. Add 2nd mo
OK for this patch set, I know you already got LGTM from JuZhe or me
before, so just an explicitly ack to let you know it's still OK once
CI is passed.
On Thu, Jul 11, 2024 at 3:11 PM Feng Wang wrote:
>
> v3: Rebase
> v2: Rebase
> The vector type of BFloat16 format is added in this patch,
> subseq
Hi,
The builtin isinf is not folded at front end if the corresponding optab
exists. It causes the range evaluation failed on the targets which has
optab_isinf. For instance, range-sincos.c will fail on the targets which
has optab_isinf as it calls builtin_isinf.
This patch fixed the problem by
> On 10 Jul 2024, at 16:45, Iain Sandoe wrote:
>> On 10 Jul 2024, at 16:25, FX Coudert wrote:
>>
>> I found another useless fixincludes on darwin, but this one was a bit harder
>> to diagnose. GCC trunk applies a fix to on modern Darwin: it is
>> stdio_stdarg_h. That fix is actually part o
Hi Ruoyao,
Thanks for your info. I updated my patch and sent it for review.
Thanks
Gui Haochen
在 2024/7/10 22:01, Xi Ruoyao 写道:
> On Wed, 2024-07-10 at 21:54 +0800, Xi Ruoyao wrote:
>> On Mon, 2024-07-01 at 09:11 +0800, HAO CHEN GUI wrote:
>>> Hi,
>>> Gently ping it.
>>> https://gcc.gnu.org/p
Hi Jeff,
在 2024/7/11 6:25, Jeff Law 写道:
> OK. But given this patch is several months old, can you re-bootstrap & test
> before committing to the trunk.
Thanks. I will rebase the patch and test it again.
Thanks
Gui Haochen
Hi Harald,
thank you very much for ok'ing this large patch. Merged as
gcc-15-1965-ge4f2f46e015
Looking forward to get (no) bug reports ;-)
Thanks again,
Andre
On Wed, 10 Jul 2024 20:52:37 +0200
Harald Anlauf wrote:
> Hi Andre,
>
> Am 10.07.24 um 10:45 schrieb Andre Vehreschild:
> > Hi Harald
Hello All:
Unroll factor is determined with max distance across loop iterations.
The logic for determining the loop unroll factor is based on
data dependency across loop iterations.
The max distance across loop iterations is the unrolling factor
that helps in predictive commoning.
Bootstrapped a
From: Pan Li
This patch would like to add the test cases for the vector .SAT_SUB in
the zip benchmark. Aka:
Form in zip benchmark:
#define DEF_VEC_SAT_U_SUB_ZIP(T1, T2) \
void __attribute__((noinline))\
vec_sat_u_sub_##T1##_#
The following adjusts mask recording which didn't take into account
that we can merge call arguments from two vectors like
_50 = {vect_d_1.253_41, vect_d_1.254_43};
_51 = VIEW_CONVERT_EXPR(mask__19.257_49);
_52 = (unsigned int) _51;
_53 = _Z3bazd.simdclone.7 (_50, _52);
_54 = BIT_FIELD_R
When only a loop mask is to be supplied for the inbranch arg to a
simd function we fail to handle integer mode masks correctly. We
need to guess the number of elements represented by it. This assumes
that excess arguments are all for masks, I wasn't able to create
a simdclone with more than one i
On Thu, Jul 11, 2024 at 9:03 AM Tamar Christina wrote:
>
> Hi Victor,
>
> > -Original Message-
> > From: Victor Do Nascimento
> > Sent: Wednesday, July 10, 2024 3:06 PM
> > To: gcc-patches@gcc.gnu.org
> > Cc: Richard Sandiford ; Richard Earnshaw
> > ; Victor Do Nascimento
> >
> > Subject
This patch series are recomposed and split from
https://gcc.gnu.org/pipermail/gcc-patches/2024-June/655974.html.
As I will add a new field tightly coupled with "vec_stmts_size", if following
naming conversion as original, the new macro would be very long. So better
to choose samely meaningful but
On Thu, Jul 11, 2024 at 10:30 AM Ajit Agarwal wrote:
>
> Hello All:
>
> Unroll factor is determined with max distance across loop iterations.
> The logic for determining the loop unroll factor is based on
> data dependency across loop iterations.
>
> The max distance across loop iterations is the
Vector stmts number of an operation is calculated based on output vectype.
This is over-estimated for lane-reducing operation. Sometimes, to workaround
the issue, we have to rely on additional logic to deduce an exactly accurate
number by other means. Aiming at the inconvenience, in this patch, we
On Thu, Jul 11, 2024 at 10:04 AM Andre Vehreschild wrote:
>
> Hi Harald,
>
> thank you very much for ok'ing this large patch. Merged as
> gcc-15-1965-ge4f2f46e015
>
> Looking forward to get (no) bug reports ;-)
This seems to break bootstrap with
../../gcc/gcc/fortran/trans-array.cc: In function
For lane-reducing operation(dot-prod/widen-sum/sad) in loop reduction, current
vectorizer could only handle the pattern if the reduction chain does not
contain other operation, no matter the other is normal or lane-reducing.
This patches removes some constraints in reduction analysis to allow mult
When transforming multiple lane-reducing operations in a loop reduction chain,
originally, corresponding vectorized statements are generated into def-use
cycles starting from 0. The def-use cycle with smaller index, would contain
more statements, which means more instruction dependency. For example
On Thu, Jul 11, 2024 at 10:54 AM Richard Biener
wrote:
>
> On Thu, Jul 11, 2024 at 10:04 AM Andre Vehreschild wrote:
> >
> > Hi Harald,
> >
> > thank you very much for ok'ing this large patch. Merged as
> > gcc-15-1965-ge4f2f46e015
> >
> > Looking forward to get (no) bug reports ;-)
>
> This seem
On Thu, Jul 11, 2024 at 11:04 AM Andre Vehreschild wrote:
>
> Hi Richard,
>
> I am sorry to hear that. Shall I revert?
I would suggest to instead fix by initializing the variable with NULL
(and a comment).
> - Andre
> On Thu, 11 Jul 2024 10:57:48 +0200
> Richard Biener wrote:
>
> > On Thu, Jul
Hi Richard,
I am sorry to hear that. Shall I revert?
- Andre
On Thu, 11 Jul 2024 10:57:48 +0200
Richard Biener wrote:
> On Thu, Jul 11, 2024 at 10:54 AM Richard Biener
> wrote:
> >
> > On Thu, Jul 11, 2024 at 10:04 AM Andre Vehreschild
> > wrote:
> > >
> > > Hi Harald,
> > >
> > > thank you
Most browsers these days do not support FTP any longer, and while
kernel.org offers downloads via other means, realistically, who is
going to download 2.4.0 or 2.4.18 kernels anyways?
---
htdocs/gcc-3.0/criteria.html | 4 +---
htdocs/gcc-3.1/criteria.html | 4 +---
htdocs/gcc-3.3/criteria.html | 4
Hi Richard,
would that be sufficient? Bootstrap is still running for me...
From c30c2cf829a094ba5e4c2c31333bed6e8c0d32af Mon Sep 17 00:00:00 2001
From: Andre Vehreschild
Date: Thu, 11 Jul 2024 11:21:04 +0200
Subject: [PATCH] [Fortran] Fix bootstrap broken by gcc-15-1965-ge4f2f46e015
gcc/fortran
Quite a different link - kudos to Google for the proper redirect alerting
of the change _and_ providing the new URL.
Pushed.
Gerald
---
htdocs/news.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/htdocs/news.html b/htdocs/news.html
index f13a8249..5e782349 100644
--- a/
On Thu, Jul 11, 2024 at 10:53 AM Feng Xue OS
wrote:
>
> Vector stmts number of an operation is calculated based on output vectype.
> This is over-estimated for lane-reducing operation. Sometimes, to workaround
> the issue, we have to rely on additional logic to deduce an exactly accurate
> number
> -Original Message-
> From: Harald Anlauf
> Sent: Thursday, July 11, 2024 12:53 AM
> To: Prathamesh Kulkarni ; gcc-
> patc...@gcc.gnu.org; fort...@gcc.gnu.org
> Subject: Re: Lower zeroing array assignment to memset for allocatable
> arrays
>
> External email: Use caution opening links
This patch makes the non-predicated vdupq_n MVE intrinsics use
vec_duplicate rather than an unspec. This enables the compiler to
generate better code sequences (for instance using vmov when
possible).
The patch renames the existing mve_vdup pattern into
@mve_vdupq_n, and removes the now useless
@
This patch fixes a bug where the mode iterator for mve_vdup
should be MVE_VLD_ST instead of MVE_vecs: V2DI and V2DF (thus vdup.64)
are not supported by MVE.
2024-07-02 Jolen Li
Christophe Lyon
gcc/
* config/arm/mve.md (mve_vdup): Fix mode iterator.
---
gcc/config
On Tue, Jul 09, 2024 at 05:43:59PM -0400, Jason Merrill wrote:
> On 7/9/24 9:44 AM, Nathaniel Shead wrote:
> > On Mon, Jul 08, 2024 at 12:26:41PM -0400, Jason Merrill wrote:
> > > For a using-decl in the same scope as the original decl, won't this
> > > replace
> > > it so only the using-decl is v
LGTM
juzhe.zh...@rivai.ai
From: pan2.li
Date: 2024-07-11 16:29
To: gcc-patches
CC: juzhe.zhong; kito.cheng; jeffreyalaw; rdapp.gcc; Pan Li
Subject: [PATCH v1] RISC-V: Add testcases for vector .SAT_SUB in zip benchmark
From: Pan Li
This patch would like to add the test cases for the vector .
Committed, thanks Juzhe.
Pan
From: juzhe.zh...@rivai.ai
Sent: Thursday, July 11, 2024 6:32 PM
To: Li, Pan2 ; gcc-patches
Cc: kito.cheng ; jeffreyalaw ;
Robin Dapp ; Li, Pan2
Subject: Re: [PATCH v1] RISC-V: Add testcases for vector .SAT_SUB in zip
benchmark
LGTM
There are currently five insns and five splits that handle
subtraction where the subtrahend is zero-extended to the mode
of the minuend.
This patch represents them as one insn (and one split) using
mode iterators.
Applied as obvious.
Johann
--
AVR: Tidy up subtract-and-zero_extend insns.
The
Hi All,
The following patch has been bootstrapped and regtested with default
configuration
[--enable-checking=yes] and with --enable-checking=release on powerpc64le-linux.
This patch removes passing the -many assembler option for release builds. Now,
GCC no longer passes -many under any conditio
jeevitha writes:
> Hi All,
>
> The following patch has been bootstrapped and regtested with default
> configuration
> [--enable-checking=yes] and with --enable-checking=release on
> powerpc64le-linux.
>
> This patch removes passing the -many assembler option for release builds. Now,
> GCC no lo
On Wed, 10 Jul 2024, Tamar Christina wrote:
> > -Original Message-
> > From: Richard Biener
> > Sent: Thursday, June 20, 2024 8:55 AM
> > To: Tamar Christina
> > Cc: gcc-patches@gcc.gnu.org; nd ; bin.ch...@linux.alibaba.com
> > Subject: RE: [PATCH][ivopts]: perform affine fold on unsigne
This is per the request from the kernel developers. For generating the
ORC unwind info, the objtool program needs to analysis the control flow
of a .o file. If a jump table is used, objtool has to correlate the
jump instruction with the table.
On x86 (where objtool was initially developed) it's
Doing so can avoid loading FP constants from the memory. It also
partially fixes PR 66462 as fclass does not signal on sNaN.
gcc/ChangeLog:
* config/loongarch/loongarch.md (extendsidi2): Add ("=r", "f")
alternative and use movfr2gr.s for it. The spec clearly states
movfr
On Thu, Jul 11, 2024 at 11:24 AM Andre Vehreschild wrote:
>
> Hi Richard,
>
> would that be sufficient? Bootstrap is still running for me...
Yes.
Richard.
> From c30c2cf829a094ba5e4c2c31333bed6e8c0d32af Mon Sep 17 00:00:00 2001
> From: Andre Vehreschild
> Date: Thu, 11 Jul 2024 11:21:04 +0200
On Wed, 10 Jul 2024, Tamar Christina wrote:
> > > > I might also point back to the idea I threw in somewhere, adding
> > > > OEP_VALUE (or a better name) to the set of flags accepted by
> > > > operand_equal_p. You mentioned hashing IIRC but I don't see the patches
> > > > touching hashing?
> > >
The end goal of the series is to change the definition of aarch64_feature_flags
from a uint64_t typedef to a class with 128 bits of storage. This class is a
new template bitmap type that uses operator overloading to mimic the existing
integer interface as much as possible.
The changes are mostly
gcc/ChangeLog:
* config/aarch64/aarch64.cc
(aarch64_tune_flags): Remove unused global variable.
(aarch64_override_options_internal): Remove dead assignment.
diff --git a/gcc/config/aarch64/aarch64.cc b/gcc/config/aarch64/aarch64.cc
index
7f0cc47d0f071de9297068baa85c6d5fc
AARCH64_NUM_ISA_MODES will be used within aarch64-opts.h in a later
commit.
gcc/ChangeLog:
* config/aarch64/aarch64.h (DEF_AARCH64_ISA_MODE): Move to...
* config/aarch64/aarch64-opts.h (DEF_AARCH64_ISA_MODE): ...here.
diff --git a/gcc/config/aarch64/aarch64-opts.h
b/gcc/config/
From: YunQiang Su
PR target/115840.
In riscv_preferred_else_value, we create an uninitialized tmp var
for else value, instead of the 0 (as default_preferred_else_value)
or the pre-exists VAR (as aarch64 does), so that we can use agnostic
policy.
The problem is that `warn_uninit` will emit a war
From: YunQiang Su
Uninitialized internal temp variable may be useful in some case,
such as for COND_LEN_MUL etc on RISC-V with V extension: If an
const or pre-exists VAR is used, we have to use "undisturbed"
policy; if an uninitialized VAR is used, we can use "agnostic".
With "agnostic", the micr
Currently there are many places where an aarch64_feature_flags variable
is used, but only the bottom three isa mode bits are set and read.
Using a separate data type for these value makes it more clear that
they're not expected or required to have any of their upper feature bits
set. It will also
The awk scripts that process the .opt files are relatively fragile and
only handle a limited set of data types correctly. The unrecognised
aarch64_feature_flags type is handled as a uint64_t, which happens to be
correct for now. However, that assumption will change when we extend
the mask to 128
gcc/ChangeLog:
* config/aarch64/aarch64.cc
(aarch64_valid_sysreg_name_p): Add bool cast.
diff --git a/gcc/config/aarch64/aarch64.cc b/gcc/config/aarch64/aarch64.cc
index
69f481ecfc848e6c5b61516c2f7b8bff5cd4f8b8..229e438115c268f876c6d77e1fcc4faa2f7d231b
100644
--- a/gcc/config/a
The name would become misleading in a later commit anyway, and I think
this is marginally more readable.
gcc/ChangeLog:
* config/aarch64/aarch64.cc
(aarch64_override_options): Remove temporary variable.
diff --git a/gcc/config/aarch64/aarch64.cc b/gcc/config/aarch64/aarch64.cc
i
Use a new AARCH64_HAVE_ISA macro in TARGET_* definitions, and eliminate
all the AARCH64_ISA_* feature macros.
gcc/ChangeLog:
* config/aarch64/aarch64-c.cc
(aarch64_define_unconditional_macros): Use TARGET_V8R macro.
(aarch64_update_cpp_builtins): Use TARGET_* macros.
gcc/ChangeLog:
* config/aarch64/aarch64-feature-deps.h
(get_flags_off): Construct aarch64_feature_flags (0) explicitly.
diff --git a/gcc/config/aarch64/aarch64-feature-deps.h
b/gcc/config/aarch64/aarch64-feature-deps.h
index
79126db88254b89f74a8583d50a77bc27865e265..a14ae22b729
On Wed, 10 Jul 2024, Tamar Christina wrote:
> > > >
> > > > > + }
> > > > > +
> > > > > + if (new_code == ERROR_MARK)
> > > > > + {
> > > > > + /* We couldn't flip the condition, so invert the mask
> > > > > instead. */
> > > > > + itype = TREE_TYPE (cmp_ls);
> > > > > +
Building an aarch64_feature_flags value from data within a gcc_options
or cl_target_option struct will get more complicated in a later commit.
Use a macro to avoid doing this manually in more than one location.
gcc/ChangeLog:
* common/config/aarch64/aarch64-common.cc
(aarch64_hand
Replace the existing uint64_t typedef with a bbitmap<2> typedef. Most
of the preparatory work was carried out in previous commits, so this
patch itself is fairly small.
gcc/ChangeLog:
* common/config/aarch64/aarch64-common.cc
(aarch64_set_asm_isa_flags): Store a second uint64_t v
This class provides a constant-size bitmap that can be used as almost a
drop-in replacement for bitmaps stored in integer types. The
implementation is entirely within the header file and uses recursive
templated operations to support effective optimisation and usage in
constexpr expressions.
This
On Thu, Jul 11, 2024 at 2:13 PM YunQiang Su wrote:
>
> From: YunQiang Su
>
> PR target/115840.
>
> In riscv_preferred_else_value, we create an uninitialized tmp var
> for else value, instead of the 0 (as default_preferred_else_value)
> or the pre-exists VAR (as aarch64 does), so that we can use a
On Thu, Jul 11, 2024 at 2:14 PM YunQiang Su wrote:
>
> From: YunQiang Su
>
> Uninitialized internal temp variable may be useful in some case,
> such as for COND_LEN_MUL etc on RISC-V with V extension: If an
> const or pre-exists VAR is used, we have to use "undisturbed"
> policy; if an uninitiali
From: YunQiang Su
PR target/115840.
In riscv_preferred_else_value, we create an uninitialized tmp var
for else value, instead of the 0 (as default_preferred_else_value)
or the pre-exists VAR (as aarch64 does), so that we can use agnostic
policy.
The problem is that `warn_uninit` will emit a war
Richard Biener 于2024年7月11日周四 20:21写道:
>
> On Thu, Jul 11, 2024 at 2:13 PM YunQiang Su wrote:
> >
> > From: YunQiang Su
> >
> > PR target/115840.
> >
> > In riscv_preferred_else_value, we create an uninitialized tmp var
> > for else value, instead of the 0 (as default_preferred_else_value)
> > or
Hi Iain,
Sorry about that, thanks for reverting. It appears to be a SDK version issue,
so my analysis of the old SDK versions was incorrect. Could you try (when you
get some time) the attached patch on one of the versions that was broken by my
earlier patch? (darwin19 or darwin21).
FX
test.
On Thu, Jul 11, 2024 at 2:45 PM YunQiang Su wrote:
>
> Richard Biener 于2024年7月11日周四 20:21写道:
> >
> > On Thu, Jul 11, 2024 at 2:13 PM YunQiang Su wrote:
> > >
> > > From: YunQiang Su
> > >
> > > PR target/115840.
> > >
> > > In riscv_preferred_else_value, we create an uninitialized tmp var
> > >
On Jul 4, 2024, Alexandre Oliva wrote:
> On Jul 3, 2024, Rainer Orth wrote:
> Hmm, I wonder if leaf frame pointer has to do with that.
It did, in a way.
The first two patches for PR113719 have each regressed
gcc.dg/ipa/iinline-attr.c on a different target. The reason for this
instabi
-Original Message-
> From: Richard Biener
> Sent: Thursday, July 11, 2024 12:39 PM
> To: Tamar Christina
> Cc: gcc-patches@gcc.gnu.org; nd ; bin.ch...@linux.alibaba.com
> Subject: RE: [PATCH][ivopts]: perform affine fold on unsigned addressing modes
> known not to overflow. [PR114932]
>
On Wed, 10 Jul 2024, Richard Sandiford wrote:
> Richard Biener writes:
> > The following is a prototype for how to represent load/store-lanes
> > within SLP. I've for now settled with having a single load node
> > with multiple permute nodes acting as selection, one for each loaded lane
> > and
On Jul 9, 2024, Iain Sandoe wrote:
>if (!gimple_seq_empty_p (n) && !gimple_seq_empty_p (e))
>{
> geh_else *stmt = gimple_build_eh_else (n, e);
> gimple_seq_add_stmt (&cleanup, stmt);
> }
> Which essentially says “if either of the sub-expressions to this are empty,
> then do n
Having observed failures of these two tests on yet another aarch64
operating system, and having concluded that the conditions that
trigger the problem ought to be present on all aarch64 targets, I'm
now matching any aarch64 target_os to enable the workaround.
Regstrapped on x86_64-linux-gnu, als
On a target that doesn't enable decimal float components in libgcc
(because the libc doens't define all required FE_* macros), but whose
compiler supports _Decimal* types, the effective target requirement
dfp passes, but several tests won't link because the runtime support
they depend on is missi
Passing an arbitrary error number to strerror* functions doesn't seem
to be portable; 19_diagnostics/system_error/cons-1.cc is hitting
runtime errors in the block that attempts to instantiate a
std:;system_error for error number 95. The range of errno macros
defined on this target doesn't reach
> -Original Message-
> From: Richard Biener
> Sent: Thursday, July 11, 2024 1:10 PM
> To: Tamar Christina
> Cc: gcc-patches@gcc.gnu.org; nd ; bin.ch...@linux.alibaba.com
> Subject: RE: [PATCH][ivopts]: use affine_tree when comparing IVs during
> candidate
> selection [PR114932]
>
> On W
The analyzer testsuite, on a customer's own operating system, reports
a potential NULL pointer dereference in flex-without-call-summaries.c.
I'm not sure why it shows up on that system, but not on others, but
the test is not meant to test for that warning, so I'm silencing it.
Regstrapped on x86
Hi Richard,
bootstrap finally passed and the fix is now merged as
gcc-15-1971-gb9513c6746b
Thanks for your patience.
- Andre
On Thu, 11 Jul 2024 14:01:02 +0200
Richard Biener wrote:
> On Thu, Jul 11, 2024 at 11:24 AM Andre Vehreschild
> wrote:
> >
> > Hi Richard,
> >
> > would that be suffi
Kyrylo Tkachov writes:
> Hi Victor,
>
>> On 10 Jul 2024, at 16:05, Victor Do Nascimento
>> wrote:
>>
>> External email: Use caution opening links or attachments
>>
>>
>> Given recent changes to the dot_prod standard pattern name, this patch
>> fixes the aarch64 back-end by implementing the fo
Hi all,
attached patch fixes using of coarrays as dummy arguments. The coarray
dummy argument was not dereferenced correctly, which is fixed now.
Regtests ok on x86_64-pc-linux-gnu / Fedora 39. Ok for mainline.
Regards,
Andre
--
Andre Vehreschild * Email: vehre ad gcc dot gnu dot org
Fro
Lgtm, thanks :)
YunQiang Su 於 2024年7月11日 週四,20:45寫道:
> From: YunQiang Su
>
> PR target/115840.
>
> In riscv_preferred_else_value, we create an uninitialized tmp var
> for else value, instead of the 0 (as default_preferred_else_value)
> or the pre-exists VAR (as aarch64 does), so that we can use
Hi all,
the attached patch fixes a segfault in the compiler, where for pointer
components of a derived type the caf_token in the component was not
set, when the derived was previously used outside of a coarray.
Regtests ok on x86_64-pc-linux-gnu / Fedora 39. Ok for mainline?
Regards,
And
> On 11 Jul 2024, at 15:41, Richard Sandiford wrote:
>
> External email: Use caution opening links or attachments
>
>
> Kyrylo Tkachov writes:
>> Hi Victor,
>>
>>> On 10 Jul 2024, at 16:05, Victor Do Nascimento
>>> wrote:
>>>
>>> External email: Use caution opening links or attachments
>
Victor Do Nascimento writes:
> Given the specification in the GCC internals manual defines the
> {u|s}dot_prod standard name as taking "two signed elements of the
> same mode, adding them to a third operand of wider mode", there is
> currently ambiguity in the relationship between the mode of the
I have no issues with any of the range-op work in this patch series,
but I am unequipped to review the floating point aspects of any of the
patches.
We just need someone to signoff that this properly reflects those builtins.
Andrew
On 7/11/24 03:32, HAO CHEN GUI wrote:
Hi,
The builtin i
On Thu, 11 Jul 2024 at 14:23, Alexandre Oliva wrote:
>
>
> Passing an arbitrary error number to strerror* functions doesn't seem
> to be portable; 19_diagnostics/system_error/cons-1.cc is hitting
> runtime errors in the block that attempts to instantiate a
> std:;system_error for error number 95.
During machine reorg we optimize backward jumps and transform insns as
e.g.
(jump_insn 118 117 119 (set (pc)
(if_then_else (ne (reg:CCRAW 33 %cc)
(const_int 8 [0x8]))
(label_ref 134)
(pc))) "dec_math_1.f90":204:8 discrim 1 2161 {*cjump_64}
(expr
On Thu, 11 Jul 2024 at 14:22, Alexandre Oliva wrote:
>
>
> On a target that doesn't enable decimal float components in libgcc
> (because the libc doens't define all required FE_* macros), but whose
> compiler supports _Decimal* types, the effective target requirement
> dfp passes, but several test
On Thu, 11 Jul 2024 at 15:28, Jonathan Wakely wrote:
>
> On Thu, 11 Jul 2024 at 14:22, Alexandre Oliva wrote:
> >
> >
> > On a target that doesn't enable decimal float components in libgcc
> > (because the libc doens't define all required FE_* macros), but whose
> > compiler supports _Decimal* ty
On Thu, 11 Jul 2024 at 14:21, Alexandre Oliva wrote:
>
>
> Having observed failures of these two tests on yet another aarch64
> operating system, and having concluded that the conditions that
> trigger the problem ought to be present on all aarch64 targets, I'm
> now matching any aarch64 target_os
On Jul 11 2024, Jonathan Wakely wrote:
> On Thu, 11 Jul 2024 at 14:21, Alexandre Oliva wrote:
>>
>>
>> Having observed failures of these two tests on yet another aarch64
>> operating system, and having concluded that the conditions that
>> trigger the problem ought to be present on all aarch64 ta
> > > > +/* Check that the "exponential index transform" can be applied to this
> > > > switch.
> > > > +
> > > > + See comment of the exp_index_transform function for details about
> > > > this
> > > > + transformation.
> > > > +
> > > > + We want:
> > > > + - This form of the switch is
On Thu, Jul 11, 2024 at 04:29:19PM +0200, Stefan Schulze Frielinghaus wrote:
> During machine reorg we optimize backward jumps and transform insns as
> e.g.
>
> (jump_insn 118 117 119 (set (pc)
> (if_then_else (ne (reg:CCRAW 33 %cc)
> (const_int 8 [0x8]))
> (lab
On Thu, Jul 11, 2024 at 05:09:41PM +0200, Stefan Schulze Frielinghaus wrote:
> I didn't have the schedule for 11.5 RC in mind which is tomorrow and the
> release a week afterwards. I hope this is still appropriate for 11.5?
>From my side, if Andreas or somebody else approves it, it is tested on 1
On 7/11/24 6:22 AM, Nathaniel Shead wrote:
On Tue, Jul 09, 2024 at 05:43:59PM -0400, Jason Merrill wrote:
On 7/9/24 9:44 AM, Nathaniel Shead wrote:
On Mon, Jul 08, 2024 at 12:26:41PM -0400, Jason Merrill wrote:
For a using-decl in the same scope as the original decl, won't this replace
it so o
Hi Andrew,
> On 11 Jul 2024, at 14:11, Andrew Carlotti wrote:
>
> External email: Use caution opening links or attachments
>
>
> gcc/ChangeLog:
>
>* config/aarch64/aarch64.cc
>(aarch64_tune_flags): Remove unused global variable.
>(aarch64_override_options_internal): Re
1 - 100 of 189 matches
Mail list logo