reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/TargetLowering.cpp
 5837   unsigned EltSizeInBits = VT.getScalarSizeInBits();
 5848   if (isOperationLegal(RevRot, VT)) {
 5850     Result = DAG.getNode(RevRot, DL, VT, Op0, Sub);
 5854   if (VT.isVector() && (!isOperationLegalOrCustom(ISD::SHL, VT) ||
 5854   if (VT.isVector() && (!isOperationLegalOrCustom(ISD::SHL, VT) ||
 5855                         !isOperationLegalOrCustom(ISD::SRL, VT) ||
 5856                         !isOperationLegalOrCustom(ISD::SUB, VT) ||
 5857                         !isOperationLegalOrCustomOrPromote(ISD::OR, VT) ||
 5858                         !isOperationLegalOrCustomOrPromote(ISD::AND, VT)))
 5873   Result = DAG.getNode(ISD::OR, DL, VT, DAG.getNode(ShOpc, DL, VT, Op0, And0),
 5873   Result = DAG.getNode(ISD::OR, DL, VT, DAG.getNode(ShOpc, DL, VT, Op0, And0),
 5874                        DAG.getNode(HsOpc, DL, VT, Op0, And1));