1 /* GNU/Linux/x86-64 specific low level interface, for the in-process
4 Copyright (C) 2010-2013 Free Software Foundation, Inc.
6 This file is part of GDB.
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
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 /* Defined in auto-generated file amd64-linux.c. */
24 void init_registers_amd64_linux (void);
25 extern const struct target_desc
*tdesc_amd64_linux
;
27 /* fast tracepoints collect registers. */
30 #define FT_CR_EFLAGS 1
48 static const int x86_64_ft_collect_regmap
[] = {
49 FT_CR_RAX
* 8, FT_CR_RBX
* 8, FT_CR_RCX
* 8, FT_CR_RDX
* 8,
50 FT_CR_RSI
* 8, FT_CR_RDI
* 8, FT_CR_RBP
* 8, FT_CR_RSP
* 8,
51 FT_CR_R8
* 8, FT_CR_R9
* 8, FT_CR_R10
* 8, FT_CR_R11
* 8,
52 FT_CR_R12
* 8, FT_CR_R13
* 8, FT_CR_R14
* 8, FT_CR_R15
* 8,
53 FT_CR_RIP
* 8, FT_CR_EFLAGS
* 8
56 #define X86_64_NUM_FT_COLLECT_GREGS \
57 (sizeof (x86_64_ft_collect_regmap) / sizeof(x86_64_ft_collect_regmap[0]))
60 supply_fast_tracepoint_registers (struct regcache
*regcache
,
61 const unsigned char *buf
)
65 for (i
= 0; i
< X86_64_NUM_FT_COLLECT_GREGS
; i
++)
66 supply_register (regcache
, i
,
67 ((char *) buf
) + x86_64_ft_collect_regmap
[i
]);
70 ULONGEST
__attribute__ ((visibility("default"), used
))
71 gdb_agent_get_raw_reg (const unsigned char *raw_regs
, int regnum
)
73 if (regnum
>= X86_64_NUM_FT_COLLECT_GREGS
)
76 return *(ULONGEST
*) (raw_regs
+ x86_64_ft_collect_regmap
[regnum
]);
81 #include <ust/processor.h>
83 /* "struct registers" is the UST object type holding the registers at
84 the time of the static tracepoint marker call. This doesn't
85 contain RIP, but we know what it must have been (the marker
88 #define ST_REGENTRY(REG) \
90 offsetof (struct registers, REG), \
91 sizeof (((struct registers *) NULL)->REG) \
98 } x86_64_st_collect_regmap
[] =
122 #define X86_64_NUM_ST_COLLECT_GREGS \
123 (sizeof (x86_64_st_collect_regmap) / sizeof (x86_64_st_collect_regmap[0]))
125 /* GDB's RIP register number. */
126 #define AMD64_RIP_REGNUM 16
129 supply_static_tracepoint_registers (struct regcache
*regcache
,
130 const unsigned char *buf
,
134 unsigned long newpc
= pc
;
136 supply_register (regcache
, AMD64_RIP_REGNUM
, &newpc
);
138 for (i
= 0; i
< X86_64_NUM_ST_COLLECT_GREGS
; i
++)
139 if (x86_64_st_collect_regmap
[i
].offset
!= -1)
141 switch (x86_64_st_collect_regmap
[i
].size
)
144 supply_register (regcache
, i
,
146 + x86_64_st_collect_regmap
[i
].offset
);
151 = * (short *) (((char *) buf
)
152 + x86_64_st_collect_regmap
[i
].offset
);
154 supply_register (regcache
, i
, ®
);
158 internal_error (__FILE__
, __LINE__
,
159 "unhandled register size: %d",
160 x86_64_st_collect_regmap
[i
].size
);
166 #endif /* HAVE_UST */
169 initialize_low_tracepoint (void)
171 init_registers_amd64_linux ();
172 ipa_tdesc
= tdesc_amd64_linux
;