Searched refs:J1 (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp298 bool isPairInSame(Instruction *J1, Instruction *J2) { argument
299 DenseMap<Instruction *, int>::iterator J1I = PossibleRedIdx.find(J1);
312 void recordPair(Instruction *J1, Instruction *J2, unsigned i) { argument
313 if (PossibleRedIdx.count(J1)) {
317 PossibleRedIter[J1] = 0;
320 int Idx = PossibleRedIdx[J1];
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp648 uint32_t J1 = (offset & 0x400000) >> 22; local
650 J1 = (~J1 & 0x1);
652 J1 ^= S;
656 offset |= J1 << 22;
811 bool J1 = (Val & 0x400000); local
813 if (I ^ J1)
H A DARMAsmBackend.cpp554 bool J1 = Value & 0x400000; local
556 J1 ^= I;
560 out |= !J1 << 13; // J1 bit
579 out |= (Value & 0x20000) >> 4; // J1 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/gcc/
H A Dconvert.c211 CASE_MATHFN (J1)
/freebsd-11-stable/contrib/binutils/opcodes/
H A Darm-dis.c3606 unsigned int J1 = (given & 0x00002000u) >> 13;
3612 offset |= J1 << 18;
3605 unsigned int J1 = (given & 0x00002000u) >> 13; 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
2618 // I1 = NOT(J1 EOR S);
2623 unsigned J1 = fieldFromInstruction(Insn, 13, 1); local
2625 unsigned I1 = !(J1 ^ 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
4475 // I1 = NOT(J1 EOR S);
4480 unsigned J1 = (Val >> 22) & 1; local
4482 unsigned I1 = !(J1 ^ S);
4611 // Val is passed in as S:J1
4619 unsigned J1 = (Val >> 22) & 1; local
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf32-arm.c5035 with Thumb-1) involving the J1 and J2 bits. */
5257 bfd_vma J1 = (lower_insn & 0x2000) >> 13; local
5261 upper |= J1 << 6;
5286 bfd_vma J1 = (relocation & 0x00040000) >> 18; 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.cpp2044 uint32_t J1 = Bit32(opcode, 13); local
2047 uint32_t I1 = !(J1 ^ S);
2063 uint32_t J1 = Bit32(opcode, 13); local
2066 uint32_t I1 = !(J1 ^ S);
2852 uint32_t J1 = Bit32(opcode, 13); local
2856 (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
2865 uint32_t J1 = Bit32(opcode, 13); local
2868 uint32_t I1 = !(J1 ^ S);
13319 // J1 == J2 == 1
13322 // J1
[all...]
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-arm.c18507 addressT S, J1, J2, lo, hi;
18511 J1 = (value & 0x00040000) >> 18;
18518 newval2 |= (J1 << 13) | (J2 << 11) | lo;
18493 addressT S, J1, J2, lo, hi; local

Completed in 406 milliseconds