LLVM/project bb75638clang/include/clang/Analysis/Analyses/LifetimeSafety Loans.h, clang/lib/Analysis/LifetimeSafety Loans.cpp Checker.cpp

[LifetimeSafety][NFC] Refactor AccessPath and Loan representations
 (#180369)

This patch refactors the internal representations of `AccessPath` and
`Loan` to support path elements, preparing for field-sensitive and
interior-sensitive lifetime tracking.
* Introduces `PathElement` representing a field or interior dereference.
* Refactors `AccessPath` to contain a base and a list of `PathElement`s.
* Updates `Loan` and `LoanManager` to use the new `AccessPath`
structure.

---
Old PR description:

Refactor loan representation to use structured access paths, enabling
more precise borrow tracking and detection of use-after-invalidation.

Previously, loans were associated only with top-level storage (e.g., a
variable `x`, temporary `t`). This was insufficient for reasoning about

    [32 lines not shown]
DeltaFile
+156-70clang/include/clang/Analysis/Analyses/LifetimeSafety/Loans.h
+45-21clang/lib/Analysis/LifetimeSafety/Loans.cpp
+17-10clang/lib/Analysis/LifetimeSafety/Checker.cpp
+3-5clang/lib/Analysis/LifetimeSafety/FactsGenerator.cpp
+221-1064 files

FreeBSD/ports 34c5ae4multimedia Makefile, multimedia/hdrprobe distinfo Makefile.crates

multimedia/hdrprobe: Add port: Fast HDR, HDR10+, and Dolby Vision metadata inspector

hdrprobe is a single native binary that answers one question quickly:
what HDR and dynamic metadata does this file actually carry?

It does the work that normally requires mediainfo, ffprobe,
dovi_tool, and hdr10plus_tool together
without launching subprocesses in the hot path, writing temp files,
or extracting a full RPU stream to disk first.
It memory-maps the file and reads only the bytes it needs,
so it stays fast regardless of file size.

WWW: https://github.com/matthane/hdrprobe

PR:             296984
Reported by:    Michiel van Baak Jansen <michiel at vanbaak.eu> (new maintainer)
DeltaFile
+125-0multimedia/hdrprobe/distinfo
+61-0multimedia/hdrprobe/Makefile.crates
+18-0multimedia/hdrprobe/Makefile
+9-0multimedia/hdrprobe/pkg-descr
+1-0multimedia/Makefile
+214-05 files

LLVM/project 3deca05llvm/lib/Target/AArch64 AArch64RegisterInfo.td, llvm/test/TableGen aarch64-register-info-stats.td

[AArch64] Remove unused GPR32arg register class (NFC) (#211778)

GPR32arg was added alongside GPR64arg in fcbec02ea6fb, but has no users
outside the register info generated by TableGen.

Assisted-by: codex
DeltaFile
+2-2llvm/test/TableGen/aarch64-register-info-stats.td
+0-1llvm/lib/Target/AArch64/AArch64RegisterInfo.td
+2-32 files

LLVM/project 4e51478flang/docs FlangDriver.md, flang/examples CMakeLists.txt

[flang] Add an example plugin exercising the HLFIR pipeline extension points

The HLFIR extension points, the config augmentor registry and fir-opt's symbol
export exist to let an out-of-tree MLIR pass run while the HLFIR intrinsic
operations (hlfir.sum, hlfir.matmul, ...) are still present. None of that was
covered end to end, and there was no worked example of how to use it.

Add flang/examples/HLFIRPipelinePlugin, modelled on PrintFlangFunctionNames. It
contributes a pass that prints the HLFIR operations still present in the
module, tagged with the pipeline position it was inserted at, and exposes it
through both plugin entry points: a static initializer calling
fir::registerPassPipelineConfigCallback for the `flang -fc1 -load` path, and
mlirGetPassPluginInfo so fir-opt can load it with --load-pass-plugin.

Nothing is linked into the shared object: MLIR, FIR and flang symbols resolve
against the host tool, which is what export_executable_symbols_for_plugins on
flang and fir-opt provides. Removing the fir-opt export drops it from ~105k
exported dynamic symbols to one and makes --load-pass-plugin fail to load.


    [7 lines not shown]
DeltaFile
+115-0flang/examples/HLFIRPipelinePlugin/HLFIRPipelinePlugin.cpp
+53-0flang/test/Examples/hlfir-pipeline-plugin.f90
+36-0flang/test/Examples/fir-opt-pass-plugin.fir
+17-0flang/docs/FlangDriver.md
+15-0flang/examples/HLFIRPipelinePlugin/CMakeLists.txt
+1-0flang/examples/CMakeLists.txt
+237-01 files not shown
+238-07 files

LLVM/project c827a8cflang/docs FlangDriver.md, flang/include/flang/Optimizer/Passes Pipelines.h

[flang] Add a pass-pipeline config-augmentor hook for -load'ed plugins

The HLFIR-to-FIR pass pipeline exposes extension points on
MLIRToLLVMPassPipelineConfig, but that config is built inside the frontend, so
a -load'ed plugin has no way to reach it and register passes.
registerDefaultInlinerPass is the only augmentor today, and it is wired in by
hand.

Add a global registry of config augmentors:

  * fir::registerPassPipelineConfigCallback(cb) appends a callback, to be
    called from a plugin's static initializer at -load time.
  * fir::invokePassPipelineConfigCallbacks(config) runs them on the config.

This mirrors what flang already does for -load'ed plugin actions via
FrontendPluginRegistry: a process-global, append-only registry populated from
static initializers, which run before any compilation begins.

Both code generation entry points invoke the callbacks after building their

    [11 lines not shown]
DeltaFile
+97-1flang/unittests/Optimizer/PassPipelineTest.cpp
+34-0flang/docs/FlangDriver.md
+17-0flang/lib/Optimizer/Passes/Pipelines.cpp
+11-0flang/include/flang/Optimizer/Passes/Pipelines.h
+6-0flang/lib/Frontend/FrontendActions.cpp
+165-15 files

LLVM/project 47fffa4flang/docs FlangDriver.md, flang/include/flang/Tools CrossToolHelpers.h

[flang] Add HLFIR-to-FIR pass pipeline extension points

The FIR optimizer extension points (FIROptEarly, FIRInliner, FIROptLast) all
run after HLFIR has been lowered to FIR, so the HLFIR intrinsic operations
(hlfir.sum, hlfir.matmul, ...) are gone by the time they run. Transformations
that need to see those operations -- for example automatic differentiation via
Enzyme-MLIR -- have nowhere to attach.

Add two extension points to createHLFIRToFIRPassPipeline:

  * HLFIROptEarly, at the start of the pipeline, before any HLFIR
    simplification or inlining.
  * HLFIROptLast, just before createLowerHLFIRIntrinsics.

Drivers register passes through registerHLFIROptEarlyEPCallbacks and
registerHLFIROptLastEPCallbacks on MLIRToLLVMPassPipelineConfig. The invoke
methods are const so they can be called on the const config the HLFIR pipeline
receives. With no callbacks registered the pipeline is unchanged.


    [5 lines not shown]
DeltaFile
+223-0flang/unittests/Optimizer/PassPipelineTest.cpp
+33-0flang/include/flang/Tools/CrossToolHelpers.h
+25-0flang/docs/FlangDriver.md
+8-0flang/lib/Optimizer/Passes/Pipelines.cpp
+2-0flang/unittests/Optimizer/CMakeLists.txt
+291-05 files

LLVM/project 5c0a721lldb/include/lldb/Target OperatingSystem.h

[lldb][NFC] Add documentation for OperatingSystem methods (#210968)
DeltaFile
+5-0lldb/include/lldb/Target/OperatingSystem.h
+5-01 files

LLVM/project 30a1b34orc-rt/include/orc-rt StringExtras.h, orc-rt/test/unit StringExtrasTest.cpp CMakeLists.txt

[orc-rt] Add StringExtras::join from llvm/adt and tests (#212179)

Tests are appropriate to the use cases that will follow in a PR to
follow.
DeltaFile
+57-0orc-rt/include/orc-rt/StringExtras.h
+36-0orc-rt/test/unit/StringExtrasTest.cpp
+1-0orc-rt/test/unit/CMakeLists.txt
+94-03 files

LLVM/project f91647allvm/utils/release test-release.sh

[llvm][release] Build openmp as runtime in test-release.sh (#212111)

`test_release.sh` tries to build `openmp` as a project, which breaks the
build:

```
CMake Error at CMakeLists.txt:155 (message):

  Support for the LLVM_ENABLE_PROJECTS=openmp build mode has been removed.
  Please switch to the bootstrapping build

      cmake -S <llvm-project>/llvm -B build -DLLVM_ENABLE_PROJECTS=clang -DLLVM_ENABLE_RUNTIMES=openmp

  or to the runtimes default build

      cmake -S <llvm-project>/runtimes -B build -DLLVM_ENABLE_RUNTIMES=openmp
```

This patch switches it to a runtime to match.

Tested on `x86_64-pc-linux-gnu`.
DeltaFile
+1-1llvm/utils/release/test-release.sh
+1-11 files

LLVM/project 102f572llvm/unittests/CAS OnDiskCASLoggerTest.cpp

[llvm][cas] Fix OnDiskCASLoggerTest.cpp compilation on NetBSD (#212113)

`CAS/OnDiskCASLoggerTest.cpp` doesn't compile on NetBSD/amd64:

```
In member function `virtual void OnDiskCASLoggerTest_MultiProcess_Test::TestBody()':
llvm/unittests/CAS/OnDiskCASLoggerTest.cpp:230:19: error: reference to `Wait' is ambiguous
  230 |     auto Result = Wait(PI, /*Timeout=*/15, &Error);
      |                   ^~~~
In file included from llvm/unittests/CAS/OnDiskCASLoggerTest.cpp:15:
llvm/include/llvm/Support/Program.h:212:22: note: candidates are: `llvm::sys::ProcessInfo llvm::sys::Wait(const llvm::sys::ProcessInfo&, std::optional<unsigned int>, std::string*, std::optional<llvm::sys::ProcessStatistics>*, bool)'
  212 | LLVM_ABI ProcessInfo Wait(
      |                      ^~~~
In file included from llvm/include/llvm/Support/RWMutex.h:17,
                 from llvm/include/llvm/Support/ThreadPool.h:21,
                 from llvm/unittests/CAS/OnDiskCASLoggerTest.cpp:16:
llvm/include/llvm/Support/Threading.h:60:40: note:                 `llvm::InitStatus llvm::Wait'
   60 |   enum InitStatus { Uninitialized = 0, Wait = 1, Done = 2 };
      |                                        ^~~~

    [4 lines not shown]
DeltaFile
+1-1llvm/unittests/CAS/OnDiskCASLoggerTest.cpp
+1-11 files

FreeBSD/ports 56d475bmultimedia/dovi_tool distinfo Makefile.crates

multimedia/dovi_tool: Update to 2.3.3

Changelog: https://github.com/quietvoid/dovi_tool/releases/tag/2.3.3

PR:             297011
Reported by:    Michiel van Baak Jansen <michiel at vanbaak.eu> (maintainer)
DeltaFile
+349-297multimedia/dovi_tool/distinfo
+173-147multimedia/dovi_tool/Makefile.crates
+1-2multimedia/dovi_tool/Makefile
+523-4463 files

LLVM/project b66306cllvm/lib/CodeGen/SelectionDAG DAGCombiner.cpp SelectionDAGBuilder.cpp, llvm/test/CodeGen/AArch64 select_fmf.ll

[SelectionDAG] Stop forming minnum/maxnum in SDAGBuilder (#187738)

The right place to form these is DAGCombine, not SDAGBuilder. This
removes the SPNB_RETURNS_ANY case, the SPNB_RETURNS_OTHER is left to a
followup. We need to propagate FMF flags in a few more places to make
this work.
DeltaFile
+107-254llvm/test/CodeGen/AMDGPU/select-nsz-known-values-to-fmin-fmax.ll
+22-22llvm/test/CodeGen/AMDGPU/fmin_legacy.f16.ll
+22-22llvm/test/CodeGen/AMDGPU/fmax_legacy.f16.ll
+18-10llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+10-10llvm/test/CodeGen/AArch64/select_fmf.ll
+6-14llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+185-3323 files not shown
+191-3389 files

LLVM/project b46bcf4llvm/include/llvm/IR RuntimeLibcalls.td, llvm/lib/Target/MSP430 MSP430Subtarget.cpp

MSP430: Mark more generic libgcc functions as available (#210962)

The generic soft-float, conversion, comparison and integer helper
routines (__addsf3, __divli's __divsi3, __ashlsi3, ...) exist in the MSP430
libgcc port alongside the preferred __mspabi_* variants. They were previously
removed to force selection of the __mspabi_* names, back when only one
implementation per libcall could be recorded.

Stop hiding them: only __lshrsi3 stays excluded, since the MSP430 libgcc
port provides the 32-bit logical right shift solely under __mspabi_srll and
never defines a generic __lshrsi3.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+67-0llvm/lib/Target/MSP430/MSP430Subtarget.cpp
+4-11llvm/include/llvm/IR/RuntimeLibcalls.td
+71-112 files

LLVM/project 0cc7159compiler-rt/lib/sanitizer_common/tests sanitizer_procmaps_test.cpp

[sanitizer_common][tests] Skip MemoryMapping::ParseUnixMemoryProfile … (#212114)

…etc. on NetBSD

The `Sanitizer-x86_64-Test` test doesn't link on NetBSD/amd64 10.1:

```
/usr/bin/ld: /usr/bin/ld: DWARF error: invalid or unhandled FORM value: 0x25
SANITIZER_TEST_OBJECTS.sanitizer_procmaps_test.cpp.x86_64.o: in function `__sanitizer::MemoryMapping_ParseUnixMemoryProfile_Test::TestBody()':
sanitizer_procmaps_test.cpp:(.text._ZN11__sanitizer41MemoryMapping_ParseUnixMemoryProfile_Test8TestBodyEv+0x52): undefined reference to `__sanitizer::ParseUnixMemoryProfile(void (*)(unsigned long, unsigned long, bool, unsigned long*), unsigned long*, char*, unsigned long)'
/usr/bin/ld: SANITIZER_TEST_OBJECTS.sanitizer_procmaps_test.cpp.x86_64.o: in function `__sanitizer::MemoryMapping_ParseUnixMemoryProfileTruncated_Test::TestBody()':
sanitizer_procmaps_test.cpp:(.text._ZN11__sanitizer50MemoryMapping_ParseUnixMemoryProfileTruncated_Test8TestBodyEv+0x17a): undefined reference to `__sanitizer::ParseUnixMemoryProfile(void (*)(unsigned long, unsigned long, bool, unsigned long*), unsigned long*, char*, unsigned long)'

```

Fixed by skipping the affected subtest.

Tested on `amd64-pc-netbsd10.1` and `x86_64-pc-linux-gnu`.
DeltaFile
+3-0compiler-rt/lib/sanitizer_common/tests/sanitizer_procmaps_test.cpp
+3-01 files

OpenBSD/ports ipJDNevsysutils/py-pipx distinfo Makefile

   update to py3-pipx-1.16.3
VersionDeltaFile
1.25+2-2sysutils/py-pipx/distinfo
1.31+1-1sysutils/py-pipx/Makefile
+3-32 files

OpenBSD/ports 1OZfxwMwww/hiawatha distinfo Makefile, www/hiawatha/patches patch-CMakeLists_txt patch-config_hiawatha_conf_in

   update to hiawatha-12.3
VersionDeltaFile
1.59+2-2www/hiawatha/distinfo
1.11+1-1www/hiawatha/patches/patch-CMakeLists_txt
1.83+1-1www/hiawatha/Makefile
1.10+1-1www/hiawatha/patches/patch-config_hiawatha_conf_in
+5-54 files

OpenBSD/ports vQ2XXxAwww/anubis distinfo Makefile

   update to anubis-1.26.2
VersionDeltaFile
1.19+2-2www/anubis/distinfo
1.21+1-1www/anubis/Makefile
+3-32 files

LLVM/project 1fc03feclang/include/clang/Analysis/Analyses/LifetimeSafety Loans.h Facts.h, clang/lib/Analysis/LifetimeSafety LoanPropagation.cpp Facts.cpp

[LifetimeSafety] Support field-sensitivity in lifetime tracking

This patch enables field-sensitivity when tracking lifetimes of nested objects.

- FactsGenerator now generates `PathElement::getField` for `MemberExpr` accesses, mapping fields to loans.
- LoanPropagation now propagates field paths along flow facts, appending fields to base loans.
- Removes false-positive warnings in `invalidations.cpp` where modifications to one field were incorrectly reported as invalidating iterators/pointers to another field.
- Adds comprehensive unit tests checking nested field access and placeholder fields.

TAG=agy
CONV=2cfd8d00-18d7-4a03-8d78-2aba2f9a8f23
DeltaFile
+106-36clang/lib/Analysis/LifetimeSafety/LoanPropagation.cpp
+72-30clang/unittests/Analysis/LifetimeSafetyTest.cpp
+82-10clang/test/Sema/LifetimeSafety/invalidations.cpp
+29-0clang/include/clang/Analysis/Analyses/LifetimeSafety/Loans.h
+15-11clang/lib/Analysis/LifetimeSafety/Facts.cpp
+24-0clang/include/clang/Analysis/Analyses/LifetimeSafety/Facts.h
+328-874 files not shown
+362-9510 files

LLVM/project 5571300clang/lib/Analysis/LifetimeSafety Checker.cpp MovedLoans.cpp

[LifetimeSafety][NFC] Update Checker to use prefix comparison interfaces

This patch switches the Checker's expiry and invalidation checks to use `AccessPath::isPrefixOf` instead of equality (`==`).

Since all generated access paths are currently empty, `isPrefixOf` is behaviorally identical to `==` (NFC). This prepares the checker to handle nested paths (fields and container interiors) in subsequent commits.

TAG=agy
CONV=2cfd8d00-18d7-4a03-8d78-2aba2f9a8f23
DeltaFile
+3-3clang/lib/Analysis/LifetimeSafety/Checker.cpp
+1-1clang/lib/Analysis/LifetimeSafety/MovedLoans.cpp
+4-42 files

LLVM/project 5278addclang/lib/Analysis/LifetimeSafety FactsGenerator.cpp Loans.cpp, clang/test/Sema/LifetimeSafety invalidations.cpp

[LifetimeSafety] Support container interior paths and invalidations

This patch completes the implementation of path-sensitive lifetime tracking by supporting container interior paths (`.*`) and deep-nested invalidation.

- Enables `PathElement::getInterior` generation in `FactsGenerator` for GSL Owners and Views (e.g. member functions, function parameters, lambda captures).
- Removes bypass checks in `FactsGenerator::handleInvalidatingCall` to track container invalidation on fields.
- Updates `Checker` to use strict prefix comparison (`isStrictPrefixOf`) for container invalidations, ensuring invalidation of container contents (interior) correctly invalidates iterators but not other sibling fields.
- Reorganizes tests in `invalidations.cpp` by resolving duplicates and distributing them logically.
- Updates unit tests and sema tests with correct expectations for interior paths.

TAG=agy
CONV=2cfd8d00-18d7-4a03-8d78-2aba2f9a8f23
DeltaFile
+243-64clang/test/Sema/LifetimeSafety/invalidations.cpp
+228-67clang/unittests/Analysis/LifetimeSafetyTest.cpp
+30-10clang/lib/Analysis/LifetimeSafety/FactsGenerator.cpp
+9-4clang/test/Sema/LifetimeSafety/Inputs/lifetime-analysis.h
+12-0clang/lib/Analysis/LifetimeSafety/Loans.cpp
+9-2clang/lib/Analysis/LifetimeSafety/Checker.cpp
+531-1476 files

LLVM/project a4459a6clang/include/clang/Analysis/Analyses/LifetimeSafety Loans.h, clang/lib/Analysis/LifetimeSafety Loans.cpp Checker.cpp

[LifetimeSafety][NFC] Refactor AccessPath and Loan representations

This patch refactors the internal representations of `AccessPath` and `Loan` to support path elements, preparing for field-sensitive and interior-sensitive lifetime tracking.

- Introduces `PathElement` representing a field or interior dereference.
- Refactors `AccessPath` to contain a base and a list of `PathElement`s.
- Updates `Loan` and `LoanManager` to use the new `AccessPath` structure.
- Refactors debug dump formatting to output path elements if present.
- Updates Checker and FactsGenerator to compile with the new interfaces, keeping logic behaviorally identical (NFC).

TAG=agy
CONV=2cfd8d00-18d7-4a03-8d78-2aba2f9a8f23
DeltaFile
+156-70clang/include/clang/Analysis/Analyses/LifetimeSafety/Loans.h
+45-21clang/lib/Analysis/LifetimeSafety/Loans.cpp
+17-10clang/lib/Analysis/LifetimeSafety/Checker.cpp
+3-5clang/lib/Analysis/LifetimeSafety/FactsGenerator.cpp
+221-1064 files

OpenBSD/ports 2bpeuXwwww/libmicrohttpd distinfo Makefile

   update to libmicrohttpd-1.0.6
VersionDeltaFile
1.16+2-2www/libmicrohttpd/distinfo
1.20+1-1www/libmicrohttpd/Makefile
+3-32 files

FreeBSD/ports 8c904daaudio/headsetcontrol Makefile distinfo

audio/headsetcontrol: Update to 4.0.0

Changes:        https://github.com/Sapd/HeadsetControl/releases/tag/4.0.0

PR:             296996
Reported by:    Alexander Vereeken <avereeken at fastmail.de> (maintainer)
DeltaFile
+7-2audio/headsetcontrol/Makefile
+3-3audio/headsetcontrol/distinfo
+10-52 files

OpenBSD/ports fb4KYr2www/py-aiohappyeyeballs distinfo Makefile

   update to py3-aiohappyeyeballs-2.7.1
VersionDeltaFile
1.7+2-2www/py-aiohappyeyeballs/distinfo
1.10+1-1www/py-aiohappyeyeballs/Makefile
+3-32 files

OpenBSD/ports RCsfrUrtelephony/sngrep distinfo Makefile

   update to sngrep-1.8.4
VersionDeltaFile
1.11+2-2telephony/sngrep/distinfo
1.13+1-1telephony/sngrep/Makefile
+3-32 files

FreeBSD/src 5c1461alib/libsysdecode flags.c

libsysdecode: use local sysdecode.h

Replace <sysdecode.h> with "sysdecode.h" so local builds use the in-tree header
in lib/libsysdecode instead of a stale installed copy in /usr/include, avoiding
build failures after updating sysdecode.h.

Signed-off-by:  Ishan Agrawal <iagrawal9990 at gmail.com>
Sponsored-by:   Google LLC (GSoC 2026)
Reviewed by:    kp
Pull-Request:   https://github.com/freebsd/freebsd-src/pull/2338
DeltaFile
+1-1lib/libsysdecode/flags.c
+1-11 files

LLVM/project ed3470flld/ELF Relocations.cpp

[ELF] Fix -Wc++11-narrowing error in addPltEntry (#212185)

PR #212161 passes the `uint8_t isPreemptible : 1` bit-field straight
into a braced-init-list slot whose parameter type is `bool`.
Older clang (<20 ?) incorrectly rejects it.

```
error: non-constant-expression cannot be narrowed from type 'uint8_t' (aka 'unsigned char') to 'bool' in initializer list [-Wc++11-narrowing]
```
DeltaFile
+5-4lld/ELF/Relocations.cpp
+5-41 files

OpenBSD/src Q8Gpx6husr.sbin/smtpd ca.c smtpd.h

   remove unused ca_X509_verify()

   Prompted by Frank Denis finding that the CRL argument is unused.
   ok martijn@ op@
VersionDeltaFile
1.50+1-44usr.sbin/smtpd/ca.c
1.696+1-2usr.sbin/smtpd/smtpd.h
+2-462 files

OpenBSD/ports 8RYnQfVdatabases/pgbackrest Makefile distinfo, databases/pgbackrest/pkg PLIST

   Update pgbackrest 2.58.0 -> 2.59.0
   Changelog: https://github.com/pgbackrest/pgbackrest/releases/tag/release%2F2.59.0
VersionDeltaFile
1.2+11-0databases/pgbackrest/pkg/PLIST
1.30+6-4databases/pgbackrest/Makefile
1.23+2-2databases/pgbackrest/distinfo
+19-63 files

LLVM/project 820b5cbllvm/lib/Target/AArch64 AArch64RegisterInfo.td, llvm/test/TableGen aarch64-register-info-stats.td

[AArch64] Mark ZT0 register class as non-allocatable (#211750)

ZT0 is not available for register allocation, define it with the other
non-allocatable SME register classes and avoid an unnecessary pressure
set.

Assisted-by: codex
DeltaFile
+5-4llvm/lib/Target/AArch64/AArch64RegisterInfo.td
+1-1llvm/test/TableGen/aarch64-register-info-stats.td
+6-52 files