| OLD | NEW |
| 1 /* Dynamic architecture support for GDB, the GNU debugger. | 1 /* Dynamic architecture support for GDB, the GNU debugger. |
| 2 | 2 |
| 3 Copyright (C) 1998-2012 Free Software Foundation, Inc. | 3 Copyright (C) 1998-2012 Free Software Foundation, Inc. |
| 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. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "gdbcmd.h" | 24 #include "gdbcmd.h" |
| 25 #include "inferior.h" /* enum CALL_DUMMY_LOCATION et al. */ | 25 #include "inferior.h" /* enum CALL_DUMMY_LOCATION et al. */ |
| 26 #include "gdb_string.h" | 26 #include "gdb_string.h" |
| 27 #include "regcache.h" | 27 #include "regcache.h" |
| 28 #include "gdb_assert.h" | 28 #include "gdb_assert.h" |
| 29 #include "sim-regno.h" | 29 #include "sim-regno.h" |
| 30 #include "gdbcore.h" | 30 #include "gdbcore.h" |
| 31 #include "osabi.h" | 31 #include "osabi.h" |
| 32 #include "target-descriptions.h" | 32 #include "target-descriptions.h" |
| 33 #include "objfiles.h" | 33 #include "objfiles.h" |
| 34 #include "language.h" |
| 34 | 35 |
| 35 #include "version.h" | 36 #include "version.h" |
| 36 | 37 |
| 37 #include "floatformat.h" | 38 #include "floatformat.h" |
| 38 | 39 |
| 39 | 40 |
| 40 struct displaced_step_closure * | 41 struct displaced_step_closure * |
| 41 simple_displaced_step_copy_insn (struct gdbarch *gdbarch, | 42 simple_displaced_step_copy_insn (struct gdbarch *gdbarch, |
| 42 CORE_ADDR from, CORE_ADDR to, | 43 CORE_ADDR from, CORE_ADDR to, |
| 43 struct regcache *regs) | 44 struct regcache *regs) |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 } | 114 } |
| 114 | 115 |
| 115 CORE_ADDR | 116 CORE_ADDR |
| 116 generic_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc) | 117 generic_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc) |
| 117 { | 118 { |
| 118 return 0; | 119 return 0; |
| 119 } | 120 } |
| 120 | 121 |
| 121 int | 122 int |
| 122 generic_in_solib_return_trampoline (struct gdbarch *gdbarch, | 123 generic_in_solib_return_trampoline (struct gdbarch *gdbarch, |
| 123 » » » » CORE_ADDR pc, char *name) | 124 » » » » CORE_ADDR pc, const char *name) |
| 124 { | 125 { |
| 125 return 0; | 126 return 0; |
| 126 } | 127 } |
| 127 | 128 |
| 128 int | 129 int |
| 129 generic_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc) | 130 generic_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc) |
| 130 { | 131 { |
| 131 return 0; | 132 return 0; |
| 132 } | 133 } |
| 133 | 134 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 default_remote_register_number (struct gdbarch *gdbarch, | 242 default_remote_register_number (struct gdbarch *gdbarch, |
| 242 int regno) | 243 int regno) |
| 243 { | 244 { |
| 244 return regno; | 245 return regno; |
| 245 } | 246 } |
| 246 | 247 |
| 247 | 248 |
| 248 | 249 |
| 249 /* Functions to manipulate the endianness of the target. */ | 250 /* Functions to manipulate the endianness of the target. */ |
| 250 | 251 |
error: old chunk mismatch |
None
| OLD | NEW |