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 06bcf5416f PR22431, powerpc64 ld segfault when .plt discarded
new 0743190874 Fix mem region parsing regression and add test
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:
gdb/ChangeLog | 9 ++++
gdb/Makefile.in | 2 +
gdb/memory-map.c | 2 +-
gdb/unittests/memory-map-selftests.c | 81 ++++++++++++++++++++++++++++++++++++
4 files changed, 93 insertions(+), 1 deletion(-)
create mode 100644 gdb/unittests/memory-map-selftests.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.
unknown user pushed a change to branch master
in repository llvm.
from 5765d84997d Rename CountingFunctionInserter and use for both mcount and [...]
new bd3b99d5429 Fix unused variable warning.
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:
lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp | 1 -
1 file changed, 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 lnt.
from 1d8ec45 Don't run regression analysis in the background
new b940dcf Apparently not all base64 tools support the -o switch
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:
docs/profiles.rst | 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 clang.
from 4944bbc9c2 [OPENMP] Fix DSA analysis for threadprivates after deserialization.
new 12f3fe3bbd Switch -mcount and -finstrument-functions to emit EnterExitI [...]
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:
include/clang/Driver/Options.td | 2 +
include/clang/Frontend/CodeGenOptions.def | 2 +
lib/CodeGen/CodeGenFunction.cpp | 50 +++++++++--------------
lib/CodeGen/CodeGenFunction.h | 5 ---
lib/Driver/ToolChains/Clang.cpp | 3 +-
lib/Frontend/CompilerInvocation.cpp | 2 +
test/CodeGen/instrument-functions.c | 17 ++++----
test/CodeGen/mcount.c | 8 ++--
test/CodeGen/x86_64-instrument-functions.c | 38 ++++++++++++++++++
test/CodeGenCXX/instrument-functions.cpp | 18 +++++----
test/Frontend/gnu-mcount.c | 64 +++++++++++++++---------------
11 files changed, 121 insertions(+), 88 deletions(-)
create mode 100644 test/CodeGen/x86_64-instrument-functions.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.
unknown user pushed a change to branch master
in repository lnt.
from 1d37c30 Allow submissions without start_time/end_time field.
new 17cb71b Add back some missing sessions
new 1b8458d Cleanup __health endpoint
new 1d8ec45 Don't run regression analysis in the background
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:
lnt/server/db/fieldchange.py | 33 ++---
.../db/rules/rule_blacklist_benchmarks_by_name.py | 53 --------
lnt/server/ui/views.py | 17 +--
lnt/util/ImportData.py | 13 +-
lnt/util/async_ops.py | 148 ---------------------
tests/server/db/blacklist | 2 -
tests/server/db/blacklist.py | 116 ----------------
7 files changed, 30 insertions(+), 352 deletions(-)
delete mode 100644 lnt/server/db/rules/rule_blacklist_benchmarks_by_name.py
delete mode 100644 lnt/util/async_ops.py
delete mode 100644 tests/server/db/blacklist
delete mode 100644 tests/server/db/blacklist.py
--
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 llvm.
from 9c5d8478b13 [SLPVectorizer] Failure to beneficially vectorize 'copyable [...]
new 5765d84997d Rename CountingFunctionInserter and use for both mcount and [...]
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:
include/llvm/CodeGen/Passes.h | 3 -
include/llvm/InitializePasses.h | 3 +-
include/llvm/LinkAllPasses.h | 3 +-
include/llvm/Transforms/Scalar.h | 10 ++
.../llvm/Transforms/Utils/EntryExitInstrumenter.h | 36 +++++
lib/CodeGen/CMakeLists.txt | 1 -
lib/CodeGen/CodeGen.cpp | 1 -
lib/CodeGen/CountingFunctionInserter.cpp | 58 --------
lib/CodeGen/TargetPassConfig.cpp | 4 +-
lib/Passes/PassBuilder.cpp | 1 +
lib/Passes/PassRegistry.def | 2 +
lib/Transforms/IPO/PassManagerBuilder.cpp | 1 +
lib/Transforms/Scalar/Scalar.cpp | 2 +
lib/Transforms/Utils/CMakeLists.txt | 1 +
lib/Transforms/Utils/EntryExitInstrumenter.cpp | 148 +++++++++++++++++++++
test/CodeGen/PowerPC/mcount-insertion.ll | 40 +++++-
test/CodeGen/X86/O0-pipeline.ll | 2 +-
test/Transforms/CountingFunctionInserter/mcount.ll | 79 +++++++++--
tools/llc/llc.cpp | 3 +-
tools/opt/opt.cpp | 3 +-
20 files changed, 316 insertions(+), 85 deletions(-)
create mode 100644 include/llvm/Transforms/Utils/EntryExitInstrumenter.h
delete mode 100644 lib/CodeGen/CountingFunctionInserter.cpp
create mode 100644 lib/Transforms/Utils/EntryExitInstrumenter.cpp
--
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 clang.
from 723b459448 [refactor][extract] avoid extracting expressions from types [...]
new 4944bbc9c2 [OPENMP] Fix DSA analysis for threadprivates after deserialization.
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:
lib/Sema/SemaOpenMP.cpp | 6 ++++++
test/OpenMP/parallel_ast_print.cpp | 11 +++++++----
2 files changed, 13 insertions(+), 4 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 master
in repository newlib.
from 0b0b2b96f Cygwin: link: Simplify an expression
new 0d57ef9de Cygwin: open: Remove unused code to handle HIDDEN and SYSTEM files
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:
winsup/cygwin/fhandler.cc | 8 --------
1 file changed, 8 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_50
in repository llvm.
from 4db329e62bf Merging r317470:
new d27dcd32900 Merging r317204 and r318172:
new 165d008209e Merging r315310:
The 2 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:
lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 15 +-
lib/Target/Mips/MipsFrameLowering.cpp | 35 ++--
lib/Target/Mips/MipsSEFrameLowering.cpp | 8 +-
test/CodeGen/Mips/msa/emergency-spill.mir | 212 +++++++++++++++++++++++
test/CodeGen/Mips/msa/frameindex.ll | 49 ++++--
test/MC/Mips/macro-aliases-invalid-wrong-error.s | 38 ++++
test/MC/Mips/macro-aliases.s | 35 ++++
7 files changed, 347 insertions(+), 45 deletions(-)
create mode 100644 test/CodeGen/Mips/msa/emergency-spill.mir
create mode 100644 test/MC/Mips/macro-aliases-invalid-wrong-error.s
create mode 100644 test/MC/Mips/macro-aliases.s
--
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 llvm.
from 9157549de88 [llvm-objcopy] Improve command line option help messages
new 9c5d8478b13 [SLPVectorizer] Failure to beneficially vectorize 'copyable [...]
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:
lib/Transforms/Vectorize/SLPVectorizer.cpp | 458 ++++++++++++++-------
test/Transforms/SLPVectorizer/SystemZ/pr34619.ll | 52 +++
.../SLPVectorizer/X86/vect_copyable_in_binops.ll | 200 +++------
3 files changed, 438 insertions(+), 272 deletions(-)
create mode 100644 test/Transforms/SLPVectorizer/SystemZ/pr34619.ll
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.