[all-commits] [llvm/llvm-project] a20569: [Clang] Add template argument support for {con, de}...

Steven Wu via All-commits all-commits at lists.llvm.org
Thu Sep 11 10:16:40 PDT 2025


  Branch: refs/heads/users/cachemeifyoucan/spr/cas-add-mappedfileregionbumpptr
  Home:   https://github.com/llvm/llvm-project
  Commit: a205695de4dce3c839dedbb78dd67e2a7758947a
      https://github.com/llvm/llvm-project/commit/a205695de4dce3c839dedbb78dd67e2a7758947a
  Author: tynasello <63558019+tynasello at users.noreply.github.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/Attr.td
    M clang/lib/CodeGen/CodeGenModule.cpp
    M clang/lib/Sema/SemaDeclAttr.cpp
    M clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
    M clang/test/AST/ast-dump-attr.cpp
    M clang/test/CodeGenCXX/constructor-attr.cpp
    A clang/test/CodeGenCXX/destructor-attr.cpp
    R clang/test/Sema/constructor-attribute.c
    A clang/test/Sema/constructor-attribute.cpp

  Log Message:
  -----------
  [Clang] Add template argument support for {con,de}structor attributes. (#151400)

Fixes: https://github.com/llvm/llvm-project/issues/67154

{Con, De}structor attributes in Clang only work with integer priorities
(inconsistent with GCC). This commit adds support to these attributes
for template arguments.

Built off of contributions from [abrachet](https://github.com/abrachet)
in [#67376](https://github.com/llvm/llvm-project/pull/67376).


  Commit: 132bacde223c449006bf205928937ca5a1dcd711
      https://github.com/llvm/llvm-project/commit/132bacde223c449006bf205928937ca5a1dcd711
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
    M llvm/test/Transforms/LoopVectorize/pr66616.ll

  Log Message:
  -----------
  [VPlan] Also allow extracts as users when converting to single scalars.

Extracts technically do not use scalars, but vectors, but if the operand
is a single scalar we do not need a vector and they should not block
forming single scalars.


  Commit: 353d6a98bfdceabd1f08801baf90699148a6c8c3
      https://github.com/llvm/llvm-project/commit/353d6a98bfdceabd1f08801baf90699148a6c8c3
  Author: Yuxuan Chen <ych at fb.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M libcxx/include/__random/binomial_distribution.h

  Log Message:
  -----------
  [libc++] Conditionally declare `lgamma_r` as noexcept (#156547)

An older PR https://github.com/llvm/llvm-project/pull/102036 suggested
that LLVM libc declares `lgamma_r` as noexcept and is incompatible with
this redeclaration. However, I recently discovered that glibc also
declares the math functions to be noexcept under C++ mode.

This line usually don't cause issues because both the glibc and this
file are included as "system headers". According to [this
godbolt](https://godbolt.org/z/o7Wd9PP58), both GCC and clang ignore the
different exception specification between multiple declarations if they
are in system headers.

However, this seems not the case for NVCC/EDG, so a fix for this
redeclaration is still desirable. This patch proposes that we should
declare the function as noexcept under known libc integrations to keep
the declared function consistent.


  Commit: 7f70bdde33e44689646fa6900be2c55df9d3176f
      https://github.com/llvm/llvm-project/commit/7f70bdde33e44689646fa6900be2c55df9d3176f
  Author: David Green <david.green at arm.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/test/CodeGen/AArch64/arm64-vcvt.ll

  Log Message:
  -----------
  [AArch64][GlobalISel] Update arm64-vcvt.ll test gisel test coverage. NFC


  Commit: b36a446c3a897e667532611c2d508dbdb38eb52f
      https://github.com/llvm/llvm-project/commit/b36a446c3a897e667532611c2d508dbdb38eb52f
  Author: Sterling-Augustine <saugustine at google.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/lib/MC/MCSFrame.cpp
    A llvm/test/MC/ELF/cfi-sframe-errors.s
    M llvm/test/MC/ELF/cfi-sframe.s

  Log Message:
  -----------
  Parse CFI instructions to create SFrame FREs (#155496)

This PR parses CFI instructions to generate FREs. 

Unfortunately, actually emitting the FREs into the object file is
somewhat involved and would make this PR quite a bit harder to review.
And the dumper itself properly errors if the FRE count is included in
the header or FDEs, but they are not actually emitted. So actually
testing that the proper FREs are generated will have to wait for a
subsequent PR.

For now, just check for common issues with CFI that sframe doesn't
support, and that proper error handling is done.


  Commit: e9aee3355444380a4c6d2d5971b7cd34cbe9da27
      https://github.com/llvm/llvm-project/commit/e9aee3355444380a4c6d2d5971b7cd34cbe9da27
  Author: Andreas Jonson <andjo403 at hotmail.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/test/Transforms/CorrelatedValuePropagation/range.ll

  Log Message:
  -----------
  [CVP] Generate test checks (NFC)


  Commit: 7dd63e18b60491d742ab0ee58e2c656cf1f6ead2
      https://github.com/llvm/llvm-project/commit/7dd63e18b60491d742ab0ee58e2c656cf1f6ead2
  Author: Steven Wu <stevenwu at apple.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M clang/include/clang/Frontend/CompilerInstance.h
    M clang/lib/Frontend/CompilerInstance.cpp
    M clang/tools/clang-installapi/ClangInstallAPI.cpp

  Log Message:
  -----------
  Frontend: Adopt llvm::vfs::OutputBackend in CompilerInstance (#113364)

Adopt new virtual output backend in CompilerInstance.


  Commit: 5326b3b176e82191b18ffc368118b36e0103af3d
      https://github.com/llvm/llvm-project/commit/5326b3b176e82191b18ffc368118b36e0103af3d
  Author: Michael Buch <michaelbuch12 at gmail.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/asan/TestMemoryHistory.py
    M lldb/test/API/functionalities/asan/TestReportData.py
    M lldb/test/API/functionalities/tsan/basic/TestTsanBasic.py
    M lldb/test/API/functionalities/ubsan/basic/TestUbsanBasic.py

  Log Message:
  -----------
  [lldb][test] Only assert function name is in user-code on Darwin platforms

The frame recognizer for the instrumentation runtimes (added in
https://github.com/llvm/llvm-project/pull/133079) only triggers on Darwin
for `libclang_rt`. Adjust the tests accordingly.


  Commit: 1e1711347f59956ecf06d4b3050cb248a06661b7
      https://github.com/llvm/llvm-project/commit/1e1711347f59956ecf06d4b3050cb248a06661b7
  Author: Jacob Lalonde <jalalonde at fb.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M lldb/bindings/interface/SBProgressDocstrings.i

  Log Message:
  -----------
  [LLDB][SBProgress] Quick fix to the progress formatting (#157561)

Earlier today I was looking at the SBProgress documentation with a
colleague and found another instance where the swig block wasn't
formatting correctly. I've adjusted the docs slightly to fix this. I
don't actually know how to see a preview of our docstrings but I believe
this will fix it.

<img width="829" height="234" alt="image"
src="https://github.com/user-attachments/assets/8ef3a2df-92b9-4157-a452-f5e1ec51aa9a"
/>


  Commit: 8ec4d87550c01b06a9841014d901146874688894
      https://github.com/llvm/llvm-project/commit/8ec4d87550c01b06a9841014d901146874688894
  Author: Igor Kudrin <ikudrin at accesssoftek.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp
    M lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h
    M lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
    M lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
    A lldb/test/API/functionalities/postmortem/elf-core/linux-arm-vfp.c
    A lldb/test/API/functionalities/postmortem/elf-core/linux-arm-vfp.core

  Log Message:
  -----------
  [lldb][elf-core][ARM] Add support for VFP registers (#155956)

This patch loads values of the VFP registers from the NT_ARM_VFP note.

Note that a CORE/NT_FPREGSET note is typically present in core dump
files and is used to store the FPA registers. The FPA unit is rare and
obsolete; however, Linux creates the note even if the unit is absent.


  Commit: 6d032c4df21d1015e5f1e70a8db46bb997e2e39c
      https://github.com/llvm/llvm-project/commit/6d032c4df21d1015e5f1e70a8db46bb997e2e39c
  Author: Joseph Huber <huberjn at outlook.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M offload/test/lit.cfg
    M openmp/device/CMakeLists.txt

  Log Message:
  -----------
  [OpenMP] Fix incorrect CUDA bc path after library change (#157547)


  Commit: b0ee92be94746e05e9c015fcc6f7533e6b222685
      https://github.com/llvm/llvm-project/commit/b0ee92be94746e05e9c015fcc6f7533e6b222685
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
    M llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
    M llvm/lib/Target/AMDGPU/VOP3PInstructions.td
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.wmma.gfx1250.w32.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.wmma.imm.gfx1250.w32.ll

  Log Message:
  -----------
  [AMDGPU] Restrict scale operands of WMMA to low 256 VGPRs (#157526)

These cannot accept high registers.


  Commit: 6c3f18ebcaf234a842b8d169425ad73b93445d68
      https://github.com/llvm/llvm-project/commit/6c3f18ebcaf234a842b8d169425ad73b93445d68
  Author: Henrik G. Olsson <hnrklssn at gmail.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    A llvm/utils/lit/lit/DiffUpdater.py
    M llvm/utils/lit/lit/LitConfig.py
    A llvm/utils/lit/tests/Inputs/diff-test-update/.gitignore
    A llvm/utils/lit/tests/Inputs/diff-test-update/1.in
    A llvm/utils/lit/tests/Inputs/diff-test-update/2.in
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-bail.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-bail2.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-expected.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-tmp-dir.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-tmp.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/lit.cfg
    A llvm/utils/lit/tests/diff-test-update.py

  Log Message:
  -----------
  [Utils] Adds support for diff based tests to lit's --update-tests (#154147)

This adds an updater to lit's --update-tests flag with support for
`diff`. If a RUN line containing the `diff` command fails, this function
will use heuristics to try to deduce which file is the "reference" file,
and copy the contents of the other file to the reference. If it cannot
deduce which file is the reference file, it does nothing.

The heuristics are currently:
 - does one of the files end in .expected while the other does not? Then
   the .expected file is the reference.
 - does one of the file paths contain the substring ".tmp" while the
   other does not? Then the file not containing ".tmp" is the reference.
   This matches cases where one file path is constructed using the `%t`
   substitution.


  Commit: fc1a44fc0f578c50814f8cbf6929a8a3fcd7faaa
      https://github.com/llvm/llvm-project/commit/fc1a44fc0f578c50814f8cbf6929a8a3fcd7faaa
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M orc-rt/include/CMakeLists.txt
    M orc-rt/include/orc-rt/MemoryFlags.h
    A orc-rt/include/orc-rt/SPSMemoryFlags.h
    M orc-rt/unittests/CMakeLists.txt
    A orc-rt/unittests/SPSMemoryFlagsTest.cpp

  Log Message:
  -----------
  [orc-rt] Add SPS serialization support for AllocGroup. (#157415)


  Commit: e7d916b00888cf80b54294eec353a4790d881e7c
      https://github.com/llvm/llvm-project/commit/e7d916b00888cf80b54294eec353a4790d881e7c
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    A llvm/test/CodeGen/AMDGPU/waitcnt-gfx1250.mir

  Log Message:
  -----------
  [AMDGPU] High VGPR waitcnt generation tests. NFC. (#157533)


  Commit: d7717bf08d13cd282d97f352d8982de7ff68156d
      https://github.com/llvm/llvm-project/commit/d7717bf08d13cd282d97f352d8982de7ff68156d
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    A llvm/test/CodeGen/AMDGPU/vgpr-limit-gfx1250.ll

  Log Message:
  -----------
  [AMDGPU] Constrain inline asm vgprs to low 256 (#157531)

Also adds codegen test for high VGPRs codegen.


  Commit: 206499b3190b799e1949b4fd965d46e3bd0b4077
      https://github.com/llvm/llvm-project/commit/206499b3190b799e1949b4fd965d46e3bd0b4077
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    A llvm/test/CodeGen/AMDGPU/emit-high-vgprs.mir

  Log Message:
  -----------
  [AMDGPU] High VGPR emission tests. NFC. (#157534)


  Commit: 258b79868d1cbd1c030db1900957dc81eeff089f
      https://github.com/llvm/llvm-project/commit/258b79868d1cbd1c030db1900957dc81eeff089f
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/test/CodeGen/AMDGPU/hard-clauses-load-monitor.mir

  Log Message:
  -----------
  [AMDGPU] Update hard-clauses-load-monitor.mir. NFC (#157546)


  Commit: 69f1aebf2017f4362347ec9890ee4b57c3b989f1
      https://github.com/llvm/llvm-project/commit/69f1aebf2017f4362347ec9890ee4b57c3b989f1
  Author: Sergei Barannikov <barannikov88 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
    M llvm/lib/Target/BPF/BPFInstrInfo.td
    M llvm/lib/Target/BPF/CMakeLists.txt
    M llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
    M utils/bazel/llvm-project-overlay/llvm/BUILD.bazel

  Log Message:
  -----------
  [BPF] Remove skb operand of LD_ABS/LD_IND instructions (#157344)

The instructions already have R6 register in the Uses list, there is no
need for an additional explicit `GPR:$skb` operand.

This simplifies intrinsic selection and makes the instructions decodable
without post-decoding pass inserting R6 operand.


  Commit: b94987bb185d811bf4c0dd88fed5bc9d9f019995
      https://github.com/llvm/llvm-project/commit/b94987bb185d811bf4c0dd88fed5bc9d9f019995
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/test/MC/AMDGPU/out-of-range-registers.s

  Log Message:
  -----------
  [AMDGPU] gfx1250 checks in out of range restisters test. NFC. (#157540)


  Commit: 2e6268a382f7e4d3c638ac63dd606c04079ddce8
      https://github.com/llvm/llvm-project/commit/2e6268a382f7e4d3c638ac63dd606c04079ddce8
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIDefines.h
    M llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.sendmsg.rtn.ll
    M llvm/test/MC/AMDGPU/gfx1250_asm_sop1.s
    M llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_sop1.txt

  Log Message:
  -----------
  [AMDGPU] Add MSG_RTN_GET_CLUSTER_BARRIER_STATE (#157549)


  Commit: 073cf98ad9b6ef0dc5c996468daa205196ba6e1f
      https://github.com/llvm/llvm-project/commit/073cf98ad9b6ef0dc5c996468daa205196ba6e1f
  Author: Jonas Devlieghere <jonas at devlieghere.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/docs/DebuggingLLVM.rst

  Log Message:
  -----------
  [llvm][docs] Add LLDB data formatters to DebuggingLLVM.rst (#157528)

Add LLDB data formatters to the document about debugging LLVM.


  Commit: c55708c65c035fc245c5816d07a0f2120826c83a
      https://github.com/llvm/llvm-project/commit/c55708c65c035fc245c5816d07a0f2120826c83a
  Author: Mircea Trofin <mtrofin at google.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
    A llvm/test/Transforms/WholeProgramDevirt/branch-funnel-profile.ll

  Log Message:
  -----------
  [WPD] set the branch funnel function entry count (#155657)

We can compute the entry count of branch funnel functions, and potentially avoid them being deemed cold (also, keeping profile information coherent is always good for performance)

Issue #147390


  Commit: 00b13c4103ae65a6c30cf3b0615fa0d5169eed2c
      https://github.com/llvm/llvm-project/commit/00b13c4103ae65a6c30cf3b0615fa0d5169eed2c
  Author: Wenju He <wenju.he at intel.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    A libclc/clc/include/clc/shared/unary_def_with_ptr_scalarize.inc
    M libclc/clc/lib/generic/math/clc_lgamma_r.cl

  Log Message:
  -----------
  [NFC][libclc] Replace _CLC_V_V_VP_VECTORIZE macro with use of unary_def_with_ptr_scalarize.inc (#157002)

Commit d50f2ef437ae removes _CLC_V_V_VP_VECTORIZE from header file, but
the macro is still used in our downstream code:
https://github.com/intel/llvm/blob/0433e4d6f5c9/libclc/libspirv/lib/ptx-nvidiacl/math/modf.cl#L30
https://github.com/intel/llvm/blob/0433e4d6f5c9/libclc/libspirv/lib/ptx-nvidiacl/math/sincos.cl#L31

We can either revert d50f2ef437ae or replace macro with use of
unary_def_with_ptr_scalarize.inc. This PR uses the latter approach.


  Commit: 82ef4ee725a459c137dd1f5419cf26deb15a14c8
      https://github.com/llvm/llvm-project/commit/82ef4ee725a459c137dd1f5419cf26deb15a14c8
  Author: Henrik G. Olsson <hnrklssn at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/lit/tests/Inputs/diff-test-update/.gitignore
    M llvm/utils/lit/tests/Inputs/diff-test-update/diff-tmp-dir.test
    M llvm/utils/lit/tests/diff-test-update.py

  Log Message:
  -----------
  [Utils] Ensure that empty.txt is always empty (#157576)

Previously this test case would `touch %S/empty.txt` to create and empty
file. The test case then copies contents to that file, so if run a
second time the `touch` command would not create an empty file.

`llvm/utils/lit/tests/diff-test-update.py` also no longer matches against file
paths other than the final bit of the file name. This prevents test failures
on Windows due to different path separators.


  Commit: 7d04e3790483f8e2f168ec538682bc31d3011a0b
      https://github.com/llvm/llvm-project/commit/7d04e3790483f8e2f168ec538682bc31d3011a0b
  Author: Twice <twice at apache.org>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M mlir/lib/Bindings/Python/MainModule.cpp
    M mlir/lib/Bindings/Python/Pass.cpp
    M mlir/lib/CAPI/IR/Pass.cpp
    A mlir/test/python/python_pass.py

  Log Message:
  -----------
  [MLIR][Python] Support Python-defined passes in MLIR (#156000)

It closes #155996.

This PR added a method `add(callable, ..)` to
`mlir.passmanager.PassManager` to accept a callable object for defining
passes in the Python side.

This is a simple example of a Python-defined pass.
```python
from mlir.passmanager import PassManager

def demo_pass_1(op):
    # do something with op
    pass

class DemoPass:
    def __init__(self, ...):
        pass
    def __call__(op):
        # do something
        pass

demo_pass_2 = DemoPass(..)

pm = PassManager('any', ctx)
pm.add(demo_pass_1)
pm.add(demo_pass_2)
pm.add("registered-passes")
pm.run(..)
```

---------

Co-authored-by: cnb.bsD2OPwAgEA <QejD2DJ2eEahUVy6Zg0aZI+cnb.bsD2OPwAgEA at noreply.cnb.cool>
Co-authored-by: Maksim Levental <maksim.levental at gmail.com>


  Commit: d02c7aeb35a2ac92cd61545329bf8814c3b88de5
      https://github.com/llvm/llvm-project/commit/d02c7aeb35a2ac92cd61545329bf8814c3b88de5
  Author: Maksim Levental <maksim.levental at gmail.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M mlir/cmake/modules/AddMLIRPython.cmake
    M mlir/python/CMakeLists.txt
    M mlir/python/mlir/_mlir_libs/.gitignore

  Log Message:
  -----------
  [MLIR][Python] fix stubgen (#157583)

In https://github.com/llvm/llvm-project/pull/155741 I broke the cardinal
rule of CMake: nothing happens when you think it happens 🤷. Meaning:
`declare_mlir_python_sources(SOURCES_GLOB
"_mlir_libs/${_module_name}/**/*.pyi")` wasn't picking up any sources
_because they aren't generated yet_. This of course makes sense in
retrospect (the stubs are generated as part of the build process, post
extension compile, rather than the configure process).

Thus, the API needs to be:

```
GENERATE_TYPE_STUBS: List of generated type stubs expected from stubgen, relative to _mlir_libs.
```

Partially as a result of this omission, the stubs weren't being
installed into either the build dir nor the install dir. That is also
fixed now:

**Source dir (for easy reference):**

<img width="300" height="674" alt="image"
src="https://github.com/user-attachments/assets/a569f066-c2bd-4361-91f3-1c75181e51da"
/>

**Build dir (for forthcoming typechecker tests):**

<img width="398" height="551" alt="image"
src="https://github.com/user-attachments/assets/017859f9-fddb-49ee-85e5-915f5b5f7377"
/>

**Install dir:**

<img width="456" height="884" alt="image"
src="https://github.com/user-attachments/assets/8051be7e-898c-4ec8-a11e-e2408b241a56"
/>


  Commit: 71f98a13b32b85ff6fe1c7b047d8b70c5e7bcc7d
      https://github.com/llvm/llvm-project/commit/71f98a13b32b85ff6fe1c7b047d8b70c5e7bcc7d
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/SPSAllocAction.h

  Log Message:
  -----------
  [orc-rt] Fix a typo in include-guard comment.


  Commit: 192d13ea4df1e9535e8736175231798bcde42bb5
      https://github.com/llvm/llvm-project/commit/192d13ea4df1e9535e8736175231798bcde42bb5
  Author: Luke Lau <luke at igalia.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/include/llvm/CodeGen/SDPatternMatch.h
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/test/CodeGen/RISCV/double-arith.ll
    M llvm/test/CodeGen/RISCV/float-arith.ll
    M llvm/test/CodeGen/RISCV/float-bit-preserving-dagcombines.ll

  Log Message:
  -----------
  [RISCV] Undo fneg (fmul x, y) -> fmul x, (fneg y) transform (#157388)

InstCombine will hoist an fneg through an fmul, but not for fadd/fsub.
This prevents us from matching fmsub and fnmadd in some cases.

This patch adds a DAG combine to undo this in InstCombine, which helps
some hot loops in 508.namd_r:

@@ -983,18 +983,15 @@
        fld     ft2, 48(a5)
        fld     ft3, 64(a5)
        fld     ft4, 72(a5)
-       fneg.d  fa0, fa0
-       fneg.d  ft0, ft0
-       fneg.d  ft2, ft2
        fmul.d  fa3, ft5, fa3
        fmul.d  fa0, fa3, fa0
        fmul.d  ft0, fa3, ft0
        fmul.d  fa3, fa3, ft2
        fld     ft2, 0(s1)
        fmul.d  fa4, ft5, fa4
-       fmadd.d fa2, fa4, fa2, fa0
-       fmadd.d ft6, fa4, ft6, ft0
-       fmadd.d fa4, fa4, ft1, fa3
+       fmsub.d fa2, fa4, fa2, fa0
+       fmsub.d ft6, fa4, ft6, ft0
+       fmsub.d fa4, fa4, ft1, fa3

This gives a [1.77% improvement in both instruction count and runtime on
508.namd_r](https://lnt.lukelau.me/db_default/v4/nts/profile/1/1022/1021)

This also causes some more fnegs to be sunk after a bitcast to integer,
so they're now done as xor. From glancing at some of the schedules for
WriteFSGN my guess is that this is also profitable.


  Commit: d16c3e60901706ab1ee6754ead7604e151d5dbc1
      https://github.com/llvm/llvm-project/commit/d16c3e60901706ab1ee6754ead7604e151d5dbc1
  Author: Jordan Rupprecht <rupprecht at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

  Log Message:
  -----------
  [bazel] Remove unnecessary AllTargetsAsmParsers dep (#157590)

Added in #154660 which ported #145899, but only the AllTargetsCodeGens
dep actually seems necessary here.


  Commit: d4079cf7e25fcf9ffe8800947b671245091c440b
      https://github.com/llvm/llvm-project/commit/d4079cf7e25fcf9ffe8800947b671245091c440b
  Author: camc <69519329+camc at users.noreply.github.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M clang/docs/ReleaseNotes.rst
    M clang/lib/Sema/SemaSwift.cpp
    M clang/test/SemaObjC/attr-swift_name.m

  Log Message:
  -----------
  [clang] Fix OOB read in SemaSwift::validateSwiftFunctionName (#157139)

Resolves #157075 

This was causing an assertion failure on
`_attribute__((swift_name("")))`. Fix ensures this case shows the
warn_attr_swift_name_function diagnostic as expected.


  Commit: 7768cca2c6617523e38ba9a8a3e8366752992ec5
      https://github.com/llvm/llvm-project/commit/7768cca2c6617523e38ba9a8a3e8366752992ec5
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/Mips/MipsSubtarget.cpp

  Log Message:
  -----------
  Mips: Force 64bit subtarget feature to be set for ABI options (#157446)

Prepare to use this with HwMode. This is mostly code copied from x86.

Mips has an exceptionally broken system where the target-abi option
can be used to change the pointer size. i.e., you can mix and match
32-bit base triples with an explicit request to use 32-bit or 64-bit
pointers such that you cannot rely on the triple reported pointer size.
This hack manages to only work for codegen. The MC subtarget
constructors
do not have access to the target-abi name so those will continue to not
have the appropriate feature set.


  Commit: 4e962c66f1b513a29bf899441a3c010f06687ecd
      https://github.com/llvm/llvm-project/commit/4e962c66f1b513a29bf899441a3c010f06687ecd
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M orc-rt/unittests/ErrorTest.cpp
    M orc-rt/unittests/MemoryFlagsTest.cpp
    M orc-rt/unittests/SPSMemoryFlagsTest.cpp

  Log Message:
  -----------
  [orc-rt] Add 'Test' suffix to unit test names. NFC.


  Commit: b04f6f83f4383c75ec41213ccdaa26553e2f8fd4
      https://github.com/llvm/llvm-project/commit/b04f6f83f4383c75ec41213ccdaa26553e2f8fd4
  Author: Nikolas Klauser <nikolasklauser at berlin.de>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libcxx/include/__tree

  Log Message:
  -----------
  [libc++][NFC] Move some really simple function defintions into the body of __tree (#157424)


  Commit: 3b1ca5e7c5b94b10e3da554a060459a1a1e24495
      https://github.com/llvm/llvm-project/commit/3b1ca5e7c5b94b10e3da554a060459a1a1e24495
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M clang/test/APINotes/yaml-roundtrip-2.test
    M clang/test/APINotes/yaml-roundtrip.test

  Log Message:
  -----------
  [APINotes] Prefer diff -u over diff -b

Lit's internal shell does not support -b (properly). This patch rewrites
the tests to conform to their existing semantics (using
--implicit-check-not) using diff -u. This allows for enabling lit's
internal shell by default on all platforms.

Fixes #106249.

Reviewers: compnerd, ilovepi, petrhosek, DougGregor

Reviewed By: ilovepi, compnerd

Pull Request: https://github.com/llvm/llvm-project/pull/157588


  Commit: 9bec2621ba3755c1aa79eec9288129c0a76e99a0
      https://github.com/llvm/llvm-project/commit/9bec2621ba3755c1aa79eec9288129c0a76e99a0
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/docs/ReleaseNotes.md
    M llvm/utils/lit/lit/builtin_commands/diff.py

  Log Message:
  -----------
  [lit] Remove python 2.7 code paths in builtin diff

Lit's builtin diff command had some Python 2.7 code paths lying around
that we can probably get rid of at this point. LLVM at this point
requires Python 3.8 at minimum. Keeping lit working at a lower version
is a reasonable goal, but I think we can probably drop python 2 support
at this point given how long it has been deprecated and how long LLVM
has supported Python 3.

Reviewers: jdenny-ornl, ilovepi, petrhosek

Reviewed By: ilovepi

Pull Request: https://github.com/llvm/llvm-project/pull/157558


  Commit: 257f38f2d712761c04f4158a3a0afa10cffff16e
      https://github.com/llvm/llvm-project/commit/257f38f2d712761c04f4158a3a0afa10cffff16e
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Support/type_traits.h

  Log Message:
  -----------
  [ADT] clang-format llvm/include/llvm/Support/type_traits.h

I'm planning to modify this file.


  Commit: fd842456189eae41b706e3a9f93eecdf3d3688bb
      https://github.com/llvm/llvm-project/commit/fd842456189eae41b706e3a9f93eecdf3d3688bb
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/test/Driver/config-file3.c

  Log Message:
  -----------
  [Clang] Use env to set variable in config-file3.c

There was an earlier patch that was supposed to fix this up that
apparently did not get to everything. After this patch, the test passes
inside the internal shell.


  Commit: 9893dab2252c64a71cb59976df117b9dc85923cc
      https://github.com/llvm/llvm-project/commit/9893dab2252c64a71cb59976df117b9dc85923cc
  Author: Mircea Trofin <mtrofin at google.com>
  Date:   2025-09-08 (Mon, 08 Sep 2025)

  Changed paths:
    M llvm/utils/profcheck-xfail.txt

  Log Message:
  -----------
  Remove WholeProgramDevirt tests from profcheck-xfail post- #155657 (#157605)


  Commit: 6076b070b07a8de1a88821d7f9ab36ce40837ec7
      https://github.com/llvm/llvm-project/commit/6076b070b07a8de1a88821d7f9ab36ce40837ec7
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/X86/X86RegisterInfo.cpp
    M llvm/test/CodeGen/X86/apx/push2-pop2-cfi-seh.ll
    M llvm/test/CodeGen/X86/lvi-hardening-ret.ll
    M llvm/test/CodeGen/X86/pr40289-64bit.ll
    M llvm/test/CodeGen/X86/pr40289.ll

  Log Message:
  -----------
  X86: Use LiveRegUnits in findDeadCallerSavedReg (#156817)


  Commit: 8d35bcc52117b79517f518de952b4b50463de160
      https://github.com/llvm/llvm-project/commit/8d35bcc52117b79517f518de952b4b50463de160
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/test/APINotes/yaml-roundtrip-2.test
    M clang/test/APINotes/yaml-roundtrip.test

  Log Message:
  -----------
  Revert "[APINotes] Prefer diff -u over diff -b"

This reverts commit 3b1ca5e7c5b94b10e3da554a060459a1a1e24495.

This is causing failures on MacOS because the default head
implementation does not support negative numbers. Reverting for now so I
can come up with a more principled fix in the morning.


  Commit: 9bbf22ccda848431da2393ff9a269af8301ea3aa
      https://github.com/llvm/llvm-project/commit/9bbf22ccda848431da2393ff9a269af8301ea3aa
  Author: Jesse Huang <jesse.huang at sifive.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
    M llvm/lib/Target/RISCV/RISCVInstrInfo.td
    M llvm/lib/Target/RISCV/RISCVInstrInfoZicfiss.td
    M llvm/test/CodeGen/RISCV/shadowcallstack.ll

  Log Message:
  -----------
  [RISCV] Loosen the requirement of shadow stack codegen to Zimop (#152251)

Zicfiss (Shadow Stack) instructions are implemented using the encoding
space defined in the "Zimop" May-Be-Operations Extension, where the
instruction behaviors turn into NOP if Zimop is implemented but the
redefining extension does not present.
This means we can safely loosen the codegen requirement of shadow stack
to Zimop, in that those processors with Zimop but no Zicfiss can still
execute the instructions without problem.

This patch add new pseudo instructions to model MOPs that are expanded
into Zicfiss instructios, and change to emit them in the codegen


  Commit: 7fbfd1cff4ff814b772dad32e9c11cba37ac72bb
      https://github.com/llvm/llvm-project/commit/7fbfd1cff4ff814b772dad32e9c11cba37ac72bb
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M orc-rt/include/CMakeLists.txt
    M orc-rt/include/orc-rt-c/WrapperFunction.h
    A orc-rt/include/orc-rt/SPSWrapperFunctionBuffer.h
    M orc-rt/include/orc-rt/WrapperFunction.h
    M orc-rt/unittests/CMakeLists.txt
    A orc-rt/unittests/SPSWrapperFunctionBufferTest.cpp
    M orc-rt/unittests/SimplePackedSerializationTestUtils.h

  Log Message:
  -----------
  [orc-rt] Add SPS serialization for WrapperFunctionBuffer. (#157609)

Also adds orc_rt_WrapperFunctionBufferConstData to the C API to get a
constant pointer to a wrapper function buffer's data.


  Commit: 91a0f8ae972455dafe021f0fb3cd5f152f6f5fa2
      https://github.com/llvm/llvm-project/commit/91a0f8ae972455dafe021f0fb3cd5f152f6f5fa2
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/AllocAction.h

  Log Message:
  -----------
  [orc-rt] Rename AllocAction::AA member to AllocAction::Fn. NFC.


  Commit: c82fbe8e1fd3c61a1859180270ce7dddf26a40b0
      https://github.com/llvm/llvm-project/commit/c82fbe8e1fd3c61a1859180270ce7dddf26a40b0
  Author: Qihan Cai <caiqihan021 at hotmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVInstrInfoP.td
    M llvm/test/MC/RISCV/rv32p-valid.s

  Log Message:
  -----------
  [RISC-V] Add P-ext MC Support for More Pair Operations (#154088)

This patch implements pages 18-20 from jhauser.us/RISCV/ext-P/RVP-instrEncodings-015.pdf

Documentation:
jhauser.us/RISCV/ext-P/RVP-baseInstrs-014.pdf
jhauser.us/RISCV/ext-P/RVP-instrEncodings-015.pdf


  Commit: 36d53906aaf30d2b19f905f8ea9e3597bd87d116
      https://github.com/llvm/llvm-project/commit/36d53906aaf30d2b19f905f8ea9e3597bd87d116
  Author: Rajveer Singh Bharadwaj <rajveer.developer at icloud.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    A llvm/test/CodeGen/AArch64/sve-saddv_64.ll

  Log Message:
  -----------
  [AArch64] Use unsigned variant of `<s|u>addv_64` SVE vector reduction intrinsic for 64 bit values (#157418)


  Commit: 28c9452420d51610721c6b7f7ead30e92185bcd7
      https://github.com/llvm/llvm-project/commit/28c9452420d51610721c6b7f7ead30e92185bcd7
  Author: comex <comexk at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/docs/ReleaseNotes.rst
    M clang/lib/Sema/SemaExpr.cpp
    M clang/test/SemaCXX/builtin-get-vtable-pointer.cpp
    A clang/test/SemaCXX/builtin-overload-resolution.cpp
    M clang/test/SemaObjC/non-trivial-c-union.m

  Log Message:
  -----------
  [clang] Fix side effects resolving overloads of builtin functions (#138651) (#154034)

When parsing `__builtin_addressof(Value)`, where `Value` is a constexpr
variable of primitive type, we will run through
`rewriteBuiltinFunctionDecl`.

`rewriteBuiltinFunctionDecl` is meant to handle a special case which is
not applicable here. (It only applies when a builtin function's type has
a parameter with pointer type, which is not true for
`__builtin_addressof`, not even if the actual argument is a pointer.)
Therefore, `rewriteBuiltinFunctionDecl` returns `nullptr` and things go
on as usual.

But `rewriteBuiltinFunctionDecl` accidentally has a side effect. It
calls `DefaultFunctionArrayLvalueConversion` ->
`DefaultLvalueConversion` -> `CheckLValueToRValueConversionOperand` ->
`rebuildPotentialResultsAsNonOdrUsed` -> `MarkNotOdrUsed`, which removes
the expression from `S.MaybeODRUseExprs`.

This would be correct if `Value` were actually going through an
lvalue-to-rvalue conversion, because it's a constant expression:

https://eel.is/c++draft/basic.def.odr#5.2.2.2

But in this case the conversion is only hypothetical, as part of
`rewriteBuiltinFunctionDecl`'s pseudo-overload-resolution logic.

Fix the side effect by pushing an `ExpressionEvaluationContext`, like we
do for real overload resolution.

Similarly, push a `SFINAETrap` to suppress diagnostics emitted during
`DefaultFunctionArrayLvalueConversion`. This fixes a false-positive
compile error when applying `__builtin_addressof` to certain volatile
union variables, and fixes a duplicated compile error when applying
`__builtin_get_vtable_pointer` to an overloaded function name.

---------

Co-authored-by: Corentin Jabot <corentinjabot at gmail.com>


  Commit: 6a60042ae62de370890556894ed87b92af8969f3
      https://github.com/llvm/llvm-project/commit/6a60042ae62de370890556894ed87b92af8969f3
  Author: Jianjian Guan <jacquesguan at me.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/ret.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/shufflevector.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/vararg.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/vec-ret-bf16-err.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/vec-ret-f16-err.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/vec-ret.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/vararg.ll
    M llvm/test/CodeGen/RISCV/double-calling-conv.ll
    M llvm/test/CodeGen/RISCV/early-clobber-tied-def-subreg-liveness.ll
    M llvm/test/CodeGen/RISCV/regalloc-last-chance-recoloring-failure.ll
    M llvm/test/CodeGen/RISCV/rvv/65704-illegal-instruction.ll
    M llvm/test/CodeGen/RISCV/rvv/access-fixed-objects-by-rvv.ll
    M llvm/test/CodeGen/RISCV/rvv/allone-masked-to-unmasked.ll
    M llvm/test/CodeGen/RISCV/rvv/commutable.ll
    M llvm/test/CodeGen/RISCV/rvv/constant-folding-crash.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-buildvec-of-binop.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-compress-fp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-compress-int.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-deinterleave-load.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-fmaximum.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-fminimum.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-fpext-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-fptrunc-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-insert-subvector-shuffle.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-insert-subvector.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-int-buildvec.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-interleaved-access.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-mask-buildvec.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-masked-load-fp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-masked-load-int.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-deinterleave.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-deinterleave2.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-exact-vlen.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-extract-subvector.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-fp-interleave.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-fp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-int-interleave.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-int.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-reverse.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-rotate.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-vslide1down.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-vslide1up.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-store.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-strided-load-store-asm.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-strided-load-store-negative.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-strided-load-store.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-unaligned.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-vmul-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/frm-insert.ll
    M llvm/test/CodeGen/RISCV/rvv/insert-subvector.ll
    M llvm/test/CodeGen/RISCV/rvv/interleave-crash.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-load-fp.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-load-int-e64.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-load-int.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-tama.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-vslide1down-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/mgather-sdnode.ll
    M llvm/test/CodeGen/RISCV/rvv/mscatter-sdnode.ll
    M llvm/test/CodeGen/RISCV/rvv/mutate-prior-vsetvli-avl.ll
    M llvm/test/CodeGen/RISCV/rvv/narrow-shift-extend.ll
    M llvm/test/CodeGen/RISCV/rvv/pr106109.ll
    M llvm/test/CodeGen/RISCV/rvv/rv32-spill-vector-csr.ll
    M llvm/test/CodeGen/RISCV/rvv/rv32-spill-zvlsseg.ll
    M llvm/test/CodeGen/RISCV/rvv/rv64-spill-vector-csr.ll
    M llvm/test/CodeGen/RISCV/rvv/rv64-spill-zvlsseg.ll
    M llvm/test/CodeGen/RISCV/rvv/rvv-out-arguments.ll
    M llvm/test/CodeGen/RISCV/rvv/rvv-peephole-vmerge-masked-vops.ll
    M llvm/test/CodeGen/RISCV/rvv/rvv-peephole-vmerge-vops.ll
    M llvm/test/CodeGen/RISCV/rvv/setcc-integer.ll
    M llvm/test/CodeGen/RISCV/rvv/sf_vfnrclip_x_f_qf.ll
    M llvm/test/CodeGen/RISCV/rvv/sf_vfnrclip_xu_f_qf.ll
    M llvm/test/CodeGen/RISCV/rvv/strided-load-store.ll
    M llvm/test/CodeGen/RISCV/rvv/undef-earlyclobber-chain.ll
    M llvm/test/CodeGen/RISCV/rvv/undef-vp-ops.ll
    M llvm/test/CodeGen/RISCV/rvv/unmasked-ta.ll
    M llvm/test/CodeGen/RISCV/rvv/vaadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vaaddu.ll
    M llvm/test/CodeGen/RISCV/rvv/vadc.ll
    M llvm/test/CodeGen/RISCV/rvv/vadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vaeskf1.ll
    M llvm/test/CodeGen/RISCV/rvv/vand.ll
    M llvm/test/CodeGen/RISCV/rvv/vandn.ll
    M llvm/test/CodeGen/RISCV/rvv/variant-cc.ll
    M llvm/test/CodeGen/RISCV/rvv/vasub.ll
    M llvm/test/CodeGen/RISCV/rvv/vasubu.ll
    M llvm/test/CodeGen/RISCV/rvv/vbrev.ll
    M llvm/test/CodeGen/RISCV/rvv/vbrev8.ll
    M llvm/test/CodeGen/RISCV/rvv/vclmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vclmulh.ll
    M llvm/test/CodeGen/RISCV/rvv/vclz.ll
    M llvm/test/CodeGen/RISCV/rvv/vcpopv.ll
    M llvm/test/CodeGen/RISCV/rvv/vctz.ll
    M llvm/test/CodeGen/RISCV/rvv/vdiv.ll
    M llvm/test/CodeGen/RISCV/rvv/vdivu.ll
    M llvm/test/CodeGen/RISCV/rvv/vector-compress.ll
    M llvm/test/CodeGen/RISCV/rvv/vector-deinterleave-load.ll
    M llvm/test/CodeGen/RISCV/rvv/vector-reassociations.ll
    M llvm/test/CodeGen/RISCV/rvv/vector-tuple-align.ll
    M llvm/test/CodeGen/RISCV/rvv/vfadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vfclass.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-f-x.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-f-xu.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-rtz-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-rtz-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfdiv.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmax.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmerge.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmin.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmv.v.f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-f-x.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-f-xu.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-rod-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-rtz-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-rtz-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvtbf16-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfrdiv.ll
    M llvm/test/CodeGen/RISCV/rvv/vfrec7.ll
    M llvm/test/CodeGen/RISCV/rvv/vfrsqrt7.ll
    M llvm/test/CodeGen/RISCV/rvv/vfrsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsgnj.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsgnjn.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsgnjx.ll
    M llvm/test/CodeGen/RISCV/rvv/vfslide1down.ll
    M llvm/test/CodeGen/RISCV/rvv/vfslide1up.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsqrt.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwadd.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-f-x.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-f-xu.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-rtz-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-rtz-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvtbf16-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwsub.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vid.ll
    M llvm/test/CodeGen/RISCV/rvv/viota.ll
    M llvm/test/CodeGen/RISCV/rvv/vl-opt-instrs.ll
    M llvm/test/CodeGen/RISCV/rvv/vl-opt-op-info.ll
    M llvm/test/CodeGen/RISCV/rvv/vle.ll
    M llvm/test/CodeGen/RISCV/rvv/vleff-vlseg2ff-output.ll
    M llvm/test/CodeGen/RISCV/rvv/vleff.ll
    M llvm/test/CodeGen/RISCV/rvv/vloxei-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vloxei.ll
    M llvm/test/CodeGen/RISCV/rvv/vloxseg-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vloxseg-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vlse.ll
    M llvm/test/CodeGen/RISCV/rvv/vlseg-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vlseg-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsegff-rv32-dead.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsegff-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsegff-rv64-dead.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsegff-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsseg-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsseg-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vluxei-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vluxei.ll
    M llvm/test/CodeGen/RISCV/rvv/vluxseg-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vluxseg-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vmax.ll
    M llvm/test/CodeGen/RISCV/rvv/vmaxu.ll
    M llvm/test/CodeGen/RISCV/rvv/vmerge.ll
    M llvm/test/CodeGen/RISCV/rvv/vmin.ll
    M llvm/test/CodeGen/RISCV/rvv/vminu.ll
    M llvm/test/CodeGen/RISCV/rvv/vmul-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/vmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vmulh.ll
    M llvm/test/CodeGen/RISCV/rvv/vmulhsu.ll
    M llvm/test/CodeGen/RISCV/rvv/vmulhu.ll
    M llvm/test/CodeGen/RISCV/rvv/vmv.v.v-peephole.ll
    M llvm/test/CodeGen/RISCV/rvv/vmv.v.x.ll
    M llvm/test/CodeGen/RISCV/rvv/vnclip.ll
    M llvm/test/CodeGen/RISCV/rvv/vnclipu.ll
    M llvm/test/CodeGen/RISCV/rvv/vnsra.ll
    M llvm/test/CodeGen/RISCV/rvv/vnsrl.ll
    M llvm/test/CodeGen/RISCV/rvv/vor.ll
    M llvm/test/CodeGen/RISCV/rvv/vrem.ll
    M llvm/test/CodeGen/RISCV/rvv/vremu.ll
    M llvm/test/CodeGen/RISCV/rvv/vrev8.ll
    M llvm/test/CodeGen/RISCV/rvv/vrgather.ll
    M llvm/test/CodeGen/RISCV/rvv/vrgatherei16.ll
    M llvm/test/CodeGen/RISCV/rvv/vrol.ll
    M llvm/test/CodeGen/RISCV/rvv/vror.ll
    M llvm/test/CodeGen/RISCV/rvv/vrsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vsadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vsaddu.ll
    M llvm/test/CodeGen/RISCV/rvv/vsbc.ll
    M llvm/test/CodeGen/RISCV/rvv/vselect-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/vsetvli-insert-O0.ll
    M llvm/test/CodeGen/RISCV/rvv/vsetvli-insert-crossbb.ll
    M llvm/test/CodeGen/RISCV/rvv/vsetvli-insert.ll
    M llvm/test/CodeGen/RISCV/rvv/vsetvli-intrinsics.ll
    M llvm/test/CodeGen/RISCV/rvv/vsext.ll
    M llvm/test/CodeGen/RISCV/rvv/vslide1down-constant-vl-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vslide1down.ll
    M llvm/test/CodeGen/RISCV/rvv/vslide1up-constant-vl-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vslide1up.ll
    M llvm/test/CodeGen/RISCV/rvv/vsll.ll
    M llvm/test/CodeGen/RISCV/rvv/vsm3me.ll
    M llvm/test/CodeGen/RISCV/rvv/vsm4k.ll
    M llvm/test/CodeGen/RISCV/rvv/vsmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vsra.ll
    M llvm/test/CodeGen/RISCV/rvv/vsrl.ll
    M llvm/test/CodeGen/RISCV/rvv/vssub.ll
    M llvm/test/CodeGen/RISCV/rvv/vssubu.ll
    M llvm/test/CodeGen/RISCV/rvv/vsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vwadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vwadd.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vwaddu.ll
    M llvm/test/CodeGen/RISCV/rvv/vwaddu.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vwmul-sdnode.ll
    M llvm/test/CodeGen/RISCV/rvv/vwmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vwmulsu.ll
    M llvm/test/CodeGen/RISCV/rvv/vwmulu.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsll.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsub.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsubu.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsubu.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vxor.ll
    M llvm/test/CodeGen/RISCV/rvv/vxrm-insert.ll
    M llvm/test/CodeGen/RISCV/rvv/vzext.ll
    M llvm/test/CodeGen/RISCV/rvv/zvlsseg-zero-vl.ll
    M llvm/test/CodeGen/RISCV/umulo-128-legalisation-lowering.ll
    M llvm/test/CodeGen/RISCV/vararg.ll
    M llvm/test/CodeGen/RISCV/xcvmem.ll

  Log Message:
  -----------
  [RISCV] Replace undef with poison, NFC (#157396)

Since undef is deprecated now, reuse of some tests case would cause CI
failure, this pr replaces most undef with poison


  Commit: 9344a7ca3fc81c22876d74f8eff9a862687eb4b2
      https://github.com/llvm/llvm-project/commit/9344a7ca3fc81c22876d74f8eff9a862687eb4b2
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/SPSAllocAction.h
    M orc-rt/unittests/CMakeLists.txt
    A orc-rt/unittests/SPSAllocActionTest.cpp

  Log Message:
  -----------
  [orc-rt] Add SPS serialization for AllocAction and AllocActionPair. (#157620)


  Commit: cfd24cd878d54c14f190776cc1e64f0be35fd07e
      https://github.com/llvm/llvm-project/commit/cfd24cd878d54c14f190776cc1e64f0be35fd07e
  Author: Nikolas Klauser <nikolasklauser at berlin.de>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libcxx/test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp

  Log Message:
  -----------
  [libc++][NFC] Inline function in string.cons/copy_alloc.pass.cpp that is used only once (#157429)

This makes the test a bit easier to understand.


  Commit: 819aa3521ead28abaa9df6b35dca0529f4524fb8
      https://github.com/llvm/llvm-project/commit/819aa3521ead28abaa9df6b35dca0529f4524fb8
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Driver/ToolChain.cpp
    M clang/lib/Parse/ParseStmtAsm.cpp
    M llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
    M llvm/lib/LTO/LTOCodeGenerator.cpp
    M llvm/lib/MC/MCDisassembler/Disassembler.cpp
    M llvm/lib/Target/TargetMachineC.cpp
    M llvm/tools/llvm-jitlink/llvm-jitlink.cpp
    M llvm/tools/llvm-objdump/MachODump.cpp
    M llvm/tools/llvm-split/llvm-split.cpp
    M llvm/tools/sancov/sancov.cpp
    M llvm/unittests/CodeGen/TestAsmPrinter.cpp
    M llvm/unittests/DebugInfo/DWARF/DWARFExpressionCompactPrinterTest.cpp
    M llvm/unittests/DebugInfo/DWARF/DWARFExpressionCopyBytesTest.cpp
    M llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
    M llvm/unittests/ExecutionEngine/MCJIT/MCJITTestAPICommon.h
    M llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
    M llvm/unittests/MC/AMDGPU/Disassembler.cpp
    M llvm/unittests/MC/DwarfLineTableHeaders.cpp
    M llvm/unittests/MC/MCInstPrinter.cpp
    M llvm/unittests/MC/SystemZ/SystemZAsmLexerTest.cpp
    M llvm/unittests/MC/SystemZ/SystemZMCDisassemblerTest.cpp
    M llvm/unittests/MC/X86/X86MCDisassemblerTest.cpp
    M llvm/unittests/Target/AArch64/MCInstrAnalysisTest.cpp
    M llvm/unittests/Target/LoongArch/MCInstrAnalysisTest.cpp
    M llvm/unittests/Target/RISCV/MCInstrAnalysisTest.cpp
    M llvm/unittests/tools/llvm-exegesis/AArch64/TargetTest.cpp
    M llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp
    M llvm/unittests/tools/llvm-exegesis/PowerPC/TargetTest.cpp

  Log Message:
  -----------
  MC: Use Triple form of lookupTarget in more places (#157591)


  Commit: 5ec99c7e8f5ea8bf333bfcc84020d29a62deb25e
      https://github.com/llvm/llvm-project/commit/5ec99c7e8f5ea8bf333bfcc84020d29a62deb25e
  Author: Cullen Rhodes <cullen.rhodes at arm.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/Transforms/InstCombine/freeze.ll

  Log Message:
  -----------
  [InstCombine] Add test for freeze of PHI with noundef start value (NFC) (#157112)

We should be able to remove this freeze as the incoming values to the
PHI have the same well-defined start value and the GEP can't produce
poison, but this is currently unsupported.

If the freeze is pushed to the incoming values we can remove it:
https://godbolt.org/z/8dE4o1bKf


  Commit: 6b780afc612a307cd5842f2c944b62fa21348283
      https://github.com/llvm/llvm-project/commit/6b780afc612a307cd5842f2c944b62fa21348283
  Author: jeanPerier <jperier at nvidia.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M flang/lib/Optimizer/Builder/MutableBox.cpp
    M flang/test/Lower/HLFIR/allocatable-and-pointer-status-change.f90
    M flang/test/Lower/HLFIR/issue80884.f90
    M flang/test/Lower/pointer-assignments.f90

  Log Message:
  -----------
  [flang] canonicalize shape in pointer remapping lowering (#157472)

Fix for #153221.

Canonicalize the new shape of the pointer when lowering pointer
assignment with bounds remapping.
This is done by using the existing helper that generates a compare to
zero + select like in the other situation where shapes are lowered.

Note that this only needs to be done for the extents here because lower
bounds are canonicalized in LBOUND inquiries and descriptor creation
(embox/rebox codegen) based on the extent value.


  Commit: db8cad0c8d00a691d1365e9b2962a7f2f4ff0890
      https://github.com/llvm/llvm-project/commit/db8cad0c8d00a691d1365e9b2962a7f2f4ff0890
  Author: Michael Buch <michaelbuch12 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/AST/Mangle.cpp
    M clang/unittests/AST/DeclTest.cpp
    M lldb/unittests/Symbol/TestTypeSystemClang.cpp

  Log Message:
  -----------
  [clang][Mangle] Inject structor type into mangled name when mangling for LLDB JIT expressions (#155485)

Part of https://github.com/llvm/llvm-project/pull/149827

This patch adds special handling for `AsmLabel`s created by LLDB. LLDB
uses `AsmLabel`s to encode information about a function declaration to
make it easier to locate function symbols when JITing C++ expressions.
For constructors/destructors LLDB doesn't know at the time of creating
the `AsmLabelAttr` which structor variant the expression evaluator will
need to call (this is decided when compiling the expression). So we make
the Clang mangler inject this information into our custom label when
we're JITting the expression.


  Commit: 157e88637475b831e175b75f30cab9dd63eaeae1
      https://github.com/llvm/llvm-project/commit/157e88637475b831e175b75f30cab9dd63eaeae1
  Author: David Spickett <david.spickett at linaro.org>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/gdb_remote_client/TestqOffsets.py

  Log Message:
  -----------
  [lldb][test] Prevent TestqOffsets.py picking up host binaries (#157432)

Due to a fallback in GDBRemoteCommunicationClient.cpp, on Linux we will
assume a PID of 1 if the remote does not respond in some way that tells
us the real PID.

So if PID 1 happened to be a process that the current user could read,
we would try to debug that instead. On my current machine, PID 1 was
sshd run by root so we would ignore it. If I changed the fallback to
some process ID run by my user, the test would fail.

To prevent this, select the remote-linux platform before creating the
target. This means we won't attempt any host lookups.

Fixes #155895


  Commit: 9b1b93766dfa34ee94859d91a5fcfef853b95265
      https://github.com/llvm/llvm-project/commit/9b1b93766dfa34ee94859d91a5fcfef853b95265
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Transforms/Utils/ScalarEvolutionExpander.h
    M llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp
    M llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    M llvm/test/Transforms/LoopVectorize/AArch64/conditional-branches-cost.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/predicated-costs.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/transform-narrow-interleave-to-widen-memory-cost.ll
    M llvm/test/Transforms/LoopVectorize/PowerPC/optimal-epilog-vectorization.ll
    M llvm/test/Transforms/LoopVectorize/RISCV/riscv-vector-reverse.ll
    M llvm/test/Transforms/LoopVectorize/X86/cost-model.ll
    M llvm/test/Transforms/LoopVectorize/X86/interleave-cost.ll
    M llvm/test/Transforms/LoopVectorize/X86/pr35432.ll
    M llvm/test/Transforms/LoopVectorize/interleaved-accesses-requiring-scev-predicates.ll
    M llvm/test/Transforms/LoopVectorize/optimal-epilog-vectorization.ll
    M llvm/test/Transforms/LoopVectorize/pr34681.ll
    M llvm/test/Transforms/LoopVectorize/pr37248.ll
    M llvm/test/Transforms/LoopVectorize/reverse_induction.ll
    M llvm/test/Transforms/LoopVectorize/runtime-check-small-clamped-bounds.ll
    M llvm/test/Transforms/LoopVectorize/scev-predicate-reasoning.ll
    M llvm/test/Transforms/LoopVectorize/vplan-native-path-inner-loop-with-runtime-checks.ll

  Log Message:
  -----------
  Reapply "[SCEVExp] Add helper to clean up dead instructions after expansion. (#157308)"

This reverts commit eeb43806eb1b40e690aeeba496ee974172202df9.

Recommit with with a fix for MSan failure (
https://lab.llvm.org/buildbot/#/builders/169/builds/14799), by adding a
set to track deleted values. Using the InsertedInstructions set is not
sufficient, as it use asserting value handles as keys, which may
dereference the value at construction.

Original message:

Add new helper to erase dead instructions inserted during SCEV expansion
but not being used due to InstSimplifyFolder simplifications.

Together with https://github.com/llvm/llvm-project/pull/157307 this also
allows removing some specialized folds, e.g.
https://github.com/llvm/llvm-project/blob/main/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp#L2205

PR: https://github.com/llvm/llvm-project/pull/157308


  Commit: 06d202b6cb13b38165af03dbf12a3beaac0b38ea
      https://github.com/llvm/llvm-project/commit/06d202b6cb13b38165af03dbf12a3beaac0b38ea
  Author: Michael Buch <michaelbuch12 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/ABI.h
    M clang/include/clang/Basic/DebugOptions.def
    M clang/include/clang/Driver/Options.td
    M clang/lib/AST/ItaniumMangle.cpp
    M clang/lib/AST/MicrosoftMangle.cpp
    M clang/lib/CodeGen/CGClass.cpp
    M clang/lib/CodeGen/CGDebugInfo.cpp
    M clang/lib/CodeGen/CGDebugInfo.h
    M clang/lib/CodeGen/ItaniumCXXABI.cpp
    M clang/lib/CodeGen/MicrosoftCXXABI.cpp
    M clang/lib/Driver/ToolChains/Clang.cpp
    M clang/test/DebugInfo/CXX/artificial-arg.cpp
    A clang/test/DebugInfo/CXX/local-structor-linkage-names.cpp
    A clang/test/DebugInfo/CXX/structor-linkage-names.cpp
    M clang/test/DebugInfo/ObjCXX/cyclic.mm

  Log Message:
  -----------
  [clang][DebugInfo] Emit unified (Itanium) mangled name to structor declarations (#154142)

Depends on https://github.com/llvm/llvm-project/pull/154137

This patch is motivated by
https://github.com/llvm/llvm-project/pull/149827, where we plan on using
mangled names on structor declarations to find the exact structor
definition that LLDB's expression evaluator should call.

Given a `DW_TAG_subprogram` for a function declaration, the most
convenient way for a debugger to find the corresponding definition is to
use the `DW_AT_linkage_name` (i.e., the mangled name). However, we
currently can't do that for constructors/destructors because Clang
doesn't attach linkage names to them. This is because, depending on ABI,
there can be multiple definitions for a single constructor/destructor
declaration. The way GCC works around this is by producing a `C4`/`D4`
"unified" mangling for structor declarations (see
[godbolt](https://godbolt.org/z/Wds6cja9K)). GDB uses this to locate the
relevant definitions.

This patch aligns Clang with GCC's DWARF output and allows us to
implement the same lookup scheme in LLDB.


  Commit: 57a790717937af52db8c97d3666dc76487bd4226
      https://github.com/llvm/llvm-project/commit/57a790717937af52db8c97d3666dc76487bd4226
  Author: Michael Buch <michaelbuch12 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/include/lldb/Expression/Expression.h
    M lldb/include/lldb/Symbol/SymbolFile.h
    M lldb/source/Expression/Expression.cpp
    M lldb/source/Expression/IRExecutionUnit.cpp
    M lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
    A lldb/test/API/lang/cpp/abi_tag_structors/Makefile
    A lldb/test/API/lang/cpp/abi_tag_structors/TestAbiTagStructors.py
    A lldb/test/API/lang/cpp/abi_tag_structors/main.cpp
    M lldb/test/API/lang/cpp/expr-definition-in-dylib/TestExprDefinitionInDylib.py
    M lldb/test/API/lang/cpp/expr-definition-in-dylib/lib.cpp
    M lldb/test/API/lang/cpp/expr-definition-in-dylib/lib.h
    M lldb/test/API/lang/cpp/expr-definition-in-dylib/main.cpp
    M lldb/unittests/Expression/ExpressionTest.cpp
    M lldb/unittests/Symbol/TestTypeSystemClang.cpp

  Log Message:
  -----------
  [lldb][Expression] Add structor variant to LLDB's function call labels (#149827)

Depends on
* https://github.com/llvm/llvm-project/pull/148877
* https://github.com/llvm/llvm-project/pull/155483
* https://github.com/llvm/llvm-project/pull/155485
* https://github.com/llvm/llvm-project/pull/154137
* https://github.com/llvm/llvm-project/pull/154142

This patch is an implementation of [this
discussion](https://discourse.llvm.org/t/rfc-lldb-handling-abi-tagged-constructors-destructors-in-expression-evaluator/82816/7)
about handling ABI-tagged structors during expression evaluation.

**Motivation**

LLDB encodes the mangled name of a `DW_TAG_subprogram` into `AsmLabel`s
on function and method Clang AST nodes. This means that when calls to
these functions get lowered into IR (when running JITted expressions),
the address resolver can locate the appropriate symbol by mangled name
(and it is guaranteed to find the symbol because we got the mangled name
from debug-info, instead of letting Clang mangle it based on AST
structure). However, we don't do this for
`CXXConstructorDecl`s/`CXXDestructorDecl`s because these structor
declarations in DWARF don't have a linkage name. This is because there
can be multiple variants of a structor, each with a distinct mangling in
the Itanium ABI. Each structor variant has its own definition
`DW_TAG_subprogram`. So LLDB doesn't know which mangled name to put into
the `AsmLabel`.

Currently this means using ABI-tagged structors in LLDB expressions
won't work (see [this
RFC](https://discourse.llvm.org/t/rfc-lldb-handling-abi-tagged-constructors-destructors-in-expression-evaluator/82816)
for concrete examples).

**Proposed Solution**

The `FunctionCallLabel` encoding that we put into `AsmLabel`s already
supports stuffing more info about a DIE into it. So this patch extends
the `FunctionCallLabel` to contain an optional discriminator (a sequence
of bytes) which the `SymbolFileDWARF` plugin interprets as the
constructor/destructor variant of that DIE. So when searching for the
definition DIE, LLDB will include the structor variant in its heuristic
for determining a match.

There's a few subtleties here:
1. At the point at which LLDB first constructs the label, it has no way
of knowing (just by looking at the debug-info declaration), which
structor variant the expression evaluator is supposed to call. That's
something that gets decided when compiling the expression. So we let the
Clang mangler inject the correct structor variant into the `AsmLabel`
during JITing. I adjusted the `AsmLabelAttr` mangling for this in
https://github.com/llvm/llvm-project/pull/155485. An option would've
been to create a new Clang attribute which behaved like an `AsmLabel`
but with these special semantics for LLDB. My main concern there is that
we'd have to adjust all the `AsmLabelAttr` checks around Clang to also
now account for this new attribute.
2. The compiler is free to omit the `C1` variant of a constructor if the
`C2` variant is sufficient. In that case it may alias `C1` to `C2`,
leaving us with only the `C2` `DW_TAG_subprogram` in the object file.
Linux is one of the platforms where this occurs. For those cases I added
a heuristic in `SymbolFileDWARF` where we pick `C2` if we asked for `C1`
but it doesn't exist. This may not always be correct (e.g., if the
compiler decided to drop `C1` for other reasons).
3. In https://github.com/llvm/llvm-project/pull/154142 Clang will emit
`C4`/`D4` variants of ctors/dtors on declarations. When resolving the
`FunctionCallLabel` we will now substitute the actual variant that Clang
told us we need to call into the mangled name. We do this using LLDB's
`ManglingSubstitutor`. That way we find the definition DIE exactly the
same way we do for regular function calls.
4. In cases where declarations and definitions live in separate modules,
the DIE ID encoded in the function call label may not be enough to find
the definition DIE in the encoded module ID. For those cases we fall
back to how LLDB used to work: look up in all images of the target. To
make sure we don't use the unified mangled name for the fallback lookup,
we change the lookup name to whatever mangled name the FunctionCallLabel
resolved to.

rdar://104968288


  Commit: 7731ecf259b660a143bd609bb7aeb78e7794233d
      https://github.com/llvm/llvm-project/commit/7731ecf259b660a143bd609bb7aeb78e7794233d
  Author: Ross Brunton <ross at codeplay.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M offload/unittests/OffloadAPI/common/Environment.cpp
    M offload/unittests/OffloadAPI/common/Fixtures.hpp

  Log Message:
  -----------
  [Offload] Skip most liboffload tests if no devices (#157417)

If there are no devices available for testing on liboffload, the test
will no longer throw an error when it fails to instantiate.

The tests will be silently skipped, but with a warning printed to
stderr.


  Commit: 68830c76d8dc209bd7e06efa96cead1e170149f7
      https://github.com/llvm/llvm-project/commit/68830c76d8dc209bd7e06efa96cead1e170149f7
  Author: Uday Bondhugula <uday at polymagelabs.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M mlir/include/mlir/Dialect/Affine/Analysis/Utils.h
    M mlir/lib/Dialect/Affine/Analysis/Utils.cpp
    A mlir/test/Dialect/Affine/loop-fusion-sibling.mlir

  Log Message:
  -----------
  [MLIR][Affine] Check dependences during MDG init (#156422)

Check affine dependences precisely during MDG init before adding edges.
We were conservatively only checking for memref-level conflicts.

Leads to more/better fusion as a result.

Fixes: https://github.com/llvm/llvm-project/issues/156421


  Commit: e741b719281e355d5098937d7a78f9078d361d61
      https://github.com/llvm/llvm-project/commit/e741b719281e355d5098937d7a78f9078d361d61
  Author: Martin Storsjö <martin at martin.st>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/cmake/modules/HandleLLVMOptions.cmake

  Log Message:
  -----------
  [CMake] Disable -Wdangling-reference warnings on GCC (#157541)

This gets rid of 99 warnings which mostly seem like false positives (in
a build of LLVM+Clang+LLDB, with GCC 13).

The warnings look e.g. like this:

../lib/ObjCopy/COFF/COFFObjcopy.cpp: In function ‘uint64_t
llvm::objcopy::coff::getNextRVA(const Object&)’:
../lib/ObjCopy/COFF/COFFObjcopy.cpp:38:18: warning: possibly dangling
reference to a temporary [-Wdangling-reference]
       38 |   const Section &Last = Obj.getSections().back();
          |                  ^~~~
../lib/ObjCopy/COFF/COFFObjcopy.cpp:38:47: note: the temporary was
destroyed at the end of the full expression ‘(&
Obj)->llvm::objcopy::coff::Object::getSections().llvm::ArrayRef<llvm::objcopy::coff::Section>::back()’
       38 |   const Section &Last = Obj.getSections().back();
          |                         ~~~~~~~~~~~~~~~~~~~~~~^~

In this example, the `Object::getSections()` method returns an
`ArrayRef<Section>` from a `std::vector<Section>`. We invoke `back()` on
that, and store a reference in a local variable. Even though the
temporary `ArrayRef<Section>` has been destroyed, the reference points
to something which still is alive in the `std::vector<Section>`.

See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109642 and
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110358 for some
preexisting discussion on this warning and how it can be silenced
selectively since GCC 14.


  Commit: a1afe66f328d4f77c7b5a9ad7b55b8349b1c7017
      https://github.com/llvm/llvm-project/commit/a1afe66f328d4f77c7b5a9ad7b55b8349b1c7017
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Analysis/ScalarEvolution.cpp
    M llvm/test/Analysis/ScalarEvolution/mul-udiv-folds.ll

  Log Message:
  -----------
  [SCEV] Generalize (C * A /u C) -> A fold to (C1 * A /u C2) -> C1/C2 * A. (#157159)

Generalize fold added in 74ec38fad0a1289
(https://github.com/llvm/llvm-project/pull/156730) to support multiplying and
dividing by different constants, given they are both powers-of-2 and C1 is a
multiple of C2, checked via logBase2.

https://alive2.llvm.org/ce/z/eqJ2xj

PR: https://github.com/llvm/llvm-project/pull/157159


  Commit: 204917ea971517fdbe46ece977e42d766f0cfe77
      https://github.com/llvm/llvm-project/commit/204917ea971517fdbe46ece977e42d766f0cfe77
  Author: David Green <david.green at arm.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AArch64/AArch64Subtarget.cpp
    M llvm/test/Transforms/LoopVectorize/AArch64/scalable-vectorization-cost-tuning.ll

  Log Message:
  -----------
  [LoopVectorizer][AArch64] Add a -sve-vscale-for-tuning override option. (#156916)

It can be useful for debugging and tuning to be able to alter the
VScaleForTuning. This adds a quick option to the aarch64 subtarget for
altering it.


  Commit: 8aa9e1e8e11904b709956b40cab6aec0ed3b4784
      https://github.com/llvm/llvm-project/commit/8aa9e1e8e11904b709956b40cab6aec0ed3b4784
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/X86/X86ScheduleZnver3.td
    M llvm/lib/Target/X86/X86ScheduleZnver4.td
    M llvm/test/tools/llvm-mca/X86/Znver3/resources-avx1.s
    M llvm/test/tools/llvm-mca/X86/Znver3/resources-avx2.s
    M llvm/test/tools/llvm-mca/X86/Znver3/resources-sha.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avx1.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avx2.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-sha.s

  Log Message:
  -----------
  [X86] Ensure models use vector load latency for vector loads (#157631)

Noticed while addressing #146564 - some of the znver3/4 overrides for vector ops were using the scalar load latencies by mistake


  Commit: 7a58e771436bf978fa7debb98296f797cb4e8141
      https://github.com/llvm/llvm-project/commit/7a58e771436bf978fa7debb98296f797cb4e8141
  Author: Zhijin Zeng <zhijin.zeng at spacemit.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lld/ELF/InputSection.cpp
    M lld/ELF/Target.h
    M llvm/include/llvm/ExecutionEngine/JITLink/riscv.h
    M llvm/include/llvm/Support/LEB128.h
    M llvm/lib/ExecutionEngine/JITLink/ELF_riscv.cpp
    M llvm/lib/ExecutionEngine/JITLink/riscv.cpp
    A llvm/test/ExecutionEngine/JITLink/RISCV/ELF_reloc_uleb128.s

  Log Message:
  -----------
  [JITLink][RISC-V] Support R_RISCV_SET_ULEB128/R_RISCV_SUB_ULEB128  (#153778)

Support bolt instrument the elf binary which has exception handling table.

Fixes #153775


  Commit: a0b8d548fd250c92c8f9274b57e38ad3f0b215e9
      https://github.com/llvm/llvm-project/commit/a0b8d548fd250c92c8f9274b57e38ad3f0b215e9
  Author: Bertik23 <39457484+Bertik23 at users.noreply.github.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    A llvm/include/llvm/Support/LSP/Logging.h
    A llvm/include/llvm/Support/LSP/Protocol.h
    A llvm/include/llvm/Support/LSP/Transport.h
    M llvm/lib/Support/CMakeLists.txt
    A llvm/lib/Support/LSP/CMakeLists.txt
    A llvm/lib/Support/LSP/Logging.cpp
    A llvm/lib/Support/LSP/Protocol.cpp
    A llvm/lib/Support/LSP/Transport.cpp
    M llvm/unittests/Support/CMakeLists.txt
    A llvm/unittests/Support/LSP/CMakeLists.txt
    A llvm/unittests/Support/LSP/Protocol.cpp
    A llvm/unittests/Support/LSP/Transport.cpp
    R mlir/include/mlir/Tools/lsp-server-support/Logging.h
    R mlir/include/mlir/Tools/lsp-server-support/Protocol.h
    M mlir/include/mlir/Tools/lsp-server-support/SourceMgrUtils.h
    R mlir/include/mlir/Tools/lsp-server-support/Transport.h
    M mlir/include/mlir/Tools/mlir-lsp-server/MlirLspRegistryFunction.h
    M mlir/lib/Tools/lsp-server-support/CMakeLists.txt
    M mlir/lib/Tools/lsp-server-support/CompilationDatabase.cpp
    R mlir/lib/Tools/lsp-server-support/Logging.cpp
    R mlir/lib/Tools/lsp-server-support/Protocol.cpp
    M mlir/lib/Tools/lsp-server-support/SourceMgrUtils.cpp
    R mlir/lib/Tools/lsp-server-support/Transport.cpp
    M mlir/lib/Tools/mlir-lsp-server/CMakeLists.txt
    M mlir/lib/Tools/mlir-lsp-server/LSPServer.cpp
    M mlir/lib/Tools/mlir-lsp-server/LSPServer.h
    M mlir/lib/Tools/mlir-lsp-server/MLIRServer.cpp
    M mlir/lib/Tools/mlir-lsp-server/MLIRServer.h
    M mlir/lib/Tools/mlir-lsp-server/MlirLspServerMain.cpp
    M mlir/lib/Tools/mlir-lsp-server/Protocol.cpp
    M mlir/lib/Tools/mlir-lsp-server/Protocol.h
    M mlir/lib/Tools/mlir-pdll-lsp-server/CMakeLists.txt
    M mlir/lib/Tools/mlir-pdll-lsp-server/LSPServer.cpp
    M mlir/lib/Tools/mlir-pdll-lsp-server/LSPServer.h
    M mlir/lib/Tools/mlir-pdll-lsp-server/MlirPdllLspServerMain.cpp
    M mlir/lib/Tools/mlir-pdll-lsp-server/PDLLServer.cpp
    M mlir/lib/Tools/mlir-pdll-lsp-server/PDLLServer.h
    M mlir/lib/Tools/mlir-pdll-lsp-server/Protocol.cpp
    M mlir/lib/Tools/mlir-pdll-lsp-server/Protocol.h
    M mlir/lib/Tools/tblgen-lsp-server/CMakeLists.txt
    M mlir/lib/Tools/tblgen-lsp-server/LSPServer.cpp
    M mlir/lib/Tools/tblgen-lsp-server/LSPServer.h
    M mlir/lib/Tools/tblgen-lsp-server/TableGenLspServerMain.cpp
    M mlir/lib/Tools/tblgen-lsp-server/TableGenServer.cpp
    M mlir/lib/Tools/tblgen-lsp-server/TableGenServer.h
    M mlir/tools/mlir-lsp-server/mlir-lsp-server.cpp
    M mlir/unittests/CMakeLists.txt
    R mlir/unittests/Tools/CMakeLists.txt
    R mlir/unittests/Tools/lsp-server-support/CMakeLists.txt
    R mlir/unittests/Tools/lsp-server-support/Protocol.cpp
    R mlir/unittests/Tools/lsp-server-support/Transport.cpp

  Log Message:
  -----------
  [LLVM][MLIR] Move LSP server support library from MLIR into LLVM (#155572)

This PR moves the generic Language Server Protocol (LSP) server support
code that was copied from clangd into MLIR, into the LLVM tree so it can
be reused by multiple subprojects.

Centralizing the generic LSP support in LLVM lowers the barrier to
building new LSP servers across the LLVM ecosystem and avoids each
subproject maintaining its own copy.

The code originated in clangd and was copied into MLIR for its LSP
server. MLIR had this code seperate to be reused by all of their LSP
server. This PR relocates the MLIR copy into LLVM as a shared component
into `LLVM/Support`. If this is not a suitable place, please suggest a
better one.

A follow up to this move could be deduplication with the original clangd
implementation and converge on a single shared LSP support library used
by clangd, MLIR, and future servers.

### What changes
* `mlir/include/mlir/Tools/lsp-server-support/{Logging, Protocol,
Transport}.h` moved to `llvm/include/llvm/Support/LSP`
* `mlir/lib/Tools/lsp-server-support/{Logging, Protocol, Transport}.cpp`
moved to `llvm/lib/Support/LSP`

and their namespace was changed from `mlir` to `llvm`

I ran clang-tidy --fix and clang-format on the whole moved files (last
two commits), as they are basically new files and should hold up to the
code style used by LLVM.

MLIR LSP servers where updated to include these files from their new
location and account for the namespace change.

This PR is made as part of the LLVM IR LSP project
([RFC](https://discourse.llvm.org/t/rfc-ir-visualization-with-vs-code-extension-using-an-lsp-server/87773))


  Commit: e976622e2d7464b09fcf0141291003bf5fe9fd6f
      https://github.com/llvm/llvm-project/commit/e976622e2d7464b09fcf0141291003bf5fe9fd6f
  Author: Tomohiro Kashiwada <kikairoya at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lld/COFF/Chunks.cpp
    M lld/COFF/MinGW.cpp
    A lld/test/COFF/reloc-undefined-weak.s
    M lld/test/COFF/wrap-dllimport.s

  Log Message:
  -----------
  [LLD][COFF] Prevent to emit relocations for discarded weak wrapped symbols (#156214)

When a symbol is imported from a DLL, a base relocation record is
normally emitted.
However, if the import is pulled in via a wrapped symbol (using
`--wrap`) and later dropped because it is only referenced weakly, a
dangling base relocation remains in the output.
At runtime, this relocation changes the symbol value from null to a
garbage pointer.

This patch adds checks to avoid emitting relocation records for
non-`Defined` symbols, and to prevent creating an auto-import entry if
an import entry for the wrapped symbol already exists.

Fixes https://github.com/llvm/llvm-project/issues/150739


  Commit: 4546522aa34c1f56a22e35cb411d4e18481d1854
      https://github.com/llvm/llvm-project/commit/4546522aa34c1f56a22e35cb411d4e18481d1854
  Author: László Várady <annonameus at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/examples/OrcV2Examples/OrcV2CBindingsBasicUsage/OrcV2CBindingsBasicUsage.c
    M llvm/examples/OrcV2Examples/OrcV2CBindingsIRTransforms/OrcV2CBindingsIRTransforms.c
    M llvm/examples/OrcV2Examples/OrcV2CBindingsVeryLazy/OrcV2CBindingsVeryLazy.c

  Log Message:
  -----------
  [ORC][examples][LLVM-C] Fix ThreadSafeContext to wrap existing context (#157366)

Fixes #155881

---------

Co-authored-by: Lang Hames <lhames at gmail.com>


  Commit: 96d556784ed3ec7a8a6c377b44afb5dfa49229e6
      https://github.com/llvm/llvm-project/commit/96d556784ed3ec7a8a6c377b44afb5dfa49229e6
  Author: Benjamin Maxwell <benjamin.maxwell at arm.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    M llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
    M llvm/lib/Target/AArch64/MachineSMEABIPass.cpp
    M llvm/test/CodeGen/AArch64/sme-agnostic-za.ll

  Log Message:
  -----------
  [AArch64][SME] Support agnostic ZA functions in the MachineSMEABIPass (#149064)

This extends the MachineSMEABIPass to handle agnostic ZA functions. This
case is currently handled like shared ZA functions, but we don't require
ZA state to be reloaded before agnostic ZA calls.

Note: This patch does not yet fully handle agnostic ZA functions that
can catch exceptions. E.g.:

```
__arm_agnostic("sme_za_state") void try_catch_agnostic_za_callee()
{
  try {
    agnostic_za_call();
  } catch(...) {
    noexcept_agnostic_za_call();
  }
}
```

As in this case, we won't commit a ZA save before the
`agnostic_za_call()`, which would be needed to restore ZA in the catch
block. This will be handled in a later patch.


  Commit: 3a767473b7eb1012d495b18fd475ff77f4f8afc2
      https://github.com/llvm/llvm-project/commit/3a767473b7eb1012d495b18fd475ff77f4f8afc2
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Headers/xopintrin.h
    M clang/test/CodeGen/X86/xop-builtins.c

  Log Message:
  -----------
  [X86] Allow XOP rotate intrinsics to be used in constexpr (#157643)

Now that they wrap the __builtin_elementwise_fshl/fshr builtin intrinsics this is pretty trivial.

Another step towards #153152 - I'll handle the AVX512 rotates next


  Commit: bf5ea876ef04e6d34a49cf841f4b881ac9d5b15c
      https://github.com/llvm/llvm-project/commit/bf5ea876ef04e6d34a49cf841f4b881ac9d5b15c
  Author: Balazs Benics <benicsbalazs at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Analysis/LiveVariables.cpp

  Log Message:
  -----------
  [analyzer] In LivenessValues::equals also check liveBindings (#157645)

This was likely accidentally omitted when `liveBindings` was introduced.
I don't think in practice it matters.


  Commit: 14f7e5fa06235dac1a2d82290aa4d69de9d56862
      https://github.com/llvm/llvm-project/commit/14f7e5fa06235dac1a2d82290aa4d69de9d56862
  Author: Alexandre Ganea <aganea at havenstudios.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lld/COFF/COFFLinkerContext.h
    M lld/COFF/PDB.cpp
    M lld/COFF/PDB.h
    M lld/COFF/Writer.cpp
    M lld/test/COFF/pdb-type-server-simple.test
    M lld/test/COFF/precomp-link.test
    M lld/test/COFF/precomp-summary-fail.test

  Log Message:
  -----------
  [LLD][COFF] Make `/summary` work when `/debug` isn't provided (#157476)

Previously, `/summary` was meant to print some PDB information. Now move
handling of `/summary` to `Writer.cpp` so that it can have an effect
when `/debug` isn't provided. This will also provide grounds for
extending with more general information.


  Commit: 5544afd25368413fd663362cd4eb58811bf558d2
      https://github.com/llvm/llvm-project/commit/5544afd25368413fd663362cd4eb58811bf558d2
  Author: Ramkumar Ramachandra <ramkumar.ramachandra at codasip.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Utils/LoopUtils.cpp
    M llvm/lib/Transforms/Utils/LoopVersioning.cpp
    M llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    M llvm/test/Transforms/LoopDistribute/scev-inserted-runtime-check.ll
    M llvm/test/Transforms/LoopVersioning/incorrect-phi.ll
    M llvm/test/Transforms/LoopVersioning/wrapping-pointer-versioning.ll

  Log Message:
  -----------
  [LoopUtils] Simplify expanded RT-checks (#157518)

Follow up on 528b13d ([SCEVExp] Add helper to clean up dead instructions
after expansion.) to hoist the SCEVExapnder::eraseDeadInstructions call
from LoopVectorize into the LoopUtils APIs add[Diff]RuntimeChecks, so
that other callers (LoopDistribute and LoopVersioning) can benefit from
the patch.


  Commit: 38a7161a29431bdfa7be8e4154ef81d3ac80a2bd
      https://github.com/llvm/llvm-project/commit/38a7161a29431bdfa7be8e4154ef81d3ac80a2bd
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    A llvm/test/CodeGen/AArch64/local-bounds-single-trap.ll
    R llvm/test/MC/AArch64/local-bounds-single-trap.ll

  Log Message:
  -----------
  AArch64: Fix codegen test in MC directory (#157648)


  Commit: 150f3c3fd3e50584fb9944cd6934f999b0ddd0e0
      https://github.com/llvm/llvm-project/commit/150f3c3fd3e50584fb9944cd6934f999b0ddd0e0
  Author: Joseph Huber <huberjn at outlook.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libcxx/include/__random/binomial_distribution.h

  Log Message:
  -----------
  [libc++] Fix missing macro definition for lgamma (#157610)


  Commit: abe96a21bb9fbfe2acd0d5ec78b54019aa27fd4f
      https://github.com/llvm/llvm-project/commit/abe96a21bb9fbfe2acd0d5ec78b54019aa27fd4f
  Author: pirama-arumuga-nainar <pirama at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libcxx/utils/ci/BOT_OWNERS.txt

  Log Message:
  -----------
  [libc++] Update owners of Android CI in BOT_OWNERS.txt (#157183)

Add pirama-arumuga-nainar, Sharjeel-Khan and remove previous owner.


  Commit: b4075c4869e5bb212f7dc066a7441316ba43ec12
      https://github.com/llvm/llvm-project/commit/b4075c4869e5bb212f7dc066a7441316ba43ec12
  Author: Nikolas Klauser <nikolasklauser at berlin.de>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libcxx/include/__cxx03/__iterator/prev.h
    M libcxx/test/libcxx-03/iterators/iterator.primitives/iterator.operations/prev.verify.cpp

  Log Message:
  -----------
  [libc++][C++03] cherry-pick #112102 (#157104)


  Commit: 4d200275f684d8ec2e689addd689891300c11f93
      https://github.com/llvm/llvm-project/commit/4d200275f684d8ec2e689addd689891300c11f93
  Author: Adrian Kuegel <akuegel at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

  Log Message:
  -----------
  [mlir][Bazel] Add missing dependency as followup to 68830c76d8dc


  Commit: 0a5012f00857308bdbf3e156764c585dd29db9a3
      https://github.com/llvm/llvm-project/commit/0a5012f00857308bdbf3e156764c585dd29db9a3
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Headers/avx512fintrin.h
    M clang/lib/Headers/avx512vlintrin.h
    M clang/test/CodeGen/X86/avx512f-builtins.c
    M clang/test/CodeGen/X86/avx512vl-builtins.c

  Log Message:
  -----------
  [X86] Allow AVX512 rotate intrinsics to be used in constexpr (#157652)

Now that they wrap the __builtin_elementwise_fshl/fshr builtin intrinsics this is pretty trivial.

Another step towards #153152 - just VBMI2 double shifts remaining


  Commit: 6dfc255ee103fda23d14ef2765123dd34f646ccd
      https://github.com/llvm/llvm-project/commit/6dfc255ee103fda23d14ef2765123dd34f646ccd
  Author: Michael Buch <michaelbuch12 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/test/API/lang/cpp/abi_tag_structors/TestAbiTagStructors.py

  Log Message:
  -----------
  [lldb][test] TestAbiTagStructors.py: XFAIL on Windows

This is failing on the lldb-aarch64-windows bots with (see error below).
XFAIL for now because it's unlikely that these expression evaluator
calls were supported before they were added.

```
======================================================================

FAIL: test_nested_no_structor_linkage_names_dwarf (TestAbiTagStructors.AbiTagStructorsTestCase.test_nested_no_structor_linkage_names_dwarf)

----------------------------------------------------------------------

Traceback (most recent call last):

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 1828, in test_method

    return attrvalue(self)

           ^^^^^^^^^^^^^^^

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\test\API\lang\cpp\abi_tag_structors\TestAbiTagStructors.py", line 108, in test_nested_no_structor_linkage_names

    self.do_nested_structor_test()

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\test\API\lang\cpp\abi_tag_structors\TestAbiTagStructors.py", line 102, in do_nested_structor_test

    self.expect(

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 2453, in expect

    self.assertFalse(

AssertionError: True is not false : Command 'expression TaggedLocal()' is expected to fail!

Config=aarch64-C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\build\bin\clang.exe

======================================================================

FAIL: test_nested_with_structor_linkage_names_dwarf (TestAbiTagStructors.AbiTagStructorsTestCase.test_nested_with_structor_linkage_names_dwarf)

----------------------------------------------------------------------

Traceback (most recent call last):

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 1828, in test_method

    return attrvalue(self)

           ^^^^^^^^^^^^^^^

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\test\API\lang\cpp\abi_tag_structors\TestAbiTagStructors.py", line 112, in test_nested_with_structor_linkage_names

    self.do_nested_structor_test()

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\test\API\lang\cpp\abi_tag_structors\TestAbiTagStructors.py", line 102, in do_nested_structor_test

    self.expect(

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 2453, in expect

    self.assertFalse(

AssertionError: True is not false : Command 'expression TaggedLocal()' is expected to fail!

Config=aarch64-C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\build\bin\clang.exe

======================================================================

FAIL: test_no_structor_linkage_names_dwarf (TestAbiTagStructors.AbiTagStructorsTestCase.test_no_structor_linkage_names_dwarf)

    Test that without linkage names on structor declarations we can't call

----------------------------------------------------------------------

Traceback (most recent call last):

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 1828, in test_method

    return attrvalue(self)

           ^^^^^^^^^^^^^^^

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\test\API\lang\cpp\abi_tag_structors\TestAbiTagStructors.py", line 81, in test_no_structor_linkage_names

    self.expect("expr Tagged t3(t1)", error=True)

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 2453, in expect

    self.assertFalse(

AssertionError: True is not false : Command 'expr Tagged t3(t1)' is expected to fail!

Config=aarch64-C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\build\bin\clang.exe

======================================================================

FAIL: test_with_structor_linkage_names_dwarf (TestAbiTagStructors.AbiTagStructorsTestCase.test_with_structor_linkage_names_dwarf)

----------------------------------------------------------------------

Traceback (most recent call last):

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 1828, in test_method

    return attrvalue(self)

           ^^^^^^^^^^^^^^^

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\test\API\lang\cpp\abi_tag_structors\TestAbiTagStructors.py", line 20, in test_with_structor_linkage_names

    self.expect_expr(

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 2596, in expect_expr

    value_check.check_value(self, eval_result, str(eval_result))

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 301, in check_value

    test_base.assertSuccess(val.GetError())

  File "C:\Users\tcwg\llvm-worker\lldb-aarch64-windows\llvm-project\lldb\packages\Python\lldbsuite\test\lldbtest.py", line 2631, in assertSuccess

    self.fail(self._formatMessage(msg, "'{}' is not success".format(error)))

AssertionError: 'error: Internal error [IRForTarget]: Result variable (??__F$__lldb_expr_result@?1??$__lldb_expr@@YAXPEAX at Z@YAXXZ) is defined, but is not a global variable

```


  Commit: 513d9cd06adff8bea2a89433484e0fb8ae956004
      https://github.com/llvm/llvm-project/commit/513d9cd06adff8bea2a89433484e0fb8ae956004
  Author: Adrian Kuegel <akuegel at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
    M utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel
    M utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

  Log Message:
  -----------
  [mlir][Bazel] Adjust llvm Support target to include LSP sources.

Followup to a0b8d548fd25


  Commit: 2194d6d07f85184584335dcae0420e556140922a
      https://github.com/llvm/llvm-project/commit/2194d6d07f85184584335dcae0420e556140922a
  Author: Balazs Benics <benicsbalazs at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Analysis/Analyses/LiveVariables.h
    M clang/lib/Analysis/LiveVariables.cpp

  Log Message:
  -----------
  [analyzer][NFC] Rename LivenessValues::equals to LivenessValues::operator== (#157657)

This is just more conventional.


  Commit: 6bcb172bd6866e6e87deed5a3dc3f392d9fb41ec
      https://github.com/llvm/llvm-project/commit/6bcb172bd6866e6e87deed5a3dc3f392d9fb41ec
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/Transforms/LoopVectorize/flags.ll

  Log Message:
  -----------
  [LV] Add test for preserving common GEP flags.

Add additional test coverage for preserving poison generating flags.
Modernize the existing flags tests with auto-generated check lines.


  Commit: 872d2c90bec3ebe2df42786573c07c17c68825fd
      https://github.com/llvm/llvm-project/commit/872d2c90bec3ebe2df42786573c07c17c68825fd
  Author: Cullen Rhodes <cullen.rhodes at arm.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/Transforms/InstCombine/freeze-fp-ops.ll
    M llvm/test/Transforms/InstCombine/freeze-landingpad.ll
    M llvm/test/Transforms/InstCombine/freeze.ll

  Log Message:
  -----------
  [InstCombine] Re-generate freeze tests and fix warnings (NFC) (#157647)


  Commit: 244588b9d712e1cebcd0a3af3c19c97c0d9055b8
      https://github.com/llvm/llvm-project/commit/244588b9d712e1cebcd0a3af3c19c97c0d9055b8
  Author: YafetBeyene <ybeyene at nvidia.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M bolt/docs/CommandLineArgumentReference.md
    M bolt/include/bolt/Core/MCPlusBuilder.h
    M bolt/lib/Passes/BinaryPasses.cpp
    M bolt/lib/Rewrite/BinaryPassManager.cpp
    M bolt/lib/Target/AArch64/AArch64MCPlusBuilder.cpp
    A bolt/test/runtime/AArch64/inline-memcpy.s

  Log Message:
  -----------
  [BOLT][AArch64] Inlining of Memcpy (#154929)

The pass for inlining memcpy in BOLT was currently X86-specific and was
using the instruction `rep movsb`.

This patch implements a static size analysis system for AArch64 memcpy
inlining that extracts copy sizes from preceding instructions to then
use it to generate the optimal width-specific load/store sequences.


  Commit: 7d6068051011f6783cf93553c10fc475af5c7b11
      https://github.com/llvm/llvm-project/commit/7d6068051011f6783cf93553c10fc475af5c7b11
  Author: David Green <david.green at arm.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/CodeGen/AArch64/arm64-vcvtxd_f32_f64.ll

  Log Message:
  -----------
  [AArch64][GlobalISel] Add test coverage for arm64-vcvtxd_f32_f64.ll. NFC


  Commit: a69a406776dd6f475843d882ff0d67d17695b76e
      https://github.com/llvm/llvm-project/commit/a69a406776dd6f475843d882ff0d67d17695b76e
  Author: Ilya Biryukov <ibiryukov at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/AST/ASTContext.cpp

  Log Message:
  -----------
  [AST] Match the FoldingSetNodeID computed before and after creating TypedefType (#157662)

At some point the call to static `TypedefType::Profile` inside
`ASTContext::getTypedefType` got out-of-sync with the non-static
`TypedefType::Profile`.

This seem to cause some bad performance patterns with `FoldingSet` and
are seeing 10x increases in compile times in certain scenarios. After
this commit, the compile times go back to normal.

This commit does not include tests or benchmarks because we want to land
this ASAP to unbreak our deployment. I will work on adding asserts,
tests or benchmarks in a follow-up.


  Commit: cd4c82c1c3763a54e964f7507964693290fd997b
      https://github.com/llvm/llvm-project/commit/cd4c82c1c3763a54e964f7507964693290fd997b
  Author: Valentyn Yukhymenko <valentin.yukhymenko at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang-tools-extra/docs/ReleaseNotes.rst
    M clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/unchecked-optional-access/bde/types/bdlb_nullablevalue.h
    M clang-tools-extra/test/clang-tidy/checkers/bugprone/unchecked-optional-access.cpp
    M clang/lib/Analysis/FlowSensitive/Models/UncheckedOptionalAccessModel.cpp

  Log Message:
  -----------
  [clang-tidy] `bugprone-unchecked-optional-access`: handle `BloombergLP::bdlb:NullableValue::makeValue` to prevent false-positives (#144313)

https://github.com/llvm/llvm-project/pull/101450 added support for
`BloombergLP::bdlb::NullableValue`.

However, `NullableValue::makeValue` and
`NullableValue::makeValueInplace` have been missed which impacts code
like this:
```cpp
  if (opt.isNull()) {
    opt.makeValue(42);
  }

  opt.value(); // triggers false positive warning from `bugprone-unchecked-optional-access`
```

My patch addresses this issue.

[Docs that I used for methods
mocks](https://bloomberg.github.io/bde-resources/doxygen/bde_api_prod/classbdlb_1_1NullableValue.html)

---------

Co-authored-by: Baranov Victor <bar.victor.2002 at gmail.com>


  Commit: c0aee322f7024250fd4a2c49f56534011178d07c
      https://github.com/llvm/llvm-project/commit/c0aee322f7024250fd4a2c49f56534011178d07c
  Author: Nikita Popov <npopov at redhat.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M mlir/lib/Tools/mlir-lsp-server/CMakeLists.txt
    M mlir/lib/Tools/mlir-pdll-lsp-server/CMakeLists.txt
    M mlir/lib/Tools/tblgen-lsp-server/CMakeLists.txt

  Log Message:
  -----------
  [mlir] Move SupportLSP to LINK_COMPONENTS

Try to fix https://github.com/llvm/llvm-project/pull/155572 in
some build configurations.


  Commit: 86b1e1b9720ed4cd892d18503667ab32b080a528
      https://github.com/llvm/llvm-project/commit/86b1e1b9720ed4cd892d18503667ab32b080a528
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/tools/llvm-cgdata/merge-combined-funcmap-hashtree.test
    M llvm/test/tools/llvm-cgdata/merge-funcmap-archive.test
    M llvm/test/tools/llvm-cgdata/merge-funcmap-concat.test
    M llvm/test/tools/llvm-cgdata/merge-funcmap-double.test
    M llvm/test/tools/llvm-cgdata/merge-funcmap-single.test
    M llvm/test/tools/llvm-cgdata/merge-hashtree-archive.test
    M llvm/test/tools/llvm-cgdata/merge-hashtree-concat.test
    M llvm/test/tools/llvm-cgdata/merge-hashtree-double.test
    M llvm/test/tools/llvm-cgdata/merge-hashtree-single.test

  Log Message:
  -----------
  [CGData] Rewrite tests to not use subshells

Subshells are not supported by lit's internal shell, which we want to
enable by default for the LLVM test suite. Rewrite the tests in
llvm/test/tools/llvm-cgdata to not use subshells so we can achieve this
without losing any test coverage.

Reviewers: kyulee-com, petrhosek, ilovepi

Reviewed By: ilovepi, petrhosek

Pull Request: https://github.com/llvm/llvm-project/pull/157234


  Commit: 3ea089ba197681aa3ccbb7325872c58e2eb542e1
      https://github.com/llvm/llvm-project/commit/3ea089ba197681aa3ccbb7325872c58e2eb542e1
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Analysis/TargetTransformInfo.h
    M llvm/include/llvm/Transforms/Utils/UnrollLoop.h
    M llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
    M llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
    M llvm/lib/Transforms/Utils/LoopUnroll.cpp
    M llvm/test/Transforms/LoopUnroll/AArch64/apple-unrolling.ll

  Log Message:
  -----------
  [AArch64] Enable RT and partial unrolling with reductions for Apple CPUs. (#149699)

Update unrolling preferences for Apple Silicon CPUs to enable partial
unrolling and runtime unrolling for small loops with reductions.

This builds on top of unroller changes to introduce parallel reduction
phis, if possible: https://github.com/llvm/llvm-project/pull/149470.

PR: https://github.com/llvm/llvm-project/pull/149699


  Commit: 80c2da6372b5b4104cf09411c9fa8cb64df0a8a2
      https://github.com/llvm/llvm-project/commit/80c2da6372b5b4104cf09411c9fa8cb64df0a8a2
  Author: Sergei Lebedev <185856+superbobry at users.noreply.github.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M mlir/lib/Bindings/Python/MainModule.cpp
    M mlir/python/mlir/ir.py

  Log Message:
  -----------
  [MLIR] [Python] Added a context manager for enabling traceback-based locations (#157562)

Previously this functionality was not surfaced in the public API.


  Commit: 57e1846c96f0c858f687fe9c66f4e3793b52f497
      https://github.com/llvm/llvm-project/commit/57e1846c96f0c858f687fe9c66f4e3793b52f497
  Author: Nathan Gauër <brioche at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/AST/Attr.h
    M clang/include/clang/Basic/Attr.td
    M clang/include/clang/Basic/DiagnosticFrontendKinds.td
    M clang/include/clang/Basic/DiagnosticParseKinds.td
    M clang/include/clang/Basic/DiagnosticSemaKinds.td
    M clang/include/clang/Parse/Parser.h
    M clang/include/clang/Sema/SemaHLSL.h
    M clang/lib/Basic/Attributes.cpp
    M clang/lib/CodeGen/CGHLSLRuntime.cpp
    M clang/lib/CodeGen/CGHLSLRuntime.h
    M clang/lib/Parse/ParseHLSL.cpp
    M clang/lib/Sema/SemaDeclAttr.cpp
    M clang/lib/Sema/SemaHLSL.cpp
    A clang/test/CodeGenHLSL/semantics/DispatchThreadID-noindex.hlsl
    A clang/test/CodeGenHLSL/semantics/SV_GroupID-noindex.hlsl
    A clang/test/CodeGenHLSL/semantics/SV_GroupThreadID-noindex.hlsl
    M clang/test/CodeGenHLSL/semantics/SV_Position.ps.hlsl
    A clang/test/CodeGenHLSL/semantics/missing.hlsl
    M clang/test/ParserHLSL/semantic_parsing.hlsl
    A clang/test/ParserHLSL/semantic_parsing_define.hlsl
    M clang/test/SemaHLSL/Semantics/invalid_entry_parameter.hlsl
    M clang/utils/TableGen/ClangAttrEmitter.cpp

  Log Message:
  -----------
  [HLSL] Rewrite semantics parsing (#152537)

This is the first PR to implement the semantics proposal:
https://github.com/llvm/wg-hlsl/blob/main/proposals/0031-semantics.md

This PR focuses on the changes required to handle user semantics, but
tried to be almost NFC.
What changes is the error messages as the semantics case is not kept
when reporting error messages.

You might notice the SV_GroupIndex semantic is not properly validated as
are others. This is an existing behavior that we'll need to fix, but
wanted to keep this separated from this rewrite to stay as-close as an
NFC as possible.

The next PR will add support on the different kinds of I/O we can have
using semantics (input, inout param, structs).


  Commit: d281db91464f306fddee5828c0437b8d9537e5a7
      https://github.com/llvm/llvm-project/commit/d281db91464f306fddee5828c0437b8d9537e5a7
  Author: Mehdi Amini <joker.eph at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M mlir/lib/Dialect/Transform/IR/TransformOps.cpp

  Log Message:
  -----------
  [MLIR] Apply clang-tidy fixes for modernize-loop-convert in TransformOps.cpp (NFC)


  Commit: 7d673ca1abac71825dd3d8c9b02e0f78b8d9427f
      https://github.com/llvm/llvm-project/commit/7d673ca1abac71825dd3d8c9b02e0f78b8d9427f
  Author: tgs-sc <timur.golubovich at syntacore.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/AST/RecordLayoutBuilder.cpp

  Log Message:
  -----------
  [clang][AST] Added assert to prevent infinite recursion in computing layout (#154134)

While computing class layout, I met with infinite recursion. This
happened while executing user expression in lldb as record type was
incorrectly received from dwarf. This assert will replace the infinite
recursion with an error and will simplify further debugging of such
cases.


  Commit: 090a81fbfac1c1cf2fb4021b035c47dcd2d35772
      https://github.com/llvm/llvm-project/commit/090a81fbfac1c1cf2fb4021b035c47dcd2d35772
  Author: Balazs Benics <benicsbalazs at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/StaticAnalyzer/Core/RegionStore.cpp

  Log Message:
  -----------
  [analyzer][NFC] Fix a warning in RegionStore.cpp (#157630)

```
clang/lib/StaticAnalyzer/Core/RegionStore.cpp: warning: bitwise operation between different enumeration types ('Kind' and '(anonymous namespace)::BindingKey::(unnamed enum at clang/lib/StaticAnalyzer/Core/RegionStore.cpp)') is deprecated [-Wdeprecated-anon-enum-enum-conversion]
   XX |     : P(r, k | Symbolic), Data(reinterpret_cast<uintptr_t>(Base)) {
      |            ~ ^ ~~~~~~~~
1 warning generated.
```


  Commit: 78fb8b033695ba327388519754a3288eec11cdb1
      https://github.com/llvm/llvm-project/commit/78fb8b033695ba327388519754a3288eec11cdb1
  Author: Balazs Benics <benicsbalazs at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Analysis/Analyses/LiveVariables.h
    M clang/lib/Analysis/LiveVariables.cpp

  Log Message:
  -----------
  [analyzer][NFC] Remove dead LiveVariables::Observer::observerKill (#157661)

This API was never used in the clang code base.
There might be downstream users, but I highly doubt that. I think the
best is to get rid of this unused API.


  Commit: 6b4803fd484e2562281a6d742495656637e3df3a
      https://github.com/llvm/llvm-project/commit/6b4803fd484e2562281a6d742495656637e3df3a
  Author: Morris Hafner <mmha at users.noreply.github.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/CIR/Dialect/Builder/CIRBaseBuilder.h
    M clang/include/clang/CIR/Dialect/IR/CIROps.td
    M clang/include/clang/CIR/MissingFeatures.h
    M clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp
    M clang/lib/CIR/Dialect/Transforms/HoistAllocas.cpp
    M clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
    M clang/test/CIR/CodeGen/builtin_call.cpp
    A clang/test/CIR/IR/alloca.cir

  Log Message:
  -----------
  [CIR] Add support for __builtin_alloca (#157116)

This patch adds support for the alloca builtin and extends AllocaOp with
a dynamic size argument.


  Commit: 225f181d75b0783a4a20dc101d87fc62070d0280
      https://github.com/llvm/llvm-project/commit/225f181d75b0783a4a20dc101d87fc62070d0280
  Author: Carlos Seo <carlos.seo at linaro.org>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M flang/lib/Lower/ConvertCall.cpp
    A flang/test/Lower/percent-val-actual-argument.f90
    A flang/test/Lower/percent-val-value-argument.f90

  Log Message:
  -----------
  [Flang] Handle %VAL arguments correctly (#157186)

Internal procedures expect reference parameters. However, when %VAL is
used, the argument should be passed by value. Forward the loaded address
and skip conversion to avoid a type conversion error.

Fixes #118239


  Commit: 17abebe68c222dd2a6e7e09236658a0afac2fbb8
      https://github.com/llvm/llvm-project/commit/17abebe68c222dd2a6e7e09236658a0afac2fbb8
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Headers/avx512vbmi2intrin.h
    M clang/lib/Headers/avx512vlvbmi2intrin.h
    M clang/test/CodeGen/X86/avx512vbmi2-builtins.c
    M clang/test/CodeGen/X86/avx512vlvbmi2-builtins.c

  Log Message:
  -----------
  [X86] Allow AVX512 funnel shift intrinsics to be used in constexpr (#157668)

Now that they wrap the __builtin_elementwise_fshl/fshr builtin intrinsics this is pretty trivial.

Just one more step towards #153152 - VBMI2 funnel shifts by immediate


  Commit: 15a05c05286bacc74b6dca480f00c8c58124b48b
      https://github.com/llvm/llvm-project/commit/15a05c05286bacc74b6dca480f00c8c58124b48b
  Author: Kerry McLaughlin <kerry.mclaughlin at arm.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    M llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
    M llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
    M llvm/lib/Target/AArch64/SVEInstrFormats.td

  Log Message:
  -----------
  [AArch64][SVE] Add PTEST_FIRST pseudo instruction (#157489)

The pseudo is created when the condition of a ptest is FIRST_ACTIVE.

This allows optimizePTestInstr to be extended to handle whilecc intrinsics
that return a predicate pair, where it is necessary to identify the
condition code used to remove a ptest on the first result of the pair.
(See https://github.com/llvm/llvm-project/pull/156478)


  Commit: 1f783d739611e187aff70fde43b968c82fe2ff48
      https://github.com/llvm/llvm-project/commit/1f783d739611e187aff70fde43b968c82fe2ff48
  Author: cmtice <cmtice at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang-tools-extra/test/clang-apply-replacements/crlf.cpp
    M clang-tools-extra/test/lit.cfg.py

  Log Message:
  -----------
  [clang-tools-extra] Make internal shell the default for lit tests. (#157572)

This patch updates the clang-tools-extra lit test config to use the
internal shell by default. This has some performance advantages
(~10-15%) and also produces nicer failure output. It also updates one
clang-tools-extra test, so that it passes using the internal shell. All
the other tests appear to pass using the internal shell.


  Commit: 5044128ce268b7c25c269491271e4c2a45627313
      https://github.com/llvm/llvm-project/commit/5044128ce268b7c25c269491271e4c2a45627313
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIInstrInfo.td

  Log Message:
  -----------
  AMDGPU: Remove unused getEquivalentAGPRClass (#157671)


  Commit: 9a9c635347b67345b7cf48c7fc228af534468d22
      https://github.com/llvm/llvm-project/commit/9a9c635347b67345b7cf48c7fc228af534468d22
  Author: Orlando Cazalet-Hyams <orlando.hyams at sony.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M cross-project-tests/debuginfo-tests/dexter/dex/debugger/DAP.py
    M cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/LLDB.py
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/control/dex-continue.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/control/dex_step_function.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/dex_declare_file.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_program_state.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_step_kinds.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_step_order.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_watch_type.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_watch_value.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/float_range_out_range.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/float_range_zero_nonmatch.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/missing_dex_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/unreachable.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/unreachable_line_range.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/unreachable_on_line.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/command_line.c
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/address_after_ref.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/address_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/expression_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/identical_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/multiple_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/offset_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/self_comparison.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/dex_and_source/test.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/precompiled_binary/commands.dex
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/precompiled_binary_different_dir/dex_commands/commands.dex
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/precompiled_binary_different_dir/dex_commands/source_root_dir.dex
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/windows_noncanonical_path/test.dex
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_conditional.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_conditional_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_simple.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_conditional.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_conditional_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_simple.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_program_state.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/direction.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/func.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/func_external.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/recursive.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/small_loop.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_order.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_watch_type.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_watch_value.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_multiple.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_no_arg.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_small.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_zero_match.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_check_json_step_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_expect_loop.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_expect_value.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_line_mismatch.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_overlapping_ranges.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_same_line_conditional.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/unconditional.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/unreachable.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/unreachable_not_cmd_lineno.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/unreachable_on_line.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/help/help.test
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/list-debuggers/list-debuggers.test
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/address_printing.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_bad_label_ref.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_duplicate_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_duplicate_label.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_label_kwarg.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_limit_steps_no_values.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_paren.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_paren_mline.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_syntax.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_syntax_dexdeclarefile.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_syntax_mline.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_type.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_type_mline.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_undeclared_addr.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/label_another_line.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/label_offset.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/target_run_args.c
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/target_run_args_with_command.c
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/view.cpp

  Log Message:
  -----------
  Revert "[Dexter] Temporarily print DAP logs on specific exception" (#157677)

Reverts llvm/llvm-project#157130

This was just a temporary change to investigate a flaky bot failure


  Commit: 4aa59f550a95803e876001e9f416af207d7936a8
      https://github.com/llvm/llvm-project/commit/4aa59f550a95803e876001e9f416af207d7936a8
  Author: Orlando Cazalet-Hyams <orlando.hyams at sony.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M cross-project-tests/lit.cfg.py

  Log Message:
  -----------
  Revert "[Dexter] llvm-lit: always log DAP messages" (#157679)

Reverts llvm/llvm-project#157145

This was just temporary to help debug a flaky bot


  Commit: 89d86b626cb29fbd7b476ea6f082256691444ad5
      https://github.com/llvm/llvm-project/commit/89d86b626cb29fbd7b476ea6f082256691444ad5
  Author: Jessica Del <50999226+OutOfCache at users.noreply.github.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Utils/SimplifyCFG.cpp
    A llvm/test/Transforms/SimplifyCFG/switch-transformations-no-lut.ll

  Log Message:
  -----------
  SimplifyCFG: Enable switch replacements in more cases (#156477)

In some cases, we can replace a switch with simpler instructions or a
lookup table.
For instance, if every case results in the same value, we can simply
replace the switch
with that single value.

However, lookup tables are not always supported. 
Targets, function attributes and compiler options can deactivate lookup
table creation.
Currently, even simpler switch replacements like the single value
optimization do not
get applied, because we only enable these transformations if lookup
tables are enabled.

This PR enables the other kinds of replacements, even if lookup tables
are not supported.
First, it checks if the potential replacements are lookup tables.
If they are, then check if lookup tables are supported and whether to
continue.
If they are not, then we can apply the other transformations.

Originally, lookup table creation was delayed until late stages of the
compilation pipeline, because
it can result in difficult-to-analyze code and prevent other
optimizations.
As a side effect of this change, we can also enable the simpler
optimizations much earlier in the
compilation process.


  Commit: 2ad7a1d952493e42aa9dbcf54f7d6acb699663bf
      https://github.com/llvm/llvm-project/commit/2ad7a1d952493e42aa9dbcf54f7d6acb699663bf
  Author: Nikolas Klauser <nikolasklauser at berlin.de>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libcxx/include/__hash_table
    M libcxx/include/ext/hash_map
    M libcxx/include/unordered_map

  Log Message:
  -----------
  [libc++] Remove some of the type aliases in __hash_table (#157114)


  Commit: 12900774e6b30f03cba082ee6e2b4103d20f54e7
      https://github.com/llvm/llvm-project/commit/12900774e6b30f03cba082ee6e2b4103d20f54e7
  Author: Brox Chen <guochen2 at amd.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIInstructions.td
    M llvm/test/CodeGen/AMDGPU/bf16.ll
    M llvm/test/CodeGen/AMDGPU/chain-hi-to-lo.ll
    M llvm/test/CodeGen/AMDGPU/fcopysign.bf16.ll
    M llvm/test/CodeGen/AMDGPU/fcopysign.f16.ll
    M llvm/test/CodeGen/AMDGPU/fcopysign.f32.ll
    M llvm/test/CodeGen/AMDGPU/fcopysign.f64.ll
    A llvm/test/CodeGen/AMDGPU/fcopysign.gfx11plus.ll
    M llvm/test/CodeGen/AMDGPU/flat-offset-bug.ll
    M llvm/test/CodeGen/AMDGPU/flat-scratch-i8-i16.ll
    M llvm/test/CodeGen/AMDGPU/fneg-modifier-casting.ll
    M llvm/test/CodeGen/AMDGPU/frem.ll
    M llvm/test/CodeGen/AMDGPU/global-saddr-load.ll
    M llvm/test/CodeGen/AMDGPU/i1-to-bf16.ll
    M llvm/test/CodeGen/AMDGPU/llvm.round.ll
    M llvm/test/CodeGen/AMDGPU/lround.ll
    A llvm/test/CodeGen/AMDGPU/scalar_to_vector.gfx11plus.ll
    M llvm/test/CodeGen/AMDGPU/store-weird-sizes.ll

  Log Message:
  -----------
  [AMDGPU][True16][CodeGen] update isel pattern with vgpr16 for 16 bit types (#154875)

Update isel pattern with 16bit types to use vgp16 in true16 mode. This
stop isel from generating illegal `vgpr32 = copy vpgr16`

This includes fcopysign, scalar_to_vector and i1 trunc. Updated lit test
and added a few mir tests.

Stacking up these changes in one patch as I realized that doing these
seperately could lead to unexpected failures in between.


  Commit: d367c7d01620f723981652f72256df7c953d871d
      https://github.com/llvm/llvm-project/commit/d367c7d01620f723981652f72256df7c953d871d
  Author: Felipe de Azevedo Piovezan <fpiovezan at apple.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/include/lldb/Expression/IRMemoryMap.h
    M lldb/source/Expression/IRMemoryMap.cpp

  Log Message:
  -----------
  [lldb][nfc] Rename WritePointerToMemory argument's name (#157566)

One of those arguments should be called `pointer` to correlate it to the
name of the function and to distinguish it from the address where it
will be written.


  Commit: 144c93b3bdba6cd59bb550064b538488d159d1c5
      https://github.com/llvm/llvm-project/commit/144c93b3bdba6cd59bb550064b538488d159d1c5
  Author: Chuanqi Xu <yedeng.yd at linux.alibaba.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Sema/SemaDecl.cpp
    A clang/test/Modules/added-visible-decls.cppm

  Log Message:
  -----------
  [C++20] [Modules] Don't diagnose redeclaration of implicit instantiations in different modules

See the attached example for motivation. Although it is not sure how
should we treat the modules ownership of the implicit instantiations,
it makes no sense to diagnose redeclaration of implicit instantiations
in different modules.


  Commit: 723fcd54b3a056105ba384ecebb326f037bb70e1
      https://github.com/llvm/llvm-project/commit/723fcd54b3a056105ba384ecebb326f037bb70e1
  Author: Balazs Benics <benicsbalazs at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Analysis/LiveVariables.cpp

  Log Message:
  -----------
  [analyzer][NFC] Modernize loops in LiveVariables analysis (#157670)


  Commit: 97820be5e8d5088daaecc83b3541bce8d79d8cbc
      https://github.com/llvm/llvm-project/commit/97820be5e8d5088daaecc83b3541bce8d79d8cbc
  Author: Orlando Cazalet-Hyams <orlando.hyams at sony.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/LLDB.py

  Log Message:
  -----------
  [Dexter] Make lldb-dap _post_step_hook more stable  (#157663)

Buildbot cross-project-tests-sie-ubuntu has been unstable recently
(https://lab.llvm.org/buildbot/#/builders/181).

Dexter uses lldb-dap in these tests. Occasionally a one will fail with a
KeyError because of a missing "stackFrames" "source" "path".

I can't reproduce the failure locally, but with PRs #157130 and
#157145 I've got DAP logs from a pass and fail.

In a failure, "path" is missing for a step out of main (off the final brace),
and the passing test has one additional "module" event for libc.so.6.

```
<- {
  "body": {
    "module": {
      "addressRange": "0x7ffff7dd1000",
      "debugInfoSize": "4.9MB",
      "id": "5792732F-7831-58C6-6FB4-F3756458CA24-E46E827D",
      "name": "libc.so.6",
      "path": "/lib/x86_64-linux-gnu/libc.so.6",
      "symbolFilePath": "/usr/lib/debug/.build-id/57/92732f783158c66fb4f3756458ca24e46e827d.debug",
      "symbolStatus": "Symbols loaded."
    },
    "reason": "new"
  },
  "event": "module",
  "seq": 0,
  "type": "event"
}
```

That explains why we get a step that is missing a "path" component in the
failure. I don't understand why LLDB (or LLDB-DAP) is sometimes unable to load
the module (in time?). But "path" is an optional field anyway, so I think it's
worth handling in dexter even if LLDB's behaviour here is confusing.

This commit should stabilize the bot if the only time a module goes missing is
for steps outside main. (Ideally none would go missing, but those shouldn't
interfere with the tests).


  Commit: 4294907022e3b2022698a929c2c39e001bdd09e5
      https://github.com/llvm/llvm-project/commit/4294907022e3b2022698a929c2c39e001bdd09e5
  Author: Joseph Huber <huberjn at outlook.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M offload/cmake/caches/AMDGPULibcBot.cmake

  Log Message:
  -----------
  [Offload] Build libcxx on the GPU libc bot (#157673)


  Commit: 8f16af3c204e4f4646cb156ddcb1d658b378a114
      https://github.com/llvm/llvm-project/commit/8f16af3c204e4f4646cb156ddcb1d658b378a114
  Author: agozillon <Andrew.Gozillon at amd.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M flang/lib/Optimizer/CodeGen/CodeGenOpenMP.cpp
    A flang/test/Fir/OpenMP/bounds-generation-for-char-arrays.f90
    A offload/test/offloading/fortran/dtype-char-array-map-2.f90
    A offload/test/offloading/fortran/dtype-char-array-map.f90

  Log Message:
  -----------
  [Flang][OpenMP] Fix mapping of character type with LEN > 1 specified (#154172)

Currently, there's a number of issues with mapping characters with LEN's
specified (strings effectively). They're represented as a char type in
FIR with a len parameter, and then later on they're expanded into an
array of characters when we're translating to the LLVM dialect. However,
we don't generate a bounds for these at lowering. The fix in this PR for
this is to generate a bounds from the LEN parameter and attatch it to
the map on lowering from FIR to the LLVM dialect when we encounter this
type.


  Commit: 2bdcfc7ab86b5cc8b95474e9571c9477f5df4451
      https://github.com/llvm/llvm-project/commit/2bdcfc7ab86b5cc8b95474e9571c9477f5df4451
  Author: Finn Plummer <mail at inbelic.dev>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/docs/CommandGuide/llvm-objcopy.rst
    M llvm/include/llvm/ObjCopy/CommonConfig.h
    M llvm/include/llvm/ObjCopy/ConfigManager.h
    M llvm/lib/ObjCopy/ConfigManager.cpp
    M llvm/lib/ObjCopy/DXContainer/DXContainerObjcopy.cpp
    A llvm/test/tools/llvm-objcopy/DXContainer/extract-section-basic.test
    A llvm/test/tools/llvm-objcopy/DXContainer/extract-section-errs.test
    A llvm/test/tools/llvm-objcopy/DXContainer/extract-section-headers.test
    M llvm/tools/llvm-objcopy/CommonOpts.td
    M llvm/tools/llvm-objcopy/ObjcopyOptions.cpp

  Log Message:
  -----------
  [DirectX] Add `extract-section` to `llvm-objcopy` and implement it for `DXContainer` (#154804)

This pr adds the `extract-section` option to `llvm-objcopy` as a common
option. It differs from `dump-section` as it will produce a standalone
object with just one section, as opposed to just the section contents.

For more context as to other options considered, see
https://github.com/llvm/llvm-project/pull/153265#issuecomment-3195696003.

This difference in behaviour is used for DXC compatibility with
`extract-rootsignature` and `/Frs`.

This pr then implements this functionality for `DXContainer` objects.

This is the second step of
https://github.com/llvm/llvm-project/issues/150277 to implement as a
compiler action that invokes `llvm-objcopy` for functionality.

This also completes the implementation of `extract-rootsignature` as
described in https://github.com/llvm/llvm-project/issues/149560.


  Commit: f587e001b1d80e69c8dea24112e0daddcfbfa9b0
      https://github.com/llvm/llvm-project/commit/f587e001b1d80e69c8dea24112e0daddcfbfa9b0
  Author: Steven Perron <stevenperron at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/CodeGen/CGHLSLRuntime.cpp
    M clang/test/CodeGenHLSL/resources/res-array-local-multi-dim.hlsl

  Log Message:
  -----------
  [HLSL] Fix OpaqueValueExpr handling in InitListExpr (#156750)

The OpaqueValueVisitor was not correctly traversing the AST to find all
OpaqueValueExprs. This resulted in some expressions not being correctly
initialized. This change fixes the visitor to correctly traverse the
AST.

Fixes https://github.com/llvm/llvm-project/issues/156786


  Commit: 31bee3421ba48898b0c7c8f3710f9d1bac22cad7
      https://github.com/llvm/llvm-project/commit/31bee3421ba48898b0c7c8f3710f9d1bac22cad7
  Author: Nikita Popov <npopov at redhat.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    R llvm/include/llvm/Support/LSP/Logging.h
    R llvm/include/llvm/Support/LSP/Protocol.h
    R llvm/include/llvm/Support/LSP/Transport.h
    M llvm/lib/Support/CMakeLists.txt
    R llvm/lib/Support/LSP/CMakeLists.txt
    R llvm/lib/Support/LSP/Logging.cpp
    R llvm/lib/Support/LSP/Protocol.cpp
    R llvm/lib/Support/LSP/Transport.cpp
    M llvm/unittests/Support/CMakeLists.txt
    R llvm/unittests/Support/LSP/CMakeLists.txt
    R llvm/unittests/Support/LSP/Protocol.cpp
    R llvm/unittests/Support/LSP/Transport.cpp
    A mlir/include/mlir/Tools/lsp-server-support/Logging.h
    A mlir/include/mlir/Tools/lsp-server-support/Protocol.h
    M mlir/include/mlir/Tools/lsp-server-support/SourceMgrUtils.h
    A mlir/include/mlir/Tools/lsp-server-support/Transport.h
    M mlir/include/mlir/Tools/mlir-lsp-server/MlirLspRegistryFunction.h
    M mlir/lib/Tools/lsp-server-support/CMakeLists.txt
    M mlir/lib/Tools/lsp-server-support/CompilationDatabase.cpp
    A mlir/lib/Tools/lsp-server-support/Logging.cpp
    A mlir/lib/Tools/lsp-server-support/Protocol.cpp
    M mlir/lib/Tools/lsp-server-support/SourceMgrUtils.cpp
    A mlir/lib/Tools/lsp-server-support/Transport.cpp
    M mlir/lib/Tools/mlir-lsp-server/CMakeLists.txt
    M mlir/lib/Tools/mlir-lsp-server/LSPServer.cpp
    M mlir/lib/Tools/mlir-lsp-server/LSPServer.h
    M mlir/lib/Tools/mlir-lsp-server/MLIRServer.cpp
    M mlir/lib/Tools/mlir-lsp-server/MLIRServer.h
    M mlir/lib/Tools/mlir-lsp-server/MlirLspServerMain.cpp
    M mlir/lib/Tools/mlir-lsp-server/Protocol.cpp
    M mlir/lib/Tools/mlir-lsp-server/Protocol.h
    M mlir/lib/Tools/mlir-pdll-lsp-server/CMakeLists.txt
    M mlir/lib/Tools/mlir-pdll-lsp-server/LSPServer.cpp
    M mlir/lib/Tools/mlir-pdll-lsp-server/LSPServer.h
    M mlir/lib/Tools/mlir-pdll-lsp-server/MlirPdllLspServerMain.cpp
    M mlir/lib/Tools/mlir-pdll-lsp-server/PDLLServer.cpp
    M mlir/lib/Tools/mlir-pdll-lsp-server/PDLLServer.h
    M mlir/lib/Tools/mlir-pdll-lsp-server/Protocol.cpp
    M mlir/lib/Tools/mlir-pdll-lsp-server/Protocol.h
    M mlir/lib/Tools/tblgen-lsp-server/CMakeLists.txt
    M mlir/lib/Tools/tblgen-lsp-server/LSPServer.cpp
    M mlir/lib/Tools/tblgen-lsp-server/LSPServer.h
    M mlir/lib/Tools/tblgen-lsp-server/TableGenLspServerMain.cpp
    M mlir/lib/Tools/tblgen-lsp-server/TableGenServer.cpp
    M mlir/lib/Tools/tblgen-lsp-server/TableGenServer.h
    M mlir/tools/mlir-lsp-server/mlir-lsp-server.cpp
    M mlir/unittests/CMakeLists.txt
    A mlir/unittests/Tools/CMakeLists.txt
    A mlir/unittests/Tools/lsp-server-support/CMakeLists.txt
    A mlir/unittests/Tools/lsp-server-support/Protocol.cpp
    A mlir/unittests/Tools/lsp-server-support/Transport.cpp

  Log Message:
  -----------
  Revert "[LLVM][MLIR] Move LSP server support library from MLIR into LLVM (#155572)"

This reverts commit c0aee322f7024250fd4a2c49f56534011178d07c.
This reverts commit a0b8d548fd250c92c8f9274b57e38ad3f0b215e9.

Fails to link with MLIR dylib build.


  Commit: e91f3674198707531a6d97632a6bd8e446c67633
      https://github.com/llvm/llvm-project/commit/e91f3674198707531a6d97632a6bd8e446c67633
  Author: Jesse Huang <jesse.huang at sifive.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Basic/Targets/RISCV.h
    M clang/test/CodeGen/RISCV/attr-hw-shadow-stack.c

  Log Message:
  -----------
  [Clang][RISCV] Loosen the requirement of -fcf-protection=return to zimop (#152252)

Following https://github.com/llvm/llvm-project/pull/152251
We can now loosen the requirement of `-fcf-protection=return` from
Zicfiss to Zimop


  Commit: 6ef4a7bf16d2e1f960237a635ef114dd6fc07b16
      https://github.com/llvm/llvm-project/commit/6ef4a7bf16d2e1f960237a635ef114dd6fc07b16
  Author: Jesse Huang <jesse.huang at sifive.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
    M llvm/lib/Target/RISCV/RISCVInstrPredicates.td
    A llvm/test/CodeGen/RISCV/machine-outliner-lpad.ll

  Log Message:
  -----------
  [RISCV] Exclude LPAD in machine outliner (#157220)

After https://github.com/llvm/llvm-project/pull/139993, the
RISCVIndirectBranchTracking pass is also ran before the Machine Outliner
pass, this yield a possibility that the outliner could also outline the
LPAD instruction that should be placed at the target of an indirect
branch. This patch excludes LPAD instruction from the candidate of
machine outliner.


  Commit: 1cbb35e044e2902b049499116c93f98f9a30955e
      https://github.com/llvm/llvm-project/commit/1cbb35e044e2902b049499116c93f98f9a30955e
  Author: Nikita Popov <npopov at redhat.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Analysis/Loads.h
    M llvm/lib/Analysis/Loads.cpp
    M llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
    M llvm/lib/Transforms/InstCombine/InstCombineInternal.h
    M llvm/test/Transforms/InstCombine/load-cmp.ll

  Log Message:
  -----------
  [InstCombine] Support GEP chains in foldCmpLoadFromIndexedGlobal() (#157447)

Currently this fold only supports a single GEP. However, in ptradd
representation, it may be split across multiple GEPs. In particular, PR
#151333 will split off constant offset GEPs.

To support this, add a new helper decomposeLinearExpression(), which
decomposes a pointer into a linear expression of the form BasePtr +
Index * Scale + Offset.

I plan to also extend this helper to look through mul/shl on the index
and use it in more places that currently use collectOffset() to extract
a single index * scale. This will make sure such optimizations are not
affected by the ptradd migration.


  Commit: f9e5d39c4c86bffe6721bfbba887fd1f40805b15
      https://github.com/llvm/llvm-project/commit/f9e5d39c4c86bffe6721bfbba887fd1f40805b15
  Author: Wendi <uwendi at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/docs/QualGroup.rst
    A llvm/docs/qual-wg/slides/202508_llvm_qual_wg.pdf
    A llvm/docs/qual-wg/slides/202509_llvm_qual_wg.pdf

  Log Message:
  -----------
  [QualGroup] Add August and September 2025 slides and unify Meeting Materials (#156897)

This patch updates the Qualification WG documentation to:

- Add PDF slide decks for the August and September 2025 sync-up meetings
- Merge the "Meeting Minutes" and "Presentation Slides" sections into a
unified "Meeting Materials" section
- Clarify that agendas and minutes are all published in the Discourse
thread
- Temporarily link to slide files in `llvm/docs/qual-wg/slides/`
- Mention that a future patch will migrate these slide files to the
`llvm-www` repository, once a suitable hosting location is confirmed
with the community (e.g. per discussion with @nikic in
https://github.com/llvm/llvm-project/pull/147196).

---------

Co-authored-by: Wendi Urribarri (Woven by Toyota <wendi.urribarri at woven-planet.global>


  Commit: a6af641b89d6fbfdaaa74406a3d1354d24c58393
      https://github.com/llvm/llvm-project/commit/a6af641b89d6fbfdaaa74406a3d1354d24c58393
  Author: Louis Dionne <ldionne.2 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libcxx/docs/TestingLibcxx.rst
    A libcxx/utils/compare-benchmarks
    A libcxx/utils/consolidate-benchmarks
    R libcxx/utils/libcxx-benchmark-json
    R libcxx/utils/libcxx-compare-benchmarks
    A libcxx/utils/requirements.txt

  Log Message:
  -----------
  [libc++] Update utilities to compare benchmarks (#157556)

This patch replaces the previous `libcxx-compare-benchmarks` wrapper by
a new `compare-benchmarks` script which works with LNT-compatible data.
This allows comparing benchmark results across libc++ microbenchmarks,
SPEC, and anything else that would produce LNT-compatible data.

It also adds a simple script to consolidate LNT benchmark output into a
single file, simplifying the process of doing A/B runs locally. The
simplest way to do this doesn't require creating two build directories
after this patch anymore.

It also adds the ability to produce either a standalone HTML chart or a
plain text output for diffing results locally when prototyping changes.
Example text output of the new tool:

```
Benchmark                              Baseline    Candidate    Difference    % Difference
-----------------------------------  ----------  -----------  ------------  --------------
BM_join_view_deques/0                      8.11         8.16          0.05            0.63
BM_join_view_deques/1                     13.56        13.79          0.23            1.69
BM_join_view_deques/1024                6606.51      7011.34        404.83            6.13
BM_join_view_deques/2                     17.99        19.92          1.93           10.72
BM_join_view_deques/4000               27655.58     29864.72       2209.14            7.99
BM_join_view_deques/4096               26218.07     30520.13       4302.05           16.41
BM_join_view_deques/512                 3231.66      2832.47       -399.19          -12.35
BM_join_view_deques/5500               47144.82     42207.41      -4937.42          -10.47
BM_join_view_deques/64                   247.23       262.66         15.43            6.24
BM_join_view_deques/64000             756221.63    511247.48    -244974.15          -32.39
BM_join_view_deques/65536             537110.91    560241.61      23130.70            4.31
BM_join_view_deques/70000             815739.07    616181.34    -199557.73          -24.46
BM_join_view_out_vectors/0                 0.93         0.93          0.00            0.07
BM_join_view_out_vectors/1                 3.11         3.14          0.03            0.82
BM_join_view_out_vectors/1024           3090.92      3563.29        472.37           15.28
BM_join_view_out_vectors/2                 5.52         5.56          0.04            0.64
BM_join_view_out_vectors/4000           9887.21      9774.40       -112.82           -1.14
BM_join_view_out_vectors/4096          10158.78     10190.44         31.66            0.31
BM_join_view_out_vectors/512            1218.68      1209.59         -9.09           -0.75
BM_join_view_out_vectors/5500          13559.23     13676.06        116.84            0.86
BM_join_view_out_vectors/64              158.95       157.91         -1.04           -0.65
BM_join_view_out_vectors/64000        178514.73    226520.97      48006.24           26.89
BM_join_view_out_vectors/65536        184639.37    207180.35      22540.98           12.21
BM_join_view_out_vectors/70000        235006.69    213886.93     -21119.77           -8.99
```


  Commit: 9c858f568062e44dd5ac8ad5280fae4eb75ce69d
      https://github.com/llvm/llvm-project/commit/9c858f568062e44dd5ac8ad5280fae4eb75ce69d
  Author: Joe Nash <joseph.nash at amd.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIInstrInfo.td
    M llvm/lib/Target/AMDGPU/SIRegisterInfo.td
    M llvm/lib/Target/AMDGPU/VOP2Instructions.td
    M llvm/lib/Target/AMDGPU/VOP3PInstructions.td
    M llvm/lib/Target/AMDGPU/VOPCInstructions.td
    M llvm/lib/Target/AMDGPU/VOPDInstructions.td

  Log Message:
  -----------
  [AMDGPU] Combine VGPRSrc and VGPROp definitions into VGPROp (#157516)

These can be represented by the same definition. It is just a
RegisterOperand wrapper for a VGPR register class with a DecoderMethod
override.
NFC.


  Commit: 406d6bd153a69a132f24363702cd116d0edcdb50
      https://github.com/llvm/llvm-project/commit/406d6bd153a69a132f24363702cd116d0edcdb50
  Author: nerix <nerixdev at outlook.de>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
    M lldb/test/Shell/SymbolFile/PDB/variables.test

  Log Message:
  -----------
  [LLDB][NativePDB] Mark blocks as parsed after parsing (#157493)

After parsing blocks in a function, the blocks should be marked as
parsed for them to be dumped (see
[Function::Dump](https://github.com/llvm/llvm-project/blob/e6aefbec782dbb57f72eb0ae399ed944fe49db2e/lldb/source/Symbol/Function.cpp#L446-L447)).
As explained in
https://github.com/llvm/llvm-project/issues/114906#issuecomment-3255016266,
this happens (accidentally?) in the DIA plugin when parsing variables,
because it calls `function.GetBlock(can_create=true)` which marks blocks
as parsed. In the native plugin, this was never called, so blocks and
variables were never included in the `lldb-test symbols` output.

The `variables.test` for the DIA plugin tests this. One difference
between the plugins is how they specify the location of local variables.
This causes the output of the native plugin to be two lines per
variable, whereas the DIA plugin has one line:
```
(native):
000002C4B7593020:       Variable{0x1c800001}, name = "var_arg1", type = {0000000000000744} 0x000002C4B6CA7900 (int), scope = parameter, location = 0x00000000:
        [0x000000014000102c, 0x000000014000103e): DW_OP_breg7 RSP+8
```
```
(DIA):
000002778C827EE0:       Variable{0x0000001b}, name = "var_arg1", type = {0000000000000005} 0x000002778C1FBAB0 (int), scope = parameter, decl = VariablesTest.cpp:32, location = DW_OP_breg7 RSP+8
```
In the test, I filtered lines starting with spaces followed by `[0x`, so
we can still use `CHECK-NEXT`.

---

Another difference between the plugins is that DIA marks the `this`
pointer as artificial (equivalent to DWARF). This is done if a
variable's object kind is `ObjectPtr`
([source](https://github.com/llvm/llvm-project/blob/ab898f32c60689d1d47d0b6de66c30d3476994bb/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp#L1050)).
As far as I know, there isn't anything in the debug info that says "this
variable is the `this` pointer" other than the name/type of a variable
and the type of the function.


  Commit: 7123463ef98bd478ff068dc94bfeee1b13c551c3
      https://github.com/llvm/llvm-project/commit/7123463ef98bd478ff068dc94bfeee1b13c551c3
  Author: Twice <twice at apache.org>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M mlir/lib/Bindings/Python/Pass.cpp
    M mlir/test/python/python_pass.py

  Log Message:
  -----------
  [MLIR][Python] Add the ability to signal pass failures in python-defined passes (#157613)

This is a follow-up PR for #156000.

In this PR we add the ability to signal pass failures
(`signal_pass_failure()`) in python-defined passes.

To achieve this, we expose `MlirExternalPass` via `nb::class_` with a
method `signal_pass_failure()`, and the callable passed to `pm.add(..)`
now accepts two arguments (`op: MlirOperation, pass_:
MlirExternalPass`).

For example:
```python
def custom_pass_that_fails(op, pass_):
    if some_condition:
        pass_.signal_pass_failure()
    # do something
```


  Commit: 807ee5d1e0ce5b611ac9ab5841d2f25ca6d0a872
      https://github.com/llvm/llvm-project/commit/807ee5d1e0ce5b611ac9ab5841d2f25ca6d0a872
  Author: Alexey Samsonov <vonosmas at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libc/test/src/math/smoke/CMakeLists.txt
    M libc/test/src/math/smoke/FModTest.h
    M libc/test/src/math/smoke/RoundToIntegerTest.h
    M libc/test/src/math/smoke/atan2f_test.cpp
    M libc/test/src/math/smoke/atanf16_test.cpp
    M libc/test/src/math/smoke/atanf_test.cpp
    M libc/test/src/math/smoke/atanhf16_test.cpp
    M libc/test/src/math/smoke/atanhf_test.cpp
    M libc/test/src/math/smoke/atanpif16_test.cpp
    M libc/test/src/math/smoke/cosf16_test.cpp
    M libc/test/src/math/smoke/cosf_test.cpp
    M libc/test/src/math/smoke/coshf16_test.cpp
    M libc/test/src/math/smoke/coshf_test.cpp
    M libc/test/src/math/smoke/cospif16_test.cpp
    M libc/test/src/math/smoke/cospif_test.cpp
    M libc/test/src/math/smoke/exp10_test.cpp
    M libc/test/src/math/smoke/exp10f16_test.cpp
    M libc/test/src/math/smoke/exp10f_test.cpp
    M libc/test/src/math/smoke/exp10m1f16_test.cpp
    M libc/test/src/math/smoke/exp10m1f_test.cpp
    M libc/test/src/math/smoke/exp2_test.cpp
    M libc/test/src/math/smoke/exp2f16_test.cpp
    M libc/test/src/math/smoke/exp2f_test.cpp
    M libc/test/src/math/smoke/exp2m1f16_test.cpp
    M libc/test/src/math/smoke/exp2m1f_test.cpp
    M libc/test/src/math/smoke/exp_test.cpp
    M libc/test/src/math/smoke/expf16_test.cpp
    M libc/test/src/math/smoke/expf_test.cpp
    M libc/test/src/math/smoke/expm1_test.cpp
    M libc/test/src/math/smoke/expm1f16_test.cpp
    M libc/test/src/math/smoke/expm1f_test.cpp
    M libc/test/src/math/smoke/log10_test.cpp
    M libc/test/src/math/smoke/log10f16_test.cpp
    M libc/test/src/math/smoke/log10f_test.cpp
    M libc/test/src/math/smoke/log1p_test.cpp
    M libc/test/src/math/smoke/log1pf_test.cpp
    M libc/test/src/math/smoke/log2_test.cpp
    M libc/test/src/math/smoke/log2f16_test.cpp
    M libc/test/src/math/smoke/log2f_test.cpp
    M libc/test/src/math/smoke/log_test.cpp
    M libc/test/src/math/smoke/logf16_test.cpp
    M libc/test/src/math/smoke/logf_test.cpp
    M libc/test/src/math/smoke/sincos_test.cpp
    M libc/test/src/math/smoke/sincosf_test.cpp
    M libc/test/src/math/smoke/sinf16_test.cpp
    M libc/test/src/math/smoke/sinf_test.cpp
    M libc/test/src/math/smoke/sinhf16_test.cpp
    M libc/test/src/math/smoke/sinhf_test.cpp
    M libc/test/src/math/smoke/sinpif16_test.cpp
    M libc/test/src/math/smoke/sinpif_test.cpp
    M libc/test/src/math/smoke/tanf16_test.cpp
    M libc/test/src/math/smoke/tanf_test.cpp
    M libc/test/src/math/smoke/tanhf16_test.cpp
    M libc/test/src/math/smoke/tanhf_test.cpp
    M libc/test/src/math/smoke/tanpif16_test.cpp
    M libc/test/src/math/smoke/tanpif_test.cpp

  Log Message:
  -----------
  [libc] Clean up errno header usage in all remaining math/smoke tests. (#157565)

This is a follow-up to #157517, which fixes the remaining math/smoke
tests, and changes them to only include `hdr/errno_macros.h`, as the
tests just need the errno values to pass into `EXPECT_MATH_ERRO` macro.
A couple non-mechanical changes include:

* slightly better test coverage for some exp/log tests -- that actually
validates that errno is set to `EDOM` or `ERANGE` for certain inputs;
* explicit inclusion of `src/__support/libc_errno.h` in
RoundToIntegerTest template, which still needs to be fixed.

With this change there's a single libc_errno usage left:
```
$ grep -lrnH "libc_errno.h" test/src/math/smoke
test/src/math/smoke/RoundToIntegerTest.h
```


  Commit: 81a4fcbf4fd52ea8e593b7b6a5817bf4e1599934
      https://github.com/llvm/llvm-project/commit/81a4fcbf4fd52ea8e593b7b6a5817bf4e1599934
  Author: Brox Chen <guochen2 at amd.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/CodeGen/AMDGPU/fcopysign.gfx11plus.ll
    M llvm/test/CodeGen/AMDGPU/scalar_to_vector.gfx11plus.ll

  Log Message:
  -----------
  [AMDGPU][True16][CodeGen] Fixed two lit tests (#157684)

https://github.com/llvm/llvm-project/pull/154875 failed two lit tests


  Commit: ad491118df1304c7d6bcce5b2207895f57204c16
      https://github.com/llvm/llvm-project/commit/ad491118df1304c7d6bcce5b2207895f57204c16
  Author: Finn Plummer <mail at inbelic.dev>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/Attr.td
    M clang/include/clang/Basic/DiagnosticSemaKinds.td
    M clang/include/clang/Driver/Options.td
    M clang/include/clang/Parse/ParseHLSLRootSignature.h
    M clang/include/clang/Sema/SemaHLSL.h
    M clang/lib/CodeGen/CGHLSLRuntime.cpp
    M clang/lib/CodeGen/CGHLSLRuntime.h
    M clang/lib/CodeGen/CodeGenModule.cpp
    M clang/lib/Driver/ToolChains/HLSL.cpp
    M clang/lib/Frontend/FrontendActions.cpp
    M clang/lib/Parse/ParseHLSLRootSignature.cpp
    M clang/lib/Sema/SemaHLSL.cpp
    A clang/test/AST/HLSL/RootSignature-Target-AST.hlsl
    A clang/test/CodeGenHLSL/RootSignature-Target.hlsl
    A clang/test/Driver/dxc_rootsignature_target.hlsl
    A clang/test/SemaHLSL/RootSignature-target-err.hlsl
    M llvm/include/llvm/BinaryFormat/DXContainer.h
    M llvm/include/llvm/TargetParser/Triple.h
    M llvm/lib/Target/DirectX/DXContainerGlobals.cpp
    M llvm/lib/Target/DirectX/DXILRootSignature.cpp
    M llvm/lib/Target/DirectX/DXILTranslateMetadata.cpp
    M llvm/lib/TargetParser/Triple.cpp
    A llvm/test/CodeGen/DirectX/ContainerData/RootSignature-Target.ll
    M llvm/unittests/TargetParser/TripleTest.cpp

  Log Message:
  -----------
  [HLSL][DirectX] Add support for `rootsig` as a target environment (#156373)

This pr implements support for a root signature as a target, as specified
[here](https://github.com/llvm/wg-hlsl/blob/main/proposals/0029-root-signature-driver-options.md#target-root-signature-version).

This is implemented in the following steps:
1. Add `rootsignature` as a shader model environment type and define
`rootsig` as a `target_profile`. Only valid as versions 1.0 and 1.1
2. Updates `HLSLFrontendAction` to invoke a special handling of
constructing the `ASTContext` if we are considering an `hlsl` file and
with a `rootsignature` target
3. Defines the special handling to minimally instantiate the `Parser`
and `Sema` to insert the `RootSignatureDecl`
4. Updates `CGHLSLRuntime` to emit the constructed root signature decl
as part of `dx.rootsignatures` with a `null` entry function
5. Updates `DXILRootSignature` to handle emitting a root signature
without an entry function
6. Updates `ToolChains/HLSL` to invoke `only-section=RTS0` to strip any
other generated information

Resolves: https://github.com/llvm/llvm-project/issues/150286.

##### Implementation Considerations
Ideally we could invoke this as part of `clang-dxc` without the need of
a source file. However, the initialization of the `Parser` and `Lexer`
becomes quite complicated to handle this.

Technically, we could avoid generating any of the extra information that
is removed in step 6. However, it seems better to re-use the logic in
`llvm-objcopy` without any need for additional custom logic in
`DXILRootSignature`.


  Commit: 65f9c0868f943064a690d9e4e2c6101feecdcab9
      https://github.com/llvm/llvm-project/commit/65f9c0868f943064a690d9e4e2c6101feecdcab9
  Author: Baranov Victor <bar.victor.2002 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang-tools-extra/clang-tidy/bugprone/BugproneTidyModule.cpp
    M clang-tools-extra/clang-tidy/bugprone/CMakeLists.txt
    A clang-tools-extra/clang-tidy/bugprone/UncheckedStringToNumberConversionCheck.cpp
    A clang-tools-extra/clang-tidy/bugprone/UncheckedStringToNumberConversionCheck.h
    M clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp
    M clang-tools-extra/clang-tidy/cert/CMakeLists.txt
    R clang-tools-extra/clang-tidy/cert/StrToNumCheck.cpp
    R clang-tools-extra/clang-tidy/cert/StrToNumCheck.h
    M clang-tools-extra/docs/ReleaseNotes.rst
    A clang-tools-extra/docs/clang-tidy/checks/bugprone/unchecked-string-to-number-conversion.rst
    M clang-tools-extra/docs/clang-tidy/checks/cert/err34-c.rst
    M clang-tools-extra/docs/clang-tidy/checks/list.rst
    A clang-tools-extra/test/clang-tidy/checkers/bugprone/unchecked-string-to-number-conversion.c
    A clang-tools-extra/test/clang-tidy/checkers/bugprone/unchecked-string-to-number-conversion.cpp
    R clang-tools-extra/test/clang-tidy/checkers/cert/err34-c.c
    R clang-tools-extra/test/clang-tidy/checkers/cert/err34-c.cpp

  Log Message:
  -----------
  [clang-tidy] Rename 'cert-err34-c' to 'bugprone-unchecked-string-to-number-conversion' (#157285)

Part of the work in https://github.com/llvm/llvm-project/issues/157287.

Closes https://github.com/llvm/llvm-project/issues/157302.


  Commit: 35d47fb9a5dbbff37aa267b77dcde543c99a8ea2
      https://github.com/llvm/llvm-project/commit/35d47fb9a5dbbff37aa267b77dcde543c99a8ea2
  Author: Jordan Rupprecht <rupprecht at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
    M utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel

  Log Message:
  -----------
  [bazel] Undo LSP changes after revert (#157691)

Reverted in 31bee3421ba48898b0c7c8f3710f9d1bac22cad7


  Commit: dbdac9f3abbce20136a2cf6008bcda3fd41d492d
      https://github.com/llvm/llvm-project/commit/dbdac9f3abbce20136a2cf6008bcda3fd41d492d
  Author: Nikita Popov <npopov at redhat.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/Transforms/LoopVectorize/consecutive-ptr-uniforms.ll

  Log Message:
  -----------
  [LoopVectorize] Generate test checks (NFC)


  Commit: 4e30d78395dabfd2466fa2fe429ba899e08d4284
      https://github.com/llvm/llvm-project/commit/4e30d78395dabfd2466fa2fe429ba899e08d4284
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVOptWInstrs.cpp
    M llvm/test/CodeGen/RISCV/bitextract-mac.ll
    M llvm/test/CodeGen/RISCV/ctlz-cttz-ctpop.ll
    M llvm/test/CodeGen/RISCV/rv64xtheadbb.ll

  Log Message:
  -----------
  [RISCV] Add TH_EXT(U) to hasAllNBitUsers in RISCVOptWInstrs. (#157544)


  Commit: 8774de859957335243696a53a1417ba48abaf770
      https://github.com/llvm/llvm-project/commit/8774de859957335243696a53a1417ba48abaf770
  Author: Ziyi Wang <144174031+zw3917 at users.noreply.github.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/include/lldb/Symbol/SymbolFile.h
    M lldb/include/lldb/Target/Statistics.h
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
    M lldb/source/Target/Statistics.cpp
    M lldb/test/API/commands/statistics/basic/TestStats.py
    A lldb/test/API/commands/statistics/basic/dwo_error_foo.cpp
    A lldb/test/API/commands/statistics/basic/dwo_error_main.cpp

  Log Message:
  -----------
  Reland"[lldb] Add count for errors of DWO files in statistics and combine DWO file count functions" (#156980)

This relands changes in https://github.com/llvm/llvm-project/pull/155023
for adding a count of dwo errors and combine all the dwo related stats
into one struct.

The previous PR was reverted in
https://github.com/llvm/llvm-project/pull/156777 as the newly added unit
test `test_dwo_id_mismatch_error_stats` sometimes fails due to
inappropriate use of `glob.glob`.
This change modified the tests created in the former PR to collect and
modify the dwo files by there names instead of using index after
`glob.glob`. This will avoid the possible failure in these tests if the
order of dwo files changes.

[Original PR:
https://github.com/llvm/llvm-project/pull/155023](https://github.com/llvm/llvm-project/pull/155023)

## Testing
Ran unit tests
```
$ ./bin/llvm-lit /data/users/ziyiww/llvm-project/lldb/test/API/commands/statistics/basic/TestStats.py
./bin/llvm-lit /data/users/ziyiww/llvm-project/lldb/test/API/commands/statistics/basic/TestStats.py -v
-- Testing: 1 tests, 1 workers --
PASS: lldb-api :: commands/statistics/basic/TestStats.py (1 of 1)

Testing Time: 388.52s

Total Discovered Tests: 1
  Passed: 1 (100.00%)

$ bin/lldb-dotest -p TestStats.py /data/users/ziyiww/llvm-project/lldb/test/API/commands/statistics/basic/
----------------------------------------------------------------------
Ran 27 tests in 386.302s

OK (skipped=3)
```


  Commit: 33316d503b168d43d115527a44f17bb4de42b2af
      https://github.com/llvm/llvm-project/commit/33316d503b168d43d115527a44f17bb4de42b2af
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/BuiltinsX86.td
    M clang/lib/AST/ByteCode/InterpBuiltin.cpp
    M clang/lib/AST/ExprConstant.cpp
    M clang/lib/Headers/avx512bwintrin.h
    M clang/lib/Headers/avx512fintrin.h
    M clang/lib/Headers/avx512vlbwintrin.h
    M clang/lib/Headers/avx512vlintrin.h
    M clang/test/CodeGen/X86/avx512bw-builtins.c
    M clang/test/CodeGen/X86/avx512f-builtins.c
    M clang/test/CodeGen/X86/avx512vl-builtins.c
    M clang/test/CodeGen/X86/avx512vlbw-builtins.c

  Log Message:
  -----------
  [X86] Allow remaining AVX512 per-element shift intrinsics to be used in constexpr (#157696)

Handle missing AVX512F epi64 and AVX512BW epi16 cases with existing code paths

Fixes #154287


  Commit: 53bcfe2a6ad4ea64837028caeab52c98f1ef3a43
      https://github.com/llvm/llvm-project/commit/53bcfe2a6ad4ea64837028caeab52c98f1ef3a43
  Author: Maksim Levental <maksim.levental at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M mlir/cmake/modules/AddMLIRPython.cmake

  Log Message:
  -----------
  [MLIR][Python] move generated type stubs to build directory (#157697)

This PR moves generated type stubs to build directory and also quiets
stdout output.


  Commit: 3b6bd496b726aca8c29e60f32de5d78013daaefc
      https://github.com/llvm/llvm-project/commit/3b6bd496b726aca8c29e60f32de5d78013daaefc
  Author: Sang Ik Lee <sang.ik.lee at intel.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M mlir/include/mlir/Conversion/XeVMToLLVM/XeVMToLLVM.h
    M mlir/lib/Conversion/XeVMToLLVM/XeVMToLLVM.cpp
    M mlir/lib/Target/LLVMIR/Dialect/XeVM/XeVMToLLVMIRTranslation.cpp
    M mlir/test/Conversion/XeVMToLLVM/xevm-to-llvm.mlir
    M mlir/test/Target/LLVMIR/xevm.mlir

  Log Message:
  -----------
  [MLIR][XeVM] Add lowering for llvm load store ops with XeVM cache control (#156768)

Add lowering support for LLVM load / store ops with XeVM cache control
attributes.


  Commit: bde4b537f4bdb556cb99669fc46430110a8b260e
      https://github.com/llvm/llvm-project/commit/bde4b537f4bdb556cb99669fc46430110a8b260e
  Author: Balazs Benics <benicsbalazs at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Analysis/LiveVariables.cpp

  Log Message:
  -----------
  [analyzer][NFC] Change LiveVariablesImpl::inAssignment from DenseMap to DenseSet (#157685)

The `inAssignment` variable is actually used as a set; let's declare it as a set.


  Commit: f069700928bbc671613a7c4a29b9f8b977cb40ba
      https://github.com/llvm/llvm-project/commit/f069700928bbc671613a7c4a29b9f8b977cb40ba
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
    M llvm/lib/Target/RISCV/RISCVISelDAGToDAG.h
    M llvm/test/CodeGen/RISCV/bfloat-mem.ll
    M llvm/test/CodeGen/RISCV/byval.ll
    M llvm/test/CodeGen/RISCV/callee-saved-fpr32s.ll
    M llvm/test/CodeGen/RISCV/callee-saved-fpr64s.ll
    M llvm/test/CodeGen/RISCV/callee-saved-gprs.ll
    M llvm/test/CodeGen/RISCV/double-mem.ll
    M llvm/test/CodeGen/RISCV/float-mem.ll
    M llvm/test/CodeGen/RISCV/fold-addi-loadstore.ll
    M llvm/test/CodeGen/RISCV/global-merge-minsize-smalldata-nonzero.ll
    M llvm/test/CodeGen/RISCV/global-merge-minsize-smalldata-zero.ll
    M llvm/test/CodeGen/RISCV/global-merge-minsize.ll
    M llvm/test/CodeGen/RISCV/global-merge-offset.ll
    M llvm/test/CodeGen/RISCV/global-merge.ll
    M llvm/test/CodeGen/RISCV/half-mem.ll
    M llvm/test/CodeGen/RISCV/hoist-global-addr-base.ll
    M llvm/test/CodeGen/RISCV/mem.ll
    M llvm/test/CodeGen/RISCV/mem64.ll
    M llvm/test/CodeGen/RISCV/push-pop-popret.ll
    M llvm/test/CodeGen/RISCV/qci-interrupt-attr-fpr.ll
    M llvm/test/CodeGen/RISCV/qci-interrupt-attr.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-store-merge-crash.ll
    M llvm/test/CodeGen/RISCV/saverestore.ll
    M llvm/test/CodeGen/RISCV/xqccmp-callee-saved-gprs.ll
    M llvm/test/CodeGen/RISCV/xqccmp-push-pop-popret.ll
    M llvm/test/CodeGen/RISCV/xqcilsm-memset.ll
    M llvm/test/CodeGen/RISCV/zdinx-boundary-check.ll
    M llvm/test/CodeGen/RISCV/zext-with-load-is-free.ll

  Log Message:
  -----------
  [RISCV] Prevent folding ADD_LO into load/store if we can't fold all uses. (#155935)

If we don't fold all uses, we end up with an LUI that is used by an ADDI
and some loads/stores. This requires the LUI to write a different
register than the ADDI or the load/stores uses have to be scheduled
between the LUI and ADDI. It prevents macrofusion of the LUI+ADDI on
CPUs that support it. It prevents the use of PseudoMovAddr which
prevents the LUI+ADDI from being rematerializable.

This is based on a patch we have had in our downstream for a while that
we originally wrote because of macrofusion and rematerialization. I no
longer have any relevant performance or code size numbers for it.

---------

Co-authored-by: Jesse Huang <jesse.huang at sifive.com>
Co-authored-by: Luke Lau <luke_lau at icloud.com>


  Commit: 8a682b7f063a431799f79becb53319af1e840701
      https://github.com/llvm/llvm-project/commit/8a682b7f063a431799f79becb53319af1e840701
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/BuiltinsX86.td
    M clang/lib/AST/ByteCode/InterpBuiltin.cpp
    M clang/lib/AST/ExprConstant.cpp
    M clang/test/CodeGen/X86/avx512vbmi2-builtins.c
    M clang/test/CodeGen/X86/avx512vlvbmi2-builtins.c

  Log Message:
  -----------
  [clang][bytecode][X86] Allow AVX512 funnel shift by scalar immediate intrinsics to be used in constexpr (#157681)

Extends interp__builtin_elementwise_triop to handle (vector, vector, scalar) trinary op intrinsics

Fixes #153152


  Commit: 746da28cee3e4baf90ef7829622e78d0a8714fd7
      https://github.com/llvm/llvm-project/commit/746da28cee3e4baf90ef7829622e78d0a8714fd7
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/llvm/unittests/Target/ARM/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 010f1ea3b3f4


  Commit: d334d6b7825ece448bc76350b818e1d234670045
      https://github.com/llvm/llvm-project/commit/d334d6b7825ece448bc76350b818e1d234670045
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 07d0225d419e


  Commit: 18fc83973fba132b83b2e2b493ca0ff9f0bc1eba
      https://github.com/llvm/llvm-project/commit/18fc83973fba132b83b2e2b493ca0ff9f0bc1eba
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/libcxx/include/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 1d131ffff830


  Commit: 81f759cd6977bd889c10d26262e186241a346900
      https://github.com/llvm/llvm-project/commit/81f759cd6977bd889c10d26262e186241a346900
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/llvm/unittests/Target/RISCV/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 20b4f59ccad5


  Commit: 414225d270112477af4fe711c2d937691d106ba5
      https://github.com/llvm/llvm-project/commit/414225d270112477af4fe711c2d937691d106ba5
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 3eb8a5a589cb


  Commit: 089c73ff5fcbd189910d06c3dc86c5b16a359758
      https://github.com/llvm/llvm-project/commit/089c73ff5fcbd189910d06c3dc86c5b16a359758
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/clang-tools-extra/clang-reorder-fields/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 4d9578b8ed20


  Commit: 109a7696e10050a7d5449a64a4539bf9a6345eca
      https://github.com/llvm/llvm-project/commit/109a7696e10050a7d5449a64a4539bf9a6345eca
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/clang/lib/Interpreter/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 645dd324d1b7


  Commit: 00f916f321a79b98359bf3072a3ab9ee5acfff1c
      https://github.com/llvm/llvm-project/commit/00f916f321a79b98359bf3072a3ab9ee5acfff1c
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/bugprone/BUILD.gn
    M llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/cert/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 65f9c0868f94


  Commit: aeb571a88859db1805d7f0f26b241667273cfc92
      https://github.com/llvm/llvm-project/commit/aeb571a88859db1805d7f0f26b241667273cfc92
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/libcxx/include/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 74b9484fd62d


  Commit: d41bc02f36574804e4c43a5b10978bfb9da28a8f
      https://github.com/llvm/llvm-project/commit/d41bc02f36574804e4c43a5b10978bfb9da28a8f
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/libcxx/include/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 8a65c4f11a4c


  Commit: 5ef2f6268684e2dbb8324545762f3e06b3a04c10
      https://github.com/llvm/llvm-project/commit/5ef2f6268684e2dbb8324545762f3e06b3a04c10
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Checkers/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 90865906dd2d


  Commit: 97c9878827929f38730acf4a5a68165eb9297b64
      https://github.com/llvm/llvm-project/commit/97c9878827929f38730acf4a5a68165eb9297b64
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/llvm/BUILD.gn

  Log Message:
  -----------
  [gn build] Port d27fae73b17c


  Commit: 0b9a79bb9a8e45d1d2f9ac5f8de68e99c24dfc3b
      https://github.com/llvm/llvm-project/commit/0b9a79bb9a8e45d1d2f9ac5f8de68e99c24dfc3b
  Author: lntue <lntue at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libc/src/__support/CMakeLists.txt
    M libc/src/__support/CPP/CMakeLists.txt
    M libc/src/__support/CPP/type_traits/is_complex.h
    M libc/src/__support/common.h
    M libc/src/__support/macros/optimization.h
    M libc/src/__support/macros/properties/compiler.h

  Log Message:
  -----------
  [libc] Some compatibility update for building with MSVC. (#157701)

Add compiler identity macro and disable some unsupported features.


  Commit: 20c08f36d7d39c97a4979d9a9fd1a5b7fb53e268
      https://github.com/llvm/llvm-project/commit/20c08f36d7d39c97a4979d9a9fd1a5b7fb53e268
  Author: Andy Kaylor <akaylor at nvidia.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/CodeGen/CGClass.cpp

  Log Message:
  -----------
  [Clang][CodeGen]NFC] Modernize loops in EmitCtorPrologue (#155668)

This patch updates the loops in EmitCtorPrologue to use range-based for
loops rather than looping over a single iterator which was being shared
between three loops. Setting up three separate ranges adds a very small
amount of overhead, but it improves the readability and maintainability
of the code.


  Commit: 3ce16565c81df86b556cd25dc40c7a03000169dd
      https://github.com/llvm/llvm-project/commit/3ce16565c81df86b556cd25dc40c7a03000169dd
  Author: Bhasawut Singhaphan <bhasawut at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/BuiltinsX86.td
    M clang/lib/AST/ByteCode/InterpBuiltin.cpp
    M clang/lib/AST/ExprConstant.cpp
    M clang/lib/Headers/avx2intrin.h
    M clang/lib/Headers/avx512bwintrin.h
    M clang/lib/Headers/avx512vlbwintrin.h
    M clang/lib/Headers/emmintrin.h
    M clang/lib/Headers/xmmintrin.h
    M clang/test/CodeGen/X86/avx2-builtins.c
    M clang/test/CodeGen/X86/avx512bw-builtins.c
    M clang/test/CodeGen/X86/avx512vlbw-builtins.c
    M clang/test/CodeGen/X86/mmx-builtins.c
    M clang/test/CodeGen/X86/sse2-builtins.c

  Log Message:
  -----------
  [Headers][X86] Enable constexpr handling for MMX/SSE/AVX/AVX512 avg intrinsics (#157464)

This PR updates the avg builtins to support constant expression handling, by extending the VectorExprEvaluator::VisitCallExpr that handles elementwise integer binop builtins.

Closes #155390

---------

Co-authored-by: Simon Pilgrim <llvm-dev at redking.me.uk>


  Commit: ada9da71646d16dc7f3b5bfb27446ff1d86aa8f8
      https://github.com/llvm/llvm-project/commit/ada9da71646d16dc7f3b5bfb27446ff1d86aa8f8
  Author: Ellis Hoag <ellis.sparky.hoag at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/docs/ReleaseNotes.md
    M llvm/include/llvm/CodeGen/Passes.h
    M llvm/include/llvm/Passes/CodeGenPassBuilder.h
    M llvm/include/llvm/Target/CGPassBuilderOption.h
    M llvm/lib/CodeGen/MachineOutliner.cpp
    M llvm/lib/CodeGen/TargetPassConfig.cpp
    M llvm/test/CodeGen/AArch64/machine-outliner-flags.ll
    A llvm/test/CodeGen/AArch64/machine-outliner-pgo.ll

  Log Message:
  -----------
  [MachineOutliner] Add profile guided outlining (#154437)


  Commit: b68ff081de5b6f811a140fafe5fed5e1f2557304
      https://github.com/llvm/llvm-project/commit/b68ff081de5b6f811a140fafe5fed5e1f2557304
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/bolt/unittests/Core/BUILD.gn
    M llvm/utils/gn/secondary/clang/include/clang/Basic/BUILD.gn
    M llvm/utils/gn/secondary/clang/tools/clang-sycl-linker/BUILD.gn
    M llvm/utils/gn/secondary/clang/tools/libclang/BUILD.gn
    M llvm/utils/gn/secondary/compiler-rt/lib/builtins/sources.gni
    M llvm/utils/gn/secondary/compiler-rt/lib/sanitizer_common/BUILD.gn
    M llvm/utils/gn/secondary/lld/MachO/BUILD.gn
    M llvm/utils/gn/secondary/lld/tools/lld/BUILD.gn
    M llvm/utils/gn/secondary/lldb/source/Target/BUILD.gn
    M llvm/utils/gn/secondary/lldb/test/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Analysis/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/DebugInfo/GSYM/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Frontend/Directive/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/Sparc/MCTargetDesc/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/write_target_def_file.gni
    M llvm/utils/gn/secondary/llvm/test/BUILD.gn
    M llvm/utils/gn/secondary/llvm/tools/llvm-offload-wrapper/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/CodeGen/CGPluginTest/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/CodeGen/CGPluginTest/Plugin/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/DebugInfo/LogicalView/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/TargetParser/BUILD.gn
    M llvm/utils/gn/secondary/llvm/utils/TableGen/BUILD.gn

  Log Message:
  -----------
  [gn build] Format BUILD.gn files


  Commit: af65dc6cd65f5eb82ca463cefdf659ce9314dec3
      https://github.com/llvm/llvm-project/commit/af65dc6cd65f5eb82ca463cefdf659ce9314dec3
  Author: John Harrison <harjohn at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/include/lldb/Protocol/MCP/Server.h
    M lldb/source/Plugins/Protocol/MCP/ProtocolServerMCP.cpp
    M lldb/source/Plugins/Protocol/MCP/ProtocolServerMCP.h
    M lldb/source/Protocol/MCP/Server.cpp
    M lldb/tools/lldb-mcp/CMakeLists.txt
    M lldb/tools/lldb-mcp/lldb-mcp.cpp

  Log Message:
  -----------
  [lldb-mcp] Auto connect to the first running lldb mcp instance. (#157503)

This improves the flow by automatically connecting to an exisitng lldb
instance, if one is found.

Future improvements include:

* Launching a binary if an instance isn't detected.
* Multiplexing if multiple instances are detected.


  Commit: 11c2ffdeda22a54dd6de57c4101512d2ecab7e7b
      https://github.com/llvm/llvm-project/commit/11c2ffdeda22a54dd6de57c4101512d2ecab7e7b
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/llvm/lib/Target/AArch64/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/AMDGPU/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/ARM/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/AVR/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/BPF/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/Hexagon/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/Mips/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/RISCV/Disassembler/BUILD.gn

  Log Message:
  -----------
  [gn build] Manually port ed3597e2


  Commit: 6a9d43a7f6a802b8b36b60de9b729c6a4ab1f634
      https://github.com/llvm/llvm-project/commit/6a9d43a7f6a802b8b36b60de9b729c6a4ab1f634
  Author: Finn Plummer <mail at inbelic.dev>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/DiagnosticSemaKinds.td
    M clang/lib/Parse/ParseHLSLRootSignature.cpp
    M clang/lib/Sema/SemaHLSL.cpp
    M clang/test/SemaHLSL/RootSignature-err.hlsl
    M clang/test/SemaHLSL/RootSignature-resource-ranges-err.hlsl
    M clang/test/SemaHLSL/RootSignature-resource-ranges.hlsl
    M clang/unittests/Parse/ParseHLSLRootSignatureTest.cpp
    M llvm/include/llvm/Frontend/HLSL/RootSignatureValidations.h
    M llvm/lib/Frontend/HLSL/RootSignatureValidations.cpp

  Log Message:
  -----------
  [Sema][Parse][HLSL] Implement front-end rootsignature validations (#156754)

This pr implements the following validations:

1. Check that descriptor tables don't mix Sample and non-Sampler
resources
2. Ensure that descriptor ranges don't append onto an unbounded range
3. Ensure that descriptor ranges don't overflow
4. Adds a missing validation to ensure that only a single `RootFlags`
parameter is provided

Resolves: https://github.com/llvm/llvm-project/issues/153868.


  Commit: d3c72d6c7628d8213c70c067f3fa3ce067272498
      https://github.com/llvm/llvm-project/commit/d3c72d6c7628d8213c70c067f3fa3ce067272498
  Author: Finn Plummer <mail at inbelic.dev>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Driver/Options.td
    M clang/lib/Driver/ToolChains/HLSL.cpp
    A clang/test/Driver/dxc_frs.hlsl

  Log Message:
  -----------
  [HLSL] Add the `Frs` `DXC` driver option (#157690)

This pr adds `Frs` as a `DXC` driver option.

It is done by invoking `llvm-objcopy` with the `extract-section=RTS0`
argument specified to output the separate `DXContainer`.

Option behaviour as a reference is found
[here](https://github.com/llvm/wg-hlsl/blob/main/proposals/0029-root-signature-driver-options.md#option-frs).

This resolves: https://github.com/llvm/llvm-project/issues/150277.


  Commit: 5a1243cfbfe3d289d2c132ac68f559b9d1c71e61
      https://github.com/llvm/llvm-project/commit/5a1243cfbfe3d289d2c132ac68f559b9d1c71e61
  Author: Steven Wu <stevenwu at apple.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/include/module.modulemap

  Log Message:
  -----------
  [Support][modulemap] Fix LLVM_Support modulemap broken in #113364 (#157715)

Add VirtualOutputConfig.def to textual header.


  Commit: da6283a8b28608936f62f870d1b77b020aee9460
      https://github.com/llvm/llvm-project/commit/da6283a8b28608936f62f870d1b77b020aee9460
  Author: Jordan Rupprecht <rupprecht at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M utils/bazel/llvm-project-overlay/libc/BUILD.bazel

  Log Message:
  -----------
  [bazel][libc] Port #157701: msvc compat fixes (#157722)


  Commit: d71df8283b0b1bc20565c1b35656c75e180eef61
      https://github.com/llvm/llvm-project/commit/d71df8283b0b1bc20565c1b35656c75e180eef61
  Author: Nathan Gauër <brioche at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/AST/Attr.h
    M clang/include/clang/Basic/Attr.td
    M clang/include/clang/Basic/DiagnosticFrontendKinds.td
    M clang/include/clang/Basic/DiagnosticParseKinds.td
    M clang/include/clang/Basic/DiagnosticSemaKinds.td
    M clang/include/clang/Parse/Parser.h
    M clang/include/clang/Sema/SemaHLSL.h
    M clang/lib/Basic/Attributes.cpp
    M clang/lib/CodeGen/CGHLSLRuntime.cpp
    M clang/lib/CodeGen/CGHLSLRuntime.h
    M clang/lib/Parse/ParseHLSL.cpp
    M clang/lib/Sema/SemaDeclAttr.cpp
    M clang/lib/Sema/SemaHLSL.cpp
    R clang/test/CodeGenHLSL/semantics/DispatchThreadID-noindex.hlsl
    R clang/test/CodeGenHLSL/semantics/SV_GroupID-noindex.hlsl
    R clang/test/CodeGenHLSL/semantics/SV_GroupThreadID-noindex.hlsl
    M clang/test/CodeGenHLSL/semantics/SV_Position.ps.hlsl
    R clang/test/CodeGenHLSL/semantics/missing.hlsl
    M clang/test/ParserHLSL/semantic_parsing.hlsl
    R clang/test/ParserHLSL/semantic_parsing_define.hlsl
    M clang/test/SemaHLSL/Semantics/invalid_entry_parameter.hlsl
    M clang/utils/TableGen/ClangAttrEmitter.cpp

  Log Message:
  -----------
  Revert "[HLSL] Rewrite semantics parsing" (#157718)

Reverts llvm/llvm-project#152537

Broke the build in some cases. Need to investigate more for a proper
solution.


  Commit: 27c543076b9810fe2003ddca20a786d57e741ea2
      https://github.com/llvm/llvm-project/commit/27c543076b9810fe2003ddca20a786d57e741ea2
  Author: Andy Kaylor <akaylor at nvidia.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/CIR/CodeGen/CIRGenFunction.cpp

  Log Message:
  -----------
  [CIR][NFC] Fix build warnings after #154142 (#157724)

A recent change introduced a new dtor kind, which caused a build warning
in the CIR code where this dtor kind wasn't handled in a switch. This
fixes the problem.


  Commit: 5c17af419ec7e9c823a1ae9287baeed0d27336ce
      https://github.com/llvm/llvm-project/commit/5c17af419ec7e9c823a1ae9287baeed0d27336ce
  Author: Jordan Rupprecht <rupprecht at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang-tools-extra/test/clang-apply-replacements/crlf.cpp

  Log Message:
  -----------
  [clang-tools-extra][test] Ensure file is writeable after copying (#157728)

After #157572, the invocation to clang-tidy fails w/ `Could not open
<...>/crlf.cpp.tmp.dir/Inputs/crlf/crlf.cpp for writing` if run in an
environment where the source tree is mounted read-only. This is because
`cat` was creating a new file in a writeable dir, but running `cp`
preserves the readonly file permissions from the source tree.


  Commit: 6d54d9f816294a9652090ced06197c31475309bc
      https://github.com/llvm/llvm-project/commit/6d54d9f816294a9652090ced06197c31475309bc
  Author: Samira Bakon <bazuzi at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Analysis/FlowSensitive/RecordOps.h
    M clang/include/clang/Analysis/FlowSensitive/StorageLocation.h
    M clang/lib/Analysis/FlowSensitive/RecordOps.cpp
    M clang/lib/Analysis/FlowSensitive/Transfer.cpp
    M clang/unittests/Analysis/FlowSensitive/RecordOpsTest.cpp
    M clang/unittests/Analysis/FlowSensitive/TransferTest.cpp

  Log Message:
  -----------
  Reland [clang][dataflow] Transfer more cast expressions. (#157535)

Reverts llvm/llvm-project#157148

Adds fixes to `TransferVisitor::VisitCXXConstructExpr` and `copyRecord`
to avoid crashing on base class initialization from sibling-derived
class instances. I believe this is the only use of copyRecord where we
need this special handling for a shared base class.


  Commit: f82023d72e1190ca46a05dcb253df5aaf4205876
      https://github.com/llvm/llvm-project/commit/f82023d72e1190ca46a05dcb253df5aaf4205876
  Author: Francesco Petrogalli <francesco.petrogalli at apple.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/Driver/ToolChains/CommonArgs.cpp
    M clang/test/Driver/frame-pointer-elim.c
    M clang/test/Driver/frame-pointer.c
    M llvm/test/CodeGen/ARM/frame-chain.ll
    M llvm/test/CodeGen/Thumb/frame-chain.ll
    M llvm/test/CodeGen/Thumb2/frame-pointer.ll

  Log Message:
  -----------
  [clang][driver][arm][macho] Default to -mframe-pointer=non-leaf. (#154216)

The commit in [1] changes the behavior of the Arm backend for the
attribute frame-pointer=all. Before [1], leaf functions marked with
frame-pointer=all were not emitting the frame-pointer.

After [1], frame-pointer=all started generating frame pointer for all
functions, including leaf functions.

However, the default behavior for the driver in clang is to emit the
command line option `-mframe-pointer=all` on Arm, if no options for
handling the frame pointer is specified at command line. This causes
observable regressions.

This patch addresses these regressions by configuring the driver so
to emit `-mframe-pointer=non-leaf` when targeting Arm.

Codegen tests dealing with frame pointer generation have been extended
to handle functions with a tail call, since this configuration was
missing.

[1] 4a2bd78f5b0d0661c23dff9c4b93a393a49dbf9a


  Commit: b6be44ad0deeb86e920873de87875d2eaa6c2d8b
      https://github.com/llvm/llvm-project/commit/b6be44ad0deeb86e920873de87875d2eaa6c2d8b
  Author: Nick Sarnie <nick.sarnie at intel.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/CodeGen/CGCall.cpp
    M clang/lib/CodeGen/CGOpenMPRuntime.cpp
    M clang/lib/CodeGen/CGStmtOpenMP.cpp
    M clang/lib/CodeGen/CodeGenFunction.h
    M clang/lib/CodeGen/CodeGenSYCL.cpp
    M clang/lib/CodeGen/CodeGenTypes.h
    M clang/lib/CodeGen/Targets/SPIR.cpp
    A clang/test/OpenMP/spirv_kernel_addrspace.cpp

  Log Message:
  -----------
  [clang][OpenMP][SPIR-V] Fix addrspace of pointer kernel arguments (#157172)

In SPIR-V, kernel arguments are not allowed to be in the Generic AS, in
both Intel's internal SPIR-V offloading implementation as well as
HIPSPV, `CrossWorkgroup` AS1 is used. Do the same for OMPSPV.

Currently with Generic AS the `llvm-spirv` translator blows up if we are
using it, and if not, the GPU runtime blows up.

To get the existing logic to set the correct AS to kick in, we need to
know if the function is a kernel or not at the time we first create the
function that may end up as the kernel.

I use the existing `arrangeSYCLKernelCallerDeclaration` function to do
the right kernel ABI computation, but since the function is not specific
to SYCL anymore because I merged all the device kernel clang attributes
into one.

Rename the function to be accurate to the current behavior,
`arrangeDeviceKernelCallerDeclaration`.

---------

Signed-off-by: Sarnie, Nick <nick.sarnie at intel.com>


  Commit: 9bc42009b9eae23d9ae7bc4986b6a09755d0eb28
      https://github.com/llvm/llvm-project/commit/9bc42009b9eae23d9ae7bc4986b6a09755d0eb28
  Author: Lei Wang <wlei at fb.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/include/llvm/ProfileData/SampleProf.h
    M llvm/test/tools/llvm-profgen/inline-cs-pseudoprobe.test
    M llvm/test/tools/llvm-profgen/inline-noprobe.test
    M llvm/test/tools/llvm-profgen/inline-pseudoprobe.test
    M llvm/tools/llvm-profgen/ProfileGenerator.cpp
    M llvm/tools/llvm-profgen/ProfileGenerator.h

  Log Message:
  -----------
  [llvm-profgen] Add an option to mark all the profile context as preinlined (#156501)

Add a new option (under `--mark-all-context-preinlined`) that marks all
function samples with the `ContextShouldBeInlined ` attribute during
post-processing to make the profile as preinlined. This can be useful
for experiments outside of the CS preinliner, e.g. to fully replay the
inlining for a given profile.


  Commit: a76dc5599d4bf55a9bd7347e1a4ca22c77111168
      https://github.com/llvm/llvm-project/commit/a76dc5599d4bf55a9bd7347e1a4ca22c77111168
  Author: Louis Dionne <ldionne.2 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libcxx/test/benchmarks/spec.gen.py

  Log Message:
  -----------
  [libc++] Fix SPEC globbing pattern


  Commit: 2a2296b1aab4614bf6c95c3003000832c9d43de5
      https://github.com/llvm/llvm-project/commit/2a2296b1aab4614bf6c95c3003000832c9d43de5
  Author: Razvan Lupusoru <razvan.lupusoru at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M flang/lib/Lower/Bridge.cpp
    M flang/lib/Lower/OpenACC.cpp
    M flang/test/Lower/OpenACC/do-loops-to-acc-loops.f90

  Log Message:
  -----------
  [flang][acc] Fix incorrect loop body nesting and IV value use (#157708)

Two issues are being resolved:
- Incorrect loop body nesting caused by insertion point not being
updated after the loop. The scenario is now being tested through
`nested_do_loops` function in the test.
- Incorrect IV ssa values due to incorrect handling of scoping.

Additionally, this also adds `--openacc-do-loop-to-acc-loop` flag so
that the implicit conversion can be disabled for testing.


  Commit: d3c09c45aa9807e980f8fb029f2b94d8eb175265
      https://github.com/llvm/llvm-project/commit/d3c09c45aa9807e980f8fb029f2b94d8eb175265
  Author: Valentin Clement (バレンタイン クレメン) <clementval at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M flang-rt/include/flang-rt/runtime/descriptor.h
    M flang-rt/include/flang-rt/runtime/type-info.h
    M flang-rt/lib/runtime/assign.cpp
    M flang-rt/lib/runtime/copy.cpp
    M flang-rt/lib/runtime/derived.cpp
    M flang-rt/lib/runtime/descriptor.cpp
    M flang-rt/lib/runtime/type-info.cpp
    M flang/include/flang/Semantics/tools.h
    M flang/lib/Semantics/runtime-type-info.cpp
    M flang/module/__fortran_type_info.f90
    A flang/test/Lower/CUDA/cuda-allocatable-device.cuf

  Log Message:
  -----------
  [flang] Add special genre for allocatable and pointer device component (#157731)

Allocatable and pointer device components need a different allocator
index to be set in their descriptor when it is establish. This PR adds
two genre for the components `AllocatableDevice` and `PointerDevice` so
the correct allocator index can be set accordingly.


  Commit: 4b5559348bb5c318f131e13bcd32630667de4cce
      https://github.com/llvm/llvm-project/commit/4b5559348bb5c318f131e13bcd32630667de4cce
  Author: Jon Roelofs <jonathan_roelofs at apple.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M compiler-rt/lib/builtins/assembly.h

  Log Message:
  -----------
  [compiler-rt] Fix a bug introduced into DEFINE_COMPILERRT_FUNCTION_ALIAS (#156979)

... during a refactoring for arm64ec in #137960
6ade80ce18087b1e27505985a254c487679e16b8. The subtle change here results
in a change in symbols in the library from:

```
  00000038 T ___gesf2
  00000038 T ___gtsf2
```

to:

```
           I ___gesf2 (indirect for __gtsf2)
  00000038 T ___gtsf2
```

... which is a breaking change on Mach-O platforms.

rdar://157846316


  Commit: e0d0b90d52f54f291c1042046ddf22e925408235
      https://github.com/llvm/llvm-project/commit/e0d0b90d52f54f291c1042046ddf22e925408235
  Author: Louis Dionne <ldionne.2 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libcxx/docs/Status/Cxx17Issues.csv
    M libcxx/docs/Status/Cxx17Papers.csv
    M libcxx/docs/Status/Cxx20Issues.csv
    M libcxx/docs/Status/Cxx20Papers.csv
    M libcxx/docs/Status/Cxx23Issues.csv
    M libcxx/docs/Status/Cxx23Papers.csv
    M libcxx/docs/Status/Cxx2cIssues.csv
    M libcxx/docs/Status/Cxx2cPapers.csv
    M libcxx/utils/synchronize_csv_status_files.py

  Log Message:
  -----------
  [libc++] Start tracking Github issues in status pages (#149833)

This patch adds another row to the Status pages that cross-references
the Github issue. It also ensures that the synchronization script takes
that new row into account.

This should make it easier to find out about the detailed status of a
paper from the status pages by clicking on the link and being taken
directly to its associated Github issue. I expect that this should
remove the need for many "Notes" which simply duplicate the information
of which parts of a paper are implemented: instead we can list that the
implementation is partial and users can click on the Github issue to see
what's implemented.


  Commit: 0bd3ef4cf27c84db9017bdf8d1d67d9548830368
      https://github.com/llvm/llvm-project/commit/0bd3ef4cf27c84db9017bdf8d1d67d9548830368
  Author: lntue <lntue at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    A libc/cmake/modules/LibcParseArguments.cmake

  Log Message:
  -----------
  [libc][NFC] Add cmake facility to unify the way we parse arguments. (#156922)

Also this will allow all arguments to have overlay-only and
full-build-only options.


  Commit: aa9af2a3ec4c986fc8a7103a2fbbcdc4ccc079e4
      https://github.com/llvm/llvm-project/commit/aa9af2a3ec4c986fc8a7103a2fbbcdc4ccc079e4
  Author: Andy Kaylor <akaylor at nvidia.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/CIR/MissingFeatures.h
    M clang/lib/CIR/CodeGen/CIRGenDecl.cpp
    M clang/lib/CIR/CodeGen/CIRGenExpr.cpp
    M clang/lib/CIR/CodeGen/CIRGenFunction.cpp
    M clang/lib/CIR/CodeGen/CIRGenFunction.h
    M clang/lib/CIR/CodeGen/CIRGenStmt.cpp
    A clang/test/CIR/CodeGen/nrvo.cpp

  Log Message:
  -----------
  [CIR] Add support for copy elision (#157713)

This adds basic support for eliding copy constructors. In order to make
this possible, it also adds support for returning structures. This
support does not include setting an NRVO flag when the class whose copy
is being elided has a non-trivial destructor.


  Commit: 3e790bd03a970e05f1717d91f870cbdfb69a0b78
      https://github.com/llvm/llvm-project/commit/3e790bd03a970e05f1717d91f870cbdfb69a0b78
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/tools/not/disable-symbolization.test

  Log Message:
  -----------
  [not] Update disable-symbolization.test to work with internal shell

This test is a special case as it executes two commands that are special
cased in the internal shell implementation. env runs entirely inside the
internal shell whereas not is handled specially, but still executed
externally. The internal shell does reorder execution of these though,
putting env commands before not which means we do not pick up
environment variables set by not.

These complications make it easier to just ensure that we invoke the
actual env binary (by calling it through bash) rather than using the
internal shell implementation.

Fixes #106627 by fixing the test, but without fixing the redirection
issue given the complexity does not seem justified.

Reviewers: ilovepi, MaskRay, petrhosek

Reviewed By: MaskRay

Pull Request: https://github.com/llvm/llvm-project/pull/157236


  Commit: 2bd0d770af5b7cc349209e1c46cced86ecc5a69d
      https://github.com/llvm/llvm-project/commit/2bd0d770af5b7cc349209e1c46cced86ecc5a69d
  Author: Maryam Moghadas <maryammo at ca.ibm.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/Attr.td
    M clang/include/clang/Basic/AttrDocs.td
    M clang/lib/Driver/ToolChains/Clang.cpp
    M clang/test/Driver/fpatchable-function-entry.c
    M clang/test/Sema/patchable-function-entry-attr.cpp
    M llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
    M llvm/test/CodeGen/PowerPC/patchable-function-entry.ll

  Log Message:
  -----------
  [PowerPC] Support `-fpatchable-function-entry` on PPC64LE (#151569)

This patch enables `-fpatchable-function-entry` on PPC64 little-endian
Linux. It is mutually exclusive with existing XRay instrumentation on
this target.


  Commit: e1ca3d9376541829a2ced11fbb4aa9015d656d44
      https://github.com/llvm/llvm-project/commit/e1ca3d9376541829a2ced11fbb4aa9015d656d44
  Author: Ryosuke Niwa <rniwa at webkit.org>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/lib/StaticAnalyzer/Checkers/WebKit/RawPtrRefLambdaCapturesChecker.cpp
    M clang/test/Analysis/Checkers/WebKit/uncounted-lambda-captures.cpp

  Log Message:
  -----------
  [webkit.UncountedLambdaCapturesChecker] Ignore DeclRefExpr to a lambda in an no-escape argument (#155025)

Fix a bug that webkit.UncountedLambdaCapturesChecker was erroneously
emitting a warning for a DeclRefExpr which is passed in as an argument
to a no-escape function argument. The bug was caused by findLambdaInArg
not adding DeclRefExpr to the ignored set even when a lambda was
identified as an argument.


  Commit: ed9dded83f5bc147757c31be76c7583b1a019fb3
      https://github.com/llvm/llvm-project/commit/ed9dded83f5bc147757c31be76c7583b1a019fb3
  Author: brenfwd <bforward at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang-tools-extra/clang-tidy/google/CMakeLists.txt
    A clang-tools-extra/clang-tidy/google/FloatTypesCheck.cpp
    A clang-tools-extra/clang-tidy/google/FloatTypesCheck.h
    M clang-tools-extra/clang-tidy/google/GoogleTidyModule.cpp
    M clang-tools-extra/docs/ReleaseNotes.rst
    A clang-tools-extra/docs/clang-tidy/checks/google/runtime-float.rst
    M clang-tools-extra/docs/clang-tidy/checks/list.rst
    A clang-tools-extra/test/clang-tidy/checkers/google/runtime-float.cpp

  Log Message:
  -----------
  [Clang-Tidy] Add google-runtime-float Clang-Tidy check (#156763)

Add a new checker to clang-tidy for use of the `long double` type [per
Google style
guide](https://google.github.io/styleguide/cppguide.html#Floating-Point_Types).


  Commit: c4b17bf9ed46acbd8b28987f2a6262964e4e2072
      https://github.com/llvm/llvm-project/commit/c4b17bf9ed46acbd8b28987f2a6262964e4e2072
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
    M llvm/test/Transforms/LoopVectorize/X86/pr141968-instsimplifyfolder.ll

  Log Message:
  -----------
  [VPlan] Slightly extend ExtractLastElement fold to single-scalars.

Update ExtractLastElement fold to support single scalar recipes, if all
their users only use scalars.


  Commit: 69511ae80480815385abef7dfa095a8bd2961144
      https://github.com/llvm/llvm-project/commit/69511ae80480815385abef7dfa095a8bd2961144
  Author: Jason Molenda <jmolenda at apple.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/include/lldb/Core/Architecture.h
    M lldb/include/lldb/Target/RegisterContextUnwind.h
    M lldb/include/lldb/Target/UnwindLLDB.h
    M lldb/source/Plugins/ABI/ARM/ABISysV_arm.cpp
    M lldb/source/Plugins/Architecture/Arm/ArchitectureArm.cpp
    M lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h
    M lldb/source/Plugins/ObjectFile/JSON/ObjectFileJSON.cpp
    M lldb/source/Plugins/ObjectFile/JSON/ObjectFileJSON.h
    M lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
    M lldb/source/Target/RegisterContextUnwind.cpp
    A lldb/test/API/functionalities/unwind/cortex-m-exception/Makefile
    A lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py
    A lldb/test/API/functionalities/unwind/cortex-m-exception/armv7m-nofpu-exception.yaml
    A lldb/test/API/functionalities/unwind/cortex-m-exception/binary.json

  Log Message:
  -----------
  [lldb] Unwind through ARM Cortex-M exceptions automatically (#153922)

When a processor faults/is interrupted/gets an exception, it will stop
running code and jump to an exception catcher routine. Most processors
will store the pc that was executing in a system register, and the
catcher functions have special instructions to retrieve that & possibly
other registers. It may then save those values to stack, and the author
can add .cfi directives to tell lldb's unwinder where to find those
saved values.

ARM Cortex-M (microcontroller) processors have a simpler mechanism where
a fixed set of registers are saved to the stack on an exception, and a
unique value is put in the link register to indicate to the caller that
this has taken place. No special handling needs to be written into the
exception catcher, unless it wants to inspect these preserved values.
And it is possible for a general stack walker to walk the stack with no
special knowledge about what the catch function does.

This patch adds an Architecture plugin method to allow an Architecture
to override/augment the UnwindPlan that lldb would use for a stack
frame, given the contents of the return address register. It resembles a
feature where the LanguageRuntime can replace/augment the unwind plan
for a function, but it is doing it at offset by one level. The
LanguageRuntime is looking at the local register context and/or symbol
name to decide if it will override the unwind rules. For the Cortex-M
exception unwinds, we need to modify THIS frame's unwind plan if the
CALLER's LR had a specific value. RegisterContextUnwind has to retrieve
the caller's LR value before it has completely decided on the UnwindPlan
it will use for THIS stack frame.

This does mean that we will need one additional read of stack memory
than we currently do when unwinding, on Armv7 Cortex-M targets. The
unwinder walks the stack lazily, as stack frames are requested, and so
now if you ask for 2 stack frames, we will read enough stack to walk 2
frames, plus we will read one extra word of memory, the spilled LR value
from the stack. In practice, with 512-byte memory cache reads, this is
unlikely to be a real performance hit.

This PR includes a test with a yaml corefile description and a JSON
ObjectFile, incorporating all of the necessary stack memory and symbol
names from a real debug session I worked on. The architectural default
unwind plans are used for all stack frames except the 0th because
there's no instructions for the functions, and no unwind info. I may
need to add an encoding of unwind fules to ObjectFileJSON in the future
as we create more test cases like this.

This PR depends on the yaml2macho-core utility from
https://github.com/llvm/llvm-project/pull/153911 to run its API test.

rdar://110663219


  Commit: 3e9802159b064988cff9aa3655f2a68a463711a3
      https://github.com/llvm/llvm-project/commit/3e9802159b064988cff9aa3655f2a68a463711a3
  Author: Valentin Clement (バレンタイン クレメン) <clementval at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M flang-rt/lib/cuda/descriptor.cpp
    M flang-rt/unittests/Runtime/CUDA/AllocatorCUF.cpp
    M flang/include/flang/Lower/CUDA.h
    M flang/include/flang/Optimizer/Builder/Runtime/CUDA/Descriptor.h
    M flang/include/flang/Optimizer/Dialect/CUF/CUFOps.td
    M flang/include/flang/Runtime/CUDA/descriptor.h
    M flang/lib/Lower/Allocatable.cpp
    M flang/lib/Lower/CUDA.cpp
    M flang/lib/Lower/ConvertVariable.cpp
    M flang/lib/Optimizer/Builder/Runtime/CUDA/Descriptor.cpp
    M flang/lib/Optimizer/Dialect/CUF/CUFOps.cpp
    M flang/lib/Optimizer/Transforms/CUFOpConversion.cpp
    M flang/test/Fir/CUDA/cuda-alloc-free.fir
    R flang/test/Lower/CUDA/cuda-set-allocator.cuf

  Log Message:
  -----------
  [flang][cuda] Remove set_allocator_idx operation (#157747)

The allocator index is set from the component genre #157731 . There is
no more need of an operation to set it at a later point.


  Commit: 78dfbcaa7b32eaf5a4e5888a1728114984712a4b
      https://github.com/llvm/llvm-project/commit/78dfbcaa7b32eaf5a4e5888a1728114984712a4b
  Author: Jason Molenda <jmolenda at apple.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py

  Log Message:
  -----------
  [lldb][NFC] add comment to new TestCortexMExceptionUnwind


  Commit: d0070994222af5dc4b4790237fea9e17fae30b78
      https://github.com/llvm/llvm-project/commit/d0070994222af5dc4b4790237fea9e17fae30b78
  Author: Clipi <hugogalindolorenzo at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/FileCheck/FileCheck.cpp
    M llvm/test/FileCheck/var-scope.txt

  Log Message:
  -----------
  [FileCheck] Fix --enable-var-scope for numvars after reassignment (#157158)

* When `--enable-var-scope` is active,
`lib/FileCheck.cpp#clearLocalVars` gets called.
* That function loops through `GlobalNumericVariableTable` and then
calls `NumericVariable::clear` on most items. It also removes them from
`GlobalNumericVariableTable`.
* When reassigning an already cleared variable, `Pattern::match` calls
`NumericVariable::setValue`, but it doesn't reinsert it into
`GlobalNumericVariableTable`. Therefore, the next time `clearLocalVars`
is called, it won't be able to loop through the variables.

Fix it by reinserting them in `GlobalNumericVariableTable` inside
`Pattern::match`.

Co-authored-by: Thomas Preud'homme <thomas.preudhomme at arm.com>


  Commit: ebd684137673c8e1b48aeaf8877921fd69e99159
      https://github.com/llvm/llvm-project/commit/ebd684137673c8e1b48aeaf8877921fd69e99159
  Author: Michael Buch <michaelbuch12 at gmail.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/iterator/TestIteratorFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/non-module-type-separation/TestNonModuleTypeSeparation.py
    M lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py

  Log Message:
  -----------
   [lldb][test] Re-enable import-std-module tests on Linux (#157649)

This reverts commit 76bd5da3248fd4affedfefec3b2a3e1acbe0a94a.

These were originally skipped for
https://github.com/llvm/llvm-project/issues/137046 because they were
failing on Fuchsia buildbots.

I couldn't locally reproduce the Linux failures from back then (and
maybe they have been fixed by something else since then).

We want to re-enable these tests because they are one of the few API
tests in the `libcxx` category that we skip on Linux. So the libc++
pre-merge CI doesn't catch these test failures. To avoid churn caused by
this missing coverage, it would be great if we ran these on Linux again.


  Commit: 6e5d008af6b11fa1ccdebfd8003ed28c766b147e
      https://github.com/llvm/llvm-project/commit/6e5d008af6b11fa1ccdebfd8003ed28c766b147e
  Author: Philip Reames <preames at rivosinc.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    A llvm/test/CodeGen/RISCV/select-zbb.ll

  Log Message:
  -----------
  [RISCV] Add coverage for select with minmax arm [nfc] (#157539)

This is coverage for an upcoming change, but I thought the choice of
configurations to check was probably worth a moment of consideration as
well.


  Commit: 2669fdeee295ebec5f4f8e7b7826c08d7191d838
      https://github.com/llvm/llvm-project/commit/2669fdeee295ebec5f4f8e7b7826c08d7191d838
  Author: jimingham <jingham at apple.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/include/lldb/Target/StopInfo.h
    M lldb/source/API/SBThread.cpp
    M lldb/source/Target/StopInfo.cpp
    M lldb/test/API/functionalities/postmortem/elf-core/gcore/TestGCore.py
    M lldb/test/API/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py

  Log Message:
  -----------
  NFC: SBThread should not be the one to compute StopReasonData. (#157577)

This is something the StopInfo class manages, so it should be allowed to
compute this rather than having SBThread do so. This code just moves the
computation to methods in StopInfo. It is mostly NFC. The one change
that I actually had to adjust the tests for was a couple of tests that
were asking for the UnixSignal stop info data by asking for the data at
index 1. GetStopInfoDataCount returns 1 and we don't do 1 based indexing
so the test code was clearly wrong. But I don't think it makes sense to
perpetuate handing out the value regardless of what index you pass us.


  Commit: e320d9bdd32e6c53bef05304fceb98f62c61bde3
      https://github.com/llvm/llvm-project/commit/e320d9bdd32e6c53bef05304fceb98f62c61bde3
  Author: Jason Molenda <jmolenda at apple.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py

  Log Message:
  -----------
  [lldb] Skip TestCortexMExceptionUnwind except Darwin

I'm getting a failure on one linux CI, lldb-remote-linux-ubuntu,
where the test of assertEqual(thread.GetNumFrames(), 6) fails
because the unwinder only has one frame, most likely the
target triple is not set to armv7m-apple-* so ABISysV_arm is
being used instead of ABIMacOSX_arm and the architecture default
unwind plans behave differently.  Possibly the frame pointer
register, or possibly the way the arch default unwind plans are
structured.

Skipping on linux for now until I can debug further.  Can repo on
Darwin by changing the binary.json `"triple": "armv7m-apple"` to
armv7m-linux.


  Commit: 2422686e4799040cf423ecb3610ce4368d5c7111
      https://github.com/llvm/llvm-project/commit/2422686e4799040cf423ecb3610ce4368d5c7111
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/ExpandVectorPredication.cpp
    M llvm/test/Transforms/PreISelIntrinsicLowering/expand-vp.ll

  Log Message:
  -----------
  [ExpandVectorPredication] Add vp.select to foldEVLIntoMask. (#157720)


  Commit: bd0580cf7ad544df68a9425616c902a842983257
      https://github.com/llvm/llvm-project/commit/bd0580cf7ad544df68a9425616c902a842983257
  Author: Joseph Huber <huberjn at outlook.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libc/src/__support/CPP/simd.h

  Log Message:
  -----------
  [libc] Make simd helper functions static (#157551)

Summary:
It's important that these functions all be local to a TU as to not incur
ABI restrictions. Otherwise, we end up with lots of warnings if we
change or use different vector sizes.


  Commit: 90e9c5e1fefcd866e76ed2b96e683f3a46ee4840
      https://github.com/llvm/llvm-project/commit/90e9c5e1fefcd866e76ed2b96e683f3a46ee4840
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    A llvm/test/MC/COFF/stdin.py
    R llvm/test/MC/COFF/stdin.s

  Log Message:
  -----------
  [MC] Rewrite stdin.s to use python

This test needs to change the file descriptor offset for the llvm-mc
output file to test that we do not get an assertion in that situation.
This doesn't seem easy to do without bash subshells. Rewrite these test
in Python so we can remove the shell requirement from this test and
enable using it with lit's internal shell. This also has the bonus of
making the behavior that we are trying to create for the test much more
explicit (a .seek call on the FD).

Reviewers: ilovepi, MaskRay, petrhosek

Reviewed By: petrhosek, ilovepi

Pull Request: https://github.com/llvm/llvm-project/pull/157232


  Commit: c021cac034fa9eb7279520a4a622cad418c9a265
      https://github.com/llvm/llvm-project/commit/c021cac034fa9eb7279520a4a622cad418c9a265
  Author: Florian Mayer <fmayer at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang/test/CodeGen/allow-ubsan-check.c
    M llvm/include/llvm/IR/Intrinsics.td
    M llvm/test/Instrumentation/BoundsChecking/runtimes.ll

  Log Message:
  -----------
  [UBSan] make ubsantrap `inaccessiblemem: write` (#156100)

This is consistent with the normal trap. This will allow more
optimizations to work on it (e.g. it can be reordered more
freely).

This will also allow https://github.com/llvm/llvm-project/pull/155901 to
avoid hardcoding the ubsan trap.


  Commit: f3b7ad4859037254afc0ee6d938018376c7c03d3
      https://github.com/llvm/llvm-project/commit/f3b7ad4859037254afc0ee6d938018376c7c03d3
  Author: Jason Molenda <jmolenda at apple.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py

  Log Message:
  -----------
  [lldb][NFC] Update testsuite skip comment
to explain why the skip was added.


  Commit: 739de01ebbc9706c0ce4fbf6cab7259bbde827ca
      https://github.com/llvm/llvm-project/commit/739de01ebbc9706c0ce4fbf6cab7259bbde827ca
  Author: Joseph Huber <huberjn at outlook.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libc/src/__support/CPP/CMakeLists.txt
    A libc/src/__support/CPP/tuple.h
    M libc/src/__support/CPP/utility/integer_sequence.h
    M libc/test/src/__support/CPP/CMakeLists.txt
    A libc/test/src/__support/CPP/tuple_test.cpp
    M utils/bazel/llvm-project-overlay/libc/BUILD.bazel

  Log Message:
  -----------
  [libc] Add simple 'tuple' type to CPP helpers (#157739)

Summary:
This patch adds support for `cpp::tuple` with basic support for creating
and modifing tuples.


  Commit: 2581354f6cdf78a6e14a52308b15f747d4c66df8
      https://github.com/llvm/llvm-project/commit/2581354f6cdf78a6e14a52308b15f747d4c66df8
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/lit.cfg.py

  Log Message:
  -----------
  [llvm] Use lit internal shell by default

This should result in a 10-15% test time improvement and also richer
test failure outputn on Linux where it is not yet the default. We can do
this now that all of the tests have been ported over to work with lit's
internal shell.

Fixes #102697.

Reviewers: ilovepi, petrhosek

Reviewed By: ilovepi, petrhosek

Pull Request: https://github.com/llvm/llvm-project/pull/157237


  Commit: 44d14049c7b26ae78cf9bca1ee6c3e391dcd3180
      https://github.com/llvm/llvm-project/commit/44d14049c7b26ae78cf9bca1ee6c3e391dcd3180
  Author: Joseph Huber <huberjn at outlook.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M libc/cmake/modules/CheckCompilerFeatures.cmake
    A libc/cmake/modules/compiler_features/check_ext_vector_type.cpp
    M libc/src/__support/CPP/simd.h
    M libc/test/src/__support/CPP/CMakeLists.txt
    A libc/test/src/__support/CPP/simd_test.cpp

  Log Message:
  -----------
  [libc] Add check for support and a test for libc SIMD helpers (#157746)

Summary:
This adds a few basic tests for the SIMD helpers and adds a CMake
variable we can use to detect support.


  Commit: ee5bc5701bbe9c0deb44dc5ab036c40f2a7bf7e0
      https://github.com/llvm/llvm-project/commit/ee5bc5701bbe9c0deb44dc5ab036c40f2a7bf7e0
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/lit.cfg.py

  Log Message:
  -----------
  Revert "[llvm] Use lit internal shell by default"

This reverts commit 2581354f6cdf78a6e14a52308b15f747d4c66df8.

This is causing test failures on Darwin.

https://lab.llvm.org/buildbot/#/builders/190/builds/27101


  Commit: 71a28f3d1e71af2acee9b9c83e012edbcfef159c
      https://github.com/llvm/llvm-project/commit/71a28f3d1e71af2acee9b9c83e012edbcfef159c
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/include/llvm/ADT/DenseMap.h

  Log Message:
  -----------
  [ADT] Simplify DenseMapIterator with std::reverse_iterator (NFC) (#157389)

DenseMapIterator has two tasks:

- iterate the buckets in the requested direction
- skip the empty and tombstone buckets

These tasks are intertwined in the current implementation.

This patch cleans up DenseMapIterator by separating the two tasks.
Specifically, we introduce a private middleman iterator type called
BucketItTy.  This is the same as the pointer-based iterator in the
forward direction, but it becomes std::reverse_iterator<pointer>
otherwise.  Now, the user-facing iterator iterates over BucketItTy
while skipping the empty and tombstone buckets.  This way,
AdvancePastEmptyBuckets always calls BucketItTy::operator++.  If the
reverse iteration is requested, the underlying raw pointer gets
decremented, but that logic is hidden behind
std::reverse_iterator<pointer>::operator++.

As a result, we can remove RetreatPastEmptyBuckets and a couple of
calls to shouldReverseIterate.

Here is a data point.  A couple of months ago, we were calling
shouldReverseIterate from 18 places in DenseMap.h.  That's down to 5.
This patch reduces it further down to 3.


  Commit: 671455ae3fa97fff65cecdbec8b259eb0a55a574
      https://github.com/llvm/llvm-project/commit/671455ae3fa97fff65cecdbec8b259eb0a55a574
  Author: Daniel Kuts <kutz at ispras.ru>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/lib/Conversion/MPIToLLVM/MPIToLLVM.cpp

  Log Message:
  -----------
  [mlir] Fix possible null dereference during error logging (#157455)

Fixes #157451


  Commit: 6b6e8e153ee64ebb5b9b9c3a7812e2bb1a3019ec
      https://github.com/llvm/llvm-project/commit/6b6e8e153ee64ebb5b9b9c3a7812e2bb1a3019ec
  Author: Alan Zhao <ayzhao at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
    A llvm/test/Transforms/FunctionSpecialization/profile-counts.ll

  Log Message:
  -----------
  [FunctionSpecialization] Preserve call counts of specialized functions (#157768)

A function that has been specialized will have its function entry counts
preserved as follows:

* Each specialization's count is the sum of each call site's basic
block's number of entries as computed by `BlockFrequencyInfo`.
* The original function's count will be decreased by the counts of its
specializations.

Tracking issue: #147390


  Commit: 64f671537de05c46f16b563ab833f5866f95e479
      https://github.com/llvm/llvm-project/commit/64f671537de05c46f16b563ab833f5866f95e479
  Author: Victor Chernyakin <chernyakin.victor.j at outlook.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang-tools-extra/clang-tidy/readability/IdentifierNamingCheck.cpp

  Log Message:
  -----------
  [clang-tidy][NFC] Fix a couple typoed variable names


  Commit: a5660446f006a51fe41cccaa986d0d4011507678
      https://github.com/llvm/llvm-project/commit/a5660446f006a51fe41cccaa986d0d4011507678
  Author: Victor Chernyakin <chernyakin.victor.j at outlook.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang-tools-extra/clang-tidy/readability/MathMissingParenthesesCheck.cpp

  Log Message:
  -----------
  [clang-tidy][NFC] Fix typoed function name


  Commit: ebf78588b1df062accec7aaf8a88c6430090ea18
      https://github.com/llvm/llvm-project/commit/ebf78588b1df062accec7aaf8a88c6430090ea18
  Author: Daniel Kuts <kutz at ispras.ru>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/IR/Verifier.cpp

  Log Message:
  -----------
  [Verifier] Remove redundant null-check (NFC) (#157458)

Fixes #157448


  Commit: 8532566e3364d972f28bd282d718b7f23c307bb0
      https://github.com/llvm/llvm-project/commit/8532566e3364d972f28bd282d718b7f23c307bb0
  Author: Victor Chernyakin <chernyakin.victor.j at outlook.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M clang-tools-extra/clang-tidy/performance/InefficientVectorOperationCheck.cpp

  Log Message:
  -----------
  [clang-tidy][NFC] Fix typo in comment


  Commit: 45405f3732f91bb4f27370ba4aa86cac29c3cf69
      https://github.com/llvm/llvm-project/commit/45405f3732f91bb4f27370ba4aa86cac29c3cf69
  Author: Jordan Rupprecht <rupprecht at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M utils/bazel/llvm-project-overlay/lldb/source/Plugins/BUILD.bazel

  Log Message:
  -----------
  [bazel][lldb] Port #153922: arm cortex-m unwinding (#157780)


  Commit: cd8f47b2d4ed0d28a47b5ab1943e7d8ae23784dc
      https://github.com/llvm/llvm-project/commit/cd8f47b2d4ed0d28a47b5ab1943e7d8ae23784dc
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/move_only_function.h

  Log Message:
  -----------
  [orc-rt] Hoist std::decay_t out of helper class.

The helper implementation shouldn't differ based on how it's initialized.


  Commit: c71318a9bf168d30bf3ccd59eaa826e93b283d4b
      https://github.com/llvm/llvm-project/commit/c71318a9bf168d30bf3ccd59eaa826e93b283d4b
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/move_only_function.h

  Log Message:
  -----------
  [orc-rt] Rename helper class. NFC.

This commit is cleanup in preparation for adding const support to
orc_rt::move_only_function.


  Commit: cc052667b4b2f3bed12db68da876626e14f231f8
      https://github.com/llvm/llvm-project/commit/cc052667b4b2f3bed12db68da876626e14f231f8
  Author: Justin Riddell <arghnews at hotmail.co.uk>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/IPO/GlobalOpt.cpp
    A llvm/test/Transforms/GlobalOpt/resolve-indirect-ifunc.ll

  Log Message:
  -----------
  [GlobalOpt] Fix unreachable ifunc globalopt crash (#157332) (#157593)

Also fixes (#131488)

Unreachable case is triggering `Callees.empty()` assert. Since this was
[originally
](https://github.com/llvm/llvm-project/pull/87939/commits/02bd5a7013c558f1e5220fc89bafa68f40276549#diff-06aba0dac2a263dc14297a15655291d5506b760f54a736385bcf3208f83df843R2524)
a `continue` anyway, have applied that as a fix and added a test case.
Please let me know if there's a better way.

Not sure who/how to get folks to review, tagging a few people (apologies
if you're not the right person/this is the wrong way to do it, please
let me know what to do in future if so)

@labrinea @dtcxzyw @nikic @fhahn


  Commit: 55906374f88f4f47767f1800ddfdcb3fa4e2e9c6
      https://github.com/llvm/llvm-project/commit/55906374f88f4f47767f1800ddfdcb3fa4e2e9c6
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/move_only_function.h
    M orc-rt/unittests/move_only_function-test.cpp

  Log Message:
  -----------
  [orc-rt] Add const support to move_only_function. (#157781)

Adds support for both const move_only_functions, and const callees.


  Commit: 735522a3c7f78d5ec012c8e452d6d025a672a39b
      https://github.com/llvm/llvm-project/commit/735522a3c7f78d5ec012c8e452d6d025a672a39b
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/move_only_function.h
    M orc-rt/unittests/move_only_function-test.cpp

  Log Message:
  -----------
  [orc-rt] Restore perfect forwarding to move_only_function init (#157784)

After the recent change to hoist std::decay_t (cd8f47b2d4e) we were
forcing move-initialization of the callable type. This commit restores
perfect forwarding so that we copy-initialize where expected.


  Commit: d077c840c9c336a8fdaadb1d6fb3ca61ab429ad8
      https://github.com/llvm/llvm-project/commit/d077c840c9c336a8fdaadb1d6fb3ca61ab429ad8
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/bind.h

  Log Message:
  -----------
  [orc-rt] Host std::decay_t out of helper for orc_rt::bind_front. NFC. (#157785)

The helper implementation shouldn't differ based on how it's
initialized.


  Commit: 224cad63da281ef7b4c4f544b0106e7d5113b2f7
      https://github.com/llvm/llvm-project/commit/224cad63da281ef7b4c4f544b0106e7d5113b2f7
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/ScopeExit.h
    M orc-rt/unittests/ScopeExitTest.cpp

  Log Message:
  -----------
  [orc-rt] Use perfect forwarding for scope-exit initialization. (#157786)

Allows the use of move-only types with make_scope_exit.


  Commit: 27719745e3b0f7bed738a67498e751ca6d45bcdd
      https://github.com/llvm/llvm-project/commit/27719745e3b0f7bed738a67498e751ca6d45bcdd
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/WrapperFunction.h
    M orc-rt/unittests/SPSWrapperFunctionTest.cpp

  Log Message:
  -----------
  [orc-rt] Add WrapperFunction::handle support for fns, fn-ptrs. (#157787)

Adds support for using functions and function pointers to the
WrapperFunction::handle utility.


  Commit: 9f4cf6db7ef5b6e470568fbaf3f797574630e06d
      https://github.com/llvm/llvm-project/commit/9f4cf6db7ef5b6e470568fbaf3f797574630e06d
  Author: Lang Hames <lhames at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M orc-rt/include/orc-rt/SimplePackedSerialization.h
    M orc-rt/unittests/SimplePackedSerializationTest.cpp

  Log Message:
  -----------
  [orc-rt] Simplify construction of SPSSerializableExpected from values. (#157796)

Adds an overload of toSPSSerializableExpected that takes a plain T value
and returns an SPSSerializableExpected<T>. This will reduce some
boilerplate when creating SPSSerializableExpected values.


  Commit: 127d77d279de6547324c87f393164c604297c4d4
      https://github.com/llvm/llvm-project/commit/127d77d279de6547324c87f393164c604297c4d4
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/test/Transforms/PreISelIntrinsicLowering/expand-vp.ll

  Log Message:
  -----------
  [ExpandVectorPredication] Improve ALL-CONVERT checking in expand-vp.ll. NFC (#157735)

We weren't checking test_vp_int_vscale and we were missing vp.merge
CHECK lines.


  Commit: f059d2bac034acca39ad60a1b13aaec6afa0a3d6
      https://github.com/llvm/llvm-project/commit/f059d2bac034acca39ad60a1b13aaec6afa0a3d6
  Author: Tomer Shafir <tomer.shafir8 at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
    M llvm/lib/Target/AArch64/AArch64Features.td
    M llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
    M llvm/lib/Target/AArch64/AArch64Processors.td
    M llvm/test/CodeGen/AArch64/arm64-AdvSIMD-Scalar.ll
    M llvm/test/CodeGen/AArch64/arm64-zero-cycle-zeroing-fpr.ll
    M llvm/test/CodeGen/AArch64/dag-combine-concat-vectors.ll
    M llvm/test/CodeGen/AArch64/expand-select.ll
    M llvm/test/CodeGen/AArch64/ext-narrow-index.ll
    M llvm/test/CodeGen/AArch64/fsh.ll
    M llvm/test/CodeGen/AArch64/neon-dotreduce.ll
    M llvm/test/CodeGen/AArch64/sve-streaming-mode-fixed-length-masked-load.ll
    M llvm/test/CodeGen/AArch64/sve-streaming-mode-fixed-length-masked-store.ll
    M llvm/test/CodeGen/AArch64/vec-combine-compare-to-bitmask.ll
    M llvm/test/CodeGen/AArch64/vecreduce-add.ll

  Log Message:
  -----------
  [AArch64] Lower zero cycle FPR zeroing (#156261)

Lower FPR64, FPR32, FPR16 from `fmov` zeroing into NEON zeroing if the
target supports zero cycle zeroing of NEON registers but not for the
narrower classes.

It handles 2 cases: one in `AsmPrinter` where a FP zeroing from
immediate has been captured by pattern matching on instruction
selection, and second post RA in `AArch64InstrInfo::copyPhysReg` for
uncaptured/later-generated WZR/XZR fmovs.

Adds a subtarget feature called FeatureZCZeroingFPR128 that enables to
query wether the target supports zero cycle zeroing for FPR128 NEON
registers, and updates the appropriate processors.


  Commit: 39c8df3d0160ef26f239b1ebb49da63e36963308
      https://github.com/llvm/llvm-project/commit/39c8df3d0160ef26f239b1ebb49da63e36963308
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-09 (Tue, 09 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/test/CodeGen/RISCV/condops.ll

  Log Message:
  -----------
  [RISCV] Add VendorXTHeadCondMov to useInversedSetcc. (#157758)

These instructions have a eqz/nez operand like Zicond and
XVentanaCondOps so the goal of using bexti seems applicable to them as
well.


  Commit: 60dc68d3afe7f503a28fc37ad2daa7f76a987587
      https://github.com/llvm/llvm-project/commit/60dc68d3afe7f503a28fc37ad2daa7f76a987587
  Author: Jean-Didier PAILLEUX <jean-didier.pailleux at sipearl.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/include/flang/Optimizer/Builder/IntrinsicCall.h
    M flang/include/flang/Optimizer/Builder/Runtime/Coarray.h
    M flang/lib/Optimizer/Builder/IntrinsicCall.cpp
    M flang/lib/Optimizer/Builder/Runtime/Coarray.cpp
    A flang/test/Lower/Coarray/co_broadcast.f90
    A flang/test/Lower/Coarray/co_max.f90
    A flang/test/Lower/Coarray/co_min.f90
    A flang/test/Lower/Coarray/co_sum.f90

  Log Message:
  -----------
  [flang][Lower] Add Lowering for CO_{BROADCAST, MAX, MIN, SUM} to PRIF (#154770)

In relation to the approval and merge of the
https://github.com/llvm/llvm-project/pull/76088 specification about
multi-image features in Flang.
Here is a PR on adding support of the collectives CO_BROADCAST, CO_SUM,
CO_MIN and CO_MAX in conformance with the PRIF specification.

---------

Co-authored-by: Dan Bonachea <dobonachea at lbl.gov>


  Commit: 253d18d032bb17ced8a26d72623b6ade5933f6f3
      https://github.com/llvm/llvm-project/commit/253d18d032bb17ced8a26d72623b6ade5933f6f3
  Author: Phoebe Wang <phoebe.wang at intel.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/X86/X86RegisterInfo.cpp
    A llvm/test/CodeGen/X86/pr156817.ll

  Log Message:
  -----------
  [X86][LiveRegUnits] Exclude reserved registers from TargetRegisterClass (#157798)

Fixes regression casued by #156817.


  Commit: dd04668138aeb0b12e6d98e8a306fa3e1b99e4a6
      https://github.com/llvm/llvm-project/commit/dd04668138aeb0b12e6d98e8a306fa3e1b99e4a6
  Author: Pablo Antonio Martinez <pamartin at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/include/mlir/Conversion/GPUToROCDL/GPUToROCDLPass.h
    M mlir/include/mlir/Conversion/Passes.td
    M mlir/lib/Conversion/GPUToROCDL/LowerGpuOpsToROCDLOps.cpp

  Log Message:
  -----------
  [mlir][gpu] Refactor GpuOpsToROCDLOps pass interface (NFC) (#157402)

This PR deletes the `createLowerGpuOpsToROCDLOpsPass` constructor from
the .td file, making the `createConvertGpuOpsToROCDLOps` pass available
to users. This has the following effects:

1. `createLowerGpuOpsToROCDLOpsPass` is not available anymore. Instead,
`createConvertGpuOpsToROCDLOps` should be used. This makes the interface
consistent with ConvertGpuOpsToNVVMOps.

2. To call `createConvertGpuOpsToROCDLOps`, the options must be passed
via ConvertGpuOpsToROCDLOpsOptions. This has the side effect of
making the `allowed-dialects` option available, which was not accessible
via C++ before.


  Commit: 660441af7aaf842729832073d87f7ade1195222d
      https://github.com/llvm/llvm-project/commit/660441af7aaf842729832073d87f7ade1195222d
  Author: Piotr Fusik <p.fusik at samsung.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp

  Log Message:
  -----------
  [RISCV][NFC] Fix a misnamed variable (#157686)


  Commit: 6dacdc31ec7974a1cb048d945d9601304e93616a
      https://github.com/llvm/llvm-project/commit/6dacdc31ec7974a1cb048d945d9601304e93616a
  Author: Sam Parker <sam.parker at arm.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/WebAssembly/WebAssemblyISD.def
    M llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
    M llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
    M llvm/test/CodeGen/WebAssembly/int-mac-reduction-loops.ll

  Log Message:
  -----------
  [WebAssembly] extadd_pairwise for PartialReduce (#157669)

Avoid using extends, and adding the high and low half and use
extadd_pairwise instead.


  Commit: d685508bec02a676383b284d268fe8a2e4cbf7f3
      https://github.com/llvm/llvm-project/commit/d685508bec02a676383b284d268fe8a2e4cbf7f3
  Author: Dan Blackwell <dan_blackwell at apple.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M compiler-rt/test/fuzzer/sig-trap.test

  Log Message:
  -----------
  [libFuzzer] Change sig-trap test to allow expected output strings in any order (#157407)

I have seen some flakiness in this test where the 2 checked strings
appear in a different order. Due to buffering of writes, and that one of
these strings is written during the signal handler, I think this is
valid. 

This PR relaxes the test to allow those strings to appear in
either order.


  Commit: 4621e17dee138381bd11c1b8dfe656ab8238cc1a
      https://github.com/llvm/llvm-project/commit/4621e17dee138381bd11c1b8dfe656ab8238cc1a
  Author: ZhaoQi <zhaoqi01 at loongson.cn>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
    M llvm/test/CodeGen/AArch64/shufflevector.ll
    M llvm/test/CodeGen/Thumb2/active_lane_mask.ll
    M llvm/test/CodeGen/Thumb2/mve-complex-deinterleaving-i16-add.ll
    M llvm/test/CodeGen/Thumb2/mve-complex-deinterleaving-i8-add.ll
    M llvm/test/CodeGen/Thumb2/mve-fptosi-sat-vector.ll
    M llvm/test/CodeGen/Thumb2/mve-fptoui-sat-vector.ll
    M llvm/test/CodeGen/Thumb2/mve-laneinterleaving-cost.ll
    M llvm/test/CodeGen/Thumb2/mve-laneinterleaving.ll
    M llvm/test/CodeGen/Thumb2/mve-satmul-loops.ll
    M llvm/test/CodeGen/Thumb2/mve-sext-masked-load.ll
    M llvm/test/CodeGen/Thumb2/mve-vabdus.ll
    M llvm/test/CodeGen/Thumb2/mve-vld2.ll
    M llvm/test/CodeGen/Thumb2/mve-vld3.ll
    M llvm/test/CodeGen/Thumb2/mve-vld4-post.ll
    M llvm/test/CodeGen/Thumb2/mve-vld4.ll
    M llvm/test/CodeGen/Thumb2/mve-vmull-splat.ll
    M llvm/test/CodeGen/Thumb2/mve-vst3.ll
    M llvm/test/CodeGen/WebAssembly/vector-reduce.ll
    M llvm/test/CodeGen/X86/avx512fp16-mov.ll
    M llvm/test/CodeGen/X86/test-shrink-bug.ll
    M llvm/test/CodeGen/X86/vec_smulo.ll
    M llvm/test/CodeGen/X86/vec_umulo.ll

  Log Message:
  -----------
  [DAGCombiner] Relax condition for extract_vector_elt combine (#157658)

Checking `isOperationLegalOrCustom` instead of `isOperationLegal` allows
more optimization opportunities. In particular, if a target wants to
mark `extract_vector_elt` as `Custom` rather than `Legal` in order to
optimize some certain cases, this combiner would otherwise miss some
improvements.

Previously, using `isOperationLegalOrCustom` was avoided due to the risk
of getting stuck in infinite loops (as noted in
https://github.com/llvm/llvm-project/commit/61ec738b60a4fb47ec9b7195de55f1ecb5cbdb45).
After testing, the issue no longer reproduces, but the coverage is
limited to the regression/unit tests and the test-suite.


  Commit: 4d9a7fa9bad0d3f7eba801b784d4caa896d224d7
      https://github.com/llvm/llvm-project/commit/4d9a7fa9bad0d3f7eba801b784d4caa896d224d7
  Author: Mel Chen <mel.chen at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
    M llvm/test/Transforms/LoopVectorize/if-pred-non-void.ll
    M llvm/test/Transforms/LoopVectorize/vplan-printing.ll

  Log Message:
  -----------
  [VPlan] Remove dead recipes before simplifying blends (#157622)

In simplifyBlends, when normalizing a blend recipe, the first mask that
is used only by the blend and is not all-false is chosen, and its
corresponding incoming value becomes the initial value, with the others
blended into it. At the same time, the mask that is chosen can be
eliminated. However, a multi-user mask might be used by a dead recipe,
which prevents this optimization. This patch moves removeDeadRecipes
before simplifyBlends to eliminate dead recipes, allowing simplifyBlends
to remove more dead masks.


  Commit: bed9be954d5a8e4166629e489052c96e8cb24f99
      https://github.com/llvm/llvm-project/commit/bed9be954d5a8e4166629e489052c96e8cb24f99
  Author: Pierre van Houtryve <pierre.vanhoutryve at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/GCNSubtarget.h
    M llvm/lib/Target/AMDGPU/SIInstrInfo.h
    M llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
    M llvm/lib/Target/AMDGPU/SOPInstructions.td
    M llvm/test/CodeGen/AMDGPU/GlobalISel/fp64-atomics-gfx90a.ll
    M llvm/test/CodeGen/AMDGPU/atomics-system-scope.ll
    M llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
    M llvm/test/CodeGen/AMDGPU/fp-atomics-gfx942.ll
    M llvm/test/CodeGen/AMDGPU/fp64-atomics-gfx90a.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.cooperative.atomic-agent.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.cooperative.atomic-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-barriers.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-fence-mmra-global.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-fence.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-agent.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-lastuse.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-nontemporal.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-singlethread.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-volatile.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-wavefront.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-agent.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-lastuse.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-nontemporal.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-singlethread.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-volatile.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-wavefront.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-local-agent.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-local-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-local-volatile.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-local-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-agent.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-singlethread.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-wavefront.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-workgroup.ll

  Log Message:
  -----------
  [AMDGPU][gfx1250] Implement SIMemoryLegalizer (#154726)

Implements the base of the MemoryLegalizer for a roughly correct GFX1250 memory model.
Documentation will come later, and some remaining changes still have to be added, but this is the backbone of the model.


  Commit: dcaa29c8ed6cc3b62368cdd609f2d05a25541366
      https://github.com/llvm/llvm-project/commit/dcaa29c8ed6cc3b62368cdd609f2d05a25541366
  Author: Pierre van Houtryve <pierre.vanhoutryve at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/docs/AMDGPUUsage.rst
    M llvm/include/llvm/Support/AMDHSAKernelDescriptor.h
    M llvm/lib/Target/AMDGPU/AMDGPU.td
    M llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
    M llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
    M llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
    M llvm/lib/Target/AMDGPU/GCNSubtarget.h
    M llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
    M llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
    R llvm/test/CodeGen/AMDGPU/gfx1250-no-scope-cu-stores.ll
    M llvm/test/MC/AMDGPU/hsa-gfx1250-v4.s
    M llvm/test/MC/Disassembler/AMDGPU/kernel-descriptor-errors.test
    M llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-gfx1250.s

  Log Message:
  -----------
  Revert "[AMDGPU][gfx1250] Add `cu-store` subtarget feature (#150588)" (#157639)

This reverts commit be17791f2624f22b3ed24a2539406164a379125d.

This is not necessary for gfx1250 anymore.


  Commit: 212ba92d308d52451dd27dfca06fd3b32f2dce77
      https://github.com/llvm/llvm-project/commit/212ba92d308d52451dd27dfca06fd3b32f2dce77
  Author: Justin Riddell <arghnews at hotmail.co.uk>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/X86/X86ISelLowering.cpp
    A llvm/test/CodeGen/X86/ifma-combine-vpmadd52.ll

  Log Message:
  -----------
  [X86] Recognise VPMADD52L pattern with AVX512IFMA/AVXIFMA (#153787) (#156714)

Match `(X * Y) + Z` in `combineAdd`. If target supports and we don't
overflow (ie. we know the top 12 bits are unset), rewrite using
VPMADD52L

Have just done the `L` version for now at least, wanted to get feedback
before continuing


  Commit: bc65352ab5eeabecd6d8dca0ca1d5a628101dfde
      https://github.com/llvm/llvm-project/commit/bc65352ab5eeabecd6d8dca0ca1d5a628101dfde
  Author: Trevor Gross <tmgross at umich.edu>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/CodeGen/X86/llrint-conv.ll
    M llvm/test/CodeGen/X86/llround-conv.ll
    M llvm/test/CodeGen/X86/lrint-conv-i32.ll
    M llvm/test/CodeGen/X86/lrint-conv-i64.ll
    M llvm/test/CodeGen/X86/lround-conv-i32.ll
    M llvm/test/CodeGen/X86/lround-conv-i64.ll

  Log Message:
  -----------
  [X86][Test] Update tests for `lround` and `llrint` (NFC) (#157807)

Apply the following changes:

* Ensure all float types are covered (`f16` and `f128` were often
missing)
* Switch to more straightforward test names
* Remove some CHECK directives that are outdated (prefix changed but the
directive did not get removed)
* Add common check prefixes to merge similar blocks
* Test a more similar set of platforms
* Add missing `nounwind`
* Test `strictfp` for each libcall where possible

This is a pre-test for [1].

[1]: https://github.com/llvm/llvm-project/pull/152684


  Commit: ffcf82c4a8966450ee1ccf742287c9b2bdef2e26
      https://github.com/llvm/llvm-project/commit/ffcf82c4a8966450ee1ccf742287c9b2bdef2e26
  Author: Frederik Harwath <frederik.harwath at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/ExpandFp.cpp
    M llvm/lib/Passes/PassBuilder.cpp
    M llvm/lib/Passes/PassRegistry.def
    M llvm/test/CodeGen/AMDGPU/llc-pipeline-npm.ll
    M llvm/test/Transforms/ExpandFp/AMDGPU/frem-inf.ll
    M llvm/test/Transforms/ExpandFp/AMDGPU/frem.ll
    A llvm/test/Transforms/ExpandFp/pass-parameters.ll

  Log Message:
  -----------
  [AMDGPU] Change expand-fp opt level argument syntax (#157408)

Align the syntax used for the optimization level argument of the
expand-fp pass in textual descriptions of pass pipelines with the syntax
used by other passes taking a similar argument. That is, use e.g.
`expand-fp<O1>` instead of `expand-fp<opt-level=1>`.


  Commit: a975e64239ec30e000fb254bc21f526161a97dcd
      https://github.com/llvm/llvm-project/commit/a975e64239ec30e000fb254bc21f526161a97dcd
  Author: Trevor Gross <tmgross at umich.edu>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    A llvm/test/CodeGen/PowerPC/half.ll
    R llvm/test/CodeGen/PowerPC/handle-f16-storage-type.ll

  Log Message:
  -----------
  [PowerPC] Extend and update the test for `half` support (NFC) (#152625)

`f16` is more functional than just a storage type on the platform,
though it does have some codegen issues [1]. To prepare for future
changes, do the following nonfunctional updates to the existing `half`
test:

* Add tests for passing and returning the type directly.
* Add tests showing bitcast behavior, which is currently incorrect but
serves as a baseline.
* Add tests for `fabs` and `copysign` (trivial operations that shouldn't
require libcalls).
* Add invocations for big-endian and for PPC32.
* Rename the test to `half.ll` to reflect its status, which also matches
other backends.

[1]: https://github.com/llvm/llvm-project/issues/97975


  Commit: d6d0f4f156e27e5171475d229b8ea2616c2b3d0c
      https://github.com/llvm/llvm-project/commit/d6d0f4f156e27e5171475d229b8ea2616c2b3d0c
  Author: Pierre van Houtryve <pierre.vanhoutryve at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
    M llvm/test/CodeGen/AMDGPU/GlobalISel/fp64-atomics-gfx90a.ll
    M llvm/test/CodeGen/AMDGPU/atomics-system-scope.ll
    M llvm/test/CodeGen/AMDGPU/bf16-conversions.ll
    M llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
    M llvm/test/CodeGen/AMDGPU/flat-saddr-store.ll
    M llvm/test/CodeGen/AMDGPU/fp64-atomics-gfx90a.ll
    M llvm/test/CodeGen/AMDGPU/gfx1250-scratch-scope-se.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.cvt.sat.pk.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.perm.pk.ll
    M llvm/test/CodeGen/AMDGPU/loop-prefetch-data.ll
    M llvm/test/CodeGen/AMDGPU/mad_u64_u32.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-agent.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-lastuse.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-nontemporal.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-singlethread.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-volatile.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-wavefront.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-agent.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-singlethread.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-wavefront.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/packed-fp32.ll
    M llvm/test/CodeGen/AMDGPU/scale-offset-flat.ll
    M llvm/test/CodeGen/AMDGPU/scale-offset-scratch.ll
    M llvm/test/CodeGen/AMDGPU/whole-wave-functions.ll

  Log Message:
  -----------
  [AMDGPU][gfx1250] Remove SCOPE_SE for scratch stores (#157640)


  Commit: b965f265388abd6abba7d553927ba7c154026af2
      https://github.com/llvm/llvm-project/commit/b965f265388abd6abba7d553927ba7c154026af2
  Author: Fabian Ritter <fabian.ritter at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
    A llvm/test/CodeGen/AMDGPU/promote-alloca-negative-index.ll

  Log Message:
  -----------
  [AMDGPU] Treat GEP offsets as signed in AMDGPUPromoteAlloca (#157682)

[AMDGPU] Treat GEP offsets as signed in AMDGPUPromoteAlloca

AMDGPUPromoteAlloca can transform i32 GEP offsets that operate on
allocas into i64 extractelement indices. Before this patch, negative GEP
offsets would be zero-extended, leading to wrong extractelement indices
with values around (2**32-1).

This fixes failing LlvmLibcCharacterConverterUTF32To8Test tests for
AMDGPU.


  Commit: d4f79954881617e0086ea454d37c5c881ec13572
      https://github.com/llvm/llvm-project/commit/d4f79954881617e0086ea454d37c5c881ec13572
  Author: Stephen Tozer <stephen.tozer at sony.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp

  Log Message:
  -----------
  [VPlan] Use Unknown instead of empty location in VPlanTransforms (#157702)

The default values for DebugLocs in LoopVectorizer/VPlan were recently
updated from empty DebugLocs to DebugLoc::getUnknown, as part of the
DebugLoc Coverage Tracking work. However, there are some cases where we
also pass an explicit empty DebugLoc, in many cases as a filler
argument. This patch updates all of these to `getUnknown` for now, until
either valid locations or a suitable categorization can be assigned to
each instead.

This change is NFC outside of DebugLoc coverage tracking builds.


  Commit: 7f4c297e94dd604d66429dd0eb85c79e4d8c50a9
      https://github.com/llvm/llvm-project/commit/7f4c297e94dd604d66429dd0eb85c79e4d8c50a9
  Author: Sergei Barannikov <barannikov88 at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Target/Target.td
    M llvm/lib/Target/AArch64/AArch64RegisterInfo.td
    M llvm/lib/Target/Hexagon/Hexagon.td
    M llvm/lib/Target/LoongArch/LoongArch.td
    M llvm/lib/Target/RISCV/RISCVFeatures.td
    M llvm/lib/Target/SystemZ/SystemZFeatures.td
    M llvm/test/TableGen/GlobalISelEmitter/HwModes.td
    M llvm/test/TableGen/HwModeBitSet.td
    M llvm/test/TableGen/HwModeEncodeAPInt.td
    M llvm/test/TableGen/HwModeEncodeDecode.td
    M llvm/test/TableGen/HwModeEncodeDecode2.td
    M llvm/test/TableGen/HwModeEncodeDecode3.td
    M llvm/test/TableGen/HwModeSelect.td
    M llvm/test/TableGen/HwModeSubRegs.td
    M llvm/test/TableGen/VarLenEncoderHwModes.td
    M llvm/utils/TableGen/Common/CodeGenDAGPatterns.cpp
    M llvm/utils/TableGen/Common/CodeGenHwModes.cpp
    M llvm/utils/TableGen/Common/CodeGenHwModes.h
    M llvm/utils/TableGen/Common/SubtargetFeatureInfo.cpp
    M llvm/utils/TableGen/Common/SubtargetFeatureInfo.h
    M llvm/utils/TableGen/SubtargetEmitter.cpp

  Log Message:
  -----------
  [TableGen][CodeGen] Remove feature string from HwMode (#157600)

`Predicates` and `Features` fields serve the same purpose. They should
be kept in sync, but not all predicates are based on features. This
resulted in introducing dummy features for that only reason.

This patch removes `Features` field and changes TableGen emitters to use
`Predicates` instead.

Historically, predicates were written with the assumption that the
checking code will be used in `SelectionDAGISel` subclasses, meaning
they will have access to the subclass variables, such as `Subtarget`.
There are no such variables in the generated
`GenSubtargetInfo::getHwModeSet()`, so we need to provide them. This can
be achieved by subclassing `HwModePredicateProlog`, see an example in
`Hexagon.td`.


  Commit: 49a898f9b5f6ebc82bdcf5b1cac1f5de22b91d33
      https://github.com/llvm/llvm-project/commit/49a898f9b5f6ebc82bdcf5b1cac1f5de22b91d33
  Author: Pierre van Houtryve <pierre.vanhoutryve at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/docs/AMDGPUUsage.rst
    M llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.cpp
    M llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.h
    M llvm/lib/Target/AMDGPU/GCNSubtarget.h
    M llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-fence.ll
    A llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-cluster.ll
    A llvm/test/CodeGen/AMDGPU/memory-legalizer-global-cluster.ll
    A llvm/test/CodeGen/AMDGPU/memory-legalizer-local-cluster.ll
    A llvm/test/CodeGen/AMDGPU/memory-legalizer-private-cluster.ll

  Log Message:
  -----------
  [AMDGPU][gfx1250] Support "cluster" syncscope (#157641)

Defaults to "agent" for targets that do not support it.

- Add documentation
- Register it in MachineModuleInfo
- Add MemoryLegalizer support


  Commit: 1f53cc0c540484377f4a6a0f93ed7a6c82084ecd
      https://github.com/llvm/llvm-project/commit/1f53cc0c540484377f4a6a0f93ed7a6c82084ecd
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop1_dpp8.txt

  Log Message:
  -----------
  AMDGPU: Update baseline test checks in disassembler test (#157816)

This test is strange since it's full of decoding failure warnings


  Commit: 0b28614f32bfcfd075a46fe55671358dde5ac4e9
      https://github.com/llvm/llvm-project/commit/0b28614f32bfcfd075a46fe55671358dde5ac4e9
  Author: Vinay Deshmukh <vinay_deshmukh at outlook.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M libcxx/include/__memory/pointer_traits.h

  Log Message:
  -----------
  [NFC][libc++] Fix typo in `libcxx/include/__memory/pointer_traits.h` (#157304)

* Apply the typo fix as a separate NFC patch from here:
https://github.com/llvm/llvm-project/pull/134330/files#r2313015079


  Commit: 8f7e8c425bc80fc3fc7f0d81d2444c580bedabe9
      https://github.com/llvm/llvm-project/commit/8f7e8c425bc80fc3fc7f0d81d2444c580bedabe9
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/MC/AMDGPU/vop3-literal.s

  Log Message:
  -----------
  AMDGPU: Fix using unaligned VGPR in literal test (#157817)

Make sure the tested error is the literal error, not
for unaligned registers.


  Commit: 0b696a86dd4834359c633561394e4d7a24b1b501
      https://github.com/llvm/llvm-project/commit/0b696a86dd4834359c633561394e4d7a24b1b501
  Author: Utkarsh Saxena <usx at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M .github/new-prs-labeler.yml

  Log Message:
  -----------
  [LifetimeSafety] Add PR labeler automation (#157820)

This will add label `clang:temporal-safety` to PRs touching the mentioned files.


  Commit: 2fb29f8ee60305adfc2b7c8fb29a9379c1ebd184
      https://github.com/llvm/llvm-project/commit/2fb29f8ee60305adfc2b7c8fb29a9379c1ebd184
  Author: Balazs Benics <benicsbalazs at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/lib/Analysis/LiveVariables.cpp

  Log Message:
  -----------
  [analyzer][NFC] Modernize LivenessValues::isLive (#157800)

Removing statefullness also adds the benefit of short circuiting.


  Commit: c3e76b27709f93c9e945caa29dae596b581289e2
      https://github.com/llvm/llvm-project/commit/c3e76b27709f93c9e945caa29dae596b581289e2
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/VPlan.h
    M llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
    M llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
    M llvm/test/Transforms/LoopVectorize/PowerPC/vectorize-bswap.ll
    M llvm/test/Transforms/LoopVectorize/X86/scatter_crash.ll
    M llvm/test/Transforms/LoopVectorize/flags.ll

  Log Message:
  -----------
  [VPlan] Keep common flags during CSE. (#157664)

During CSE, we don't have to drop all poison-generating flags on
mis-match, we can keep the ones common on both recipes.

PR: https://github.com/llvm/llvm-project/pull/157664


  Commit: b40d233797966ed88638d0665a7faa825e5230af
      https://github.com/llvm/llvm-project/commit/b40d233797966ed88638d0665a7faa825e5230af
  Author: Frederik Harwath <frederik.harwath at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    A llvm/test/Transforms/ExpandFp/AMDGPU/pass-parameters.ll
    R llvm/test/Transforms/ExpandFp/pass-parameters.ll

  Log Message:
  -----------
  [AMDGPU] Fix PR #157408 test failures (#157823)

The test introduced by PR #157408 requires the amdgpu target. Move it to
the subdirectory which only runs if the target is available.


  Commit: b3306cbb53390444cfbf45cee30e15b1760e526e
      https://github.com/llvm/llvm-project/commit/b3306cbb53390444cfbf45cee30e15b1760e526e
  Author: Bushev Dmitry <dmitry.bushev at syntacore.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Scalar/DFAJumpThreading.cpp

  Log Message:
  -----------
  [DFAJumpThreading] Prevent pass from using too much memory. (#153193)

The limit 'dfa-max-num-paths' that is used to control number of
enumerated paths was not checked against inside getPathsFromStateDefMap.
It may lead to large memory consumption for complex enough switch
statements.

Reland llvm/llvm-project#145482


  Commit: 731ba68e800d100b7b56e479700a2a62e407abd2
      https://github.com/llvm/llvm-project/commit/731ba68e800d100b7b56e479700a2a62e407abd2
  Author: Michael Kruse <llvm-project at meinersbur.de>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Utils/CMakeLists.txt

  Log Message:
  -----------
  [Flang][Utils] Fix BUILD_SHARED_LIBS build (#157828)

Required for `BUILD_SHARED_LIBS=ON` builds with optimizations disabled
for the new FortranUtils library.

Also see #150027 #155422


  Commit: e03fcced1e6c887be0a3086a732ef06fafc30372
      https://github.com/llvm/llvm-project/commit/e03fcced1e6c887be0a3086a732ef06fafc30372
  Author: Louis Dionne <ldionne.2 at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    R libcxx/utils/cat_files.py

  Log Message:
  -----------
  [libc++] Remove the unused cat_files.py script (#157744)

There are no references to it anymore in the codebase.


  Commit: ead0e976ed870ce10e88e94f6bac307190a70e62
      https://github.com/llvm/llvm-project/commit/ead0e976ed870ce10e88e94f6bac307190a70e62
  Author: Stephen Tozer <stephen.tozer at sony.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp

  Log Message:
  -----------
  [DebugInfo][Mem2Reg] Assign uninitialized values with annotated locs (#157716)

In PromoteMem2Reg, we perform a DFS over the CFG and track, for each
alloca, its incoming value and its associated incoming DebugLoc, both of
which are taken from stores to that alloca; these values and DebugLocs
are propagated to PHI nodes when new blocks are reached. In the event
that for one incoming edge no store instruction has been seen, we
propagate an UndefValue and an empty DebugLoc to the PHI.

This is a perfectly valid occurrence, and assigning an empty DebugLoc to
the PHI is the correct course of action; therefore, we should pass an
annotated DebugLoc instead, so that in DebugLoc coverage tracking we
correctly do not expect a valid DebugLoc to be present; we generally
mark allocas as having CompilerGenerated locations, so I've chosen to
use the same annotation to represent the uninitialized value of that
alloca.

This change is NFC outside of DebugLoc coverage tracking builds.


  Commit: 85fb1f1b776d68aa1c01b1f671343daaacf32058
      https://github.com/llvm/llvm-project/commit/85fb1f1b776d68aa1c01b1f671343daaacf32058
  Author: Aaditya <115080342+easyonaadit at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    M llvm/lib/Target/AMDGPU/SIInstructions.td
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.max.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.min.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.umax.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.umin.ll

  Log Message:
  -----------
  [AMDGPU] Extending wave reduction intrinsics for `i64` types - 1 (#150169)

Supporting Min/Max Operations: `min`, `max`, `umin`, `umax`


  Commit: 63647074ba97dc606c7ba48c3800ec08ca501d92
      https://github.com/llvm/llvm-project/commit/63647074ba97dc606c7ba48c3800ec08ca501d92
  Author: Mehdi Amini <joker.eph at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/include/mlir/Dialect/Bufferization/IR/Bufferization.h
    M mlir/include/mlir/Dialect/Bufferization/IR/BufferizationOps.td
    M mlir/include/mlir/Dialect/Linalg/IR/Linalg.h
    M mlir/include/mlir/Dialect/MemRef/IR/MemRef.h
    M mlir/include/mlir/Dialect/MemRef/IR/MemRefOps.td
    M mlir/include/mlir/Interfaces/CMakeLists.txt
    R mlir/include/mlir/Interfaces/CopyOpInterface.h
    R mlir/include/mlir/Interfaces/CopyOpInterface.td
    M mlir/lib/Interfaces/CMakeLists.txt
    R mlir/lib/Interfaces/CopyOpInterface.cpp
    M mlir/test/lib/Dialect/Test/TestDialect.h
    M mlir/test/lib/Dialect/Test/TestOps.h
    M mlir/test/lib/Dialect/Test/TestOps.td

  Log Message:
  -----------
  [MLIR] Remove CopyOpInterface (#157711)

This interface isn't used anywhere anymore.


  Commit: 0a83e96f6616c79a2ac63588a550ed420798791f
      https://github.com/llvm/llvm-project/commit/0a83e96f6616c79a2ac63588a550ed420798791f
  Author: Oleksandr "Alex" Zinenko <git at ozinenko.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M .ci/all_requirements.txt
    M mlir/cmake/modules/AddMLIRPython.cmake
    M mlir/examples/standalone/python/CMakeLists.txt
    M mlir/python/CMakeLists.txt
    R mlir/python/mlir/_mlir_libs/.gitignore
    A mlir/python/mlir/_mlir_libs/_mlir/__init__.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/dialects/pdl.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/dialects/quant.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/dialects/transform/__init__.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/ir.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/passmanager.pyi
    A mlir/python/mlir/_mlir_libs/_mlirExecutionEngine.pyi
    M mlir/python/requirements.txt

  Log Message:
  -----------
  Revert stubgen-related patches (#157831)

Despite several hotfixes, things remain broken, in particular:

- installation/distribution (`ninja install / install-distribution`);
- downstream projects with bindings exposed.

See
https://github.com/llvm/llvm-project/pull/157583#issuecomment-3274164357
for more details.

Reverts #155741, #157583, #157697. Let's make sure things are fixed and
re-land as a unit.


  Commit: 57391423450ad82a932804d5ef7cce40c841714c
      https://github.com/llvm/llvm-project/commit/57391423450ad82a932804d5ef7cce40c841714c
  Author: Hassnaa Hamdi <hassnaa.hamdi at arm.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/Transforms/LoopVectorize/AArch64/sve-epilog-vscale-fixed.ll

  Log Message:
  -----------
  [LV][AArch64][NFC]: Change TC in a test case. (#157512)

- In sve-epilog-vscale-fixed.ll file, it tests the preference of
fixed-width epilogue VF vs scalable when costs are equal. This NFC patch
is changing the TC in the test case to be unknown to avoid folding the
epilogue in future LV changes.


  Commit: be773c1554b54fee3ef60e87097494a5139f1ec2
      https://github.com/llvm/llvm-project/commit/be773c1554b54fee3ef60e87097494a5139f1ec2
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/Mips/MipsSubtarget.cpp

  Log Message:
  -----------
  Revert "Mips: Force 64bit subtarget feature to be set for ABI options (#157446)" (#157833)

This reverts commit 7768cca2c6617523e38ba9a8a3e8366752992ec5.

This is less necessary after 7f4c297e94dd604d66429dd0eb85c79e4d8c50a9


  Commit: 0f05f927f8a63e7fcb1158e68dd3f2c592c744a1
      https://github.com/llvm/llvm-project/commit/0f05f927f8a63e7fcb1158e68dd3f2c592c744a1
  Author: Carlos Andres Ramirez <CarlosAndresRamirez at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/docs/QualGroup.rst

  Log Message:
  -----------
  LLVM Qualification Group - Backlog documentation and Discussion Updates (#156184)

I have created backlog file for the Qualification group that contains
all the topics currently under discussion and I have added the new
section in the main group's page, referencing the backlog.

This Backlog will be used as the quick reference for anyone to know what
are the current topics under discussion and what priorities have been
given to them by the group.

Note for future editors: Add "Last updated:" comment on top of the
document, easily keep track of the last updated dates.


  Commit: 349544d7ab353475ac5983b3964ef2ec0f108e2d
      https://github.com/llvm/llvm-project/commit/349544d7ab353475ac5983b3964ef2ec0f108e2d
  Author: Jay Foad <jay.foad at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/MachineInstrBundle.cpp
    M llvm/test/CodeGen/AArch64/blr-bti-preserves-operands.mir
    M llvm/test/CodeGen/AMDGPU/finalizebundle.mir

  Log Message:
  -----------
  [CodeGen] Fix handling dead redefs in finalizeBundle (#157427)

A dead redefinition should override any earlier non-dead definition
inside a bundle.

Also remove KilledDefSet since it can be folded into DeadDefSet.


  Commit: 1c58bc77bc2e2a3352db8a8ddc6717bdd957b44b
      https://github.com/llvm/llvm-project/commit/1c58bc77bc2e2a3352db8a8ddc6717bdd957b44b
  Author: Karlo Basioli <k.basioli at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
    M utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel

  Log Message:
  -----------
  [mlir][bazel] Fix build issues caused by #157711 (#157838)


  Commit: 3327a4c8f63b37301eaed2b9af8c0c696dff13fb
      https://github.com/llvm/llvm-project/commit/3327a4c8f63b37301eaed2b9af8c0c696dff13fb
  Author: Tobias Stadler <mail at stadler-tobias.de>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    R llvm/include/llvm/Remarks/BitstreamRemarkParser.h
    M llvm/lib/Remarks/BitstreamRemarkParser.cpp
    M llvm/lib/Remarks/BitstreamRemarkParser.h

  Log Message:
  -----------
  [Remarks] Move BitstreamRemarkParser helpers to private header (NFC) (#156302)

These helpers are only used in the implementation, and we also don't
expose similar details for the YAMLRemarkParser.

Pull Request: https://github.com/llvm/llvm-project/pull/156302


  Commit: 9465ef54067625cfbcd0dcbb0ab2991a974d51e3
      https://github.com/llvm/llvm-project/commit/9465ef54067625cfbcd0dcbb0ab2991a974d51e3
  Author: Fabian Mora <fmora.dev at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/include/mlir/TableGen/Operator.h
    M mlir/lib/TableGen/Operator.cpp
    M mlir/test/mlir-tblgen/op-decl-and-defs.td
    M mlir/tools/mlir-tblgen/OpDefinitionsGen.cpp

  Log Message:
  -----------
  [mlir][tblgen] Fix bug when mixing props and InferTypes (#157367)

This patch fixes a bug occurring when properties are mixed with any of
the InferType traits, causing tblgen to crash. A simple reproducer is:
```
def _TypeInferredPropOp : NS_Op<"type_inferred_prop_op_with_properties", [
    AllTypesMatch<["value", "result"]>
  ]> {
  let arguments = (ins Property<"unsigned">:$prop, AnyType:$value);
  let results = (outs AnyType:$result);
  let hasCustomAssemblyFormat = 1;
}
```

The issue occurs because of the call:
```
op.getArgToOperandOrAttribute(infer.getIndex());
```
To understand better the issue, consider:
```
attrOrOperandMapping = [Operand0]
arguments = [Prop0, Operand0]
```
In this case, `infer.getIndex()` will return `1` for `Operand0`, but
`getArgToOperandOrAttribute` expects `0`, causing the discrepancy that
causes the crash.

The fix is to change `attrOrOperandMapping` to also include props.


  Commit: 94e2c19f86a699d7a19ff0f4130b696699189c8d
      https://github.com/llvm/llvm-project/commit/94e2c19f86a699d7a19ff0f4130b696699189c8d
  Author: BaiXilin <54905170+BaiXilin at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/BuiltinsX86.td
    M clang/lib/Headers/avx512vlvnniintrin.h
    M clang/lib/Headers/avx512vnniintrin.h
    M clang/lib/Headers/avxvnniintrin.h
    M clang/test/CodeGen/X86/avx512vlvnni-builtins.c
    M clang/test/CodeGen/X86/avx512vnni-builtins.c
    M clang/test/CodeGen/X86/avxvnni-builtins.c
    M llvm/include/llvm/IR/IntrinsicsX86.td
    M llvm/lib/IR/AutoUpgrade.cpp
    M llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
    M llvm/test/CodeGen/X86/avx512vl_vnni-intrinsics.ll
    M llvm/test/CodeGen/X86/avx512vnni-intrinsics-upgrade.ll
    M llvm/test/CodeGen/X86/avx512vnni-intrinsics.ll
    A llvm/test/CodeGen/X86/avx_vnni-intrinsics-upgrade.ll
    M llvm/test/CodeGen/X86/avx_vnni-intrinsics.ll
    M llvm/test/CodeGen/X86/stack-folding-int-avxvnni.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx512vl_vnni-intrinsics-upgrade.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx512vl_vnni-intrinsics.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx512vnni-intrinsics-upgrade.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx512vnni-intrinsics.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx_vnni-intrinsics.ll

  Log Message:
  -----------
  [x86][AVX-VNNI] Fix VPDPBUSD Argument Types (#155194)

Fixed intrinsic VPDPBUSD[,S]_128/256/512's argument types to match with the ISA.

Fixes part of #97271


  Commit: a76b02ddebf365c578f4902bba6946e8c2bfb1fc
      https://github.com/llvm/llvm-project/commit/a76b02ddebf365c578f4902bba6946e8c2bfb1fc
  Author: Aaditya <115080342+easyonaadit at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    M llvm/lib/Target/AMDGPU/SIInstructions.td
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.add.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.sub.ll

  Log Message:
  -----------
  [AMDGPU] Extending wave reduction intrinsics for `i64` types - 2 (#151309)

Supporting Arithemtic Operations: `add`, `sub`


  Commit: 79e93178934eb93acf252de093c263f4db9eb8b7
      https://github.com/llvm/llvm-project/commit/79e93178934eb93acf252de093c263f4db9eb8b7
  Author: Stephen Tozer <stephen.tozer at sony.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/IR/DebugLoc.cpp

  Log Message:
  -----------
  [DebugInfo] When merging locations prefer unannotated empty locs (#157707)

When merging DILocations, we prefer to use DebugLoc::getMergedLocation
when possible to better preserve DebugLoc coverage tracking information
through transformations (as conversion to DILocations drops all coverage
tracking data). Currently, DebugLoc::getMergedLocation checks to see if
either DebugLoc is empty and returns it directly if so, to propagate
that DebugLoc's coverage tracking data to the merged location; however,
it only checks whether either location is valid, not whether they are
annotated.

This is significant because an annotated location is not a bug, while an
empty unannotated location may be one; therefore, we check to see if
either location is unannotated, and prefer to return that location if it
exists rather than an annotated one.

This change is NFC outside of DebugLoc coverage tracking builds.


  Commit: acea1f512ea804d7c35b60682f62327dceea1e18
      https://github.com/llvm/llvm-project/commit/acea1f512ea804d7c35b60682f62327dceea1e18
  Author: Rahul Joshi <rjoshi at nvidia.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/TableGen/HwModeEncodeAPInt.td
    M llvm/test/TableGen/HwModeEncodeDecode3.td
    M llvm/utils/TableGen/CodeEmitterGen.cpp

  Log Message:
  -----------
  [LLVM][MC][CodeEmitterGen] Reduce various `InstBits` table sizes (#156213)

Change various `InstBits` tables have an entry only for non-pseudo
target instructions and adjust the indexing into these tables
accordingly.

Some minor refactoring related to this:
- Use early return after handling variable length encodings
- Reduce the scope of anonymous namespace to just the class declaration.

Example reductions in these table sizes for some targets:

```
Target      FirstSupportedOpcode         Reduction in size
AMDGPU                     10813         10813 * 16 = 168KB
RISCV                      12051         12051 * 8 = 94KB
```


  Commit: 93b91730757cb6216464980d2a78350557d048a7
      https://github.com/llvm/llvm-project/commit/93b91730757cb6216464980d2a78350557d048a7
  Author: David Sherwood <david.sherwood at arm.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Analysis/TargetTransformInfo.h

  Log Message:
  -----------
  [Analysis][NFC] Improve documentation for getMemoryOpCost (#156875)

The operand info argument appears to refer to different things depending
upon whether it's a load or a store, so I've clarified this in the
documentation.


  Commit: 5b81367960e71d40b948f433664790ec8a19f224
      https://github.com/llvm/llvm-project/commit/5b81367960e71d40b948f433664790ec8a19f224
  Author: Fabian Ritter <fabian.ritter at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
    M llvm/test/CodeGen/AMDGPU/promote-alloca-multidim.ll
    M llvm/test/CodeGen/AMDGPU/promote-alloca-negative-index.ll
    M llvm/test/CodeGen/AMDGPU/promote-alloca-vector-gep-of-gep.ll

  Log Message:
  -----------
  [AMDGPU] Generate canonical additions in AMDGPUPromoteAlloca (#157810)

When we know that one operand of an addition is a constant, we might was
well put it on the right-hand side and avoid the work to canonicalize it
in a later pass.


  Commit: 3c810b76b97456e4e1c115dcf3238a799067c466
      https://github.com/llvm/llvm-project/commit/3c810b76b97456e4e1c115dcf3238a799067c466
  Author: Graham Hunter <graham.hunter at arm.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
    M llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
    M llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
    M llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    M llvm/test/Transforms/LoopVectorize/control-flow.ll
    M llvm/test/Transforms/LoopVectorize/early_exit_store_legality.ll

  Log Message:
  -----------
  [LV] Add initial legality checks for early exit loops with side effects (#145663)

This adds initial support to LoopVectorizationLegality to analyze loops
with side effects (particularly stores to memory) and an uncountable
exit. This patch alone doesn't enable any new transformations, but
does give clearer reasons for rejecting vectorization for such a loop.

The intent is for a loop like the following to pass the specific checks,
and only be rejected at the end until the transformation code is
committed:

```
// Assume a is marked restrict
// Assume b is known to be large enough to access up to b[N-1]
for (int i = 0; i < N; ++) {
  a[i]++;
  if (b[i] > threshold)
    break;
}
```


  Commit: b7e31e746298002e99306ff6c3be2ad6baaea24f
      https://github.com/llvm/llvm-project/commit/b7e31e746298002e99306ff6c3be2ad6baaea24f
  Author: Ramkumar Ramachandra <ramkumar.ramachandra at codasip.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Analysis/LoopAccessAnalysis.cpp

  Log Message:
  -----------
  [LAA] Strip findForkedPointer (NFC) (#140298)

Remove a level of indirection due to findForkedPointer, in an effort to
improve code.


  Commit: 106eb4623d0c50cd14a7bdf08d159eef6907d0d7
      https://github.com/llvm/llvm-project/commit/106eb4623d0c50cd14a7bdf08d159eef6907d0d7
  Author: Benjamin Maxwell <benjamin.maxwell at arm.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
    M llvm/lib/Target/AArch64/AArch64FrameLowering.h
    A llvm/lib/Target/AArch64/AArch64PrologueEpilogue.cpp
    A llvm/lib/Target/AArch64/AArch64PrologueEpilogue.h
    M llvm/lib/Target/AArch64/CMakeLists.txt

  Log Message:
  -----------
  [AArch64] Break up `AArch64FrameLowering::emitPrologue` (NFCI) (#157485)

`emitPrologue` was almost 1k SLOC, with a large portion not actually
related to emitting the vast majority of prologues.

This patch creates a new class `AArch64PrologueEmitter` for emitting the
prologue, which keeps common state/target classes as members. This makes
adding methods that handle niche cases easy, and allows methods to be
marked "const" when they don't redefine flags/state.

With this change, the core "emitPrologue" is around 275 LOC, with cases
like Windows stack probes or Swift frame pointers split into routines.
This makes following the logic much easier.


  Commit: d452e67ee7b5d17aa040f71d8997abc1a47750e4
      https://github.com/llvm/llvm-project/commit/d452e67ee7b5d17aa040f71d8997abc1a47750e4
  Author: Jan Leyonberg <jan_sjodin at yahoo.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/include/flang/Lower/OpenMP.h
    M flang/lib/Lower/OpenMP/ClauseProcessor.cpp
    M flang/lib/Lower/OpenMP/ClauseProcessor.h
    M flang/lib/Lower/OpenMP/OpenMP.cpp
    M flang/lib/Lower/OpenMP/Utils.cpp
    M flang/lib/Lower/OpenMP/Utils.h
    M flang/lib/Semantics/resolve-directives.cpp
    R flang/test/Lower/OpenMP/nested-loop-transformation-construct01.f90
    M flang/test/Lower/OpenMP/parallel-wsloop-lastpriv.f90
    M flang/test/Lower/OpenMP/simd.f90
    M flang/test/Lower/OpenMP/wsloop-collapse.f90
    M flang/test/Lower/OpenMP/wsloop-variable.f90
    A flang/test/Parser/OpenMP/do-tile-size.f90
    M flang/test/Semantics/OpenMP/do-collapse.f90
    M flang/test/Semantics/OpenMP/do-concurrent-collapse.f90
    M mlir/include/mlir/Dialect/OpenMP/OpenMPClauseOperands.h
    M mlir/include/mlir/Dialect/OpenMP/OpenMPClauses.td
    M mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td
    M mlir/lib/Conversion/SCFToOpenMP/SCFToOpenMP.cpp
    M mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
    M mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
    M mlir/test/Conversion/SCFToOpenMP/scf-to-openmp.mlir
    M mlir/test/Dialect/OpenMP/invalid.mlir
    M mlir/test/Dialect/OpenMP/ops.mlir
    M mlir/test/Target/LLVMIR/omptarget-wsloop-collapsed.mlir
    M mlir/test/Target/LLVMIR/openmp-llvm.mlir

  Log Message:
  -----------
  [flang][OpenMP] Enable tiling (#143715)

This patch enables tiling in flang. In MLIR tiling is handled by
changing the the omp.loop_nest op to be able to represent both collapse
and tiling, so the flang front-end will combine the nested constructs into
a single MLIR op. The MLIR->LLVM-IR lowering of the LoopNestOp is
enhanced to first do the tiling if present, then collapse.


  Commit: 1e6a63e4fff4a496c537e5c155af8b355d3a988c
      https://github.com/llvm/llvm-project/commit/1e6a63e4fff4a496c537e5c155af8b355d3a988c
  Author: Aaditya <115080342+easyonaadit at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    M llvm/lib/Target/AMDGPU/SIInstructions.td
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.and.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.or.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.xor.ll

  Log Message:
  -----------
  [AMDGPU] Extending wave reduction intrinsics for `i64` types - 3 (#151310)

Supporting Arithemtic Operations: `and`, `or`, `xor`


  Commit: 924bf242c8e0ef61544471488eb9e729dda72a50
      https://github.com/llvm/llvm-project/commit/924bf242c8e0ef61544471488eb9e729dda72a50
  Author: Aaditya <115080342+easyonaadit at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/BuiltinsAMDGPU.def
    M clang/lib/CodeGen/TargetBuiltins/AMDGPU.cpp
    M clang/test/CodeGenOpenCL/builtins-amdgcn.cl

  Log Message:
  -----------
  [AMDGPU] Add builtins for wave reduction intrinsics (#150170)


  Commit: dcdbb39786a56181e1612354ecb8ecf5a7b0f449
      https://github.com/llvm/llvm-project/commit/dcdbb39786a56181e1612354ecb8ecf5a7b0f449
  Author: Nikita Popov <npopov at redhat.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
    M llvm/test/Transforms/InstCombine/icmp-gep.ll

  Log Message:
  -----------
  [InstCombine] Use intersectForOffsetAdd() in CommonPointerBase (#157851)

Transforms using this helper will add up all the offsets, so we should
use intersectForOffsetAdd() instead of plain intersection.

Annoyingly, this requires specially handling the first GEP to avoid
losing flags in that case.

Fixes https://github.com/llvm/llvm-project/issues/157714.


  Commit: 6580c9102f26789c655d6945372dd259b9e52e33
      https://github.com/llvm/llvm-project/commit/6580c9102f26789c655d6945372dd259b9e52e33
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Analysis/ScalarEvolution.cpp
    M llvm/test/Analysis/ScalarEvolution/mul-udiv-folds.ll

  Log Message:
  -----------
  [SCEV] Fold ((-1 * C1) * D / C1) -> -1 * D. (#157555)

Treat negative constants C as -1 * abs(C1) when folding multiplies and
udivs.

Alive2 Proof: https://alive2.llvm.org/ce/z/bdj9W2

PR: https://github.com/llvm/llvm-project/pull/157555


  Commit: 619d36ff4f7552b0e5786f4cf24d93d8b881aa58
      https://github.com/llvm/llvm-project/commit/619d36ff4f7552b0e5786f4cf24d93d8b881aa58
  Author: jyli0116 <yu.li at arm.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
    M llvm/include/llvm/Target/GlobalISel/Combine.td
    M llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
    M llvm/lib/Target/AArch64/AArch64Combine.td
    A llvm/test/CodeGen/AArch64/lshr-trunc-lshr.ll
    M llvm/test/CodeGen/AArch64/rem-by-const.ll
    M llvm/test/CodeGen/AArch64/urem-lkk.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/fshl.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/fshr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/lshr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/store-local.128.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/store-local.96.ll
    M llvm/test/CodeGen/AMDGPU/ds-alignment.ll

  Log Message:
  -----------
  [GISel] Combine shift + trunc + shift pattern (#155583)

Folds shift(trunc(shift(...))) pattern into trunc(shift(...)) by
combining the two shift instructions


  Commit: d18eca0c9c63b878ce853534e2c1e07967ec9b98
      https://github.com/llvm/llvm-project/commit/d18eca0c9c63b878ce853534e2c1e07967ec9b98
  Author: Paul Walker <paul.walker at arm.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/docs/LangRef.rst
    M llvm/lib/Analysis/Lint.cpp
    R llvm/test/Analysis/Lint/get-active-lane-mask.ll

  Log Message:
  -----------
  [LLVM][LangRef] Remove "n > 0" restriction from get.active.lanes.mask. (#152140)

The specification for get.active.lanes.mask says a limit value of zero
results in poison. This seems like an artificial restriction and means
you cannot use the intrinsic to create minimal loops of the form:
```
foo(int count, ....) {
  int i = 0;
  while (mask = get.active.lane.mask(i, count)) {
    ; do work
    i += count_bits(mask);
  }
}
```
I cannot see any code that generates poison in this case, in fact
ConstantFoldFixedVectorCall returns the logical result (i.e. an all
false vector).

There are also cases like `can_overflow_i64_induction_var` in
sve-tail-folding-overflow-checks.ll that look broken by the current
definition? for the case when "%N <= vscale * 4".


  Commit: d070960319802c9dbfbb3224555e1dff8709860e
      https://github.com/llvm/llvm-project/commit/d070960319802c9dbfbb3224555e1dff8709860e
  Author: Daniel Kuts <kutz at ispras.ru>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/lib/Dialect/SPIRV/IR/SPIRVOps.cpp

  Log Message:
  -----------
  [mlir][spirv] Check variable for null before dereferencing (#157457)

FIxes #157453


  Commit: 312b5615dfa7a75e097c524f8355ddb0e56d1fa2
      https://github.com/llvm/llvm-project/commit/312b5615dfa7a75e097c524f8355ddb0e56d1fa2
  Author: Michał Górny <mgorny at gentoo.org>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M offload/test/lit.cfg

  Log Message:
  -----------
  [offload] Fix finding libomptarget in runtimes build (#157856)

Per the logic in top-level CMakeLists, `libomptarget` is placed into
`LLVM_LIBRARY_OUTPUT_INTDIR` when this variable is set. Adjust the test
logic to include this directory in `-L` and `-Wl,-rpath` arguments as
well, in order to fix finding tests when building via the `runtimes`
top-level directory.

Signed-off-by: Michał Górny <mgorny at gentoo.org>


  Commit: 62f2641d603db9aef99dd5c434a1dfe7d3f56346
      https://github.com/llvm/llvm-project/commit/62f2641d603db9aef99dd5c434a1dfe7d3f56346
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/X86/X86AsmPrinter.cpp
    M llvm/lib/Target/X86/X86ExpandPseudo.cpp
    M llvm/lib/Target/X86/X86FrameLowering.cpp
    M llvm/lib/Target/X86/X86InstrCompiler.td
    M llvm/lib/Target/X86/X86InstrControl.td
    M llvm/lib/Target/X86/X86InstrPredicates.td
    M llvm/lib/Target/X86/X86RegisterInfo.cpp
    M llvm/lib/Target/X86/X86RegisterInfo.h

  Log Message:
  -----------
  X86: Stop using MachineFunction in getPointerRegClass (#156880)

This should be a low level function used to interpret an
MCInstrDesc that only depends on the hwmode. It should not depend
on other dynamic context like the parent function. In general more
ABI properties like this should be expressed directly in the instruction
definitions, so introduce new TCRETURN pseudos to use with the special
case register classes (e.g. in a better future the callee saved
registers
would always be encoded directly in a mask on the return instruction).

This will help unify X86 onto a pending replacement mechanism for
getPointerRegClass.


  Commit: bdebbd90150fbba210c097188e49b51d0eb960a4
      https://github.com/llvm/llvm-project/commit/bdebbd90150fbba210c097188e49b51d0eb960a4
  Author: Aaditya <115080342+easyonaadit at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Analysis/ConstantFolding.cpp
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.add.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.and.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.max.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.min.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.or.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.sub.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.umax.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.umin.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.xor.ll
    M llvm/test/Transforms/InstSimplify/ConstProp/AMDGPU/wave.reduce.ll

  Log Message:
  -----------
  [AMDGPU] Propagate Constants for Wave Reduction Intrinsics (#150395)


  Commit: a301e1a8952935a67c32ce76982bd50d8179e415
      https://github.com/llvm/llvm-project/commit/a301e1a8952935a67c32ce76982bd50d8179e415
  Author: Nikita Popov <npopov at redhat.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/test/CodeGen/union-tbaa1.c
    M llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
    M llvm/test/Analysis/BasicAA/featuretest.ll
    M llvm/test/Transforms/InstCombine/2010-11-21-SizeZeroTypeGEP.ll
    M llvm/test/Transforms/InstCombine/gep-merge-constant-indices.ll
    M llvm/test/Transforms/InstCombine/gepofconstgepi8.ll
    M llvm/test/Transforms/InstCombine/gepphigep.ll
    M llvm/test/Transforms/InstCombine/getelementptr.ll
    M llvm/test/Transforms/InstCombine/load-cmp.ll
    M llvm/test/Transforms/InstCombine/opaque-ptr.ll
    M llvm/test/Transforms/InstCombine/ptrtoint-nullgep.ll
    M llvm/test/Transforms/InstCombine/select-gep.ll
    M llvm/test/Transforms/InstCombine/strcmp-3.ll
    M llvm/test/Transforms/InstCombine/strlen-7.ll
    M llvm/test/Transforms/InstCombine/strlen-8.ll
    M llvm/test/Transforms/InstCombine/vectorgep-crash.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/sve-interleaved-accesses.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/sve2-histcnt.ll
    M llvm/test/Transforms/LoopVectorize/X86/consecutive-ptr-uniforms.ll
    M llvm/test/Transforms/LoopVectorize/induction.ll
    M llvm/test/Transforms/LoopVectorize/interleaved-accesses-pred-stores.ll
    M llvm/test/Transforms/LoopVectorize/interleaved-accesses.ll
    M llvm/test/Transforms/LoopVectorize/reduction-inloop.ll

  Log Message:
  -----------
  [InstCombine] Split GEPs with multiple non-zero offsets (#151333)

Split GEPs that have more than one non-zero offset into two GEPs. This
is in preparation for the ptradd migration, which can only represent
such GEPs.

This also enables CSE and LICM of the common base.


  Commit: 6ff97d0526cc2ea55441e5ca88cd4ba7202345b7
      https://github.com/llvm/llvm-project/commit/6ff97d0526cc2ea55441e5ca88cd4ba7202345b7
  Author: Nick Sarnie <nick.sarnie at intel.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/lib/Headers/cpuid.h
    M clang/test/Headers/__cpuidex_conflict.c

  Log Message:
  -----------
  [Clang] Fix __cpuidex conflict with other offloading targets (#157741)

It seems that for whatever reason we must:
1) Declare aux builtins when the compiling for an offload device
and
2) Define the aux builtin target macros when compiling for an offload
device.

In `cpuid.h` we try to define `__cpuidex` if it is not defined. Given
the above, the function will both be defined as a builtin in the
compiler and we can't rely on the `X86` macros to be undefined in the
case the aux-triple is `X86`.

Previously a workaround was added for NVPTX in
https://github.com/llvm/llvm-project/pull/152556, extend it for the
other offloading targets.

Signed-off-by: Sarnie, Nick <nick.sarnie at intel.com>


  Commit: 3751b6b1712cb1244f8df3dace32e7391d425741
      https://github.com/llvm/llvm-project/commit/3751b6b1712cb1244f8df3dace32e7391d425741
  Author: nerix <nerixdev at outlook.de>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    A llvm/test/tools/llvm-pdbutil/publics-yaml2pdb.test
    M llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp

  Log Message:
  -----------
  [llvm-pdbutil] Create public symbols in yaml2pdb (#157362)

pdb2yaml dumps the public symbols, but yaml2pdb didn't create these in
the exported PDB. With this PR, they're added to the final PDB.


  Commit: fa0bb6a20e97ee23587f583e1a15212d6735467e
      https://github.com/llvm/llvm-project/commit/fa0bb6a20e97ee23587f583e1a15212d6735467e
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/X86/X86ScheduleZnver4.td
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avx1.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avx2.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avx512bwvl.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-sse2.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-sse41.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-ssse3.s

  Log Message:
  -----------
  [X86] Fix throughput typo in XMM/YMM PACK/PALIGNR schedule classes (#157867)

Only the ZMM PACK/PALIGNR instructions are half-rate on znver4 -
confirmed with AMD SOG, uops.info and Agner

Noticed because comparing costs table shuffle costs vs llvm-mca costs
kept giving weird numbers if I tested it on znver4 vs any other
avx2/avx512 target

It looks like there's other znver4 overrides that make this mistake but
many of these need cleaning up properly to use the (currently unused)
default classes


  Commit: fc9fe0f7b7bbd6c980cdb775ae0b2eed794ef8dc
      https://github.com/llvm/llvm-project/commit/fc9fe0f7b7bbd6c980cdb775ae0b2eed794ef8dc
  Author: Krzysztof Parzyszek <Krzysztof.Parzyszek at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Semantics/unparse-with-symbols.cpp
    A flang/test/Parser/OpenMP/declare-reduction-unparse-with-symbols.f90

  Log Message:
  -----------
  [flang][OpenMP] Fix crash on DECLARE REDUCTION in unparse-with-symbols (#157871)


  Commit: 3c60c03f538f7da6a58f79d6979d6a87e06b8e72
      https://github.com/llvm/llvm-project/commit/3c60c03f538f7da6a58f79d6979d6a87e06b8e72
  Author: Karlo Basioli <k.basioli at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

  Log Message:
  -----------
  Mark variable as maybe unused (only used in debug mode) (#157875)


  Commit: 7d3672747b1cd07512b0f17d107253960fceaef5
      https://github.com/llvm/llvm-project/commit/7d3672747b1cd07512b0f17d107253960fceaef5
  Author: Petar Avramovic <Petar.Avramovic at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/Analysis/UniformityAnalysis/AMDGPU/MIR/loads-gmir.mir

  Log Message:
  -----------
  AMDGPU: Add uniformity analysis test for G_ZEXTLOAD and G_SEXTLOAD (#157844)


  Commit: acb38c8be7152aa26e6958752499619eeeeddd1c
      https://github.com/llvm/llvm-project/commit/acb38c8be7152aa26e6958752499619eeeeddd1c
  Author: Roy Shi <royitaqi at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py
    M lldb/test/API/tools/lldb-dap/server/TestDAP_server.py
    M lldb/tools/lldb-dap/Options.td
    M lldb/tools/lldb-dap/README.md
    M lldb/tools/lldb-dap/package.json
    M lldb/tools/lldb-dap/src-ts/debug-configuration-provider.ts
    M lldb/tools/lldb-dap/src-ts/lldb-dap-server.ts
    M lldb/tools/lldb-dap/tool/lldb-dap.cpp

  Log Message:
  -----------
  [lldb-dap] Add command line option `--connection-timeout` (#156803)

# Usage

This is an optional new command line option to use with `--connection`.

```
--connection-timeout <timeout>    When using --connection, the number of seconds to
        wait for new connections after the server has started and after all clients
        have disconnected. Each new connection will reset the timeout. When the
        timeout is reached, the server will be closed and the process will exit.
        Not specifying this argument or specifying non-positive values will cause
        the server to wait for new connections indefinitely.
```

A corresponding extension setting `Connection Timeout` is added to the
`lldb-dap` VS Code extension.

# Benefits

Automatic release of resources when lldb-dap is no longer being used
(e.g. release memory used by module cache).

# Test

See PR.


  Commit: 752c1cf8056c3ca1e326cfc7692f2e32e5917374
      https://github.com/llvm/llvm-project/commit/752c1cf8056c3ca1e326cfc7692f2e32e5917374
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

  Log Message:
  -----------
  [Instrumentation] Fix formatting of MemorySanitizer.cpp


  Commit: 56122f769f59c7dbd643f294a1d4fef598c524d7
      https://github.com/llvm/llvm-project/commit/56122f769f59c7dbd643f294a1d4fef598c524d7
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp

  Log Message:
  -----------
  [AArch64] Use SignExtend64<N> (NFC) (#157788)

This patch uses SignExtend64<N> to simplify sign extensions.


  Commit: cac3802a1647339ee13821969d8382a3cad03876
      https://github.com/llvm/llvm-project/commit/cac3802a1647339ee13821969d8382a3cad03876
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/ADT/STLForwardCompat.h

  Log Message:
  -----------
  [ADT] Fix comment typos in STLForwardCompat.h (#157789)

st::type_identity_t is from C++20, not C++23.


  Commit: 9a64fa7b7e446651bf40fe0e1289505bc115c6dd
      https://github.com/llvm/llvm-project/commit/9a64fa7b7e446651bf40fe0e1289505bc115c6dd
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/include/clang/AST/Expr.h
    M llvm/include/llvm/Support/PointerLikeTypeTraits.h

  Log Message:
  -----------
  [Support] Use CTLog2 from PointerLikeTypeTraits.h (NFC) (#157790)

This patch replaces ConstantLog2 with CTLog2.  ConstantLog2 only
operates on alignment values, making the two interchangeable in this
context.  CTLog2 also has the benefit of a static_assert that ensures
its parameter is a power of two.


  Commit: 65994cc929c26f29fc89a55903352d51e4e22c0b
      https://github.com/llvm/llvm-project/commit/65994cc929c26f29fc89a55903352d51e4e22c0b
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Support/type_traits.h

  Log Message:
  -----------
  [Support] Use std::conditional_t in several type traits (NFC) (#157791)

With std::conditional_t, we don't have to have two templates for each
of these type traits.


  Commit: a1fc0f985b0302601b7f054a0c5e4f337097dac3
      https://github.com/llvm/llvm-project/commit/a1fc0f985b0302601b7f054a0c5e4f337097dac3
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/docs/Contributing.rst

  Log Message:
  -----------
  [llvm] Proofread Contributing.rst (#157792)


  Commit: e92cbfbe30875071b3764cee39103a797eae4b1a
      https://github.com/llvm/llvm-project/commit/e92cbfbe30875071b3764cee39103a797eae4b1a
  Author: lntue <lntue at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M libc/src/__support/CPP/bit.h
    M libc/src/__support/macros/CMakeLists.txt
    M libc/src/__support/macros/config.h
    M utils/bazel/llvm-project-overlay/libc/BUILD.bazel

  Log Message:
  -----------
  [libc] Update some __builtin_* usage to be compatible with MSVC. (#157870)

__builtin_trap, __builtin_expect, __builtin_ctz*, __builtin_clz*,
__builtin_popcount*.


  Commit: c82d09c96a4c0c5454143cc35c935557528bb86b
      https://github.com/llvm/llvm-project/commit/c82d09c96a4c0c5454143cc35c935557528bb86b
  Author: nerix <nerixdev at outlook.de>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/DebugInfo/PDB/Native/PublicsStream.h
    M llvm/lib/DebugInfo/PDB/Native/PublicsStream.cpp
    M llvm/unittests/DebugInfo/PDB/CMakeLists.txt
    A llvm/unittests/DebugInfo/PDB/PublicsStreamTest.cpp

  Log Message:
  -----------
  [PDB] Add public symbol lookup by address (#157361)

This adds a method on the `PublicsStream` to look up symbols using their
address (segment + offset).
It's largely a reimplementation of
[`NearestSym`](https://github.com/microsoft/microsoft-pdb/blob/805655a28bd8198004be2ac27e6e0290121a5e89/PDB/dbi/gsi.cpp#L1492-L1581)
from the reference. However, we don't return the nearest symbol, but the
exact symbol.
Still, in case of ICF, we return the symbol that's first in the address
map. Users can then use the returned offset to read the next records to
check if multiple symbols overlap, if desired.

>From #149701.


  Commit: e5102e2931973eeea9adbf96e07cd72e1904b56e
      https://github.com/llvm/llvm-project/commit/e5102e2931973eeea9adbf96e07cd72e1904b56e
  Author: Amr Hesham <amr96 at programmer.net>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/include/clang/CIR/Dialect/IR/CIROps.td
    M clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp
    M clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
    M clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.h
    M clang/test/CIR/CodeGen/builtins-elementwise.c

  Log Message:
  -----------
  [CIR] Upstream FPToFPBuiltin ASinOp (#157350)

Upstream support for FPToFPBuiltin ASinOp


  Commit: 397e5a457ae8458fe4687c607c75be6ede453a25
      https://github.com/llvm/llvm-project/commit/397e5a457ae8458fe4687c607c75be6ede453a25
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/ExpandVectorPredication.cpp
    M llvm/test/Transforms/PreISelIntrinsicLowering/expand-vp.ll

  Log Message:
  -----------
  [ExpandVectorPredication] Expand vp_merge and vp_select in expandPredication. (#157777)


  Commit: 61e4d2312d59d059f775734a3a7c96a6914c07b7
      https://github.com/llvm/llvm-project/commit/61e4d2312d59d059f775734a3a7c96a6914c07b7
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/test/CodeGen/RISCV/and-negpow2-cmp.ll
    M llvm/test/CodeGen/RISCV/bittest.ll

  Log Message:
  -----------
  [RISCV] Fold (X & -(1 << C1) & 0xffffffff) == C2 << C1 to sraiw X, C1 == C2. (#157617)

We had an existing fold for (X & -(1 << C1) & 0xffffffff) == 0
which we can generalize to support comparing to constants other
than 0.
    
Previously we used srliw, but this generalizes better using sraiw.
I'm restricting to the case where C2 is simm12 or 2048 to allow
sraiw+addi/xori+seqz/snez to be used. Other constants require a
more careful analysis of the constants involved.


  Commit: 265b032bdae0550de69ff52b4ef9deaf78bae522
      https://github.com/llvm/llvm-project/commit/265b032bdae0550de69ff52b4ef9deaf78bae522
  Author: kper <kevin.per at protonmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
    M llvm/test/Transforms/InstCombine/trunc-lshr.ll

  Log Message:
  -----------
  [InstCombine] Added optimisation for trunc (Pow2 >> x) to i1 (#157030)

Closes #156898

I have added two cases. The first one matches when the constant is
exactly power of 2. The second case was to address the general case
mentioned in the linked issue. I, however, did not really solve the
general case.
We can only emit a `icmp ult` if all the bits are one and that's only
the case when the constant + 1 is a power of 2. Otherwise, we need to
create `icmp eq` for every bit that is one.

Here are a few examples which won't be working with the two cases:
-  constant is `9`: https://alive2.llvm.org/ce/z/S5FLJZ
- subrange in `56`: https://alive2.llvm.org/ce/z/yn_ZNG
- and finally an example as worst case (because it alternates the bits):
https://alive2.llvm.org/ce/z/nDitNA


  Commit: 41c685975e17704b25e461744ebd57429cdd95f1
      https://github.com/llvm/llvm-project/commit/41c685975e17704b25e461744ebd57429cdd95f1
  Author: Petar Avramovic <Petar.Avramovic at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
    M llvm/test/Analysis/UniformityAnalysis/AMDGPU/MIR/loads-gmir.mir

  Log Message:
  -----------
  AMDGPU/UniformityAnalysis: fix G_ZEXTLOAD and G_SEXTLOAD (#157845)

Use same rules for G_ZEXTLOAD and G_SEXTLOAD as for G_LOAD.
Flat addrspace(0) and private addrspace(5) G_ZEXTLOAD and G_SEXTLOAD
should be always divergent.


  Commit: f75622469588f1f20e53752df29fb403bd6084a7
      https://github.com/llvm/llvm-project/commit/f75622469588f1f20e53752df29fb403bd6084a7
  Author: Faith Rivera <fnrivera at ucsd.edu>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/LTO/Resolution/X86/unified-lto-check.ll
    M llvm/tools/llvm-lto2/llvm-lto2.cpp

  Log Message:
  -----------
  [llvm-lto2] Added llvm-lto2 -unified-lto descriptions (revised) (#155462)

This is a revised PR of #148309 (closed due to some git issues). The
changes do the following:

- Adds description for the modes of `-unified-lto=mode` option
- Changes parsing of `unified-lto` descriptions from string to cEnumValN
for continuity of description formatting
- Adds testing of error output in `unified-lto-check.ll`


  Commit: e07716de0f85dd121f85cfdf1b413cb764beda2e
      https://github.com/llvm/llvm-project/commit/e07716de0f85dd121f85cfdf1b413cb764beda2e
  Author: Rahul Joshi <rjoshi at nvidia.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/TableGen/FixedLenDecoderEmitter/conflict.td
    M llvm/utils/TableGen/DecoderEmitter.cpp

  Log Message:
  -----------
  [TableGen][DecoderEmitter] Report all decoding conflicts (#157847)

Do not exit when the first decoding conflict is encountered. Instead
record the conflict and continue to report any additional decoding
conflicts and exit fatally after all instructions have been processed.


  Commit: 00483379fbe018e51840e4783cecf6b76de8d3f9
      https://github.com/llvm/llvm-project/commit/00483379fbe018e51840e4783cecf6b76de8d3f9
  Author: Krzysztof Parzyszek <Krzysztof.Parzyszek at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/include/flang/Lower/OpenMP/Clauses.h
    M flang/lib/Lower/OpenMP/Clauses.cpp
    M flang/lib/Semantics/check-omp-structure.cpp
    M llvm/include/llvm/Frontend/OpenMP/ClauseT.h
    M llvm/include/llvm/Frontend/OpenMP/OMP.td

  Log Message:
  -----------
  [OpenMP] Add definitions of TASKGRAPH, GRAPH_ID and GRAPH_RESET (#157502)

This only adds the definitions of the TASKGRAPH directive and the
associated clauses, plus the minimal additional changes to make
everything compile without errors.


  Commit: 7b828738c692ba64a48b4f4f6763064d58ef0618
      https://github.com/llvm/llvm-project/commit/7b828738c692ba64a48b4f4f6763064d58ef0618
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/Transforms/LoopVectorize/AArch64/transform-narrow-interleave-to-widen-memory-with-wide-ops.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/transform-narrow-interleave-to-widen-memory.ll

  Log Message:
  -----------
  [LV] Add tests with multiple store groups re-using widened ops.

Test coverage for https://github.com/llvm/llvm-project/issues/156190.


  Commit: 149b9ac171e0c27388b881cfe00f373b38252ce2
      https://github.com/llvm/llvm-project/commit/149b9ac171e0c27388b881cfe00f373b38252ce2
  Author: Greg Clayton <gclayton at fb.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/source/Utility/ArchSpec.cpp

  Log Message:
  -----------
  [NFC][lldb] Cleanup the ArchDefinitionEntry definitons. (#152618)

This patch has default initialization values for the "sub", "cpu_mask"
and "sub_mask" member variables of the ArchDefinitionEntry structure.
This can simplify and cleanup the ArchDefinitionEntry arrays by allowing
those that don't override the values to not have to initialize the
values in the definitions if they match the default values.

This patchs also disables clang format to align the values in the
columns for easier readability.


  Commit: b44e6e01f7f778bbb569e07821f5ddfdb90c4d4d
      https://github.com/llvm/llvm-project/commit/b44e6e01f7f778bbb569e07821f5ddfdb90c4d4d
  Author: Amit Kumar Pandey <137622562+ampandey-1995 at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M compiler-rt/lib/dfsan/dfsan.cpp
    M compiler-rt/lib/fuzzer/FuzzerCorpus.h
    M compiler-rt/lib/fuzzer/FuzzerDriver.cpp
    M compiler-rt/lib/fuzzer/FuzzerLoop.cpp
    M compiler-rt/lib/hwasan/hwasan_report.cpp

  Log Message:
  -----------
  [NFC] Fix CodeQL violations in compiler-rt. (#157793)

This pull request addresses fixes against violations happening under
subcategory 'cpp/wrong-type-format-argument' related to
dfsan,fuzzer,hwasan.


  Commit: 2701a220fae7a4fea97cba3fadcfd8f8aae8326e
      https://github.com/llvm/llvm-project/commit/2701a220fae7a4fea97cba3fadcfd8f8aae8326e
  Author: Andreas Jonson <andjo403 at hotmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Analysis/LazyValueInfo.cpp
    M llvm/test/Transforms/CorrelatedValuePropagation/range.ll
    M llvm/test/Transforms/JumpThreading/branch-debug-info2.ll

  Log Message:
  -----------
  [LVI] Support no constant range of cast value in getEdgeValueLocal. (#157614)

proof: https://alive2.llvm.org/ce/z/8emkHY


  Commit: a65aca6201e2455f7627732f5b378028fe651dec
      https://github.com/llvm/llvm-project/commit/a65aca6201e2455f7627732f5b378028fe651dec
  Author: Ebuka Ezike <yerimyah1 at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/thread/step_until/TestStepUntil.py
    M lldb/test/API/functionalities/thread/step_until/TestStepUntilAPI.py

  Log Message:
  -----------
  [lldb][test] StepUntil disable test for unsupported linkers. (#157474)

`INSERT BEFORE` keyword is not supported in current versions gold and
mold linkers. Since we cannot confirm accurately what linker and version
is available on the system and when it will be supported. We test it
with a sample program using the script keywords.


  Commit: ef9d04f0d6901ec79cf8d2747efcdf0306a74596
      https://github.com/llvm/llvm-project/commit/ef9d04f0d6901ec79cf8d2747efcdf0306a74596
  Author: Michael Kruse <llvm-project at meinersbur.de>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/docs/OpenMPSupport.rst

  Log Message:
  -----------
  [docs][OpenMP] Update loop transformation impementation status


  Commit: f5315bd135b6e65ebfb0d27f6333501c3a4b32b3
      https://github.com/llvm/llvm-project/commit/f5315bd135b6e65ebfb0d27f6333501c3a4b32b3
  Author: Ebuka Ezike <yerimyah1 at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/rerun_and_expr_dylib/TestRerunAndExprDylib.py

  Log Message:
  -----------
  [lldb][test] Re-enable `TestRerunAndExprDylib.py` (#157872)

the `skipTestIfFn` requires a function that return a string to skip or
None to run the test. The `isUbuntu18_04` function returns a bool and
the test is skipped on all platforms.



https://github.com/llvm/llvm-project/blob/25ebdfe0ab202a6cb30232d84bc5838439fd67d5/lldb/packages/Python/lldbsuite/test/decorators.py#L145-L157


  Commit: e2d9420272e2f479dc714706be5a4aa0a4b2c90d
      https://github.com/llvm/llvm-project/commit/e2d9420272e2f479dc714706be5a4aa0a4b2c90d
  Author: jimingham <jingham at apple.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/examples/python/cmdtemplate.py
    M lldb/examples/python/templates/parsed_cmd.py
    M lldb/test/API/commands/command/script/add/TestAddParsedCommand.py
    M lldb/test/API/commands/command/script/add/test_commands.py

  Log Message:
  -----------
  Make flag-only options work in the ParsedCommand mode of adding commands (#157756)

I neglected to add a test when I was writing tests for this, so of
course it broke. This makes it work again and adds a test.

rdar://159459160


  Commit: 0a69cd4e34e3a1a8a84a2b9fe8764a4b535a9e37
      https://github.com/llvm/llvm-project/commit/0a69cd4e34e3a1a8a84a2b9fe8764a4b535a9e37
  Author: Stephen Tozer <stephen.tozer at sony.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Scalar/JumpThreading.cpp
    A llvm/test/Transforms/JumpThreading/simplify-partially-redundant-load-debugloc.ll

  Log Message:
  -----------
  [JumpThreading][DebugInfo] Propagate DebugLocs when simplifying loads (#157683)

In simplifyPartiallyRedundantLoad we may replace a load with a PHI of
available values in predecessor blocks. As part of this process, we may
need to cast those values, which we do by inserting a new cast at the
end of the predecessor. These cast instructions should take their debug
location from the load instruction, just as the PHI does; we make an
exception if the predecessor does not unconditionally branch to the
load's block, as in that case we are not guaranteed to reach the load
and must therefore drop its debug location.

Found using https://github.com/llvm/llvm-project/pull/107279.


  Commit: 71389a5c7bbcf1b2200f5434d794e6ee44c59e4b
      https://github.com/llvm/llvm-project/commit/71389a5c7bbcf1b2200f5434d794e6ee44c59e4b
  Author: Peter Klausler <pklausler at nvidia.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang-rt/include/flang-rt/runtime/io-stmt.h
    M flang-rt/lib/runtime/io-stmt.cpp

  Log Message:
  -----------
  [flang][runtime] Preserve some list-directed input state in child (#157571)

Child list-directed input needs to inherit and return the state used to
process trailing separators (eatComma_) and terminal '/' (hitSlash_)
from any parent list-directed input statement.

Fixes https://github.com/llvm/llvm-project/issues/157509 and
https://github.com/llvm/llvm-project/issues/154971.


  Commit: 7c66302343186decf6c541aefab1bc72ffea0a3b
      https://github.com/llvm/llvm-project/commit/7c66302343186decf6c541aefab1bc72ffea0a3b
  Author: Corentin Jabot <corentinjabot at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M libcxx/test/libcxx/algorithms/cpp17_iterator_concepts.verify.cpp

  Log Message:
  -----------
  [Libc++][NFC] Fix typos in tests (#157699)


  Commit: b574e63f9fd1adb52786f9dc03ec6f479229e1a7
      https://github.com/llvm/llvm-project/commit/b574e63f9fd1adb52786f9dc03ec6f479229e1a7
  Author: Dave Lee <davelee.com at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/source/Commands/CommandObjectMemory.cpp

  Log Message:
  -----------
  [lldb] Pass execution context to CompilerType::GetByteSize - in CommandObjectMemoryRead (NFC) (#157750)

Some type systems require an execution context be available when working with types
(ex: Swift). This fixes `memory read --type` to support such type systems, by passing in
an execution context to `GetByteSize()`, instead of passing null.

rdar://158968545


  Commit: c511e1a0f8b899621dc253bd8e404fa6ed199294
      https://github.com/llvm/llvm-project/commit/c511e1a0f8b899621dc253bd8e404fa6ed199294
  Author: Hongyu Chen <xxs_chy at outlook.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
    M llvm/test/Transforms/InstCombine/or.ll

  Log Message:
  -----------
  [InstCombine] Preserve nneg in foldLogicCastConstant (#157865)

This patch makes use of the new public helper function to preserve nneg
in `foldLogicCastConstant`.


  Commit: f1cdb447a8031027222c06646e2da292abd512f9
      https://github.com/llvm/llvm-project/commit/f1cdb447a8031027222c06646e2da292abd512f9
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/test/APINotes/yaml-roundtrip-2.test
    M clang/test/APINotes/yaml-roundtrip.test

  Log Message:
  -----------
  Reapply "[APINotes] Prefer diff -u over diff -b" (#157894)

This reverts commit 8d35bcc52117b79517f518de952b4b50463de160.

This was causing failures on MacOS due to the head command there not
supporting negative offsets. This patch fixes that by removing the call
to HEAD and relaxing the requirements around removing the last line of
the file.


  Commit: 1495ceacbf511a0694df90341772d286fbcf2032
      https://github.com/llvm/llvm-project/commit/1495ceacbf511a0694df90341772d286fbcf2032
  Author: Valery Dmitriev <valeryd at nvidia.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/include/flang/Lower/HlfirIntrinsics.h
    M flang/include/flang/Optimizer/Builder/Runtime/Character.h
    M flang/include/flang/Optimizer/HLFIR/HLFIROps.td
    M flang/lib/Lower/ConvertCall.cpp
    M flang/lib/Lower/HlfirIntrinsics.cpp
    M flang/lib/Optimizer/Builder/Runtime/Character.cpp
    M flang/lib/Optimizer/HLFIR/IR/HLFIROps.cpp
    M flang/lib/Optimizer/HLFIR/Transforms/LowerHLFIRIntrinsics.cpp
    A flang/test/HLFIR/index-lowering.fir
    M flang/test/HLFIR/invalid.fir
    A flang/test/Lower/HLFIR/index.f90
    M flang/test/Lower/volatile-string.f90

  Log Message:
  -----------
  [flang] Add hlfir.index op to represent index intrinsic function (#157575)

The change adds a new HLFIR operation. A call to index intrinsic now
becomes lowered into the hlfir.index op and then naive lowering of the
op translates it back to appropriate runtime call. The change set is
aimed to be functionally equivalent to exiting index functionality, but
is much more efficient in a case of presence of the 'kind' intrinsic
parameter.
Also fixed couple of parameter lowering issues which were revealed while
working on the index-related functional parts.


  Commit: 57bd1c6c74804540df80c3896f74788be6166d3f
      https://github.com/llvm/llvm-project/commit/57bd1c6c74804540df80c3896f74788be6166d3f
  Author: Tobias Stadler <mail at stadler-tobias.de>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Remarks/BitstreamRemarkContainer.h

  Log Message:
  -----------
  [Remarks] Remove redundant size from StringRefs (NFC) (#156357)

Pull Request: https://github.com/llvm/llvm-project/pull/156357


  Commit: c685a205de0cef54062d0a93ff9b79f904f9eb22
      https://github.com/llvm/llvm-project/commit/c685a205de0cef54062d0a93ff9b79f904f9eb22
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/llvm/lib/Target/AArch64/BUILD.gn

  Log Message:
  -----------
  [gn build] Port 106eb4623d0c


  Commit: 5912c76b988a391c26ad6ca664d3e10f6b5e2c44
      https://github.com/llvm/llvm-project/commit/5912c76b988a391c26ad6ca664d3e10f6b5e2c44
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/llvm/unittests/DebugInfo/PDB/BUILD.gn

  Log Message:
  -----------
  [gn build] Port c82d09c96a4c


  Commit: ab26257c0334e0ba2a55ccd9acd2ccbf2267977d
      https://github.com/llvm/llvm-project/commit/ab26257c0334e0ba2a55ccd9acd2ccbf2267977d
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/google/BUILD.gn

  Log Message:
  -----------
  [gn build] Port ed9dded83f5b


  Commit: 675b01a4a3302211c070c6a95af5da23b950532b
      https://github.com/llvm/llvm-project/commit/675b01a4a3302211c070c6a95af5da23b950532b
  Author: YongKang Zhu <yongzhu at fb.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M bolt/lib/Target/AArch64/AArch64MCPlusBuilder.cpp

  Log Message:
  -----------
  [BOLT][AArch64][instr] Remove instructions on saving and restoring NZCV (#156994)

Remove the `NZCV` save and restore instructions from instrumentation
sequence because the instructions used for getting counter address,
counter increment and stack push/pop won't impact `NZCV`. And with
this, we can use `X1` to do counter increment and remove the two
instructions that saves and later restores `X2`.


  Commit: 0dddfab54cc3091ca6d29d9b733f0987ed79dc16
      https://github.com/llvm/llvm-project/commit/0dddfab54cc3091ca6d29d9b733f0987ed79dc16
  Author: Alexey Bataev <a.bataev at outlook.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
    A llvm/test/Transforms/SLPVectorizer/X86/original-inst-scheduled-after-copyable.ll

  Log Message:
  -----------
  [SLP]Recalculate deps if the original instruction scheduled after being copyable

If the original instruction is going to be scheduled after same
instruction being scheduled as copyable, need to recalculate
dependencies. Otherwise, the dependencies maybe calculated incorrectly.


  Commit: b580829c2b16de0b22716b3f9b9a9b2e79c55af5
      https://github.com/llvm/llvm-project/commit/b580829c2b16de0b22716b3f9b9a9b2e79c55af5
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/lib/Target/RISCV/RISCVSubtarget.h

  Log Message:
  -----------
  [RISCV] Add helper method for checking for Zicond or XVentanaCondOps. NFC (#157891)

These two extensions have identical functionality so we always want to
treat them the same.


  Commit: 33c9236bf870bc732a48a0256e90b907d1c21a49
      https://github.com/llvm/llvm-project/commit/33c9236bf870bc732a48a0256e90b907d1c21a49
  Author: Hongyu Chen <xxs_chy at outlook.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-zvqdotq.ll

  Log Message:
  -----------
  [RISCV] Extend zvqdot matching to handle disjoint or (#157901)

This patch makes use of pattern matching to handle disjoint or. Also, it
simplifies the multiplication matching.


  Commit: ebf86b1c28d9e358403fe2b1bd145f339806799a
      https://github.com/llvm/llvm-project/commit/ebf86b1c28d9e358403fe2b1bd145f339806799a
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVInstrInfoP.td

  Log Message:
  -----------
  [RISCV] Fix mistake in comment in RISCVInstrInfoP.td. NFC


  Commit: 20cfaf067912292b006dcb2c20cf6a925e640894
      https://github.com/llvm/llvm-project/commit/20cfaf067912292b006dcb2c20cf6a925e640894
  Author: Dave Lee <davelee.com at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/bindings/python/python.swig

  Log Message:
  -----------
  [lldb] Remove unused swig macro (NFC) (#157905)


  Commit: cb9cb4eb2e54917e80c93d7c44a559cc92964078
      https://github.com/llvm/llvm-project/commit/cb9cb4eb2e54917e80c93d7c44a559cc92964078
  Author: Antonio Frighetto <me at antoniofrighetto.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    A llvm/test/tools/UpdateTestChecks/update_test_checks/Inputs/tbaa-semantics-checks.ll
    A llvm/test/tools/UpdateTestChecks/update_test_checks/Inputs/tbaa-semantics-checks.ll.expected
    A llvm/test/tools/UpdateTestChecks/update_test_checks/tbaa-semantics-checks.test

  Log Message:
  -----------
  [UTC] Introduce test for PR147670 (NFC)


  Commit: 1cacc7339b21099bee85f7bb5d14b1964bdb3f74
      https://github.com/llvm/llvm-project/commit/1cacc7339b21099bee85f7bb5d14b1964bdb3f74
  Author: Antonio Frighetto <me at antoniofrighetto.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/tools/UpdateTestChecks/update_test_checks/Inputs/tbaa-semantics-checks.ll.expected
    M llvm/test/tools/UpdateTestChecks/update_test_checks/tbaa-semantics-checks.test
    M llvm/utils/UpdateTestChecks/common.py
    M llvm/utils/update_cc_test_checks.py
    M llvm/utils/update_test_checks.py

  Log Message:
  -----------
  [UTC] Record TBAA semantics when autogenerating check lines

UpdateTestChecks have been updated to take into account TBAA
semantics as well, when emitting checks. This is achieved by
parsing TBAA metadata for each tool invocation – whose tool
is identified by their prefixes –, and maintaining a global
dict of prefixes, TBAA nodes.


  Commit: 8062b166762b51f1c3a9168e7031babde3e330a8
      https://github.com/llvm/llvm-project/commit/8062b166762b51f1c3a9168e7031babde3e330a8
  Author: Amit Kumar Pandey <pandey.kumaramit2023 at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M compiler-rt/lib/dfsan/dfsan.cpp
    M compiler-rt/lib/fuzzer/FuzzerCorpus.h
    M compiler-rt/lib/fuzzer/FuzzerDriver.cpp
    M compiler-rt/lib/fuzzer/FuzzerLoop.cpp
    M compiler-rt/lib/hwasan/hwasan_report.cpp

  Log Message:
  -----------
  Revert "[NFC] Fix CodeQL violations in compiler-rt. (#157793)" (#157913)

This reverts commit b44e6e01f7f778bbb569e07821f5ddfdb90c4d4d.


  Commit: 6241cb34befb10ceff75293ce17560f016e2e79b
      https://github.com/llvm/llvm-project/commit/6241cb34befb10ceff75293ce17560f016e2e79b
  Author: Peter Collingbourne <peter at pcc.me.uk>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/lib/Driver/ToolChains/Clang.cpp

  Log Message:
  -----------
  Driver: Fix two comments for accuracy.



Reviewers: carlocab, AaronBallman

Reviewed By: carlocab

Pull Request: https://github.com/llvm/llvm-project/pull/157769


  Commit: 110ab5aa35bcd6091c02be8b814db20caf26b13a
      https://github.com/llvm/llvm-project/commit/110ab5aa35bcd6091c02be8b814db20caf26b13a
  Author: Shilei Tian <i at tianshilei.me>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/BuiltinsAMDGPU.def
    M clang/test/CodeGenOpenCL/builtins-amdgcn-gfx1250.cl
    M llvm/include/llvm/IR/IntrinsicsAMDGPU.td

  Log Message:
  -----------
  [AMDGPU] Add builtins and intrinsics for cluster attributes (#157877)

Co-authored-by: Ivan Kosarev <ivan.kosarev at amd.com>


  Commit: a879be833a4995e3b43f927db80b22f77571c702
      https://github.com/llvm/llvm-project/commit/a879be833a4995e3b43f927db80b22f77571c702
  Author: Krzysztof Drewniak <Krzysztof.Drewniak at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/include/mlir/Dialect/LLVMIR/LLVMAttrDefs.td
    M mlir/include/mlir/Dialect/LLVMIR/LLVMDialect.td
    M mlir/lib/Target/LLVMIR/Dialect/LLVMIR/LLVMIRToLLVMTranslation.cpp
    M mlir/lib/Target/LLVMIR/Dialect/LLVMIR/LLVMToLLVMIRTranslation.cpp
    A mlir/test/Dialect/LLVMIR/mmra.mlir
    A mlir/test/Target/LLVMIR/Import/metadata-mmra.ll
    A mlir/test/Target/LLVMIR/mmra.mlir

  Log Message:
  -----------
  [mlir][LLVMIR] Support memory model relaxation annotations (MMRA) (#157770)

This commit adds support for exportind and importing MMRA data in the
LLVM dialect. MMRA is a potentilly-discardable piece of metadata that
can be placed on any operation that touches memory (fences, loads,
stores, atomics, and intrinsics that operate on memory). It includes one
(technically zero) ome more prefix:suffix string pairs which indicate
ways in which the LLVM memory model can be relaxed for these
annotations.

At the MLIR level, each tag is represented with a
`#llvm.mmra_tag<"prefix":"suffex">` attribute, and the MMRA metadata as
a whole is represented as a discardable llvm.mmra attribute. (This
discardability both allows us to transparently enable MMRA for wrapper
dialects like ROCDL and ensures that MLIR passes which don't know about
MMRA combining will, conservatively, discard the annotations, per the
LLVM spec).

---------

Co-authored-by: Tobias Gysi <tobias.gysi at nextsilicon.com>


  Commit: 0d404509be903f7a6bf62ea9f9cff4cfca893651
      https://github.com/llvm/llvm-project/commit/0d404509be903f7a6bf62ea9f9cff4cfca893651
  Author: Helena Kotas <hekotas at microsoft.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/lib/Sema/HLSLBuiltinTypeDeclBuilder.cpp
    M clang/lib/Sema/HLSLBuiltinTypeDeclBuilder.h
    M clang/lib/Sema/HLSLExternalSemaSource.cpp
    M clang/test/AST/HLSL/ByteAddressBuffers-AST.hlsl
    M clang/test/AST/HLSL/StructuredBuffers-AST.hlsl
    M clang/test/AST/HLSL/TypedBuffers-AST.hlsl

  Log Message:
  -----------
  [HLSL] Add static methods for resource initialization (#155866)

Adds static methods `__createFromBinding` and `__createFromImplicitBinding` to resource classes. These methods will be
used for resource initialization instead of resource constructors that take binding information.

Updated proposal: https://github.com/llvm/wg-hlsl/pull/336


  Commit: ccc340316ab94ee5370bb25c299851f3ee50cc4a
      https://github.com/llvm/llvm-project/commit/ccc340316ab94ee5370bb25c299851f3ee50cc4a
  Author: Alexey Samsonov <vonosmas at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M libc/test/src/math/CMakeLists.txt
    M libc/test/src/math/FModTest.h
    M libc/test/src/math/acosf_test.cpp
    M libc/test/src/math/acoshf16_test.cpp
    M libc/test/src/math/acoshf_test.cpp
    M libc/test/src/math/asinf_test.cpp
    M libc/test/src/math/asinhf_test.cpp
    M libc/test/src/math/atanf_test.cpp
    M libc/test/src/math/atanhf_test.cpp
    M libc/test/src/math/cosf_test.cpp
    M libc/test/src/math/coshf_test.cpp
    M libc/test/src/math/cospif_test.cpp
    M libc/test/src/math/exp10_test.cpp
    M libc/test/src/math/exp10f_test.cpp
    M libc/test/src/math/exp10m1f_test.cpp
    M libc/test/src/math/exp2_test.cpp
    M libc/test/src/math/exp2f_test.cpp
    M libc/test/src/math/exp2m1f_test.cpp
    M libc/test/src/math/exp_test.cpp
    M libc/test/src/math/expf_test.cpp
    M libc/test/src/math/expm1_test.cpp
    M libc/test/src/math/expm1f_test.cpp
    M libc/test/src/math/log10_test.cpp
    M libc/test/src/math/log1p_test.cpp
    M libc/test/src/math/log1pf_test.cpp
    M libc/test/src/math/log2_test.cpp
    M libc/test/src/math/log_test.cpp
    M libc/test/src/math/sincosf_test.cpp
    M libc/test/src/math/sinf_test.cpp
    M libc/test/src/math/sinhf_test.cpp
    M libc/test/src/math/sinpif_test.cpp
    M libc/test/src/math/tanf_test.cpp
    M libc/test/src/math/tanhf_test.cpp

  Log Message:
  -----------
  [libc] Clean up errno header usage in math tests. (#157898)

This is one more follow-up to PR
https://github.com/llvm/llvm-project/pull/157517 that cleans up the
usage of
libc_errno in math unit-tests (non-smoke). It follows the same rule:

* if you use libc_errno in code literally, include
src/__support/libc_errno.h
* if you only rely on errno constants, include hdr/errno_macros.h

Several tests for exp/log still retain the direct libc_errno usage,
since in some cases they skip doing any validation if the error was
raised. But the direct usage of libc_errno is removed from all other
cases.


  Commit: 9fdf2c7105972f16137bfc74456617dd4669febe
      https://github.com/llvm/llvm-project/commit/9fdf2c7105972f16137bfc74456617dd4669febe
  Author: Valentin Clement (バレンタイン クレメン) <clementval at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Lower/ConvertVariable.cpp
    M flang/test/Lower/CUDA/cuda-allocatable-device.cuf

  Log Message:
  -----------
  [flang][cuda] Call runtime initialize for derived type with device components (#157914)


  Commit: 055e4ff35ab0789494ff9a3d41e3182a3aca8d0a
      https://github.com/llvm/llvm-project/commit/055e4ff35ab0789494ff9a3d41e3182a3aca8d0a
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
    M llvm/test/Transforms/LoopVectorize/AArch64/transform-narrow-interleave-to-widen-memory-with-wide-ops.ll

  Log Message:
  -----------
  [VPlan] Don't narrow op multiple times in narrowInterleaveGroups.

Track which ops already have been narrowed, to avoid narrowing the same
operation multiple times. Repeated narrowing will lead to incorrect
results, because we could first narrow from an interleave group -> wide
load, and then narrow the wide load > single-scalar load.

Fixes thttps://github.com/llvm/llvm-project/issues/156190.


  Commit: 5ceb450cfbc6c629620ba02949cfced4ff61c2a5
      https://github.com/llvm/llvm-project/commit/5ceb450cfbc6c629620ba02949cfced4ff61c2a5
  Author: cmtice <cmtice at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M compiler-rt/test/hwasan/TestCases/Posix/dlerror.cpp
    M compiler-rt/test/rtsan/unrecognized_flags.cpp
    M compiler-rt/test/xray/TestCases/Posix/dlopen.cpp
    M compiler-rt/test/xray/TestCases/Posix/dso-dep-chains.cpp
    M compiler-rt/test/xray/TestCases/Posix/patch-premain-dso.cpp
    M compiler-rt/test/xray/TestCases/Posix/patching-unpatching-dso.cpp

  Log Message:
  -----------
  [compiler-rt] Update some tests to pass with lit internal shell. (#157910)

The lit internal shell needs environment variable definitions to be
preceded by the 'env' keyword. This PR add that to tests that were
missing it.


  Commit: 78853df2bf8236a0d218c20e4c62829e196c5d3d
      https://github.com/llvm/llvm-project/commit/78853df2bf8236a0d218c20e4c62829e196c5d3d
  Author: Kareem Ergawy <kareem.ergawy at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Optimizer/OpenMP/CMakeLists.txt
    M flang/lib/Optimizer/OpenMP/DoConcurrentConversion.cpp
    A flang/test/Transforms/DoConcurrent/basic_device.f90
    M flang/test/Transforms/DoConcurrent/basic_device.mlir
    A flang/test/Transforms/DoConcurrent/use_loop_bounds_in_body.f90

  Log Message:
  -----------
  [flang][OpenMP] Extend `do concurrent` mapping to device (#155987)

Upstreams further parts of `do concurrent` to OpenMP conversion pass
from AMD's fork. This PR extends the pass by adding support for mapping
to the device.

PR stack:
- https://github.com/llvm/llvm-project/pull/155754
- https://github.com/llvm/llvm-project/pull/155987 ◀️
- https://github.com/llvm/llvm-project/pull/155992
- https://github.com/llvm/llvm-project/pull/155993
- https://github.com/llvm/llvm-project/pull/157638
- https://github.com/llvm/llvm-project/pull/156610
- https://github.com/llvm/llvm-project/pull/156837


  Commit: 11a4f5b8c49698d8be5f4da550dbac43e6c0de8c
      https://github.com/llvm/llvm-project/commit/11a4f5b8c49698d8be5f4da550dbac43e6c0de8c
  Author: Roy Shi <royitaqi at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/test/API/tools/lldb-dap/server/TestDAP_server.py

  Log Message:
  -----------
  [lldb-dap] Fix test: TestDAP_server.py (#157924)

See
https://github.com/llvm/llvm-project/pull/156803#issuecomment-3275911510
for full context.

Summary:
* In https://github.com/llvm/llvm-project/pull/156803, we see a builtbot
failure for `TestDAP_server.py` on Debian. Note that macOS and other
Linux distributions (like CentOS, or whatever Linux the [required
buildbot](https://github.com/llvm/llvm-project/actions/runs/17594257911/job/49982560193#logs)
uses) seem to pass the tests.
* In the 3 newly added tests, the most complex test case passed, while
the other easier ones failed.
```
PASS: LLDB (/home/worker/2.0.1/lldb-x86_64-debian/build/bin/clang-x86_64) :: test_connection_timeout_multiple_sessions (TestDAP_server.TestDAP_server.test_connection_timeout_multiple_sessions)
FAIL: LLDB (/home/worker/2.0.1/lldb-x86_64-debian/build/bin/clang-x86_64) :: test_connection_timeout_long_debug_session (TestDAP_server.TestDAP_server.test_connection_timeout_long_debug_session)
FAIL: LLDB (/home/worker/2.0.1/lldb-x86_64-debian/build/bin/clang-x86_64) :: test_connection_timeout_at_server_start (TestDAP_server.TestDAP_server.test_connection_timeout_at_server_start)
```
* The error is that `process.wait(timeout)` timed out during the
teardown of the tests.
* The above suggests that maybe the root cause is that the timeout is
set too strictly (and that maybe the server termination on Debian is
slower than the other Linux distribution for some reason).
* This patch loosens that timeout from 2s to 5s. Let's see if this
works.
* FWIW, I cannot verify the root cause, because I don't have a Debian
machine.


  Commit: 9e778f6cd155f64896a9a0580e96aa4814ca999b
      https://github.com/llvm/llvm-project/commit/9e778f6cd155f64896a9a0580e96aa4814ca999b
  Author: joaosaffran <joaosaffranllvm at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/lib/Sema/SemaHLSL.cpp
    M llvm/include/llvm/BinaryFormat/DXContainer.h
    M llvm/include/llvm/BinaryFormat/DXContainerConstants.def
    M llvm/include/llvm/Frontend/HLSL/RootSignatureValidations.h
    M llvm/include/llvm/MC/DXContainerRootSignature.h
    M llvm/include/llvm/Support/DXILABI.h
    M llvm/lib/Frontend/HLSL/RootSignatureMetadata.cpp
    M llvm/lib/Frontend/HLSL/RootSignatureValidations.cpp
    M llvm/lib/MC/DXContainerRootSignature.cpp
    M llvm/lib/ObjectYAML/DXContainerEmitter.cpp
    M llvm/lib/Target/DirectX/DXILPostOptimizationValidation.cpp
    M llvm/lib/Target/DirectX/DXILRootSignature.cpp
    M llvm/test/CodeGen/DirectX/ContainerData/RootSignature-Parameters.ll

  Log Message:
  -----------
  [DirectX] Removing dxbc DescriptorRange from mcbxdc (#154629)

MC Descriptor Range Representation currently depend on Object
structures. This PR removes that dependency and in order to facilitate
removing to_underlying usage in follow-up PRs.


  Commit: 6a581f72031ed4e1165c735481b358988ab9e01e
      https://github.com/llvm/llvm-project/commit/6a581f72031ed4e1165c735481b358988ab9e01e
  Author: Matheus Izvekov <mizvekov at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/docs/ReleaseNotes.rst
    M clang/lib/AST/ASTContext.cpp
    M clang/test/SemaCXX/sugar-common-types.cpp

  Log Message:
  -----------
  [clang] fix incorrect assumption about function type 's ExtInfo (#157925)

This fixes an assumption that the ExtInfo for two same function types
would have referential equality.

This should compare these ExtInfos by value instead.

The bug is pre-existing to
https://github.com/llvm/llvm-project/pull/147835, but that PR adds
another way to reproduce it.


  Commit: c6947dad53dacc19d47b4da6b1984ca39ec111f6
      https://github.com/llvm/llvm-project/commit/c6947dad53dacc19d47b4da6b1984ca39ec111f6
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/lib/Target/RISCV/RISCVSubtarget.h

  Log Message:
  -----------
  [RISCV] Add helper method for detecting BEXTI or TH_TST is supported. NFC (#157915)

These instructions both extract single bit to bit 0 and fill the upper
bits with 0.

There's at least one place where we check for BEXTI but not TH_TST. I
wanted to keep this patch NFC so that will be a follow up fix.


  Commit: 262c7b7b5a996b0c46fdfc3480273f1864edc1c0
      https://github.com/llvm/llvm-project/commit/262c7b7b5a996b0c46fdfc3480273f1864edc1c0
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
    M llvm/lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-abs-diff-rv32.mir
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-abs-diff-rv64.mir

  Log Message:
  -----------
  [RISCV][GISel] Widen G_ABDS/G_ABDU before lowering when Zbb is enabled. (#157766)

This allows us to use G_SMIN/SMAX/UMIN/UMAX in the lowering.


  Commit: f0b80699ccb9262a789523a4c987af7864d8ee55
      https://github.com/llvm/llvm-project/commit/f0b80699ccb9262a789523a4c987af7864d8ee55
  Author: Valentin Clement (バレンタイン クレメン) <clementval at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/include/flang/Semantics/tools.h

  Log Message:
  -----------
  [flang][cuda][NFC] Simplify IsCUDAShared (#157931)


  Commit: d7e6e7289d668354e63c48fd229198ae697f8521
      https://github.com/llvm/llvm-project/commit/d7e6e7289d668354e63c48fd229198ae697f8521
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVInstrInfoZb.td
    A llvm/test/MC/RISCV/rv32zbkb-aliases-valid.s
    A llvm/test/MC/RISCV/rv64zbkb-aliases-valid.s

  Log Message:
  -----------
  [RISCV] Correct the predicate for the ror and rorw with immediate InstAliases. (#157921)


  Commit: 55e99efdf1bdd7150f680eee171e0d867a0864c6
      https://github.com/llvm/llvm-project/commit/55e99efdf1bdd7150f680eee171e0d867a0864c6
  Author: Ebuka Ezike <yerimyah1 at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/rerun_and_expr_dylib/TestRerunAndExprDylib.py

  Log Message:
  -----------
  [lldb][test] skip test `TestRerunAndExprDylib.py` on remote (#157916)


  Commit: c745c5497069a966a43e5ba03d137e0189921073
      https://github.com/llvm/llvm-project/commit/c745c5497069a966a43e5ba03d137e0189921073
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/tools/llvm-cgdata/empty.test
    M llvm/test/tools/llvm-cgdata/error.test
    M llvm/test/tools/llvm-gsymutil/X86/elf-dwarf.yaml
    M llvm/test/tools/llvm-objcopy/ELF/add-invalid-note.test
    M llvm/test/tools/llvm-profdata/binary-ids-padding.test
    M llvm/test/tools/llvm-profdata/raw-32-bits-be.test
    M llvm/test/tools/llvm-profdata/raw-32-bits-le.test
    M llvm/test/tools/llvm-profdata/raw-64-bits-be.test
    M llvm/test/tools/llvm-profdata/raw-64-bits-le.test
    M llvm/test/tools/llvm-strings/negative-char.test
    M llvm/test/tools/llvm-strings/stdin.test
    M llvm/test/tools/llvm-symbolizer/basic.s
    M llvm/test/tools/llvm-symbolizer/split-dwarf-dwp.test
    M llvm/test/tools/sanstats/elf.test

  Log Message:
  -----------
  [LLVM] Prefer octal to hex for printf (#157884)

Hex escapes of the form \xff are not universally supported in the printf
implementations on the platforms that LLVM runs on (although they
apparently are in the shell builtins). Octal escapes are required to be
supported by POSIX. This patch converts all hex escapes to octal escapes
for compatibility reasons.

This came up when trying to turn on lit's internal shell by default for
llvm/. We started using /usr/bin/printf instead of the shell builtin on
MacOS, which does not support hex escapes.

I used the following python script to automate most of the conversion
with a few manual touchups needed:
```py
import sys

def process_line(to_process: str):
    output = ""
    i = 0
    while i < len(to_process):
        if to_process[i:i+2] == '\\x':
            hex_string = to_process[i+2:i+4]
            number = int(hex_string, 16)
            output += "\\"
            octal_string = oct(number)[2:]
            if len(octal_string) == 1:
                octal_string = "00" + octal_string
            elif len(octal_string) == 2:
                octal_string = "0" + octal_string
            assert(len(octal_string) == 3)
            output += octal_string
            i += 4
        else:
            output += to_process[i]
            i += 1
    return output

with open(sys.argv[1]) as input_file:
    lines = input_file.readlines()

for i, _ in enumerate(lines):
    lines[i] = process_line(lines[i])

with open(sys.argv[1], 'w') as output_file:
    output_file.writelines(lines)
```


  Commit: 17723e472e228be5404ab4377498b52a0c5db03b
      https://github.com/llvm/llvm-project/commit/17723e472e228be5404ab4377498b52a0c5db03b
  Author: Bangtian Liu <liubangtian at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
    M mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp

  Log Message:
  -----------
  [mlir][Linalg] Allow PartialReductionOpInterface ops in tile_reduction_using_forall (#157932)

Following [PR
#120118](https://github.com/llvm/llvm-project/pull/120118), this PR
extends transform.structured.tile_reduction_using_forall so that it can
be applied to any operation implementing `PartialReductionOpInterface`,
rather than being restricted to LinalgOp.

Existing tests relevant to linalg ops remain valid:
https://github.com/llvm/llvm-project/blob/2a2296b1aab4614bf6c95c3003000832c9d43de5/mlir/test/Dialect/Linalg/transform-tile-reduction.mlir#L114

Additional tests for non-Linalg operations (e.g., IREE custom ops that
implement `PartialReductionOpInterface`) will be added on the IREE side.

Signed-off-by: Bangtian Liu <liubangtian at gmail.com>


  Commit: 3af202abf88882e05d6c1e9aa8d7a471c2af9d64
      https://github.com/llvm/llvm-project/commit/3af202abf88882e05d6c1e9aa8d7a471c2af9d64
  Author: Druzhkov Sergei <serzhdruzhok at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/Maintainers.md

  Log Message:
  -----------
  [NFC][LLVM] Fix link in Maintainers.md (#157857)

Fixed link to LLDB maintainers list (format was changed in 48ace3f.


  Commit: 24e9ee44a8a58ae4b23a2508ca331ebf001972e2
      https://github.com/llvm/llvm-project/commit/24e9ee44a8a58ae4b23a2508ca331ebf001972e2
  Author: Peter Klausler <pklausler at nvidia.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Evaluate/check-expression.cpp
    M flang/test/Lower/components.f90
    A flang/test/Semantics/contiguous02.f90

  Log Message:
  -----------
  [flang] Improve contiguity checker for component references (#153222)

Component references to array values had a couple of TODOs in the
contiguity checker; implement them so that contiguity errors/warnings
and code generation are more accurate. Specifically, "a(1:1)%b" is
contiguous because there's a single element; "a(1:2)%b" is contiguous
when the type of "a" has but a single component. The case of multiple
components in the type is discontiguous when the array is known to have
multiple elements.


  Commit: 827d775d6727c786278acea7dbe74c91ac25a49d
      https://github.com/llvm/llvm-project/commit/827d775d6727c786278acea7dbe74c91ac25a49d
  Author: Krzysztof Parzyszek <Krzysztof.Parzyszek at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/docs/OpenMPSupport.rst

  Log Message:
  -----------
  [docs][OpenMP] Claim TASKGRAPH (#157947)

cc: @jtb20


  Commit: 7f007b572d63fe802a1f5587c74aae437f9f50e6
      https://github.com/llvm/llvm-project/commit/7f007b572d63fe802a1f5587c74aae437f9f50e6
  Author: Artem Kroviakov <71938912+akroviakov at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/lib/Dialect/Vector/Transforms/VectorDistribute.cpp
    M mlir/test/Dialect/Vector/vector-warp-distribute.mlir
    M mlir/test/Dialect/XeGPU/subgroup-distribute.mlir

  Log Message:
  -----------
  [MLIR][Vector] Add warp distribution for `scf.if` (#157119)

This PR adds `scf.if` op distribution to the existing `VectorDistribute`
patterns. The logic mostly follows that of `scf.for`: move op outside, wrap each
branch with `gpu.warp_execute_on_lane_0`. A notable difference to `scf.for` is 
that each branch has its own set of escaping values, and `scf.if` itself does not 
have block arguments.


  Commit: 35b141f6c976bc90ffb361f3f8cfd584d737e6eb
      https://github.com/llvm/llvm-project/commit/35b141f6c976bc90ffb361f3f8cfd584d737e6eb
  Author: Peter Klausler <pklausler at nvidia.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Semantics/expression.cpp
    A flang/test/Evaluate/bug157379.f90

  Log Message:
  -----------
  [flang] Translate +x to (x), not x (#157513)

In expression semantics, don't completely delete the unary plus
operator, but instead translate it into parentheses. The distinction
matters in contexts where the bounds of x are significant or when x must
not be misinterpreted as a variable.

Fixes https://github.com/llvm/llvm-project/issues/157379.


  Commit: de5f9fa7b3fb1a22751f2d222e75e80bfdd138a0
      https://github.com/llvm/llvm-project/commit/de5f9fa7b3fb1a22751f2d222e75e80bfdd138a0
  Author: Erich Keane <ekeane at nvidia.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/include/clang/Sema/Sema.h

  Log Message:
  -----------
  [NFCI] Fix Wattributes warnings from Sema. (#157906)

See: https://github.com/llvm/llvm-project/issues/157834

There is some visibility concerns here, so this patch suppresses the
diagnostic. I believe we are doing this intentionally, so unless someone
comes up with a good reason we should either remove the visibility of
Sema, or make these types visible, this seems like the right way
forward.

Fixes: #157834


  Commit: e062b9c9a3433c968786f0d8107b032f53ebe14f
      https://github.com/llvm/llvm-project/commit/e062b9c9a3433c968786f0d8107b032f53ebe14f
  Author: Peter Klausler <pklausler at nvidia.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Semantics/resolve-names.cpp
    M flang/lib/Semantics/symbol.cpp
    M flang/test/Semantics/resolve20.f90

  Log Message:
  -----------
  [flang] Downgrade error to warning for consistency (#157191)

When a procedure name is declared EXTERNAL and then followed up with an
explicit INTERFACE, the compiler emits an error when the procedure is a
dummy procedure but only a warning otherwise. Since the EXTERNAL
statement is harmless in both cases, accept the case of a dummy
procedure as well for consistency.

Fixes https://github.com/llvm/llvm-project/issues/157162.


  Commit: 8ae3aeaca0b2de1702c90b120ef4b57accef9a3c
      https://github.com/llvm/llvm-project/commit/8ae3aeaca0b2de1702c90b120ef4b57accef9a3c
  Author: choikwa <5455710+choikwa at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    A llvm/test/CodeGen/AMDGPU/waitcnt-unscoped.ll

  Log Message:
  -----------
  [AMDGPU] NFC. Add testcase to test SIInsertWaitcnts::generateWaitcntInstBefore (#157938)

Pre-commit testcase for https://github.com/llvm/llvm-project/pull/157821


  Commit: 701b839885477df72e376adc2c74f070adcb80a9
      https://github.com/llvm/llvm-project/commit/701b839885477df72e376adc2c74f070adcb80a9
  Author: Valentin Clement (バレンタイン クレメン) <clementval at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Optimizer/Transforms/CUFOpConversion.cpp
    M flang/test/Fir/CUDA/cuda-data-transfer.fir

  Log Message:
  -----------
  [flang][cuda] Fix type mismatch when transferring logical (#157952)


  Commit: 1efa997317b7fb7ad2eacf5ff1497f09d8ca203b
      https://github.com/llvm/llvm-project/commit/1efa997317b7fb7ad2eacf5ff1497f09d8ca203b
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
    M llvm/lib/Transforms/Vectorize/VPlanUnroll.cpp
    M llvm/test/Transforms/LoopVectorize/X86/fixed-order-recurrence.ll
    M llvm/test/Transforms/LoopVectorize/single-scalar-cast-minbw.ll
    M llvm/test/Transforms/LoopVectorize/vplan-printing.ll

  Log Message:
  -----------
  [VPlan] Handle stores to single-scalar addr in narrowToSingleScalars.

Move handling of stores to single-scalar/uniform address from
replicateByVF to narrowToSingleScalar.


  Commit: 10cb68593912971ad6fc844162fb659197a55f11
      https://github.com/llvm/llvm-project/commit/10cb68593912971ad6fc844162fb659197a55f11
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/docs/AMDGPUUsage.rst
    M llvm/docs/LangRef.rst

  Log Message:
  -----------
  [AMDGPU] llvm.prefetch documentation for gfx1250. NFC (#157949)


  Commit: 0c07efdebce381e87b1a68f91e9184dcd98cc5ca
      https://github.com/llvm/llvm-project/commit/0c07efdebce381e87b1a68f91e9184dcd98cc5ca
  Author: cmtice <cmtice at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M compiler-rt/test/asan/TestCases/Darwin/duplicate_os_log_reports.cpp
    M compiler-rt/test/asan/TestCases/Linux/read_binary_name_regtest.c
    M compiler-rt/test/asan/TestCases/suppressions-library.cpp
    M compiler-rt/test/asan/TestCases/verbose-log-path_test.cpp
    M compiler-rt/test/sanitizer_common/TestCases/external_symbolizer_path.cpp
    M compiler-rt/test/sanitizer_common/TestCases/suffix-log-path_test.c
    M compiler-rt/test/ubsan/TestCases/Misc/coverage-levels.cpp
    M compiler-rt/test/ubsan/TestCases/Misc/log-path_test.cpp

  Log Message:
  -----------
  [compiler-rt] Removed unnecessary 'REQUIRES: shell' from lit tests. (#157951)

As part of our work to migrate tests to use the lit internal shell by
default, this removes 'REQUIRES: shell' from tests that don't actually
require it. In one case the test was updated slightly to pass without
requiring shell.


  Commit: 984251acadb4b14bdb73b7a16fb0ccf134120c4b
      https://github.com/llvm/llvm-project/commit/984251acadb4b14bdb73b7a16fb0ccf134120c4b
  Author: Arthur Eubanks <aeubanks at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
    M llvm/test/CodeGen/AArch64/shufflevector.ll
    M llvm/test/CodeGen/Thumb2/active_lane_mask.ll
    M llvm/test/CodeGen/Thumb2/mve-complex-deinterleaving-i16-add.ll
    M llvm/test/CodeGen/Thumb2/mve-complex-deinterleaving-i8-add.ll
    M llvm/test/CodeGen/Thumb2/mve-fptosi-sat-vector.ll
    M llvm/test/CodeGen/Thumb2/mve-fptoui-sat-vector.ll
    M llvm/test/CodeGen/Thumb2/mve-laneinterleaving-cost.ll
    M llvm/test/CodeGen/Thumb2/mve-laneinterleaving.ll
    M llvm/test/CodeGen/Thumb2/mve-satmul-loops.ll
    M llvm/test/CodeGen/Thumb2/mve-sext-masked-load.ll
    M llvm/test/CodeGen/Thumb2/mve-vabdus.ll
    M llvm/test/CodeGen/Thumb2/mve-vld2.ll
    M llvm/test/CodeGen/Thumb2/mve-vld3.ll
    M llvm/test/CodeGen/Thumb2/mve-vld4-post.ll
    M llvm/test/CodeGen/Thumb2/mve-vld4.ll
    M llvm/test/CodeGen/Thumb2/mve-vmull-splat.ll
    M llvm/test/CodeGen/Thumb2/mve-vst3.ll
    M llvm/test/CodeGen/WebAssembly/vector-reduce.ll
    M llvm/test/CodeGen/X86/avx512fp16-mov.ll
    M llvm/test/CodeGen/X86/test-shrink-bug.ll
    M llvm/test/CodeGen/X86/vec_smulo.ll
    M llvm/test/CodeGen/X86/vec_umulo.ll

  Log Message:
  -----------
  Revert "[DAGCombiner] Relax condition for extract_vector_elt combine" (#157953)

Reverts llvm/llvm-project#157658

Causes hangs, see
https://github.com/llvm/llvm-project/pull/157658#issuecomment-3276441812


  Commit: f2b6ec689b5abe65c1aa4c50a2c7ef2f290f0a08
      https://github.com/llvm/llvm-project/commit/f2b6ec689b5abe65c1aa4c50a2c7ef2f290f0a08
  Author: Mehdi Amini <joker.eph at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/lib/Dialect/Quant/Transforms/NormalizeQuantTypes.cpp

  Log Message:
  -----------
  [MLIR] Apply clang-tidy fixes for performance-unnecessary-value-param in NormalizeQuantTypes.cpp (NFC)


  Commit: 690b9c991b40dea6e116510d9c9562d50e800db4
      https://github.com/llvm/llvm-project/commit/690b9c991b40dea6e116510d9c9562d50e800db4
  Author: Mehdi Amini <joker.eph at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/lib/Dialect/Linalg/Transforms/DecomposeGenericByUnfoldingPermutation.cpp

  Log Message:
  -----------
  [MLIR] Apply clang-tidy fixes for readability-container-size-empty in DecomposeGenericByUnfoldingPermutation.cpp (NFC)


  Commit: 89508c359249b80a9a0bf678c2c4ef5421fe791d
      https://github.com/llvm/llvm-project/commit/89508c359249b80a9a0bf678c2c4ef5421fe791d
  Author: Mehdi Amini <joker.eph at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/lib/Dialect/Tosa/IR/TosaOps.cpp

  Log Message:
  -----------
  [MLIR] Apply clang-tidy fixes for misc-use-internal-linkage in TosaOps.cpp (NFC)


  Commit: 5cf35f177230696d5f3b932556b4edb4d2c08df7
      https://github.com/llvm/llvm-project/commit/5cf35f177230696d5f3b932556b4edb4d2c08df7
  Author: Mehdi Amini <joker.eph at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp

  Log Message:
  -----------
  [MLIR] Apply clang-tidy fixes for performance-for-range-copy in OpenMPDialect.cpp (NFC)


  Commit: 112be8970de5d644e629dd97fcc8b9a458f47396
      https://github.com/llvm/llvm-project/commit/112be8970de5d644e629dd97fcc8b9a458f47396
  Author: Mircea Trofin <mtrofin at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/utils/profcheck-xfail.txt

  Log Message:
  -----------
  [profcheck] Add test introduced in #156477 to profcheck-xfail list (#157961)

The test exposes existing root profile propagation issues


  Commit: c04b98fbd4a2c70d547e3b9eb03446624b414d31
      https://github.com/llvm/llvm-project/commit/c04b98fbd4a2c70d547e3b9eb03446624b414d31
  Author: Mircea Trofin <mtrofin at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/utils/profcheck-xfail.txt

  Log Message:
  -----------
  Add tbaa-semantics-checks.test to profcheck-xfail.txt post- #147670 (#157963)


  Commit: c087da4b18192220debcd41d29de100987d1f324
      https://github.com/llvm/llvm-project/commit/c087da4b18192220debcd41d29de100987d1f324
  Author: GeorgeHuyubo <113479859+GeorgeHuyubo at users.noreply.github.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
    M lldb/source/Plugins/Process/elf-core/ProcessElfCore.h

  Log Message:
  -----------
  [lldb][ElfCore] Improve main executable detection in core files (#157170)

This change improves how LLDB's ProcessElfCore plugin identifies the
main executable when loading ELF core files. Previously, the code would
simply use the first entry in the NT_FILE section, which is not
guaranteed to be the main executable, also the first entry might not
have a valid UUID.

1. **Storing executable name**: Extract the executable name from the ELF
NT_PRPSINFO note and store it in `m_executable_name`

2. **Preferential matching**: When selecting the main executable from
NT_FILE entries, prefer entries whose path ends with the stored
executable name

3. **UUID-based lookup**: Call `FindModuleUUID()` helper function to
properly match modules by path and retrieve a valid UUID

Co-authored-by: George Hu <hyubo at meta.com>


  Commit: 4a4bddec3571d78c8073fa45b57bbabc8796d13d
      https://github.com/llvm/llvm-project/commit/4a4bddec3571d78c8073fa45b57bbabc8796d13d
  Author: Jan Svoboda <jan_svoboda at apple.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/include/clang/Driver/Options.td
    M clang/include/clang/Frontend/CompilerInstance.h
    M clang/lib/Frontend/CompilerInstance.cpp
    M clang/lib/Frontend/CompilerInvocation.cpp
    M clang/lib/Serialization/ASTWriter.cpp
    M clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
    A clang/test/Modules/modules-cache-path-canonicalization-output.c

  Log Message:
  -----------
  [clang] Delay normalization of `-fmodules-cache-path` (#150123)

This PR is part of an effort to remove file system usage from the
command line parsing code. The reason for that is that it's impossible
to do file system access correctly without a configured VFS, and the VFS
can only be configured after the command line is parsed. I don't want to
intertwine command line parsing and VFS configuration, so I decided to
perform the file system access after the command line is parsed and the
VFS is configured - ideally right before the file system entity is used
for the first time.

This patch delays normalization of the module cache path until
`CompilerInstance` is asked for the cache path in the current
compilation context.


  Commit: b8cefcb601ddaa18482555c4ff363c01a270c2fe
      https://github.com/llvm/llvm-project/commit/b8cefcb601ddaa18482555c4ff363c01a270c2fe
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/VOP3PInstructions.td

  Log Message:
  -----------
  [AMDGPU] Restrict operands of ld_scale_paired to low 256 vgprs. NFCI (#157935)

This is NFC because these instructions are never selected just
by itself.


  Commit: 613caa909c78f707e88960723c6a98364656a926
      https://github.com/llvm/llvm-project/commit/613caa909c78f707e88960723c6a98364656a926
  Author: Jan Svoboda <jan_svoboda at apple.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/include/clang/Driver/Options.td
    M clang/include/clang/Frontend/CompilerInstance.h
    M clang/lib/Frontend/CompilerInstance.cpp
    M clang/lib/Frontend/CompilerInvocation.cpp
    M clang/lib/Serialization/ASTWriter.cpp
    M clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
    R clang/test/Modules/modules-cache-path-canonicalization-output.c

  Log Message:
  -----------
  Revert "[clang] Delay normalization of `-fmodules-cache-path` (#150123)"

This reverts commit 4a4bddec3571d78c8073fa45b57bbabc8796d13d. The Serialization library doesn't link Frontend, where CompilerInstance lives, causing link failures on some build bots.


  Commit: f2d827c444d07b722a94689b427d6ad2d1c6b1b7
      https://github.com/llvm/llvm-project/commit/f2d827c444d07b722a94689b427d6ad2d1c6b1b7
  Author: Mircea Trofin <mtrofin at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/IR/ProfDataUtils.h
    M llvm/lib/IR/ProfDataUtils.cpp
    M llvm/lib/IR/Verifier.cpp
    M llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
    M llvm/lib/Transforms/Scalar/JumpTableToSwitch.cpp
    M llvm/test/Transforms/JumpTableToSwitch/basic.ll
    M llvm/test/Transforms/PGOProfile/prof-inject-existing.ll
    M llvm/test/Transforms/PGOProfile/prof-verify-existing.ll
    M llvm/test/Transforms/WholeProgramDevirt/branch-funnel-profile.ll
    M llvm/test/Verifier/branch-weight.ll

  Log Message:
  -----------
  [profcheck] Require `unknown` metadata have an origin parameter (#157594)

Rather than passes using `!prof = !{!”unknown”}`​for cases where don’t have enough information to emit profile values, this patch captures the pass (or some other information) that can help diagnostics - i.e. `!{!”unknown”, !”some-pass-name”}`​.

For example, suppose we emitted a `select`​ with the unknown metadata, and, later, end up needing to lower that to a conditional branch. If we observe (via sample profiling, for example) that the branch is biased and would have benefitted from a valid profile, the extra information can help speed up debugging.

We can also (in a subsequent pass) generate optimization remarks about such lowered selects, with a similar aim - identify patterns lowering to `select`​ that may be worth some extra investment in extracting a more precise profile.


  Commit: 1b9b79071de634c8d77785c4d2c8da02857b533b
      https://github.com/llvm/llvm-project/commit/1b9b79071de634c8d77785c4d2c8da02857b533b
  Author: Sang Ik Lee <sang.ik.lee at intel.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M mlir/lib/Conversion/XeGPUToXeVM/XeGPUToXeVM.cpp
    M mlir/test/Conversion/XeGPUToXeVM/create_nd_tdesc.mlir
    M mlir/test/Conversion/XeGPUToXeVM/loadstoreprefetch.mlir
    M mlir/test/Conversion/XeGPUToXeVM/materializecast.mlir
    R mlir/test/Conversion/XeGPUToXeVM/update_offset.mlir

  Log Message:
  -----------
  [MLIR][Conversion] Convert XeGPU to XeVM pass: Remove lowering support for tensor descriptor with offsets. (#157550)

And update load/store/prefetch test cases to use direct offsets.
Tensor descriptors with offsets are getting deprecated.


  Commit: 0b87d27097dc71916dd041e5be87fefd26006867
      https://github.com/llvm/llvm-project/commit/0b87d27097dc71916dd041e5be87fefd26006867
  Author: Joseph Huber <huberjn at outlook.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M libc/src/__support/CPP/CMakeLists.txt
    M libc/src/__support/CPP/simd.h
    M libc/test/src/__support/CPP/simd_test.cpp

  Log Message:
  -----------
  [libc] Implement vector 'split' and 'concat' routines (#157537)

Summary:
This provides some helpers for the split and concatenation routines for
changing the size of an existing vector. This includes a simple tuple
type to do the splitting. The tuple doesn't support structured bindings
yet.

The concat function is more limited than what would be ideal, but the
shufflevector builtin requires things of equivalent sizes and I
didn't think it was worth wrangling with that just yet.


  Commit: d7318ebe9338cd2d4cd4023bd308d981b5e01ece
      https://github.com/llvm/llvm-project/commit/d7318ebe9338cd2d4cd4023bd308d981b5e01ece
  Author: Alexey Samsonov <vonosmas at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M libc/test/src/wchar/CMakeLists.txt
    M libc/test/src/wchar/WcstolTest.h
    M libc/test/src/wchar/mblen_test.cpp
    M libc/test/src/wchar/mbrlen_test.cpp
    M libc/test/src/wchar/mbrtowc_test.cpp
    M libc/test/src/wchar/mbsnrtowcs_test.cpp
    M libc/test/src/wchar/mbsrtowcs_test.cpp
    M libc/test/src/wchar/mbstowcs_test.cpp
    M libc/test/src/wchar/mbtowc_test.cpp
    M libc/test/src/wchar/wcrtomb_test.cpp
    M libc/test/src/wchar/wctomb_test.cpp

  Log Message:
  -----------
  [libc] Clean up errno header usage in wchar tests. (#157942)

See PR #157898 and PR #157517 for similar changes to math tests.

Don't include libc_errno.h header, since the tests don't manipulate
errno directly. Instead, where appropriate, include hdr/errno_macros.h
proxy header to get errno constant values to match against.


  Commit: 55bef46146f05e1911fcb98715716d914efd518c
      https://github.com/llvm/llvm-project/commit/55bef46146f05e1911fcb98715716d914efd518c
  Author: Jan Svoboda <jan_svoboda at apple.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/include/clang/Driver/Options.td
    M clang/include/clang/Lex/HeaderSearch.h
    M clang/lib/Frontend/CompilerInstance.cpp
    M clang/lib/Frontend/CompilerInvocation.cpp
    M clang/lib/Lex/HeaderSearch.cpp
    M clang/lib/Serialization/ASTWriter.cpp
    M clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
    A clang/test/Modules/modules-cache-path-canonicalization-output.c

  Log Message:
  -----------
  Reland "[clang] Delay normalization of `-fmodules-cache-path` (#150123)"

This reverts commit 613caa909c78f707e88960723c6a98364656a926, essentially
reapplying 4a4bddec3571d78c8073fa45b57bbabc8796d13d after moving
`normalizeModuleCachePath` from clangFrontend to clangLex.

This PR is part of an effort to remove file system usage from the
command line parsing code. The reason for that is that it's impossible
to do file system access correctly without a configured VFS, and the VFS
can only be configured after the command line is parsed. I don't want to
intertwine command line parsing and VFS configuration, so I decided to
perform the file system access after the command line is parsed and the
VFS is configured - ideally right before the file system entity is used
for the first time.

This patch delays normalization of the module cache path until
`CompilerInstance` is asked for the cache path in the current
compilation context.


  Commit: 675ecf6d73534c4c18081667e4b843561540c36a
      https://github.com/llvm/llvm-project/commit/675ecf6d73534c4c18081667e4b843561540c36a
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/test/CodeGen/RISCV/ctlz-cttz-ctpop.ll
    M llvm/test/CodeGen/RISCV/rv64xtheadbb.ll

  Log Message:
  -----------
  [RISCV] Use default promotion for i32 CTLZ_ZERO_UNDEF on RV64 with XTHeadBb. (#157955)

If we don't need to worry about the input being zero, we can shift the
input right by 32 and use TH_FF1.


  Commit: db74eae1dc92719fe91e0101d8255427933a61d5
      https://github.com/llvm/llvm-project/commit/db74eae1dc92719fe91e0101d8255427933a61d5
  Author: Ryosuke Niwa <rniwa at webkit.org>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M clang/lib/StaticAnalyzer/Checkers/WebKit/ASTUtils.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/ASTUtils.h
    M clang/lib/StaticAnalyzer/Checkers/WebKit/ForwardDeclChecker.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/RawPtrRefCallArgsChecker.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/RawPtrRefLocalVarsChecker.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/RetainPtrCtorAdoptChecker.cpp
    M clang/test/Analysis/Checkers/WebKit/call-args-checked-const-member.cpp
    M clang/test/Analysis/Checkers/WebKit/retain-ptr-ctor-adopt-use.mm
    M clang/test/Analysis/Checkers/WebKit/uncounted-local-vars.cpp
    M clang/test/Analysis/Checkers/WebKit/unretained-call-args.mm

  Log Message:
  -----------
  [WebKit checkers] Treat NULL, 0, and nil like nullptr (#157700)

This PR makes WebKit checkers treat NULL, 0, and nil like nullptr in
various places.


  Commit: 4644099b54e8c794bce56adabc5f3c3d714e325f
      https://github.com/llvm/llvm-project/commit/4644099b54e8c794bce56adabc5f3c3d714e325f
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp

  Log Message:
  -----------
  AMDGPU: Remove most manual AVLdSt decoder code (#157861)

This was additional hacking around using incorrect register class
constraints for paired data operands. I'm not really sure why we
need any of what's left. In particular the IS_VGPR special case
seems backwards from how the encoding works.


  Commit: 8f8429540e8acb67df4e9f260326a372d2695dee
      https://github.com/llvm/llvm-project/commit/8f8429540e8acb67df4e9f260326a372d2695dee
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/ExpandVectorPredication.cpp

  Log Message:
  -----------
  [ExpandVectorPredication] Keep the original value name when expanding predicated instructions. (#157943)

This makes it easier to follow a value through the pass. If we pass the
original name to the create function, a number will be added as a suffix
since the original name is still used until it is replaced.


  Commit: f869d7a1b100c9f9fc5bb06effcf4f73346c0919
      https://github.com/llvm/llvm-project/commit/f869d7a1b100c9f9fc5bb06effcf4f73346c0919
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/test/lit.cfg.py

  Log Message:
  -----------
  Reapply "[llvm] Use lit internal shell by default"

This reverts commit ee5bc5701bbe9c0deb44dc5ab036c40f2a7bf7e0.

This was causing test failures on Darwin due to printf there not supporting hex
escapes. That has since been fixed in a separate patch.


  Commit: 9179d3f19e32630dd54efd8a41cb57737b5ec4f3
      https://github.com/llvm/llvm-project/commit/9179d3f19e32630dd54efd8a41cb57737b5ec4f3
  Author: joaosaffran <joaosaffranllvm at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Frontend/HLSL/HLSLBinding.h
    M llvm/lib/Target/DirectX/DXILPostOptimizationValidation.cpp
    A llvm/test/CodeGen/DirectX/rootsignature-valid-textures.ll
    A llvm/test/CodeGen/DirectX/rootsignature-valid-typedbuffer.ll
    A llvm/test/CodeGen/DirectX/rootsignature-validation-textures-fail.ll
    A llvm/test/CodeGen/DirectX/rootsignature-validation-typedbuffer-fail.ll

  Log Message:
  -----------
  [DirectX] Validate if Textures/TypedBuffers are being bound in Root Signatures (#147573)

DXC doesn't allow Textures/TypedBuffers to bind with root signature
descriptors, this implements the same check.

Closes: #126647

---------

Co-authored-by: joaosaffran <joao.saffran at microsoft.com>
Co-authored-by: Joao Saffran <{ID}+{username}@users.noreply.github.com>
Co-authored-by: Joao Saffran <jderezende at microsoft.com>


  Commit: 3e898bc40fc344b72cdf6b0ee75eb22b73ee840f
      https://github.com/llvm/llvm-project/commit/3e898bc40fc344b72cdf6b0ee75eb22b73ee840f
  Author: Elvis Wang <elvis.wang at sifive.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    M llvm/test/Transforms/LoopVectorize/RISCV/gather-scatter-cost.ll

  Log Message:
  -----------
  [LV] Fix cost misaligned when gather/scatter w/ addr is uniform. (#157387)

This patch fix the assertion when the `isUniform` (from legacy model)
and `isSingleScalar`(from Vplan-based model) mismatch.

The simplify test that cause assertion
```
loop:
  loadA = load %a  => %a is loop invariant.
  loadB = load %LoadA
  ...
```
In the legacy cost model, it cannot analysis that addr of `%loadB` is
uniform but in the Vplan-based cost model both addr in `%loadA` and
`loadB` is single scalar.

Full test caused crash: https://llvm.godbolt.org/z/zEG8YKjqh.

---------

Co-authored-by: Luke Lau <luke at igalia.com>


  Commit: 0efa75de650c41cce0e56d2b1a396d740fd96ab4
      https://github.com/llvm/llvm-project/commit/0efa75de650c41cce0e56d2b1a396d740fd96ab4
  Author: Krzysztof Parzyszek <Krzysztof.Parzyszek at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Semantics/symbol.cpp

  Log Message:
  -----------
  [flang] Fix MSVC build break after e062b9c9a3433 (#157971)


  Commit: b8e1cc5c72d1e4243a189b2516517bcd5de7ea18
      https://github.com/llvm/llvm-project/commit/b8e1cc5c72d1e4243a189b2516517bcd5de7ea18
  Author: Alexey Samsonov <vonosmas at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M libc/test/src/time/CMakeLists.txt
    M libc/test/src/time/asctime_r_test.cpp
    M libc/test/src/time/asctime_test.cpp
    M libc/test/src/time/ctime_r_test.cpp
    M libc/test/src/time/ctime_test.cpp
    M libc/test/src/time/gmtime_r_test.cpp
    M libc/test/src/time/gmtime_test.cpp
    M libc/test/src/time/nanosleep_test.cpp

  Log Message:
  -----------
  [libc] Migrate some test/src/time tests to ErrnoCheckingTest. (#157960)

Use ErrnoCheckingTest harness to clear out / validate errno value
before/after the test respectively. Clean up explicit libc_errno.h
inclusions which is unnecessary, since no test modifies errno directly.


  Commit: 4eadb45f83cef00165055f8038f179ca5c3e88ef
      https://github.com/llvm/llvm-project/commit/4eadb45f83cef00165055f8038f179ca5c3e88ef
  Author: Jason Molenda <jmolenda at apple.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py

  Log Message:
  -----------
  [lldb][NFC] Try to adapt Cortex-M API test for an Unbuntu bot

When I added support for the Cortex-M exception return unwinding,
I got CI test failures on the lldb-remote-linux-ubuntu bot.  The
triple from my test `binary.json`, "armv7m-apple", was not being
used for the Target, so the incorrect SysV / AAPCS ABI was being
selected, and that ABI plugin has default unwind plans that hardcode
the arm-code r11 frame pointer behavior.  This is a Cortex-M
core, and r7 should be used.  The Darwin Arm ABI plugin uses r7 for
both arm and thumb, and behaves correctly.

Try getting the triple from `binary.json` in the API test, creating
the target with that triple explicitly before loading the corefile.
This may help prevent however we were losing the "-apple-" part of
the triple.  We'll see what the CI bot looks like with this added.


  Commit: 96413995d485783b2c1eede30e1fc7e277ba4e9c
      https://github.com/llvm/llvm-project/commit/96413995d485783b2c1eede30e1fc7e277ba4e9c
  Author: Justin Bogner <mail at justinbogner.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/unittests/Support/VirtualOutputBackendsTest.cpp

  Log Message:
  -----------
  Fix a `-Wunused-variable` warning on windows (#157973)

The `UID` variable is only being used inside the `#ifndef _WIN32` block - move
the definition into the block as well.


  Commit: 0dbea52dde644e23672cde3bcc8bcef560a0eaf8
      https://github.com/llvm/llvm-project/commit/0dbea52dde644e23672cde3bcc8bcef560a0eaf8
  Author: Krzysztof Parzyszek <Krzysztof.Parzyszek at amd.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/include/flang/Parser/dump-parse-tree.h
    M flang/include/flang/Parser/parse-tree.h
    M flang/lib/Parser/openmp-parsers.cpp
    M flang/lib/Semantics/resolve-directives.cpp
    A flang/test/Parser/OpenMP/taskgraph.f90
    M llvm/include/llvm/Frontend/OpenMP/OMP.td

  Log Message:
  -----------
  [flang][OpenMP] Parse TASKGRAPH, GRAPH_ID, and GRAPH_RESET (#157926)

This is parsing only, no semantic check are performed.


  Commit: 21857ae337e0892a5522b6e7337899caa61de2a6
      https://github.com/llvm/llvm-project/commit/21857ae337e0892a5522b6e7337899caa61de2a6
  Author: Jason Molenda <jmolenda at apple.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py

  Log Message:
  -----------
  Revert "[lldb][NFC] Try to adapt Cortex-M API test for an Unbuntu bot"

This reverts commit 4eadb45f83cef00165055f8038f179ca5c3e88ef.


  Commit: d8f0a57d4c18f92447d231650ed36dd6d56593f8
      https://github.com/llvm/llvm-project/commit/d8f0a57d4c18f92447d231650ed36dd6d56593f8
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/utils/lit/lit/TestRunner.py
    M llvm/utils/lit/lit/builtin_commands/cat.py

  Log Message:
  -----------
  [lit] Remove StringIO imports

StringIO was moved to io.StringIO in Python 3. These try/catch
statements were intended to provide cross compatibility between the two.
Now that LLVM's minimum required Python version is 3.8 and Python 2 has
been deprecated for a while, we can probably drop support. Especially
since there is no upstream testing for this configuration.


  Commit: 79012fcfd333040e517f82e235d114c3bc960a99
      https://github.com/llvm/llvm-project/commit/79012fcfd333040e517f82e235d114c3bc960a99
  Author: Vitaly Buka <vitalybuka at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
    M llvm/lib/Transforms/IPO/LowerTypeTests.cpp
    M llvm/unittests/Transforms/IPO/LowerTypeTests.cpp

  Log Message:
  -----------
  [LowerTypeTests] Optimize buildBitSet (#157386)

`buildBitSet` had a loop trough entire GlobalLayout to pickup matching
offsets.

The patch maps all offsets to correspondign
`TypeId`, so we pass prepared list of offsets into
`buildBitSet`.

On one large internal binary, `LowerTypeTests`
took 58% of ThinLTO link time before the patch.
After the patch just 7% (absolute saving is 200s).


  Commit: 902f1fcb321f2cf59e42ef771feab956886ac18e
      https://github.com/llvm/llvm-project/commit/902f1fcb321f2cf59e42ef771feab956886ac18e
  Author: Shunsuke Watanabe <watanabe.shu-06 at fujitsu.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/DiagnosticDriverKinds.td
    M clang/lib/Driver/ToolChains/Clang.cpp
    M clang/lib/Driver/ToolChains/CommonArgs.cpp
    M clang/test/Driver/cl-options.c
    M clang/test/Driver/fp-model.c
    A clang/test/Driver/range-warnings.c
    M clang/test/Driver/range.c

  Log Message:
  -----------
  [clang][driver] Improve warning message for complex range overrides (#154899)

This patch improves the warnings to show which user options override the
complex range. When a complex range is overridden, explicitly display
both the option name and the implied complex range value for both the
overriding and the overridden options.

See also the discussion in the following discourse post:
https://discourse.llvm.org/t/the-priority-of-fno-fast-math-regarding-complex-number-calculations/84679


  Commit: c69172637efbe756b3987eb3531d7932886fbef7
      https://github.com/llvm/llvm-project/commit/c69172637efbe756b3987eb3531d7932886fbef7
  Author: woruyu <1214539920 at qq.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
    M llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
    M llvm/lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer-info-validation.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-sadde-rv32.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-sadde-rv64.mir

  Log Message:
  -----------
  [RISCV][GISel] Lower G_SADDE (#156865)

### Summary
Try to implemente Lower G_SADDE in LegalizerHelper::lower


  Commit: 8a8a810506cb8ba9b7992c3174e53aa60e9175f7
      https://github.com/llvm/llvm-project/commit/8a8a810506cb8ba9b7992c3174e53aa60e9175f7
  Author: Garth Lei <35474819+garthlei at users.noreply.github.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp

  Log Message:
  -----------
  [SLP][NFC] Remove unused local variable in lambda (#156835)


  Commit: 41d7ae84e5040b70aa6663c7ef643ba2264760a0
      https://github.com/llvm/llvm-project/commit/41d7ae84e5040b70aa6663c7ef643ba2264760a0
  Author: Shaoce SUN <sunshaoce at outlook.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
    M llvm/lib/CodeGen/GlobalISel/Utils.cpp
    M llvm/lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp
    M llvm/test/CodeGen/RISCV/GlobalISel/double-arith.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/float-arith.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer-info-validation.mir
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-fp-arith-f16.mir
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-fp-arith.mir

  Log Message:
  -----------
  [RISCV][GlobalIsel] Lower G_FMINIMUMNUM, G_FMAXIMUMNUM (#157295)

Similar to the implementation in
https://github.com/llvm/llvm-project/pull/104411 , the `fmin.s`/`fmax.s`
instructions follow IEEE 754-2019 semantics, and
`G_FMINIMUMNUM`/`G_FMAXIMUMNUM` are legal.


  Commit: cf5ae4d81582223ca59247b5c32c0619d3b3e633
      https://github.com/llvm/llvm-project/commit/cf5ae4d81582223ca59247b5c32c0619d3b3e633
  Author: jtstogel <jtstogel at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M utils/bazel/llvm-project-overlay/libc/BUILD.bazel

  Log Message:
  -----------
  Fix bazel target broken in #157537 (#157982)


  Commit: 6a6311497656ade59634ed47b9efbf78b164aa98
      https://github.com/llvm/llvm-project/commit/6a6311497656ade59634ed47b9efbf78b164aa98
  Author: cmtice <cmtice at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M compiler-rt/test/asan/TestCases/suppressions-library.cpp
    M compiler-rt/test/asan/TestCases/verbose-log-path_test.cpp
    M compiler-rt/test/ubsan/TestCases/Misc/coverage-levels.cpp
    M compiler-rt/test/ubsan/TestCases/Misc/log-path_test.cpp

  Log Message:
  -----------
  [compiler-rt] Mark some tests as unsupported on Windows. (#157972)

PR157951 removed 'REQUIRES: shell' from several tests, which (among
other things) caused them to start running on some Windows builders --
the 'REQUIRES: shell' prevented that. Some of those tests fail on
Windows. This PR marks those failing tests as UNSUPPORTED on Windows.


  Commit: afaea7f2a6b3e92a419f166ae1660c37b338e5ac
      https://github.com/llvm/llvm-project/commit/afaea7f2a6b3e92a419f166ae1660c37b338e5ac
  Author: cmtice <cmtice at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M compiler-rt/test/fuzzer/sig-trap.test

  Log Message:
  -----------
  [compiler-rt] Fix sig-trap.test to work with lit internal shell. (#157966)

Update sig-trap.test to work with the lit internal shell, as part of our
migration to make the internal shell the default for lit tests.


  Commit: 14cf515f0aad34864470e56870cda4f6400773af
      https://github.com/llvm/llvm-project/commit/14cf515f0aad34864470e56870cda4f6400773af
  Author: cmtice <cmtice at google.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M compiler-rt/test/fuzzer/focus-function.test

  Log Message:
  -----------
  [compiler-rt] Update fuzzer/focus-function.test to not require shell. (#157967)

Replace sub-shell for-loops with python calls so this test can run in
the lit internal shell. This is part of our work migrating to use the
internal shell as the default for lit tests.


  Commit: 33757cdda84e0effe93f05e526c52653f8517828
      https://github.com/llvm/llvm-project/commit/33757cdda84e0effe93f05e526c52653f8517828
  Author: Feng Zou <feng.zou at intel.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/LTO/LTOCodeGenerator.cpp
    A llvm/test/LTO/empty-triple.ll

  Log Message:
  -----------
  [LTO] Fix the issue of resetting the triple to default when it's empty (#157829)

The empty triple is passed to lookupTarget function and it's not set to
default one. This issue is exposed after changes in
https://github.com/llvm/llvm-project/pull/157591.


  Commit: 004231aaebdcae1c735c354a9a754ec00e4523c9
      https://github.com/llvm/llvm-project/commit/004231aaebdcae1c735c354a9a754ec00e4523c9
  Author: Timm Baeder <tbaeder at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/AST/ByteCode/InterpBuiltin.cpp
    A clang/test/AST/ByteCode/builtins.c

  Log Message:
  -----------
  [clang][bytecode] Check strlen impl for primitive arrays (#157494)

Fixes #157428


  Commit: fc0f1fc6952e424fb14b60cc6ab5bfab53680a69
      https://github.com/llvm/llvm-project/commit/fc0f1fc6952e424fb14b60cc6ab5bfab53680a69
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/IR/RuntimeLibcalls.td
    M llvm/lib/IR/RuntimeLibcalls.cpp
    M llvm/test/CodeGen/ARM/issue147935-half-convert-libcall-abi.ll
    M llvm/utils/UpdateTestChecks/asm.py

  Log Message:
  -----------
  ARM: Move remaining half convert libcall config into tablegen (#153408)

The __truncdfhf2 handling is kind of convoluted, but reproduces
the existing, likely wrong, handling.


  Commit: 2b058411e9718cbda7388e11527e2a57a265d91e
      https://github.com/llvm/llvm-project/commit/2b058411e9718cbda7388e11527e2a57a265d91e
  Author: Weibo He <NewSigma at 163.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Coroutines/SpillUtils.cpp
    A llvm/test/Transforms/Coroutines/coro-alloca-09.ll

  Log Message:
  -----------
  [CoroSplit] AllocaUseVisitor visits insertvalue/insertelement (#156788)

Pointers to allocas might be escaped by users of
`insertvalue/insertelement`. `AllocaUseVisitor` should visit these
instructions so that CoroSplit can successfully determine which allocas
should live on the frame.


  Commit: c883b67e17ad3e945d5e14bc19a582fea549d7f2
      https://github.com/llvm/llvm-project/commit/c883b67e17ad3e945d5e14bc19a582fea549d7f2
  Author: Tom Stellard <tstellar at redhat.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    A llvm/docs/AdminTasks.rst
    M llvm/docs/UserGuides.rst

  Log Message:
  -----------
  Document some of the regular admin tasks (#133825)

This is not everything, but it's a start.


  Commit: 21b99e1311547dbe4807b4d1af8f5043cb82539f
      https://github.com/llvm/llvm-project/commit/21b99e1311547dbe4807b4d1af8f5043cb82539f
  Author: Timm Baeder <tbaeder at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/AST/ByteCode/Interp.cpp
    M clang/test/AST/ByteCode/references.cpp

  Log Message:
  -----------
  [clang][bytecode] Check reads for null block pointers (#157695)

All pointer types can be null, so check that independently from the
pointer type.

Fixes #157650


  Commit: 8fae5a51321d5d807b0cb6982fb2e07c66948f59
      https://github.com/llvm/llvm-project/commit/8fae5a51321d5d807b0cb6982fb2e07c66948f59
  Author: Timm Baeder <tbaeder at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/AST/ByteCode/InterpBuiltin.cpp
    M clang/test/AST/ByteCode/builtins.cpp

  Log Message:
  -----------
  [clang][bytecode] Check builtin carryops for dummy pointers (#157490)

Fixes #157422


  Commit: 7e38793795006df01f77e0ad44fed3a9198e2d2a
      https://github.com/llvm/llvm-project/commit/7e38793795006df01f77e0ad44fed3a9198e2d2a
  Author: Valentin Clement (バレンタイン クレメン) <clementval at gmail.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M flang/lib/Lower/ConvertCall.cpp
    A flang/test/Lower/CUDA/cuda-stream.cuf

  Log Message:
  -----------
  [flang][cuda] Make sure stream is a i64 reference (#157957)

When the stream is a scalar constant, it is lowered as i32. Stream needs
to be i64 to pass the verifier. Detect and update the stream reference
when it is i32.


  Commit: 6fda136617a701234b535da0f43ff2ba6ce9d666
      https://github.com/llvm/llvm-project/commit/6fda136617a701234b535da0f43ff2ba6ce9d666
  Author: Timm Baeder <tbaeder at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/AST/ExprConstant.cpp

  Log Message:
  -----------
  [clang][ExprConst][NFC] Take a const ASTContext in a few places (#157985)

We don't need a mutable `ASTContext` here.


  Commit: 1278ac71d32ed53735b3342fbc48b4f67042ec56
      https://github.com/llvm/llvm-project/commit/1278ac71d32ed53735b3342fbc48b4f67042ec56
  Author: Abhishek Kaushik <abhishek.kaushik at intel.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
    M llvm/include/llvm/CodeGen/GlobalISel/Utils.h
    M llvm/lib/CodeGen/GlobalISel/Utils.cpp

  Log Message:
  -----------
  [NFC][GlobalISel] Pass `APInt` by const reference (#157827)

Change `SpecificConstantMatch` constructor and `isBuildVectorConstantSplat` overloads to take `const APInt&` instead of by value to avoid unnecessary copies, especially for wide integers.


  Commit: 336503c4e1cdb5eaefde0536a34f0a95bc0c57bf
      https://github.com/llvm/llvm-project/commit/336503c4e1cdb5eaefde0536a34f0a95bc0c57bf
  Author: Jason Molenda <jmolenda at apple.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py

  Log Message:
  -----------
  [lldb][NFC] Force some logging on to TestCortexMExceptionUnwind.py
to possibly debug why this test fails on the
lldb-remote-linux-ubuntu CI bot.  I'm sure the Target ArchSpec is
somehow ending up _not_ armv7m-apple-* like it should be, but I'd
like to gather a little more info before I just give up on running
this test on linux systems.


  Commit: 6a719387704c8c01b29bdb418a4d8a3b5df6b090
      https://github.com/llvm/llvm-project/commit/6a719387704c8c01b29bdb418a4d8a3b5df6b090
  Author: Jason Molenda <jmolenda at apple.com>
  Date:   2025-09-10 (Wed, 10 Sep 2025)

  Changed paths:
    M lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py

  Log Message:
  -----------
  Revert "[lldb][NFC] Force some logging on to TestCortexMExceptionUnwind.py"

This reverts commit 336503c4e1cdb5eaefde0536a34f0a95bc0c57bf.


  Commit: bf6debcfe18866269eb370f470d84e010957171b
      https://github.com/llvm/llvm-project/commit/bf6debcfe18866269eb370f470d84e010957171b
  Author: Alan Zhao <ayzhao at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
    M llvm/test/Transforms/FunctionSpecialization/profile-counts.ll
    M llvm/utils/profcheck-xfail.txt

  Log Message:
  -----------
  [FunctionSpecialization] Fix profile count preserving logic (#157939)

The previous fix in #157768 had a bug; instead of subtracting the
original function's call count per call site of a specialization, we
were subtracting the running total of the specialization's calls.

Tracking issue: #147390


  Commit: e790c97f65687bece901072cb4f6935061785536
      https://github.com/llvm/llvm-project/commit/e790c97f65687bece901072cb4f6935061785536
  Author: Gergely Futo <gergely.futo at hightec-rt.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/test/CodeGen/RISCV/riscv-func-attr-target.c
    M clang/test/CodeGen/RISCV/rvv-intrinsics-handcrafted/vlenb.c
    M clang/test/Driver/riscv-cpus.c
    M clang/test/Driver/riscv-default-features.c
    M clang/test/Driver/riscv-features.c
    M flang/test/Driver/target-cpu-features.f90
    M llvm/lib/TargetParser/RISCVISAInfo.cpp
    M llvm/unittests/TargetParser/RISCVISAInfoTest.cpp

  Log Message:
  -----------
  [RISCV] Make "target-feature +i" explicit (#157835)

Add "target-feature +i" for RV32I/RV64I.

Current behavior:
RV32E/RV64E: "target-feature +e" "target-feature -i"
RV32I/RV64I: "target-feature -e"

Adding "target-feature +i" explicitly makes the behavior consistent.


  Commit: 1723f80b083a5c72019d5f89013e65652f9aadcb
      https://github.com/llvm/llvm-project/commit/1723f80b083a5c72019d5f89013e65652f9aadcb
  Author: Nikita Popov <npopov at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/ARM/ARMISelLowering.cpp
    M llvm/test/CodeGen/ARM/inlineasm-fp-half.ll

  Log Message:
  -----------
  [ARM] Allow s constraints on half (#157860)

Fix a regression from https://github.com/llvm/llvm-project/pull/147559.


  Commit: fa63642dcebbf74c051fc058679c4eaebaa82dde
      https://github.com/llvm/llvm-project/commit/fa63642dcebbf74c051fc058679c4eaebaa82dde
  Author: Kane Wang <wangqiang1 at kylinos.cn>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp
    A llvm/test/CodeGen/RISCV/GlobalISel/atomic-cmpxchg.ll
    A llvm/test/CodeGen/RISCV/GlobalISel/instruction-select/atomic-cmpxchg-rv32.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/instruction-select/atomic-cmpxchg-rv64.mir
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer-info-validation.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-atomic-cmpxchg-rv32.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-atomic-cmpxchg-rv64.mir

  Log Message:
  -----------
  [RISC-V][GlobaISel] Legalize G_ATOMIC_CMPXCHG and G_ATOMIC_CMPXCHG_WITH_SUCCESS (#157634)

This change introduces legalization for `G_ATOMIC_CMPXCHG` and
`G_ATOMIC_CMPXCHG_WITH_SUCCESS`. Additionally, support for the
`riscv_masked_cmpxchg intrinsic` is added to legalizeIntrinsic, ensuring
that masked compare-and-exchange operations are recognized during
legalization.

---------

Co-authored-by: Kane Wang <kanewang95 at foxmail.com>


  Commit: 0c6141a07a4bcaf578fcead0981c5ce4237d33d3
      https://github.com/llvm/llvm-project/commit/0c6141a07a4bcaf578fcead0981c5ce4237d33d3
  Author: Yi-Chi Lee <55395582+yichi170 at users.noreply.github.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/CodeGen/GlobalISel/GISelValueTracking.cpp
    A llvm/test/CodeGen/AArch64/GlobalISel/knownbits-shl.mir

  Log Message:
  -----------
  [GlobalISel] Add computeNumSignBits for SHL (#152067)

This patch ports the `ISD::SHL` handling from SelectionDAG’s
`ComputeNumSignBits` to GlobalISel.

Related to #150515.


  Commit: e2a067e7e543222c729ef7e60adba5a4cd8eef40
      https://github.com/llvm/llvm-project/commit/e2a067e7e543222c729ef7e60adba5a4cd8eef40
  Author: Timm Baeder <tbaeder at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/AST/ByteCode/Compiler.cpp

  Log Message:
  -----------
  [clang][bytecode][NFC] Remove an else after a return (#157999)


  Commit: 859e8a6d6b70805074867c01d1bea983256b8d76
      https://github.com/llvm/llvm-project/commit/859e8a6d6b70805074867c01d1bea983256b8d76
  Author: Timm Baeder <tbaeder at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/AST/ByteCode/Compiler.cpp
    M clang/lib/AST/ByteCode/Compiler.h
    M clang/test/SemaCXX/labeled-break-continue-constexpr.cpp

  Log Message:
  -----------
  [clang][bytecode] Implement C23 named loops (#156856)


  Commit: d267fac3bcd35d726e45ebfa7b716ef9832e254f
      https://github.com/llvm/llvm-project/commit/d267fac3bcd35d726e45ebfa7b716ef9832e254f
  Author: Stanislav Mekhanoshin <Stanislav.Mekhanoshin at amd.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    M llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
    M llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp

  Log Message:
  -----------
  [AMDGPU] Use subtarget call to determine number of VGPRs (#157927)

Since the register file was increased that is no longer valid to
call VGPR_32RegClass.getNumregs() to get a total number of arch
registers available on a subtarget.

Fixes: SWDEV-550425


  Commit: 0e8f9fce78f8d3971d62bb66fd9813bbe193f99a
      https://github.com/llvm/llvm-project/commit/0e8f9fce78f8d3971d62bb66fd9813bbe193f99a
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    R llvm/test/tools/llvm-mca/X86/IceLakeServer/resources-avxvnni.s

  Log Message:
  -----------
  [MCA][X86] Remove AVXVNNI tests from IceLakeServer (#158010)

As noted on #157892 - icelake/rocketlake/tigerlake don't support avxvnni (just avx512vnni which we still have tests for)


  Commit: 70012fda6312ba87bc0bf9009402e0869a816d1f
      https://github.com/llvm/llvm-project/commit/70012fda6312ba87bc0bf9009402e0869a816d1f
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Analysis/ScalarEvolution.cpp
    M llvm/test/Analysis/ScalarEvolution/mul-udiv-folds.ll
    M llvm/test/Transforms/LoopStrengthReduce/duplicated-phis.ll

  Log Message:
  -----------
  [SCEV] Fold  (C1 * A /u C2) -> A /u (C2 /u C1), if C2 > C1. (#157656)

If C2 >u C1 and C1 >u 1, fold to A /u (C2 /u C1).

Depends on https://github.com/llvm/llvm-project/pull/157555.

Alive2 Proof: https://alive2.llvm.org/ce/z/BWvQYN

PR: https://github.com/llvm/llvm-project/pull/157656


  Commit: 3fb9412b794099fe457d10faf678813a2149138b
      https://github.com/llvm/llvm-project/commit/3fb9412b794099fe457d10faf678813a2149138b
  Author: Nikolas Klauser <nikolasklauser at berlin.de>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M libcxx/include/__cxx03/__algorithm/find.h
    M libcxx/test/std/algorithms/alg.nonmodifying/alg.find/find.pass.cpp

  Log Message:
  -----------
  [libc++][C++03] partially cherry-pick #122641 (#157596)

This patch only cherry-picks the parts that actually fix the issue, but
not the numerous NFC refactorings around it.


  Commit: 3a7da9a2fd90ff13efc1095550d3a73efabf3aa5
      https://github.com/llvm/llvm-project/commit/3a7da9a2fd90ff13efc1095550d3a73efabf3aa5
  Author: Matt Arsenault <Matthew.Arsenault at amd.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
    M llvm/lib/LTO/LTOCodeGenerator.cpp

  Log Message:
  -----------
  LTO: Stop storing string triple (#157991)


  Commit: f56309ac2846e4846d23e97b7bde7f7b286abb92
      https://github.com/llvm/llvm-project/commit/f56309ac2846e4846d23e97b7bde7f7b286abb92
  Author: David Spickett <david.spickett at linaro.org>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M compiler-rt/test/lit.common.cfg.py

  Log Message:
  -----------
  [compiler-rt][test] Use packaging.version.Version to compare glibc versions (#142596)

Instead of distutils.LooseVersion. distutils was depracated
(https://peps.python.org/pep-0632/) and has been removed in Python 3.12
(https://docs.python.org/3/whatsnew/3.12.html)

> Of note, the distutils package has been removed from the standard library.

packaging's version is able to handle glibc's major.minor:
https://packaging.pypa.io/en/latest/version.html#packaging.version.Version

> For these modules or types, use the standards-defined Python Packaging
Authority packages specified:
> distutils.version — use the packaging package

Relates to https://github.com/llvm/llvm-project/issues/54337


  Commit: 98f1ae057b8b829bdc18fba4b5209b5aceb5cf80
      https://github.com/llvm/llvm-project/commit/98f1ae057b8b829bdc18fba4b5209b5aceb5cf80
  Author: Mariya Podchishchaeva <mariya.podchishchaeva at intel.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/docs/ReleaseNotes.rst
    M clang/lib/Lex/PPDirectives.cpp
    M clang/test/Preprocessor/embed___has_embed_parsing_errors.c

  Log Message:
  -----------
  [clang] Fix assertion with invalid embed limit parameter value (#157896)

If a negative value was given we would fail to skip till the end of the
directive and trip a failed assertion.

Fixes https://github.com/llvm/llvm-project/issues/157842


  Commit: c62ea6598eaab0a1c18a3ff1f067907a58b9a144
      https://github.com/llvm/llvm-project/commit/c62ea6598eaab0a1c18a3ff1f067907a58b9a144
  Author: Hongyu Chen <xxs_chy at outlook.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/VectorCombine.cpp
    M llvm/test/Transforms/VectorCombine/AArch64/shrink-types.ll
    M llvm/test/Transforms/VectorCombine/X86/bitop-of-castops.ll

  Log Message:
  -----------
  [VectorCombine] Add Ext and Trunc support in foldBitOpOfCastConstant (#157822)

Follow-up of https://github.com/llvm/llvm-project/pull/155216.
This patch doesn't preserve the flags. I will implement it in the
follow-up patch.


  Commit: d04b6dadb65faed3d2858ab6bd4dc06bf09e81ba
      https://github.com/llvm/llvm-project/commit/d04b6dadb65faed3d2858ab6bd4dc06bf09e81ba
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/X86/X86InstrAVX512.td
    M llvm/lib/Target/X86/X86InstrInfo.cpp
    M llvm/lib/Target/X86/X86ScheduleZnver4.td
    M llvm/test/TableGen/x86-fold-tables.inc
    M llvm/test/TableGen/x86-instr-mapping.inc
    M llvm/test/tools/llvm-mca/X86/AlderlakeP/resources-avxvnni.s
    M llvm/test/tools/llvm-mca/X86/Generic/resources-avxvnni.s
    M llvm/test/tools/llvm-mca/X86/LunarlakeP/resources-avxvnni.s
    M llvm/test/tools/llvm-mca/X86/SapphireRapids/resources-avxvnni.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avxvnni.s

  Log Message:
  -----------
  [llvm-mca][x86] Ensure avxvnni tests actually test the avxvnni instructions (#157892)

Noticed while checking #97271 - discovered we weren't actually testing
the vex variants of the vnni instructions in the avxvnni mca tests

Fixing this causes the znver4 results to break, because it turns out we
didn't have consistent instruction naming for the avx and avx512
variants, breaking the regex matching

So add the missing reg operand to the avx512 vnni instruction signatures
to match avx vnni


  Commit: b4c98fcbe1504841203e610c351a3227f36c92a4
      https://github.com/llvm/llvm-project/commit/b4c98fcbe1504841203e610c351a3227f36c92a4
  Author: Marco Elver <elver at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/docs/ReleaseNotes.rst
    M clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
    M clang/lib/Analysis/ThreadSafety.cpp
    M clang/lib/Analysis/ThreadSafetyCommon.cpp
    M clang/test/Sema/warn-thread-safety-analysis.c
    M clang/test/SemaCXX/warn-thread-safety-analysis.cpp

  Log Message:
  -----------
  Thread Safety Analysis: Basic capability alias-analysis (#142955)

Add basic alias analysis for capabilities by reusing LocalVariableMap,
which tracks currently valid definitions of variables. Aliases created
through complex control flow are not tracked. This implementation would
satisfy the basic needs of addressing the concerns for Linux kernel
application [1].

For example, the analysis will no longer generate false positives for
cases such as (and many others):

	void testNestedAccess(Container *c) {
	  Foo *ptr = &c->foo;
	  ptr->mu.Lock();
	  c->foo.data = 42;  // OK - no false positive
	  ptr->mu.Unlock();
	}

void testNestedAcquire(Container *c) EXCLUSIVE_LOCK_FUNCTION(&c->foo.mu)
{
	  Foo *buf = &c->foo;
	  buf->mu.Lock();  // OK - no false positive
	}

Given the analysis is now able to identify potentially unsafe patterns
it was not able to identify previously (see added FIXME test case for an
example), mark alias resolution as a "beta" feature behind the flag
`-Wthread-safety-beta`.

**Fixing LocalVariableMap:**  It was found that LocalVariableMap was not
properly tracking loop-invariant aliases: the old implementation failed
because the merge logic compared raw VarDefinition IDs. The algorithm
for handling back-edges (in createReferenceContext()) generates new
'reference' definitions for loop-scoped variables. Later ID comparison
caused alias invalidation at back-edge merges (in intersectBackEdge())
and at subsequent forward-merges with non-loop paths (in
intersectContexts()).

Fix LocalVariableMap by adding the getCanonicalDefinitionID() helper
that resolves any definition ID down to its non-reference base. As a
result, a variable's definition is preserved across control-flow merges
as long as its underlying canonical definition remains the same.

Link:
https://lore.kernel.org/all/CANpmjNPquO=W1JAh1FNQb8pMQjgeZAKCPQUAd7qUg=5pjJ6x=Q@mail.gmail.com/
[1]


  Commit: 30f9fb7ca896a64701fda35f1a6629be912e086a
      https://github.com/llvm/llvm-project/commit/30f9fb7ca896a64701fda35f1a6629be912e086a
  Author: Timm Baeder <tbaeder at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/AST/ByteCode/State.h
    M clang/lib/AST/ExprConstant.cpp

  Log Message:
  -----------
  [clang][ExprConst][NFC] Move EvalMode enum to State (#157988)

Make it an enum class and move the enum to State.h as well as the
`EvalMode` member to `State`. This is in preparation of using the
evaluation mode from `InterpState` as well.


  Commit: 40270e8ef207a25850fd3cd14cbf3301e1785080
      https://github.com/llvm/llvm-project/commit/40270e8ef207a25850fd3cd14cbf3301e1785080
  Author: Petar Avramovic <Petar.Avramovic at amd.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeHelper.cpp
    M llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeHelper.h
    M llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeRules.cpp
    M llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeRules.h
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_flat.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_global.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_local.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_local_2.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_store_local.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/bool-legalization.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/bug-legalization-artifact-combiner-dead-def.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/combiner-crash.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/crash-stack-address-O0.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/extractelement-stack-lower.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/extractelement.i128.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/extractelement.i16.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/extractelement.i8.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement-stack-lower.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/lds-global-value.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.dispatch.ptr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.kernarg.segment.ptr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.queue.ptr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.workgroup.id.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-constant.96.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-constant32bit.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-divergent.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-local.128.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-local.96.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-unaligned.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-uniform-in-vgpr.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-uniform.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-zero-and-sign-extending-divergent.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-zero-and-sign-extending-uniform-in-vgpr.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-zero-and-sign-extending-uniform.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/merge-buffer-stores.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/readanylane-combines.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-load.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-sextload.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-uniform-load-noclobber.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-widen-scalar-loads.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-zextload.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/shufflevector.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/smrd.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/store-divergent-addr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/store-local.128.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/store-local.96.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/store-uniform-addr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/unsupported-load.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/widen-i8-i16-scalar-loads.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/zextload.ll
    M llvm/test/CodeGen/AMDGPU/ds-alignment.ll
    M llvm/test/CodeGen/AMDGPU/lds-size.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.addrspacecast.nonnull.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.dispatch.id.ll
    M llvm/test/CodeGen/AMDGPU/load-range-metadata-sign-bits.ll
    M llvm/test/CodeGen/AMDGPU/offset-split-flat.ll
    M llvm/test/CodeGen/AMDGPU/offset-split-global.ll
    M llvm/test/CodeGen/AMDGPU/read_register.ll
    M llvm/test/CodeGen/AMDGPU/scratch-pointer-sink.ll
    M llvm/test/CodeGen/AMDGPU/trap.ll
    M llvm/test/CodeGen/AMDGPU/workgroup-id-in-arch-sgprs.ll

  Log Message:
  -----------
  AMDGPU/GlobalISel: Add regbanklegalize rules for load and store (#153176)

Cover all the missing cases and add very detailed tests for each rule.
In summary:
- Flat and Scratch, addrspace(0) and addrspace(5), loads are always
  divergent.
- Global and Constant, addrspace(1) and addrspace(4), have real uniform
  loads, s_load, but require additional checks for align and flags in mmo.
  For not natural align or not uniform mmo do uniform-in-vgpr lowering.
- Private, addrspace(3), only has instructions for divergent load, for
  uniform do uniform-in-vgpr lowering.
- Store rules are simplified using Ptr32 and Ptr64.
  All operands need to be vgpr.

Some tests have code size regression since they use more sgpr instructions,
marked with FixMe comment to get back to later.


  Commit: 0f13cae7ff1b0efe37e1f1a2d6cdda48803b44ca
      https://github.com/llvm/llvm-project/commit/0f13cae7ff1b0efe37e1f1a2d6cdda48803b44ca
  Author: Owen Anderson <resistor at mac.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/CodeGen/ValueTypes.h
    M llvm/include/llvm/CodeGen/ValueTypes.td
    M llvm/include/llvm/CodeGenTypes/MachineValueType.h
    M llvm/lib/CodeGen/ValueTypes.cpp
    M llvm/utils/TableGen/Basic/VTEmitter.cpp

  Log Message:
  -----------
  [CodeGen, CHERI] Add capability types to MVT. (#156616)

This adds value types for representing capability types, enabling their use in instruction selection and other parts of the backend.

These types are distinguished from each other only by size. This is sufficient, at least today, because no existing CHERI configuration supports multiple capability sizes simultaneously. Hybrid configurations supporting intermixed integral pointers and capabilities do exist, and are one of the reasons why these value types are needed beyond existing integral types.

Co-authored-by: David Chisnall <theraven at theravensnest.org>
Co-authored-by: Jessica Clarke <jrtc27 at jrtc27.com>


  Commit: 75099c224632b7e424e2c59e3fdee980c1483348
      https://github.com/llvm/llvm-project/commit/75099c224632b7e424e2c59e3fdee980c1483348
  Author: Matthew Devereau <matthew.devereau at arm.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Analysis/ConstantFolding.cpp
    M llvm/test/Transforms/InstSimplify/ConstProp/active-lane-mask.ll

  Log Message:
  -----------
  [ConstantFolding] Fold scalable get_active_lane_masks (#156659)

Scalable get_active_lane_mask intrinsics with a range of 0 can be
lowered to zeroinitializer. This helps remove no-op scalable masked
stores and loads.


  Commit: 861dc29d760181367ab07bcd033072c6ebf2280e
      https://github.com/llvm/llvm-project/commit/861dc29d760181367ab07bcd033072c6ebf2280e
  Author: Shawn <kimshawn02 at icloud.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/Headers/avxintrin.h
    M clang/test/CodeGen/X86/avx-builtins.c

  Log Message:
  -----------
  [Headers][X86] Allow AVX vector concatenation intrinsics to be used in constexpr (#158020)

Fix #157705 

Vector concatentation intrinsics made constexpr and test coverage added to avx-builtins.c for the following:

```
_mm256_set_m128  _mm256_setr_m128
_mm256_set_m128d _mm256_setr_m128d
_mm256_set_m128i _mm256_setr_m128i
```


  Commit: b97010865caa0439d4cedc45e9582e645816519f
      https://github.com/llvm/llvm-project/commit/b97010865caa0439d4cedc45e9582e645816519f
  Author: Petar Avramovic <Petar.Avramovic at amd.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/AMDGPUCombine.td
    M llvm/lib/Target/AMDGPU/AMDGPUGISel.td
    M llvm/lib/Target/AMDGPU/AMDGPURegBankCombiner.cpp
    M llvm/lib/Target/AMDGPU/SIInstructions.td
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_flat.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_global.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_local_2.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-d16.ll
    M llvm/test/CodeGen/AMDGPU/global-saddr-load.ll

  Log Message:
  -----------
  AMDGPU/GlobalISel: Import D16 load patterns and add combines for them (#153178)

Add G_AMDGPU_LOAD_D16 generic instructions and GINodeEquivs for them,
this will import D16 load patterns to global-isel's tablegened
instruction selector.
For newly imported patterns to work add combines for G_AMDGPU_LOAD_D16
in AMDGPURegBankCombiner.


  Commit: 9334ef98984f53f344cf5953ab74cdc29a0675de
      https://github.com/llvm/llvm-project/commit/9334ef98984f53f344cf5953ab74cdc29a0675de
  Author: Nikita Popov <npopov at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/docs/LangRef.rst

  Log Message:
  -----------
  [LangRef] Specify that load of alloca outside lifetime is poison (#157852)

We consider (in bounds) loads from allocas to always be speculatable,
without taking lifetimes into account. This means that such loads cannot
be immediate UB. Specify them as returning poison instead.

Due to stack coloring, such a load may end up loading from a different
alloca, but that's compatible with poison.

Stores are still UB, but that's a much more narrow problem (I think the
only transform violating that part is store scalar promotion in LICM).

Fixes https://github.com/llvm/llvm-project/issues/141892 (and probably a
bunch of others...)


  Commit: e25e25de7d364a9cf928369344b6cb6f4a08a86f
      https://github.com/llvm/llvm-project/commit/e25e25de7d364a9cf928369344b6cb6f4a08a86f
  Author: Orlando Cazalet-Hyams <orlando.hyams at sony.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M cross-project-tests/lit.cfg.py

  Log Message:
  -----------
  [Dexter] Add `-v` to lit dexter substitutions (#158025)

Buildbot cross-project-tests-sie-ubuntu has been flaky after moving to
lldb-dap.

https://lab.llvm.org/buildbot/#/builders/181/builds/27670 - this test
fails for a single run but unfortunately there's not enough output to
diagnose it.

Add `-v` to the substitutions to get as much info as possible out of
failures. Most tests already have -v added manually. If we ever find a
tests needs to specifically run without it we can revert this and add
`-v` manually to tests it's missing from.


  Commit: a401f4696b1a80d9792b25757cf57870af68bc98
      https://github.com/llvm/llvm-project/commit/a401f4696b1a80d9792b25757cf57870af68bc98
  Author: Théo Degioanni <theo.degioanni.llvm.deluge062 at simplelogin.fr>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    A mlir/docs/Dialects/IRDL.md
    M mlir/include/mlir/Dialect/IRDL/IR/CMakeLists.txt

  Log Message:
  -----------
  [IRDL] [NFC] Add the IRDL dialect rationale document (#157858)


  Commit: 71f7f8afaca759706c46de8c7612d47739890c0c
      https://github.com/llvm/llvm-project/commit/71f7f8afaca759706c46de8c7612d47739890c0c
  Author: Dan Blackwell <dan_blackwell at apple.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cpp
    M compiler-rt/test/tsan/Darwin/os_unfair_lock.c

  Log Message:
  -----------
  [TSan] Add interceptor for os_unfair_lock_lock_with_flags (#153815)

Also update os_unfair_lock tsan test to check this function on platforms
where it is available.

rdar://158294950


  Commit: 94d5c54a4f63636b6ea2c49c385928dcfc08dd6d
      https://github.com/llvm/llvm-project/commit/94d5c54a4f63636b6ea2c49c385928dcfc08dd6d
  Author: Timm Baeder <tbaeder at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/AST/ByteCode/EvalEmitter.cpp
    M clang/lib/AST/ByteCode/Interp.h

  Log Message:
  -----------
  [clang][bytecode] Don't update temporary in InitGlobalTemp* (#158022)

We can save ourselves the conversion to an APValue here since we will do
that later in updateGlobalTemporaries() anyway.


  Commit: daa88b3f43aedf648d0b1715dd2c3ebe26eea484
      https://github.com/llvm/llvm-project/commit/daa88b3f43aedf648d0b1715dd2c3ebe26eea484
  Author: Vinay Deshmukh <vinay_deshmukh at outlook.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M libcxx/include/__config
    M libcxx/include/__hash_table
    M libcxx/include/__tree

  Log Message:
  -----------
  [libc++] Remove UB from `std::__tree_node` construction (#153908)

This patch also updates `__hash_table` to match what we do in `__tree`
now.

Fixes #102547

Fixes
https://github.com/llvm/llvm-project/pull/134330#discussion_r2265558356


  Commit: e7429c2e10b1e30a0b1a18cc7290ab95a7e83b6a
      https://github.com/llvm/llvm-project/commit/e7429c2e10b1e30a0b1a18cc7290ab95a7e83b6a
  Author: Karlo Basioli <k.basioli at gmail.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/Serialization/ASTWriter.cpp

  Log Message:
  -----------
  Remove extra include - fixes bazel build, introduced by 55bef46 (#158037)


  Commit: 2f755c543ab357bd83235592fcee37fa391cdd9d
      https://github.com/llvm/llvm-project/commit/2f755c543ab357bd83235592fcee37fa391cdd9d
  Author: CHANDRA GHALE <chandra.nitdgp at gmail.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/CodeGen/CGExprScalar.cpp
    A clang/test/OpenMP/for_lst_private_codegen_c.c

  Log Message:
  -----------
  [OpenMP] Conditional modifier on lastprivate clause is producing incorrect result in C mode (#156004)

Conditional modifier on lastprivate clause is producing incorrect result
when compiled with clang( C compiler). IR is not emitting while
compilation with C compiler.
However it is working correctly with clang++
The OpenMP hook that emits the conditional modifier
(checkAndEmitLastprivateConditional) is skipped in C because assignment
is a prvalue and takes the scalar path.
Original Codegen Support :
[eddb8](https://github.com/llvm/llvm-project/commit/a58da1a2ff039dd3bb4c43db3919995cf4a74cc7#diff-629e03f730f901cdf96b6b48fb0aed8ef156590aaff37857b8e5ad0694beddb8)

```
C  = → prvalue → EmitAnyExpr(TEK_Scalar) → ScalarExprEmitter::VisitBinAssign (hook not reached)
C++ = → lvalue → EmitBinaryOperatorLValue
```
```
Failing Test Case :
#include <stdio.h>
#define N 10

int A[N];
void condlastprivate() {
int x, y, z, k;
x = y = z = k = 0;
#pragma omp parallel for lastprivate(conditional: x,y, z) lastprivate(k)
for( k=0; k<N; k++){
if ((k >2 ) && (k <6))
{ x = A[k]; z = A[k]+111; }
else
{ y = A[k]+222; }
}
printf("Expecting: x=5, y=231, z=116 k=10 Got: x=%d y=%d z=%d k=%d \n", x,y,z,k);
}
int main() {
for( int i=0; i<N; i++)
{ A[i] = i; }
condlastprivate();
return 0;
}
```
```
#>./clang  -fopenmp  cond_c.c 
#> ./a.out 
Expecting: x=5, y=231, z=116 k=10 **Got: x=-1376379760 y=231 z=631465600** k=10 
```

---------

Co-authored-by: Chandra Ghale <ghale at pe31.hpc.amslabs.hpecorp.net>


  Commit: 61f7f9bddc7f337972c41922259cae42a589fa65
      https://github.com/llvm/llvm-project/commit/61f7f9bddc7f337972c41922259cae42a589fa65
  Author: Nathan Gauër <brioche at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/include/clang/Basic/AttrDocs.td
    M clang/utils/TableGen/ClangAttrEmitter.cpp

  Log Message:
  -----------
  [Clang][docs] Modify generator for HLSL semantics documentation (#157841)

HLSL semantics are split between system semantics with some kind of
spelling, and user semantics with no actual spelling. Those have been
documented as normal function attributes, but they'd benefit from a
custom section with a slightly different handling.

This will allow #152537 to land.

Verified the resulting RST file, and only diff are around HLSL
semantics.

Rendered output: 
<img width="1064" height="1035" alt="Screenshot from 2025-09-10
14-05-08"
src="https://github.com/user-attachments/assets/554b70d6-2bf8-4131-b343-8f379babaca8"
/>


  Commit: e285602fdab9d8c4f17c35727624446b69e038ba
      https://github.com/llvm/llvm-project/commit/e285602fdab9d8c4f17c35727624446b69e038ba
  Author: Graham Hunter <graham.hunter at arm.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
    M llvm/test/Transforms/LoopVectorize/early_exit_store_legality.ll

  Log Message:
  -----------
  [LV] Enforce addrec in current loop for uncountable exit load address check

Addresses post-commit review raised for #145663


  Commit: 9b00a58cbd8485ebf57e66e1c35b8ce86285e8fa
      https://github.com/llvm/llvm-project/commit/9b00a58cbd8485ebf57e66e1c35b8ce86285e8fa
  Author: Timm Baeder <tbaeder at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/AST/ByteCode/Interp.h
    M clang/lib/AST/ByteCode/InterpState.cpp
    M clang/lib/AST/ExprConstant.cpp

  Log Message:
  -----------
  [clang][bytecode] Use bytecode interpreter in EvaluateAsLValue (#158038)

Set the EvalMode on InterpState and abort when initalizing a global
temporary, like the current interpreter does. The rest is just plumbing
in EvaluateAsLValue.

Fixes #157497


  Commit: c52cb96324871c99644304d423f3912539182456
      https://github.com/llvm/llvm-project/commit/c52cb96324871c99644304d423f3912539182456
  Author: Petar Avramovic <Petar.Avramovic at amd.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/SIInstructions.td

  Log Message:
  -----------
  AMDGPU/GlobalISel: Fix tablegen definition for G_AMDGPU_LOAD_D16 (#158039)

Second source operand was missing.


  Commit: 48661a4fad9d572d9e8403f356cae33972f7a06f
      https://github.com/llvm/llvm-project/commit/48661a4fad9d572d9e8403f356cae33972f7a06f
  Author: Jianjian Guan <jacquesguan at me.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/fallback.ll
    A llvm/test/CodeGen/RISCV/GlobalISel/rvv/vfadd.ll

  Log Message:
  -----------
  [RISCV][GISel] Add initial support for rvv intrinsics (#156415)

This pr removes the falling back to SDISel of rvv intrinsics and marks
them legalized in the legalize pass. Another pr would be created for
regbankselect pass to make vf form intriniscs have the right scalar
register bank.


  Commit: c84f34bcd8c7fb6d5038b3f52da8c7be64ad5189
      https://github.com/llvm/llvm-project/commit/c84f34bcd8c7fb6d5038b3f52da8c7be64ad5189
  Author: Mehdi Amini <joker.eph at gmail.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Support/Debug.h
    M llvm/include/llvm/Support/DebugLog.h
    M llvm/unittests/Support/DebugLogTest.cpp
    M mlir/lib/Dialect/Transform/IR/TransformOps.cpp

  Log Message:
  -----------
  Introduce LDBG_OS() macro as a variant of LDBG() (#157194)

Also, improve LDBG() to accept debug type and level in any order, and
add unit-tests for LDBG() and LGDB_OS().

LDBG_OS() is a macro that behaves like LDBG() but instead of directly
using it to stream the output, it takes a callback function that will be
called with a raw_ostream.

Co-authored-by: Andrzej Warzyński <andrzej.warzynski at gmail.com>


  Commit: 3eedaa83c412f06f03e797d24342b6686d9d3c0c
      https://github.com/llvm/llvm-project/commit/3eedaa83c412f06f03e797d24342b6686d9d3c0c
  Author: Haibo Jiang <jianghaibo9 at huawei.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M bolt/lib/Passes/BinaryPasses.cpp
    A bolt/test/AArch64/print-sorted-by-order.s

  Log Message:
  -----------
  [BOLT] Fix unrecognized option values for print-sorted-by-order (#155613)

Currently llvm-bolt does not recognize the input value for
’-print-sorted-by-order‘.

This patch adds support for ascending and descending values
for the flag.


  Commit: 5e6564b0989879f8699b476b9ca482653dc0769b
      https://github.com/llvm/llvm-project/commit/5e6564b0989879f8699b476b9ca482653dc0769b
  Author: Chris Jackson <chris.jackson at amd.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
    M llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
    M llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    M llvm/lib/Target/AMDGPU/SIISelLowering.h
    M llvm/lib/Target/AMDGPU/SIInstructions.td
    M llvm/lib/Target/AMDGPU/SOPInstructions.td
    M llvm/lib/Target/AMDGPU/VOP2Instructions.td
    M llvm/test/CodeGen/AMDGPU/and.ll
    A llvm/test/CodeGen/AMDGPU/and.r600.ll
    M llvm/test/CodeGen/AMDGPU/bf16-conversions.ll
    M llvm/test/CodeGen/AMDGPU/bfi_int.ll
    M llvm/test/CodeGen/AMDGPU/copysign-simplify-demanded-bits.ll
    M llvm/test/CodeGen/AMDGPU/dag-preserve-disjoint-flag.ll
    M llvm/test/CodeGen/AMDGPU/fshr.ll
    M llvm/test/CodeGen/AMDGPU/integer-select-src-modifiers.ll
    M llvm/test/CodeGen/AMDGPU/or.ll
    A llvm/test/CodeGen/AMDGPU/or.r600.ll
    M llvm/test/CodeGen/AMDGPU/rotr.ll
    M llvm/test/CodeGen/AMDGPU/vector_range_metadata.ll
    M llvm/test/CodeGen/AMDGPU/xor.ll

  Log Message:
  -----------
  [AMDGPU][SDAG] Legalise v2i32 or/xor/and instructions to make use of 64-bit wide instructions (#140694)

- Enable s_or_b64/s_and_b64/s_xor_b64 for v2i32. Add various additional
combines to make use of these newly legalised instructions.
- Update several tests and separate legacy r600 tests where necessary.


  Commit: df8cfefc9e8c4efed1f3850db59a87918eae4ac4
      https://github.com/llvm/llvm-project/commit/df8cfefc9e8c4efed1f3850db59a87918eae4ac4
  Author: Simon Pilgrim <llvm-dev at redking.me.uk>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/X86/X86InstrSSE.td
    M llvm/test/TableGen/x86-fold-tables.inc
    M llvm/test/TableGen/x86-instr-mapping.inc

  Log Message:
  -----------
  [X86] Standardize (V)AESKEYGENASSIST instruction naming (#158046)

Remove unnecessary 128 postfix

Add missing immediate to the signature (e.g. AESKEYGENASSISTrr ->
AESKEYGENASSISTrri).

Makes it easier for downstream scripts to determine the instruction name
from the assembly without overrides


  Commit: c09cc2c5a3d57506d8744fa889f35a6aa260a52b
      https://github.com/llvm/llvm-project/commit/c09cc2c5a3d57506d8744fa889f35a6aa260a52b
  Author: Mehdi Amini <joker.eph at gmail.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Support/Debug.h
    M llvm/include/llvm/Support/DebugLog.h
    M llvm/unittests/Support/DebugLogTest.cpp
    M mlir/lib/Dialect/Transform/IR/TransformOps.cpp

  Log Message:
  -----------
  Revert "Introduce LDBG_OS() macro as a variant of LDBG()" (#158058)

Reverts llvm/llvm-project#157194

Bots are broken, investigation needed.


  Commit: b9fd1e6fce8c5ea80cb0db9b73fbdfdc371409c6
      https://github.com/llvm/llvm-project/commit/b9fd1e6fce8c5ea80cb0db9b73fbdfdc371409c6
  Author: Kerry McLaughlin <kerry.mclaughlin at arm.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    M llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
    M llvm/lib/Target/AArch64/AArch64RegisterInfo.td
    M llvm/lib/Target/AArch64/SVEInstrFormats.td
    M llvm/test/CodeGen/AArch64/sve-cmp-folds.ll
    M llvm/test/CodeGen/AArch64/sve-ptest-removal-whilelo.mir

  Log Message:
  -----------
  [AArch64][SVE2p1] Remove redundant PTESTs when predicate is a WHILEcc_x2 (#156478)

The optimisation in canRemovePTestInstr tries to remove ptest instructions when
the predicate is the result of a WHILEcc. This patch extends the support to
WHILEcc (predicate pair) by:
  - Including the WHILEcc_x2 intrinsics in isPredicateCCSettingOp, allowing
    performFirstTrueTestVectorCombine to create the PTEST.
  - Setting the isWhile flag for the predicate pair instructions in tablegen.
  - Looking through copies in canRemovePTestInstr to test isWhileOpcode.


  Commit: d67ab11f2edcadd3fe1997eb691821fb7ee8e8c2
      https://github.com/llvm/llvm-project/commit/d67ab11f2edcadd3fe1997eb691821fb7ee8e8c2
  Author: Nathan Gauër <brioche at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/SPIRV/SPIRVTargetMachine.cpp
    A llvm/test/CodeGen/SPIRV/structurizer/switch-fallthrough.ll

  Log Message:
  -----------
  [SPIR-V] Move structurizer to ISel prepare (#157886)

Some passes like LoopSimplify/SimplifyCFF are running between IRPasses
and ISelPrepare. This is an issue because the structurizer generates
OpSelectionMerge/OpLoopMerge instructions at specific places, and those
passes are moving them.
Moving the structurizer later solves this issue.


  Commit: 3168a62a3b25e3df87ea4374814ff2853037d524
      https://github.com/llvm/llvm-project/commit/3168a62a3b25e3df87ea4374814ff2853037d524
  Author: Nikhil Kalra <nkalra at apple.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M mlir/docs/BytecodeFormat.md
    M mlir/lib/Bytecode/Reader/BytecodeReader.cpp
    M mlir/unittests/Bytecode/BytecodeTest.cpp

  Log Message:
  -----------
  [MLIR][Bytecode] Followup 8106c81 (#157136)

Addressed code review feedback:
- Fixed some issues in the unit test
- Adjusted line wrapping in the docs
- Clarified comments in the bytecode reader


  Commit: 23302a2aacb31f30a80e9ae3105d215c14ab363e
      https://github.com/llvm/llvm-project/commit/23302a2aacb31f30a80e9ae3105d215c14ab363e
  Author: Robert Imschweiler <robert.imschweiler at amd.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/CodeGen/CGOpenMPRuntimeGPU.cpp
    M clang/lib/CodeGen/CGOpenMPRuntimeGPU.h
    M clang/test/AST/ByteCode/openmp.cpp
    R clang/test/OpenMP/amdgcn_target_parallel_num_threads_codegen.cpp
    M clang/test/OpenMP/nvptx_target_codegen.cpp
    M clang/test/OpenMP/nvptx_target_parallel_num_threads_codegen.cpp
    M clang/test/OpenMP/target_parallel_generic_loop_codegen.cpp
    R clang/test/OpenMP/target_parallel_num_threads_strict_codegen.cpp
    M llvm/include/llvm/Frontend/OpenMP/OMP.td
    M llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
    M openmp/device/include/DeviceTypes.h
    M openmp/device/src/Parallelism.cpp

  Log Message:
  -----------
  [offload][OpenMP] Remove device code for num_threads strict (#157893)

Due to potential performance issues, this commit temporarily removes
support for the num_threads 'strict' modifier and its corresponding
message and severity clauses on the device.


  Commit: e1aa2dff8a7a53fec14130e77d7da15d0ac482ca
      https://github.com/llvm/llvm-project/commit/e1aa2dff8a7a53fec14130e77d7da15d0ac482ca
  Author: Nikita Popov <npopov at redhat.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M flang-rt/CMakeLists.txt
    M flang-rt/cmake/modules/AddFlangRT.cmake

  Log Message:
  -----------
  [flang-rt] Use -Wp to undefine macros (#156034)

If the macro was previously defined with `-Wp,-D` then a later `-U` is
*not* going to take effect, the `-Wp` flag takes precedence.

Instead use `-Wp,-U`. This works regardless of whether the original
definition was provided via `-D` or `-Wp,-D`.

Also make sure these flags only get passed to the C++ compiler -- they
are only relevant there, and flang does not support `-Wp`.


  Commit: 3e18b5af257463718edfdca791215f09f97d2209
      https://github.com/llvm/llvm-project/commit/3e18b5af257463718edfdca791215f09f97d2209
  Author: Utkarsh Saxena <usx at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/Analysis/LifetimeSafety.cpp
    M clang/test/Sema/warn-lifetime-safety-dataflow.cpp

  Log Message:
  -----------
  [LifetimeSafety] Associate origins to all l-valued expressions (#156896)

This patch refactors the C++ lifetime safety analysis to implement a more consistent model for tracking borrows. The central idea is to make loan creation a consequence of referencing a variable, while making loan propagation dependent on the type's semantics.

This change introduces a more uniform model for tracking borrows from non-pointer types:

* Centralised Loan Creation: A Loan is now created for every `DeclRefExpr` that refers to a **non-pointer type** (e.g., `std::string`, `int`). This correctly models that any use of an **gl-value** is a borrow of its storage, replacing the previous heuristic-based loan creation.

* The address-of operator (&) no longer creates loans. Instead, it propagates the origin (and thus the loans) of its sub-expression. This is guarded to exclude expressions that are already pointer types, deferring the complexity of pointers-to-pointers.


**Future Work: Multi-Origin Model**
This patch deliberately defers support for creating loans on references to pointer-type expressions (e.g., `&my_pointer`). The current single-origin model is unable to distinguish between a loan to the pointer variable itself (its storage) and a loan to the object it points to. The future plan is to move to a multi-origin model where a type has a "list of origins" governed by its level of indirection, which will allow the analysis to track these distinct lifetimes separately. Once this more advanced model is in place, the restriction can be lifted, and all `DeclRefExpr` nodes, regardless of type, can uniformly create a loan, making the analysis consistent.


  Commit: 4ce74bfb4d218392719ad610c9dfc467042a6b58
      https://github.com/llvm/llvm-project/commit/4ce74bfb4d218392719ad610c9dfc467042a6b58
  Author: Craig Topper <craig.topper at sifive.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/lib/Target/RISCV/RISCVInstrInfoXTHead.td
    M llvm/test/CodeGen/RISCV/ctlz-cttz-ctpop.ll
    M llvm/test/CodeGen/RISCV/rv64xtheadbb.ll

  Log Message:
  -----------
  [RISCV] Use default promotion for i32 CTLZ on RV64 with XTHeadBb. (#157994)

The existing isel pattern felt like it was emitting more instructions
than an isel pattern probably should. We were also missing opportunities
to fold the innermost instructions with surrounding instructions.

I tried to move the expansion to lowering, but we got a little too
aggressive folding the (not (slli (not))) with other operations in some
tests and created code with constants that are hard to materialize and
missed using TH_FF0. We could probably have fixed that with a
RISCVISD::TH_FF0 node.

While investigating, I tried using the default promotion. The results
aren't obviously worse than the previous codegen. And in some case they
are obviously better.


  Commit: b22f94dcc58e09710c188045b498a201db83d9a2
      https://github.com/llvm/llvm-project/commit/b22f94dcc58e09710c188045b498a201db83d9a2
  Author: Mehdi Amini <joker.eph at gmail.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M mlir/docs/DialectConversion.md
    M mlir/include/mlir/Transforms/DialectConversion.h
    M mlir/lib/Transforms/Utils/DialectConversion.cpp

  Log Message:
  -----------
  [MLIR] Enable caching of type conversion in the presence of context-aware conversion (#158072)

The current implementation is overly conservative and disable all
possible caching as soon as a context-aware conversion is present.
However the context-aware conversion only affects subsequent converters,
we can cache the previous ones.

This isn't NFC because if fixed a bug where we use to unconditionally
cache when using the `convertType(Type t, ...` API, while now all APIs
are aware of context-aware conversions.


  Commit: bc755ae2fc5950248fd25c0a80a09496acc87f9e
      https://github.com/llvm/llvm-project/commit/bc755ae2fc5950248fd25c0a80a09496acc87f9e
  Author: cmtice <cmtice at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M compiler-rt/test/profile/Linux/binary-id-offset.c

  Log Message:
  -----------
  [compiler-rt] Fix binary-id-offset.c test to not require shell. (#157954)

As part of our migration for making lit internal shell be the default,
this updates binary-id-offset.c to no longer require shell (at the cost
of duplicating some code).


  Commit: 343186deefcafdcf4e5a63e669a8ddc7ec9fd415
      https://github.com/llvm/llvm-project/commit/343186deefcafdcf4e5a63e669a8ddc7ec9fd415
  Author: Nick Sarnie <nick.sarnie at intel.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/Basic/Targets.cpp
    M clang/lib/Basic/Targets/SPIR.h
    M clang/test/CodeGenSPIRV/spirv-intel.c
    M clang/test/OpenMP/spirv_variant_match.cpp
    M llvm/lib/Target/SPIRV/SPIRVSubtarget.cpp
    M llvm/lib/Target/SPIRV/SPIRVTargetMachine.cpp

  Log Message:
  -----------
  [clang][SPIRV] Set program address space for Intel-flavored SPIR-V (#135251)

Technically, SPIR-V should use addrspace(4) for generic pointers.

We already set the default AS in TargetInfo to 4, but that's not enough
for all cases. Also set the program address space to 4 to fix the
remaining cases. AMD already does this for their SPIR-V target, do it
for Intel's SPIR-V target.

I need this for OpenMP offloading to SPIR-V. There are a couple of
places I need to change in the OMP FE to check the program AS, I'll do
that in a follow-up PR.

---------

Signed-off-by: Sarnie, Nick <nick.sarnie at intel.com>


  Commit: 38b948bd4b9bd0ed532c3bea69e0038b3dffe80a
      https://github.com/llvm/llvm-project/commit/38b948bd4b9bd0ed532c3bea69e0038b3dffe80a
  Author: Balazs Benics <benicsbalazs at gmail.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
    M clang/test/Analysis/ctor-trivial-copy.cpp
    A clang/test/Analysis/issue-157467.cpp
    M clang/test/Analysis/taint-generic.cpp

  Log Message:
  -----------
  [analyzer] Revert #115918, so empty base class optimization works again (#157480)

Tldr;
We can't unconditionally trivially copy empty classes because that would
clobber the stored entries in the object that the optimized empty class
overlaps with.

This regression was introduced by #115918, which introduced other
clobbering issues, like the handling of `[[no_unique_address]]` fields
in #137252.

Read issue #157467 for the detailed explanation, but in short, I'd
propose reverting the original patch because these was a lot of problems
with it for arguably not much gain.
In particular, that patch was motivated by unifying the handling of
classes so that copy events would be triggered for a class no matter if
it had data members or not.
So in hindsight, it was not worth it.

I plan to backport this to clang-21 as well, and mention in the release
notes that this should fix the regression from clang-20.

PS: Also an interesting read [D43714](https://reviews.llvm.org/D43714)
in hindsight.

Fixes #157467
CPP-6574


  Commit: 648831b210bd51f50858761b552ddca3071cf4e1
      https://github.com/llvm/llvm-project/commit/648831b210bd51f50858761b552ddca3071cf4e1
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/ADT/STLExtras.h
    M llvm/include/llvm/ADT/STLForwardCompat.h

  Log Message:
  -----------
  [ADT] Move llvm::is_detected to STLForwardCompat.h (#158004)

llvm::is_detected forward-ported from C++20.  As such, it belongs to
STLForwardCompat.h.


  Commit: 808f5d13b32c4280d186880a676f6be6b02b8fda
      https://github.com/llvm/llvm-project/commit/808f5d13b32c4280d186880a676f6be6b02b8fda
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/ADT/iterator_range.h

  Log Message:
  -----------
  [ADT] Simplify a constructor of iterator_range (NFC) (#158005)

Without this patch, we determine whether one iterator type can be
converted to another in a roundabout way.  Specifically,
explicitly_convertible uses std::void_t to determine whether the given
conversion expression is well formed, yielding
std::true_type/std::false_type.  Then the boolean value is passed to
std::enable_if_t to obtain void again.  That is, we are doing a
roundtrip from void to a boolean value and back.

This patch removes the roundtrip by directly using std::void_t inside
the constructor's template parameter list.

Now, explicitly_converted_t is very similar to std::is_constructible,
but there a couple of corner cases where they evaluate to different
values.  For now, this patch sticks to the same expression
decltype(static_cast<To>(...)) to be safe.


  Commit: ae789571124bbd4205d2339de306b9b455bb0038
      https://github.com/llvm/llvm-project/commit/ae789571124bbd4205d2339de306b9b455bb0038
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/include/clang/AST/Expr.h
    M lld/MachO/Target.h
    M llvm/include/llvm/Support/Alignment.h
    M llvm/include/llvm/Support/MathExtras.h
    M llvm/include/llvm/Support/PointerLikeTypeTraits.h
    M llvm/lib/Transforms/IPO/AttributorAttributes.cpp
    M llvm/unittests/Support/MathExtrasTest.cpp

  Log Message:
  -----------
  [Support] Rename CTLog2 to ConstantLog2 in MathExtras.h (#158006)

This patch renames CTLog2 to ConstantLog2 for readability.

This patch provides a forwarder under LLVM_DEPRECATED because CTLog2
is used downstream.


  Commit: 2c12308f69a1705074beea097ca77fbf9d6ca382
      https://github.com/llvm/llvm-project/commit/2c12308f69a1705074beea097ca77fbf9d6ca382
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/include/llvm/Support/type_traits.h

  Log Message:
  -----------
  [Support] Remove trivial_helper, is_copy_assignable, and is_move_assignable (#158007)

These seem to be all dead.  This patch removes them.


  Commit: b6674fe111768e69f9ac91ffc01e312060b2bd4d
      https://github.com/llvm/llvm-project/commit/b6674fe111768e69f9ac91ffc01e312060b2bd4d
  Author: Kazu Hirata <kazu at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/docs/Extensions.rst

  Log Message:
  -----------
  [llvm] Proofread Extensions.rst (#158008)


  Commit: 1f0003f1debe6e48de54c520485904929790c888
      https://github.com/llvm/llvm-project/commit/1f0003f1debe6e48de54c520485904929790c888
  Author: Nathan Gauër <brioche at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/include/clang/AST/Attr.h
    M clang/include/clang/Basic/Attr.td
    M clang/include/clang/Basic/DiagnosticFrontendKinds.td
    M clang/include/clang/Basic/DiagnosticParseKinds.td
    M clang/include/clang/Basic/DiagnosticSemaKinds.td
    M clang/include/clang/Parse/Parser.h
    M clang/include/clang/Sema/SemaHLSL.h
    M clang/lib/Basic/Attributes.cpp
    M clang/lib/CodeGen/CGHLSLRuntime.cpp
    M clang/lib/CodeGen/CGHLSLRuntime.h
    M clang/lib/Parse/ParseHLSL.cpp
    M clang/lib/Sema/SemaDeclAttr.cpp
    M clang/lib/Sema/SemaHLSL.cpp
    A clang/test/CodeGenHLSL/semantics/DispatchThreadID-noindex.hlsl
    A clang/test/CodeGenHLSL/semantics/SV_GroupID-noindex.hlsl
    A clang/test/CodeGenHLSL/semantics/SV_GroupThreadID-noindex.hlsl
    M clang/test/CodeGenHLSL/semantics/SV_Position.ps.hlsl
    A clang/test/CodeGenHLSL/semantics/missing.hlsl
    M clang/test/ParserHLSL/semantic_parsing.hlsl
    A clang/test/ParserHLSL/semantic_parsing_define.hlsl
    M clang/test/SemaHLSL/Semantics/invalid_entry_parameter.hlsl
    M clang/utils/TableGen/ClangAttrEmitter.cpp

  Log Message:
  -----------
  Reapply "[HLSL] Rewrite semantics parsing" (#157718) (#158044)

This is a re-land of #152537 now that #157841 is merged.


  Commit: 89e32acde5a8a0059219ca319ee6bb2114104b49
      https://github.com/llvm/llvm-project/commit/89e32acde5a8a0059219ca319ee6bb2114104b49
  Author: Andrzej Warzyński <andrzej.warzynski at arm.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
    M mlir/include/mlir/Interfaces/VectorInterfaces.td

  Log Message:
  -----------
  [mlir][vector] Remove hooks deprecated pre Release/21 branch (#157806)

As mentioned on Discourse,
  * https://discourse.llvm.org/t/psa-vector-standardise-operand-naming

I am removing the deprecated Vector hooks following the creation of the
release/21 branch.

The release/21 branch was created on July 15 (about two months ago) as
noted in the LLVM 21.x release announcement
* https://discourse.llvm.org/t/llvm-21-x-release-information-and-branching


  Commit: e1e65a4d91eaaadb00a7275b64bde7e70cb90a78
      https://github.com/llvm/llvm-project/commit/e1e65a4d91eaaadb00a7275b64bde7e70cb90a78
  Author: Sam Elliott <aelliott at qti.qualcomm.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
    M llvm/lib/Target/RISCV/RISCVRegisterInfo.td
    A llvm/test/MC/Disassembler/RISCV/zclsd-invalid-pair.txt

  Log Message:
  -----------
  [RISCV] Fix GPRPairNoX0 Disassembly (#158001)

Both GPRPair and GPRPairNoX0 were using the same decoder before this
change, which meant that GPRPairNoX0 would disassemble zeroes to the
`X0_Pair`.

This ensures the NoX0 decoder correctly fails to decode zeroes.


  Commit: 3270d98641e29e25f7a34e42baf853c2816e25b0
      https://github.com/llvm/llvm-project/commit/3270d98641e29e25f7a34e42baf853c2816e25b0
  Author: David Green <david.green at arm.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
    A llvm/test/CodeGen/AArch64/verify-imm.mir

  Log Message:
  -----------
  [AArch64] Verify OPERAND_SHIFT_MSL and OPERAND_IMPLICIT_IMM_0 (#157031)

This adds some basic verification for the new OPERAND_SHIFT_MSL and the
existing OPERAND_IMPLICIT_IMM_0 immediate operand types, that should be
264/272 or 0 respectively.


  Commit: b642e8bfbb89c45ea7073ba9db5d1e31a6542e3c
      https://github.com/llvm/llvm-project/commit/b642e8bfbb89c45ea7073ba9db5d1e31a6542e3c
  Author: Donát Nagy <donat.nagy at ericsson.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/StaticAnalyzer/Checkers/VAListChecker.cpp
    M clang/test/Analysis/valist-uninitialized-no-undef.c
    M clang/test/Analysis/valist-uninitialized.c
    M clang/test/Analysis/valist-unterminated.c

  Log Message:
  -----------
  [analyzer] Improve messaging in security.VAList (#157846)

Previously the checker `security.VAList` only tracked the set of the
inintialized `va_list` objects; this commit replaces this with a mapping
that can distinguish the "uninitialized" `va_list` objects from the
"already released" ones. Moreover, a new "unknown" state is introduced
to replace the slightly hacky solutions that checked the `Symbolic`
nature of the region.

In addition to sligthly improving the messages, this commit also
prepares the ground for a follow-up change that would introduce an
"indeterminate" state (which needs `va_end` but cannot be otherwise
used) to model the requirements of SEI CERT rule MSC39-C, which states:

> The va_list may be passed as an argument to another function, but
> calling va_arg() within that function causes the va_list to have an
> indeterminate value in the calling function. As a result, attempting
> to read variable arguments without reinitializing the va_list can have
> unexpected behavior.


  Commit: 5125f476b2f90ccf157c78d73bc6fe14c4413a27
      https://github.com/llvm/llvm-project/commit/5125f476b2f90ccf157c78d73bc6fe14c4413a27
  Author: Aiden Grossman <aidengrossman at google.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M llvm/test/lit.cfg.py

  Log Message:
  -----------
  Revert "Reapply "[llvm] Use lit internal shell by default""

This reverts commit f869d7a1b100c9f9fc5bb06effcf4f73346c0919.

This broke some debuginfod tests that are not run by default in most CI
configurations. Reverting for now until I have time to update the tests
and figure out how to get them built locally.


  Commit: 5437d90bb72e38ad767dd2e130d23675130a7857
      https://github.com/llvm/llvm-project/commit/5437d90bb72e38ad767dd2e130d23675130a7857
  Author: Amr Hesham <amr96 at programmer.net>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/include/clang/CIR/Dialect/IR/CIROps.td
    M clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp
    M clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
    M clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.h
    M clang/test/CIR/CodeGen/builtins-elementwise.c

  Log Message:
  -----------
  [CIR] Upstream FPToFPBuiltin ATanOp (#157496)

Upstream support for FPToFPBuiltin ATanOp


  Commit: 05bbb947cf3b263c9f6e6908de9b9ec04f9cca4b
      https://github.com/llvm/llvm-project/commit/05bbb947cf3b263c9f6e6908de9b9ec04f9cca4b
  Author: Joseph Huber <huberjn at outlook.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/CodeGen/Targets/X86.cpp
    M clang/test/CodeGen/target-builtin-error-3.c

  Log Message:
  -----------
  [X86] Relax AVX ABI warning on internal functions (#157570)

Summary:
The vector target should be able to handle vector sizes that are
multiples of the native size, this is useful for implementing math
routines that want to temporarily use a high precision for example.
However, currently this will emit a warning on x86 if any function calls
are involved. https://godbolt.org/z/dK7hGndYh.

I believe that we should be able to relax the ABI restriction if the
functions are completely internal and there were no explicitly states
attributes to conflict. Because the ABI is not exported outside the TU
we should be safe to assume that it won't bite us. In the case that one
call has no features and other does, that will still cause an error. I
may be wrong on this assumption however.

Fixes: https://github.com/llvm/llvm-project/issues/128361


  Commit: d1c0b1b6203d4005ad9a1baefe843ab45b3693a8
      https://github.com/llvm/llvm-project/commit/d1c0b1b6203d4005ad9a1baefe843ab45b3693a8
  Author: Jan Svoboda <jan_svoboda at apple.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M clang/lib/CodeGen/CGOpenMPRuntime.cpp
    M clang/lib/CodeGen/CodeGenModule.cpp
    A clang/test/OpenMP/host-ir-file-vfs.c
    M llvm/include/llvm/Frontend/OpenMP/OMPIRBuilder.h
    M llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
    M mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp

  Log Message:
  -----------
  [clang] Use VFS for `-fopenmp-host-ir-file-path` (#156727)

This is a follow-up to #150124. This PR makes it so that the
`-fopenmp-host-ir-file-path` respects VFS overlays, like any other input
file.


  Commit: 8cbd8f044b9fea631fa5e793afc5c680f6e018e9
      https://github.com/llvm/llvm-project/commit/8cbd8f044b9fea631fa5e793afc5c680f6e018e9
  Author: Louis Dionne <ldionne.2 at gmail.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    A libcxx/utils/build-at-commit
    A libcxx/utils/test-at-commit

  Log Message:
  -----------
  [libc++] Add scripts to build and test libc++ at a specified commit (#158104)

This is useful to perform historical analyses, bisections or establish a
benchmarking baseline after making some changes on a branch. For
example, one can run benchmarks against `main` and easily compare them
to the results on the current feature branch with:

    libcxx/utils/test-at-commit --commit $(git merge-base main HEAD) \
                                -B build/baseline -- <lit args>
    libcxx/utils/libcxx-lit build/candidate <lit args>
    libcxx/utils/compare-benchmarks \
        <(libcxx/utils/consolidate-benchmarks build/baseline) \
        <(libcxx/utils/consolidate-benchmarks build/candidate)

Doing this without these scripts would require checking out the desired
baseline, setting up the build directory and running the tests manually.
With these scripts, this can automatically be automated without dirtying
the current checkout.


  Commit: 8da3ab12cec83c968565e649e2b03c1790fdd53b
      https://github.com/llvm/llvm-project/commit/8da3ab12cec83c968565e649e2b03c1790fdd53b
  Author: Louis Dionne <ldionne.2 at gmail.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M libcxx/utils/compare-benchmarks

  Log Message:
  -----------
  [libc++] Ensure benchmark comparison output ends with a newline

Otherwise, it doesn't compose well with anything else that produces
output.


  Commit: d725101c3104b1522c6e3943dbdc2a63afe066ce
      https://github.com/llvm/llvm-project/commit/d725101c3104b1522c6e3943dbdc2a63afe066ce
  Author: Steven Wu <stevenwu at apple.com>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M .ci/all_requirements.txt
    M .github/new-prs-labeler.yml
    M bolt/docs/CommandLineArgumentReference.md
    M bolt/include/bolt/Core/MCPlusBuilder.h
    M bolt/lib/Passes/BinaryPasses.cpp
    M bolt/lib/Rewrite/BinaryPassManager.cpp
    M bolt/lib/Target/AArch64/AArch64MCPlusBuilder.cpp
    A bolt/test/AArch64/print-sorted-by-order.s
    A bolt/test/runtime/AArch64/inline-memcpy.s
    M clang-tools-extra/clang-tidy/bugprone/BugproneTidyModule.cpp
    M clang-tools-extra/clang-tidy/bugprone/CMakeLists.txt
    A clang-tools-extra/clang-tidy/bugprone/UncheckedStringToNumberConversionCheck.cpp
    A clang-tools-extra/clang-tidy/bugprone/UncheckedStringToNumberConversionCheck.h
    M clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp
    M clang-tools-extra/clang-tidy/cert/CMakeLists.txt
    R clang-tools-extra/clang-tidy/cert/StrToNumCheck.cpp
    R clang-tools-extra/clang-tidy/cert/StrToNumCheck.h
    M clang-tools-extra/clang-tidy/google/CMakeLists.txt
    A clang-tools-extra/clang-tidy/google/FloatTypesCheck.cpp
    A clang-tools-extra/clang-tidy/google/FloatTypesCheck.h
    M clang-tools-extra/clang-tidy/google/GoogleTidyModule.cpp
    M clang-tools-extra/clang-tidy/performance/InefficientVectorOperationCheck.cpp
    M clang-tools-extra/clang-tidy/readability/IdentifierNamingCheck.cpp
    M clang-tools-extra/clang-tidy/readability/MathMissingParenthesesCheck.cpp
    M clang-tools-extra/docs/ReleaseNotes.rst
    A clang-tools-extra/docs/clang-tidy/checks/bugprone/unchecked-string-to-number-conversion.rst
    M clang-tools-extra/docs/clang-tidy/checks/cert/err34-c.rst
    A clang-tools-extra/docs/clang-tidy/checks/google/runtime-float.rst
    M clang-tools-extra/docs/clang-tidy/checks/list.rst
    M clang-tools-extra/test/clang-apply-replacements/crlf.cpp
    M clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/unchecked-optional-access/bde/types/bdlb_nullablevalue.h
    M clang-tools-extra/test/clang-tidy/checkers/bugprone/unchecked-optional-access.cpp
    A clang-tools-extra/test/clang-tidy/checkers/bugprone/unchecked-string-to-number-conversion.c
    A clang-tools-extra/test/clang-tidy/checkers/bugprone/unchecked-string-to-number-conversion.cpp
    R clang-tools-extra/test/clang-tidy/checkers/cert/err34-c.c
    R clang-tools-extra/test/clang-tidy/checkers/cert/err34-c.cpp
    A clang-tools-extra/test/clang-tidy/checkers/google/runtime-float.cpp
    M clang-tools-extra/test/lit.cfg.py
    M clang/docs/OpenMPSupport.rst
    M clang/docs/ReleaseNotes.rst
    M clang/include/clang/AST/Attr.h
    M clang/include/clang/AST/Expr.h
    M clang/include/clang/Analysis/Analyses/LiveVariables.h
    M clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
    M clang/include/clang/Analysis/FlowSensitive/RecordOps.h
    M clang/include/clang/Analysis/FlowSensitive/StorageLocation.h
    M clang/include/clang/Basic/ABI.h
    M clang/include/clang/Basic/Attr.td
    M clang/include/clang/Basic/AttrDocs.td
    M clang/include/clang/Basic/BuiltinsAMDGPU.def
    M clang/include/clang/Basic/BuiltinsX86.td
    M clang/include/clang/Basic/DebugOptions.def
    M clang/include/clang/Basic/DiagnosticDriverKinds.td
    M clang/include/clang/Basic/DiagnosticFrontendKinds.td
    M clang/include/clang/Basic/DiagnosticParseKinds.td
    M clang/include/clang/Basic/DiagnosticSemaKinds.td
    M clang/include/clang/CIR/Dialect/Builder/CIRBaseBuilder.h
    M clang/include/clang/CIR/Dialect/IR/CIROps.td
    M clang/include/clang/CIR/MissingFeatures.h
    M clang/include/clang/Driver/Options.td
    M clang/include/clang/Frontend/CompilerInstance.h
    M clang/include/clang/Lex/HeaderSearch.h
    M clang/include/clang/Parse/ParseHLSLRootSignature.h
    M clang/include/clang/Parse/Parser.h
    M clang/include/clang/Sema/Sema.h
    M clang/include/clang/Sema/SemaHLSL.h
    M clang/lib/AST/ASTContext.cpp
    M clang/lib/AST/ByteCode/Compiler.cpp
    M clang/lib/AST/ByteCode/Compiler.h
    M clang/lib/AST/ByteCode/EvalEmitter.cpp
    M clang/lib/AST/ByteCode/Interp.cpp
    M clang/lib/AST/ByteCode/Interp.h
    M clang/lib/AST/ByteCode/InterpBuiltin.cpp
    M clang/lib/AST/ByteCode/InterpState.cpp
    M clang/lib/AST/ByteCode/State.h
    M clang/lib/AST/ExprConstant.cpp
    M clang/lib/AST/ItaniumMangle.cpp
    M clang/lib/AST/Mangle.cpp
    M clang/lib/AST/MicrosoftMangle.cpp
    M clang/lib/AST/RecordLayoutBuilder.cpp
    M clang/lib/Analysis/FlowSensitive/Models/UncheckedOptionalAccessModel.cpp
    M clang/lib/Analysis/FlowSensitive/RecordOps.cpp
    M clang/lib/Analysis/FlowSensitive/Transfer.cpp
    M clang/lib/Analysis/LifetimeSafety.cpp
    M clang/lib/Analysis/LiveVariables.cpp
    M clang/lib/Analysis/ThreadSafety.cpp
    M clang/lib/Analysis/ThreadSafetyCommon.cpp
    M clang/lib/Basic/Attributes.cpp
    M clang/lib/Basic/Targets.cpp
    M clang/lib/Basic/Targets/RISCV.h
    M clang/lib/Basic/Targets/SPIR.h
    M clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp
    M clang/lib/CIR/CodeGen/CIRGenDecl.cpp
    M clang/lib/CIR/CodeGen/CIRGenExpr.cpp
    M clang/lib/CIR/CodeGen/CIRGenFunction.cpp
    M clang/lib/CIR/CodeGen/CIRGenFunction.h
    M clang/lib/CIR/CodeGen/CIRGenStmt.cpp
    M clang/lib/CIR/Dialect/Transforms/HoistAllocas.cpp
    M clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
    M clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.h
    M clang/lib/CodeGen/CGCall.cpp
    M clang/lib/CodeGen/CGClass.cpp
    M clang/lib/CodeGen/CGDebugInfo.cpp
    M clang/lib/CodeGen/CGDebugInfo.h
    M clang/lib/CodeGen/CGExprScalar.cpp
    M clang/lib/CodeGen/CGHLSLRuntime.cpp
    M clang/lib/CodeGen/CGHLSLRuntime.h
    M clang/lib/CodeGen/CGOpenMPRuntime.cpp
    M clang/lib/CodeGen/CGOpenMPRuntimeGPU.cpp
    M clang/lib/CodeGen/CGOpenMPRuntimeGPU.h
    M clang/lib/CodeGen/CGStmtOpenMP.cpp
    M clang/lib/CodeGen/CodeGenFunction.h
    M clang/lib/CodeGen/CodeGenModule.cpp
    M clang/lib/CodeGen/CodeGenSYCL.cpp
    M clang/lib/CodeGen/CodeGenTypes.h
    M clang/lib/CodeGen/ItaniumCXXABI.cpp
    M clang/lib/CodeGen/MicrosoftCXXABI.cpp
    M clang/lib/CodeGen/TargetBuiltins/AMDGPU.cpp
    M clang/lib/CodeGen/Targets/SPIR.cpp
    M clang/lib/CodeGen/Targets/X86.cpp
    M clang/lib/Driver/ToolChain.cpp
    M clang/lib/Driver/ToolChains/Clang.cpp
    M clang/lib/Driver/ToolChains/CommonArgs.cpp
    M clang/lib/Driver/ToolChains/HLSL.cpp
    M clang/lib/Frontend/CompilerInstance.cpp
    M clang/lib/Frontend/CompilerInvocation.cpp
    M clang/lib/Frontend/FrontendActions.cpp
    M clang/lib/Headers/avx2intrin.h
    M clang/lib/Headers/avx512bwintrin.h
    M clang/lib/Headers/avx512fintrin.h
    M clang/lib/Headers/avx512vbmi2intrin.h
    M clang/lib/Headers/avx512vlbwintrin.h
    M clang/lib/Headers/avx512vlintrin.h
    M clang/lib/Headers/avx512vlvbmi2intrin.h
    M clang/lib/Headers/avx512vlvnniintrin.h
    M clang/lib/Headers/avx512vnniintrin.h
    M clang/lib/Headers/avxintrin.h
    M clang/lib/Headers/avxvnniintrin.h
    M clang/lib/Headers/cpuid.h
    M clang/lib/Headers/emmintrin.h
    M clang/lib/Headers/xmmintrin.h
    M clang/lib/Headers/xopintrin.h
    M clang/lib/Lex/HeaderSearch.cpp
    M clang/lib/Lex/PPDirectives.cpp
    M clang/lib/Parse/ParseHLSL.cpp
    M clang/lib/Parse/ParseHLSLRootSignature.cpp
    M clang/lib/Parse/ParseStmtAsm.cpp
    M clang/lib/Sema/HLSLBuiltinTypeDeclBuilder.cpp
    M clang/lib/Sema/HLSLBuiltinTypeDeclBuilder.h
    M clang/lib/Sema/HLSLExternalSemaSource.cpp
    M clang/lib/Sema/SemaDecl.cpp
    M clang/lib/Sema/SemaDeclAttr.cpp
    M clang/lib/Sema/SemaExpr.cpp
    M clang/lib/Sema/SemaHLSL.cpp
    M clang/lib/Sema/SemaSwift.cpp
    M clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
    M clang/lib/Serialization/ASTWriter.cpp
    M clang/lib/StaticAnalyzer/Checkers/VAListChecker.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/ASTUtils.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/ASTUtils.h
    M clang/lib/StaticAnalyzer/Checkers/WebKit/ForwardDeclChecker.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/RawPtrRefCallArgsChecker.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/RawPtrRefLambdaCapturesChecker.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/RawPtrRefLocalVarsChecker.cpp
    M clang/lib/StaticAnalyzer/Checkers/WebKit/RetainPtrCtorAdoptChecker.cpp
    M clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
    M clang/lib/StaticAnalyzer/Core/RegionStore.cpp
    M clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
    M clang/test/APINotes/yaml-roundtrip-2.test
    M clang/test/APINotes/yaml-roundtrip.test
    A clang/test/AST/ByteCode/builtins.c
    M clang/test/AST/ByteCode/builtins.cpp
    M clang/test/AST/ByteCode/openmp.cpp
    M clang/test/AST/ByteCode/references.cpp
    M clang/test/AST/HLSL/ByteAddressBuffers-AST.hlsl
    A clang/test/AST/HLSL/RootSignature-Target-AST.hlsl
    M clang/test/AST/HLSL/StructuredBuffers-AST.hlsl
    M clang/test/AST/HLSL/TypedBuffers-AST.hlsl
    M clang/test/AST/ast-dump-attr.cpp
    M clang/test/Analysis/Checkers/WebKit/call-args-checked-const-member.cpp
    M clang/test/Analysis/Checkers/WebKit/retain-ptr-ctor-adopt-use.mm
    M clang/test/Analysis/Checkers/WebKit/uncounted-lambda-captures.cpp
    M clang/test/Analysis/Checkers/WebKit/uncounted-local-vars.cpp
    M clang/test/Analysis/Checkers/WebKit/unretained-call-args.mm
    M clang/test/Analysis/ctor-trivial-copy.cpp
    A clang/test/Analysis/issue-157467.cpp
    M clang/test/Analysis/taint-generic.cpp
    M clang/test/Analysis/valist-uninitialized-no-undef.c
    M clang/test/Analysis/valist-uninitialized.c
    M clang/test/Analysis/valist-unterminated.c
    M clang/test/CIR/CodeGen/builtin_call.cpp
    M clang/test/CIR/CodeGen/builtins-elementwise.c
    A clang/test/CIR/CodeGen/nrvo.cpp
    A clang/test/CIR/IR/alloca.cir
    M clang/test/CodeGen/RISCV/attr-hw-shadow-stack.c
    M clang/test/CodeGen/RISCV/riscv-func-attr-target.c
    M clang/test/CodeGen/RISCV/rvv-intrinsics-handcrafted/vlenb.c
    M clang/test/CodeGen/X86/avx-builtins.c
    M clang/test/CodeGen/X86/avx2-builtins.c
    M clang/test/CodeGen/X86/avx512bw-builtins.c
    M clang/test/CodeGen/X86/avx512f-builtins.c
    M clang/test/CodeGen/X86/avx512vbmi2-builtins.c
    M clang/test/CodeGen/X86/avx512vl-builtins.c
    M clang/test/CodeGen/X86/avx512vlbw-builtins.c
    M clang/test/CodeGen/X86/avx512vlvbmi2-builtins.c
    M clang/test/CodeGen/X86/avx512vlvnni-builtins.c
    M clang/test/CodeGen/X86/avx512vnni-builtins.c
    M clang/test/CodeGen/X86/avxvnni-builtins.c
    M clang/test/CodeGen/X86/mmx-builtins.c
    M clang/test/CodeGen/X86/sse2-builtins.c
    M clang/test/CodeGen/X86/xop-builtins.c
    M clang/test/CodeGen/allow-ubsan-check.c
    M clang/test/CodeGen/target-builtin-error-3.c
    M clang/test/CodeGen/union-tbaa1.c
    M clang/test/CodeGenCXX/constructor-attr.cpp
    A clang/test/CodeGenCXX/destructor-attr.cpp
    A clang/test/CodeGenHLSL/RootSignature-Target.hlsl
    M clang/test/CodeGenHLSL/resources/res-array-local-multi-dim.hlsl
    A clang/test/CodeGenHLSL/semantics/DispatchThreadID-noindex.hlsl
    A clang/test/CodeGenHLSL/semantics/SV_GroupID-noindex.hlsl
    A clang/test/CodeGenHLSL/semantics/SV_GroupThreadID-noindex.hlsl
    M clang/test/CodeGenHLSL/semantics/SV_Position.ps.hlsl
    A clang/test/CodeGenHLSL/semantics/missing.hlsl
    M clang/test/CodeGenOpenCL/builtins-amdgcn-gfx1250.cl
    M clang/test/CodeGenOpenCL/builtins-amdgcn.cl
    M clang/test/CodeGenSPIRV/spirv-intel.c
    M clang/test/DebugInfo/CXX/artificial-arg.cpp
    A clang/test/DebugInfo/CXX/local-structor-linkage-names.cpp
    A clang/test/DebugInfo/CXX/structor-linkage-names.cpp
    M clang/test/DebugInfo/ObjCXX/cyclic.mm
    M clang/test/Driver/cl-options.c
    M clang/test/Driver/config-file3.c
    A clang/test/Driver/dxc_frs.hlsl
    A clang/test/Driver/dxc_rootsignature_target.hlsl
    M clang/test/Driver/fp-model.c
    M clang/test/Driver/fpatchable-function-entry.c
    M clang/test/Driver/frame-pointer-elim.c
    M clang/test/Driver/frame-pointer.c
    A clang/test/Driver/range-warnings.c
    M clang/test/Driver/range.c
    M clang/test/Driver/riscv-cpus.c
    M clang/test/Driver/riscv-default-features.c
    M clang/test/Driver/riscv-features.c
    M clang/test/Headers/__cpuidex_conflict.c
    A clang/test/Modules/added-visible-decls.cppm
    A clang/test/Modules/modules-cache-path-canonicalization-output.c
    R clang/test/OpenMP/amdgcn_target_parallel_num_threads_codegen.cpp
    A clang/test/OpenMP/for_lst_private_codegen_c.c
    A clang/test/OpenMP/host-ir-file-vfs.c
    M clang/test/OpenMP/nvptx_target_codegen.cpp
    M clang/test/OpenMP/nvptx_target_parallel_num_threads_codegen.cpp
    A clang/test/OpenMP/spirv_kernel_addrspace.cpp
    M clang/test/OpenMP/spirv_variant_match.cpp
    M clang/test/OpenMP/target_parallel_generic_loop_codegen.cpp
    R clang/test/OpenMP/target_parallel_num_threads_strict_codegen.cpp
    M clang/test/ParserHLSL/semantic_parsing.hlsl
    A clang/test/ParserHLSL/semantic_parsing_define.hlsl
    M clang/test/Preprocessor/embed___has_embed_parsing_errors.c
    R clang/test/Sema/constructor-attribute.c
    A clang/test/Sema/constructor-attribute.cpp
    M clang/test/Sema/patchable-function-entry-attr.cpp
    M clang/test/Sema/warn-lifetime-safety-dataflow.cpp
    M clang/test/Sema/warn-thread-safety-analysis.c
    M clang/test/SemaCXX/builtin-get-vtable-pointer.cpp
    A clang/test/SemaCXX/builtin-overload-resolution.cpp
    M clang/test/SemaCXX/labeled-break-continue-constexpr.cpp
    M clang/test/SemaCXX/sugar-common-types.cpp
    M clang/test/SemaCXX/warn-thread-safety-analysis.cpp
    M clang/test/SemaHLSL/RootSignature-err.hlsl
    M clang/test/SemaHLSL/RootSignature-resource-ranges-err.hlsl
    M clang/test/SemaHLSL/RootSignature-resource-ranges.hlsl
    A clang/test/SemaHLSL/RootSignature-target-err.hlsl
    M clang/test/SemaHLSL/Semantics/invalid_entry_parameter.hlsl
    M clang/test/SemaObjC/attr-swift_name.m
    M clang/test/SemaObjC/non-trivial-c-union.m
    M clang/tools/clang-installapi/ClangInstallAPI.cpp
    M clang/unittests/AST/DeclTest.cpp
    M clang/unittests/Analysis/FlowSensitive/RecordOpsTest.cpp
    M clang/unittests/Analysis/FlowSensitive/TransferTest.cpp
    M clang/unittests/Parse/ParseHLSLRootSignatureTest.cpp
    M clang/utils/TableGen/ClangAttrEmitter.cpp
    M compiler-rt/lib/builtins/assembly.h
    M compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cpp
    M compiler-rt/test/asan/TestCases/Darwin/duplicate_os_log_reports.cpp
    M compiler-rt/test/asan/TestCases/Linux/read_binary_name_regtest.c
    M compiler-rt/test/asan/TestCases/suppressions-library.cpp
    M compiler-rt/test/asan/TestCases/verbose-log-path_test.cpp
    M compiler-rt/test/fuzzer/focus-function.test
    M compiler-rt/test/fuzzer/sig-trap.test
    M compiler-rt/test/hwasan/TestCases/Posix/dlerror.cpp
    M compiler-rt/test/lit.common.cfg.py
    M compiler-rt/test/profile/Linux/binary-id-offset.c
    M compiler-rt/test/rtsan/unrecognized_flags.cpp
    M compiler-rt/test/sanitizer_common/TestCases/external_symbolizer_path.cpp
    M compiler-rt/test/sanitizer_common/TestCases/suffix-log-path_test.c
    M compiler-rt/test/tsan/Darwin/os_unfair_lock.c
    M compiler-rt/test/ubsan/TestCases/Misc/coverage-levels.cpp
    M compiler-rt/test/ubsan/TestCases/Misc/log-path_test.cpp
    M compiler-rt/test/xray/TestCases/Posix/dlopen.cpp
    M compiler-rt/test/xray/TestCases/Posix/dso-dep-chains.cpp
    M compiler-rt/test/xray/TestCases/Posix/patch-premain-dso.cpp
    M compiler-rt/test/xray/TestCases/Posix/patching-unpatching-dso.cpp
    M cross-project-tests/debuginfo-tests/dexter/dex/debugger/DAP.py
    M cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/LLDB.py
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/control/dex-continue.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/control/dex_step_function.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/dex_declare_file.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_program_state.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_step_kinds.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_step_order.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_watch_type.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_watch_value.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/float_range_out_range.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/float_range_zero_nonmatch.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/missing_dex_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/unreachable.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/unreachable_line_range.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/unreachable_on_line.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/command_line.c
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/address_after_ref.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/address_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/expression_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/identical_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/multiple_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/offset_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/self_comparison.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/dex_and_source/test.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/precompiled_binary/commands.dex
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/precompiled_binary_different_dir/dex_commands/commands.dex
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/precompiled_binary_different_dir/dex_commands/source_root_dir.dex
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/windows_noncanonical_path/test.dex
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_conditional.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_conditional_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_simple.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_conditional.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_conditional_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_simple.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_program_state.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/direction.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/func.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/func_external.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/recursive.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/small_loop.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_order.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_watch_type.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_watch_value.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_multiple.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_no_arg.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_small.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/float_range_watch/float_range_zero_match.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/hit_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_check_json_step_count.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_expect_loop.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_expect_value.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_line_mismatch.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_overlapping_ranges.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/limit_steps_same_line_conditional.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/limit_steps/unconditional.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/unreachable.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/unreachable_not_cmd_lineno.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/unreachable_on_line.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/help/help.test
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/list-debuggers/list-debuggers.test
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/address_printing.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_bad_label_ref.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_duplicate_address.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_duplicate_label.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_label_kwarg.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_limit_steps_no_values.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_paren.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_paren_mline.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_syntax.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_syntax_dexdeclarefile.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_syntax_mline.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_type.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_type_mline.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/err_undeclared_addr.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/label_another_line.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/label_offset.cpp
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/target_run_args.c
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/target_run_args_with_command.c
    M cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/view.cpp
    M cross-project-tests/lit.cfg.py
    M flang-rt/CMakeLists.txt
    M flang-rt/cmake/modules/AddFlangRT.cmake
    M flang-rt/include/flang-rt/runtime/descriptor.h
    M flang-rt/include/flang-rt/runtime/io-stmt.h
    M flang-rt/include/flang-rt/runtime/type-info.h
    M flang-rt/lib/cuda/descriptor.cpp
    M flang-rt/lib/runtime/assign.cpp
    M flang-rt/lib/runtime/copy.cpp
    M flang-rt/lib/runtime/derived.cpp
    M flang-rt/lib/runtime/descriptor.cpp
    M flang-rt/lib/runtime/io-stmt.cpp
    M flang-rt/lib/runtime/type-info.cpp
    M flang-rt/unittests/Runtime/CUDA/AllocatorCUF.cpp
    M flang/include/flang/Lower/CUDA.h
    M flang/include/flang/Lower/HlfirIntrinsics.h
    M flang/include/flang/Lower/OpenMP.h
    M flang/include/flang/Lower/OpenMP/Clauses.h
    M flang/include/flang/Optimizer/Builder/IntrinsicCall.h
    M flang/include/flang/Optimizer/Builder/Runtime/CUDA/Descriptor.h
    M flang/include/flang/Optimizer/Builder/Runtime/Character.h
    M flang/include/flang/Optimizer/Builder/Runtime/Coarray.h
    M flang/include/flang/Optimizer/Dialect/CUF/CUFOps.td
    M flang/include/flang/Optimizer/HLFIR/HLFIROps.td
    M flang/include/flang/Parser/dump-parse-tree.h
    M flang/include/flang/Parser/parse-tree.h
    M flang/include/flang/Runtime/CUDA/descriptor.h
    M flang/include/flang/Semantics/tools.h
    M flang/lib/Evaluate/check-expression.cpp
    M flang/lib/Lower/Allocatable.cpp
    M flang/lib/Lower/Bridge.cpp
    M flang/lib/Lower/CUDA.cpp
    M flang/lib/Lower/ConvertCall.cpp
    M flang/lib/Lower/ConvertVariable.cpp
    M flang/lib/Lower/HlfirIntrinsics.cpp
    M flang/lib/Lower/OpenACC.cpp
    M flang/lib/Lower/OpenMP/ClauseProcessor.cpp
    M flang/lib/Lower/OpenMP/ClauseProcessor.h
    M flang/lib/Lower/OpenMP/Clauses.cpp
    M flang/lib/Lower/OpenMP/OpenMP.cpp
    M flang/lib/Lower/OpenMP/Utils.cpp
    M flang/lib/Lower/OpenMP/Utils.h
    M flang/lib/Optimizer/Builder/IntrinsicCall.cpp
    M flang/lib/Optimizer/Builder/MutableBox.cpp
    M flang/lib/Optimizer/Builder/Runtime/CUDA/Descriptor.cpp
    M flang/lib/Optimizer/Builder/Runtime/Character.cpp
    M flang/lib/Optimizer/Builder/Runtime/Coarray.cpp
    M flang/lib/Optimizer/CodeGen/CodeGenOpenMP.cpp
    M flang/lib/Optimizer/Dialect/CUF/CUFOps.cpp
    M flang/lib/Optimizer/HLFIR/IR/HLFIROps.cpp
    M flang/lib/Optimizer/HLFIR/Transforms/LowerHLFIRIntrinsics.cpp
    M flang/lib/Optimizer/OpenMP/CMakeLists.txt
    M flang/lib/Optimizer/OpenMP/DoConcurrentConversion.cpp
    M flang/lib/Optimizer/Transforms/CUFOpConversion.cpp
    M flang/lib/Parser/openmp-parsers.cpp
    M flang/lib/Semantics/check-omp-structure.cpp
    M flang/lib/Semantics/expression.cpp
    M flang/lib/Semantics/resolve-directives.cpp
    M flang/lib/Semantics/resolve-names.cpp
    M flang/lib/Semantics/runtime-type-info.cpp
    M flang/lib/Semantics/symbol.cpp
    M flang/lib/Semantics/unparse-with-symbols.cpp
    M flang/lib/Utils/CMakeLists.txt
    M flang/module/__fortran_type_info.f90
    M flang/test/Driver/target-cpu-features.f90
    A flang/test/Evaluate/bug157379.f90
    M flang/test/Fir/CUDA/cuda-alloc-free.fir
    M flang/test/Fir/CUDA/cuda-data-transfer.fir
    A flang/test/Fir/OpenMP/bounds-generation-for-char-arrays.f90
    A flang/test/HLFIR/index-lowering.fir
    M flang/test/HLFIR/invalid.fir
    A flang/test/Lower/CUDA/cuda-allocatable-device.cuf
    R flang/test/Lower/CUDA/cuda-set-allocator.cuf
    A flang/test/Lower/CUDA/cuda-stream.cuf
    A flang/test/Lower/Coarray/co_broadcast.f90
    A flang/test/Lower/Coarray/co_max.f90
    A flang/test/Lower/Coarray/co_min.f90
    A flang/test/Lower/Coarray/co_sum.f90
    M flang/test/Lower/HLFIR/allocatable-and-pointer-status-change.f90
    A flang/test/Lower/HLFIR/index.f90
    M flang/test/Lower/HLFIR/issue80884.f90
    M flang/test/Lower/OpenACC/do-loops-to-acc-loops.f90
    R flang/test/Lower/OpenMP/nested-loop-transformation-construct01.f90
    M flang/test/Lower/OpenMP/parallel-wsloop-lastpriv.f90
    M flang/test/Lower/OpenMP/simd.f90
    M flang/test/Lower/OpenMP/wsloop-collapse.f90
    M flang/test/Lower/OpenMP/wsloop-variable.f90
    M flang/test/Lower/components.f90
    A flang/test/Lower/percent-val-actual-argument.f90
    A flang/test/Lower/percent-val-value-argument.f90
    M flang/test/Lower/pointer-assignments.f90
    M flang/test/Lower/volatile-string.f90
    A flang/test/Parser/OpenMP/declare-reduction-unparse-with-symbols.f90
    A flang/test/Parser/OpenMP/do-tile-size.f90
    A flang/test/Parser/OpenMP/taskgraph.f90
    M flang/test/Semantics/OpenMP/do-collapse.f90
    M flang/test/Semantics/OpenMP/do-concurrent-collapse.f90
    A flang/test/Semantics/contiguous02.f90
    M flang/test/Semantics/resolve20.f90
    A flang/test/Transforms/DoConcurrent/basic_device.f90
    M flang/test/Transforms/DoConcurrent/basic_device.mlir
    A flang/test/Transforms/DoConcurrent/use_loop_bounds_in_body.f90
    M libc/cmake/modules/CheckCompilerFeatures.cmake
    A libc/cmake/modules/LibcParseArguments.cmake
    A libc/cmake/modules/compiler_features/check_ext_vector_type.cpp
    M libc/src/__support/CMakeLists.txt
    M libc/src/__support/CPP/CMakeLists.txt
    M libc/src/__support/CPP/bit.h
    M libc/src/__support/CPP/simd.h
    A libc/src/__support/CPP/tuple.h
    M libc/src/__support/CPP/type_traits/is_complex.h
    M libc/src/__support/CPP/utility/integer_sequence.h
    M libc/src/__support/common.h
    M libc/src/__support/macros/CMakeLists.txt
    M libc/src/__support/macros/config.h
    M libc/src/__support/macros/optimization.h
    M libc/src/__support/macros/properties/compiler.h
    M libc/test/src/__support/CPP/CMakeLists.txt
    A libc/test/src/__support/CPP/simd_test.cpp
    A libc/test/src/__support/CPP/tuple_test.cpp
    M libc/test/src/math/CMakeLists.txt
    M libc/test/src/math/FModTest.h
    M libc/test/src/math/acosf_test.cpp
    M libc/test/src/math/acoshf16_test.cpp
    M libc/test/src/math/acoshf_test.cpp
    M libc/test/src/math/asinf_test.cpp
    M libc/test/src/math/asinhf_test.cpp
    M libc/test/src/math/atanf_test.cpp
    M libc/test/src/math/atanhf_test.cpp
    M libc/test/src/math/cosf_test.cpp
    M libc/test/src/math/coshf_test.cpp
    M libc/test/src/math/cospif_test.cpp
    M libc/test/src/math/exp10_test.cpp
    M libc/test/src/math/exp10f_test.cpp
    M libc/test/src/math/exp10m1f_test.cpp
    M libc/test/src/math/exp2_test.cpp
    M libc/test/src/math/exp2f_test.cpp
    M libc/test/src/math/exp2m1f_test.cpp
    M libc/test/src/math/exp_test.cpp
    M libc/test/src/math/expf_test.cpp
    M libc/test/src/math/expm1_test.cpp
    M libc/test/src/math/expm1f_test.cpp
    M libc/test/src/math/log10_test.cpp
    M libc/test/src/math/log1p_test.cpp
    M libc/test/src/math/log1pf_test.cpp
    M libc/test/src/math/log2_test.cpp
    M libc/test/src/math/log_test.cpp
    M libc/test/src/math/sincosf_test.cpp
    M libc/test/src/math/sinf_test.cpp
    M libc/test/src/math/sinhf_test.cpp
    M libc/test/src/math/sinpif_test.cpp
    M libc/test/src/math/smoke/CMakeLists.txt
    M libc/test/src/math/smoke/FModTest.h
    M libc/test/src/math/smoke/RoundToIntegerTest.h
    M libc/test/src/math/smoke/atan2f_test.cpp
    M libc/test/src/math/smoke/atanf16_test.cpp
    M libc/test/src/math/smoke/atanf_test.cpp
    M libc/test/src/math/smoke/atanhf16_test.cpp
    M libc/test/src/math/smoke/atanhf_test.cpp
    M libc/test/src/math/smoke/atanpif16_test.cpp
    M libc/test/src/math/smoke/cosf16_test.cpp
    M libc/test/src/math/smoke/cosf_test.cpp
    M libc/test/src/math/smoke/coshf16_test.cpp
    M libc/test/src/math/smoke/coshf_test.cpp
    M libc/test/src/math/smoke/cospif16_test.cpp
    M libc/test/src/math/smoke/cospif_test.cpp
    M libc/test/src/math/smoke/exp10_test.cpp
    M libc/test/src/math/smoke/exp10f16_test.cpp
    M libc/test/src/math/smoke/exp10f_test.cpp
    M libc/test/src/math/smoke/exp10m1f16_test.cpp
    M libc/test/src/math/smoke/exp10m1f_test.cpp
    M libc/test/src/math/smoke/exp2_test.cpp
    M libc/test/src/math/smoke/exp2f16_test.cpp
    M libc/test/src/math/smoke/exp2f_test.cpp
    M libc/test/src/math/smoke/exp2m1f16_test.cpp
    M libc/test/src/math/smoke/exp2m1f_test.cpp
    M libc/test/src/math/smoke/exp_test.cpp
    M libc/test/src/math/smoke/expf16_test.cpp
    M libc/test/src/math/smoke/expf_test.cpp
    M libc/test/src/math/smoke/expm1_test.cpp
    M libc/test/src/math/smoke/expm1f16_test.cpp
    M libc/test/src/math/smoke/expm1f_test.cpp
    M libc/test/src/math/smoke/log10_test.cpp
    M libc/test/src/math/smoke/log10f16_test.cpp
    M libc/test/src/math/smoke/log10f_test.cpp
    M libc/test/src/math/smoke/log1p_test.cpp
    M libc/test/src/math/smoke/log1pf_test.cpp
    M libc/test/src/math/smoke/log2_test.cpp
    M libc/test/src/math/smoke/log2f16_test.cpp
    M libc/test/src/math/smoke/log2f_test.cpp
    M libc/test/src/math/smoke/log_test.cpp
    M libc/test/src/math/smoke/logf16_test.cpp
    M libc/test/src/math/smoke/logf_test.cpp
    M libc/test/src/math/smoke/sincos_test.cpp
    M libc/test/src/math/smoke/sincosf_test.cpp
    M libc/test/src/math/smoke/sinf16_test.cpp
    M libc/test/src/math/smoke/sinf_test.cpp
    M libc/test/src/math/smoke/sinhf16_test.cpp
    M libc/test/src/math/smoke/sinhf_test.cpp
    M libc/test/src/math/smoke/sinpif16_test.cpp
    M libc/test/src/math/smoke/sinpif_test.cpp
    M libc/test/src/math/smoke/tanf16_test.cpp
    M libc/test/src/math/smoke/tanf_test.cpp
    M libc/test/src/math/smoke/tanhf16_test.cpp
    M libc/test/src/math/smoke/tanhf_test.cpp
    M libc/test/src/math/smoke/tanpif16_test.cpp
    M libc/test/src/math/smoke/tanpif_test.cpp
    M libc/test/src/math/tanf_test.cpp
    M libc/test/src/math/tanhf_test.cpp
    M libc/test/src/time/CMakeLists.txt
    M libc/test/src/time/asctime_r_test.cpp
    M libc/test/src/time/asctime_test.cpp
    M libc/test/src/time/ctime_r_test.cpp
    M libc/test/src/time/ctime_test.cpp
    M libc/test/src/time/gmtime_r_test.cpp
    M libc/test/src/time/gmtime_test.cpp
    M libc/test/src/time/nanosleep_test.cpp
    M libc/test/src/wchar/CMakeLists.txt
    M libc/test/src/wchar/WcstolTest.h
    M libc/test/src/wchar/mblen_test.cpp
    M libc/test/src/wchar/mbrlen_test.cpp
    M libc/test/src/wchar/mbrtowc_test.cpp
    M libc/test/src/wchar/mbsnrtowcs_test.cpp
    M libc/test/src/wchar/mbsrtowcs_test.cpp
    M libc/test/src/wchar/mbstowcs_test.cpp
    M libc/test/src/wchar/mbtowc_test.cpp
    M libc/test/src/wchar/wcrtomb_test.cpp
    M libc/test/src/wchar/wctomb_test.cpp
    A libclc/clc/include/clc/shared/unary_def_with_ptr_scalarize.inc
    M libclc/clc/lib/generic/math/clc_lgamma_r.cl
    M libcxx/docs/Status/Cxx17Issues.csv
    M libcxx/docs/Status/Cxx17Papers.csv
    M libcxx/docs/Status/Cxx20Issues.csv
    M libcxx/docs/Status/Cxx20Papers.csv
    M libcxx/docs/Status/Cxx23Issues.csv
    M libcxx/docs/Status/Cxx23Papers.csv
    M libcxx/docs/Status/Cxx2cIssues.csv
    M libcxx/docs/Status/Cxx2cPapers.csv
    M libcxx/docs/TestingLibcxx.rst
    M libcxx/include/__config
    M libcxx/include/__cxx03/__algorithm/find.h
    M libcxx/include/__cxx03/__iterator/prev.h
    M libcxx/include/__hash_table
    M libcxx/include/__memory/pointer_traits.h
    M libcxx/include/__random/binomial_distribution.h
    M libcxx/include/__tree
    M libcxx/include/ext/hash_map
    M libcxx/include/unordered_map
    M libcxx/test/benchmarks/spec.gen.py
    M libcxx/test/libcxx-03/iterators/iterator.primitives/iterator.operations/prev.verify.cpp
    M libcxx/test/libcxx/algorithms/cpp17_iterator_concepts.verify.cpp
    M libcxx/test/std/algorithms/alg.nonmodifying/alg.find/find.pass.cpp
    M libcxx/test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp
    A libcxx/utils/build-at-commit
    R libcxx/utils/cat_files.py
    M libcxx/utils/ci/BOT_OWNERS.txt
    A libcxx/utils/compare-benchmarks
    A libcxx/utils/consolidate-benchmarks
    R libcxx/utils/libcxx-benchmark-json
    R libcxx/utils/libcxx-compare-benchmarks
    A libcxx/utils/requirements.txt
    M libcxx/utils/synchronize_csv_status_files.py
    A libcxx/utils/test-at-commit
    M lld/COFF/COFFLinkerContext.h
    M lld/COFF/Chunks.cpp
    M lld/COFF/MinGW.cpp
    M lld/COFF/PDB.cpp
    M lld/COFF/PDB.h
    M lld/COFF/Writer.cpp
    M lld/ELF/InputSection.cpp
    M lld/ELF/Target.h
    M lld/MachO/Target.h
    M lld/test/COFF/pdb-type-server-simple.test
    M lld/test/COFF/precomp-link.test
    M lld/test/COFF/precomp-summary-fail.test
    A lld/test/COFF/reloc-undefined-weak.s
    M lld/test/COFF/wrap-dllimport.s
    M lldb/bindings/interface/SBProgressDocstrings.i
    M lldb/bindings/python/python.swig
    M lldb/examples/python/cmdtemplate.py
    M lldb/examples/python/templates/parsed_cmd.py
    M lldb/include/lldb/Core/Architecture.h
    M lldb/include/lldb/Expression/Expression.h
    M lldb/include/lldb/Expression/IRMemoryMap.h
    M lldb/include/lldb/Protocol/MCP/Server.h
    M lldb/include/lldb/Symbol/SymbolFile.h
    M lldb/include/lldb/Target/RegisterContextUnwind.h
    M lldb/include/lldb/Target/Statistics.h
    M lldb/include/lldb/Target/StopInfo.h
    M lldb/include/lldb/Target/UnwindLLDB.h
    M lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py
    M lldb/source/API/SBThread.cpp
    M lldb/source/Commands/CommandObjectMemory.cpp
    M lldb/source/Expression/Expression.cpp
    M lldb/source/Expression/IRExecutionUnit.cpp
    M lldb/source/Expression/IRMemoryMap.cpp
    M lldb/source/Plugins/ABI/ARM/ABISysV_arm.cpp
    M lldb/source/Plugins/Architecture/Arm/ArchitectureArm.cpp
    M lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h
    M lldb/source/Plugins/ObjectFile/JSON/ObjectFileJSON.cpp
    M lldb/source/Plugins/ObjectFile/JSON/ObjectFileJSON.h
    M lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
    M lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
    M lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp
    M lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h
    M lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
    M lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
    M lldb/source/Plugins/Protocol/MCP/ProtocolServerMCP.cpp
    M lldb/source/Plugins/Protocol/MCP/ProtocolServerMCP.h
    M lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
    M lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
    M lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
    M lldb/source/Protocol/MCP/Server.cpp
    M lldb/source/Target/RegisterContextUnwind.cpp
    M lldb/source/Target/Statistics.cpp
    M lldb/source/Target/StopInfo.cpp
    M lldb/source/Utility/ArchSpec.cpp
    M lldb/test/API/commands/command/script/add/TestAddParsedCommand.py
    M lldb/test/API/commands/command/script/add/test_commands.py
    M lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/iterator/TestIteratorFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/list/TestListFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/non-module-type-separation/TestNonModuleTypeSeparation.py
    M lldb/test/API/commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py
    M lldb/test/API/commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py
    M lldb/test/API/commands/statistics/basic/TestStats.py
    A lldb/test/API/commands/statistics/basic/dwo_error_foo.cpp
    A lldb/test/API/commands/statistics/basic/dwo_error_main.cpp
    M lldb/test/API/functionalities/asan/TestMemoryHistory.py
    M lldb/test/API/functionalities/asan/TestReportData.py
    M lldb/test/API/functionalities/gdb_remote_client/TestqOffsets.py
    M lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
    M lldb/test/API/functionalities/postmortem/elf-core/gcore/TestGCore.py
    A lldb/test/API/functionalities/postmortem/elf-core/linux-arm-vfp.c
    A lldb/test/API/functionalities/postmortem/elf-core/linux-arm-vfp.core
    M lldb/test/API/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py
    M lldb/test/API/functionalities/rerun_and_expr_dylib/TestRerunAndExprDylib.py
    M lldb/test/API/functionalities/thread/step_until/TestStepUntil.py
    M lldb/test/API/functionalities/thread/step_until/TestStepUntilAPI.py
    M lldb/test/API/functionalities/tsan/basic/TestTsanBasic.py
    M lldb/test/API/functionalities/ubsan/basic/TestUbsanBasic.py
    A lldb/test/API/functionalities/unwind/cortex-m-exception/Makefile
    A lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py
    A lldb/test/API/functionalities/unwind/cortex-m-exception/armv7m-nofpu-exception.yaml
    A lldb/test/API/functionalities/unwind/cortex-m-exception/binary.json
    A lldb/test/API/lang/cpp/abi_tag_structors/Makefile
    A lldb/test/API/lang/cpp/abi_tag_structors/TestAbiTagStructors.py
    A lldb/test/API/lang/cpp/abi_tag_structors/main.cpp
    M lldb/test/API/lang/cpp/expr-definition-in-dylib/TestExprDefinitionInDylib.py
    M lldb/test/API/lang/cpp/expr-definition-in-dylib/lib.cpp
    M lldb/test/API/lang/cpp/expr-definition-in-dylib/lib.h
    M lldb/test/API/lang/cpp/expr-definition-in-dylib/main.cpp
    M lldb/test/API/tools/lldb-dap/server/TestDAP_server.py
    M lldb/test/Shell/SymbolFile/PDB/variables.test
    M lldb/tools/lldb-dap/Options.td
    M lldb/tools/lldb-dap/README.md
    M lldb/tools/lldb-dap/package.json
    M lldb/tools/lldb-dap/src-ts/debug-configuration-provider.ts
    M lldb/tools/lldb-dap/src-ts/lldb-dap-server.ts
    M lldb/tools/lldb-dap/tool/lldb-dap.cpp
    M lldb/tools/lldb-mcp/CMakeLists.txt
    M lldb/tools/lldb-mcp/lldb-mcp.cpp
    M lldb/unittests/Expression/ExpressionTest.cpp
    M lldb/unittests/Symbol/TestTypeSystemClang.cpp
    M llvm/Maintainers.md
    M llvm/cmake/modules/HandleLLVMOptions.cmake
    M llvm/docs/AMDGPUUsage.rst
    A llvm/docs/AdminTasks.rst
    M llvm/docs/CommandGuide/llvm-objcopy.rst
    M llvm/docs/Contributing.rst
    M llvm/docs/DebuggingLLVM.rst
    M llvm/docs/Extensions.rst
    M llvm/docs/LangRef.rst
    M llvm/docs/QualGroup.rst
    M llvm/docs/ReleaseNotes.md
    M llvm/docs/UserGuides.rst
    A llvm/docs/qual-wg/slides/202508_llvm_qual_wg.pdf
    A llvm/docs/qual-wg/slides/202509_llvm_qual_wg.pdf
    M llvm/examples/OrcV2Examples/OrcV2CBindingsBasicUsage/OrcV2CBindingsBasicUsage.c
    M llvm/examples/OrcV2Examples/OrcV2CBindingsIRTransforms/OrcV2CBindingsIRTransforms.c
    M llvm/examples/OrcV2Examples/OrcV2CBindingsVeryLazy/OrcV2CBindingsVeryLazy.c
    M llvm/include/llvm/ADT/DenseMap.h
    M llvm/include/llvm/ADT/STLExtras.h
    M llvm/include/llvm/ADT/STLForwardCompat.h
    M llvm/include/llvm/ADT/iterator_range.h
    M llvm/include/llvm/Analysis/Loads.h
    M llvm/include/llvm/Analysis/TargetTransformInfo.h
    M llvm/include/llvm/BinaryFormat/DXContainer.h
    M llvm/include/llvm/BinaryFormat/DXContainerConstants.def
    A llvm/include/llvm/CAS/MappedFileRegionArena.h
    R llvm/include/llvm/CAS/MappedFileRegionBumpPtr.h
    M llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
    M llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
    M llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
    M llvm/include/llvm/CodeGen/GlobalISel/Utils.h
    M llvm/include/llvm/CodeGen/Passes.h
    M llvm/include/llvm/CodeGen/SDPatternMatch.h
    M llvm/include/llvm/CodeGen/ValueTypes.h
    M llvm/include/llvm/CodeGen/ValueTypes.td
    M llvm/include/llvm/CodeGenTypes/MachineValueType.h
    M llvm/include/llvm/DebugInfo/PDB/Native/PublicsStream.h
    M llvm/include/llvm/ExecutionEngine/JITLink/riscv.h
    M llvm/include/llvm/Frontend/HLSL/HLSLBinding.h
    M llvm/include/llvm/Frontend/HLSL/RootSignatureValidations.h
    M llvm/include/llvm/Frontend/OpenMP/ClauseT.h
    M llvm/include/llvm/Frontend/OpenMP/OMP.td
    M llvm/include/llvm/Frontend/OpenMP/OMPIRBuilder.h
    M llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
    M llvm/include/llvm/IR/Intrinsics.td
    M llvm/include/llvm/IR/IntrinsicsAMDGPU.td
    M llvm/include/llvm/IR/IntrinsicsX86.td
    M llvm/include/llvm/IR/ProfDataUtils.h
    M llvm/include/llvm/IR/RuntimeLibcalls.td
    M llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
    M llvm/include/llvm/MC/DXContainerRootSignature.h
    M llvm/include/llvm/ObjCopy/CommonConfig.h
    M llvm/include/llvm/ObjCopy/ConfigManager.h
    M llvm/include/llvm/Passes/CodeGenPassBuilder.h
    M llvm/include/llvm/ProfileData/SampleProf.h
    M llvm/include/llvm/Remarks/BitstreamRemarkContainer.h
    R llvm/include/llvm/Remarks/BitstreamRemarkParser.h
    M llvm/include/llvm/Support/AMDHSAKernelDescriptor.h
    M llvm/include/llvm/Support/Alignment.h
    M llvm/include/llvm/Support/DXILABI.h
    M llvm/include/llvm/Support/LEB128.h
    M llvm/include/llvm/Support/MathExtras.h
    M llvm/include/llvm/Support/PointerLikeTypeTraits.h
    M llvm/include/llvm/Support/type_traits.h
    M llvm/include/llvm/Target/CGPassBuilderOption.h
    M llvm/include/llvm/Target/GlobalISel/Combine.td
    M llvm/include/llvm/Target/Target.td
    M llvm/include/llvm/TargetParser/Triple.h
    M llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
    M llvm/include/llvm/Transforms/Utils/ScalarEvolutionExpander.h
    M llvm/include/llvm/Transforms/Utils/UnrollLoop.h
    M llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
    M llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
    M llvm/include/module.modulemap
    M llvm/lib/Analysis/ConstantFolding.cpp
    M llvm/lib/Analysis/LazyValueInfo.cpp
    M llvm/lib/Analysis/Lint.cpp
    M llvm/lib/Analysis/Loads.cpp
    M llvm/lib/Analysis/LoopAccessAnalysis.cpp
    M llvm/lib/Analysis/ScalarEvolution.cpp
    M llvm/lib/CAS/CMakeLists.txt
    A llvm/lib/CAS/MappedFileRegionArena.cpp
    R llvm/lib/CAS/MappedFileRegionBumpPtr.cpp
    M llvm/lib/CodeGen/ExpandFp.cpp
    M llvm/lib/CodeGen/ExpandVectorPredication.cpp
    M llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
    M llvm/lib/CodeGen/GlobalISel/GISelValueTracking.cpp
    M llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
    M llvm/lib/CodeGen/GlobalISel/Utils.cpp
    M llvm/lib/CodeGen/MachineInstrBundle.cpp
    M llvm/lib/CodeGen/MachineOutliner.cpp
    M llvm/lib/CodeGen/TargetPassConfig.cpp
    M llvm/lib/CodeGen/ValueTypes.cpp
    M llvm/lib/DebugInfo/PDB/Native/PublicsStream.cpp
    M llvm/lib/ExecutionEngine/JITLink/ELF_riscv.cpp
    M llvm/lib/ExecutionEngine/JITLink/riscv.cpp
    M llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
    M llvm/lib/FileCheck/FileCheck.cpp
    M llvm/lib/Frontend/HLSL/RootSignatureMetadata.cpp
    M llvm/lib/Frontend/HLSL/RootSignatureValidations.cpp
    M llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
    M llvm/lib/IR/AutoUpgrade.cpp
    M llvm/lib/IR/DebugLoc.cpp
    M llvm/lib/IR/ProfDataUtils.cpp
    M llvm/lib/IR/RuntimeLibcalls.cpp
    M llvm/lib/IR/Verifier.cpp
    M llvm/lib/LTO/LTOCodeGenerator.cpp
    M llvm/lib/MC/DXContainerRootSignature.cpp
    M llvm/lib/MC/MCDisassembler/Disassembler.cpp
    M llvm/lib/MC/MCSFrame.cpp
    M llvm/lib/ObjCopy/ConfigManager.cpp
    M llvm/lib/ObjCopy/DXContainer/DXContainerObjcopy.cpp
    M llvm/lib/ObjectYAML/DXContainerEmitter.cpp
    M llvm/lib/Passes/PassBuilder.cpp
    M llvm/lib/Passes/PassRegistry.def
    M llvm/lib/Remarks/BitstreamRemarkParser.cpp
    M llvm/lib/Remarks/BitstreamRemarkParser.h
    M llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
    M llvm/lib/Target/AArch64/AArch64Combine.td
    M llvm/lib/Target/AArch64/AArch64Features.td
    M llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
    M llvm/lib/Target/AArch64/AArch64FrameLowering.h
    M llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    M llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
    M llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
    M llvm/lib/Target/AArch64/AArch64Processors.td
    A llvm/lib/Target/AArch64/AArch64PrologueEpilogue.cpp
    A llvm/lib/Target/AArch64/AArch64PrologueEpilogue.h
    M llvm/lib/Target/AArch64/AArch64RegisterInfo.td
    M llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
    M llvm/lib/Target/AArch64/AArch64Subtarget.cpp
    M llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
    M llvm/lib/Target/AArch64/CMakeLists.txt
    M llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
    M llvm/lib/Target/AArch64/MachineSMEABIPass.cpp
    M llvm/lib/Target/AArch64/SVEInstrFormats.td
    M llvm/lib/Target/AMDGPU/AMDGPU.td
    M llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
    M llvm/lib/Target/AMDGPU/AMDGPUCombine.td
    M llvm/lib/Target/AMDGPU/AMDGPUGISel.td
    M llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
    M llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
    M llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.cpp
    M llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.h
    M llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
    M llvm/lib/Target/AMDGPU/AMDGPURegBankCombiner.cpp
    M llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeHelper.cpp
    M llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeHelper.h
    M llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeRules.cpp
    M llvm/lib/Target/AMDGPU/AMDGPURegBankLegalizeRules.h
    M llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
    M llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
    M llvm/lib/Target/AMDGPU/GCNSubtarget.h
    M llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
    M llvm/lib/Target/AMDGPU/SIDefines.h
    M llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
    M llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    M llvm/lib/Target/AMDGPU/SIISelLowering.h
    M llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
    M llvm/lib/Target/AMDGPU/SIInstrInfo.h
    M llvm/lib/Target/AMDGPU/SIInstrInfo.td
    M llvm/lib/Target/AMDGPU/SIInstructions.td
    M llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
    M llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
    M llvm/lib/Target/AMDGPU/SIRegisterInfo.td
    M llvm/lib/Target/AMDGPU/SOPInstructions.td
    M llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
    M llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
    M llvm/lib/Target/AMDGPU/VOP2Instructions.td
    M llvm/lib/Target/AMDGPU/VOP3PInstructions.td
    M llvm/lib/Target/AMDGPU/VOPCInstructions.td
    M llvm/lib/Target/AMDGPU/VOPDInstructions.td
    M llvm/lib/Target/ARM/ARMISelLowering.cpp
    M llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
    M llvm/lib/Target/BPF/BPFInstrInfo.td
    M llvm/lib/Target/BPF/CMakeLists.txt
    M llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
    M llvm/lib/Target/DirectX/DXContainerGlobals.cpp
    M llvm/lib/Target/DirectX/DXILPostOptimizationValidation.cpp
    M llvm/lib/Target/DirectX/DXILRootSignature.cpp
    M llvm/lib/Target/DirectX/DXILTranslateMetadata.cpp
    M llvm/lib/Target/Hexagon/Hexagon.td
    M llvm/lib/Target/LoongArch/LoongArch.td
    M llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
    M llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
    M llvm/lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp
    M llvm/lib/Target/RISCV/RISCVFeatures.td
    M llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
    M llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
    M llvm/lib/Target/RISCV/RISCVISelDAGToDAG.h
    M llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    M llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
    M llvm/lib/Target/RISCV/RISCVInstrInfo.td
    M llvm/lib/Target/RISCV/RISCVInstrInfoP.td
    M llvm/lib/Target/RISCV/RISCVInstrInfoXTHead.td
    M llvm/lib/Target/RISCV/RISCVInstrInfoZb.td
    M llvm/lib/Target/RISCV/RISCVInstrInfoZicfiss.td
    M llvm/lib/Target/RISCV/RISCVInstrPredicates.td
    M llvm/lib/Target/RISCV/RISCVOptWInstrs.cpp
    M llvm/lib/Target/RISCV/RISCVRegisterInfo.td
    M llvm/lib/Target/RISCV/RISCVSubtarget.h
    M llvm/lib/Target/SPIRV/SPIRVSubtarget.cpp
    M llvm/lib/Target/SPIRV/SPIRVTargetMachine.cpp
    M llvm/lib/Target/SystemZ/SystemZFeatures.td
    M llvm/lib/Target/TargetMachineC.cpp
    M llvm/lib/Target/WebAssembly/WebAssemblyISD.def
    M llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
    M llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
    M llvm/lib/Target/X86/X86AsmPrinter.cpp
    M llvm/lib/Target/X86/X86ExpandPseudo.cpp
    M llvm/lib/Target/X86/X86FrameLowering.cpp
    M llvm/lib/Target/X86/X86ISelLowering.cpp
    M llvm/lib/Target/X86/X86InstrAVX512.td
    M llvm/lib/Target/X86/X86InstrCompiler.td
    M llvm/lib/Target/X86/X86InstrControl.td
    M llvm/lib/Target/X86/X86InstrInfo.cpp
    M llvm/lib/Target/X86/X86InstrPredicates.td
    M llvm/lib/Target/X86/X86InstrSSE.td
    M llvm/lib/Target/X86/X86RegisterInfo.cpp
    M llvm/lib/Target/X86/X86RegisterInfo.h
    M llvm/lib/Target/X86/X86ScheduleZnver3.td
    M llvm/lib/Target/X86/X86ScheduleZnver4.td
    M llvm/lib/TargetParser/RISCVISAInfo.cpp
    M llvm/lib/TargetParser/Triple.cpp
    M llvm/lib/Transforms/Coroutines/SpillUtils.cpp
    M llvm/lib/Transforms/IPO/AttributorAttributes.cpp
    M llvm/lib/Transforms/IPO/FunctionSpecialization.cpp
    M llvm/lib/Transforms/IPO/GlobalOpt.cpp
    M llvm/lib/Transforms/IPO/LowerTypeTests.cpp
    M llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
    M llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
    M llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
    M llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
    M llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
    M llvm/lib/Transforms/InstCombine/InstCombineInternal.h
    M llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
    M llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
    M llvm/lib/Transforms/Scalar/DFAJumpThreading.cpp
    M llvm/lib/Transforms/Scalar/JumpTableToSwitch.cpp
    M llvm/lib/Transforms/Scalar/JumpThreading.cpp
    M llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
    M llvm/lib/Transforms/Utils/LoopUnroll.cpp
    M llvm/lib/Transforms/Utils/LoopUtils.cpp
    M llvm/lib/Transforms/Utils/LoopVersioning.cpp
    M llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
    M llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp
    M llvm/lib/Transforms/Utils/SimplifyCFG.cpp
    M llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
    M llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    M llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
    M llvm/lib/Transforms/Vectorize/VPlan.h
    M llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
    M llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
    M llvm/lib/Transforms/Vectorize/VPlanUnroll.cpp
    M llvm/lib/Transforms/Vectorize/VectorCombine.cpp
    M llvm/test/Analysis/BasicAA/featuretest.ll
    R llvm/test/Analysis/Lint/get-active-lane-mask.ll
    M llvm/test/Analysis/ScalarEvolution/mul-udiv-folds.ll
    M llvm/test/Analysis/UniformityAnalysis/AMDGPU/MIR/loads-gmir.mir
    A llvm/test/CodeGen/AArch64/GlobalISel/knownbits-shl.mir
    M llvm/test/CodeGen/AArch64/arm64-AdvSIMD-Scalar.ll
    M llvm/test/CodeGen/AArch64/arm64-vcvt.ll
    M llvm/test/CodeGen/AArch64/arm64-vcvtxd_f32_f64.ll
    M llvm/test/CodeGen/AArch64/arm64-zero-cycle-zeroing-fpr.ll
    M llvm/test/CodeGen/AArch64/blr-bti-preserves-operands.mir
    M llvm/test/CodeGen/AArch64/dag-combine-concat-vectors.ll
    M llvm/test/CodeGen/AArch64/expand-select.ll
    M llvm/test/CodeGen/AArch64/ext-narrow-index.ll
    M llvm/test/CodeGen/AArch64/fsh.ll
    A llvm/test/CodeGen/AArch64/local-bounds-single-trap.ll
    A llvm/test/CodeGen/AArch64/lshr-trunc-lshr.ll
    M llvm/test/CodeGen/AArch64/machine-outliner-flags.ll
    A llvm/test/CodeGen/AArch64/machine-outliner-pgo.ll
    M llvm/test/CodeGen/AArch64/neon-dotreduce.ll
    M llvm/test/CodeGen/AArch64/rem-by-const.ll
    M llvm/test/CodeGen/AArch64/sme-agnostic-za.ll
    M llvm/test/CodeGen/AArch64/sve-cmp-folds.ll
    M llvm/test/CodeGen/AArch64/sve-ptest-removal-whilelo.mir
    A llvm/test/CodeGen/AArch64/sve-saddv_64.ll
    M llvm/test/CodeGen/AArch64/sve-streaming-mode-fixed-length-masked-load.ll
    M llvm/test/CodeGen/AArch64/sve-streaming-mode-fixed-length-masked-store.ll
    M llvm/test/CodeGen/AArch64/urem-lkk.ll
    M llvm/test/CodeGen/AArch64/vec-combine-compare-to-bitmask.ll
    M llvm/test/CodeGen/AArch64/vecreduce-add.ll
    A llvm/test/CodeGen/AArch64/verify-imm.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_flat.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_global.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_local.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_load_local_2.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/atomic_store_local.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/bool-legalization.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/bug-legalization-artifact-combiner-dead-def.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/combiner-crash.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/crash-stack-address-O0.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/extractelement-stack-lower.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/extractelement.i128.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/extractelement.i16.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/extractelement.i8.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/fp64-atomics-gfx90a.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/fshl.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/fshr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/insertelement-stack-lower.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/lds-global-value.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.dispatch.ptr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.kernarg.segment.ptr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.queue.ptr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/llvm.amdgcn.workgroup.id.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-constant.96.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-constant32bit.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-d16.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-divergent.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-local.128.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-local.96.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-unaligned.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/load-uniform-in-vgpr.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-uniform.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-zero-and-sign-extending-divergent.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-zero-and-sign-extending-uniform-in-vgpr.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/load-zero-and-sign-extending-uniform.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/lshr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/merge-buffer-stores.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/readanylane-combines.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-load.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-sextload.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-uniform-load-noclobber.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-widen-scalar-loads.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-zextload.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect.mir
    M llvm/test/CodeGen/AMDGPU/GlobalISel/shufflevector.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/smrd.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/store-divergent-addr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/store-local.128.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/store-local.96.ll
    A llvm/test/CodeGen/AMDGPU/GlobalISel/store-uniform-addr.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/unsupported-load.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/widen-i8-i16-scalar-loads.ll
    M llvm/test/CodeGen/AMDGPU/GlobalISel/zextload.ll
    M llvm/test/CodeGen/AMDGPU/and.ll
    A llvm/test/CodeGen/AMDGPU/and.r600.ll
    M llvm/test/CodeGen/AMDGPU/atomics-system-scope.ll
    M llvm/test/CodeGen/AMDGPU/bf16-conversions.ll
    M llvm/test/CodeGen/AMDGPU/bf16.ll
    M llvm/test/CodeGen/AMDGPU/bfi_int.ll
    M llvm/test/CodeGen/AMDGPU/chain-hi-to-lo.ll
    M llvm/test/CodeGen/AMDGPU/copysign-simplify-demanded-bits.ll
    M llvm/test/CodeGen/AMDGPU/dag-preserve-disjoint-flag.ll
    M llvm/test/CodeGen/AMDGPU/ds-alignment.ll
    A llvm/test/CodeGen/AMDGPU/emit-high-vgprs.mir
    M llvm/test/CodeGen/AMDGPU/fcopysign.bf16.ll
    M llvm/test/CodeGen/AMDGPU/fcopysign.f16.ll
    M llvm/test/CodeGen/AMDGPU/fcopysign.f32.ll
    M llvm/test/CodeGen/AMDGPU/fcopysign.f64.ll
    A llvm/test/CodeGen/AMDGPU/fcopysign.gfx11plus.ll
    M llvm/test/CodeGen/AMDGPU/finalizebundle.mir
    M llvm/test/CodeGen/AMDGPU/flat-offset-bug.ll
    M llvm/test/CodeGen/AMDGPU/flat-saddr-atomics.ll
    M llvm/test/CodeGen/AMDGPU/flat-saddr-store.ll
    M llvm/test/CodeGen/AMDGPU/flat-scratch-i8-i16.ll
    M llvm/test/CodeGen/AMDGPU/fneg-modifier-casting.ll
    M llvm/test/CodeGen/AMDGPU/fp-atomics-gfx942.ll
    M llvm/test/CodeGen/AMDGPU/fp64-atomics-gfx90a.ll
    M llvm/test/CodeGen/AMDGPU/frem.ll
    M llvm/test/CodeGen/AMDGPU/fshr.ll
    R llvm/test/CodeGen/AMDGPU/gfx1250-no-scope-cu-stores.ll
    M llvm/test/CodeGen/AMDGPU/gfx1250-scratch-scope-se.ll
    M llvm/test/CodeGen/AMDGPU/global-saddr-load.ll
    M llvm/test/CodeGen/AMDGPU/hard-clauses-load-monitor.mir
    M llvm/test/CodeGen/AMDGPU/i1-to-bf16.ll
    M llvm/test/CodeGen/AMDGPU/integer-select-src-modifiers.ll
    M llvm/test/CodeGen/AMDGPU/lds-size.ll
    M llvm/test/CodeGen/AMDGPU/llc-pipeline-npm.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.addrspacecast.nonnull.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.cooperative.atomic-agent.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.cooperative.atomic-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.cvt.sat.pk.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.dispatch.id.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.perm.pk.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.add.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.and.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.max.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.min.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.or.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.sub.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.umax.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.umin.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.reduce.xor.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.sendmsg.rtn.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.wmma.gfx1250.w32.ll
    M llvm/test/CodeGen/AMDGPU/llvm.amdgcn.wmma.imm.gfx1250.w32.ll
    M llvm/test/CodeGen/AMDGPU/llvm.round.ll
    M llvm/test/CodeGen/AMDGPU/load-range-metadata-sign-bits.ll
    M llvm/test/CodeGen/AMDGPU/loop-prefetch-data.ll
    M llvm/test/CodeGen/AMDGPU/lround.ll
    M llvm/test/CodeGen/AMDGPU/mad_u64_u32.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-barriers.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-fence-mmra-global.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-fence.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-agent.ll
    A llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-cluster.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-lastuse.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-nontemporal.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-singlethread.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-volatile.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-wavefront.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-flat-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-agent.ll
    A llvm/test/CodeGen/AMDGPU/memory-legalizer-global-cluster.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-lastuse.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-nontemporal.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-singlethread.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-volatile.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-wavefront.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-global-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-local-agent.ll
    A llvm/test/CodeGen/AMDGPU/memory-legalizer-local-cluster.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-local-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-local-volatile.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-local-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-agent.ll
    A llvm/test/CodeGen/AMDGPU/memory-legalizer-private-cluster.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-singlethread.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-system.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-wavefront.ll
    M llvm/test/CodeGen/AMDGPU/memory-legalizer-private-workgroup.ll
    M llvm/test/CodeGen/AMDGPU/offset-split-flat.ll
    M llvm/test/CodeGen/AMDGPU/offset-split-global.ll
    M llvm/test/CodeGen/AMDGPU/or.ll
    A llvm/test/CodeGen/AMDGPU/or.r600.ll
    M llvm/test/CodeGen/AMDGPU/packed-fp32.ll
    M llvm/test/CodeGen/AMDGPU/promote-alloca-multidim.ll
    A llvm/test/CodeGen/AMDGPU/promote-alloca-negative-index.ll
    M llvm/test/CodeGen/AMDGPU/promote-alloca-vector-gep-of-gep.ll
    M llvm/test/CodeGen/AMDGPU/read_register.ll
    M llvm/test/CodeGen/AMDGPU/rotr.ll
    A llvm/test/CodeGen/AMDGPU/scalar_to_vector.gfx11plus.ll
    M llvm/test/CodeGen/AMDGPU/scale-offset-flat.ll
    M llvm/test/CodeGen/AMDGPU/scale-offset-scratch.ll
    M llvm/test/CodeGen/AMDGPU/scratch-pointer-sink.ll
    M llvm/test/CodeGen/AMDGPU/store-weird-sizes.ll
    M llvm/test/CodeGen/AMDGPU/trap.ll
    M llvm/test/CodeGen/AMDGPU/vector_range_metadata.ll
    A llvm/test/CodeGen/AMDGPU/vgpr-limit-gfx1250.ll
    A llvm/test/CodeGen/AMDGPU/waitcnt-gfx1250.mir
    A llvm/test/CodeGen/AMDGPU/waitcnt-unscoped.ll
    M llvm/test/CodeGen/AMDGPU/whole-wave-functions.ll
    M llvm/test/CodeGen/AMDGPU/workgroup-id-in-arch-sgprs.ll
    M llvm/test/CodeGen/AMDGPU/xor.ll
    M llvm/test/CodeGen/ARM/frame-chain.ll
    M llvm/test/CodeGen/ARM/inlineasm-fp-half.ll
    M llvm/test/CodeGen/ARM/issue147935-half-convert-libcall-abi.ll
    M llvm/test/CodeGen/DirectX/ContainerData/RootSignature-Parameters.ll
    A llvm/test/CodeGen/DirectX/ContainerData/RootSignature-Target.ll
    A llvm/test/CodeGen/DirectX/rootsignature-valid-textures.ll
    A llvm/test/CodeGen/DirectX/rootsignature-valid-typedbuffer.ll
    A llvm/test/CodeGen/DirectX/rootsignature-validation-textures-fail.ll
    A llvm/test/CodeGen/DirectX/rootsignature-validation-typedbuffer-fail.ll
    A llvm/test/CodeGen/PowerPC/half.ll
    R llvm/test/CodeGen/PowerPC/handle-f16-storage-type.ll
    M llvm/test/CodeGen/PowerPC/patchable-function-entry.ll
    A llvm/test/CodeGen/RISCV/GlobalISel/atomic-cmpxchg.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/double-arith.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/float-arith.ll
    A llvm/test/CodeGen/RISCV/GlobalISel/instruction-select/atomic-cmpxchg-rv32.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/instruction-select/atomic-cmpxchg-rv64.mir
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/fallback.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/ret.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/shufflevector.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/vararg.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/vec-ret-bf16-err.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/vec-ret-f16-err.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/vec-ret.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer-info-validation.mir
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-abs-diff-rv32.mir
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-abs-diff-rv64.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-atomic-cmpxchg-rv32.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-atomic-cmpxchg-rv64.mir
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-fp-arith-f16.mir
    M llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-fp-arith.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-sadde-rv32.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/legalizer/legalize-sadde-rv64.mir
    A llvm/test/CodeGen/RISCV/GlobalISel/rvv/vfadd.ll
    M llvm/test/CodeGen/RISCV/GlobalISel/vararg.ll
    M llvm/test/CodeGen/RISCV/and-negpow2-cmp.ll
    M llvm/test/CodeGen/RISCV/bfloat-mem.ll
    M llvm/test/CodeGen/RISCV/bitextract-mac.ll
    M llvm/test/CodeGen/RISCV/bittest.ll
    M llvm/test/CodeGen/RISCV/byval.ll
    M llvm/test/CodeGen/RISCV/callee-saved-fpr32s.ll
    M llvm/test/CodeGen/RISCV/callee-saved-fpr64s.ll
    M llvm/test/CodeGen/RISCV/callee-saved-gprs.ll
    M llvm/test/CodeGen/RISCV/condops.ll
    M llvm/test/CodeGen/RISCV/ctlz-cttz-ctpop.ll
    M llvm/test/CodeGen/RISCV/double-arith.ll
    M llvm/test/CodeGen/RISCV/double-calling-conv.ll
    M llvm/test/CodeGen/RISCV/double-mem.ll
    M llvm/test/CodeGen/RISCV/early-clobber-tied-def-subreg-liveness.ll
    M llvm/test/CodeGen/RISCV/float-arith.ll
    M llvm/test/CodeGen/RISCV/float-bit-preserving-dagcombines.ll
    M llvm/test/CodeGen/RISCV/float-mem.ll
    M llvm/test/CodeGen/RISCV/fold-addi-loadstore.ll
    M llvm/test/CodeGen/RISCV/global-merge-minsize-smalldata-nonzero.ll
    M llvm/test/CodeGen/RISCV/global-merge-minsize-smalldata-zero.ll
    M llvm/test/CodeGen/RISCV/global-merge-minsize.ll
    M llvm/test/CodeGen/RISCV/global-merge-offset.ll
    M llvm/test/CodeGen/RISCV/global-merge.ll
    M llvm/test/CodeGen/RISCV/half-mem.ll
    M llvm/test/CodeGen/RISCV/hoist-global-addr-base.ll
    A llvm/test/CodeGen/RISCV/machine-outliner-lpad.ll
    M llvm/test/CodeGen/RISCV/mem.ll
    M llvm/test/CodeGen/RISCV/mem64.ll
    M llvm/test/CodeGen/RISCV/push-pop-popret.ll
    M llvm/test/CodeGen/RISCV/qci-interrupt-attr-fpr.ll
    M llvm/test/CodeGen/RISCV/qci-interrupt-attr.ll
    M llvm/test/CodeGen/RISCV/regalloc-last-chance-recoloring-failure.ll
    M llvm/test/CodeGen/RISCV/rv64xtheadbb.ll
    M llvm/test/CodeGen/RISCV/rvv/65704-illegal-instruction.ll
    M llvm/test/CodeGen/RISCV/rvv/access-fixed-objects-by-rvv.ll
    M llvm/test/CodeGen/RISCV/rvv/allone-masked-to-unmasked.ll
    M llvm/test/CodeGen/RISCV/rvv/commutable.ll
    M llvm/test/CodeGen/RISCV/rvv/constant-folding-crash.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-buildvec-of-binop.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-compress-fp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-compress-int.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-deinterleave-load.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-fmaximum.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-fminimum.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-fpext-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-fptrunc-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-insert-subvector-shuffle.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-insert-subvector.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-int-buildvec.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-interleaved-access.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-mask-buildvec.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-masked-load-fp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-masked-load-int.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-deinterleave.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-deinterleave2.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-exact-vlen.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-extract-subvector.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-fp-interleave.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-fp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-int-interleave.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-int.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-reverse.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-rotate.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-vslide1down.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-shuffle-vslide1up.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-store-merge-crash.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-store.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-strided-load-store-asm.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-strided-load-store-negative.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-strided-load-store.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-unaligned.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-vmul-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/fixed-vectors-zvqdotq.ll
    M llvm/test/CodeGen/RISCV/rvv/frm-insert.ll
    M llvm/test/CodeGen/RISCV/rvv/insert-subvector.ll
    M llvm/test/CodeGen/RISCV/rvv/interleave-crash.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-load-fp.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-load-int-e64.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-load-int.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-tama.ll
    M llvm/test/CodeGen/RISCV/rvv/masked-vslide1down-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/mgather-sdnode.ll
    M llvm/test/CodeGen/RISCV/rvv/mscatter-sdnode.ll
    M llvm/test/CodeGen/RISCV/rvv/mutate-prior-vsetvli-avl.ll
    M llvm/test/CodeGen/RISCV/rvv/narrow-shift-extend.ll
    M llvm/test/CodeGen/RISCV/rvv/pr106109.ll
    M llvm/test/CodeGen/RISCV/rvv/rv32-spill-vector-csr.ll
    M llvm/test/CodeGen/RISCV/rvv/rv32-spill-zvlsseg.ll
    M llvm/test/CodeGen/RISCV/rvv/rv64-spill-vector-csr.ll
    M llvm/test/CodeGen/RISCV/rvv/rv64-spill-zvlsseg.ll
    M llvm/test/CodeGen/RISCV/rvv/rvv-out-arguments.ll
    M llvm/test/CodeGen/RISCV/rvv/rvv-peephole-vmerge-masked-vops.ll
    M llvm/test/CodeGen/RISCV/rvv/rvv-peephole-vmerge-vops.ll
    M llvm/test/CodeGen/RISCV/rvv/setcc-integer.ll
    M llvm/test/CodeGen/RISCV/rvv/sf_vfnrclip_x_f_qf.ll
    M llvm/test/CodeGen/RISCV/rvv/sf_vfnrclip_xu_f_qf.ll
    M llvm/test/CodeGen/RISCV/rvv/strided-load-store.ll
    M llvm/test/CodeGen/RISCV/rvv/undef-earlyclobber-chain.ll
    M llvm/test/CodeGen/RISCV/rvv/undef-vp-ops.ll
    M llvm/test/CodeGen/RISCV/rvv/unmasked-ta.ll
    M llvm/test/CodeGen/RISCV/rvv/vaadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vaaddu.ll
    M llvm/test/CodeGen/RISCV/rvv/vadc.ll
    M llvm/test/CodeGen/RISCV/rvv/vadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vaeskf1.ll
    M llvm/test/CodeGen/RISCV/rvv/vand.ll
    M llvm/test/CodeGen/RISCV/rvv/vandn.ll
    M llvm/test/CodeGen/RISCV/rvv/variant-cc.ll
    M llvm/test/CodeGen/RISCV/rvv/vasub.ll
    M llvm/test/CodeGen/RISCV/rvv/vasubu.ll
    M llvm/test/CodeGen/RISCV/rvv/vbrev.ll
    M llvm/test/CodeGen/RISCV/rvv/vbrev8.ll
    M llvm/test/CodeGen/RISCV/rvv/vclmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vclmulh.ll
    M llvm/test/CodeGen/RISCV/rvv/vclz.ll
    M llvm/test/CodeGen/RISCV/rvv/vcpopv.ll
    M llvm/test/CodeGen/RISCV/rvv/vctz.ll
    M llvm/test/CodeGen/RISCV/rvv/vdiv.ll
    M llvm/test/CodeGen/RISCV/rvv/vdivu.ll
    M llvm/test/CodeGen/RISCV/rvv/vector-compress.ll
    M llvm/test/CodeGen/RISCV/rvv/vector-deinterleave-load.ll
    M llvm/test/CodeGen/RISCV/rvv/vector-reassociations.ll
    M llvm/test/CodeGen/RISCV/rvv/vector-tuple-align.ll
    M llvm/test/CodeGen/RISCV/rvv/vfadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vfclass.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-f-x.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-f-xu.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-rtz-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-rtz-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfcvt-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfdiv.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmax.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmerge.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmin.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vfmv.v.f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-f-x.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-f-xu.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-rod-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-rtz-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-rtz-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvt-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfncvtbf16-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfrdiv.ll
    M llvm/test/CodeGen/RISCV/rvv/vfrec7.ll
    M llvm/test/CodeGen/RISCV/rvv/vfrsqrt7.ll
    M llvm/test/CodeGen/RISCV/rvv/vfrsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsgnj.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsgnjn.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsgnjx.ll
    M llvm/test/CodeGen/RISCV/rvv/vfslide1down.ll
    M llvm/test/CodeGen/RISCV/rvv/vfslide1up.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsqrt.ll
    M llvm/test/CodeGen/RISCV/rvv/vfsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwadd.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-f-x.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-f-xu.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-rtz-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-rtz-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-x-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvt-xu-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwcvtbf16-f-f.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vfwsub.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vid.ll
    M llvm/test/CodeGen/RISCV/rvv/viota.ll
    M llvm/test/CodeGen/RISCV/rvv/vl-opt-instrs.ll
    M llvm/test/CodeGen/RISCV/rvv/vl-opt-op-info.ll
    M llvm/test/CodeGen/RISCV/rvv/vle.ll
    M llvm/test/CodeGen/RISCV/rvv/vleff-vlseg2ff-output.ll
    M llvm/test/CodeGen/RISCV/rvv/vleff.ll
    M llvm/test/CodeGen/RISCV/rvv/vloxei-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vloxei.ll
    M llvm/test/CodeGen/RISCV/rvv/vloxseg-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vloxseg-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vlse.ll
    M llvm/test/CodeGen/RISCV/rvv/vlseg-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vlseg-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsegff-rv32-dead.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsegff-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsegff-rv64-dead.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsegff-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsseg-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vlsseg-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vluxei-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vluxei.ll
    M llvm/test/CodeGen/RISCV/rvv/vluxseg-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vluxseg-rv64.ll
    M llvm/test/CodeGen/RISCV/rvv/vmax.ll
    M llvm/test/CodeGen/RISCV/rvv/vmaxu.ll
    M llvm/test/CodeGen/RISCV/rvv/vmerge.ll
    M llvm/test/CodeGen/RISCV/rvv/vmin.ll
    M llvm/test/CodeGen/RISCV/rvv/vminu.ll
    M llvm/test/CodeGen/RISCV/rvv/vmul-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/vmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vmulh.ll
    M llvm/test/CodeGen/RISCV/rvv/vmulhsu.ll
    M llvm/test/CodeGen/RISCV/rvv/vmulhu.ll
    M llvm/test/CodeGen/RISCV/rvv/vmv.v.v-peephole.ll
    M llvm/test/CodeGen/RISCV/rvv/vmv.v.x.ll
    M llvm/test/CodeGen/RISCV/rvv/vnclip.ll
    M llvm/test/CodeGen/RISCV/rvv/vnclipu.ll
    M llvm/test/CodeGen/RISCV/rvv/vnsra.ll
    M llvm/test/CodeGen/RISCV/rvv/vnsrl.ll
    M llvm/test/CodeGen/RISCV/rvv/vor.ll
    M llvm/test/CodeGen/RISCV/rvv/vrem.ll
    M llvm/test/CodeGen/RISCV/rvv/vremu.ll
    M llvm/test/CodeGen/RISCV/rvv/vrev8.ll
    M llvm/test/CodeGen/RISCV/rvv/vrgather.ll
    M llvm/test/CodeGen/RISCV/rvv/vrgatherei16.ll
    M llvm/test/CodeGen/RISCV/rvv/vrol.ll
    M llvm/test/CodeGen/RISCV/rvv/vror.ll
    M llvm/test/CodeGen/RISCV/rvv/vrsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vsadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vsaddu.ll
    M llvm/test/CodeGen/RISCV/rvv/vsbc.ll
    M llvm/test/CodeGen/RISCV/rvv/vselect-vp.ll
    M llvm/test/CodeGen/RISCV/rvv/vsetvli-insert-O0.ll
    M llvm/test/CodeGen/RISCV/rvv/vsetvli-insert-crossbb.ll
    M llvm/test/CodeGen/RISCV/rvv/vsetvli-insert.ll
    M llvm/test/CodeGen/RISCV/rvv/vsetvli-intrinsics.ll
    M llvm/test/CodeGen/RISCV/rvv/vsext.ll
    M llvm/test/CodeGen/RISCV/rvv/vslide1down-constant-vl-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vslide1down.ll
    M llvm/test/CodeGen/RISCV/rvv/vslide1up-constant-vl-rv32.ll
    M llvm/test/CodeGen/RISCV/rvv/vslide1up.ll
    M llvm/test/CodeGen/RISCV/rvv/vsll.ll
    M llvm/test/CodeGen/RISCV/rvv/vsm3me.ll
    M llvm/test/CodeGen/RISCV/rvv/vsm4k.ll
    M llvm/test/CodeGen/RISCV/rvv/vsmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vsra.ll
    M llvm/test/CodeGen/RISCV/rvv/vsrl.ll
    M llvm/test/CodeGen/RISCV/rvv/vssub.ll
    M llvm/test/CodeGen/RISCV/rvv/vssubu.ll
    M llvm/test/CodeGen/RISCV/rvv/vsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vwadd.ll
    M llvm/test/CodeGen/RISCV/rvv/vwadd.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vwaddu.ll
    M llvm/test/CodeGen/RISCV/rvv/vwaddu.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vwmul-sdnode.ll
    M llvm/test/CodeGen/RISCV/rvv/vwmul.ll
    M llvm/test/CodeGen/RISCV/rvv/vwmulsu.ll
    M llvm/test/CodeGen/RISCV/rvv/vwmulu.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsll.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsub.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsub.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsubu.ll
    M llvm/test/CodeGen/RISCV/rvv/vwsubu.w.ll
    M llvm/test/CodeGen/RISCV/rvv/vxor.ll
    M llvm/test/CodeGen/RISCV/rvv/vxrm-insert.ll
    M llvm/test/CodeGen/RISCV/rvv/vzext.ll
    M llvm/test/CodeGen/RISCV/rvv/zvlsseg-zero-vl.ll
    M llvm/test/CodeGen/RISCV/saverestore.ll
    A llvm/test/CodeGen/RISCV/select-zbb.ll
    M llvm/test/CodeGen/RISCV/shadowcallstack.ll
    M llvm/test/CodeGen/RISCV/umulo-128-legalisation-lowering.ll
    M llvm/test/CodeGen/RISCV/vararg.ll
    M llvm/test/CodeGen/RISCV/xcvmem.ll
    M llvm/test/CodeGen/RISCV/xqccmp-callee-saved-gprs.ll
    M llvm/test/CodeGen/RISCV/xqccmp-push-pop-popret.ll
    M llvm/test/CodeGen/RISCV/xqcilsm-memset.ll
    M llvm/test/CodeGen/RISCV/zdinx-boundary-check.ll
    M llvm/test/CodeGen/RISCV/zext-with-load-is-free.ll
    A llvm/test/CodeGen/SPIRV/structurizer/switch-fallthrough.ll
    M llvm/test/CodeGen/Thumb/frame-chain.ll
    M llvm/test/CodeGen/Thumb2/frame-pointer.ll
    M llvm/test/CodeGen/WebAssembly/int-mac-reduction-loops.ll
    M llvm/test/CodeGen/X86/apx/push2-pop2-cfi-seh.ll
    M llvm/test/CodeGen/X86/avx512vl_vnni-intrinsics.ll
    M llvm/test/CodeGen/X86/avx512vnni-intrinsics-upgrade.ll
    M llvm/test/CodeGen/X86/avx512vnni-intrinsics.ll
    A llvm/test/CodeGen/X86/avx_vnni-intrinsics-upgrade.ll
    M llvm/test/CodeGen/X86/avx_vnni-intrinsics.ll
    A llvm/test/CodeGen/X86/ifma-combine-vpmadd52.ll
    M llvm/test/CodeGen/X86/llrint-conv.ll
    M llvm/test/CodeGen/X86/llround-conv.ll
    M llvm/test/CodeGen/X86/lrint-conv-i32.ll
    M llvm/test/CodeGen/X86/lrint-conv-i64.ll
    M llvm/test/CodeGen/X86/lround-conv-i32.ll
    M llvm/test/CodeGen/X86/lround-conv-i64.ll
    M llvm/test/CodeGen/X86/lvi-hardening-ret.ll
    A llvm/test/CodeGen/X86/pr156817.ll
    M llvm/test/CodeGen/X86/pr40289-64bit.ll
    M llvm/test/CodeGen/X86/pr40289.ll
    M llvm/test/CodeGen/X86/stack-folding-int-avxvnni.ll
    A llvm/test/ExecutionEngine/JITLink/RISCV/ELF_reloc_uleb128.s
    M llvm/test/FileCheck/var-scope.txt
    M llvm/test/Instrumentation/BoundsChecking/runtimes.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx512vl_vnni-intrinsics-upgrade.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx512vl_vnni-intrinsics.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx512vnni-intrinsics-upgrade.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx512vnni-intrinsics.ll
    M llvm/test/Instrumentation/MemorySanitizer/X86/avx_vnni-intrinsics.ll
    M llvm/test/LTO/Resolution/X86/unified-lto-check.ll
    A llvm/test/LTO/empty-triple.ll
    R llvm/test/MC/AArch64/local-bounds-single-trap.ll
    M llvm/test/MC/AMDGPU/gfx1250_asm_sop1.s
    M llvm/test/MC/AMDGPU/hsa-gfx1250-v4.s
    M llvm/test/MC/AMDGPU/out-of-range-registers.s
    M llvm/test/MC/AMDGPU/vop3-literal.s
    A llvm/test/MC/COFF/stdin.py
    R llvm/test/MC/COFF/stdin.s
    M llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_sop1.txt
    M llvm/test/MC/Disassembler/AMDGPU/gfx1250_dasm_vop1_dpp8.txt
    M llvm/test/MC/Disassembler/AMDGPU/kernel-descriptor-errors.test
    A llvm/test/MC/Disassembler/RISCV/zclsd-invalid-pair.txt
    A llvm/test/MC/ELF/cfi-sframe-errors.s
    M llvm/test/MC/ELF/cfi-sframe.s
    M llvm/test/MC/RISCV/rv32p-valid.s
    A llvm/test/MC/RISCV/rv32zbkb-aliases-valid.s
    A llvm/test/MC/RISCV/rv64zbkb-aliases-valid.s
    M llvm/test/TableGen/FixedLenDecoderEmitter/conflict.td
    M llvm/test/TableGen/GlobalISelEmitter/HwModes.td
    M llvm/test/TableGen/HwModeBitSet.td
    M llvm/test/TableGen/HwModeEncodeAPInt.td
    M llvm/test/TableGen/HwModeEncodeDecode.td
    M llvm/test/TableGen/HwModeEncodeDecode2.td
    M llvm/test/TableGen/HwModeEncodeDecode3.td
    M llvm/test/TableGen/HwModeSelect.td
    M llvm/test/TableGen/HwModeSubRegs.td
    M llvm/test/TableGen/VarLenEncoderHwModes.td
    M llvm/test/TableGen/x86-fold-tables.inc
    M llvm/test/TableGen/x86-instr-mapping.inc
    A llvm/test/Transforms/Coroutines/coro-alloca-09.ll
    M llvm/test/Transforms/CorrelatedValuePropagation/range.ll
    M llvm/test/Transforms/ExpandFp/AMDGPU/frem-inf.ll
    M llvm/test/Transforms/ExpandFp/AMDGPU/frem.ll
    A llvm/test/Transforms/ExpandFp/AMDGPU/pass-parameters.ll
    A llvm/test/Transforms/FunctionSpecialization/profile-counts.ll
    A llvm/test/Transforms/GlobalOpt/resolve-indirect-ifunc.ll
    M llvm/test/Transforms/InstCombine/2010-11-21-SizeZeroTypeGEP.ll
    M llvm/test/Transforms/InstCombine/freeze-fp-ops.ll
    M llvm/test/Transforms/InstCombine/freeze-landingpad.ll
    M llvm/test/Transforms/InstCombine/freeze.ll
    M llvm/test/Transforms/InstCombine/gep-merge-constant-indices.ll
    M llvm/test/Transforms/InstCombine/gepofconstgepi8.ll
    M llvm/test/Transforms/InstCombine/gepphigep.ll
    M llvm/test/Transforms/InstCombine/getelementptr.ll
    M llvm/test/Transforms/InstCombine/icmp-gep.ll
    M llvm/test/Transforms/InstCombine/load-cmp.ll
    M llvm/test/Transforms/InstCombine/opaque-ptr.ll
    M llvm/test/Transforms/InstCombine/or.ll
    M llvm/test/Transforms/InstCombine/ptrtoint-nullgep.ll
    M llvm/test/Transforms/InstCombine/select-gep.ll
    M llvm/test/Transforms/InstCombine/strcmp-3.ll
    M llvm/test/Transforms/InstCombine/strlen-7.ll
    M llvm/test/Transforms/InstCombine/strlen-8.ll
    M llvm/test/Transforms/InstCombine/trunc-lshr.ll
    M llvm/test/Transforms/InstCombine/vectorgep-crash.ll
    M llvm/test/Transforms/InstSimplify/ConstProp/AMDGPU/wave.reduce.ll
    M llvm/test/Transforms/InstSimplify/ConstProp/active-lane-mask.ll
    M llvm/test/Transforms/JumpTableToSwitch/basic.ll
    M llvm/test/Transforms/JumpThreading/branch-debug-info2.ll
    A llvm/test/Transforms/JumpThreading/simplify-partially-redundant-load-debugloc.ll
    M llvm/test/Transforms/LoopDistribute/scev-inserted-runtime-check.ll
    M llvm/test/Transforms/LoopStrengthReduce/duplicated-phis.ll
    M llvm/test/Transforms/LoopUnroll/AArch64/apple-unrolling.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/conditional-branches-cost.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/predicated-costs.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/scalable-vectorization-cost-tuning.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/sve-epilog-vscale-fixed.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/sve-interleaved-accesses.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/sve2-histcnt.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/transform-narrow-interleave-to-widen-memory-cost.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/transform-narrow-interleave-to-widen-memory-with-wide-ops.ll
    M llvm/test/Transforms/LoopVectorize/AArch64/transform-narrow-interleave-to-widen-memory.ll
    M llvm/test/Transforms/LoopVectorize/PowerPC/optimal-epilog-vectorization.ll
    M llvm/test/Transforms/LoopVectorize/PowerPC/vectorize-bswap.ll
    M llvm/test/Transforms/LoopVectorize/RISCV/gather-scatter-cost.ll
    M llvm/test/Transforms/LoopVectorize/RISCV/riscv-vector-reverse.ll
    M llvm/test/Transforms/LoopVectorize/X86/consecutive-ptr-uniforms.ll
    M llvm/test/Transforms/LoopVectorize/X86/cost-model.ll
    M llvm/test/Transforms/LoopVectorize/X86/fixed-order-recurrence.ll
    M llvm/test/Transforms/LoopVectorize/X86/interleave-cost.ll
    M llvm/test/Transforms/LoopVectorize/X86/pr141968-instsimplifyfolder.ll
    M llvm/test/Transforms/LoopVectorize/X86/pr35432.ll
    M llvm/test/Transforms/LoopVectorize/X86/scatter_crash.ll
    M llvm/test/Transforms/LoopVectorize/consecutive-ptr-uniforms.ll
    M llvm/test/Transforms/LoopVectorize/control-flow.ll
    M llvm/test/Transforms/LoopVectorize/early_exit_store_legality.ll
    M llvm/test/Transforms/LoopVectorize/flags.ll
    M llvm/test/Transforms/LoopVectorize/if-pred-non-void.ll
    M llvm/test/Transforms/LoopVectorize/induction.ll
    M llvm/test/Transforms/LoopVectorize/interleaved-accesses-pred-stores.ll
    M llvm/test/Transforms/LoopVectorize/interleaved-accesses-requiring-scev-predicates.ll
    M llvm/test/Transforms/LoopVectorize/interleaved-accesses.ll
    M llvm/test/Transforms/LoopVectorize/optimal-epilog-vectorization.ll
    M llvm/test/Transforms/LoopVectorize/pr34681.ll
    M llvm/test/Transforms/LoopVectorize/pr37248.ll
    M llvm/test/Transforms/LoopVectorize/pr66616.ll
    M llvm/test/Transforms/LoopVectorize/reduction-inloop.ll
    M llvm/test/Transforms/LoopVectorize/reverse_induction.ll
    M llvm/test/Transforms/LoopVectorize/runtime-check-small-clamped-bounds.ll
    M llvm/test/Transforms/LoopVectorize/scev-predicate-reasoning.ll
    M llvm/test/Transforms/LoopVectorize/single-scalar-cast-minbw.ll
    M llvm/test/Transforms/LoopVectorize/vplan-native-path-inner-loop-with-runtime-checks.ll
    M llvm/test/Transforms/LoopVectorize/vplan-printing.ll
    M llvm/test/Transforms/LoopVersioning/incorrect-phi.ll
    M llvm/test/Transforms/LoopVersioning/wrapping-pointer-versioning.ll
    M llvm/test/Transforms/PGOProfile/prof-inject-existing.ll
    M llvm/test/Transforms/PGOProfile/prof-verify-existing.ll
    M llvm/test/Transforms/PreISelIntrinsicLowering/expand-vp.ll
    A llvm/test/Transforms/SLPVectorizer/X86/original-inst-scheduled-after-copyable.ll
    A llvm/test/Transforms/SimplifyCFG/switch-transformations-no-lut.ll
    M llvm/test/Transforms/VectorCombine/AArch64/shrink-types.ll
    M llvm/test/Transforms/VectorCombine/X86/bitop-of-castops.ll
    A llvm/test/Transforms/WholeProgramDevirt/branch-funnel-profile.ll
    M llvm/test/Verifier/branch-weight.ll
    A llvm/test/tools/UpdateTestChecks/update_test_checks/Inputs/tbaa-semantics-checks.ll
    A llvm/test/tools/UpdateTestChecks/update_test_checks/Inputs/tbaa-semantics-checks.ll.expected
    A llvm/test/tools/UpdateTestChecks/update_test_checks/tbaa-semantics-checks.test
    M llvm/test/tools/llvm-cgdata/empty.test
    M llvm/test/tools/llvm-cgdata/error.test
    M llvm/test/tools/llvm-cgdata/merge-combined-funcmap-hashtree.test
    M llvm/test/tools/llvm-cgdata/merge-funcmap-archive.test
    M llvm/test/tools/llvm-cgdata/merge-funcmap-concat.test
    M llvm/test/tools/llvm-cgdata/merge-funcmap-double.test
    M llvm/test/tools/llvm-cgdata/merge-funcmap-single.test
    M llvm/test/tools/llvm-cgdata/merge-hashtree-archive.test
    M llvm/test/tools/llvm-cgdata/merge-hashtree-concat.test
    M llvm/test/tools/llvm-cgdata/merge-hashtree-double.test
    M llvm/test/tools/llvm-cgdata/merge-hashtree-single.test
    M llvm/test/tools/llvm-gsymutil/X86/elf-dwarf.yaml
    M llvm/test/tools/llvm-mca/X86/AlderlakeP/resources-avxvnni.s
    M llvm/test/tools/llvm-mca/X86/Generic/resources-avxvnni.s
    R llvm/test/tools/llvm-mca/X86/IceLakeServer/resources-avxvnni.s
    M llvm/test/tools/llvm-mca/X86/LunarlakeP/resources-avxvnni.s
    M llvm/test/tools/llvm-mca/X86/SapphireRapids/resources-avxvnni.s
    M llvm/test/tools/llvm-mca/X86/Znver3/resources-avx1.s
    M llvm/test/tools/llvm-mca/X86/Znver3/resources-avx2.s
    M llvm/test/tools/llvm-mca/X86/Znver3/resources-sha.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avx1.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avx2.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avx512bwvl.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-avxvnni.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-sha.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-sse2.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-sse41.s
    M llvm/test/tools/llvm-mca/X86/Znver4/resources-ssse3.s
    A llvm/test/tools/llvm-objcopy/DXContainer/extract-section-basic.test
    A llvm/test/tools/llvm-objcopy/DXContainer/extract-section-errs.test
    A llvm/test/tools/llvm-objcopy/DXContainer/extract-section-headers.test
    M llvm/test/tools/llvm-objcopy/ELF/add-invalid-note.test
    M llvm/test/tools/llvm-objdump/ELF/AMDGPU/kd-gfx1250.s
    A llvm/test/tools/llvm-pdbutil/publics-yaml2pdb.test
    M llvm/test/tools/llvm-profdata/binary-ids-padding.test
    M llvm/test/tools/llvm-profdata/raw-32-bits-be.test
    M llvm/test/tools/llvm-profdata/raw-32-bits-le.test
    M llvm/test/tools/llvm-profdata/raw-64-bits-be.test
    M llvm/test/tools/llvm-profdata/raw-64-bits-le.test
    M llvm/test/tools/llvm-profgen/inline-cs-pseudoprobe.test
    M llvm/test/tools/llvm-profgen/inline-noprobe.test
    M llvm/test/tools/llvm-profgen/inline-pseudoprobe.test
    M llvm/test/tools/llvm-strings/negative-char.test
    M llvm/test/tools/llvm-strings/stdin.test
    M llvm/test/tools/llvm-symbolizer/basic.s
    M llvm/test/tools/llvm-symbolizer/split-dwarf-dwp.test
    M llvm/test/tools/not/disable-symbolization.test
    M llvm/test/tools/sanstats/elf.test
    M llvm/tools/llvm-jitlink/llvm-jitlink.cpp
    M llvm/tools/llvm-lto2/llvm-lto2.cpp
    M llvm/tools/llvm-objcopy/CommonOpts.td
    M llvm/tools/llvm-objcopy/ObjcopyOptions.cpp
    M llvm/tools/llvm-objdump/MachODump.cpp
    M llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
    M llvm/tools/llvm-profgen/ProfileGenerator.cpp
    M llvm/tools/llvm-profgen/ProfileGenerator.h
    M llvm/tools/llvm-split/llvm-split.cpp
    M llvm/tools/sancov/sancov.cpp
    M llvm/unittests/CAS/ProgramTest.cpp
    M llvm/unittests/CodeGen/TestAsmPrinter.cpp
    M llvm/unittests/DebugInfo/DWARF/DWARFExpressionCompactPrinterTest.cpp
    M llvm/unittests/DebugInfo/DWARF/DWARFExpressionCopyBytesTest.cpp
    M llvm/unittests/DebugInfo/PDB/CMakeLists.txt
    A llvm/unittests/DebugInfo/PDB/PublicsStreamTest.cpp
    M llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
    M llvm/unittests/ExecutionEngine/MCJIT/MCJITTestAPICommon.h
    M llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
    M llvm/unittests/MC/AMDGPU/Disassembler.cpp
    M llvm/unittests/MC/DwarfLineTableHeaders.cpp
    M llvm/unittests/MC/MCInstPrinter.cpp
    M llvm/unittests/MC/SystemZ/SystemZAsmLexerTest.cpp
    M llvm/unittests/MC/SystemZ/SystemZMCDisassemblerTest.cpp
    M llvm/unittests/MC/X86/X86MCDisassemblerTest.cpp
    M llvm/unittests/Support/MathExtrasTest.cpp
    M llvm/unittests/Support/VirtualOutputBackendsTest.cpp
    M llvm/unittests/Target/AArch64/MCInstrAnalysisTest.cpp
    M llvm/unittests/Target/LoongArch/MCInstrAnalysisTest.cpp
    M llvm/unittests/Target/RISCV/MCInstrAnalysisTest.cpp
    M llvm/unittests/TargetParser/RISCVISAInfoTest.cpp
    M llvm/unittests/TargetParser/TripleTest.cpp
    M llvm/unittests/Transforms/IPO/LowerTypeTests.cpp
    M llvm/unittests/tools/llvm-exegesis/AArch64/TargetTest.cpp
    M llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp
    M llvm/unittests/tools/llvm-exegesis/PowerPC/TargetTest.cpp
    M llvm/utils/TableGen/Basic/VTEmitter.cpp
    M llvm/utils/TableGen/CodeEmitterGen.cpp
    M llvm/utils/TableGen/Common/CodeGenDAGPatterns.cpp
    M llvm/utils/TableGen/Common/CodeGenHwModes.cpp
    M llvm/utils/TableGen/Common/CodeGenHwModes.h
    M llvm/utils/TableGen/Common/SubtargetFeatureInfo.cpp
    M llvm/utils/TableGen/Common/SubtargetFeatureInfo.h
    M llvm/utils/TableGen/DecoderEmitter.cpp
    M llvm/utils/TableGen/SubtargetEmitter.cpp
    M llvm/utils/UpdateTestChecks/asm.py
    M llvm/utils/UpdateTestChecks/common.py
    M llvm/utils/gn/secondary/bolt/unittests/Core/BUILD.gn
    M llvm/utils/gn/secondary/clang-tools-extra/clang-reorder-fields/BUILD.gn
    M llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/bugprone/BUILD.gn
    M llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/cert/BUILD.gn
    M llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/google/BUILD.gn
    M llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/llvm/BUILD.gn
    M llvm/utils/gn/secondary/clang/include/clang/Basic/BUILD.gn
    M llvm/utils/gn/secondary/clang/lib/Interpreter/BUILD.gn
    M llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Checkers/BUILD.gn
    M llvm/utils/gn/secondary/clang/tools/clang-sycl-linker/BUILD.gn
    M llvm/utils/gn/secondary/clang/tools/libclang/BUILD.gn
    M llvm/utils/gn/secondary/compiler-rt/lib/builtins/sources.gni
    M llvm/utils/gn/secondary/compiler-rt/lib/sanitizer_common/BUILD.gn
    M llvm/utils/gn/secondary/libcxx/include/BUILD.gn
    M llvm/utils/gn/secondary/lld/MachO/BUILD.gn
    M llvm/utils/gn/secondary/lld/tools/lld/BUILD.gn
    M llvm/utils/gn/secondary/lldb/source/Target/BUILD.gn
    M llvm/utils/gn/secondary/lldb/test/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Analysis/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/DebugInfo/GSYM/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Frontend/Directive/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/AArch64/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/AArch64/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/AMDGPU/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/ARM/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/AVR/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/BPF/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/Hexagon/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/Mips/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/RISCV/Disassembler/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/Sparc/MCTargetDesc/BUILD.gn
    M llvm/utils/gn/secondary/llvm/lib/Target/write_target_def_file.gni
    M llvm/utils/gn/secondary/llvm/test/BUILD.gn
    M llvm/utils/gn/secondary/llvm/tools/llvm-offload-wrapper/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/CodeGen/CGPluginTest/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/CodeGen/CGPluginTest/Plugin/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/DebugInfo/LogicalView/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/DebugInfo/PDB/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/Target/ARM/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/Target/RISCV/BUILD.gn
    M llvm/utils/gn/secondary/llvm/unittests/TargetParser/BUILD.gn
    M llvm/utils/gn/secondary/llvm/utils/TableGen/BUILD.gn
    A llvm/utils/lit/lit/DiffUpdater.py
    M llvm/utils/lit/lit/LitConfig.py
    M llvm/utils/lit/lit/TestRunner.py
    M llvm/utils/lit/lit/builtin_commands/cat.py
    M llvm/utils/lit/lit/builtin_commands/diff.py
    A llvm/utils/lit/tests/Inputs/diff-test-update/.gitignore
    A llvm/utils/lit/tests/Inputs/diff-test-update/1.in
    A llvm/utils/lit/tests/Inputs/diff-test-update/2.in
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-bail.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-bail2.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-expected.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-tmp-dir.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/diff-tmp.test
    A llvm/utils/lit/tests/Inputs/diff-test-update/lit.cfg
    A llvm/utils/lit/tests/diff-test-update.py
    M llvm/utils/profcheck-xfail.txt
    M llvm/utils/update_cc_test_checks.py
    M llvm/utils/update_test_checks.py
    M mlir/cmake/modules/AddMLIRPython.cmake
    M mlir/docs/BytecodeFormat.md
    M mlir/docs/DialectConversion.md
    A mlir/docs/Dialects/IRDL.md
    M mlir/examples/standalone/python/CMakeLists.txt
    M mlir/include/mlir/Conversion/GPUToROCDL/GPUToROCDLPass.h
    M mlir/include/mlir/Conversion/Passes.td
    M mlir/include/mlir/Conversion/XeVMToLLVM/XeVMToLLVM.h
    M mlir/include/mlir/Dialect/Affine/Analysis/Utils.h
    M mlir/include/mlir/Dialect/Bufferization/IR/Bufferization.h
    M mlir/include/mlir/Dialect/Bufferization/IR/BufferizationOps.td
    M mlir/include/mlir/Dialect/IRDL/IR/CMakeLists.txt
    M mlir/include/mlir/Dialect/LLVMIR/LLVMAttrDefs.td
    M mlir/include/mlir/Dialect/LLVMIR/LLVMDialect.td
    M mlir/include/mlir/Dialect/Linalg/IR/Linalg.h
    M mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
    M mlir/include/mlir/Dialect/MemRef/IR/MemRef.h
    M mlir/include/mlir/Dialect/MemRef/IR/MemRefOps.td
    M mlir/include/mlir/Dialect/OpenMP/OpenMPClauseOperands.h
    M mlir/include/mlir/Dialect/OpenMP/OpenMPClauses.td
    M mlir/include/mlir/Dialect/OpenMP/OpenMPOps.td
    M mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
    M mlir/include/mlir/Interfaces/CMakeLists.txt
    R mlir/include/mlir/Interfaces/CopyOpInterface.h
    R mlir/include/mlir/Interfaces/CopyOpInterface.td
    M mlir/include/mlir/Interfaces/VectorInterfaces.td
    M mlir/include/mlir/TableGen/Operator.h
    M mlir/include/mlir/Transforms/DialectConversion.h
    M mlir/lib/Bindings/Python/MainModule.cpp
    M mlir/lib/Bindings/Python/Pass.cpp
    M mlir/lib/Bytecode/Reader/BytecodeReader.cpp
    M mlir/lib/CAPI/IR/Pass.cpp
    M mlir/lib/Conversion/GPUToROCDL/LowerGpuOpsToROCDLOps.cpp
    M mlir/lib/Conversion/MPIToLLVM/MPIToLLVM.cpp
    M mlir/lib/Conversion/SCFToOpenMP/SCFToOpenMP.cpp
    M mlir/lib/Conversion/XeGPUToXeVM/XeGPUToXeVM.cpp
    M mlir/lib/Conversion/XeVMToLLVM/XeVMToLLVM.cpp
    M mlir/lib/Dialect/Affine/Analysis/Utils.cpp
    M mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
    M mlir/lib/Dialect/Linalg/Transforms/DecomposeGenericByUnfoldingPermutation.cpp
    M mlir/lib/Dialect/OpenMP/IR/OpenMPDialect.cpp
    M mlir/lib/Dialect/Quant/Transforms/NormalizeQuantTypes.cpp
    M mlir/lib/Dialect/SPIRV/IR/SPIRVOps.cpp
    M mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
    M mlir/lib/Dialect/Transform/IR/TransformOps.cpp
    M mlir/lib/Dialect/Vector/Transforms/VectorDistribute.cpp
    M mlir/lib/Interfaces/CMakeLists.txt
    R mlir/lib/Interfaces/CopyOpInterface.cpp
    M mlir/lib/TableGen/Operator.cpp
    M mlir/lib/Target/LLVMIR/Dialect/LLVMIR/LLVMIRToLLVMTranslation.cpp
    M mlir/lib/Target/LLVMIR/Dialect/LLVMIR/LLVMToLLVMIRTranslation.cpp
    M mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
    M mlir/lib/Target/LLVMIR/Dialect/XeVM/XeVMToLLVMIRTranslation.cpp
    M mlir/lib/Transforms/Utils/DialectConversion.cpp
    M mlir/python/CMakeLists.txt
    R mlir/python/mlir/_mlir_libs/.gitignore
    A mlir/python/mlir/_mlir_libs/_mlir/__init__.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/dialects/pdl.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/dialects/quant.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/dialects/transform/__init__.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/ir.pyi
    A mlir/python/mlir/_mlir_libs/_mlir/passmanager.pyi
    A mlir/python/mlir/_mlir_libs/_mlirExecutionEngine.pyi
    M mlir/python/mlir/ir.py
    M mlir/python/requirements.txt
    M mlir/test/Conversion/SCFToOpenMP/scf-to-openmp.mlir
    M mlir/test/Conversion/XeGPUToXeVM/create_nd_tdesc.mlir
    M mlir/test/Conversion/XeGPUToXeVM/loadstoreprefetch.mlir
    M mlir/test/Conversion/XeGPUToXeVM/materializecast.mlir
    R mlir/test/Conversion/XeGPUToXeVM/update_offset.mlir
    M mlir/test/Conversion/XeVMToLLVM/xevm-to-llvm.mlir
    A mlir/test/Dialect/Affine/loop-fusion-sibling.mlir
    A mlir/test/Dialect/LLVMIR/mmra.mlir
    M mlir/test/Dialect/OpenMP/invalid.mlir
    M mlir/test/Dialect/OpenMP/ops.mlir
    M mlir/test/Dialect/Vector/vector-warp-distribute.mlir
    M mlir/test/Dialect/XeGPU/subgroup-distribute.mlir
    A mlir/test/Target/LLVMIR/Import/metadata-mmra.ll
    A mlir/test/Target/LLVMIR/mmra.mlir
    M mlir/test/Target/LLVMIR/omptarget-wsloop-collapsed.mlir
    M mlir/test/Target/LLVMIR/openmp-llvm.mlir
    M mlir/test/Target/LLVMIR/xevm.mlir
    M mlir/test/lib/Dialect/Test/TestDialect.h
    M mlir/test/lib/Dialect/Test/TestOps.h
    M mlir/test/lib/Dialect/Test/TestOps.td
    M mlir/test/mlir-tblgen/op-decl-and-defs.td
    A mlir/test/python/python_pass.py
    M mlir/tools/mlir-tblgen/OpDefinitionsGen.cpp
    M mlir/unittests/Bytecode/BytecodeTest.cpp
    M offload/cmake/caches/AMDGPULibcBot.cmake
    M offload/test/lit.cfg
    A offload/test/offloading/fortran/dtype-char-array-map-2.f90
    A offload/test/offloading/fortran/dtype-char-array-map.f90
    M offload/unittests/OffloadAPI/common/Environment.cpp
    M offload/unittests/OffloadAPI/common/Fixtures.hpp
    M openmp/device/CMakeLists.txt
    M openmp/device/include/DeviceTypes.h
    M openmp/device/src/Parallelism.cpp
    M orc-rt/include/CMakeLists.txt
    M orc-rt/include/orc-rt-c/WrapperFunction.h
    M orc-rt/include/orc-rt/AllocAction.h
    M orc-rt/include/orc-rt/MemoryFlags.h
    M orc-rt/include/orc-rt/SPSAllocAction.h
    A orc-rt/include/orc-rt/SPSMemoryFlags.h
    A orc-rt/include/orc-rt/SPSWrapperFunctionBuffer.h
    M orc-rt/include/orc-rt/ScopeExit.h
    M orc-rt/include/orc-rt/SimplePackedSerialization.h
    M orc-rt/include/orc-rt/WrapperFunction.h
    M orc-rt/include/orc-rt/bind.h
    M orc-rt/include/orc-rt/move_only_function.h
    M orc-rt/unittests/CMakeLists.txt
    M orc-rt/unittests/ErrorTest.cpp
    M orc-rt/unittests/MemoryFlagsTest.cpp
    A orc-rt/unittests/SPSAllocActionTest.cpp
    A orc-rt/unittests/SPSMemoryFlagsTest.cpp
    A orc-rt/unittests/SPSWrapperFunctionBufferTest.cpp
    M orc-rt/unittests/SPSWrapperFunctionTest.cpp
    M orc-rt/unittests/ScopeExitTest.cpp
    M orc-rt/unittests/SimplePackedSerializationTest.cpp
    M orc-rt/unittests/SimplePackedSerializationTestUtils.h
    M orc-rt/unittests/move_only_function-test.cpp
    M utils/bazel/llvm-project-overlay/libc/BUILD.bazel
    M utils/bazel/llvm-project-overlay/lldb/source/Plugins/BUILD.bazel
    M utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
    M utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
    M utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel

  Log Message:
  -----------
  Rename to MappedFileRegionArena and update implementation

Created using spr 1.3.6


Compare: https://github.com/llvm/llvm-project/compare/3151a3514096...d725101c3104

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