File: mem-ops-sub_i16_01.ll

package info (click to toggle)
llvm-toolchain-16 1%3A16.0.6-15~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,634,792 kB
  • sloc: cpp: 6,179,261; ansic: 1,216,205; asm: 741,319; python: 196,614; objc: 75,325; f90: 49,640; lisp: 32,396; pascal: 12,286; sh: 9,394; perl: 7,442; ml: 5,494; awk: 3,523; makefile: 2,723; javascript: 1,206; xml: 886; fortran: 581; cs: 573
file content (44 lines) | stat: -rw-r--r-- 1,153 bytes parent folder | download | duplicates (8)
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
; RUN: llc -O2 -march=hexagon < %s | FileCheck %s
; Test that we do not exceed #u5 in memops.
; CHECK-NOT: memh(r2+#0) -= #32

@g0 = unnamed_addr global i16 -32, align 2

; Function Attrs: norecurse nounwind
define fastcc void @f0() unnamed_addr #0 {
b0:
  %v0 = load i16, ptr @g0, align 1, !tbaa !4
  %v1 = zext i16 %v0 to i32
  %v2 = mul nuw nsw i32 %v1, 9625
  %v3 = and i32 %v2, 255
  %v4 = mul nuw nsw i32 %v3, 9625
  %v5 = and i32 %v4, 255
  %v6 = trunc i32 %v5 to i16
  store i16 %v6, ptr @g0, align 2, !tbaa !4
  ret void
}

define i32 @f1() {
b0:
  %v0 = load i16, ptr @g0, align 2, !tbaa !4
  %v1 = zext i16 %v0 to i32
  %v2 = add nuw nsw i32 %v1, 65504
  %v3 = trunc i32 %v2 to i16
  store i16 %v3, ptr @g0, align 2, !tbaa !4
  tail call fastcc void @f0()
  %v4 = load i16, ptr @g0, align 2, !tbaa !4
  %v5 = zext i16 %v4 to i32
  ret i32 %v5
}

attributes #0 = { norecurse nounwind "target-cpu"="hexagonv55" }

!llvm.module.flags = !{!0, !2}

!0 = !{i32 6, !"Target CPU", !1}
!1 = !{!"hexagonv55"}
!2 = !{i32 6, !"Target Features", !3}
!3 = !{!"-hvx"}
!4 = !{!5, !5, i64 0}
!5 = !{!"omnipotent char", !6, i64 0}
!6 = !{!"Simple C/C++ TBAA"}