This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 896825a Daily bump.
new 1d19684 compiler: improvements for type alias handling
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/go/gofrontend/MERGE | 2 +-
gcc/go/gofrontend/gogo.cc | 27 ++++++++++++++++++-----
gcc/testsuite/go.test/test/fixedbugs/issue5089.go | 4 ++--
3 files changed, 24 insertions(+), 9 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 6109735 [InstCombine] Added regression test to narrow-swich.ll
new f337952 DAGCombiner: Allow negating ConstantFP after legalize
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/ADT/APFloat.h | 6 ++++++
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 14 ++++++++++----
test/CodeGen/AMDGPU/fneg-combines.ll | 3 +--
unittests/ADT/APFloatTest.cpp | 22 ++++++++++++++++++++++
4 files changed, 39 insertions(+), 6 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 fe49b71 Rewind instantiations of OuterAnalysisManagerProxy in r289317 [...]
new 6109735 [InstCombine] Added regression test to narrow-swich.ll
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:
test/Transforms/InstCombine/narrow-switch.ll | 42 ++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
--
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 6e6c6de gold-plugin: Add the file path to the file open error diagnostic.
new 4dc4396 AMDGPU: Implement early ifcvt target hooks.
new fe49b71 Rewind instantiations of OuterAnalysisManagerProxy in r289317 [...]
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:
include/llvm/Analysis/CGSCCPassManager.h | 4 +-
include/llvm/Analysis/LoopAnalysisManager.h | 3 +-
lib/Analysis/CGSCCPassManager.cpp | 2 +-
lib/Analysis/LoopAnalysisManager.cpp | 3 +-
lib/Target/AMDGPU/AMDGPUSubtarget.h | 5 +
lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 14 +
lib/Target/AMDGPU/SIInstrInfo.cpp | 141 ++++++-
lib/Target/AMDGPU/SIInstrInfo.h | 12 +
lib/Target/AMDGPU/SISchedule.td | 5 +
test/CodeGen/AMDGPU/early-if-convert-cost.ll | 110 +++++
test/CodeGen/AMDGPU/early-if-convert.ll | 454 +++++++++++++++++++++
.../AMDGPU/uniform-branch-intrinsic-cond.ll | 1 +
test/CodeGen/AMDGPU/uniform-cfg.ll | 4 +-
13 files changed, 746 insertions(+), 12 deletions(-)
create mode 100644 test/CodeGen/AMDGPU/early-if-convert-cost.ll
create mode 100644 test/CodeGen/AMDGPU/early-if-convert.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 compiler-rt.
from a39f5f8 [asan] fix __sanitizer_cov_with_check to get the correct call [...]
new 86251c4 [XRay][compiler-rt] XRay Flight Data Recorder Mode
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/xray/xray_log_interface.h | 51 +++
include/xray/xray_records.h | 6 +
lib/xray/CMakeLists.txt | 37 +--
lib/xray/tests/CMakeLists.txt | 10 +-
lib/xray/tests/unit/CMakeLists.txt | 2 +
lib/xray/tests/unit/buffer_queue_test.cc | 40 ++-
lib/xray/tests/unit/fdr_logging_test.cc | 127 ++++++++
lib/xray/xray_buffer_queue.cc | 31 +-
lib/xray/xray_buffer_queue.h | 36 +-
lib/xray/xray_fdr_logging.cc | 542 +++++++++++++++++++++++++++++++
lib/xray/xray_fdr_logging.h | 95 ++++++
lib/xray/xray_flags.inc | 2 +
lib/xray/xray_inmemory_log.cc | 66 +---
lib/xray/xray_log_interface.cc | 57 ++++
lib/xray/xray_utils.cc | 165 ++++++++++
lib/xray/xray_utils.h | 44 +++
lib/xray/xray_x86_64.h | 2 +-
test/xray/CMakeLists.txt | 6 -
test/xray/Unit/lit.site.cfg.in | 4 +
19 files changed, 1203 insertions(+), 120 deletions(-)
create mode 100644 include/xray/xray_log_interface.h
create mode 100644 lib/xray/tests/unit/fdr_logging_test.cc
create mode 100644 lib/xray/xray_fdr_logging.cc
create mode 100644 lib/xray/xray_fdr_logging.h
create mode 100644 lib/xray/xray_log_interface.cc
create mode 100644 lib/xray/xray_utils.cc
create mode 100644 lib/xray/xray_utils.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 llvm.
from 7b09fb7 Try to prevent build breakage by touching a CMakeLists.txt.
new 6e6c6de gold-plugin: Add the file path to the file open error diagnostic.
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:
test/tools/gold/X86/error-unopenable.ll | 8 ++++++++
tools/gold/gold-plugin.cpp | 3 ++-
2 files changed, 10 insertions(+), 1 deletion(-)
create mode 100644 test/tools/gold/X86/error-unopenable.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 4a58385 [OpenMP] Codegen support for 'target teams' on the host.
new 9c01f5c Driver: ignore -fno-objc-arc-exception when -fno-objc-arc set
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/Driver/Tools.cpp | 6 ++++++
test/Driver/no-arc-exception-silence.m | 2 ++
2 files changed, 8 insertions(+)
create mode 100644 test/Driver/no-arc-exception-silence.m
--
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 f541c74 [PM] Teach LoopUnroll to update the LPM infrastructure as it [...]
new 7b09fb7 Try to prevent build breakage by touching a CMakeLists.txt.
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/GlobalISel/CMakeLists.txt | 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 llvm.
from 4a50c7f Reinstate "r292904 - [lit] Allow boolean expressions in REQUI [...]
new 55e9554 [GlobalISel] Rename TargetGlobalISel.td to GISel/SelectionDAG [...]
new c484c05 [GlobalISel] Generate selector for more integer binop patterns.
new f541c74 [PM] Teach LoopUnroll to update the LPM infrastructure as it [...]
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:
.../SelectionDAGCompat.td} | 16 +++
include/llvm/Target/Target.td | 8 +-
lib/Target/AArch64/AArch64InstructionSelector.cpp | 37 +----
lib/Transforms/Scalar/LoopPassManager.cpp | 7 +
lib/Transforms/Scalar/LoopUnrollPass.cpp | 75 ++++++++++-
.../AArch64/GlobalISel/arm64-instructionselect.mir | 4 +-
test/Transforms/LoopUnroll/basic.ll | 1 +
test/Transforms/LoopUnroll/full-unroll-bad-cost.ll | 1 +
test/Transforms/LoopUnroll/full-unroll-crashers.ll | 1 +
.../LoopUnroll/full-unroll-heuristics-2.ll | 1 +
.../LoopUnroll/full-unroll-heuristics-cmp.ll | 1 +
.../LoopUnroll/full-unroll-heuristics-dce.ll | 1 +
.../LoopUnroll/full-unroll-heuristics-geps.ll | 1 +
.../LoopUnroll/full-unroll-heuristics-phi-prop.ll | 1 +
.../LoopUnroll/full-unroll-keep-first-exit.ll | 1 +
test/Transforms/LoopUnroll/revisit.ll | 150 +++++++++++++++++++++
test/Transforms/LoopUnroll/runtime-loop.ll | 3 +
test/Transforms/LoopUnroll/runtime-loop1.ll | 3 +
test/Transforms/LoopUnroll/runtime-loop2.ll | 3 +
test/Transforms/LoopUnroll/runtime-loop3.ll | 1 +
test/Transforms/LoopUnroll/runtime-loop5.ll | 3 +
test/Transforms/LoopUnroll/unloop.ll | 2 +-
.../LoopUnroll/update-loop-info-in-subloops.ll | 1 +
23 files changed, 280 insertions(+), 42 deletions(-)
rename include/llvm/Target/{TargetGlobalISel.td => GlobalISel/SelectionDAGCompat.t [...]
create mode 100644 test/Transforms/LoopUnroll/revisit.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 llvm.
from d367f44 AMDGPU add support for spilling to a user sgpr pointed buffers
new 431645e [coroutines] Spill the result of the invoke instruction correctly
new 4a50c7f Reinstate "r292904 - [lit] Allow boolean expressions in REQUI [...]
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:
docs/TestingGuide.rst | 64 +++---
lib/Transforms/Coroutines/CoroFrame.cpp | 30 ++-
test/Transforms/Coroutines/coro-frame.ll | 61 +++++
utils/lit/lit/BooleanExpression.py | 251 +++++++++++++++++++++
utils/lit/lit/Test.py | 118 ++++++++--
utils/lit/lit/TestRunner.py | 165 +++++++++-----
.../Inputs/shtest-format/requires-missing.txt | 7 +-
.../Inputs/shtest-format/requires-present.txt | 4 +-
.../tests/Inputs/shtest-format/requires-star.txt | 3 +
.../tests/Inputs/shtest-format/requires-triple.txt | 3 +
.../shtest-format/unsupported-expr-false.txt | 9 +
.../Inputs/shtest-format/unsupported-expr-true.txt | 4 +
.../Inputs/shtest-format/unsupported-star.txt | 3 +
.../Inputs/shtest-format/xfail-expr-false.txt | 3 +
.../tests/Inputs/shtest-format/xfail-expr-true.txt | 4 +
utils/lit/tests/boolean-parsing.py | 4 +
utils/lit/tests/shtest-format.py | 15 +-
utils/lit/tests/unit/TestRunner.py | 57 +++++
18 files changed, 684 insertions(+), 121 deletions(-)
create mode 100644 test/Transforms/Coroutines/coro-frame.ll
create mode 100644 utils/lit/lit/BooleanExpression.py
create mode 100644 utils/lit/tests/Inputs/shtest-format/requires-star.txt
create mode 100644 utils/lit/tests/Inputs/shtest-format/requires-triple.txt
create mode 100644 utils/lit/tests/Inputs/shtest-format/unsupported-expr-false.txt
create mode 100644 utils/lit/tests/Inputs/shtest-format/unsupported-expr-true.txt
create mode 100644 utils/lit/tests/Inputs/shtest-format/unsupported-star.txt
create mode 100644 utils/lit/tests/Inputs/shtest-format/xfail-expr-false.txt
create mode 100644 utils/lit/tests/Inputs/shtest-format/xfail-expr-true.txt
create mode 100644 utils/lit/tests/boolean-parsing.py
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.