/src/sys/arch/amd64/amd64/ |
db_machdep.c | 57 { "ds", dbreg(ds), db_x86_regop, NULL }, 58 { "es", dbreg(es), db_x86_regop, NULL }, 59 { "fs", dbreg(fs), db_x86_regop, NULL }, 60 { "gs", dbreg(gs), db_x86_regop, NULL }, 61 { "rdi", dbreg(rdi), db_x86_regop, NULL }, 62 { "rsi", dbreg(rsi), db_x86_regop, NULL }, 63 { "rbp", dbreg(rbp), db_x86_regop, NULL }, 64 { "rbx", dbreg(rbx), db_x86_regop, NULL }, 65 { "rdx", dbreg(rdx), db_x86_regop, NULL }, 66 { "rcx", dbreg(rcx), db_x86_regop, NULL } [all...] |
/src/sys/arch/i386/i386/ |
db_machdep.c | 68 { "ds", dbreg(ds), db_x86_regop, NULL }, 69 { "es", dbreg(es), db_x86_regop, NULL }, 70 { "fs", dbreg(fs), db_x86_regop, NULL }, 71 { "gs", dbreg(gs), db_x86_regop, NULL }, 72 { "edi", dbreg(edi), db_x86_regop, NULL }, 73 { "esi", dbreg(esi), db_x86_regop, NULL }, 74 { "ebp", dbreg(ebp), db_x86_regop, NULL }, 75 { "ebx", dbreg(ebx), db_x86_regop, NULL }, 76 { "edx", dbreg(edx), db_x86_regop, NULL }, 77 { "ecx", dbreg(ecx), db_x86_regop, NULL } [all...] |
/src/sys/arch/x86/include/ |
db_machdep.h | 36 int db_x86_regop(const struct db_variable *, db_expr_t *, int);
|
/src/sys/arch/x86/x86/ |
db_trace.c | 56 db_x86_regop(const struct db_variable *vp, db_expr_t *val, int opcode) function in typeref:typename:int 69 db_printf("db_x86_regop: unknown op %d", opcode);
|