[AArch64] Add lowering for NEON saturating shift intrinsics (#171485)
This patch extends on the work done in #161840 and adds lowering with
bitcasts for saturating shift intrinsics.
bootimage: fix a build error of zaurus live-image on parallel build
Add an explicit dependency of ${FATFILES} on ${TARGETFS} since
necessary files are assumed to be extracted during ${TARGETFS} image
build (not sure how it worked before).
Should be pulled up to netbsd-11.
[flang][NFC] Converted five tests from old lowering to new lowering (part 8) (#175881)
Tests converted from test/Lower: block.f90, call-copy-in-out.f90,
call-implicit.f90, call.f90, character-compare.f90
pfctl: allow new page character (^L) in pf.conf
PF configuration files can contains many things.
Using the new page characters (i.e. ^L, \014) to mark the beginning
of parts is useful because many editors such as emacs and vim has
facilities to jump next/previous ones.
PR: 86635
MFC after: 2 weeks
Submitted by: MOROHOSHI Akihiko <moro at remus.dti.ne.jp>
Submitted by: Simon Wollwage <rootnode+freebsd at wollwage.com>
Sponsored by: Rubicon Communications, LLC ("Netgate")
[DAG] SDPatternMatch - Implement m_IntrinsicWOChain matchers (#175626)
Resolve #174436
Implemented matchers for intrinsics.
The usage looks something like:
```cpp
sd_match(N , m_IntrinsicWOChain<Intrinsic::${INTRINSIC_ID}>(/* match possible operands of the intrinsic */));
```
security/pam_worker: new port
PAM-modules is a collection of useful PAM modules and command line
utilities for checking PAM authentication and other management groups.
x11/histui: Add new port
Histui is a notification system for Wayland desktops. It captures, displays,
and lets you browse your notification history.
Features:
- CSS theming with hot reload - edit themes live without restarting
- Clickable URLs and deep links - jump straight to the source app
- Image previews and progress bars with Pango markup support
- Smart icon resolution - app aliases with Nerd Font fallbacks for 350+ apps
- Audio alerts by urgency with repeat options
- Notification stacking with smooth animations
- Supports Hyprland, Sway, river, and other layer-shell compositors
- Run alongside other daemons (dunst, mako etcetera..)
Histui is also a CLI and TUI for querying notification history. You can:
- View what you missed while away
[5 lines not shown]
[clang] Fix TemplateInstantiator crash transforming loop hint argument (#172289)
A generic lambda inside a generic function is (currently) instantiated twice. Thus the argument expression of a loop hint inside such a lambda may still be value dependent after the first instantiation and we must protect against this in `TransformLoopHintAttr`. We also fix a bug in this function where the special handling of an unroll(0|1) hint could be applied to *other* loop hints, if they receive an argument 1 after instantiation.