Searched refs:FusedOp (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIISelLowering.cpp | 15258 unsigned FusedOp = getFusedOpcode(DAG, N, LHS.getNode()); in performFAddCombine() local 15259 if (FusedOp != 0) { in performFAddCombine() 15261 return DAG.getNode(FusedOp, SL, VT, A, Two, RHS); in performFAddCombine() 15270 unsigned FusedOp = getFusedOpcode(DAG, N, RHS.getNode()); in performFAddCombine() local 15271 if (FusedOp != 0) { in performFAddCombine() 15273 return DAG.getNode(FusedOp, SL, VT, A, Two, LHS); in performFAddCombine() 15302 unsigned FusedOp = getFusedOpcode(DAG, N, LHS.getNode()); in performFSubCombine() local 15303 if (FusedOp != 0) { in performFSubCombine() 15307 return DAG.getNode(FusedOp, SL, VT, A, Two, NegRHS); in performFSubCombine() 15317 unsigned FusedOp = getFusedOpcode(DAG, N, RHS.getNode()); in performFSubCombine() local [all …]
|