Lines Matching defs:J1
2896 // Note the J1 and J2 values are from the encoded instruction. So here
2898 // I1 = NOT(J1 EOR S);
2903 unsigned J1 = fieldFromInstruction(Insn, 13, 1);
2905 unsigned I1 = !(J1 ^ 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
4802 // I1 = NOT(J1 EOR S);
4807 unsigned J1 = (Val >> 22) & 1;
4809 unsigned I1 = !(J1 ^ 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
4944 // I1 = NOT(J1 EOR S);
4949 unsigned J1 = (Val >> 22) & 1;
4951 unsigned I1 = !(J1 ^ S);