Lines Matching +full:772 +full:b
140 /* The BI field in a B form or XL form instruction. */
163 /* The BD field in a B form instruction. The lower two bits are
168 /* The BD field in a B form instruction when absolute addressing is
173 /* The BD field in a B form instruction when the - modifier is used.
179 /* The BD field in a B form instruction when the - modifier is used
185 /* The BD field in a B form instruction when the + modifier is used.
191 /* The BD field in a B form instruction when the + modifier is used
218 /* The BO field in a B form instruction. Certain values are
224 /* The BO field in a B form instruction when the + or - modifier is
266 /* The condition register number portion of the BI field in a B form
1118 /* The BD field in a B form instruction when the - modifier is used.
1178 /* The BD field in a B form instruction when the + modifier is used.
1289 /* The BO field in a B form instruction. Warn about attempts to set
1318 /* The BO field in a B form instruction when the + or - modifier is
2341 /* A B form instruction. */
2342 #define B(op, aa, lk) (OP (op) | ((((unsigned long)(aa)) & 1) << 1) | ((lk) & 1)) macro
2343 #define B_MASK B (0x3f, 1, 1)
2382 /* A B form instruction setting the BO field. */
2383 #define BBO(op, bo, aa, lk) (B ((op), (aa), (lk)) | ((((unsigned long)(bo)) & 0x1f) << 21))
2395 /* A B form instruction setting the BO field and the condition bits of
3431 {"evldhx", VX (4, 772), VX_MASK, PPCSPE, 0, {RS, RA, RB}},
3432 {"vsrab", VX (4, 772), VX_MASK, PPCVEC, 0, {VD, VA, VB}},
4123 {"bc-", B(16,0,0), B_MASK, PPCCOM, PPCVLE, {BOE, BI, BDM}},
4124 {"bc+", B(16,0,0), B_MASK, PPCCOM, PPCVLE, {BOE, BI, BDP}},
4125 {"bc", B(16,0,0), B_MASK, COM, PPCVLE, {BO, BI, BD}},
4126 {"bcl-", B(16,0,1), B_MASK, PPCCOM, PPCVLE, {BOE, BI, BDM}},
4127 {"bcl+", B(16,0,1), B_MASK, PPCCOM, PPCVLE, {BOE, BI, BDP}},
4128 {"bcl", B(16,0,1), B_MASK, COM, PPCVLE, {BO, BI, BD}},
4129 {"bca-", B(16,1,0), B_MASK, PPCCOM, PPCVLE, {BOE, BI, BDMA}},
4130 {"bca+", B(16,1,0), B_MASK, PPCCOM, PPCVLE, {BOE, BI, BDPA}},
4131 {"bca", B(16,1,0), B_MASK, COM, PPCVLE, {BO, BI, BDA}},
4132 {"bcla-", B(16,1,1), B_MASK, PPCCOM, PPCVLE, {BOE, BI, BDMA}},
4133 {"bcla+", B(16,1,1), B_MASK, PPCCOM, PPCVLE, {BOE, BI, BDPA}},
4134 {"bcla", B(16,1,1), B_MASK, COM, PPCVLE, {BO, BI, BDA}},
4142 {"b", B(18,0,0), B_MASK, COM, PPCVLE, {LI}},
4143 {"bl", B(18,0,1), B_MASK, COM, PPCVLE, {LI}},
4144 {"ba", B(18,1,0), B_MASK, COM, PPCVLE, {LIA}},
4145 {"bla", B(18,1,1), B_MASK, COM, PPCVLE, {LIA}},