File: cttz.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, 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 (104 lines) | stat: -rw-r--r-- 3,119 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -O0 -mtriple=mipsel-linux-gnu -global-isel -verify-machineinstrs %s -o -| FileCheck %s -check-prefixes=MIPS32

define i32 @cttz_i32(i32 %a) {
; MIPS32-LABEL: cttz_i32:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    not $1, $4
; MIPS32-NEXT:    addiu $2, $4, -1
; MIPS32-NEXT:    and $2, $1, $2
; MIPS32-NEXT:    ori $1, $zero, 32
; MIPS32-NEXT:    clz $2, $2
; MIPS32-NEXT:    subu $2, $1, $2
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %0 = call i32 @llvm.cttz.i32(i32 %a, i1 false)
  ret i32 %0
}
declare i32 @llvm.cttz.i32(i32, i1 immarg)

define i64 @cttz_i64(i64  %a) {
; MIPS32-LABEL: cttz_i64:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    ori $3, $zero, 0
; MIPS32-NEXT:    not $1, $5
; MIPS32-NEXT:    addiu $2, $5, -1
; MIPS32-NEXT:    and $1, $1, $2
; MIPS32-NEXT:    ori $2, $zero, 32
; MIPS32-NEXT:    clz $1, $1
; MIPS32-NEXT:    subu $1, $2, $1
; MIPS32-NEXT:    addiu $1, $1, 32
; MIPS32-NEXT:    not $5, $4
; MIPS32-NEXT:    addiu $6, $4, -1
; MIPS32-NEXT:    and $5, $5, $6
; MIPS32-NEXT:    clz $5, $5
; MIPS32-NEXT:    subu $2, $2, $5
; MIPS32-NEXT:    movz $2, $1, $4
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %0 = call i64 @llvm.cttz.i64(i64 %a, i1 false)
  ret i64 %0
}
declare i64 @llvm.cttz.i64(i64, i1 immarg)


define i32 @ffs_i32_expansion(i32 %a) {
; MIPS32-LABEL: ffs_i32_expansion:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    ori $1, $zero, 0
; MIPS32-NEXT:    not $2, $4
; MIPS32-NEXT:    addiu $3, $4, -1
; MIPS32-NEXT:    and $3, $2, $3
; MIPS32-NEXT:    ori $2, $zero, 32
; MIPS32-NEXT:    clz $3, $3
; MIPS32-NEXT:    subu $2, $2, $3
; MIPS32-NEXT:    addiu $2, $2, 1
; MIPS32-NEXT:    movz $2, $1, $4
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %0 = call i32 @llvm.cttz.i32(i32 %a, i1 true)
  %1 = add nuw nsw i32 %0, 1
  %iszero = icmp eq i32 %a, 0
  %ffs = select i1 %iszero, i32 0, i32 %1
  ret i32 %ffs
}

define i64 @ffs_i64_expansion(i64 %a) {
; MIPS32-LABEL: ffs_i64_expansion:
; MIPS32:       # %bb.0: # %entry
; MIPS32-NEXT:    ori $3, $zero, 1
; MIPS32-NEXT:    ori $1, $zero, 0
; MIPS32-NEXT:    not $2, $5
; MIPS32-NEXT:    addiu $6, $5, -1
; MIPS32-NEXT:    and $6, $2, $6
; MIPS32-NEXT:    ori $2, $zero, 32
; MIPS32-NEXT:    clz $6, $6
; MIPS32-NEXT:    subu $6, $2, $6
; MIPS32-NEXT:    addiu $6, $6, 32
; MIPS32-NEXT:    not $7, $4
; MIPS32-NEXT:    addiu $8, $4, -1
; MIPS32-NEXT:    and $7, $7, $8
; MIPS32-NEXT:    clz $7, $7
; MIPS32-NEXT:    subu $2, $2, $7
; MIPS32-NEXT:    movz $2, $6, $4
; MIPS32-NEXT:    addiu $2, $2, 1
; MIPS32-NEXT:    sltu $6, $2, $3
; MIPS32-NEXT:    addiu $3, $1, 0
; MIPS32-NEXT:    addu $3, $3, $6
; MIPS32-NEXT:    xori $4, $4, 0
; MIPS32-NEXT:    xori $5, $5, 0
; MIPS32-NEXT:    or $4, $4, $5
; MIPS32-NEXT:    movz $2, $1, $4
; MIPS32-NEXT:    movz $3, $1, $4
; MIPS32-NEXT:    jr $ra
; MIPS32-NEXT:    nop
entry:
  %0 = call i64 @llvm.cttz.i64(i64 %a, i1 true)
  %1 = add nuw nsw i64 %0, 1
  %iszero = icmp eq i64 %a, 0
  %ffs = select i1 %iszero, i64 0, i64 %1
  ret i64 %ffs
}