Home
last modified time | relevance | path

Searched refs:FusedOp (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp14323 unsigned FusedOp = getFusedOpcode(DAG, N, LHS.getNode()); in performFAddCombine() local
14324 if (FusedOp != 0) { in performFAddCombine()
14326 return DAG.getNode(FusedOp, SL, VT, A, Two, RHS); in performFAddCombine()
14335 unsigned FusedOp = getFusedOpcode(DAG, N, RHS.getNode()); in performFAddCombine() local
14336 if (FusedOp != 0) { in performFAddCombine()
14338 return DAG.getNode(FusedOp, SL, VT, A, Two, LHS); in performFAddCombine()
14367 unsigned FusedOp = getFusedOpcode(DAG, N, LHS.getNode()); in performFSubCombine() local
14368 if (FusedOp != 0){ in performFSubCombine()
14372 return DAG.getNode(FusedOp, SL, VT, A, Two, NegRHS); in performFSubCombine()
14382 unsigned FusedOp = getFusedOpcode(DAG, N, RHS.getNode()); in performFSubCombine() local
[all …]