This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-arm-next-allyesconfig in repository toolchain/ci/llvm-monorepo.
from 6e52e18c54c4 [NFC] Update comment in libc++ ABI changelog adds 172850c204d0 Work around gcc.gnu.org/PR87766 adds c69c516702ca [Spectre] Fix MIR verifier errors in retpoline thunks adds 836fd867db83 Add docs+a script for building clang/LLVM with PGO adds d965a0d3042c [LegalizeTypes] Stop DAGTypeLegalizer::getSETCCWidenedResu [...] adds 21636ee16c26 [ValueTracking] peek through shuffles in ComputeNumSignBit [...] adds 58b04bc74416 [DAGCombiner] rearrange code in narrowExtractedVectorBinOp(); NFC adds 4daefad84dd2 [VFS] Add property 'fallthrough' that controls fallback to [...] adds 11694a717fbf [VFS] Add property 'fallthrough' that controls fallback to [...] adds 6d42f4105a88 Revert "[PassManager/Sanitizer] Enable usage of ported Add [...] adds e8469830a71f Fix PR39458 _LIBCPP_DEBUG breaks heterogeneous compare. adds 651ebbfcafda Fix and rename broken test for `settings write`. adds 2ca45f68dbae [llvm-readobj] Fix bugs with unrecognized types in switch [...] adds 0129d7a05f6c [x86] adjust tests to preserve behavior; NFC adds 644c28d95343 Further split cpus test adds 1599504d0cf2 Pass the nopie flag to the linker when linking with -pg. adds ba757da6f4f3 Update the other test. adds d14fb1b06ffd DebugInfo: reduce DIE range verification on object files adds c1816250039b [Hexagon] Add missing assignment to Itinerary in Call_nr adds 6f559c97906d Revert "Pass the nopie flag to the linker when linking wit [...] adds 0e6abe4aa148 test: add missing -triple adds 4981bca1065b [XRay] Support generational buffers in FDR controller
No new revisions were added by this update.
Summary of changes: clang/lib/CodeGen/BackendUtil.cpp | 11 - clang/lib/Frontend/CompilerInvocation.cpp | 18 +- clang/test/CodeGen/asan-new-pm.ll | 10 - .../VFS/Inputs/Broken.framework/Headers/Error.h | 3 + .../Broken.framework/Modules/module.modulemap | 6 + .../Inputs/Broken.framework/VFSHeaders}/A.h | 0 clang/test/VFS/Inputs/vfsroot.yaml | 55 +++ clang/test/VFS/vfsroot-include.c | 17 + clang/test/VFS/vfsroot-module.m | 10 + clang/test/VFS/vfsroot-with-overlay.c | 12 + .../lib/xray/tests/unit/fdr_controller_test.cc | 31 +- compiler-rt/lib/xray/xray_fdr_controller.h | 90 ++-- libcxx/include/algorithm | 12 - libcxx/test/libcxx/algorithms/debug_less.pass.cpp | 51 +++ .../any/any.class/any.assign/value.pass.cpp | 2 +- .../{TestExport.test => TestSettingsWrite.test} | 20 +- llvm/docs/HowToBuildWithPGO.rst | 163 +++++++ llvm/docs/index.rst | 4 + llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h | 7 +- llvm/include/llvm/InitializePasses.h | 4 +- .../Instrumentation/AddressSanitizerPass.h | 41 -- llvm/lib/Analysis/ValueTracking.cpp | 21 + llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 46 +- llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h | 3 - .../CodeGen/SelectionDAG/LegalizeVectorTypes.cpp | 16 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 8 + llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp | 57 ++- llvm/lib/Passes/PassBuilder.cpp | 3 +- llvm/lib/Passes/PassRegistry.def | 2 - llvm/lib/Support/VirtualFileSystem.cpp | 114 ++++- llvm/lib/Target/Hexagon/HexagonPseudo.td | 1 + llvm/lib/Target/X86/X86RetpolineThunks.cpp | 23 +- .../Instrumentation/AddressSanitizer.cpp | 180 +++----- .../Transforms/Instrumentation/Instrumentation.cpp | 4 +- llvm/test/CodeGen/X86/cpus-amd-no-x86_64.ll | 17 + .../{cpus-no-x86_64.ll => cpus-intel-no-x86_64.ll} | 13 - llvm/test/CodeGen/X86/cpus-no-x86_64.ll | 25 -- llvm/test/CodeGen/X86/retpoline-external.ll | 8 +- llvm/test/CodeGen/X86/retpoline-regparm.ll | 2 +- llvm/test/CodeGen/X86/retpoline.ll | 23 +- llvm/test/CodeGen/X86/stack-folding-int-avx2.ll | 12 +- llvm/test/CodeGen/X86/stack-folding-int-avx512.ll | 24 +- .../test/CodeGen/X86/stack-folding-int-avx512vl.ll | 12 +- .../test/Instrumentation/AddressSanitizer/basic.ll | 2 - llvm/test/Transforms/InstCombine/logical-select.ll | 11 +- llvm/test/Transforms/InstCombine/nsw.ll | 20 +- .../tools/llvm-dwarfdump/X86/debug-verify-object.s | 57 +++ llvm/tools/llvm-readobj/ELFDumper.cpp | 24 +- llvm/unittests/Support/VirtualFileSystemTest.cpp | 86 ++++ llvm/utils/collect_and_build_with_pgo.py | 487 +++++++++++++++++++++ 50 files changed, 1440 insertions(+), 428 deletions(-) delete mode 100644 clang/test/CodeGen/asan-new-pm.ll create mode 100644 clang/test/VFS/Inputs/Broken.framework/Headers/Error.h create mode 100644 clang/test/VFS/Inputs/Broken.framework/Modules/module.modulemap copy clang/test/{Modules/Inputs/Main.framework/Headers => VFS/Inputs/Broken.framew [...] create mode 100644 clang/test/VFS/Inputs/vfsroot.yaml create mode 100644 clang/test/VFS/vfsroot-include.c create mode 100644 clang/test/VFS/vfsroot-module.m create mode 100644 clang/test/VFS/vfsroot-with-overlay.c rename lldb/lit/Settings/{TestExport.test => TestSettingsWrite.test} (69%) create mode 100644 llvm/docs/HowToBuildWithPGO.rst delete mode 100644 llvm/include/llvm/Transforms/Instrumentation/AddressSanitizerPass.h create mode 100644 llvm/test/CodeGen/X86/cpus-amd-no-x86_64.ll copy llvm/test/CodeGen/X86/{cpus-no-x86_64.ll => cpus-intel-no-x86_64.ll} (58%) create mode 100644 llvm/test/tools/llvm-dwarfdump/X86/debug-verify-object.s create mode 100755 llvm/utils/collect_and_build_with_pgo.py