📄 gdbstub.c
字号:
/* * x86-specific gdb stub routines * based on x86 cdb(xen/arch/x86/cdb.c), but Extensively modified. * * Copyright (C) 2006 Isaku Yamahata <yamahata at valinux co jp> * VA Linux Systems Japan. K.K. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#include <asm/debugger.h>void gdb_arch_read_reg_array(struct cpu_user_regs *regs, struct gdb_context *ctx){#define GDB_REG(r) gdb_write_to_packet_hex(r, sizeof(r), ctx); GDB_REG(regs->eax); GDB_REG(regs->ecx); GDB_REG(regs->edx); GDB_REG(regs->ebx); GDB_REG(regs->esp); GDB_REG(regs->ebp); GDB_REG(regs->esi); GDB_REG(regs->edi); GDB_REG(regs->eip); GDB_REG(regs->eflags);#undef GDB_REG#define GDB_SEG_REG(s) gdb_write_to_packet_hex(s, sizeof(u32), ctx); /* sizeof(segment) = 16bit */ /* but gdb requires its return value as 32bit value */ GDB_SEG_REG(regs->cs); GDB_SEG_REG(regs->ss); GDB_SEG_REG(regs->ds); GDB_SEG_REG(regs->es); GDB_SEG_REG(regs->fs); GDB_SEG_REG(regs->gs);#undef GDB_SEG_REG gdb_send_packet(ctx);}voidgdb_arch_write_reg_array(struct cpu_user_regs *regs, const char* buf, struct gdb_context *ctx){ /* XXX TODO */ gdb_send_reply("E02", ctx);}voidgdb_arch_read_reg(unsigned long regnum, struct cpu_user_regs *regs, struct gdb_context *ctx){ gdb_send_reply("", ctx);}voidgdb_arch_write_reg(unsigned long regnum, unsigned long val, struct cpu_user_regs *regs, struct gdb_context *ctx){ gdb_send_reply("", ctx);}/* * Local variables: * mode: C * c-set-style: "BSD" * c-basic-offset: 4 * tab-width: 4 * End: */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -