Home | History | Annotate | Download | only in PowerPC

Lines Matching refs:ANDC

2301         T = SDValue(CurDAG->getMachineNode(PPC::ANDC, dl, MVT::i32, T, Op), 0);
3611 // ~x & y = andc(y, x)
3617 // x & ~y = andc(x, y)
3757 // nor(~x, y) = andc(x, y)
3763 // nor(x, ~y) = andc(y, x)
3817 // andc(x, x) = 0
3821 // andc(1, y) = ~y
3826 // andc(0, y) = andc(x, 1) = 0
3830 // andc(x, 0) = x
3833 // andc(~x, y) = ~(x | y) = nor(x, y)
3839 // andc(x, ~y) = x & y