[CIR][AArch64] Lower NEON vrsra_n intrinsics (#191129) ### Summary Implement CIR lowering for all intrinsics in https://arm-software.github.io/acle/neon_intrinsics/advsimd.html#vector-rounding-shift-right-and-accumulate This PR references the implementation from the ClangIR incubator: https://github.com/llvm/clangir/blob/main/clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp#L4854 AArch64 does not provide a dedicated "rounding shift right by immediate" instruction. Instead, the `SRSHL` / `URSHL` intrinsics take a signed per-lane shift amount where a negative value means right shift, so an immediate right shift by `n` is encoded as a signed vector splat of `-n`. The three infrastructure changes below exist to support this encoding at the call site: - extends `emitNeonShiftVector` with a `neg` parameter so the right-shift-as-negative-left-shift encoding is handled inside the helper; - adds `getSignChangedVectorType` (also mirroring the incubator) used to construct the signed shift-amount vector type for the unsigned path; - replaces the `errorNYI` in `emitNeonCallToOp`'s `shift == j` branch with an actual call to `emitNeonShiftVector`. Tests: new CHECK lines in clang/test/CodeGen/AArch64/neon/intrinsics.c under section 2.1.3.2.4. Part of #185382.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.