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

📄 linux-unwind.h

📁 Mac OS X 10.4.9 for x86 Source Code gcc 实现源代码
💻 H
字号:
/* DWARF2 EH unwinding support for MIPS Linux.   Copyright (C) 2004, 2005 Free Software Foundation, Inc.This file is part of GCC.GCC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.In addition to the permissions in the GNU General Public License, theFree Software Foundation gives you unlimited permission to link thecompiled version of this file with other programs, and to distributethose programs without any restriction coming from the use of thisfile.  (The General Public License restrictions do apply in otherrespects; for example, they cover modification of the file, anddistribution when not linked into another program.)GCC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GCC; see the file COPYING.  If not, write tothe Free Software Foundation, 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA.  */#ifndef inhibit_libc/* Do code reading to identify a signal frame, and set the frame   state data appropriately.  See unwind-dw2.c for the structs.  */#include <signal.h>/* The third parameter to the signal handler points to something with * this structure defined in asm/ucontext.h, but the name clashes with * struct ucontext from sys/ucontext.h so this private copy is used.  */typedef struct _sig_ucontext {    unsigned long         uc_flags;    struct _sig_ucontext  *uc_link;    stack_t               uc_stack;    struct sigcontext uc_mcontext;    sigset_t      uc_sigmask;} _sig_ucontext_t;#define MD_FALLBACK_FRAME_STATE_FOR mips_fallback_frame_statestatic _Unwind_Reason_Codemips_fallback_frame_state (struct _Unwind_Context *context,			   _Unwind_FrameState *fs){  u_int32_t *pc = (u_int32_t *) context->ra;  struct sigcontext *sc;  _Unwind_Ptr new_cfa;  int i;  /* 24021061 li v0, 0x1061 (rt_sigreturn)*/  /* 0000000c syscall    */  /*    or */  /* 24021017 li v0, 0x1017 (sigreturn) */  /* 0000000c syscall  */  if (*(pc + 1) != 0x0000000c)    return _URC_END_OF_STACK;  if (*(pc + 0) == 0x24021017)    {      struct sigframe {	u_int32_t  trampoline[2];	struct sigcontext sigctx;      } *rt_ = context->ra;      sc = &rt_->sigctx;    }  else if (*(pc + 0) == 0x24021061)    {      struct rt_sigframe {	u_int32_t  trampoline[2];	struct siginfo info;	_sig_ucontext_t uc;      } *rt_ = context->ra;      sc = &rt_->uc.uc_mcontext;    }  else    return _URC_END_OF_STACK;  new_cfa = (_Unwind_Ptr)sc;  fs->cfa_how = CFA_REG_OFFSET;  fs->cfa_reg = STACK_POINTER_REGNUM;  fs->cfa_offset = new_cfa - (_Unwind_Ptr) context->cfa;#if _MIPS_SIM == _ABIO32 && defined __MIPSEB__  /* On o32 Linux, the register save slots in the sigcontext are     eight bytes.  We need the lower half of each register slot,     so slide our view of the structure back four bytes.  */  new_cfa -= 4;#endif  for (i = 0; i < 32; i++) {    fs->regs.reg[i].how = REG_SAVED_OFFSET;    fs->regs.reg[i].loc.offset      = (_Unwind_Ptr)&(sc->sc_regs[i]) - new_cfa;  }  fs->regs.reg[SIGNAL_UNWIND_RETURN_COLUMN].how = REG_SAVED_OFFSET;  fs->regs.reg[SIGNAL_UNWIND_RETURN_COLUMN].loc.offset    = (_Unwind_Ptr)&(sc->sc_pc) - new_cfa;  fs->retaddr_column = SIGNAL_UNWIND_RETURN_COLUMN;  return _URC_NO_REASON;}#endif

⌨️ 快捷键说明

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