[clang] [llvm] AMDGPU: Add builtin/intrinsic global_(load|store)_b128 (PR #172090)
Matt Arsenault via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 15 06:26:48 PST 2025
================
@@ -0,0 +1,36 @@
+; RUN: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx602 < %s 2>&1 | FileCheck -check-prefixes=GFX602 %s
+; RUN: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx705 < %s 2>&1 | FileCheck -check-prefixes=GFX705 %s
+; RUN: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx810 < %s 2>&1 | FileCheck -check-prefixes=GFX810 %s
+; xxx: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx9-generic < %s 2>&1 | FileCheck -check-prefixes=GFX9-GENERIC %s
+; xxx: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx9-4-generic < %s 2>&1 | FileCheck -check-prefixes=GFX9-4-GENERIC %s
+; xxx: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx10-1-generic < %s 2>&1 | FileCheck -check-prefixes=GFX10-1-GENERIC %s
+; xxx: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx10-3-generic < %s 2>&1 | FileCheck -check-prefixes=GFX10-3-GENERIC %s
+; xxx: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx11-generic < %s 2>&1 | FileCheck -check-prefixes=GFX11-GENERIC %s
+; xxx: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx12-generic < %s 2>&1 | FileCheck -check-prefixes=GFX12-GENERIC %s
+; xxx: not llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx1250 < %s 2>&1 | FileCheck -check-prefixes=GFX1250 %s
+
+; RUN: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx602 < %s 2>&1 | FileCheck -check-prefixes=GFX602-GBL-ISEL %s
+; RUN: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx705 < %s 2>&1 | FileCheck -check-prefixes=GFX705-GBL-ISEL %s
+; RUN: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx810 < %s 2>&1 | FileCheck -check-prefixes=GFX810-GBL-ISEL %s
+; xxx: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx9-generic < %s 2>&1 | FileCheck -check-prefixes=GFX9-GENERIC-GBL-ISEL %s
+; xxx: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx9-4-generic < %s 2>&1 | FileCheck -check-prefixes=GFX9-4-GENERIC-GBL-ISEL %s
+; xxx: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx10-1-generic < %s 2>&1 | FileCheck -check-prefixes=GFX10-1-GENERIC-GBL-ISEL %s
+; xxx: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx10-3-generic < %s 2>&1 | FileCheck -check-prefixes=GFX10-3-GENERIC-GBL-ISEL %s
+; xxx: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx11-generic < %s 2>&1 | FileCheck -check-prefixes=GFX11-GENERIC-GBL-ISEL %s
+; xxx: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx12-generic < %s 2>&1 | FileCheck -check-prefixes=GFX12-GENERIC-GBL-ISEL %s
+; xxx: not llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx1250 < %s 2>&1 | FileCheck -check-prefixes=GFX1250-GBL-ISEL %s
----------------
arsenm wrote:
Lots of disabled run lines
https://github.com/llvm/llvm-project/pull/172090
More information about the cfe-commits
mailing list