File: fcopysign.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (65 lines) | stat: -rw-r--r-- 2,343 bytes parent folder | download | duplicates (6)
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
; RUN: llc  < %s -verify-machineinstrs -mtriple=mipsel -mcpu=mips32 \
; RUN:   | FileCheck %s -check-prefix=32
; RUN: llc  < %s -verify-machineinstrs -mtriple=mipsel -mcpu=mips32r2 \
; RUN:   | FileCheck %s -check-prefix=32R2
; RUN: llc  < %s -verify-machineinstrs -mtriple=mips64el -mcpu=mips4 -target-abi=n64 \
; RUN:   | FileCheck %s -check-prefix=64
; RUN: llc  < %s -verify-machineinstrs -mtriple=mips64el -mcpu=mips64 -target-abi=n64 \
; RUN:   | FileCheck %s -check-prefix=64
; RUN: llc  < %s -verify-machineinstrs -mtriple=mips64el -mcpu=mips64r2 -target-abi=n64 \
; RUN:   | FileCheck %s -check-prefix=64R2

define double @func0(double %d0, double %d1) nounwind readnone {
entry:
;
; 32: lui  $[[MSK1:[0-9]+]], 32768
; 32: and  $[[AND1:[0-9]+]], ${{[0-9]+}}, $[[MSK1]]
; 32: lui  $[[T0:[0-9]+]], 32767
; 32: ori  $[[MSK0:[0-9]+]], $[[T0]], 65535
; 32: and  $[[AND0:[0-9]+]], ${{[0-9]+}}, $[[MSK0]]
; 32: or   $[[OR:[0-9]+]], $[[AND0]], $[[AND1]]
; 32: mtc1 $[[OR]], $f1

; 32R2: ext  $[[EXT:[0-9]+]], ${{[0-9]+}}, 31, 1
; 32R2: ins  $[[INS:[0-9]+]], $[[EXT]], 31, 1
; 32R2: mthc1 $[[INS]], $f0

; 64: daddiu $[[T0:[0-9]+]], $zero, 1
; 64: dsll   $[[MSK1:[0-9]+]], $[[T0]], 63
; 64: and    $[[AND1:[0-9]+]], ${{[0-9]+}}, $[[MSK1]]
; 64: daddiu $[[MSK0:[0-9]+]], $[[MSK1]], -1
; 64: and    $[[AND0:[0-9]+]], ${{[0-9]+}}, $[[MSK0]]
; 64: or     $[[OR:[0-9]+]], $[[AND0]], $[[AND1]]
; 64: dmtc1  $[[OR]], $f0

; 64R2: dextu  $[[EXT:[0-9]+]], ${{[0-9]+}}, 63, 1
; 64R2: dinsu  $[[INS:[0-9]+]], $[[EXT]], 63, 1
; 64R2: dmtc1  $[[INS]], $f0

  %call = tail call double @copysign(double %d0, double %d1) nounwind readnone
  ret double %call
}

declare double @copysign(double, double) nounwind readnone

define float @func1(float %f0, float %f1) nounwind readnone {
entry:

; 32: lui  $[[MSK1:[0-9]+]], 32768
; 32: and  $[[AND1:[0-9]+]], ${{[0-9]+}}, $[[MSK1]]
; 32: lui  $[[T0:[0-9]+]], 32767
; 32: ori  $[[MSK0:[0-9]+]], $[[T0]], 65535
; 32: and  $[[AND0:[0-9]+]], ${{[0-9]+}}, $[[MSK0]]
; 32: or   $[[OR:[0-9]+]], $[[AND0]], $[[AND1]]
; 32: mtc1 $[[OR]], $f0

; 32R2: ext  $[[EXT:[0-9]+]], ${{[0-9]+}}, 31, 1
; 32R2: ins  $[[INS:[0-9]+]], $[[EXT]], 31, 1
; 32R2: mtc1 $[[INS]], $f0

  %call = tail call float @copysignf(float %f0, float %f1) nounwind readnone
  ret float %call
}

declare float @copysignf(float, float) nounwind readnone