Home
last modified time | relevance | path

Searched refs:SoftFloat (Results 1 – 25 of 29) sorted by relevance

12

/freebsd/lib/libc/softfloat/
H A DREADME.txt3 Package Overview for SoftFloat Release 2a
9 SoftFloat is a software implementation of floating-point that conforms to
10 the IEC/IEEE Standard for Binary Floating-Point Arithmetic. SoftFloat is
11 distributed in the form of C source code. Compiling the SoftFloat sources
14 -- A SoftFloat object file (typically `softfloat.o') containing the complete
17 -- A `timesoftfloat' program for evaluating the speed of the SoftFloat
18 routines. (The SoftFloat module is linked into this program.)
20 The SoftFloat package is documented in four text files:
22 softfloat.txt Documentation for using the SoftFloat functions.
23 softfloat-source.txt Documentation for compiling SoftFloat.
[all …]
H A Dsoftfloat-source.txt3 SoftFloat Release 2a Source Documentation
12 SoftFloat is a software implementation of floating-point that conforms to
13 the IEC/IEEE Standard for Binary Floating-Point Arithmetic. SoftFloat can
17 decimal. SoftFloat is distributed in the form of C source code, so a
23 SoftFloat.
25 The source code for SoftFloat is intended to be relatively machine-
27 time of this writing, SoftFloat has been successfully compiled with the GNU
34 SoftFloat as written requires an ISO/ANSI-style C compiler. No attempt has
36 style'' compilers are not adequate for compiling SoftFloat. All testing I
40 The SoftFloat sources assume that source code file names can be longer than
[all …]
H A Dsoftfloat.txt3 SoftFloat Release 2a General Documentation
12 SoftFloat is a software implementation of floating-point that conforms to
19 implemented by SoftFloat. It does not attempt to define or explain the
27 SoftFloat is written in C and is designed to work with other C code. The
28 SoftFloat header files assume an ISO/ANSI-style C compiler. No attempt
35 largest integer format supported by the C compiler is 32 bits, SoftFloat is
67 SoftFloat was written by John R. Hauser. This work was made possible in
111 SoftFloat implements the following arithmetic operations:
180 exception, the SoftFloat function `float_raise' should be used (see below).
182 In the terminology of the IEC/IEEE Standard, SoftFloat can detect tininess
[all …]
H A Dtimesoftfloat.txt3 Documentation for the `timesoftfloat' Program of SoftFloat Release 2a
12 The `timesoftfloat' program evaluates the speed of SoftFloat's floating-
55 the name of the SoftFloat routine to evaluate, such as `float32_add' or
90 function itself and is not a failing of the SoftFloat implementation.
H A DREADME.NetBSD3 This is a modified version of part of John Hauser's SoftFloat 2a package.
H A Dsoftfloat-history.txt3 History of Major Changes to SoftFloat, up to Release 2a
H A Dsoftfloat-specialize8 This C source fragment is part of the SoftFloat IEC/IEEE Floating-point
19 arithmetic/SoftFloat.html'.
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DSystemZ.h58 bool SoftFloat; variable
65 HasTransactionalExecution(false), HasVector(false), SoftFloat(false), in SystemZTargetInfo()
217 SoftFloat = false; in handleTargetFeatures()
225 SoftFloat = true; in handleTargetFeatures()
229 HasVector &= !SoftFloat; in handleTargetFeatures()
H A DSparc.h25 bool SoftFloat; variable
29 : TargetInfo(Triple), SoftFloat(false) {} in SparcTargetInfo()
43 SoftFloat = true; in handleTargetFeatures()
H A DMips.h52 enum MipsFloatABI { HardFloat, SoftFloat } FloatABI; enumerator
253 return FloatABI != SoftFloat; in validateAsmConstraint()
334 FloatABI = SoftFloat; in handleTargetFeatures()
H A DARM.cpp516 SoftFloat = false; in handleTargetFeatures()
533 SoftFloat = true; in handleTargetFeatures()
656 .Case("softfloat", SoftFloat) in hasFeature()
658 .Case("neon", (FPU & NeonFPU) && !SoftFloat) in hasFeature()
659 .Case("vfp", FPU && !SoftFloat) in hasFeature()
668 return HasBFloat16 || (FPU && !SoftFloat); in hasBFloat16Type()
837 if ((!SoftFloat && !SoftFloatABI) || ABI == "aapcs-vfp" || ABI == "aapcs16") in getTargetDefines()
840 if (SoftFloat || (SoftFloatABI && !FPU)) in getTargetDefines()
958 if ((FPU & NeonFPU) && !SoftFloat && ArchVersion >= 7) { in getTargetDefines()
H A DPPC.h57 enum PPCFloatABI { HardFloat, SoftFloat } FloatABI; enumerator
218 if (FloatABI == SoftFloat) in validateAsmConstraint()
231 if (FloatABI == SoftFloat) in validateAsmConstraint()
H A DMips.cpp136 case SoftFloat: in getTargetDefines()
290 if (FloatABI == SoftFloat && HasMSA) { in validateTarget()
H A DPPC.cpp74 FloatABI = SoftFloat; in handleTargetFeatures()
397 if (HasSPE || FloatABI == SoftFloat) in getTargetDefines()
399 if (FloatABI == SoftFloat) { in getTargetDefines()
H A DARM.h76 unsigned SoftFloat : 1;
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetMachine.cpp192 bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool(); in getSubtargetImpl() local
193 if (SoftFloat) in getSubtargetImpl()
H A DSystemZFrameLowering.cpp886 bool SoftFloat = Subtarget.hasSoftFloat(); in getRegSpillOffset() local
888 if (usePackedStack(MF) && !(IsVarArg && !SoftFloat)) { in getRegSpillOffset()
916 bool SoftFloat = Subtarget.hasSoftFloat(); in usePackedStack() local
917 if (HasPackedStackAttr && BackChain && !SoftFloat) in usePackedStack()
H A DSystemZFeatures.td31 "soft-float", "SoftFloat", (all_of FeatureSoftFloat),
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetMachine.cpp381 bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool(); in getSubtargetImpl() local
384 if (SoftFloat) in getSubtargetImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetMachine.cpp277 bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool(); in getSubtargetImpl() local
280 if (SoftFloat) in getSubtargetImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetMachine.cpp326 bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool(); in getSubtargetImpl() local
329 if (SoftFloat) in getSubtargetImpl()
/freebsd/lib/libc/softfloat/templates/
H A Dsoftfloat-specialize5 This C source fragment is part of the SoftFloat IEC/IEEE Floating-point
16 arithmetic/SoftFloat.html'.
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp982 auto SoftFloat = MultilibBuilder("/soft-float").flag("-msoft-float"); in findMipsCsMultilibs() local
1008 .Either(SoftFloat, Nan2008, DefaultFloat) in findMipsCsMultilibs()
1153 auto SoftFloat = MultilibBuilder("/sof").flag("-msoft-float"); in findMipsMtiMultilibs() local
1172 .Maybe(SoftFloat) in findMipsMtiMultilibs()
1578 auto SoftFloat = MultilibBuilder("").flag("-soft"); in findCSKYMultilibs() local
1597 .Either(HardFloat, SoftFpFloat, SoftFloat) in findCSKYMultilibs()
/freebsd/lib/libc/softfloat/bits32/
H A Dsoftfloat-macros5 This C source fragment is part of the SoftFloat IEC/IEEE Floating-point
16 arithmetic/SoftFloat.html'.
/freebsd/lib/libc/softfloat/bits64/
H A Dsoftfloat-macros6 This C source fragment is part of the SoftFloat IEC/IEEE Floating-point
17 arithmetic/SoftFloat.html'.

12