Home | History | Annotate | Download | only in PowerPC

Lines Matching refs:ANDC

3892         T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
5455 // ~x & y = andc(y, x)
5461 // x & ~y = andc(x, y)
5601 // nor(~x, y) = andc(x, y)
5607 // nor(x, ~y) = andc(y, x)
5661 // andc(x, x) = 0
5665 // andc(1, y) = ~y
5670 // andc(0, y) = andc(x, 1) = 0
5674 // andc(x, 0) = x
5677 // andc(~x, y) = ~(x | y) = nor(x, y)
5683 // andc(x, ~y) = x & y