Home | History | Annotate | Download | only in qemu

Lines Matching defs:mb

540   /* The MB field in an M form instruction.  */
541 #define MB CRB
662 /* The MB and ME fields in an M form instruction expressed a single
670 /* The MB or ME field in an MD or MDS form instruction. The high
1246 /* The MB and ME fields in an M form instruction expressed as a single
1258 int mb, me, mx, count, last;
1268 mb = 0;
1276 /* mb: location of last 0->1 transition */
1285 mb = mx;
1301 return insn | (mb << 6) | ((me - 1) << 1);
1310 int mb, me;
1315 mb = (insn >> 6) & 0x1f;
1317 if (mb < me + 1)
1320 for (i = mb; i <= me; i++)
1323 else if (mb == me + 1)
1325 else /* (mb > me + 1) */
1328 for (i = me + 1; i < mb; i++)
1334 /* The MB or ME field in an MD or MDS form instruction. The high bit
1690 /* An M_MASK with the MB and ME fields fixed. */
1700 /* An MD_MASK with the MB field fixed. */
1710 /* An MDS_MASK with the MB field fixed. */
3333 { "clrlwi", MME(21,31,0), MSHME_MASK, PPCCOM, { RA, RS, MB } },
3337 { "clrlwi.", MME(21,31,1), MSHME_MASK, PPCCOM, { RA, RS, MB } },