[llvm] [AArch64] Make use of byte FPR stores for bytes extracted from vectors (PR #131793)
Benjamin Maxwell via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 03:58:39 PDT 2025
================
@@ -338,6 +338,8 @@ def amdgpuBufferFatPointer : ValueType<160, 234>;
// FIXME: Remove this and the getPointerType() override if MVT::i82 is added.
def amdgpuBufferStridedPointer : ValueType<192, 235>;
+def vi8 : ValueType<8, 236>; // 8-bit integer in FPR (AArch64)
----------------
MacDue wrote:
I don't know the full history here, but for the other sizes 16,32,64-bit there's a legal scalar type floating-point (half, float, double) that can be mapped to an FPR register. I don't think that's the case with 8-bit, there are some FP8 extensions, but I believe they are only for vectors of FP8 types, so reuse the existing integer vector types in IR. I think addressing b-registers directly is only used in a few places (such as loads or stores).
https://github.com/llvm/llvm-project/pull/131793
More information about the llvm-commits
mailing list