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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DARMUtils.h278 // (imm32, carry_out) = ARMExpandImm_C(imm12, carry_in)
281 uint32_t imm32; // the expanded result local
285 imm32 = imm;
288 imm32 = ror(imm, 32, amt);
289 carry_out = Bit32(imm32, 31);
291 return imm32;
295 // 'carry_in' argument to following function call does not affect the imm32
302 // (imm32, carry_out) = ThumbExpandImm_C(imm12, carry_in)
305 uint32_t imm32; // the expanded result local
315 imm32
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp1158 (result, carry, overflow) = AddWithCarry(SP, imm32, '0');
1178 uint32_t imm32; local
1182 imm32 = Bits32(opcode, 7, 0) << 2; // imm32 = ZeroExtend(imm8:'00', 32)
1186 imm32 = ARMExpandImm(opcode); // imm32 = ARMExpandImm(imm12)
1191 addr_t sp_offset = imm32;
1372 result = imm32;
1387 uint32_t imm32; // the immediate value to be written to Rd local
1397 imm32
1629 uint32_t imm32; // the output after ThumbExpandImm_C or ARMExpandImm_C local
1784 uint32_t imm32; // immediate offset from the PC local
2038 int32_t imm32; // PC-relative offset local
2409 uint32_t imm32; local
2591 uint32_t imm32; // stack offset local
2683 uint32_t imm32; // stack offset local
2830 int32_t imm32; // PC-relative offset local
2917 uint32_t imm32; // PC-relative offset to branch forward local
3042 uint32_t imm32; local
3167 imm32; // the immediate value to be added to the value obtained from Rn local
3314 uint32_t imm32; // the immediate value to be compared with local
3427 uint32_t imm32; // the immediate value to be compared with local
4453 uint32_t imm32; // the immediate offset used to form the address local
5158 uint32_t imm32; local
5510 uint32_t imm32; local
5832 imm32; // the immediate value to be added to the value obtained from Rn local
5980 uint32_t imm32; // the immediate value to be added/subtracted to/from the PC local
6049 imm32; // the immediate value to be ANDed to the value obtained from Rn local
6213 uint32_t imm32; // the immediate value to be bitwise inverted and ANDed to local
6379 uint32_t imm32; local
6715 uint32_t imm32; local
6860 uint32_t imm32; local
7109 uint32_t imm32; local
7254 uint32_t imm32; local
7532 uint32_t imm32; local
7679 uint32_t imm32; local
7933 uint32_t imm32; local
8090 uint32_t imm32; local
8856 imm32; // the immediate value to be ORed to the value obtained from Rn local
9025 imm32; // the immediate value to be ORed to the value obtained from Rn local
9191 imm32; // the immediate value to be added to the value obtained from Rn local
9342 imm32; // the immediate value to be added to the value obtained from Rn local
9471 imm32; // the immediate value to be added to the value obtained from Rn local
9619 uint32_t imm32; // the immediate value to be subtracted from the value local
9713 uint32_t imm32; // the immediate value to be subtracted from the value local
9784 imm32; // the immediate value to be ANDed to the value obtained from Rn local
9909 imm32; // the immediate value to be ANDed to the value obtained from Rn local
10367 uint32_t imm32; local
10475 uint32_t imm32; local
10568 uint32_t imm32; local
10679 uint32_t imm32; local
10956 uint32_t imm32; local
11254 uint32_t imm32; local
11448 uint32_t imm32; local
11648 uint32_t imm32; local
11774 uint32_t imm32; local
12698 uint32_t imm32; local
[all...]
/freebsd-11-stable/contrib/binutils/include/opcode/
H A Dcr16.h122 imm3, imm4, imm5, imm6, imm16, imm20, imm32, enumerator in enum:__anon582
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dcr16-opc.c112 /* opc12 imm32 rp */ \
122 ARITH_INST32 ("movd", 0x007, imm32),
125 ARITH_INST32 ("addd", 0x002, imm32),
126 ARITH_INST32 ("subd", 0x003, imm32),
129 ARITH_INST32 ("cmpd", 0x009, imm32),
559 {32, arg_ic, OP_SIGNED}, /* imm32 */
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFISelLowering.cpp725 int64_t imm32 = MI.getOperand(2).getImm(); local
727 assert (isInt<32>(imm32));
729 .addReg(LHS).addImm(imm32).addMBB(Copy1MBB);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp1396 uint32_t imm32; local
1418 if (consume(insn, imm32))
1420 insn->immediates[insn->numImmediatesConsumed] = imm32;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp1246 const uint32_t imm32 = insn.getOperand(1).getImm() << 16; local
1247 int64_t imm = SignedBits(imm32, 31, 0);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp2620 // and build the imm32 with one trailing zero as documented:
2621 // imm32 = SignExtend(S:I1:I2:imm10:imm11:'0', 32);
2630 int imm32 = SignExtend32<25>(tmp << 1); local
2631 if (!tryAddingSymbolicOperand(Address, Address + imm32 + 4,
2633 Inst.addOperand(MCOperand::createImm(imm32));
4477 // and build the imm32 with two trailing zeros as documented:
4478 // imm32 = SignExtend(S:I1:I2:imm10H:imm10L:'00', 32);
4485 int imm32 = SignExtend32<25>(tmp << 1); local
4488 (Address & ~2u) + imm32 + 4,
4490 Inst.addOperand(MCOperand::createImm(imm32));
4624 int imm32 = SignExtend32<25>(tmp << 1); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp1426 const uint32_t imm32 = insn.getOperand(1).getImm() << 16; local
1427 int64_t imm = SignedBits(imm32, 31, 0);

Completed in 134 milliseconds