Home | History | Annotate | Download | only in PowerPC

Lines Matching full:bytesize

1497 /// the constant being splatted.  The ByteSize field indicates the number of
1499 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) {
1502 // If ByteSize of the splat is bigger than the element size of the
1507 if (EltSize < ByteSize) {
1508 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
1581 if (ValSizeInBytes < ByteSize) return SDValue();
1584 // of a repeated bit pattern of size ByteSize.
1585 if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8))
1589 int MaskVal = SignExtend32(Value, ByteSize * 8);