HomeSort by: relevance | last modified time | path
    Searched refs:IType (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/arch/arc/arc/
minidebug.c 763 printf("%s\t%s,", regimm_name[i.IType.rt],
764 reg_name[i.IType.rs]);
771 printf("%s\t%s,", op_name[i.IType.op],
772 reg_name[i.IType.rs]);
777 if (i.IType.rs == 0 && i.IType.rt == 0) {
784 printf("%s\t%s,%s,", op_name[i.IType.op],
785 reg_name[i.IType.rs],
786 reg_name[i.IType.rt]);
789 printf("0x%08x", mdbdot + 4 + ((short)i.IType.imm << 2))
    [all...]
  /src/sys/arch/mips/mips/
db_disasm.c 440 (short)i.IType.imm >> 6);
572 db_printf("%s\t%s,", regimm_name[i.IType.rt],
573 reg_name[i.IType.rs]);
574 if (i.IType.rt >= OP_TGEI && i.IType.rt <= OP_TNEI) {
575 db_printf("%d",(int16_t)i.IType.imm);
584 db_printf("%s\t%s,", op_name[i.IType.op],
585 reg_name[i.IType.rs]);
590 if (i.IType.rs == 0 && i.IType.rt == 0)
    [all...]
mips_fixup.c 318 switch (insn.IType.op) {
320 regs[insn.IType.rt] = (int16_t)insn.IType.imm << 16;
321 used |= (1 << insn.IType.rt);
325 if ((used & (1 << insn.IType.rs)) == 0) {
329 regs[insn.IType.rt] = *(const int64_t *)
330 (regs[insn.IType.rs] + (int16_t)insn.IType.imm);
331 used |= (1 << insn.IType.rt);
334 if (insn.IType.rt != _R_RA || insn.IType.rs != _R_SP)
    [all...]
db_trace.c 257 if (((i.IType.op == OP_SW) || (i.IType.op == OP_SD))
258 && i.IType.rs == _R_SP
259 && i.IType.rt == _R_RA)
260 ra = *(int *)(intptr_t)(sp + (short)i.IType.imm);
261 if (((i.IType.op == OP_ADDIU) || (i.IType.op == OP_DADDIU))
262 && i.IType.rs == _R_SP
263 && i.IType.rt == _R_SP)
264 stacksize = -(short)i.IType.imm
    [all...]
mips_stacktrace.c 462 if (i.IType.rs != _R_SP)
464 switch (i.IType.rt) {
479 regs[i.IType.rt] =
480 kdbrpeek(sp + (int16_t)i.IType.imm, size);
481 mask |= (1 << i.IType.rt);
494 if (i.IType.rs != _R_SP || i.IType.rt != _R_SP)
498 stksize = - ((short)i.IType.imm);
mips_emul.c 73 #define BRANCHTARGET(pc, i) (4 + (pc) + ((short)(i).IType.imm << 2))
95 switch ((int)inst.IType.rt) {
  /src/sys/arch/mips/include/
mips_opcode.h 57 } IType;
99 } IType;

Completed in 15 milliseconds