mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
e777fb4725
Summary: They behave in accordance with the Has2008 and ABS2008 configuration bits of the processor which are used to select between the 1985 and 2008 versions of IEEE 754. In 1985 mode, these instructions are arithmetic (i.e. they raise invalid operation exceptions when given NaN), in 2008 mode they are non-arithmetic (i.e. they are copies). nmadd.[ds], and nmsub.[ds] are still subject to -enable-no-nans-fp-math because the ISA spec does not explicitly state that they obey Has2008 and ABS2008. Fixed the issue with the previous version of this patch (r205628). A pre-existing 'let Predicate =' statement was removing some predicates that were necessary for FP64 to behave correctly. Reviewers: matheusalmeida Reviewed By: matheusalmeida Differential Revision: http://llvm-reviews.chandlerc.com/D3274 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205844 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
1.2 KiB
LLVM
31 lines
1.2 KiB
LLVM
; Check that abs.[ds] is selected and does not depend on -enable-no-nans-fp-math
|
|
; They obey the Has2008 and ABS2008 configuration bits which govern the
|
|
; conformance to IEEE 754 (1985) and IEEE 754 (2008). When these bits are not
|
|
; present, they confirm to 1985.
|
|
; In 1985 mode, abs.[ds] are arithmetic (i.e. they raise invalid operation
|
|
; exceptions when given NaN's). In 2008 mode, they are non-arithmetic (i.e.
|
|
; they are copies and don't raise any exceptions).
|
|
|
|
; RUN: llc < %s -mtriple=mipsel-linux-gnu -mcpu=mips32 | FileCheck %s
|
|
; RUN: llc < %s -mtriple=mipsel-linux-gnu -mcpu=mips32r2 | FileCheck %s
|
|
; RUN: llc < %s -mtriple=mipsel-linux-gnu -mcpu=mips32 -enable-no-nans-fp-math | FileCheck %s
|
|
|
|
; RUN: llc < %s -mtriple=mips64el-linux-gnu -mcpu=mips64 | FileCheck %s
|
|
; RUN: llc < %s -mtriple=mips64el-linux-gnu -mcpu=mips64 -enable-no-nans-fp-math | FileCheck %s
|
|
|
|
define float @foo0(float %d) nounwind readnone {
|
|
entry:
|
|
; CHECK-LABEL: foo0:
|
|
; CHECK: neg.s
|
|
%sub = fsub float -0.000000e+00, %d
|
|
ret float %sub
|
|
}
|
|
|
|
define double @foo1(double %d) nounwind readnone {
|
|
entry:
|
|
; CHECK-LABEL: foo1:
|
|
; CHECK: neg.d
|
|
%sub = fsub double -0.000000e+00, %d
|
|
ret double %sub
|
|
}
|