File: swp-crash-iter.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (32 lines) | stat: -rw-r--r-- 1,586 bytes parent folder | download | duplicates (6)
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
; REQUIRES: asserts
; RUN: llc -mtriple=hexagon -enable-pipeliner -o /dev/null < %s
; Test that we do not crash when running CopyToPhi DAG mutation due to
; iterator invalidation.

declare i64 @llvm.hexagon.M2.cmacsc.s0(i64, i32, i32) #0
define dso_local void @foo() local_unnamed_addr #1 {
entry:
  br label %for.body
for.body:                                         ; preds = %for.body, %entry
  %loop_count.0420 = phi i32 [ 0, %entry ], [ %inc, %for.body ]
  %tmp_rslt4.sroa.0.0415 = phi i64 [ 0, %entry ], [ %phitmp395, %for.body ]
  %tmp_rslt4.sroa.14.0414 = phi i64 [ 0, %entry ], [ %phitmp394, %for.body ]
  %tmp_rslt3.sroa.12.0412 = phi i64 [ 0, %entry ], [ %phitmp391, %for.body ]
  %tmp_rslt3.sroa.0.0.insert.insert = or i64 0, %tmp_rslt3.sroa.12.0412
  %0 = tail call i64 @llvm.hexagon.M2.cmacsc.s0(i64 %tmp_rslt3.sroa.0.0.insert.insert, i32 undef, i32 undef)
  %tmp_rslt4.sroa.0.0.insert.insert = or i64 %tmp_rslt4.sroa.0.0415, %tmp_rslt4.sroa.14.0414
  %1 = tail call i64 @llvm.hexagon.M2.cmacsc.s0(i64 %tmp_rslt4.sroa.0.0.insert.insert, i32 undef, i32 undef)
  %inc = add nuw nsw i32 %loop_count.0420, 1
  %phitmp391 = and i64 %0, -4294967296
  %phitmp394 = and i64 %1, -4294967296
  %phitmp395 = and i64 %1, 4294967295
  %exitcond = icmp eq i32 %inc, 63
  br i1 %exitcond, label %for.end, label %for.body

for.end:                                          ; preds = %for.body
  %2 = tail call i64 @llvm.hexagon.M2.cmacsc.s0(i64 %0, i32 undef, i32 undef)
  ret void
}

attributes #0 = { nounwind readnone }
attributes #1 = { "target-features"="-long-calls,-small-data" }