Searched refs:J2 (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp298 bool isPairInSame(Instruction *J1, Instruction *J2) { argument
301 DenseMap<Instruction *, int>::iterator J2I = PossibleRedIdx.find(J2);
312 void recordPair(Instruction *J1, Instruction *J2, unsigned i) { argument
314 assert(PossibleRedIdx.count(J2) &&
318 PossibleRedIter[J2] = i;
321 assert(Idx == PossibleRedIdx[J2] &&
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp649 uint32_t J2 = (offset & 0x200000) >> 21; local
651 J2 = (~J2 & 0x1);
653 J2 ^= S;
657 offset |= J2 << 21;
812 bool J2 = (Val & 0x200000); local
818 if (I ^ J2)
H A DARMAsmBackend.cpp555 bool J2 = Value & 0x200000; local
557 J2 ^= I;
561 out |= !J2 << 11; // J2 bit
578 out |= (Value & 0x40000) >> 7; // J2 bit
598 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
601 // J = either J1 or J2 bit
625 // where I1 = NOT(J1 ^ S) and I2 = NOT(J2 ^ S).
628 // J = either J1 or J2 bit, 0 = zero.
/freebsd-11-stable/contrib/binutils/opcodes/
H A Darm-dis.c3607 unsigned int J2 = (given & 0x00000800u) >> 11;
3611 offset |= J2 << 19;
3606 unsigned int J2 = (given & 0x00000800u) >> 11; local
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp2616 // Note the J1 and J2 values are from the encoded instruction. So here
2619 // I2 = NOT(J2 EOR S);
2624 unsigned J2 = fieldFromInstruction(Insn, 11, 1); local
2626 unsigned I2 = !(J2 ^ S);
4472 // Val is passed in as S:J1:J2:imm10H:imm10L:'0'
4473 // Note only one trailing zero not two. Also the J1 and J2 values are from
4476 // I2 = NOT(J2 EOR S);
4481 unsigned J2 = (Val >> 21) & 1; local
4483 unsigned I2 = !(J2 ^ S);
4611 // Val is passed in as S:J1:J2
4620 unsigned J2 = (Val >> 21) & 1; local
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf32-arm.c5035 with Thumb-1) involving the J1 and J2 bits. */
5258 bfd_vma J2 = (lower_insn & 0x0800) >> 11; local
5262 upper |= J2 << 7;
5285 bfd_vma J2 = (relocation & 0x00080000) >> 19; local
5291 lower_insn = (lower_insn & 0xd000) | (J1 << 13) | (J2 << 11) | lo;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp2045 uint32_t J2 = Bit32(opcode, 11); local
2048 uint32_t I2 = !(J2 ^ S);
2064 uint32_t J2 = Bit32(opcode, 11); local
2067 uint32_t I2 = !(J2 ^ S);
2853 uint32_t J2 = Bit32(opcode, 11); local
2856 (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
2866 uint32_t J2 = Bit32(opcode, 11); local
2869 uint32_t I2 = !(J2 ^ S);
13319 // J1 == J2 == 1
13322 // J1 == J2
[all...]
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-arm.c18507 addressT S, J1, J2, lo, hi;
18510 J2 = (value & 0x00080000) >> 19;
18518 newval2 |= (J1 << 13) | (J2 << 11) | lo;
18493 addressT S, J1, J2, lo, hi; local

Completed in 450 milliseconds