[llvm] [GVN/PRE] Run tests for AArch64 triple too (PR #129073)

Madhur Amilkanthwar via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 08:01:56 PST 2025


https://github.com/madhur13490 created https://github.com/llvm/llvm-project/pull/129073

The tests changed in the patch are running only
for some apple triple. It'd be good to compile them for AArch64 triple too.

>From 0698994e06f99af59067f6a56ee1608b09e90516 Mon Sep 17 00:00:00 2001
From: Madhur Amilkanthwar <madhura at nvidia.com>
Date: Thu, 27 Feb 2025 07:37:40 -0800
Subject: [PATCH] [GVN/PRE] Run tests for AArch64 triple too

The tests changed in the patch are running only
for some apple triple. It'd be good to compile them
for AArch64 triple too.
---
 llvm/test/Transforms/GVN/PRE/2009-06-17-InvalidPRE.ll         | 4 ++--
 .../Transforms/GVN/PRE/2011-06-01-NonLocalMemdepMiscompile.ll | 4 ++--
 llvm/test/Transforms/GVN/PRE/atomic.ll                        | 4 ++--
 llvm/test/Transforms/GVN/PRE/load-pre-licm.ll                 | 4 ++--
 llvm/test/Transforms/GVN/PRE/lpre-call-wrap-2.ll              | 4 ++--
 llvm/test/Transforms/GVN/PRE/lpre-call-wrap.ll                | 4 ++--
 llvm/test/Transforms/GVN/PRE/rle-phi-translate.ll             | 4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/llvm/test/Transforms/GVN/PRE/2009-06-17-InvalidPRE.ll b/llvm/test/Transforms/GVN/PRE/2009-06-17-InvalidPRE.ll
index 506ad7ce6cd35..54e3496ae34e6 100644
--- a/llvm/test/Transforms/GVN/PRE/2009-06-17-InvalidPRE.ll
+++ b/llvm/test/Transforms/GVN/PRE/2009-06-17-InvalidPRE.ll
@@ -1,10 +1,10 @@
-; RUN: opt < %s -passes=gvn -enable-load-pre -S | FileCheck %s
+; RUN: opt < %s -passes=gvn -enable-load-pre -S -mtriple=aarch64-linux-gnu | FileCheck %s
+; RUN: opt < %s -passes=gvn -enable-load-pre -S -mtriple=i386-apple-darwin9.6 | FileCheck %s
 ; CHECK-NOT: pre1
 ; GVN load pre was hoisting the loads at %13 and %16 up to bb4.outer.
 ; This is invalid as it bypasses the check for %m.0.ph==null in bb4.
 ; ModuleID = 'mbuf.c'
 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
-target triple = "i386-apple-darwin9.6"
   %struct.mbuf = type { ptr, ptr, i32, ptr, i16, i16, i32 }
 
 define void @m_adj(ptr %mp, i32 %req_len) nounwind optsize {
diff --git a/llvm/test/Transforms/GVN/PRE/2011-06-01-NonLocalMemdepMiscompile.ll b/llvm/test/Transforms/GVN/PRE/2011-06-01-NonLocalMemdepMiscompile.ll
index 3f0475dc79ca2..af0b0cba3e135 100644
--- a/llvm/test/Transforms/GVN/PRE/2011-06-01-NonLocalMemdepMiscompile.ll
+++ b/llvm/test/Transforms/GVN/PRE/2011-06-01-NonLocalMemdepMiscompile.ll
@@ -1,10 +1,10 @@
-; RUN: opt < %s -passes='require<loops>,gvn' -S | FileCheck %s
+; RUN: opt < %s -passes='require<loops>,gvn' -S -mtriple=x86_64-apple-macosx10.7.0 | FileCheck %s
+; RUN: opt < %s -passes='require<loops>,gvn' -S -mtriple=aarch64-linux-gnu | FileCheck %s
 ; This test is checking that (a) this doesn't crash, and (b) we don't
 ; conclude the value of %tmp17 is available in bb1.bb15_crit_edge.
 ; rdar://9429882
 
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
-target triple = "x86_64-apple-macosx10.7.0"
 define i1 @rb_intern(ptr %foo) nounwind ssp {
 ; CHECK-LABEL: @rb_intern(
 
diff --git a/llvm/test/Transforms/GVN/PRE/atomic.ll b/llvm/test/Transforms/GVN/PRE/atomic.ll
index e8bf25548ba89..64d3f0b61ff18 100644
--- a/llvm/test/Transforms/GVN/PRE/atomic.ll
+++ b/llvm/test/Transforms/GVN/PRE/atomic.ll
@@ -1,8 +1,8 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2
-; RUN: opt -passes=gvn -S < %s | FileCheck %s
+; RUN: opt -mtriple=aarch64-linux-gnu -S -passes=gvn < %s | FileCheck %s
+; RUN: opt -mtriple=x86_64-apple-macosx10.7.0 -S -passes=gvn < %s | FileCheck %s
 
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
-target triple = "x86_64-apple-macosx10.7.0"
 
 @x = common global i32 0, align 4
 @y = common global i32 0, align 4
diff --git a/llvm/test/Transforms/GVN/PRE/load-pre-licm.ll b/llvm/test/Transforms/GVN/PRE/load-pre-licm.ll
index 7028edb4732bd..0801d6043e0bd 100644
--- a/llvm/test/Transforms/GVN/PRE/load-pre-licm.ll
+++ b/llvm/test/Transforms/GVN/PRE/load-pre-licm.ll
@@ -1,7 +1,7 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
-; RUN: opt -S -passes=gvn < %s | FileCheck %s
+; RUN: opt -mtriple=aarch64-linux-gnu -S -passes=gvn < %s | FileCheck %s
+; RUN: opt -mtriple=i386-apple-darwin11.0.0  -S -passes=gvn < %s | FileCheck %s
 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32"
-target triple = "i386-apple-darwin11.0.0"
 
 @sortlist = external global [5001 x i32], align 4
 
diff --git a/llvm/test/Transforms/GVN/PRE/lpre-call-wrap-2.ll b/llvm/test/Transforms/GVN/PRE/lpre-call-wrap-2.ll
index 177b8a080bb0a..24c2aa091ac24 100644
--- a/llvm/test/Transforms/GVN/PRE/lpre-call-wrap-2.ll
+++ b/llvm/test/Transforms/GVN/PRE/lpre-call-wrap-2.ll
@@ -1,4 +1,5 @@
-; RUN: opt -S -passes=gvn -enable-load-pre < %s | FileCheck %s
+; RUN: opt -mtriple=aarch64-linux-gnu -S -passes=gvn -enable-load-pre < %s | FileCheck %s
+; RUN: opt -mtriple=i386-apple-darwin7 -S -passes=gvn -enable-load-pre < %s | FileCheck %s
 ;
 ; The partially redundant load in bb1 should be hoisted to "bb".  This comes
 ; from this C code (GCC PR 23455):
@@ -10,7 +11,6 @@
 ;     outbuf[outcnt] = bi_buf;
 ;   }
 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
-target triple = "i386-apple-darwin7"
 @outcnt = common global i32 0		; <ptr> [#uses=3]
 
 define void @bi_windup(ptr %outbuf, i8 zeroext %bi_buf) nounwind {
diff --git a/llvm/test/Transforms/GVN/PRE/lpre-call-wrap.ll b/llvm/test/Transforms/GVN/PRE/lpre-call-wrap.ll
index 1f6a5c7a11a89..9241cf49a9a87 100644
--- a/llvm/test/Transforms/GVN/PRE/lpre-call-wrap.ll
+++ b/llvm/test/Transforms/GVN/PRE/lpre-call-wrap.ll
@@ -1,5 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
-; RUN: opt -S -passes=gvn -enable-load-pre < %s | FileCheck %s
+; RUN: opt -mtriple=aarch64-linux-gnu -S -passes=gvn -enable-load-pre < %s | FileCheck %s
+; RUN: opt -mtriple=i386-apple-darwin7  -S -passes=gvn -enable-load-pre < %s | FileCheck %s
 ;
 ; Make sure the load in bb3.backedge is removed and moved into bb1 after the
 ; call.  This makes the non-call case faster.
@@ -15,7 +16,6 @@
 ; void testfunction(A& iter) { A const end; while (iter != end) ++iter; }
 ;
 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
-target triple = "i386-apple-darwin7"
   %struct.A = type { i32, i32 }
 
 define void @_Z12testfunctionR1A(ptr %iter) {
diff --git a/llvm/test/Transforms/GVN/PRE/rle-phi-translate.ll b/llvm/test/Transforms/GVN/PRE/rle-phi-translate.ll
index 519e0ca29a971..08e4235715fa9 100644
--- a/llvm/test/Transforms/GVN/PRE/rle-phi-translate.ll
+++ b/llvm/test/Transforms/GVN/PRE/rle-phi-translate.ll
@@ -1,7 +1,7 @@
-; RUN: opt < %s -passes=gvn -S | FileCheck %s
+; RUN: opt < %s -mtriple=aarch64-linux-gnu -S -passes=gvn | FileCheck %s
+; RUN: opt < %s -mtriple=i386-apple-darwin7 -S -passes=gvn | FileCheck %s
 
 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
-target triple = "i386-apple-darwin7"
 
 define i32 @test1(ptr %b, ptr %c) nounwind {
 ; CHECK-LABEL: @test1(



More information about the llvm-commits mailing list