File: fp64-to-int16.ll

package info (click to toggle)
llvm-toolchain-6.0 1%3A6.0.1-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 598,080 kB
  • sloc: cpp: 3,046,253; ansic: 595,057; asm: 271,965; python: 128,926; objc: 106,554; sh: 21,906; lisp: 10,191; pascal: 6,094; ml: 5,544; perl: 5,265; makefile: 2,227; cs: 2,027; xml: 686; php: 212; csh: 117
file content (21 lines) | stat: -rw-r--r-- 590 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -O0 < %s | FileCheck %s
target triple = "powerpc64le--linux-gnu"

define i1 @Test(double %a) {
; CHECK-LABEL: Test:
; CHECK:       # %bb.0: # %entry
; CHECK-NEXT:    xscvdpsxws 1, 1
; CHECK-NEXT:    mfvsrwz 3, 1
; CHECK-NEXT:    xori 3, 3, 65534
; CHECK-NEXT:    cntlzw 3, 3
; CHECK-NEXT:    srwi 3, 3, 5
; CHECK-NEXT:    # implicit-def: %x4
; CHECK-NEXT:    mr 4, 3
; CHECK-NEXT:    mr 3, 4
; CHECK-NEXT:    blr
entry:
  %conv = fptoui double %a to i16
  %cmp = icmp eq i16 %conv, -2
  ret i1 %cmp
}