Lines Matching defs:J2
2896 // Note the J1 and J2 values are from the encoded instruction. So here
2899 // I2 = NOT(J2 EOR S);
2904 unsigned J2 = fieldFromInstruction(Insn, 11, 1);
2906 unsigned I2 = !(J2 ^ S);
4799 // Val is passed in as S:J1:J2:imm10H:imm10L:'0'
4800 // Note only one trailing zero not two. Also the J1 and J2 values are from
4803 // I2 = NOT(J2 EOR S);
4808 unsigned J2 = (Val >> 21) & 1;
4810 unsigned I2 = !(J2 ^ S);
4941 // Val is passed in as S:J1:J2:imm10:imm11
4942 // Note no trailing zero after imm11. Also the J1 and J2 values are from
4945 // I2 = NOT(J2 EOR S);
4950 unsigned J2 = (Val >> 21) & 1;
4952 unsigned I2 = !(J2 ^ S);