Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3073 auto *XType = X->getType(); in foldICmpWithTruncSignExtendedVal() local
3074 const unsigned XBitWidth = XType->getScalarSizeInBits(); in foldICmpWithTruncSignExtendedVal()
3089 Value *T0 = Builder.CreateAdd(X, ConstantInt::get(XType, AddCst)); in foldICmpWithTruncSignExtendedVal()
3091 Value *T1 = Builder.CreateICmp(DstPred, T0, ConstantInt::get(XType, ICmpCst)); in foldICmpWithTruncSignExtendedVal()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp229 QualType XType = X.getNonTypeTemplateArgumentType(); in checkDeducedTemplateArguments() local
230 if (!XType.isNull()) { in checkDeducedTemplateArguments()
232 if (YType.isNull() || !Context.hasSameType(XType, YType)) in checkDeducedTemplateArguments()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp2448 EVT XType = SRASrc0.getValueType(); in tryABSOp() local
2449 unsigned Size = XType.getSizeInBits() - 1; in tryABSOp()
2452 XType.isInteger() && SRAConstant != nullptr && in tryABSOp()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp18432 EVT XType = N0.getValueType(); in foldSelectCCToShiftAnd() local
18434 if (!isNullConstant(N3) || !XType.bitsGE(AType)) in foldSelectCCToShiftAnd()
18459 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1; in foldSelectCCToShiftAnd()
18461 SDValue Shift = DAG.getNode(ISD::SRL, DL, XType, N0, ShiftAmt); in foldSelectCCToShiftAnd()
18464 if (XType.bitsGT(AType)) { in foldSelectCCToShiftAnd()
18475 SDValue ShiftAmt = DAG.getConstant(XType.getSizeInBits() - 1, DL, ShiftAmtTy); in foldSelectCCToShiftAnd()
18476 SDValue Shift = DAG.getNode(ISD::SRA, DL, XType, N0, ShiftAmt); in foldSelectCCToShiftAnd()
18479 if (XType.bitsGT(AType)) { in foldSelectCCToShiftAnd()