reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/TargetLowering.cpp
 3255         for (unsigned width = origWidth / 2; width>=8; width /= 2) {
 3255         for (unsigned width = origWidth / 2; width>=8; width /= 2) {
 3256           APInt newMask = APInt::getLowBitsSet(maskWidth, width);
 3257           for (unsigned offset=0; offset<origWidth/width; offset++) {
 3260                 bestOffset = (uint64_t)offset * (width/8);
 3262                 bestOffset = (origWidth/width - offset - 1) * (width/8);
 3262                 bestOffset = (origWidth/width - offset - 1) * (width/8);
 3263               bestMask = Mask.lshr(offset * (width/8) * 8);
 3264               bestWidth = width;
 3267             newMask <<= width;