1 ; RUN: llc < %s -march=avr | FileCheck %s
3 ; This tests how LLVM handles IR which puts very high
4 ; presure on the PTRREGS class for the register allocator.
6 ; This causes a problem because we only have one small register
7 ; class for loading and storing from pointers - 'PTRREGS'.
8 ; One of these registers is also used for the frame pointer, meaning
9 ; that we only ever have two registers available for these operations.
11 ; There is an existing bug filed for this issue - PR14879.
13 ; The specific failure:
14 ; LLVM ERROR: ran out of registers during register allocation
16 ; It has been assembled from the following c code:
25 ; void loop(struct ss *x, struct ss **y, int z)
34 %struct.ss = type { i16, i16, i16 }
37 define void @loop(%struct.ss* %x, %struct.ss** %y, i16 %z) #0 {
39 %x.addr = alloca %struct.ss*, align 2
40 %y.addr = alloca %struct.ss**, align 2
41 %z.addr = alloca i16, align 2
42 %i = alloca i16, align 2
43 store %struct.ss* %x, %struct.ss** %x.addr, align 2
44 store %struct.ss** %y, %struct.ss*** %y.addr, align 2
45 store i16 %z, i16* %z.addr, align 2
46 store i16 0, i16* %i, align 2
49 for.cond: ; preds = %for.inc, %entry
50 %tmp = load i16, i16* %i, align 2
51 %tmp1 = load i16, i16* %z.addr, align 2
52 %cmp = icmp slt i16 %tmp, %tmp1
53 br i1 %cmp, label %for.body, label %for.end
55 for.body: ; preds = %for.cond
56 %tmp2 = load %struct.ss**, %struct.ss*** %y.addr, align 2
57 %tmp3 = load i16, i16* %i, align 2
58 %arrayidx = getelementptr inbounds %struct.ss*, %struct.ss** %tmp2, i16 %tmp3
59 %tmp4 = load %struct.ss*, %struct.ss** %arrayidx, align 2
60 %b = getelementptr inbounds %struct.ss, %struct.ss* %tmp4, i32 0, i32 1
61 %tmp5 = load i16, i16* %b, align 2
62 %tmp6 = load %struct.ss*, %struct.ss** %x.addr, align 2
63 %c = getelementptr inbounds %struct.ss, %struct.ss* %tmp6, i32 0, i32 2
64 %tmp7 = load i16, i16* %c, align 2
65 %add = add nsw i16 %tmp7, %tmp5
66 store i16 %add, i16* %c, align 2
69 for.inc: ; preds = %for.body
70 %tmp8 = load i16, i16* %i, align 2
71 %inc = add nsw i16 %tmp8, 1
72 store i16 %inc, i16* %i, align 2
75 for.end: ; preds = %for.cond