Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp7494 unsigned FusedOp = getFusedOpcode(DAG, N, LHS.getNode()); in performFAddCombine() local
7495 if (FusedOp != 0) { in performFAddCombine()
7497 return DAG.getNode(FusedOp, SL, VT, A, Two, RHS); in performFAddCombine()
7506 unsigned FusedOp = getFusedOpcode(DAG, N, RHS.getNode()); in performFAddCombine() local
7507 if (FusedOp != 0) { in performFAddCombine()
7509 return DAG.getNode(FusedOp, SL, VT, A, Two, LHS); in performFAddCombine()
7538 unsigned FusedOp = getFusedOpcode(DAG, N, LHS.getNode()); in performFSubCombine() local
7539 if (FusedOp != 0){ in performFSubCombine()
7543 return DAG.getNode(FusedOp, SL, VT, A, Two, NegRHS); in performFSubCombine()
7553 unsigned FusedOp = getFusedOpcode(DAG, N, RHS.getNode()); in performFSubCombine() local
[all …]