Lines Matching defs:J1
2890 // Note the J1 and J2 values are from the encoded instruction. So here
2892 // I1 = NOT(J1 EOR S);
2897 unsigned J1 = fieldFromInstruction(Insn, 13, 1);
2899 unsigned I1 = !(J1 ^ S);
4793 // Val is passed in as S:J1:J2:imm10H:imm10L:'0'
4794 // Note only one trailing zero not two. Also the J1 and J2 values are from
4796 // I1 = NOT(J1 EOR S);
4801 unsigned J1 = (Val >> 22) & 1;
4803 unsigned I1 = !(J1 ^ S);
4935 // Val is passed in as S:J1:J2:imm10:imm11
4936 // Note no trailing zero after imm11. Also the J1 and J2 values are from
4938 // I1 = NOT(J1 EOR S);
4943 unsigned J1 = (Val >> 22) & 1;
4945 unsigned I1 = !(J1 ^ S);