File: select-pr35926.mir

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (47 lines) | stat: -rw-r--r-- 1,525 bytes parent folder | download | duplicates (14)
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
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
# RUN: llc -mtriple arm-gnueabihf -mattr=+vfp4 -run-pass=instruction-select -o - %s | FileCheck %s
--- |
  declare double @llvm.fma.f64(double, double, double) #0

  define double @vfnmsd(double %x, double %y, double %z) #1 {
    %minus.y = fsub double -0.000000e+00, %y
    %fma = tail call double @llvm.fma.f64(double %x, double %minus.y, double %z)
    %minus.fma = fsub double -0.000000e+00, %fma
    ret double %minus.fma
  }

  ; Function Attrs: nounwind
  declare void @llvm.stackprotector(ptr, ptr) #2

  attributes #0 = { nounwind readnone speculatable "target-features"="+vfp4" }
  attributes #1 = { "target-features"="+vfp4" }
  attributes #2 = { nounwind }

...
---
name:            vfnmsd
legalized:       true
regBankSelected: true
selected:        false
body:             |
  bb.1 (%ir-block.0):
    liveins: $d0, $d1, $d2

    ; CHECK-LABEL: name: vfnmsd
    ; CHECK: [[COPY:%[0-9]+]]:dpr = COPY $d0
    ; CHECK: [[COPY1:%[0-9]+]]:dpr = COPY $d1
    ; CHECK: [[COPY2:%[0-9]+]]:dpr = COPY $d2
    ; CHECK: [[VFNMSD:%[0-9]+]]:dpr = VFNMSD [[COPY2]], [[COPY1]], [[COPY]], 14 /* CC::al */, $noreg
    ; CHECK: $d0 = COPY [[VFNMSD]]
    ; CHECK: MOVPCLR 14 /* CC::al */, $noreg, implicit $d0
    %0:fprb(s64) = COPY $d0
    %1:fprb(s64) = COPY $d1
    %2:fprb(s64) = COPY $d2
    %3:fprb(s64) = G_FNEG %1
    %4:fprb(s64) = G_FMA %0, %3, %2
    %5:fprb(s64) = G_FNEG %4
    $d0 = COPY %5(s64)
    MOVPCLR 14, $noreg, implicit $d0


...