Searched refs:imm11 (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp1492 uint32_t imm11 = Bits32(opcode, 10, 0); local
1495 uint32_t imm25 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
2314 uint32_t imm11 = Bits32(opcode, 10, 0); local
2315 uint32_t imm21 = (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
2327 uint32_t imm11 = Bits32(opcode, 10, 0); local
2330 uint32_t imm25 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
12591 { 0xfffff800, 0x0000e000, ARMvAll, eEncodingT2, No_VFP, eSize16, &EmulateInstructionARM::EmulateB, "b<c> #imm11 (outside or last in IT)"},
/freebsd-10.3-release/contrib/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp2170 // imm32 = SignExtend(S:I1:I2:imm10:imm11:'0', 32);
2177 unsigned imm11 = fieldFromInstruction(Insn, 0, 11); local
2178 unsigned tmp = (S << 23) | (I1 << 22) | (I2 << 21) | (imm10 << 11) | imm11;
3932 // Val is passed in as S:J1:J2:imm10:imm11
3933 // Note no trailing zero after imm11. Also the J1 and J2 values are from
3938 // imm32 = SignExtend(S:I1:I2:imm10:imm11:'0', 32);

Completed in 140 milliseconds