Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Commit 3cab73d

Browse files
committed
[X86] Add test for matchAddressRecursively's MUL handling
Noticed in code coverage tests that this isn't tested. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351804 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent b92e756 commit 3cab73d

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2+
; RUN: llc < %s -mtriple=i686-unknown | FileCheck %s --check-prefix=X86
3+
; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s --check-prefix=X64
4+
5+
; Test coverage for matchAddressRecursively's MUL handling
6+
7+
; Based off:
8+
; struct A {
9+
; int m_ints[5];
10+
; int m_bar();
11+
; };
12+
; struct {
13+
; A* m_data;
14+
; } c;
15+
; void foo(bool b, int i) {
16+
; if (b)
17+
; return;
18+
; int j = c.m_data[i + 1].m_bar();
19+
; foo(false, j);
20+
; }
21+
22+
%struct.A = type { [5 x i32] }
23+
24+
define void @foo(i1 zeroext, i32) nounwind {
25+
; X86-LABEL: foo:
26+
; X86: # %bb.0:
27+
; X86-NEXT: movb {{[0-9]+}}(%esp), %al
28+
; X86-NEXT: testb %al, %al
29+
; X86-NEXT: je .LBB0_1
30+
; X86-NEXT: # %bb.3:
31+
; X86-NEXT: retl
32+
; X86-NEXT: .LBB0_1: # %.preheader
33+
; X86-NEXT: movl {{[0-9]+}}(%esp), %eax
34+
; X86-NEXT: .p2align 4, 0x90
35+
; X86-NEXT: .LBB0_2: # =>This Inner Loop Header: Depth=1
36+
; X86-NEXT: leal (%eax,%eax,4), %eax
37+
; X86-NEXT: leal 20(,%eax,4), %eax
38+
; X86-NEXT: pushl %eax
39+
; X86-NEXT: calll bar
40+
; X86-NEXT: addl $4, %esp
41+
; X86-NEXT: jmp .LBB0_2
42+
;
43+
; X64-LABEL: foo:
44+
; X64: # %bb.0:
45+
; X64-NEXT: pushq %rax
46+
; X64-NEXT: testl %edi, %edi
47+
; X64-NEXT: je .LBB0_1
48+
; X64-NEXT: # %bb.3:
49+
; X64-NEXT: popq %rax
50+
; X64-NEXT: retq
51+
; X64-NEXT: .LBB0_1: # %.preheader
52+
; X64-NEXT: movl %esi, %eax
53+
; X64-NEXT: .p2align 4, 0x90
54+
; X64-NEXT: .LBB0_2: # =>This Inner Loop Header: Depth=1
55+
; X64-NEXT: incl %eax
56+
; X64-NEXT: cltq
57+
; X64-NEXT: shlq $2, %rax
58+
; X64-NEXT: leaq (%rax,%rax,4), %rdi
59+
; X64-NEXT: callq bar
60+
; X64-NEXT: jmp .LBB0_2
61+
br i1 %0, label %9, label %3
62+
63+
%4 = phi i32 [ %8, %3 ], [ %1, %2 ]
64+
%5 = add nsw i32 %4, 1
65+
%6 = sext i32 %5 to i64
66+
%7 = getelementptr inbounds %struct.A, %struct.A* null, i64 %6
67+
%8 = tail call i32 @bar(%struct.A* %7)
68+
br label %3
69+
70+
ret void
71+
}
72+
73+
declare i32 @bar(%struct.A*)

0 commit comments

Comments
 (0)