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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 2332 auto *XType = cast<FixedVectorType>(X->getType());
2333 unsigned XNumElts = XType->getNumElements();
2346 if (auto *V = SimplifyShuffleVectorInst(X, UndefValue::get(XType),
2347 ScaledMask, XType, ShufQuery))
InstCombineCompares.cpp 2829 Type *XType = X->getType();
2832 if (!(XType->isPPC_FP128Ty() || BCSrcOp->getType()->isPPC_FP128Ty())) {
2834 Type *NewType = Builder.getIntNTy(XType->getScalarSizeInBits());
2835 if (auto *XVTy = dyn_cast<VectorType>(XType))
3487 auto *XType = X->getType();
3488 const unsigned XBitWidth = XType->getScalarSizeInBits();
3503 Value *T0 = Builder.CreateAdd(X, ConstantInt::get(XType, AddCst));
3505 Value *T1 = Builder.CreateICmp(DstPred, T0, ConstantInt::get(XType, ICmpCst));
InstCombineCasts.cpp 1883 Type *XType = X->getType();
1904 if (DestType->getScalarSizeInBits() > XType->getScalarSizeInBits()) {
1910 if (DestType->getScalarSizeInBits() < XType->getScalarSizeInBits())
1913 assert(XType == DestType && "Unexpected types for int to FP to int casts");
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateDeduction.cpp 240 QualType XType = X.getNonTypeTemplateArgumentType();
241 if (!XType.isNull()) {
243 if (YType.isNull() || !Context.hasSameType(XType, YType))
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 3299 EVT XType = SRASrc0.getValueType();
3300 unsigned Size = XType.getSizeInBits() - 1;
3303 XType.isInteger() && SRAConstant != nullptr &&
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 22126 EVT XType = N0.getValueType();
22128 if (!isNullConstant(N3) || !XType.bitsGE(AType))
22153 unsigned ShCt = XType.getSizeInBits() - N2C->getAPIntValue().logBase2() - 1;
22154 if (!TLI.shouldAvoidTransformToShift(XType, ShCt)) {
22156 SDValue Shift = DAG.getNode(ISD::SRL, DL, XType, N0, ShiftAmt);
22159 if (XType.bitsGT(AType)) {
22171 unsigned ShCt = XType.getSizeInBits() - 1;
22172 if (TLI.shouldAvoidTransformToShift(XType, ShCt))
22176 SDValue Shift = DAG.getNode(ISD::SRA, DL, XType, N0, ShiftAmt);
22179 if (XType.bitsGT(AType))
    [all...]

Completed in 66 milliseconds