This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from ce00de8 X86: Teach X86InstrInfo::analyzeCompare to recognize compares [...]
new 13384c6 AMDGPU: Add pass to expand memcpy/memmove/memset
new cdf1f70 X86: Introduce relocImm-based patterns for cmp.
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/AMDGPU/AMDGPU.h | 4 +
lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 9 +-
lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp | 123 ++++++++++++++++++++++++++++
lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 3 +
lib/Target/AMDGPU/CMakeLists.txt | 1 +
lib/Target/X86/X86ISelDAGToDAG.cpp | 25 ++++++
lib/Target/X86/X86InstrCompiler.td | 6 ++
lib/Target/X86/X86InstrInfo.td | 16 ++++
test/CodeGen/AMDGPU/lower-mem-intrinsics.ll | 117 ++++++++++++++++++++++++++
test/CodeGen/X86/absolute-cmp.ll | 39 +++++++++
10 files changed, 339 insertions(+), 4 deletions(-)
create mode 100644 lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
create mode 100644 test/CodeGen/AMDGPU/lower-mem-intrinsics.ll
create mode 100644 test/CodeGen/X86/absolute-cmp.ll
--
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 bc505a9 [docs] coverage: Clarify which flags enable gcov-style profil [...]
new 05157f0 [DebugInfo] Added support to Clang FE for generating debug in [...]
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/UsersManual.rst | 16 +++
include/clang/CodeGen/ModuleBuilder.h | 4 +
include/clang/Driver/CC1Options.td | 2 +
include/clang/Driver/Options.td | 4 +
include/clang/Frontend/CodeGenOptions.def | 3 +
lib/CodeGen/CGDebugInfo.cpp | 15 +++
lib/CodeGen/CGDebugInfo.h | 10 ++
lib/CodeGen/CMakeLists.txt | 1 +
lib/CodeGen/CodeGenAction.cpp | 14 ++
lib/CodeGen/MacroPPCallbacks.cpp | 211 ++++++++++++++++++++++++++++++
lib/CodeGen/MacroPPCallbacks.h | 118 +++++++++++++++++
lib/CodeGen/ModuleBuilder.cpp | 8 ++
lib/Driver/Tools.cpp | 5 +
lib/Frontend/CompilerInvocation.cpp | 1 +
test/CodeGen/debug-info-macro.c | 57 ++++++++
test/CodeGen/include/debug-info-macro.h | 12 ++
test/Driver/debug-options.c | 6 +
17 files changed, 487 insertions(+)
create mode 100644 lib/CodeGen/MacroPPCallbacks.cpp
create mode 100644 lib/CodeGen/MacroPPCallbacks.h
create mode 100644 test/CodeGen/debug-info-macro.c
create mode 100644 test/CodeGen/include/debug-info-macro.h
--
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 f31d89f PR c++/79316 - default argument in deduction guide
new 48840b6 PR c++/79143 * pt.c (instantiate_class_template_1): Copy CL [...]
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/cp/ChangeLog | 7 +++++++
gcc/cp/pt.c | 1 +
gcc/testsuite/ChangeLog | 6 ++++++
gcc/testsuite/g++.dg/cpp1z/pr79143.C | 28 ++++++++++++++++++++++++++++
4 files changed, 42 insertions(+)
create mode 100644 gcc/testsuite/g++.dg/cpp1z/pr79143.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 c32a9df [LoadCombine] Fix combining of loads which span an aliasing store.
new bf8cee8 Introduce NativeRawSymbol for PDB reading.
new ce00de8 X86: Teach X86InstrInfo::analyzeCompare to recognize compares [...]
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:
.../DIARawSymbol.h => Native/NativeRawSymbol.h} | 35 +-
lib/DebugInfo/PDB/CMakeLists.txt | 1 +
lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp | 700 +++++++++++++++++++++
lib/Target/X86/X86InstrInfo.cpp | 39 +-
test/CodeGen/X86/compare-global.ll | 2 +-
5 files changed, 741 insertions(+), 36 deletions(-)
copy include/llvm/DebugInfo/PDB/{DIA/DIARawSymbol.h => Native/NativeRawSymbol.h} (89%)
create mode 100644 lib/DebugInfo/PDB/Native/NativeRawSymbol.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 llvm.
from 6270090 [AMDGPU] Calculate number of min/max SGPRs/VGPRs for WavesPer [...]
new 5a764b0 [InstCombine] use m_APInt to allow demanded bits analysis on [...]
new 637c07c Rename LowerTypeTestsSummaryAction to PassSummaryAction. NFCI.
new c32a9df [LoadCombine] Fix combining of loads which span an aliasing store.
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:
include/llvm/Transforms/IPO.h | 10 +++----
lib/Passes/PassBuilder.cpp | 4 +--
lib/Transforms/IPO/LowerTypeTests.cpp | 33 +++++++++++-----------
lib/Transforms/IPO/PassManagerBuilder.cpp | 8 ++----
.../InstCombine/InstCombineSimplifyDemanded.cpp | 23 ++++++++-------
lib/Transforms/Scalar/LoadCombine.cpp | 6 +++-
test/Transforms/InstCombine/and.ll | 5 ++--
test/Transforms/InstCombine/zext.ll | 2 +-
test/Transforms/LoadCombine/load-combine-aa.ll | 21 ++++++++++++++
9 files changed, 68 insertions(+), 44 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_40
in repository llvm.
from 6af4d1a build_llvm_package.bat: remove lldb, as it doesn't work
new a4750c1 RegisterCoalescer: Cleanup joinReservedPhysReg(); NFC
new 1675786 RegisterCoalescer: Fix joinReservedPhysReg()
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/CodeGen/RegisterCoalescer.cpp | 38 ++++++++++---
test/CodeGen/AArch64/regcoal-physreg.mir | 95 ++++++++++++++++++++++++++++----
2 files changed, 112 insertions(+), 21 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 llvm.
from 61d13b1 Drop graph_ prefix
new 3af2f3b CODE_OWNERS: Update email address
new 4dc55bc [InstCombine] add test for demanded bits with splat vector co [...]
new 6270090 [AMDGPU] Calculate number of min/max SGPRs/VGPRs for WavesPer [...]
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:
CODE_OWNERS.TXT | 5 +-
lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 2 +-
lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp | 97 ++++++++-----------------
test/CodeGen/AMDGPU/attr-amdgpu-waves-per-eu.ll | 6 +-
test/Transforms/InstCombine/and.ll | 13 ++++
5 files changed, 49 insertions(+), 74 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 clang.
from c61bb67 [CodeGen] Remove unneeded `private`. NFCI.
new bc505a9 [docs] coverage: Clarify which flags enable gcov-style profil [...]
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/SourceBasedCodeCoverage.rst | 1 +
1 file changed, 1 insertion(+)
--
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 1652e4a Rename IsExplicitSpecialization -> IsMemberSpecialization whe [...]
new c61bb67 [CodeGen] Remove unneeded `private`. NFCI.
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/CodeGen/BackendUtil.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 binutils-gdb.
from ff6fa24 Fix NULL pointer dereference
new 62c1453 Remove return in function returning void
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 | 4 ++++
gdb/interps.c | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.