Symbol: reg2i14_format
arch/loongarch/include/asm/inst.h
370
struct reg2i14_format reg2i14_format;
arch/loongarch/include/asm/inst.h
665
insn->reg2i14_format.opcode = OP; \
arch/loongarch/include/asm/inst.h
666
insn->reg2i14_format.immediate = imm; \
arch/loongarch/include/asm/inst.h
667
insn->reg2i14_format.rd = rd; \
arch/loongarch/include/asm/inst.h
668
insn->reg2i14_format.rj = rj; \
arch/loongarch/kernel/inst.c
149
switch (insn.reg2i14_format.opcode) {
arch/loongarch/kernel/unaligned.c
347
switch (insn.reg2i14_format.opcode) {
arch/loongarch/kvm/exit.c
382
rd = inst.reg2i14_format.rd;
arch/loongarch/kvm/exit.c
383
opcode = inst.reg2i14_format.opcode;
arch/loongarch/kvm/exit.c
564
rd = inst.reg2i14_format.rd;
arch/loongarch/kvm/exit.c
565
opcode = inst.reg2i14_format.opcode;
tools/arch/loongarch/include/asm/inst.h
117
struct reg2i14_format reg2i14_format;
tools/objtool/arch/loongarch/decode.c
199
switch (inst.reg2i14_format.opcode) {
tools/objtool/arch/loongarch/decode.c
201
if (inst.reg2i14_format.rj == CFI_SP) {
tools/objtool/arch/loongarch/decode.c
203
insn->immediate = sign_extend64(inst.reg2i14_format.immediate, 13);
tools/objtool/arch/loongarch/decode.c
209
op->dest.reg = inst.reg2i14_format.rd;
tools/objtool/arch/loongarch/decode.c
214
if (inst.reg2i14_format.rj == CFI_SP) {
tools/objtool/arch/loongarch/decode.c
216
if (inst.reg2i14_format.rd == LOONGARCH_GPR_RA &&
tools/objtool/arch/loongarch/decode.c
217
inst.reg2i14_format.immediate == 0)
tools/objtool/arch/loongarch/decode.c
221
insn->immediate = sign_extend64(inst.reg2i14_format.immediate, 13);
tools/objtool/arch/loongarch/decode.c
224
op->src.reg = inst.reg2i14_format.rd;