File: foldimmediate-size.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 (57 lines) | stat: -rw-r--r-- 2,085 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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 3
; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s

; When optimize for size, the constant $858993459 is moved into a register,
; and use that register in following two andl instructions.

define i32 @cnt32_optsize(i32 %x) nounwind readnone optsize {
; CHECK-LABEL: cnt32_optsize:
; CHECK:       # %bb.0:
; CHECK-NEXT:    movl %edi, %eax
; CHECK-NEXT:    shrl %eax
; CHECK-NEXT:    andl $1431655765, %eax # imm = 0x55555555
; CHECK-NEXT:    subl %eax, %edi
; CHECK-NEXT:    movl $858993459, %eax # imm = 0x33333333
; CHECK-NEXT:    movl %edi, %ecx
; CHECK-NEXT:    andl %eax, %ecx
; CHECK-NEXT:    shrl $2, %edi
; CHECK-NEXT:    andl %eax, %edi
; CHECK-NEXT:    addl %ecx, %edi
; CHECK-NEXT:    movl %edi, %eax
; CHECK-NEXT:    shrl $4, %eax
; CHECK-NEXT:    addl %edi, %eax
; CHECK-NEXT:    andl $252645135, %eax # imm = 0xF0F0F0F
; CHECK-NEXT:    imull $16843009, %eax, %eax # imm = 0x1010101
; CHECK-NEXT:    shrl $24, %eax
; CHECK-NEXT:    retq
  %cnt = tail call i32 @llvm.ctpop.i32(i32 %x)
  ret i32 %cnt
}

; When optimize for speed, the constant $858993459 can be directly folded into
; two andl instructions.

define i32 @cnt32_optspeed(i32 %x) nounwind readnone {
; CHECK-LABEL: cnt32_optspeed:
; CHECK:       # %bb.0:
; CHECK-NEXT:    movl %edi, %eax
; CHECK-NEXT:    shrl %eax
; CHECK-NEXT:    andl $1431655765, %eax # imm = 0x55555555
; CHECK-NEXT:    subl %eax, %edi
; CHECK-NEXT:    movl %edi, %eax
; CHECK-NEXT:    andl $858993459, %eax # imm = 0x33333333
; CHECK-NEXT:    shrl $2, %edi
; CHECK-NEXT:    andl $858993459, %edi # imm = 0x33333333
; CHECK-NEXT:    addl %eax, %edi
; CHECK-NEXT:    movl %edi, %eax
; CHECK-NEXT:    shrl $4, %eax
; CHECK-NEXT:    addl %edi, %eax
; CHECK-NEXT:    andl $252645135, %eax # imm = 0xF0F0F0F
; CHECK-NEXT:    imull $16843009, %eax, %eax # imm = 0x1010101
; CHECK-NEXT:    shrl $24, %eax
; CHECK-NEXT:    retq
  %cnt = tail call i32 @llvm.ctpop.i32(i32 %x)
  ret i32 %cnt
}

declare i32 @llvm.ctpop.i32(i32) nounwind readnone