File: lcssa.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 1,998,492 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 (46 lines) | stat: -rw-r--r-- 1,453 bytes parent folder | download | duplicates (7)
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
; RUN: opt -mtriple hexagon-- -S -passes='loop(hexagon-loop-idiom,loop-deletion),gvn'
; REQUIRES: asserts

; This tests that the HexagonLoopIdiom pass does not mark LCSSA information
; as preserved. The pass calls SimplifyInstruction is a couple of places,
; which can invalidate LCSSA. Specifically, the uses of a LCSSA phi variable
; are replaced by the incoming value.

define hidden void @test() local_unnamed_addr #0 {
entry:
  br label %if.then63

if.then63:
  br i1 undef, label %do.body311, label %if.end375

do.body311:
  br i1 undef, label %do.end318, label %do.body311

do.end318:
  br i1 undef, label %if.end322, label %if.end375

if.end322:
  %sub325 = sub i32 undef, undef
  br i1 undef, label %do.end329, label %do.body311

do.end329:
  %sub325.lcssa = phi i32 [ %sub325, %if.end322 ]
  br label %do.body330

do.body330:
  %row_width.7 = phi i32 [ %sub325.lcssa, %do.end329 ], [ %dec334, %do.body330 ]
  %sp.5 = phi ptr [ undef, %do.end329 ], [ %incdec.ptr331, %do.body330 ]
  %dp.addr.5 = phi ptr [ undef, %do.end329 ], [ %incdec.ptr332, %do.body330 ]
  %0 = load i8, ptr %sp.5, align 1
  store i8 %0, ptr %dp.addr.5, align 1
  %incdec.ptr332 = getelementptr inbounds i8, ptr %dp.addr.5, i32 1
  %incdec.ptr331 = getelementptr inbounds i8, ptr %sp.5, i32 1
  %dec334 = add i32 %row_width.7, -1
  %cmp335 = icmp eq i32 %dec334, 0
  br i1 %cmp335, label %if.end375, label %do.body330

if.end375:
  ret void
}

attributes #0 = { nounwind }