File: high-pressure-on-ptrregs.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (78 lines) | stat: -rw-r--r-- 2,303 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
; RUN: llc < %s -march=avr | FileCheck %s

; This tests how LLVM handles IR which puts very high
; presure on the PTRREGS class for the register allocator.
;
; This causes a problem because we only have one small register
; class for loading and storing from pointers - 'PTRREGS'.
; One of these registers is also used for the frame pointer, meaning
; that we only ever have two registers available for these operations.
;
; There is an existing bug filed for this issue - PR14879.
;
; The specific failure:
; LLVM ERROR: ran out of registers during register allocation
;
; It has been assembled from the following c code:
;
; struct ss
; {
;   int a;
;   int b;
;   int c;
; };
;
; void loop(struct ss *x, struct ss **y, int z)
; {
;   int i;
;   for (i=0; i<z; ++i)
;   {
;     x->c += y[i]->b;
;   }
; }

%struct.ss = type { i16, i16, i16 }

; CHECK-LABEL: loop
define void @loop(ptr %x, ptr %y, i16 %z) #0 {
entry:
  %x.addr = alloca ptr, align 2
  %y.addr = alloca ptr, align 2
  %z.addr = alloca i16, align 2
  %i = alloca i16, align 2
  store ptr %x, ptr %x.addr, align 2
  store ptr %y, ptr %y.addr, align 2
  store i16 %z, ptr %z.addr, align 2
  store i16 0, ptr %i, align 2
  br label %for.cond

for.cond:                                         ; preds = %for.inc, %entry
  %tmp = load i16, ptr %i, align 2
  %tmp1 = load i16, ptr %z.addr, align 2
  %cmp = icmp slt i16 %tmp, %tmp1
  br i1 %cmp, label %for.body, label %for.end

for.body:                                         ; preds = %for.cond
  %tmp2 = load ptr, ptr %y.addr, align 2
  %tmp3 = load i16, ptr %i, align 2
  %arrayidx = getelementptr inbounds ptr, ptr %tmp2, i16 %tmp3
  %tmp4 = load ptr, ptr %arrayidx, align 2
  %b = getelementptr inbounds %struct.ss, ptr %tmp4, i32 0, i32 1
  %tmp5 = load i16, ptr %b, align 2
  %tmp6 = load ptr, ptr %x.addr, align 2
  %c = getelementptr inbounds %struct.ss, ptr %tmp6, i32 0, i32 2
  %tmp7 = load i16, ptr %c, align 2
  %add = add nsw i16 %tmp7, %tmp5
  store i16 %add, ptr %c, align 2
  br label %for.inc

for.inc:                                          ; preds = %for.body
  %tmp8 = load i16, ptr %i, align 2
  %inc = add nsw i16 %tmp8, 1
  store i16 %inc, ptr %i, align 2
  br label %for.cond

for.end:                                          ; preds = %for.cond
  ret void
}