Home | History | Annotate | Download | only in SelectionDAG

Lines Matching full:bitwidth

8450   // To lower a range with bit tests, the range must fit the bitwidth of a
8491 const int BitWidth = DAG.getTargetLoweringInfo()
8506 if (Low.isStrictlyPositive() && High.slt(BitWidth)) {
8588 int BitWidth = PTy.getSizeInBits();
8610 // Note: the search is limited by BitWidth, reducing time complexity.
8611 for (int64_t j = std::min(N - 1, i + BitWidth - 1); j > i; --j) {