[llvm-branch-commits] [llvm] 578c5a0 - [ArgPromotion] Add test with dead GEP when promoting.
Florian Hahn via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sun Jan 3 07:43:10 PST 2021
Author: Florian Hahn
Date: 2021-01-03T15:39:06Z
New Revision: 578c5a0c6e71b0a7b31b3af69ec6fcb176291572
URL: https://github.com/llvm/llvm-project/commit/578c5a0c6e71b0a7b31b3af69ec6fcb176291572
DIFF: https://github.com/llvm/llvm-project/commit/578c5a0c6e71b0a7b31b3af69ec6fcb176291572.diff
LOG: [ArgPromotion] Add test with dead GEP when promoting.
This adds test coverage for the case where we do argument promotion and
there's a dead GEP that should be removed/ignored.
Added:
llvm/test/Transforms/ArgumentPromotion/aggregate-promote-dead-gep.ll
Modified:
Removed:
################################################################################
diff --git a/llvm/test/Transforms/ArgumentPromotion/aggregate-promote-dead-gep.ll b/llvm/test/Transforms/ArgumentPromotion/aggregate-promote-dead-gep.ll
new file mode 100644
index 000000000000..b9a22b53b372
--- /dev/null
+++ b/llvm/test/Transforms/ArgumentPromotion/aggregate-promote-dead-gep.ll
@@ -0,0 +1,34 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --scrub-attributes
+; RUN: opt < %s -argpromotion -S | FileCheck %s
+; RUN: opt < %s -passes=argpromotion -S | FileCheck %s
+
+%T = type { i32, i32, i32, i32 }
+ at G = constant %T { i32 0, i32 0, i32 17, i32 25 }
+
+define internal i32 @test(%T* %p) {
+; CHECK-LABEL: define {{[^@]+}}@test
+; CHECK-SAME: (i32 [[P_0_3_VAL:%.*]]) {
+; CHECK-NEXT: entry:
+; CHECK-NEXT: [[V:%.*]] = add i32 [[P_0_3_VAL]], 10
+; CHECK-NEXT: ret i32 [[V]]
+;
+entry:
+ %a.gep = getelementptr %T, %T* %p, i64 0, i32 3
+ %b.gep = getelementptr %T, %T* %p, i64 0, i32 2
+ %a = load i32, i32* %a.gep
+ %v = add i32 %a, 10
+ ret i32 %v
+}
+
+define i32 @caller() {
+; CHECK-LABEL: define {{[^@]+}}@caller() {
+; CHECK-NEXT: entry:
+; CHECK-NEXT: [[G_IDX:%.*]] = getelementptr [[T:%.*]], %T* @G, i64 0, i32 3
+; CHECK-NEXT: [[G_IDX_VAL:%.*]] = load i32, i32* [[G_IDX]], align 4
+; CHECK-NEXT: [[V:%.*]] = call i32 @test(i32 [[G_IDX_VAL]])
+; CHECK-NEXT: ret i32 [[V]]
+;
+entry:
+ %v = call i32 @test(%T* @G)
+ ret i32 %v
+}
More information about the llvm-branch-commits
mailing list