Home | History | Annotate | Download | only in qemu

Lines Matching refs:lk

1629 #define B(op, aa, lk) (OP (op) | ((((unsigned long)(aa)) & 1) << 1) | ((lk) & 1))
1633 #define BBO(op, bo, aa, lk) (B ((op), (aa), (lk)) | ((((unsigned long)(bo)) & 0x1f) << 21))
1647 #define BBOCB(op, bo, cb, aa, lk) \
1648 (BBO ((op), (bo), (aa), (lk)) | ((((unsigned long)(cb)) & 0x3) << 16))
1714 #define SC(op, sa, lk) (OP (op) | ((((unsigned long)(sa)) & 1) << 1) | ((lk) & 1))
1820 /* An XL form instruction with the LK field set to 0. */
1823 /* An XL form instruction which uses the LK field. */
1824 #define XLLK(op, xop, lk) (XL ((op), (xop)) | ((lk) & 1))
1830 #define XLO(op, bo, xop, lk) \
1831 (XLLK ((op), (xop), (lk)) | ((((unsigned long)(bo)) & 0x1f) << 21))
1836 #define XLYLK(op, xop, y, lk) (XLLK ((op), (xop), (lk)) | ((((unsigned long)(y)) & 1) << 21))
1841 #define XLOCB(op, bo, cb, xop, lk) \
1842 (XLO ((op), (bo), (xop), (lk)) | ((((unsigned long)(cb)) & 3) << 16))