File: float-ops-xo.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 (49 lines) | stat: -rw-r--r-- 1,311 bytes parent folder | download | duplicates (10)
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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 2
; RUN: llc < %s -mtriple=thumbv8.1m.main-none-eabihf -mattr=+mve,+execute-only | FileCheck %s
; RUN: llc < %s -mtriple=thumbv6m -mattr=+execute-only | FileCheck %s --check-prefix=V6M

declare void @ext_fn(float)

define void @test1() {
; CHECK-LABEL: test1:
; CHECK:       @ %bb.0: @ %entry
; CHECK-NEXT:    .save {r7, lr}
; CHECK-NEXT:    push {r7, lr}
; CHECK-NEXT:    movs r0, #0
; CHECK-NEXT:    vmov s0, r0
; CHECK-NEXT:    bl ext_fn
; CHECK-NEXT:    pop {r7, pc}
;
; V6M-LABEL: test1:
; V6M:       @ %bb.0: @ %entry
; V6M-NEXT:    push {r7, lr}
; V6M-NEXT:    movs r0, #0
; V6M-NEXT:    bl ext_fn
; V6M-NEXT:    pop {r7, pc}
entry:
  call void @ext_fn(float 0.000000e+00)
  ret void
}

define float @test2() {
; CHECK-LABEL: test2:
; CHECK:       @ %bb.0: @ %entry
; CHECK-NEXT:    movw r0, #63911
; CHECK-NEXT:    movt r0, #16673
; CHECK-NEXT:    vmov s0, r0
; CHECK-NEXT:    bx lr
;
; V6M-LABEL: test2:
; V6M:       @ %bb.0: @ %entry
; V6M-NEXT:    movs r0, #65
; V6M-NEXT:    lsls r0, r0, #8
; V6M-NEXT:    adds r0, #33
; V6M-NEXT:    lsls r0, r0, #8
; V6M-NEXT:    adds r0, #249
; V6M-NEXT:    lsls r0, r0, #8
; V6M-NEXT:    adds r0, #167
; V6M-NEXT:    bx lr
entry:
  ret float 0x40243F34E0000000
}