Home
last modified time | relevance | path

Searched refs:Imm12 (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
DARMAddressingModes.h413 inline unsigned getAM2Opc(AddrOpc Opc, unsigned Imm12, ShiftOpc SO,
415 assert(Imm12 < (1 << 12) && "Imm too large!");
417 return Imm12 | ((int)isSub << 12) | (SO << 13) | (IdxMode << 16) ;
DARMMCCodeEmitter.cpp980 unsigned Reg = 0, Imm12 = 0; in getAddrModeImm12OpValue() local
987 isAdd = EncodeAddrModeOpValues(MI, OpIdx, Reg, Imm12, Fixups, STI); in getAddrModeImm12OpValue()
1017 Imm12 = Offset; in getAddrModeImm12OpValue()
1019 uint32_t Binary = Imm12 & 0xfff; in getAddrModeImm12OpValue()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp6659 const unsigned Imm12 = fieldFromInstruction(Insn, 26, 1) << 11 | in DecodeT2AddSubSPImm() local
6677 Inst.addOperand(MCOperand::createImm(Imm12)); // zext imm12 in DecodeT2AddSubSPImm()
6680 if (!Check(DS, DecodeT2SOImm(Inst, Imm12, Address, Decoder))) // imm12 in DecodeT2AddSubSPImm()