Lines Matching refs:J1
2140 // Note the J1 and J2 values are from the encoded instruction. So here
2142 // I1 = NOT(J1 EOR S);
2147 unsigned J1 = fieldFromInstruction(Insn, 13, 1);
2149 unsigned I1 = !(J1 ^ S);
3770 // Val is passed in as S:J1:J2:imm10H:imm10L:'0'
3771 // Note only one trailing zero not two. Also the J1 and J2 values are from
3773 // I1 = NOT(J1 EOR S);
3778 unsigned J1 = (Val >> 22) & 1;
3780 unsigned I1 = !(J1 ^ S);
3902 // Val is passed in as S:J1:J2:imm10:imm11
3903 // Note no trailing zero after imm11. Also the J1 and J2 values are from
3905 // I1 = NOT(J1 EOR S);
3910 unsigned J1 = (Val >> 22) & 1;
3912 unsigned I1 = !(J1 ^ S);