| OLD | NEW |
| 1 /* GNU/Linux on TI C6x target support. | 1 /* GNU/Linux on TI C6x target support. |
| 2 Copyright (C) 2011-2012 Free Software Foundation, Inc. | 2 Copyright (C) 2011-2013 Free Software Foundation, Inc. |
| 3 Contributed by Yao Qi <yao@codesourcery.com> | 3 Contributed by Yao Qi <yao@codesourcery.com> |
| 4 | 4 |
| 5 This file is part of GDB. | 5 This file is part of GDB. |
| 6 | 6 |
| 7 This program is free software; you can redistribute it and/or modify | 7 This program is free software; you can redistribute it and/or modify |
| 8 it under the terms of the GNU General Public License as published by | 8 it under the terms of the GNU General Public License as published by |
| 9 the Free Software Foundation; either version 3 of the License, or | 9 the Free Software Foundation; either version 3 of the License, or |
| 10 (at your option) any later version. | 10 (at your option) any later version. |
| 11 | 11 |
| 12 This program is distributed in the hope that it will be useful, | 12 This program is distributed in the hope that it will be useful, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 40 extern const gdb_byte tic6x_bkpt_illegal_opcode_be[]; | 40 extern const gdb_byte tic6x_bkpt_illegal_opcode_be[]; |
| 41 extern const gdb_byte tic6x_bkpt_illegal_opcode_le[]; | 41 extern const gdb_byte tic6x_bkpt_illegal_opcode_le[]; |
| 42 | 42 |
| 43 /* Target-dependent structure in gdbarch. */ | 43 /* Target-dependent structure in gdbarch. */ |
| 44 struct gdbarch_tdep | 44 struct gdbarch_tdep |
| 45 { | 45 { |
| 46 /* Return the expected next PC if FRAME is stopped at a syscall | 46 /* Return the expected next PC if FRAME is stopped at a syscall |
| 47 instruction. */ | 47 instruction. */ |
| 48 CORE_ADDR (*syscall_next_pc) (struct frame_info *frame); | 48 CORE_ADDR (*syscall_next_pc) (struct frame_info *frame); |
| 49 | 49 |
| 50 const char *breakpoint; /* Breakpoint instruction. */ | 50 const gdb_byte *breakpoint; /* Breakpoint instruction. */ |
| 51 | 51 |
| 52 int has_gp; /* Has general purpose registers A16 - A31 and B16 - B31. */ | 52 int has_gp; /* Has general purpose registers A16 - A31 and B16 - B31. */ |
| 53 }; | 53 }; |
| OLD | NEW |