Searched refs:FMAD (Results 1 - 8 of 8) sorted by relevance
/external/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 246 /// FMAD - Perform a * b + c, while getting the same result as the 248 FMAD, enumerator in enum:llvm::ISD::NodeType
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGDumper.cpp | 201 case ISD::FMAD: return "fmad";
|
H A D | DAGCombiner.cpp | 7642 bool HasFMAD = (LegalOperations && TLI.isOperationLegal(ISD::FMAD, VT)); 7653 // Always prefer FMAD to FMA for precision. 7654 unsigned PreferredFusedOpcode = HasFMAD ? ISD::FMAD : ISD::FMA; 7825 bool HasFMAD = (LegalOperations && TLI.isOperationLegal(ISD::FMAD, VT)); 7836 // Always prefer FMAD to FMA for precision. 7837 unsigned PreferredFusedOpcode = HasFMAD ? ISD::FMAD : ISD::FMA; 8091 bool HasFMAD = (LegalOperations && TLI.isOperationLegal(ISD::FMAD, VT)); 8102 // Always prefer FMAD to FMA for precision. 8103 unsigned PreferredFusedOpcode = HasFMAD ? ISD::FMAD : ISD::FMA;
|
H A D | LegalizeFloatTypes.cpp | 1880 case ISD::FMA: // FMA is same as FMAD 1881 case ISD::FMAD: R = PromoteFloatRes_FMAD(N); break;
|
H A D | LegalizeDAG.cpp | 3384 case ISD::FMAD:
|
/external/llvm/lib/Target/AMDGPU/ |
H A D | SIISelLowering.cpp | 2055 return DAG.getNode(ISD::FMAD, DL, VT, Two, A, RHS); 2064 return DAG.getNode(ISD::FMAD, DL, VT, Two, A, LHS); 2093 return DAG.getNode(ISD::FMAD, DL, VT, Two, A, NegRHS); 2103 return DAG.getNode(ISD::FMAD, DL, VT, NegTwo, A, LHS);
|
H A D | AMDGPUISelLowering.cpp | 103 setOperationAction(ISD::FMAD, MVT::f32, Legal);
|
/external/llvm/lib/CodeGen/ |
H A D | TargetLoweringBase.cpp | 792 setOperationAction(ISD::FMAD, VT, Expand);
|
Completed in 182 milliseconds