| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| R600Subtarget.h | 41 bool FMA; 126 bool hasFMA() const { return FMA; }
|
| GCNSubtarget.h | 105 bool FMA; 375 return FMA;
|
| SIISelLowering.cpp | 567 setOperationAction(ISD::FMA, MVT::f16, Legal); 683 setOperationAction(ISD::FMA, MVT::v2f16, Legal); 715 setOperationAction(ISD::FMA, MVT::v4f16, Custom); 731 setOperationAction(ISD::FMA, MVT::v2f32, Legal); 737 setOperationAction(ISD::FMA, VT, Custom); 807 setTargetDAGCombine(ISD::FMA); 869 (Opcode == ISD::FMA && Subtarget->hasFmaMixInsts())) && 4311 // This currently forces unfolding various combinations of fsub into fma with 4312 // free fneg'd operands. As long as we have fast FMA (controlled by 4315 // When fma is quarter rate, for f64 where add / sub are at best half rate [all...] |
| /src/external/mpl/dhcp/dist/server/ |
| failover.c | 4445 # define FMA obuf, &obufix, sizeof obuf 4446 failover_print (FMA, "(state"); 4448 # define FMA (char *)0, (unsigned *)0, 0 4462 dhcp_failover_make_option (FTO_SERVER_STATE, FMA, 4467 (FTO_SERVER_FLAGS, FMA, 4470 dhcp_failover_make_option (FTO_STOS, FMA, state -> me.stos), 4475 failover_print (FMA, " (failed)"); 4476 failover_print (FMA, ")"); 4497 # define FMA obuf, &obufix, sizeof obuf 4498 failover_print (FMA, "(connect") [all...] |
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| mathbuiltins.def | 63 OTHER_BUILTIN (FMA, "fma", 3, true)
|
| /src/external/gpl3/gcc/dist/gcc/config/i386/ |
| i386-isa.def | 29 DEF_PTA(FMA)
|
| /src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
| i386-isa.def | 29 DEF_PTA(FMA)
|
| /src/sys/external/mit/xen-include-public/dist/xen/include/public/arch-x86/ |
| cpufeatureset.h | 133 XEN_CPUFEATURE(FMA, 1*32+12) /*A Fused Multiply Add */
|
| /src/external/gpl3/gcc/dist/libgfortran/intrinsics/ |
| trigd.c | 338 #define FMA __fmaieee128
|
| /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/ |
| trigd.c | 320 #define FMA __fmaieee128
|
| /src/external/cddl/osnet/dev/dtrace/x86/ |
| dis_tables.c | 244 FMA, /* FMA instructions, all VEX_RMrX */ 1550 /* [94] */ INVALID, INVALID, TNSZ("vfmaddsub132p",FMA,16),TNSZ("vfmsubadd132p",FMA,16), 1551 /* [98] */ TNSZ("vfmadd132p",FMA,16),TNSZ("vfmadd132s",FMA,16),TNSZ("vfmsub132p",FMA,16),TNSZ("vfmsub132s",FMA,16), 1552 /* [9C] */ TNSZ("vfnmadd132p",FMA,16),TNSZ("vfnmadd132s",FMA,16),TNSZ("vfnmsub132p",FMA,16),TNSZ("vfnmsub132s",FMA,16) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| ISDOpcodes.h | 459 /// FMA - Perform a * b + c with no intermediate rounding step. 460 FMA,
|
| /src/external/gpl3/gcc/dist/gcc/ |
| loop-unroll.cc | 1377 if (code != PLUS && code != MINUS && code != MULT && code != FMA) 1384 /* In the case of FMA, we're also changing the rounding. */ 1385 if (code == FMA && !flag_unsafe_math_optimizations) 1407 if (code == FMA) 1409 /* We only support accumulation via FMA in the ADD position. */ 1430 if (code == FMA) 1866 case FMA: 1867 /* Note that we only accumulate FMA via the ADD operand. */ 1919 case FMA: 1920 /* Note that we only accumulate FMA via the ADD operand. * [all...] |
| rtl.def | 757 DEF_RTL_EXPR(FMA, "fma", "eee", RTX_TERNARY)
|
| internal-fn.def | 72 - ternary: a normal ternary optab, such as fma<mode>4 296 DEF_INTERNAL_COND_FN (FMA, ECF_CONST, fma, ternary) 436 DEF_INTERNAL_FLT_FLOATN_FN (FMA, ECF_CONST, fma, ternary)
|
| optabs.def | 315 OPTAB_DC(fma_optab, "fma$a4", FMA)
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| loop-unroll.cc | 1369 if (code != PLUS && code != MINUS && code != MULT && code != FMA) 1376 /* In the case of FMA, we're also changing the rounding. */ 1377 if (code == FMA && !flag_unsafe_math_optimizations) 1399 if (code == FMA) 1401 /* We only support accumulation via FMA in the ADD position. */ 1422 if (code == FMA) 1858 case FMA: 1859 /* Note that we only accumulate FMA via the ADD operand. */ 1911 case FMA: 1912 /* Note that we only accumulate FMA via the ADD operand. * [all...] |
| rtl.def | 754 DEF_RTL_EXPR(FMA, "fma", "eee", RTX_TERNARY)
|
| optabs.def | 276 OPTAB_DC(fma_optab, "fma$a4", FMA)
|
| internal-fn.def | 62 - ternary: a normal ternary optab, such as fma<mode>4 302 DEF_INTERNAL_FLT_FLOATN_FN (FMA, ECF_CONST, fma, ternary)
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| InterleavedLoadCombinePass.cpp | 1186 auto FMA = MSSA.getMemoryAccess(First); 1189 if (!MSSA.dominates(MADef, FMA))
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86IntrinsicsInfo.h | 929 X86_INTRINSIC_DATA(avx512_vfmadd_f32, INTR_TYPE_3OP, ISD::FMA, X86ISD::FMADD_RND), 930 X86_INTRINSIC_DATA(avx512_vfmadd_f64, INTR_TYPE_3OP, ISD::FMA, X86ISD::FMADD_RND), 931 X86_INTRINSIC_DATA(avx512_vfmadd_pd_512, INTR_TYPE_3OP, ISD::FMA, X86ISD::FMADD_RND), 932 X86_INTRINSIC_DATA(avx512_vfmadd_ps_512, INTR_TYPE_3OP, ISD::FMA, X86ISD::FMADD_RND),
|
| /src/external/gpl3/gcc/dist/gcc/config/arm/ |
| aarch-common.cc | 461 case FMA:
|
| /src/external/gpl3/gcc.old/dist/gcc/config/arm/ |
| aarch-common.cc | 459 case FMA:
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| AutoUpgrade.cpp | 115 Name.startswith("fma.vfmadd.") || // Added in 7.0 116 Name.startswith("fma.vfmsub.") || // Added in 7.0 117 Name.startswith("fma.vfmsubadd.") || // Added in 7.0 118 Name.startswith("fma.vfnmadd.") || // Added in 7.0 119 Name.startswith("fma.vfnmsub.") || // Added in 7.0 3214 } else if (IsX86 && (Name.startswith("fma.vfmadd.") || 3215 Name.startswith("fma.vfmsub.") || 3216 Name.startswith("fma.vfnmadd.") || 3217 Name.startswith("fma.vfnmsub."))) { 3239 Intrinsic::fma, [all...] |