[orc-rt] Rename scope_exit header, add nodiscard attribute. (#205030)
The rename brings the scope_exit type's header name into alignment with
other ORC runtime snake_case types.
The [[nodiscard]] attribute should help to prevent accidental misuse of
the type.
drm/amdgpu: set noretry=1 as default for GFX 10.1.x (Navi10/12/14)
From Vitaly Prosyak
39b5397bf8de2c5f110a0599707a7b1e0dbc6bf3 in linux-6.18.y/6.18.36
e47b0056a08dc70430ffc44bbf62197e7d1ff8ea in mainline linux
drm/amdgpu: restart the CS if some parts of the VM are still invalidated
From Christian Koenig
fcd51a085e9a0d01315606e9d2dad1732563faf2 in linux-6.18.y/6.18.36
40396ffdf6120e2380706c59e1a84d7e765a37b6 in mainline linux
drm/amdgpu: fix waiting for all submissions for userptrs
From Christian Koenig
68455b117258243e73b9697d15a570158ad93e1c in linux-6.18.y/6.18.36
58bafc666c484b21839a2d27e923ae1b2727a1df in mainline linux
[clang] Avoid assertion on invalid member template specialization (#201506)
fixes #201490
It would be possible to have `PrevClassTemplate == false` when `SS` was
invalid.
Since it is already invalid, it would be safe to skip
`setMemberSpecialization` for `NewTemplate`. When the qualified scope
specifier is invalid, Sema may have already diagnosed the declaration
and marked it invalid. In that case there may be no previous class
template declaration, so the assertion is too strong. Avoid marking the
new declaration as a member specialization unless the previous class
template exists.
drm/amdkfd: Fix buffer overflow in SDMA queue checkpoint/restore on GFX11
From Andrew Martin
d3efcadfe3eea5b4263b8f2d4463b15c9fc46a64 in linux-6.18.y/6.18.36
352ea59028ea48a6fff77f19ae28f98f71946a80 in mainline linux
drm/amdkfd: fix NULL dereference in get_queue_ids()
From Muhammad Bilal
72e259a32084c42816152c346096d2edd4213e23 in linux-6.18.y/6.18.36
2bd550b547deabef98bd3b017ff743b7c34d3a6d in mainline linux
drm/gem: Try to fix change_handle ioctl, attempt 4
From Simona Vetter
c0639ede2f24ac224b2079cd35ecd5fd8ad4e3cd in linux-6.18.y/6.18.36
1a4f03d22fb655e5f192244fb2c87d8066fcfca2 in mainline linux
drm/amd/display: Reject gpio_bitshift >= 32 in bios_parser_get_gpio_pin_info()
From Harry Wentland
edabfe80e34efc468abb3ae5586d71830a1ae585 in linux-6.18.y/6.18.36
49c3da65961fe9857c831d47fa1989084e87514a in mainline linux
drm/i915/gem: Fix phys BO pread/pwrite with offset
From Joonas Lahtinen
32d4c5d328a3ff995420f4f85163e1e403f43628 in linux-6.18.y/6.18.36
d21ad938398bca695a511307de38a65889e3b354 in mainline linux
drm/i915/edp: Check supported link rates DPCD read
From Nikita Zhandarovich
dda720b2928d162ad76273cd35d881bc69b71600 in linux-6.18.y/6.18.36
2673cefa99ca918e7ac5b0388ff578a83656c896 in mainline linux
[llvm][RISCV] Revise xsfmm intrinsic interface. (#201527)
This patch does 2 things:
1. Change matmul interface to use newly defined OFP8 RVV types.
2. change all of matmul overloaded interfaces to only keep only widen
information and eliminate types information.
[clang][RISCV] Handle VLS CC on unsupported primitive type in aggregate type (#203898)
We handled this for pure vector type before but missed the aggregate
types, this patch try to apply same mechanism on them where unsupported
vector types are converted to same size i8 vector types.
[lld-macho] Relax safe ICF's keepUnique for ld64-coalesced data sections (#193125)
#188400 regressed data-section folding under --icf=safe{,_thunks}:
no-addrsig fallback, and over-broad compiler-emitted addrsig entries
covering data symbols, both caused markSymAsAddrSig to set keepUnique on
data sections, after which foldIdenticalSections refused to fold them.
ld64 coalesces __cfstring, __objc_classrefs and __objc_selrefs
unconditionally regardless of addrsig, so ignore keepUnique for them as
a workaround for the imprecise addrsig payload.
[orc-rt]R Align scope-exit with LLVM (rename to scope_exit, use CTAD) (#205020)
This renames the orc_rt::detail::ScopeExitRunner class to
orc_rt::scope_exit and adds a class template argument deduction guide.