HomeSort by: relevance | last modified time | path
    Searched refs:XVT (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.h 746 bool shouldTransformSignedTruncationCheck(EVT XVT,
749 if (XVT.isVector())
758 // XVT will be larger than KeptBitsVT.
760 return VTIsOk(XVT) && VTIsOk(KeptBitsVT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.h 1039 shouldTransformSignedTruncationCheck(EVT XVT,
1042 if (XVT.isVector())
1051 // XVT will be larger than KeptBitsVT.
1053 return VTIsOk(XVT) && VTIsOk(KeptBitsVT);
X86ISelDAGToDAG.cpp 3582 MVT XVT = X.getSimpleValueType();
3618 if (XVT != MVT::i32) {
3619 Control = CurDAG->getNode(ISD::ANY_EXTEND, DL, XVT, Control);
3624 SDValue Extract = CurDAG->getNode(X86ISD::BEXTR, DL, XVT, X, Control);
3627 if (XVT != NVT) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 4802 EVT XVT = X.getValueType();
4811 if (XVT != Y.getValueType())
4816 !TLI.isOperationLegalOrCustom(LogicOpcode, XVT))
4821 !TLI.isTypeDesirableForOp(LogicOpcode, XVT))
4824 SDValue Logic = DAG.getNode(LogicOpcode, DL, XVT, X, Y);
4835 if (XVT != Y.getValueType())
4838 if (LegalOperations && !TLI.isOperationLegal(LogicOpcode, XVT))
4842 if (TLI.isZExtFree(VT, XVT) && TLI.isTruncateFree(XVT, VT))
4844 if (!TLI.isTypeLegal(XVT))
    [all...]
TargetLowering.cpp 3228 EVT XVT = X.getValueType();
3263 assert(XVT.isInteger());
3264 NewCond = getSetCCInverse(NewCond, XVT);
3277 assert(KeptBits > 0 && KeptBits < XVT.getSizeInBits() && "unreachable");
3282 XVT, KeptBits))
3285 const unsigned MaskedBits = XVT.getSizeInBits() - KeptBits;
3286 assert(MaskedBits > 0 && MaskedBits < XVT.getSizeInBits() && "unreachable");
3290 SDValue ShiftAmt = DAG.getConstant(MaskedBits, DL, XVT);
3291 SDValue T0 = DAG.getNode(ISD::SHL, DL, XVT, X, ShiftAmt);
3292 SDValue T1 = DAG.getNode(ISD::SRA, DL, XVT, T0, ShiftAmt)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 3087 EVT XVT = X.getValueType();
3088 SDValue Shl = DAG.getNode(ISD::SHL, SL, XVT, X, SDValue(RHS, 0));
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetLowering.h 725 virtual bool shouldTransformSignedTruncationCheck(EVT XVT,

Completed in 66 milliseconds