[PATCH] D132559: [AArch64] Add support for 128-bit non temporal loads.

Zain Jaffal via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 30 08:32:58 PDT 2022


zjaffal added a comment.

In D132559#3757832 <https://reviews.llvm.org/D132559#3757832>, @fhahn wrote:

> Running this locally causes many test failures for me. @zainja could you double check all AArch64 codegen tests pass with the patch applied to current `main`? Also, could you rebase the patch to current `main` to make the precommit tests run latest `main`?

The issue is related to

  setOperationAction(ISD::LOAD, MVT::vxixx, Custom);

Looking at the following test `arm64-neon-vector-shuffle-extract.ll` the stack trace failure indicates that the last function called was `LowerLoad`. Before the patch, the function wasn't called for that specific case which means that the `setOperationAction` calls are the issue.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D132559/new/

https://reviews.llvm.org/D132559



More information about the llvm-commits mailing list