Searched refs:HasROTR (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3227 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT); local
3228 if (!HasROTL && !HasROTR) return 0;
3315 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3316 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
3355 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3357 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();

Completed in 90 milliseconds