gdbserver: turn target op 'create_inferior' into a method
[deliverable/binutils-gdb.git] / gdbserver / target.h
CommitLineData
ce3a066d 1/* Target operations for the remote server for GDB.
b811d2c2 2 Copyright (C) 2002-2020 Free Software Foundation, Inc.
ce3a066d
DJ
3
4 Contributed by MontaVista Software.
5
6 This file is part of GDB.
7
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
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
ce3a066d
DJ
11 (at your option) any later version.
12
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.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
ce3a066d 20
1a5c2598
TT
21#ifndef GDBSERVER_TARGET_H
22#define GDBSERVER_TARGET_H
ce3a066d 23
37ce4055 24#include <sys/types.h> /* for mode_t */
721ec300 25#include "target/target.h"
33b60d58
LM
26#include "target/resume.h"
27#include "target/wait.h"
28#include "target/waitstatus.h"
802e8e6d 29#include "mem-break.h"
268a13a5 30#include "gdbsupport/btrace-common.h"
2090129c 31#include <vector>
3360c0bf 32
6a271cae 33struct emit_ops;
9accd112 34struct buffer;
6a6bbd9d 35struct process_info;
6a271cae 36
2bd7c093
PA
37/* This structure describes how to resume a particular thread (or all
38 threads) based on the client's request. If thread is -1, then this
39 entry applies to all threads. These are passed around as an
40 array. */
64386c31
DJ
41
42struct thread_resume
43{
95954743 44 ptid_t thread;
64386c31 45
bd99dc85
PA
46 /* How to "resume". */
47 enum resume_kind kind;
64386c31 48
bd99dc85
PA
49 /* If non-zero, send this signal when we resume, or to stop the
50 thread. If stopping a thread, and this is 0, the target should
51 stop the thread however it best decides to (e.g., SIGSTOP on
30d50328 52 linux; SuspendThread on win32). This is a host signal value (not
2ea28649 53 enum gdb_signal). */
64386c31 54 int sig;
c2d6af84
PA
55
56 /* Range to single step within. Valid only iff KIND is resume_step.
57
58 Single-step once, and then continuing stepping as long as the
59 thread stops in this range. (If the range is empty
60 [STEP_RANGE_START == STEP_RANGE_END], then this is a single-step
61 request.) */
62 CORE_ADDR step_range_start; /* Inclusive */
63 CORE_ADDR step_range_end; /* Exclusive */
64386c31
DJ
64};
65
5ef9273d
TBA
66class process_target;
67
5b6d1e4f
PA
68/* GDBserver doesn't have a concept of strata like GDB, but we call
69 its target vector "process_stratum" anyway for the benefit of
70 shared code. */
71struct process_stratum_target
ce3a066d 72{
ece66d65
JS
73 /* Do additional setup after a new process is created, including
74 exec-wrapper completion. */
75 void (*post_create_inferior) (void);
c06cbd92 76
ce3a066d
DJ
77 /* Attach to a running process.
78
79 PID is the process ID to attach to, specified by the user
1d5315fe
PA
80 or a higher layer.
81
82 Returns -1 if attaching is unsupported, 0 on success, and calls
83 error() otherwise. */
ce3a066d 84
a1928bad 85 int (*attach) (unsigned long pid);
ce3a066d 86
a780ef4f 87 /* Kill process PROC. Return -1 on failure, and 0 on success. */
ce3a066d 88
a780ef4f 89 int (*kill) (process_info *proc);
ce3a066d 90
ef2ddb33 91 /* Detach from process PROC. Return -1 on failure, and 0 on
95954743 92 success. */
6ad8ae5c 93
ef2ddb33 94 int (*detach) (process_info *proc);
444d6139 95
8336d594
PA
96 /* The inferior process has died. Do what is right. */
97
98 void (*mourn) (struct process_info *proc);
99
d105de22 100 /* Wait for process PID to exit. */
ef2ddb33 101
d105de22 102 void (*join) (int pid);
6ad8ae5c 103
ce3a066d
DJ
104 /* Return 1 iff the thread with process ID PID is alive. */
105
95954743 106 int (*thread_alive) (ptid_t pid);
ce3a066d 107
64386c31 108 /* Resume the inferior process. */
ce3a066d 109
2bd7c093 110 void (*resume) (struct thread_resume *resume_info, size_t n);
ce3a066d 111
5b1c542e 112 /* Wait for the inferior process or thread to change state. Store
95954743
PA
113 status through argument pointer STATUS.
114
115 PTID = -1 to wait for any pid to do something, PTID(pid,0,0) to
116 wait for any thread of process pid to do something. Return ptid
117 of child, or -1 in case of error; store status through argument
118 pointer STATUS. OPTIONS is a bit set of options defined as
119 TARGET_W* above. If options contains TARGET_WNOHANG and there's
120 no child stop to report, return is
121 null_ptid/TARGET_WAITKIND_IGNORE. */
ce3a066d 122
95954743 123 ptid_t (*wait) (ptid_t ptid, struct target_waitstatus *status, int options);
ce3a066d
DJ
124
125 /* Fetch registers from the inferior process.
126
127 If REGNO is -1, fetch all registers; otherwise, fetch at least REGNO. */
128
442ea881 129 void (*fetch_registers) (struct regcache *regcache, int regno);
aa691b87 130
ce3a066d
DJ
131 /* Store registers to the inferior process.
132
133 If REGNO is -1, store all registers; otherwise, store at least REGNO. */
134
442ea881 135 void (*store_registers) (struct regcache *regcache, int regno);
ce3a066d 136
90d74c30
PA
137 /* Prepare to read or write memory from the inferior process.
138 Targets use this to do what is necessary to get the state of the
139 inferior such that it is possible to access memory.
140
141 This should generally only be called from client facing routines,
802e8e6d
PA
142 such as gdb_read_memory/gdb_write_memory, or the GDB breakpoint
143 insertion routine.
90d74c30
PA
144
145 Like `read_memory' and `write_memory' below, returns 0 on success
146 and errno on failure. */
147
148 int (*prepare_to_access_memory) (void);
149
150 /* Undo the effects of prepare_to_access_memory. */
151
0146f85b 152 void (*done_accessing_memory) (void);
90d74c30 153
611cb4a5
DJ
154 /* Read memory from the inferior process. This should generally be
155 called through read_inferior_memory, which handles breakpoint shadowing.
ce3a066d 156
c3e735a6
DJ
157 Read LEN bytes at MEMADDR into a buffer at MYADDR.
158
159 Returns 0 on success and errno on failure. */
ce3a066d 160
f450004a 161 int (*read_memory) (CORE_ADDR memaddr, unsigned char *myaddr, int len);
ce3a066d 162
611cb4a5 163 /* Write memory to the inferior process. This should generally be
4196ab2a 164 called through target_write_memory, which handles breakpoint shadowing.
ce3a066d
DJ
165
166 Write LEN bytes from the buffer at MYADDR to MEMADDR.
167
168 Returns 0 on success and errno on failure. */
169
f450004a
DJ
170 int (*write_memory) (CORE_ADDR memaddr, const unsigned char *myaddr,
171 int len);
2f2893d9
DJ
172
173 /* Query GDB for the values of any symbols we're interested in.
174 This function is called whenever we receive a "qSymbols::"
175 query, which corresponds to every time more symbols (might)
611cb4a5
DJ
176 become available. NULL if we aren't interested in any
177 symbols. */
2f2893d9
DJ
178
179 void (*look_up_symbols) (void);
e5379b03 180
ef57601b
PA
181 /* Send an interrupt request to the inferior process,
182 however is appropriate. */
183
184 void (*request_interrupt) (void);
aa691b87
RM
185
186 /* Read auxiliary vector data from the inferior process.
187
188 Read LEN bytes at OFFSET into a buffer at MYADDR. */
189
f450004a
DJ
190 int (*read_auxv) (CORE_ADDR offset, unsigned char *myaddr,
191 unsigned int len);
e013ee27 192
802e8e6d
PA
193 /* Returns true if GDB Z breakpoint type TYPE is supported, false
194 otherwise. The type is coded as follows:
c6314022
AR
195 '0' - software-breakpoint
196 '1' - hardware-breakpoint
197 '2' - write watchpoint
198 '3' - read watchpoint
802e8e6d
PA
199 '4' - access watchpoint
200 */
201 int (*supports_z_point_type) (char z_type);
202
203 /* Insert and remove a break or watchpoint.
204 Returns 0 on success, -1 on failure and 1 on unsupported. */
e013ee27 205
802e8e6d
PA
206 int (*insert_point) (enum raw_bkpt_type type, CORE_ADDR addr,
207 int size, struct raw_breakpoint *bp);
208 int (*remove_point) (enum raw_bkpt_type type, CORE_ADDR addr,
209 int size, struct raw_breakpoint *bp);
e013ee27 210
1ec68e26
PA
211 /* Returns 1 if the target stopped because it executed a software
212 breakpoint instruction, 0 otherwise. */
213 int (*stopped_by_sw_breakpoint) (void);
214
215 /* Returns true if the target knows whether a trap was caused by a
216 SW breakpoint triggering. */
217 int (*supports_stopped_by_sw_breakpoint) (void);
218
219 /* Returns 1 if the target stopped for a hardware breakpoint. */
220 int (*stopped_by_hw_breakpoint) (void);
221
222 /* Returns true if the target knows whether a trap was caused by a
223 HW breakpoint triggering. */
224 int (*supports_stopped_by_hw_breakpoint) (void);
225
70b90b91
YQ
226 /* Returns true if the target can do hardware single step. */
227 int (*supports_hardware_single_step) (void);
45614f15 228
e013ee27
OF
229 /* Returns 1 if target was stopped due to a watchpoint hit, 0 otherwise. */
230
231 int (*stopped_by_watchpoint) (void);
232
1b3f6016 233 /* Returns the address associated with the watchpoint that hit, if any;
e013ee27
OF
234 returns 0 otherwise. */
235
236 CORE_ADDR (*stopped_data_address) (void);
237
52fb6437
NS
238 /* Reports the text, data offsets of the executable. This is
239 needed for uclinux where the executable is relocated during load
240 time. */
1b3f6016 241
52fb6437 242 int (*read_offsets) (CORE_ADDR *text, CORE_ADDR *data);
dae5f5cf
DJ
243
244 /* Fetch the address associated with a specific thread local storage
245 area, determined by the specified THREAD, OFFSET, and LOAD_MODULE.
246 Stores it in *ADDRESS and returns zero on success; otherwise returns
247 an error code. A return value of -1 means this system does not
248 support the operation. */
249
250 int (*get_tls_address) (struct thread_info *thread, CORE_ADDR offset,
251 CORE_ADDR load_module, CORE_ADDR *address);
23181151 252
59a016f0
PA
253 /* Fill BUF with an hostio error packet representing the last hostio
254 error. */
255 void (*hostio_last_error) (char *buf);
07e059b5
VP
256
257 /* Read/Write OS data using qXfer packets. */
258 int (*qxfer_osdata) (const char *annex, unsigned char *readbuf,
1b3f6016 259 unsigned const char *writebuf, CORE_ADDR offset,
07e059b5 260 int len);
4aa995e1
PA
261
262 /* Read/Write extra signal info. */
263 int (*qxfer_siginfo) (const char *annex, unsigned char *readbuf,
264 unsigned const char *writebuf,
265 CORE_ADDR offset, int len);
bd99dc85
PA
266
267 int (*supports_non_stop) (void);
268
269 /* Enables async target events. Returns the previous enable
270 state. */
271 int (*async) (int enable);
272
273 /* Switch to non-stop (1) or all-stop (0) mode. Return 0 on
274 success, -1 otherwise. */
275 int (*start_non_stop) (int);
cf8fd78b
PA
276
277 /* Returns true if the target supports multi-process debugging. */
278 int (*supports_multi_process) (void);
cdbfd419 279
89245bc0
DB
280 /* Returns true if fork events are supported. */
281 int (*supports_fork_events) (void);
282
283 /* Returns true if vfork events are supported. */
284 int (*supports_vfork_events) (void);
285
94585166
DB
286 /* Returns true if exec events are supported. */
287 int (*supports_exec_events) (void);
288
de0d863e
DB
289 /* Allows target to re-initialize connection-specific settings. */
290 void (*handle_new_gdb_connection) (void);
291
cdbfd419
PP
292 /* If not NULL, target-specific routine to process monitor command.
293 Returns 1 if handled, or 0 to perform default processing. */
294 int (*handle_monitor_command) (char *);
dc146f7c
VP
295
296 /* Returns the core given a thread, or -1 if not known. */
297 int (*core_of_thread) (ptid_t);
1570b33e 298
78d85199
YQ
299 /* Read loadmaps. Read LEN bytes at OFFSET into a buffer at MYADDR. */
300 int (*read_loadmap) (const char *annex, CORE_ADDR offset,
881127c9 301 unsigned char *myaddr, unsigned int len);
78d85199 302
06e03fff
PA
303 /* Target specific qSupported support. FEATURES is an array of
304 features with COUNT elements. */
305 void (*process_qsupported) (char **features, int count);
219f2f23
PA
306
307 /* Return 1 if the target supports tracepoints, 0 (or leave the
308 callback NULL) otherwise. */
309 int (*supports_tracepoints) (void);
310
311 /* Read PC from REGCACHE. */
312 CORE_ADDR (*read_pc) (struct regcache *regcache);
313
314 /* Write PC to REGCACHE. */
315 void (*write_pc) (struct regcache *regcache, CORE_ADDR pc);
8336d594
PA
316
317 /* Return true if THREAD is known to be stopped now. */
318 int (*thread_stopped) (struct thread_info *thread);
319
711e434b
PM
320 /* Read Thread Information Block address. */
321 int (*get_tib_address) (ptid_t ptid, CORE_ADDR *address);
7984d532 322
609086b1 323 /* Pause all threads. If FREEZE, arrange for any resume attempt to
7984d532
PA
324 be ignored until an unpause_all call unfreezes threads again.
325 There can be nested calls to pause_all, so a freeze counter
326 should be maintained. */
327 void (*pause_all) (int freeze);
328
329 /* Unpause all threads. Threads that hadn't been resumed by the
330 client should be left stopped. Basically a pause/unpause call
331 pair should not end up resuming threads that were stopped before
332 the pause call. */
333 void (*unpause_all) (int unfreeze);
334
fa593d66
PA
335 /* Stabilize all threads. That is, force them out of jump pads. */
336 void (*stabilize_threads) (void);
337
338 /* Install a fast tracepoint jump pad. TPOINT is the address of the
339 tracepoint internal object as used by the IPA agent. TPADDR is
340 the address of tracepoint. COLLECTOR is address of the function
341 the jump pad redirects to. LOCKADDR is the address of the jump
342 pad lock object. ORIG_SIZE is the size in bytes of the
343 instruction at TPADDR. JUMP_ENTRY points to the address of the
344 jump pad entry, and on return holds the address past the end of
405f8e94
SS
345 the created jump pad. If a trampoline is created by the function,
346 then TRAMPOLINE and TRAMPOLINE_SIZE return the address and size of
347 the trampoline, else they remain unchanged. JJUMP_PAD_INSN is a
348 buffer containing a copy of the instruction at TPADDR.
349 ADJUST_INSN_ADDR and ADJUST_INSN_ADDR_END are output parameters that
350 return the address range where the instruction at TPADDR was relocated
351 to. If an error occurs, the ERR may be used to pass on an error
352 message. */
fa593d66
PA
353 int (*install_fast_tracepoint_jump_pad) (CORE_ADDR tpoint, CORE_ADDR tpaddr,
354 CORE_ADDR collector,
355 CORE_ADDR lockaddr,
356 ULONGEST orig_size,
357 CORE_ADDR *jump_entry,
405f8e94
SS
358 CORE_ADDR *trampoline,
359 ULONGEST *trampoline_size,
fa593d66
PA
360 unsigned char *jjump_pad_insn,
361 ULONGEST *jjump_pad_insn_size,
362 CORE_ADDR *adjusted_insn_addr,
405f8e94
SS
363 CORE_ADDR *adjusted_insn_addr_end,
364 char *err);
6a271cae
PA
365
366 /* Return the bytecode operations vector for the current inferior.
367 Returns NULL if bytecode compilation is not supported. */
368 struct emit_ops *(*emit_ops) (void);
03583c20
UW
369
370 /* Returns true if the target supports disabling randomization. */
371 int (*supports_disable_randomization) (void);
405f8e94
SS
372
373 /* Return the minimum length of an instruction that can be safely overwritten
374 for use as a fast tracepoint. */
375 int (*get_min_fast_tracepoint_insn_len) (void);
2268b414
JK
376
377 /* Read solib info on SVR4 platforms. */
378 int (*qxfer_libraries_svr4) (const char *annex, unsigned char *readbuf,
379 unsigned const char *writebuf,
380 CORE_ADDR offset, int len);
d1feda86
YQ
381
382 /* Return true if target supports debugging agent. */
383 int (*supports_agent) (void);
9accd112 384
f4abbc16
MM
385 /* Enable branch tracing for PTID based on CONF and allocate a branch trace
386 target information struct for reading and for disabling branch trace. */
387 struct btrace_target_info *(*enable_btrace)
388 (ptid_t ptid, const struct btrace_config *conf);
9accd112 389
969c39fb
MM
390 /* Disable branch tracing.
391 Returns zero on success, non-zero otherwise. */
9accd112
MM
392 int (*disable_btrace) (struct btrace_target_info *tinfo);
393
add67df8 394 /* Read branch trace data into buffer.
969c39fb
MM
395 Return 0 on success; print an error message into BUFFER and return -1,
396 otherwise. */
add67df8
PA
397 int (*read_btrace) (struct btrace_target_info *, struct buffer *,
398 enum btrace_read_type type);
9accd112 399
f4abbc16
MM
400 /* Read the branch trace configuration into BUFFER.
401 Return 0 on success; print an error message into BUFFER and return -1
402 otherwise. */
403 int (*read_btrace_conf) (const struct btrace_target_info *, struct buffer *);
404
c2d6af84
PA
405 /* Return true if target supports range stepping. */
406 int (*supports_range_stepping) (void);
e57f1de3
GB
407
408 /* Return the full absolute name of the executable file that was
409 run to create the process PID. If the executable file cannot
410 be determined, NULL is returned. Otherwise, a pointer to a
411 character string containing the pathname is returned. This
412 string should be copied into a buffer by the client if the string
413 will not be immediately used, or if it must persist. */
414 char *(*pid_to_exec_file) (int pid);
14d2069a
GB
415
416 /* Multiple-filesystem-aware open. Like open(2), but operating in
417 the filesystem as it appears to process PID. Systems where all
418 processes share a common filesystem should set this to NULL.
419 If NULL, the caller should fall back to open(2). */
420 int (*multifs_open) (int pid, const char *filename,
421 int flags, mode_t mode);
422
423 /* Multiple-filesystem-aware unlink. Like unlink(2), but operates
424 in the filesystem as it appears to process PID. Systems where
425 all processes share a common filesystem should set this to NULL.
426 If NULL, the caller should fall back to unlink(2). */
427 int (*multifs_unlink) (int pid, const char *filename);
428
429 /* Multiple-filesystem-aware readlink. Like readlink(2), but
430 operating in the filesystem as it appears to process PID.
431 Systems where all processes share a common filesystem should
432 set this to NULL. If NULL, the caller should fall back to
433 readlink(2). */
434 ssize_t (*multifs_readlink) (int pid, const char *filename,
435 char *buf, size_t bufsiz);
dd373349
AT
436
437 /* Return the breakpoint kind for this target based on PC. The PCPTR is
438 adjusted to the real memory location in case a flag (e.g., the Thumb bit on
439 ARM) was present in the PC. */
440 int (*breakpoint_kind_from_pc) (CORE_ADDR *pcptr);
441
442 /* Return the software breakpoint from KIND. KIND can have target
443 specific meaning like the Z0 kind parameter.
444 SIZE is set to the software breakpoint's length in memory. */
445 const gdb_byte *(*sw_breakpoint_from_kind) (int kind, int *size);
79efa585
SM
446
447 /* Return the thread's name, or NULL if the target is unable to determine it.
448 The returned value must not be freed by the caller. */
449 const char *(*thread_name) (ptid_t thread);
769ef81f
AT
450
451 /* Return the breakpoint kind for this target based on the current
452 processor state (e.g. the current instruction mode on ARM) and the
453 PC. The PCPTR is adjusted to the real memory location in case a flag
454 (e.g., the Thumb bit on ARM) is present in the PC. */
455 int (*breakpoint_kind_from_current_state) (CORE_ADDR *pcptr);
7d00775e
AT
456
457 /* Returns true if the target can software single step. */
458 int (*supports_software_single_step) (void);
82075af2
JS
459
460 /* Return 1 if the target supports catch syscall, 0 (or leave the
461 callback NULL) otherwise. */
462 int (*supports_catch_syscall) (void);
ae91f625
MK
463
464 /* Return tdesc index for IPA. */
465 int (*get_ipa_tdesc_idx) (void);
f6327dcb
KB
466
467 /* Thread ID to (numeric) thread handle: Return true on success and
468 false for failure. Return pointer to thread handle via HANDLE
469 and the handle's length via HANDLE_LEN. */
470 bool (*thread_handle) (ptid_t ptid, gdb_byte **handle, int *handle_len);
5ef9273d
TBA
471
472 /* The object that will gradually replace this struct. */
473 process_target *pt;
474};
475
476class process_target
477{
478public:
479
480 virtual ~process_target () = default;
15295543
TBA
481
482 /* Start a new process.
483
484 PROGRAM is a path to the program to execute.
485 PROGRAM_ARGS is a standard NULL-terminated array of arguments,
486 to be passed to the inferior as ``argv'' (along with PROGRAM).
487
488 Returns the new PID on success, -1 on failure. Registers the new
489 process with the process list. */
490 virtual int create_inferior (const char *program,
491 const std::vector<char *> &program_args) = 0;
ce3a066d
DJ
492};
493
5b6d1e4f 494extern process_stratum_target *the_target;
ce3a066d 495
5b6d1e4f 496void set_target_ops (process_stratum_target *);
ce3a066d 497
15295543
TBA
498#define target_create_inferior(program, program_args) \
499 the_target->pt->create_inferior (program, program_args)
ce3a066d 500
ece66d65
JS
501#define target_post_create_inferior() \
502 do \
503 { \
504 if (the_target->post_create_inferior != NULL) \
505 (*the_target->post_create_inferior) (); \
c06cbd92
YQ
506 } while (0)
507
ce3a066d
DJ
508#define myattach(pid) \
509 (*the_target->attach) (pid)
510
a780ef4f 511int kill_inferior (process_info *proc);
ce3a066d 512
89245bc0
DB
513#define target_supports_fork_events() \
514 (the_target->supports_fork_events ? \
515 (*the_target->supports_fork_events) () : 0)
516
517#define target_supports_vfork_events() \
518 (the_target->supports_vfork_events ? \
519 (*the_target->supports_vfork_events) () : 0)
520
94585166
DB
521#define target_supports_exec_events() \
522 (the_target->supports_exec_events ? \
523 (*the_target->supports_exec_events) () : 0)
524
452003ef
PA
525#define target_handle_new_gdb_connection() \
526 do \
527 { \
528 if (the_target->handle_new_gdb_connection != NULL) \
529 (*the_target->handle_new_gdb_connection) (); \
530 } while (0)
de0d863e 531
ef2ddb33
PA
532#define detach_inferior(proc) \
533 (*the_target->detach) (proc)
6ad8ae5c 534
ce3a066d
DJ
535#define mythread_alive(pid) \
536 (*the_target->thread_alive) (pid)
537
442ea881
PA
538#define fetch_inferior_registers(regcache, regno) \
539 (*the_target->fetch_registers) (regcache, regno)
ce3a066d 540
442ea881
PA
541#define store_inferior_registers(regcache, regno) \
542 (*the_target->store_registers) (regcache, regno)
ce3a066d 543
d105de22
TT
544#define join_inferior(pid) \
545 (*the_target->join) (pid)
444d6139 546
bd99dc85
PA
547#define target_supports_non_stop() \
548 (the_target->supports_non_stop ? (*the_target->supports_non_stop ) () : 0)
549
550#define target_async(enable) \
551 (the_target->async ? (*the_target->async) (enable) : 0)
552
06e03fff 553#define target_process_qsupported(features, count) \
8336d594
PA
554 do \
555 { \
556 if (the_target->process_qsupported) \
06e03fff 557 the_target->process_qsupported (features, count); \
8336d594 558 } while (0)
1570b33e 559
82075af2
JS
560#define target_supports_catch_syscall() \
561 (the_target->supports_catch_syscall ? \
562 (*the_target->supports_catch_syscall) () : 0)
563
ae91f625
MK
564#define target_get_ipa_tdesc_idx() \
565 (the_target->get_ipa_tdesc_idx \
566 ? (*the_target->get_ipa_tdesc_idx) () : 0)
567
219f2f23
PA
568#define target_supports_tracepoints() \
569 (the_target->supports_tracepoints \
570 ? (*the_target->supports_tracepoints) () : 0)
571
fa593d66
PA
572#define target_supports_fast_tracepoints() \
573 (the_target->install_fast_tracepoint_jump_pad != NULL)
574
405f8e94
SS
575#define target_get_min_fast_tracepoint_insn_len() \
576 (the_target->get_min_fast_tracepoint_insn_len \
577 ? (*the_target->get_min_fast_tracepoint_insn_len) () : 0)
578
8336d594
PA
579#define thread_stopped(thread) \
580 (*the_target->thread_stopped) (thread)
581
7984d532
PA
582#define pause_all(freeze) \
583 do \
584 { \
585 if (the_target->pause_all) \
586 (*the_target->pause_all) (freeze); \
587 } while (0)
588
589#define unpause_all(unfreeze) \
590 do \
591 { \
592 if (the_target->unpause_all) \
593 (*the_target->unpause_all) (unfreeze); \
594 } while (0)
595
fa593d66
PA
596#define stabilize_threads() \
597 do \
598 { \
599 if (the_target->stabilize_threads) \
600 (*the_target->stabilize_threads) (); \
601 } while (0)
602
603#define install_fast_tracepoint_jump_pad(tpoint, tpaddr, \
604 collector, lockaddr, \
605 orig_size, \
405f8e94
SS
606 jump_entry, \
607 trampoline, trampoline_size, \
608 jjump_pad_insn, \
fa593d66
PA
609 jjump_pad_insn_size, \
610 adjusted_insn_addr, \
405f8e94
SS
611 adjusted_insn_addr_end, \
612 err) \
fa593d66
PA
613 (*the_target->install_fast_tracepoint_jump_pad) (tpoint, tpaddr, \
614 collector,lockaddr, \
615 orig_size, jump_entry, \
405f8e94
SS
616 trampoline, \
617 trampoline_size, \
fa593d66
PA
618 jjump_pad_insn, \
619 jjump_pad_insn_size, \
620 adjusted_insn_addr, \
405f8e94
SS
621 adjusted_insn_addr_end, \
622 err)
fa593d66 623
6a271cae
PA
624#define target_emit_ops() \
625 (the_target->emit_ops ? (*the_target->emit_ops) () : NULL)
626
03583c20
UW
627#define target_supports_disable_randomization() \
628 (the_target->supports_disable_randomization ? \
629 (*the_target->supports_disable_randomization) () : 0)
630
d1feda86
YQ
631#define target_supports_agent() \
632 (the_target->supports_agent ? \
633 (*the_target->supports_agent) () : 0)
634
b1223e78
MM
635static inline struct btrace_target_info *
636target_enable_btrace (ptid_t ptid, const struct btrace_config *conf)
637{
638 if (the_target->enable_btrace == nullptr)
639 error (_("Target does not support branch tracing."));
640
641 return (*the_target->enable_btrace) (ptid, conf);
642}
643
644static inline int
645target_disable_btrace (struct btrace_target_info *tinfo)
646{
647 if (the_target->disable_btrace == nullptr)
648 error (_("Target does not support branch tracing."));
9accd112 649
b1223e78
MM
650 return (*the_target->disable_btrace) (tinfo);
651}
9accd112 652
b1223e78
MM
653static inline int
654target_read_btrace (struct btrace_target_info *tinfo,
655 struct buffer *buffer,
656 enum btrace_read_type type)
657{
658 if (the_target->read_btrace == nullptr)
659 error (_("Target does not support branch tracing."));
660
661 return (*the_target->read_btrace) (tinfo, buffer, type);
662}
663
664static inline int
665target_read_btrace_conf (struct btrace_target_info *tinfo,
666 struct buffer *buffer)
667{
668 if (the_target->read_btrace_conf == nullptr)
669 error (_("Target does not support branch tracing."));
9accd112 670
b1223e78
MM
671 return (*the_target->read_btrace_conf) (tinfo, buffer);
672}
f4abbc16 673
c2d6af84
PA
674#define target_supports_range_stepping() \
675 (the_target->supports_range_stepping ? \
676 (*the_target->supports_range_stepping) () : 0)
677
1ec68e26
PA
678#define target_supports_stopped_by_sw_breakpoint() \
679 (the_target->supports_stopped_by_sw_breakpoint ? \
680 (*the_target->supports_stopped_by_sw_breakpoint) () : 0)
681
682#define target_stopped_by_sw_breakpoint() \
683 (the_target->stopped_by_sw_breakpoint ? \
684 (*the_target->stopped_by_sw_breakpoint) () : 0)
685
686#define target_supports_stopped_by_hw_breakpoint() \
687 (the_target->supports_stopped_by_hw_breakpoint ? \
688 (*the_target->supports_stopped_by_hw_breakpoint) () : 0)
689
70b90b91
YQ
690#define target_supports_hardware_single_step() \
691 (the_target->supports_hardware_single_step ? \
692 (*the_target->supports_hardware_single_step) () : 0)
45614f15 693
1ec68e26
PA
694#define target_stopped_by_hw_breakpoint() \
695 (the_target->stopped_by_hw_breakpoint ? \
696 (*the_target->stopped_by_hw_breakpoint) () : 0)
697
2e6ee069
AT
698#define target_breakpoint_kind_from_pc(pcptr) \
699 (the_target->breakpoint_kind_from_pc \
700 ? (*the_target->breakpoint_kind_from_pc) (pcptr) \
701 : default_breakpoint_kind_from_pc (pcptr))
702
769ef81f
AT
703#define target_breakpoint_kind_from_current_state(pcptr) \
704 (the_target->breakpoint_kind_from_current_state \
705 ? (*the_target->breakpoint_kind_from_current_state) (pcptr) \
706 : target_breakpoint_kind_from_pc (pcptr))
707
7d00775e
AT
708#define target_supports_software_single_step() \
709 (the_target->supports_software_single_step ? \
710 (*the_target->supports_software_single_step) () : 0)
711
bd99dc85
PA
712/* Start non-stop mode, returns 0 on success, -1 on failure. */
713
714int start_non_stop (int nonstop);
715
95954743
PA
716ptid_t mywait (ptid_t ptid, struct target_waitstatus *ourstatus, int options,
717 int connected_wait);
0d62e5e8 718
a67a9fae 719/* Prepare to read or write memory from the inferior process. See the
5b6d1e4f 720 corresponding process_stratum_target methods for more details. */
90d74c30 721
a67a9fae
PA
722int prepare_to_access_memory (void);
723void done_accessing_memory (void);
90d74c30 724
3e10640f
YQ
725#define target_core_of_thread(ptid) \
726 (the_target->core_of_thread ? (*the_target->core_of_thread) (ptid) \
727 : -1)
728
79efa585
SM
729#define target_thread_name(ptid) \
730 (the_target->thread_name ? (*the_target->thread_name) (ptid) \
731 : NULL)
732
f6327dcb
KB
733#define target_thread_handle(ptid, handle, handle_len) \
734 (the_target->thread_handle ? (*the_target->thread_handle) \
735 (ptid, handle, handle_len) \
736 : false)
737
f450004a 738int read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len);
ce3a066d 739
f557a88a 740int set_desired_thread ();
ce3a066d 741
95954743
PA
742const char *target_pid_to_str (ptid_t);
743
70b90b91
YQ
744int target_can_do_hardware_single_step (void);
745
2e6ee069
AT
746int default_breakpoint_kind_from_pc (CORE_ADDR *pcptr);
747
1a5c2598 748#endif /* GDBSERVER_TARGET_H */
This page took 1.919709 seconds and 4 git commands to generate.