| OLD | NEW |
| 1 /* Target-dependent code for GNU/Linux x86-64. | 1 /* Target-dependent code for GNU/Linux x86-64. |
| 2 | 2 |
| 3 Copyright (C) 2001, 2003-2012 Free Software Foundation, Inc. | 3 Copyright (C) 2001, 2003-2012 Free Software Foundation, Inc. |
| 4 Contributed by Jiri Smid, SuSE Labs. | 4 Contributed by Jiri Smid, SuSE Labs. |
| 5 | 5 |
| 6 This file is part of GDB. | 6 This file is part of GDB. |
| 7 | 7 |
| 8 This program is free software; you can redistribute it and/or modify | 8 This program is free software; you can redistribute it and/or modify |
| 9 it under the terms of the GNU General Public License as published by | 9 it under the terms of the GNU General Public License as published by |
| 10 the Free Software Foundation; either version 3 of the License, or | 10 the Free Software Foundation; either version 3 of the License, or |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "amd64-linux-tdep.h" | 31 #include "amd64-linux-tdep.h" |
| 32 #include "i386-linux-tdep.h" | 32 #include "i386-linux-tdep.h" |
| 33 #include "linux-tdep.h" | 33 #include "linux-tdep.h" |
| 34 #include "i386-xstate.h" | 34 #include "i386-xstate.h" |
| 35 | 35 |
| 36 #include "gdb_string.h" | 36 #include "gdb_string.h" |
| 37 | 37 |
| 38 #include "amd64-tdep.h" | 38 #include "amd64-tdep.h" |
| 39 #include "solib-svr4.h" | 39 #include "solib-svr4.h" |
| 40 #include "xml-syscall.h" | 40 #include "xml-syscall.h" |
| 41 #include "glibc-tdep.h" |
| 41 | 42 |
| 42 #include "features/i386/amd64-linux.c" | 43 #include "features/i386/amd64-linux.c" |
| 43 #include "features/i386/amd64-avx-linux.c" | 44 #include "features/i386/amd64-avx-linux.c" |
| 45 #include "features/i386/x32-linux.c" |
| 46 #include "features/i386/x32-avx-linux.c" |
| 44 | 47 |
| 45 /* The syscall's XML filename for i386. */ | 48 /* The syscall's XML filename for i386. */ |
| 46 #define XML_SYSCALL_FILENAME_AMD64 "syscalls/amd64-linux.xml" | 49 #define XML_SYSCALL_FILENAME_AMD64 "syscalls/amd64-linux.xml" |
| 47 | 50 |
| 48 #include "record.h" | 51 #include "record.h" |
| 49 #include "linux-record.h" | 52 #include "linux-record.h" |
| 50 | 53 |
| 51 /* Supported register note sections. */ | 54 /* Supported register note sections. */ |
| 52 static struct core_regset_section amd64_linux_regset_sections[] = | 55 static struct core_regset_section amd64_linux_regset_sections[] = |
| 53 { | 56 { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 -1, -1, -1, -1, -1, -1, -1, -1, | 97 -1, -1, -1, -1, -1, -1, -1, -1, |
| 95 -1, -1, -1, -1, -1, -1, -1, -1, | 98 -1, -1, -1, -1, -1, -1, -1, -1, |
| 96 15 * 8 /* "orig_rax" */ | 99 15 * 8 /* "orig_rax" */ |
| 97 }; | 100 }; |
| 98 | 101 |
| 99 | 102 |
| 100 | 103 |
| 101 /* Support for signal handlers. */ | 104 /* Support for signal handlers. */ |
| 102 | 105 |
| 103 #define LINUX_SIGTRAMP_INSN0 0x48 /* mov $NNNNNNNN, %rax */ | 106 #define LINUX_SIGTRAMP_INSN0 0x48 /* mov $NNNNNNNN, %rax */ |
error: old chunk mismatch |
None
| OLD | NEW |