Home | History | Annotate | Download | only in mips32

Lines Matching full:andi

217    printf("ANDI\n");
218 TESTINST2("andi $t0, $t1, 1", 0, 1, t0, t1);
219 TESTINST2("andi $t0, $t1, 0", 1, 0, t0, t1);
220 TESTINST2("andi $t0, $t1, 1", 1, 1, t0, t1);
221 TESTINST2("andi $t0, $t1, 1", 0x7fffffff, 0, t0, t1);
222 TESTINST2("andi $t0, $t1, 0", 0x80000000, 0, t0, t1);
223 TESTINST2("andi $t0, $t1, 0x3145", 0xffffffff, 0x3145, t0, t1);