File: pr34045-2.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 (25 lines) | stat: -rw-r--r-- 930 bytes parent folder | download | duplicates (12)
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
; RUN: llc < %s -mtriple thumbv7 | FileCheck %s

define hidden void @foo(ptr %ptr, i1 zeroext %long_blocks) {
entry:
; This test is actually checking that no cycle is introduced but at least we
; want to see one umull.
; CHECK: umull
  %0 = load i32, ptr %ptr, align 4
  %conv.i.i13.i = zext i32 %0 to i64
  %mul.i.i14.i = mul nuw nsw i64 %conv.i.i13.i, 18782
  %1 = load i32, ptr undef, align 4
  %conv4.i.i16.i = zext i32 %1 to i64
  %add5.i.i17.i = add nuw nsw i64 %mul.i.i14.i, %conv4.i.i16.i
  %shr.i.i18.i = lshr i64 %add5.i.i17.i, 32
  %add10.i.i20.i = add nuw nsw i64 %shr.i.i18.i, %add5.i.i17.i
  %conv11.i.i21.i = trunc i64 %add10.i.i20.i to i32
  %x.0.neg.i.i26.i = sub i32 -2, %conv11.i.i21.i
  %sub.i.i27.i = add i32 %x.0.neg.i.i26.i, 0
  store i32 %sub.i.i27.i, ptr %ptr, align 4
  br label %while.body.i

while.body.i:                                     ; preds = %while.body.i, %entry
  br label %while.body.i
}