[all-commits] [llvm/llvm-project] ca318a: Reapply "[VPlan] Handle calls in VPInstruction:opc...
Florian Mayer via All-commits
all-commits at lists.llvm.org
Mon Apr 13 16:47:59 PDT 2026
Branch: refs/heads/users/fmayer/spr/main.hwasan-compiler-rt-add-non_negative_pointers-option-to-hwasan-alloc
Home: https://github.com/llvm/llvm-project
Commit: ca318abfe65a3224b8b6286f836ee4335fde9d95
https://github.com/llvm/llvm-project/commit/ca318abfe65a3224b8b6286f836ee4335fde9d95
Author: Florian Hahn <flo at fhahn.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M llvm/lib/Transforms/Vectorize/VPlanConstruction.cpp
M llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
A llvm/test/Transforms/LoopVectorize/early-exit-calls.ll
A llvm/test/Transforms/LoopVectorize/early-exit-unary-ops.ll
Log Message:
-----------
Reapply "[VPlan] Handle calls in VPInstruction:opcodeMayReadOrWriteFromMemory." (#191886)
This reverts commit
https://github.com/llvm/llvm-project/commit/3bf9639ec04544902670ab4199401ac470c1fcca.
The reapply adds trivial support for ExtractValue and InsertValue to fix
the crash causing the revert.
Original message:
Retrieve the called function and check its memory attributes, to
determine if a VPInstruction calling a function reads or writes memory.
Use it to strengthen assert in areAllLoadsDereferenceable.
PR: https://github.com/llvm/llvm-project/pull/190681
Commit: 46167f96bd2c5999297591ef362f3b7f051fd757
https://github.com/llvm/llvm-project/commit/46167f96bd2c5999297591ef362f3b7f051fd757
Author: Joshua Batista <jbatista at microsoft.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M clang/include/clang/Basic/DiagnosticDriverKinds.td
M clang/include/clang/Basic/DiagnosticGroups.td
M clang/include/clang/Options/Options.td
M clang/lib/Driver/Driver.cpp
M clang/lib/Driver/ToolChains/HLSL.cpp
M clang/lib/Driver/ToolChains/HLSL.h
A clang/test/Driver/dxc_spirv-val_missing.hlsl
A clang/test/Driver/dxc_spirv-val_path.hlsl
M clang/test/lit.cfg.py
Log Message:
-----------
Add spirv-val compilation step when targeting SPIR-V (#188150)
Clang-dxc.exe currently uses dxv by default after compiling HLSL that
targets DXIL, assuming dxv can be found. However, there is no
counterpart for SPIR-V. This PR changes clang-dxc.exe so that the DXC
driver inserts a step to run spirv-val when SPIR-V is the target. It
also accounts for whether or not the -Fo option is passed. In all cases,
spirv-val will be run, as long as the target is SPIR-V and the spirv-val
executable can be found on the PATH.
This PR also adds a new option --spirv-val-path, a counterpart to
--dxv-path, for specifying an explicit path to spirv-val.
Key differences from dxv: Unlike dxv, which validates and signs DXIL
containers and produces an output file, spirv-val is a pure validator —
it checks the SPIR-V binary and exits with a status code without
producing output. Because of this, the compile step writes directly to
-Fo and spirv-val validates the file in-place.
Additional fixes:
- Fixes a duplicate "validator not found" warning that was emitted twice
per invocation — once from BuildActions and once from isLastJob (via
GetNamedOutputPath). This was a pre-existing bug introduced by #130436
(https://github.com/llvm/llvm-project/pull/130436). Fixed by
adding a Diagnose parameter to requiresValidation so only one call site
emits the diagnostic.
- Fixes an "unused argument" warning for -Vd when targeting SPIR-V,
caused by early returns in requiresValidation before the argument was
claimed.
- Adds a new SPIRVValidation diagnostic group and
warn_drv_dxc_missing_spirv_val diagnostic for the missing spirv-val
warning.
Fixes https://github.com/llvm/llvm-project/issues/142669
Assisted by: Claude Opus 4.6
Commit: 2a9c32496b5e8e63844597f638bdf67e4732fd35
https://github.com/llvm/llvm-project/commit/2a9c32496b5e8e63844597f638bdf67e4732fd35
Author: Petr Hosek <phosek at google.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M clang/cmake/caches/Release.cmake
M llvm/CMakeLists.txt
M llvm/cmake/config-ix.cmake
R llvm/cmake/modules/FindLibXml2.cmake
M llvm/lib/WindowsManifest/CMakeLists.txt
Log Message:
-----------
Revert "[cmake] Add support for statically linking libxml2" (#191609)
Reverts llvm/llvm-project#166867
Commit: 654da0889be5016c86e9cb8f8425dadcfa93096c
https://github.com/llvm/llvm-project/commit/654da0889be5016c86e9cb8f8425dadcfa93096c
Author: Alex Duran <alejandro.duran at intel.com>
Date: 2026-04-14 (Tue, 14 Apr 2026)
Changed paths:
M offload/test/offloading/interop-print.c
Log Message:
-----------
[OFFLOAD][OpenMP][L0] Add Intel strings to interop-print test (#191901)
Commit: 72ed4cf3c25467bfdfd866aaae83db8f9a3a4253
https://github.com/llvm/llvm-project/commit/72ed4cf3c25467bfdfd866aaae83db8f9a3a4253
Author: Kyungtak Woo <kevinwkt at google.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Log Message:
-----------
[bazel] Exclude use_header_modules from some nanobind targets (#191898)
Excluding use_header_modules from some nanobind targets
Commit: ef1a2ff1837a4716ed933853528c47206b0260c8
https://github.com/llvm/llvm-project/commit/ef1a2ff1837a4716ed933853528c47206b0260c8
Author: Dan Liew <dan at su-root.co.uk>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M compiler-rt/lib/tysan/tysan.cpp
M compiler-rt/lib/tysan/tysan_interceptors.cpp
M compiler-rt/test/sanitizer_common/CMakeLists.txt
M compiler-rt/test/sanitizer_common/TestCases/Linux/aligned_alloc-alignment.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/allocator_returns_null_std.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/decorate_proc_maps.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/deepbind.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/free_aligned_sized.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/free_sized.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/malloc_usable_size.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/mlock_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/mprobe.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/pvalloc-overflow.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/release_to_os_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/replace_dlopen_main_program_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/soft_rss_limit_mb_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/tls_get_addr.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/tls_malloc_hook.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/unexpected_format_specifier_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/huge_malloc.c
M compiler-rt/test/sanitizer_common/TestCases/Posix/mmap_write_exec.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/posix_memalign-alignment.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/print-module-map.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/sanitizer_set_death_callback_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/weak_hook_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/allocator_interface.cpp
M compiler-rt/test/sanitizer_common/TestCases/allocator_returns_null.cpp
M compiler-rt/test/sanitizer_common/TestCases/compress_stack_depot.cpp
M compiler-rt/test/sanitizer_common/TestCases/corelimit.cpp
M compiler-rt/test/sanitizer_common/TestCases/get_allocated_begin.cpp
M compiler-rt/test/sanitizer_common/TestCases/hard_rss_limit_mb_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/malloc_hook.cpp
M compiler-rt/test/sanitizer_common/TestCases/malloc_hook_get_allocated_size_fast.cpp
M compiler-rt/test/sanitizer_common/TestCases/max_allocation_size.cpp
M compiler-rt/test/sanitizer_common/TestCases/reallocarray-overflow.cpp
M compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cpp
M compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard-dso.cpp
M compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard.cpp
M compiler-rt/test/sanitizer_common/lit.common.cfg.py
Log Message:
-----------
Unbreak macOS builds broken by #183310 (#191899)
Revert "[TySan][Sanitizer Common] Make TySan compatible with sanitizer common… (#183310)" and
"[TySan][Sanitizer Common] Enable TySan testing in the sanitizer commo… (#191385)"
This reverts commit d043b9e38dd9494c3c56018b2cbaf44fe205b110 and dd0c5ebe69e580066de100c8c2ba5430a1aeee44.
d043b9e38dd9494c3c56018b2cbaf44fe205b110 broke the macOS bots
https://ci.swift.org/job/llvm.org/job/clang-stage1-RA-cmake-incremental/job/main/638/consoleFull#-1919712802f80d942a-f672-4696-b0d9-c66cae8aa9dd
with an error that looks like:
```
/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/compiler-rt/lib/tysan/../sanitizer_common/sanitizer_signal_interceptors.inc:136:3: error: expected expression
136 | INIT_SIGNAL;
| ^
/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/compiler-rt/lib/tysan/../sanitizer_common/sanitizer_signal_interceptors.inc:77:21: note: expanded from macro 'INIT_SIGNAL'
77 | #define INIT_SIGNAL COMMON_INTERCEPT_FUNCTION(signal)
| ^
/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/compiler-rt/lib/tysan/tysan_interceptors.cpp:51:41: note: expanded from macro 'COMMON_INTERCEPT_FUNCTION'
51 | #define COMMON_INTERCEPT_FUNCTION(name) TYSAN_INTERCEPT_FUNC(name)
| ^
/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/compiler-rt/lib/tysan/tysan_interceptors.cpp:27:34: note: expanded from macro 'TYSAN_INTERCEPT_FUNC'
27 | if (!INTERCEPT_FUNCTION(name))
```
unfortunately reverting just d043b9e38dd9494c3c56018b2cbaf44fe205b110 doesn't work cleanly because another commit (dd0c5ebe69e580066de100c8c2ba5430a1aeee44) enabled testing and the testing fails when we revert just d043b9e38dd9494c3c56018b2cbaf44fe205b110. So this commit reverts dd0c5ebe69e580066de100c8c2ba5430a1aeee44 too.
It would've been nice to have to separate revert commits but it seems GitHub won't let me do this and forces commits to be squashed.
rdar://174648152
Commit: a41d9ac73f5b469b1087844b6bc0987a5a028993
https://github.com/llvm/llvm-project/commit/a41d9ac73f5b469b1087844b6bc0987a5a028993
Author: Matthew Nagy <matthew.nagy at sony.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
Log Message:
-----------
Revert "[TySan][Sanitizer Common] Enable TySan testing in the sanitizer commo…" (#191902)
Reverts llvm/llvm-project#191385
Some tests seem to be failing, but not under all environments, possibly
due to non-tysan related reasons. Clearly I need to look more into this
before enabling this
Commit: 25cd5cb3642226887004a9ac1192a8ecb25217a3
https://github.com/llvm/llvm-project/commit/25cd5cb3642226887004a9ac1192a8ecb25217a3
Author: Craig Topper <craig.topper at sifive.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M llvm/test/MC/RISCV/rv32p-aliases-valid.s
M llvm/test/MC/RISCV/rv64p-aliases-valid.s
Log Message:
-----------
[RISCV][P-ext] Add assembler tests showing that li can use pli.b/h/w instruction. (#191839)
Commit: d900d20dbb812fb7276dac13d7d6f1acfeda2def
https://github.com/llvm/llvm-project/commit/d900d20dbb812fb7276dac13d7d6f1acfeda2def
Author: Daniel Thornburgh <dthorn at google.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M clang/cmake/caches/Fuchsia-stage2.cmake
Log Message:
-----------
Revert "[CMake] Enable static libxml2 for Fuchsia toolchain" (#191900)
Reverts llvm/llvm-project#191657
Broke Fuchsia CI.
Commit: a0e19ca0f4c549582bb2ab7ed66866a7a3de16f3
https://github.com/llvm/llvm-project/commit/a0e19ca0f4c549582bb2ab7ed66866a7a3de16f3
Author: Alexey Bataev <a.bataev at outlook.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
Log Message:
-----------
[SLP][NFC] Make calculateTreeCostAndTrimNonProfitable compatible
with processBuildVector, NFC
processBuildVector adjusts the scalars to match the entry vector factor,
while calculateTreeCostAndTrimNonProfitable does not. Sync the behovior
to avoid potential issues. Currently it does not affect the cost
estimations, so it is NFC.
Reviewers:
Pull Request: https://github.com/llvm/llvm-project/pull/191905
Commit: f5ef1edaccdbe727de504c5e530d671b3efc06ca
https://github.com/llvm/llvm-project/commit/f5ef1edaccdbe727de504c5e530d671b3efc06ca
Author: Elvis Wang <elvis.wang at sifive.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M llvm/lib/Target/RISCV/RISCVTargetTransformInfo.h
A llvm/test/Transforms/LoopVectorize/RISCV/conditional-scalar-assignment-fold-tail.ll
A llvm/test/Transforms/LoopVectorize/RISCV/conditional-scalar-assignment.ll
A llvm/test/Transforms/LoopVectorize/RISCV/iv-select-cmp.ll
M llvm/test/Transforms/LoopVectorize/RISCV/select-cmp-reduction.ll
Log Message:
-----------
Reapply "[LV] Enable scalable FindLast on RISCV. (#184931)" (#190938)
Orginal PR: https://github.com/llvm/llvm-project/pull/184931
Original PR message:
This patch enables FindLast reduction vectorization with scalable
vectors
on RISCV.
Fixed the previous crash by
https://github.com/llvm/llvm-project/pull/191166 and
https://github.com/llvm/llvm-project/pull/191517
Commit: 1a50fab6e6a4a5eff2697c5141813979e4a337f7
https://github.com/llvm/llvm-project/commit/1a50fab6e6a4a5eff2697c5141813979e4a337f7
Author: Med Ismail Bennani <ismail at bennani.ma>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M lldb/examples/python/crashlog.py
M lldb/examples/python/crashlog_scripted_process.py
M lldb/include/lldb/Target/StackFrameList.h
M lldb/source/Plugins/Process/scripted/ScriptedThread.cpp
M lldb/source/Target/StackFrameList.cpp
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/a.out.inline.crash
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/a.out.inline.ips
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/inline_test.c
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/inline_crashlog.test
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/inline_crashlog_json.test
Log Message:
-----------
[lldb/crashlog] Fix inlined frames in crashlog scripted process (#191132)
When loading a crashlog using scripted process, inlined frames get lost.
This happens because `ScriptedThread::LoadArtificialStackFrames` creates
all frames as concrete frames via `SetFrameAtIndex`, completely
bypassing the inline frame synthesis that
`StackFrameList::FetchFramesUpTo` normally performs using
`GetParentOfInlinedScope`. Since two crashlog frames share the same PC
when one is inlined into the other, `CalculateSymbolContext` resolves
both to the innermost inlined scope, which causes the containing
function to be dropped from the backtrace.
This patch fixes the issue in two parts:
- On the Python side, `resolve_stackframes` now skips frames whose PC
matches the next frame's PC. These are inlined frames that LLDB will
synthesize from debug info when it processes the concrete frames we
provide. Indices are renumbered accordingly, and `len(frames) == 0` is
used for first-frame detection.
- On the C++ side, `LoadArtificialStackFrames` now replicates the inline
synthesis loop from `FetchFramesUpTo`: after creating each concrete
frame, it calls `GetParentOfInlinedScope` in a loop and creates a
`StackFrame` for each inlined parent scope.
rdar://154981041
Signed-off-by: Med Ismail Bennani <ismail at bennani.ma>
Commit: d32e0d35ea4327990ab37edb72bc7a4e7974720b
https://github.com/llvm/llvm-project/commit/d32e0d35ea4327990ab37edb72bc7a4e7974720b
Author: h-vetinari <h.vetinari at gmx.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M clang/www/c_status.html
Log Message:
-----------
[clang][docs] mark v22 as released (#191612)
The following features are now released and should be marked as such:
Named loops, v3 -> e4a1b5f
_COUNTER pre-defiend macro: -> df1d786
Allow calling static inline within extern inline: -> 8e60adc
Commit: 23674b9cf3e45194f3f0b7ca0ada8a558f1d9c6d
https://github.com/llvm/llvm-project/commit/23674b9cf3e45194f3f0b7ca0ada8a558f1d9c6d
Author: Andy Kaylor <akaylor at nvidia.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M clang/lib/CIR/CodeGen/CIRGenCleanup.cpp
M clang/lib/CIR/CodeGen/CIRGenDecl.cpp
M clang/lib/CIR/CodeGen/CIRGenExprAggregate.cpp
M clang/lib/CIR/CodeGen/CIRGenFunction.h
M clang/lib/CIR/Dialect/Transforms/FlattenCFG.cpp
A clang/test/CIR/CodeGen/lambda-dtor-field.cpp
Log Message:
-----------
[CIR] Implement handling for lambda capture of destructured types (#191316)
Lambda captures of variables that require destruction requires us to
created cleanup scopes with deferred deactivation. That is, the cleanup
scope is created, but added to a list that automatically deactivates the
cleanup when we exit the scope in the compiler code where the lambda is
being generated. This deferred deactivation mechanism will be needed for
other use cases as well, so it is implemented in a general way, which
closely follows the classic codegen handling.
Assisted-by: Cursor / claude-4.6-opus-high
Commit: f1cec8e5b966bfa9a7e31cca5e0731333377ad30
https://github.com/llvm/llvm-project/commit/f1cec8e5b966bfa9a7e31cca5e0731333377ad30
Author: Florian Mayer <fmayer at google.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M llvm/test/Instrumentation/HWAddressSanitizer/alloca.ll
Log Message:
-----------
[NFC] [HWASan] precommit test for -hwasan-tag-bits (#191907)
Commit: 42db16745df1cd07b41aba67bfa44908d14e318e
https://github.com/llvm/llvm-project/commit/42db16745df1cd07b41aba67bfa44908d14e318e
Author: Florian Mayer <fmayer at google.com>
Date: 2026-04-13 (Mon, 13 Apr 2026)
Changed paths:
M clang/cmake/caches/Fuchsia-stage2.cmake
M clang/cmake/caches/Release.cmake
M clang/include/clang/Basic/DiagnosticDriverKinds.td
M clang/include/clang/Basic/DiagnosticGroups.td
M clang/include/clang/Options/Options.td
M clang/lib/CIR/CodeGen/CIRGenCleanup.cpp
M clang/lib/CIR/CodeGen/CIRGenDecl.cpp
M clang/lib/CIR/CodeGen/CIRGenExprAggregate.cpp
M clang/lib/CIR/CodeGen/CIRGenFunction.h
M clang/lib/CIR/Dialect/Transforms/FlattenCFG.cpp
M clang/lib/Driver/Driver.cpp
M clang/lib/Driver/ToolChains/HLSL.cpp
M clang/lib/Driver/ToolChains/HLSL.h
A clang/test/CIR/CodeGen/lambda-dtor-field.cpp
A clang/test/Driver/dxc_spirv-val_missing.hlsl
A clang/test/Driver/dxc_spirv-val_path.hlsl
M clang/test/lit.cfg.py
M clang/www/c_status.html
M compiler-rt/lib/tysan/tysan.cpp
M compiler-rt/lib/tysan/tysan_interceptors.cpp
M compiler-rt/test/sanitizer_common/CMakeLists.txt
M compiler-rt/test/sanitizer_common/TestCases/Linux/aligned_alloc-alignment.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/allocator_returns_null_std.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/decorate_proc_maps.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/deepbind.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/free_aligned_sized.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/free_sized.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/malloc_usable_size.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/mlock_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/mprobe.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/pvalloc-overflow.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/release_to_os_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/replace_dlopen_main_program_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/resize_tls_dynamic.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/soft_rss_limit_mb_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Linux/tls_get_addr.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/tls_malloc_hook.c
M compiler-rt/test/sanitizer_common/TestCases/Linux/unexpected_format_specifier_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/huge_malloc.c
M compiler-rt/test/sanitizer_common/TestCases/Posix/mmap_write_exec.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/posix_memalign-alignment.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/print-module-map.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/sanitizer_set_death_callback_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/Posix/weak_hook_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/allocator_interface.cpp
M compiler-rt/test/sanitizer_common/TestCases/allocator_returns_null.cpp
M compiler-rt/test/sanitizer_common/TestCases/compress_stack_depot.cpp
M compiler-rt/test/sanitizer_common/TestCases/corelimit.cpp
M compiler-rt/test/sanitizer_common/TestCases/get_allocated_begin.cpp
M compiler-rt/test/sanitizer_common/TestCases/hard_rss_limit_mb_test.cpp
M compiler-rt/test/sanitizer_common/TestCases/malloc_hook.cpp
M compiler-rt/test/sanitizer_common/TestCases/malloc_hook_get_allocated_size_fast.cpp
M compiler-rt/test/sanitizer_common/TestCases/max_allocation_size.cpp
M compiler-rt/test/sanitizer_common/TestCases/reallocarray-overflow.cpp
M compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_symbolize.cpp
M compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard-dso.cpp
M compiler-rt/test/sanitizer_common/TestCases/sanitizer_coverage_trace_pc_guard.cpp
M compiler-rt/test/sanitizer_common/lit.common.cfg.py
M lldb/examples/python/crashlog.py
M lldb/examples/python/crashlog_scripted_process.py
M lldb/include/lldb/Target/StackFrameList.h
M lldb/source/Plugins/Process/scripted/ScriptedThread.cpp
M lldb/source/Target/StackFrameList.cpp
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/a.out.inline.crash
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/a.out.inline.ips
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/inline_test.c
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/inline_crashlog.test
A lldb/test/Shell/ScriptInterpreter/Python/Crashlog/inline_crashlog_json.test
M llvm/CMakeLists.txt
M llvm/cmake/config-ix.cmake
R llvm/cmake/modules/FindLibXml2.cmake
M llvm/lib/Target/RISCV/RISCVTargetTransformInfo.h
M llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
M llvm/lib/Transforms/Vectorize/VPlanConstruction.cpp
M llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
M llvm/lib/WindowsManifest/CMakeLists.txt
M llvm/test/MC/RISCV/rv32p-aliases-valid.s
M llvm/test/MC/RISCV/rv64p-aliases-valid.s
A llvm/test/Transforms/LoopVectorize/RISCV/conditional-scalar-assignment-fold-tail.ll
A llvm/test/Transforms/LoopVectorize/RISCV/conditional-scalar-assignment.ll
A llvm/test/Transforms/LoopVectorize/RISCV/iv-select-cmp.ll
M llvm/test/Transforms/LoopVectorize/RISCV/select-cmp-reduction.ll
A llvm/test/Transforms/LoopVectorize/early-exit-calls.ll
A llvm/test/Transforms/LoopVectorize/early-exit-unary-ops.ll
M offload/test/offloading/interop-print.c
M utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Log Message:
-----------
[𝘀𝗽𝗿] changes introduced through rebase
Created using spr 1.3.7
[skip ci]
Compare: https://github.com/llvm/llvm-project/compare/d95248b5cb7f...42db16745df1
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list