[all-commits] [llvm/llvm-project] 926173: [AArch64] Prevent argument promotion of vector wit...
KAWASHIMA Takahiro via All-commits
all-commits at lists.llvm.org
Wed Oct 25 22:51:44 PDT 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 926173c614784149889b2c975adccf52bcece75b
https://github.com/llvm/llvm-project/commit/926173c614784149889b2c975adccf52bcece75b
Author: KAWASHIMA Takahiro <t-kawashima at fujitsu.com>
Date: 2023-10-26 (Thu, 26 Oct 2023)
Changed paths:
M llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
M llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
A llvm/test/CodeGen/AArch64/arg_promotion.ll
Log Message:
-----------
[AArch64] Prevent argument promotion of vector with size > 128 bits (#70034)
This patch prevents argument promotion from promoting pointers to
fixed-length vector types larger than 128 bits like `<8 x float>` into
the values of the pointees.
Such vector types are used for SVE VLS but there is no ABI for SVE VLS
arguments and the backend cannot lower such value arguments.
Fixes #69147
More information about the All-commits
mailing list