Searched refs:imm8 (Results 1 - 7 of 7) sorted by relevance

/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DARMUtils.h350 // imm32 = ZeroExtend(i:imm3:imm8, 32)
354 const uint32_t imm8 = bits(opcode, 7, 0); local
355 const uint32_t imm12 = i << 11 | imm3 << 8 | imm8;
365 // imm32 = ZeroExtend(imm8:'00', 32)
367 const uint32_t imm8 = bits(opcode, 7, 0); local
368 return imm8 * 4;
/openbsd-current/gnu/llvm/llvm/lib/Support/BLAKE3/
H A Dblake3_sse2.c81 INLINE __m128i blend_epi16(__m128i a, __m128i b, const int16_t imm8) { argument
83 __m128i mask = _mm_set1_epi16(imm8);
/openbsd-current/gnu/llvm/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp1420 uint8_t imm8; local
1434 if (consume(insn, imm8))
1436 insn->immediates[insn->numImmediatesConsumed] = imm8;
/openbsd-current/gnu/llvm/lld/ELF/Arch/
H A DRISCV.cpp324 uint16_t imm8 = extractBits(val, 8, 8) << 12; local
329 insn |= imm8 | imm4_3 | imm7_6 | imm2_1 | imm5;
/openbsd-current/gnu/llvm/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp1173 imm32 = Bits32(opcode, 7, 0) << 2; // imm32 = ZeroExtend(imm8:'00', 32)
1388 imm32 = Bits32(opcode, 7, 0); // imm32 = ZeroExtend(imm8, 32)
1403 // d = UInt(Rd); setflags = FALSE; imm32 = ZeroExtend(imm4:i:imm3:imm8,
1410 uint32_t imm8 = Bits32(opcode, 7, 0); local
1411 imm32 = (imm4 << 12) | (i << 11) | (imm3 << 8) | imm8;
1783 imm32 = Bits32(opcode, 7, 0) << 2; // imm32 = ZeroExtend(imm8:'00', 32);
1858 // d = UInt(Rd); setflags = FALSE; imm32 = ZeroExtend(imm8:'00', 32);
1873 // ThumbExpandImm(i:imm3:imm8);
1889 // d = UInt(Rd); setflags = FALSE; imm32 = ZeroExtend(i:imm3:imm8, 32);
1894 uint32_t imm8 local
3083 uint32_t imm8 = Bits32(opcode, 7, 0); local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp2545 unsigned imm8 = fieldFromInstruction(Insn, 0, 8); local
2551 Inst.addOperand(MCOperand::createImm(imm8));
2558 if (imm8 == 0x10 && pred != 0xe && ((FeatureBits[ARM::FeatureRAS]) != 0))
/openbsd-current/gnu/usr.bin/binutils-2.17/opcodes/
H A Dbfin-dis.c91 { "imm8", 8, 0, 1, 0, 0, 0, 0, 0},
394 #define imm8(x) fmtconst (c_imm8, x, 0, outf) macro

Completed in 155 milliseconds