This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 9c7e898bbd6 amdgcn: Add instruction pattern for conditional shift operations
new f25dd779d44 driver, toplevel: Avoid emitting the version information twice.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/toplev.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from cd41085a37b rtl-ssa: Extend m_num_defs to a full unsigned int [PR108086]
new 9c7e898bbd6 amdgcn: Add instruction pattern for conditional shift operations
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/config/gcn/gcn-valu.md | 23 +++++++++++++
gcc/testsuite/gcc.target/gcn/cond_shift_3.c | 37 +++++++++++++++++++++
.../{aarch64/sve => gcn}/cond_shift_3_run.c | 2 +-
gcc/testsuite/gcc.target/gcn/cond_shift_4.c | 38 ++++++++++++++++++++++
.../{aarch64/sve => gcn}/cond_shift_4_run.c | 2 +-
gcc/testsuite/gcc.target/gcn/cond_shift_8.c | 35 ++++++++++++++++++++
.../{aarch64/sve => gcn}/cond_shift_8_run.c | 2 +-
gcc/testsuite/gcc.target/gcn/cond_shift_9.c | 36 ++++++++++++++++++++
.../{aarch64/sve => gcn}/cond_shift_9_run.c | 2 +-
9 files changed, 173 insertions(+), 4 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/gcn/cond_shift_3.c
copy gcc/testsuite/gcc.target/{aarch64/sve => gcn}/cond_shift_3_run.c (91%)
create mode 100644 gcc/testsuite/gcc.target/gcn/cond_shift_4.c
copy gcc/testsuite/gcc.target/{aarch64/sve => gcn}/cond_shift_4_run.c (91%)
create mode 100644 gcc/testsuite/gcc.target/gcn/cond_shift_8.c
copy gcc/testsuite/gcc.target/{aarch64/sve => gcn}/cond_shift_8_run.c (92%)
create mode 100644 gcc/testsuite/gcc.target/gcn/cond_shift_9.c
copy gcc/testsuite/gcc.target/{aarch64/sve => gcn}/cond_shift_9_run.c (92%)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from 4a075b258e6 [gas] Update .loc syntax comment in dwarf2dbg.c
new 1a8505cb53f gdb: add supports_arch_info callback to gdbarch_register
new b82d4ec99e3 gdb: make install_breakpoint return a non-owning reference
new 7b065306be3 gdbsupport: add type definitions for pid, lwp and tid
new 9056c917b3e gdb: add inferior_pre_detach observable
new d246d904adf gdb: add gdbarch_up
new 17467c10307 gdb/solib-svr4: don't disable probes interface if probe not found
new 8b588f42120 gdb: make gdb_printing_disassembler::stream public
new 18b4d0736bc gdb: initial support for ROCm platform (AMDGPU) debugging
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gdb/Makefile.in | 17 +-
gdb/NEWS | 7 +
gdb/README | 15 +
gdb/amd-dbgapi-target.c | 1966 +++++++++++++++++++++++++++++++++++++
gdb/amd-dbgapi-target.h | 116 +++
gdb/amdgpu-tdep.c | 1367 ++++++++++++++++++++++++++
gdb/amdgpu-tdep.h | 93 ++
gdb/arch-utils.c | 9 +-
gdb/breakpoint.c | 4 +-
gdb/breakpoint.h | 8 +-
gdb/configure | 425 +++++---
gdb/configure.ac | 52 +
gdb/configure.tgt | 23 +-
gdb/disasm.h | 4 +-
gdb/doc/gdb.texinfo | 291 ++++++
gdb/gdbarch.h | 12 +-
gdb/observable.c | 1 +
gdb/observable.h | 3 +
gdb/regcache.c | 3 +-
gdb/solib-rocm.c | 679 +++++++++++++
gdb/solib-svr4.c | 15 +-
gdb/target.c | 2 +
gdb/testsuite/gdb.rocm/simple.cpp | 48 +
gdb/testsuite/gdb.rocm/simple.exp | 52 +
gdb/testsuite/lib/future.exp | 38 +
gdb/testsuite/lib/gdb.exp | 7 +
gdb/testsuite/lib/rocm.exp | 94 ++
gdbsupport/ptid.h | 18 +-
28 files changed, 5210 insertions(+), 159 deletions(-)
create mode 100644 gdb/amd-dbgapi-target.c
create mode 100644 gdb/amd-dbgapi-target.h
create mode 100644 gdb/amdgpu-tdep.c
create mode 100644 gdb/amdgpu-tdep.h
create mode 100644 gdb/solib-rocm.c
create mode 100644 gdb/testsuite/gdb.rocm/simple.cpp
create mode 100644 gdb/testsuite/gdb.rocm/simple.exp
create mode 100644 gdb/testsuite/lib/rocm.exp
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from d84dc419e69 analyzer: fix -Wanalyzer-fd-type-mismatch false +ve on "lis [...]
new 5b7b9d2da76 testsuite: Add case-values-threshold to pr107876.C
new f4e1b46618e rtl-ssa: Fix splitting of clobber groups [PR108508]
new cd41085a37b rtl-ssa: Extend m_num_defs to a full unsigned int [PR108086]
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/rtl-ssa/accesses.cc | 14 ++++++++++----
gcc/rtl-ssa/insns.h | 14 +++++++++-----
gcc/testsuite/g++.dg/tree-ssa/pr107876.C | 2 +-
gcc/testsuite/gcc.target/aarch64/pr108508.c | 28 ++++++++++++++++++++++++++++
4 files changed, 48 insertions(+), 10 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/aarch64/pr108508.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-next-allyesconfig
in repository toolchain/ci/base-artifacts.
from 773c7eea30 45: force: #569: 21784: Success after linux: 278 commits
new 17e4f69b73 46: onsuccess: #570: 21816: Success after binutils/gcc/linux [...]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
01-reset_artifacts/console.log.xz | Bin 1800 -> 1772 bytes
02-prepare_abe/console.log.xz | Bin 2820 -> 2788 bytes
03-build_abe-binutils/console.log.xz | Bin 32032 -> 31472 bytes
04-build_abe-stage1/console.log.xz | Bin 74672 -> 73916 bytes
05-build_abe-qemu/console.log.xz | Bin 31908 -> 32144 bytes
06-build_linux/console.log.xz | Bin 12704 -> 11548 bytes
08-check_regression/console.log.xz | Bin 2940 -> 4416 bytes
08-check_regression/mail-body.txt | 4 ++--
09-update_baseline/console.log | 10 +++++-----
dashboard/dashboard-generate.sh | 2 +-
git/binutils_rev | 2 +-
git/gcc_rev | 2 +-
git/linux_rev | 2 +-
git/qemu_rev | 2 +-
mail/jira-body.txt | 2 +-
mail/mail-body.txt | 6 +++---
mail/mail-subject.txt | 2 +-
manifest.sh | 31 +++++++++++++++++--------------
results | 2 +-
19 files changed, 35 insertions(+), 32 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release/2.34/master
in repository glibc.
from 6484ae5b8c malloc: Fix -Wuse-after-free warning in tst-mallocalign1 [BZ [...]
new c5c792092b cdefs: Limit definition of fortification macros
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
misc/sys/cdefs.h | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release/2.35/master
in repository glibc.
from 6bcd5d8e36 x86: Prevent SIGSEGV in memcmp-sse2 when data is concurrentl [...]
new ae045ed16b cdefs: Limit definition of fortification macros
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
misc/sys/cdefs.h | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release/2.36/master
in repository glibc.
from 93967a2a7b x86: Prevent SIGSEGV in memcmp-sse2 when data is concurrentl [...]
new 56e00c5854 cdefs: Limit definition of fortification macros
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
misc/sys/cdefs.h | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.