LLVM/project 788f820clang/lib/CodeGen CGDebugInfo.cpp

comment

Created using spr 1.3.7
DeltaFile
+5-1clang/lib/CodeGen/CGDebugInfo.cpp
+5-11 files

LLVM/project 1aa48c3mlir/include/mlir/Bindings/Python IRCore.h, mlir/lib/Bindings/Python MainModule.cpp IRTypes.cpp

works
DeltaFile
+2-30mlir/lib/Bindings/Python/MainModule.cpp
+20-11mlir/test/python/lib/PythonTestModuleNanobind.cpp
+19-0mlir/include/mlir/Bindings/Python/IRCore.h
+3-15mlir/lib/Bindings/Python/IRTypes.cpp
+1-13mlir/lib/Bindings/Python/IRAttributes.cpp
+5-2mlir/python/CMakeLists.txt
+50-714 files not shown
+54-7810 files

LLVM/project 42dfff7clang/lib/CIR/CodeGen CIRGenModule.cpp CIRGenException.cpp, clang/lib/CIR/Dialect/IR CIRDialect.cpp

[CIR] Implement function personality attribute and its lowering
DeltaFile
+17-4clang/lib/CIR/CodeGen/CIRGenModule.cpp
+18-2clang/lib/CIR/CodeGen/CIRGenException.cpp
+3-16clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+19-0clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+6-3clang/test/CIR/Lowering/eh-inflight.cir
+8-0clang/test/CIR/IR/func.cir
+71-252 files not shown
+77-268 files

LLVM/project 1d8a51ecompiler-rt/lib/sanitizer_common/symbolizer/scripts build_symbolizer.sh

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+2-0compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
+2-01 files

LLVM/project afc9f9aclang/test/DebugInfo/Generic cfi-icall-normalize2-debuginfo.c cfi-icall-generalize-debuginfo.c

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+89-88clang/test/DebugInfo/Generic/cfi-icall-normalize2-debuginfo.c
+88-86clang/test/DebugInfo/Generic/cfi-icall-generalize-debuginfo.c
+50-49clang/test/DebugInfo/Generic/ubsan-function-debuginfo.c
+30-28clang/test/DebugInfo/Generic/bounds-checking-debuginfo.c
+29-28clang/test/DebugInfo/Generic/cfi-check-fail-debuginfo.c
+19-18clang/test/DebugInfo/Generic/unsigned-promotion-debuginfo.c
+305-2972 files not shown
+329-3078 files

LLVM/project 8e999e3clang/tools/driver cc1_main.cpp, llvm/include/llvm/Support IOSandbox.h

[llvm][clang] Sandbox filesystem reads (#165350)

This PR introduces a new mechanism for enforcing a sandbox around
filesystem reads coming from the compiler. A fatal error is raised
whenever the `llvm::sys::fs`, `llvm::MemoryBuffer::getFile*()` APIs get
used directly instead of going through the "blessed" virtual interface
of `llvm::vfs::FileSystem`.
DeltaFile
+42-3llvm/lib/Support/Windows/Path.inc
+44-0llvm/lib/Support/Unix/Path.inc
+42-0llvm/include/llvm/Support/IOSandbox.h
+36-2llvm/lib/Support/VirtualFileSystem.cpp
+18-9clang/tools/driver/cc1_main.cpp
+24-0llvm/lib/Support/MemoryBuffer.cpp
+206-1422 files not shown
+355-3428 files

FreeBSD/ports 5ff03fbemulators/fmsx pkg-message

emulators/fmsx: minor update to pkg-message

Update URL in pkg-message to be usable with modern web browsers
changing FTP to HTTP site. Note that http:// is used deliberately
instead of https:// because its SSL certificate does not cover
"ftp.komkon.org" for the moment.
DeltaFile
+1-1emulators/fmsx/pkg-message
+1-11 files

LLVM/project 4e2d754mlir/lib/Bindings/Python MainModule.cpp IRTypes.cpp, mlir/python CMakeLists.txt

works
DeltaFile
+20-11mlir/test/python/lib/PythonTestModuleNanobind.cpp
+1-30mlir/lib/Bindings/Python/MainModule.cpp
+3-15mlir/lib/Bindings/Python/IRTypes.cpp
+1-13mlir/lib/Bindings/Python/IRAttributes.cpp
+5-2mlir/python/CMakeLists.txt
+1-1mlir/test/python/dialects/python_test.py
+31-723 files not shown
+33-749 files

LLVM/project f36792bcompiler-rt/lib/scudo/standalone release.h primary64.h, compiler-rt/lib/scudo/standalone/tests wrappers_cpp_test.cpp checksum_test.cpp

[scudo] Fix typo in multiple files (#171925)

DeltaFile
+2-2compiler-rt/lib/scudo/standalone/release.h
+2-2compiler-rt/lib/scudo/standalone/tests/wrappers_cpp_test.cpp
+1-1compiler-rt/lib/scudo/standalone/primary64.h
+1-1compiler-rt/lib/scudo/standalone/tests/checksum_test.cpp
+1-1compiler-rt/lib/scudo/standalone/trusty.h
+7-75 files

LLVM/project 5e63167libc/src/__support/RPC rpc_server.h, libc/src/stdio/baremetal printf.cpp

[libc] Refactor static polymorphism in WriteBuffer (NFC). (#169089)

There are three flavors of WriteBuffer currently, all of which could be
passed into `printf_core::Writer` class. It's a tricky class, since it
chooses a flavor-specific logic either based on runtime dispatch (to
save code size and prevent generating three versions of the entirety of
printf_core), or based on template arguments (to avoid dealing with
function pointers in codegen for `FILL_BUFF_AND_DROP_OVERFLOW` path).

Refactor this somewhat convoluted logic to have three concrete
subclasses inheriting from the templated base class, and use static
polymorphism with `reinterpret_cast` to implement dispatching above. Now
we can actually have flavor-specific fields, constructors, and methods
(e.g. `flush_to_stream` is now a method of `FlushingBuffer`), and the
code on the user side is cleaner: the complexity of enabling/disabling
runtime-dispatch and using proper template arguments is now localized in
`writer.h`.

This code will need to be further templatized to support buffers of type
`wchar_t` to implement `swprintf()` and friends. This change would make
it (ever so slightly) easier.
DeltaFile
+98-56libc/src/stdio/printf_core/writer.h
+29-35libc/test/src/stdio/printf_core/writer_test.cpp
+6-10libc/test/src/stdio/printf_core/converter_test.cpp
+3-9libc/src/__support/RPC/rpc_server.h
+4-6libc/src/stdio/printf_core/vasprintf_internal.h
+4-4libc/src/stdio/baremetal/printf.cpp
+144-12011 files not shown
+162-15417 files

LLVM/project 62cf17bclang/test/Driver darwin-link-libcxx.cpp, lldb/source/Host/windows ProcessLauncherWindows.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+3-0clang/test/Driver/darwin-link-libcxx.cpp
+1-1lldb/source/Host/windows/ProcessLauncherWindows.cpp
+4-12 files

LLVM/project 708e01clldb/source/Host/windows ProcessLauncherWindows.cpp

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+1-1lldb/source/Host/windows/ProcessLauncherWindows.cpp
+1-11 files

LLVM/project a340110lldb/source/Host/windows ProcessLauncherWindows.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+1-1lldb/source/Host/windows/ProcessLauncherWindows.cpp
+1-11 files

LLVM/project efd472ccompiler-rt/lib/scudo/standalone linux.cpp secondary.h, compiler-rt/lib/scudo/standalone/tests common_test.cpp

[scudo] Show the resident pages from the secondary cache. (#170568)

Move the test utility to get the resident pages into linux.cpp.

Add some specific tests for this function.

Add displaying of resident pages from in the secondary cache when
calling getStats.
DeltaFile
+51-27compiler-rt/lib/scudo/standalone/tests/common_test.cpp
+32-0compiler-rt/lib/scudo/standalone/linux.cpp
+16-2compiler-rt/lib/scudo/standalone/secondary.h
+5-0compiler-rt/lib/scudo/standalone/common.h
+3-0compiler-rt/lib/scudo/standalone/fuchsia.cpp
+3-0compiler-rt/lib/scudo/standalone/trusty.cpp
+110-296 files

FreeBSD/ports 818044anet/wifi-firmware-iwlwifi-kmod distinfo Makefile, net/wifi-firmware-iwlwifi-kmod/files extract-fw-list.sh

net/wifi-firmware-iwlwifi-kmod: update firmware to 20251021

Intel firmware for BE200 ("bz" chipsets) requires more modern firmware
than we provide. [1]
The firmware file for iwlwifi-so-a0-gf4-a0 was missing in a recent
version; we only had the pnvm file. [2]

Update the Intel iwlwifi firmware to the latest tree
which brings a few changes:
(1) on linux-firmware.git the firmware got moved into a subdirectory
    so we need to strip that path before installing as the driver
    still expects the firmware in the top-level directory.
(2) the "bz" firmware gets bumped to 101, we keep the old version for
    14.3-R around as well.
(3) while the other files keep their revisions, Intel may have updated
    them with rebuilds.  This is hard to discover given not only the
    hashes but also the paths have changed in distinfo.
(4) we now generate the firmware list from the WHENCE file in
    linux-firmware.git given the driver firmware name creation is too

    [7 lines not shown]
DeltaFile
+219-0net/wifi-firmware-iwlwifi-kmod/files/extract-fw-list.sh
+103-87net/wifi-firmware-iwlwifi-kmod/distinfo
+78-56net/wifi-firmware-iwlwifi-kmod/Makefile
+2-1net/wifi-firmware-iwlwifi-kmod/pkg-descr
+402-1444 files

FreeBSD/ports c019853net/wifi-firmware-kmod Makefile.inc, net/wifi-firmware-mt7601u-kmod Makefile

net/wifi-firmware-kmod: allow ONLY_FOR_ARCHS to be set by child ports

mtw(4) is built along USB for all architectures so we need firmware
on all architectures -- unlike the LinuxKPI based wireless drivers
which are restricted by default.

Allow ONLY_FOR_ARCHS to be set in a child port; maintaing a full list
of supported ARCHes seems unreasonable though so allow NOT_FOR_ARCHS
to disable the ONLY_FOR_ARCHS logic in Makefile.inc.  That way
wifi-firmware-mt7601u-kmod can define an empty NOT_FOR_ARCHS and
it should build on all ARCHes.

Sponsored by:   The FreeBSD Foundation
Reviewed by:    jrm
Differential Revision: https://reviews.freebsd.org/D53788
DeltaFile
+3-1net/wifi-firmware-kmod/Makefile.inc
+2-0net/wifi-firmware-mt7601u-kmod/Makefile
+5-12 files

FreeBSD/ports ac61f18net/wifi-firmware-kmod Makefile.inc

net/wifi-firmware-kmod: remove obsolete kernel module build code

All supported FreeBSD versions either shipped firmware along with
source and do not need this, or they support plain firmware file
loading.

Remove the now obsolete kernel module build code to simplify the
logic in the file.  Further cleanup will be done once 13.5-R is
out of support in a few months.

Sponsored by:   The FreeBSD Foundation
Reviewed by:    jrm
Differential Revision: https://reviews.freebsd.org/D53679
DeltaFile
+13-43net/wifi-firmware-kmod/Makefile.inc
+13-431 files

FreeBSD/ports 831bdc1net/wifi-firmware-iwlwifi-kmod Makefile, net/wifi-firmware-kmod Makefile.inc

net/wifi-firmware-kmod: generalize iwlwifi specific tunable writing

Currently iwlwifi(4) is the only LinuxKPI based wireless driver able
to enable 11n/11ac.  bz has added tunables to rtw88 and rtw89 in order
to allow them to gradually enable more modern standards as well.

Generalize the ports framework to not be iwlwifi-specifc anymore
in order to prepare for Realtek and others to gain 11n and 11ac
support.

At some point in time, along with a kernel change, we will then flip
the defaults and make this a "disable" rather than an enable option.

Sponsored by:   The FreeBSD Foundation
Reviewers:      jrm
Differential Revision: https://reviews.freebsd.org/D53789
DeltaFile
+10-7net/wifi-firmware-kmod/Makefile.inc
+1-1net/wifi-firmware-iwlwifi-kmod/Makefile
+11-82 files

FreeBSD/ports 155a101net/wifi-firmware-kmod Makefile.inc

net/wifi-firmware-kmod: add STRIP_FWSUBDIR logic

iwlwififw(4) got moved into a subdirectory in the linux-firmware.git
but the driver still expects the firmware at the toplevel.
The longer-term solution would be to create symlinks as the WHENCE
file indicates but for the moment use the less intrusive version
simply stripping the subdir during 'extract'.

Sponsored by:   The FreeBSD Foundation
Reported by:    jrm
Differential Revision: https://reviews.freebsd.org/D53680
DeltaFile
+3-3net/wifi-firmware-kmod/Makefile.inc
+3-31 files

FreeBSD/ports 18cdd08net-im/deltachat-desktop pkg-plist distinfo

net-im/deltachat-desktop: Update to 2.33.0

This release now supports multiple relays which you can add to your
profile to make your DeltaChat identity nomadic.

Changelog:      https://github.com/deltachat/deltachat-desktop/releases/tag/v2.33.0
DeltaFile
+50-50net-im/deltachat-desktop/pkg-plist
+5-5net-im/deltachat-desktop/distinfo
+3-3net-im/deltachat-desktop/Makefile
+58-583 files

FreeBSD/ports e129641net/deltachat-rpc-server distinfo Makefile.crates

net/deltachat-rpc-server: Update to 2.33.0
DeltaFile
+81-83net/deltachat-rpc-server/distinfo
+39-40net/deltachat-rpc-server/Makefile.crates
+1-1net/deltachat-rpc-server/Makefile
+121-1243 files

LLVM/project c1b60b9.github/workflows/upload-release-artifact action.yml

workflows/upload-release-artifact: Upload a separate attestation for each artifact (#171525)

This will simplify the process of verifying the assets, because the
attestation file for $file will be $file.jsonl. Otherwise, it's not
clear which attestation file goes with which asset.
DeltaFile
+7-5.github/workflows/upload-release-artifact/action.yml
+7-51 files

LLVM/project 2f14fb3lldb/test/API/functionalities/expr-result-var TestCPPExprResult.py

The C++ dynamic typing tests are failing on Windows, skip for now. (#171922)

This is a follow-on to:

https://github.com/llvm/llvm-project/pull/168611

which added a bunch of tests for detecting dynamic types of C++ result
variables. I don't actually know how well dynamic type detection works
on Windows if at all. It would require Windows support, since the
Linux/Darwin version is specific to the Itanium ABI.
DeltaFile
+2-0lldb/test/API/functionalities/expr-result-var/TestCPPExprResult.py
+2-01 files

LLVM/project 43bfec2flang/lib/Optimizer/Builder CUDAIntrinsicCall.cpp, flang/test/Lower/CUDA cuda-device-proc.cuf

[flang][cuda] Fix condition in barrier_try_wait lowering (#171916)

The condition should have been while 0 then try to wait and not the
opposite.
DeltaFile
+1-1flang/lib/Optimizer/Builder/CUDAIntrinsicCall.cpp
+2-0flang/test/Lower/CUDA/cuda-device-proc.cuf
+3-12 files

LLVM/project 20cc9fellvm/lib/Target/RISCV RISCVInstrInfo.td

[RISCV] Remove now unused ixlenimm Operand. NFC (#171896)

Going forward I think we should add Operands with specific OperandType
so we no longer need a generic immediate Operand.
DeltaFile
+0-3llvm/lib/Target/RISCV/RISCVInstrInfo.td
+0-31 files

LLVM/project 429dbcebolt/lib/Target/AArch64 AArch64MCPlusBuilder.cpp, bolt/test/AArch64 epilogue-determination.s

[BOLT][AArch64] Tweak heuristics for epilogue recognition (#169584)

If a basic block contains a load into LR from stack and has no
instruction saving LR onto stack, we just assume the basic block
is an epilogue.

This is not meant to accurately recognize epilogue in all possible
cases, but to have BOLT be conservative on treating basic block as
epilogue and then turning indirect branch with unknown control flow
to tail call.
DeltaFile
+31-29bolt/lib/Target/AArch64/AArch64MCPlusBuilder.cpp
+45-5bolt/test/AArch64/epilogue-determination.s
+76-342 files

LLVM/project 7481f8bclang/include/clang/CIR/Dialect/IR CIROps.td, clang/lib/CIR/Lowering/DirectToLLVM LowerToLLVM.cpp

[CIR] Make CIR-to-LLVM a one shot conversion

This had to fix memory and conversion bugs due to now immediate
conversion patterns and no longer present original MLIR.
DeltaFile
+85-42clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+1-1clang/include/clang/CIR/Dialect/IR/CIROps.td
+86-432 files

LLVM/project 63fe958clang/lib/CIR/CodeGen CIRGenModule.cpp CIRGenException.cpp, clang/lib/CIR/Dialect/IR CIRDialect.cpp

[CIR] Implement function personality attribute and its lowering
DeltaFile
+17-4clang/lib/CIR/CodeGen/CIRGenModule.cpp
+18-2clang/lib/CIR/CodeGen/CIRGenException.cpp
+19-0clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+3-16clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+6-3clang/test/CIR/Lowering/eh-inflight.cir
+8-0clang/test/CIR/IR/func.cir
+71-252 files not shown
+77-268 files

LLVM/project 02ab4bdllvm/lib/Target/M68k M68kInstrData.td M68kInstrInfo.cpp, llvm/test/CodeGen/M68k/Control non-cmov-switch.ll

[M68k] Emit MOV16ds for moves from CCR on 68000 (#171703)

This also marks CCR as a subregister of SR, which allows the value of SR
to be tracked with respect to CCR. Finally, removes the 68010
requirement from moves from SR; this is a user mode instruction on
68000.

Fixes #85686
DeltaFile
+147-72llvm/test/CodeGen/M68k/Control/non-cmov-switch.ll
+2-4llvm/lib/Target/M68k/M68kInstrData.td
+5-0llvm/lib/Target/M68k/M68kInstrInfo.cpp
+1-1llvm/lib/Target/M68k/M68kRegisterInfo.td
+155-774 files

LLVM/project bb12c43llvm/lib/Target/Hexagon HexagonPatternsHVX.td HexagonPatterns.td, llvm/test/CodeGen/Hexagon/autohvx arith.ll

[Hexagon] Add HVX patterns for vector arithmetic (#170704)

This patch Introduces instruction selection patterns to generate the
vsub, vadd, vmpy, vmin, and vmax HVX vector instructions. These patterns
match on standard IR-level vector operations and lower them to the
corresponding Hexagon HVX intrinsics.

Patch By: Fateme Hosseini

Co-authored-by: Jyotsna Verma <jverma at qti.qualcomm.com>
DeltaFile
+2-138llvm/test/CodeGen/Hexagon/autohvx/arith.ll
+64-0llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
+1-0llvm/lib/Target/Hexagon/HexagonPatterns.td
+67-1383 files