GDB (API)
|
00001 /* Target-dependent code for Darwin x86. 00002 00003 Copyright (C) 2008-2013 Free Software Foundation, Inc. 00004 00005 This file is part of GDB. 00006 00007 This program is free software; you can redistribute it and/or modify 00008 it under the terms of the GNU General Public License as published by 00009 the Free Software Foundation; either version 3 of the License, or 00010 (at your option) any later version. 00011 00012 This program is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00019 #ifndef __I386_DARWIN_TDEP_H__ 00020 #define __I386_DARWIN_TDEP_H__ 00021 00022 #include "frame.h" 00023 00024 /* Mapping between the general-purpose registers in Darwin x86 thread_state 00025 struct and GDB's register cache layout. */ 00026 extern int i386_darwin_thread_state_reg_offset[]; 00027 extern const int i386_darwin_thread_state_num_regs; 00028 00029 int darwin_dwarf_signal_frame_p (struct gdbarch *, struct frame_info *); 00030 00031 #endif /* __I386_DARWIN_TDEP_H__ */