[dsymutil] Relax tests to accept both linker outputs (#195354)
Remove the FIXMEs from tests whose divergence between the classic and
parallel linkers was cosmetic. Typical relaxations consist of using
CHECK-DAG for reordered attributes and allowing DIE and string offsets
to differ.
[LowerTypeTests] Add debug info to jump table entries (#194493)
[LowerTypeTests] Add debug info to jump table entries (#192736)
When Control Flow Integrity (CFI) is enabled, jump tables are used to
redirect indirect calls. Previously, these jump table entries lacked
debug information, making it difficult for profilers and debuggers to
attribute execution time correctly.
Now stack trace, when stopped on jump table entry will looks like this:
```
#0: c::c() (.cfi_jt) at sanitizer/ubsan_interface.h:0:0
#1: __ubsan_check_cfi_icall_jt at sanitizer/ubsan_interface.h:0
```
Following up on previous attempts #192736 and #193670, this PR is
essentially #192736 but with the `(.cfi_jt)` and
`__ubsan_check_cfi_icall_jt`
frames swapped. While the specific order of `__ubsan_check_cfi_icall_jt`
[5 lines not shown]
www/gitlab-workhorse: fix build on armv7
This cast is a no-op on 64 bit platforms and prevents a type error
on 32-bit platforms.
Approved by: portmgr (build fix blanket)
PR: 2026Q2
(cherry picked from commit 4731beeec6f8dad167fa3b3ff8d4848aea26c2fc)
devel/gitaly: fix build on armv7
Apparently these are not int64 on 32-bit platforms.
Approved by: portmgr (build fix blanket)
MFH: 2026Q2
(cherry picked from commit e665c2bc9970aebba5a2a021092b0ca753204f84)
[llvm-profgen] Support [buildid:]0xaddr format in perfscript input (#190863)
Add support for optional build ID prefix in perfscript addresses,
following the format buildid:0xhexaddr. This enables multi-DSO profiling
with a single input file: each address optionally carries a build ID,
and profgen filters addresses by matching the binary's build ID.
--filter-build-id=<hex> CLI option overrides auto-detected build ID.
[lldb] Make VariableList::FindVariable const (NFC) (#195355)
I was surprised to find `FindVariable` was not `const`. While making it
`const`, I also replaced the iterator based loop with a ranged based
loop.
www/gitlab-workhorse: fix build on armv7
This cast is a no-op on 64 bit platforms and prevents a type error
on 32-bit platforms.
Approved by: portmgr (build fix blanket)
PR: 2026Q2
[llvm-profgen][NFC] Reuse isLBRSample (#191595)
Replace `StringRef::starts_with(" 0x")` calls with explicit
`isLBRSample` checks.
This is needed to support buildid-prefixed addresses in a follow-up
#190863.
Avoid calling markBranchAsResolved() when we discover a thunk in range
The only way for a thunk to be in range is if we created one. In that
case, we already call thunkInfo.pendingBranches.clear() so there is no
need to remove this branch.
Merge tag 'drm-fixes-2026-05-02' of https://gitlab.freedesktop.org/drm/kernel
Pull drm fixes from Dave Airlie:
"Fixes for rc2, the usual amdgpu/xe double header, I think xe had a
couple of weeks combined due to some maintainer access issues,
otherwise there's just a few misc fixes and documentation fixups.
core and helpers:
- calculate framebuffer geometry with format helpers
- fix docs
amdgpu:
- GFX12 fix for CONFIG_DRM_DEBUG_MM configs
- Fix DC analog support
- Userq fixes
- GART placement fix
- Aldebaran SMU fixes
- AMDGPU_INFO_READ_MMR_REG fix
- UVD 3.1 fix
[64 lines not shown]
[llvm-profgen][NFC] Factor out parseAddress (#191594)
Replace `StringRef::getAsInteger(16)` calls with explicit `parseAddress`
to make it easier to support buildid-prefixed addresses in a follow-up
(#190863).