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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 1258 unsigned OpWidth = cast<FixedVectorType>(Shuffle->getOperand(0)->getType())
1268 APInt LeftDemanded(OpWidth, 1);
1269 APInt LHSUndefElts(OpWidth, 0);
1278 APInt LeftDemanded(OpWidth, 0), RightDemanded(OpWidth, 0);
1283 assert(MaskVal < OpWidth * 2 &&
1285 if (MaskVal < OpWidth)
1288 RightDemanded.setBit(MaskVal - OpWidth);
1293 APInt LHSUndefElts(OpWidth, 0);
1296 APInt RHSUndefElts(OpWidth, 0)
    [all...]
InstCombineCasts.cpp 1691 unsigned OpWidth = BO->getType()->getFPMantissaWidth();
1708 // Specifically, if OpWidth >= 2*DstWdith+1 and DstWidth is sufficient
1718 if (OpWidth >= 2*DstWidth+1 && DstWidth >= SrcWidth) {
1728 // LHSWidth + RHSWidth significant bits; if OpWidth is sufficient
1732 if (OpWidth >= LHSWidth + RHSWidth && DstWidth >= SrcWidth) {
1745 if (OpWidth >= 2*DstWidth && DstWidth >= SrcWidth) {
1756 if (SrcWidth == OpWidth)

Completed in 27 milliseconds