⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debugger.h

📁 xen 3.2.2 源码
💻 H
字号:
/* * 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, 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. * * Copyright (C) IBM Corp. 2005, 2006 * * Authors: Hollis Blanchard <hollisb@us.ibm.com> *          Jimi Xenidis <jimix@watson.ibm.com> */#ifndef _ASM_DEBUGGER_H_#define _ASM_DEBUGGER_H_#include <public/xen.h>extern void show_backtrace_regs(struct cpu_user_regs *);extern void show_backtrace(ulong sp, ulong lr, ulong pc);static inline void show_execution_state(struct cpu_user_regs *regs){    show_registers(regs);}extern void dump_execution_state(void);static inline void dump_all_execution_state(void){    ulong sp;    ulong lr;    dump_execution_state();    sp = (ulong)__builtin_frame_address(0);    lr = (ulong)__builtin_return_address(0);    show_backtrace(sp, lr, lr);}static inline void __force_crash(void){    dump_all_execution_state();    __builtin_trap();}static inline void debugger_trap_immediate(void){    dump_all_execution_state();#ifdef CRASH_DEBUG    __builtin_trap();#endif}static inline void unimplemented(void){#ifdef VERBOSE    dump_all_execution_state();#endif}extern void __attn(void);#define ATTN() __attn();#define FORCE_CRASH() __force_crash()#ifdef CRASH_DEBUG#include <xen/gdbstub.h>static inline int debugger_trap_fatal(    unsigned int vector, struct cpu_user_regs *regs){    (void)__trap_to_gdb(regs, vector);    return vector;}#else /* CRASH_DEBUG */static inline int debugger_trap_fatal(    unsigned int vector, struct cpu_user_regs *regs){    show_backtrace(regs->gprs[1], regs->lr, regs->pc);    return vector;}#endif /* CRASH_DEBUG */#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -