HomeSort by: relevance | last modified time | path
    Searched defs:EltWidth (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 879 unsigned EltWidth = Op.getScalarValueSizeInBits();
880 EVT EltNVT = EVT::getIntegerVT(*DAG.getContext(), EltWidth);
LegalizeVectorOps.cpp 1041 unsigned EltWidth = VT.getScalarSizeInBits();
1043 SDValue ShiftAmount = DAG.getConstant(EltWidth - SrcEltWidth, DL, VT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 1036 unsigned EltWidth = DataTy->getScalarSizeInBits();
1037 return (EltWidth == 32 && Alignment >= 4) ||
1038 (EltWidth == 16 && Alignment >= 2) || (EltWidth == 8);
1057 unsigned EltWidth = Ty->getScalarSizeInBits();
1058 return ((EltWidth == 32 && Alignment >= 4) ||
1059 (EltWidth == 16 && Alignment >= 2) || EltWidth == 8);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AutoUpgrade.cpp 1205 unsigned EltWidth = Ty->getScalarSizeInBits();
1208 if (VecWidth == 128 && EltWidth == 32 && IsFloat)
1210 else if (VecWidth == 128 && EltWidth == 32 && !IsFloat)
1212 else if (VecWidth == 128 && EltWidth == 64 && IsFloat)
1214 else if (VecWidth == 128 && EltWidth == 64 && !IsFloat)
1216 else if (VecWidth == 256 && EltWidth == 32 && IsFloat)
1218 else if (VecWidth == 256 && EltWidth == 32 && !IsFloat)
1220 else if (VecWidth == 256 && EltWidth == 64 && IsFloat)
1222 else if (VecWidth == 256 && EltWidth == 64 && !IsFloat)
1224 else if (VecWidth == 512 && EltWidth == 32 && IsFloat
    [all...]

Completed in 26 milliseconds