2012-03-07 Pedro Alves <palves@redhat.com>
[deliverable/binutils-gdb.git] / gdb / gdbserver / server.h
CommitLineData
c906108c 1/* Common definitions for remote server for GDB.
0b302171
JB
2 Copyright (C) 1993, 1995, 1997-2000, 2002-2012 Free Software
3 Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 19
0a30fbc4
DJ
20#ifndef SERVER_H
21#define SERVER_H
22
23#include "config.h"
0729219d 24
68070c10
PA
25#ifdef __MINGW32CE__
26#include "wincecompat.h"
27#endif
28
0a30fbc4
DJ
29#include <stdarg.h>
30#include <stdio.h>
31#include <stdlib.h>
68070c10 32#ifdef HAVE_ERRNO_H
0a30fbc4 33#include <errno.h>
68070c10 34#endif
0729219d 35#include <setjmp.h>
0a30fbc4 36
d64b8841
DJ
37#ifdef HAVE_STRING_H
38#include <string.h>
39#endif
40
a1723c35 41#ifdef HAVE_ALLOCA_H
42#include <alloca.h>
43#endif
a778ab81 44/* On some systems such as MinGW, alloca is declared in malloc.h
45 (there is no alloca.h). */
46#if HAVE_MALLOC_H
47#include <malloc.h>
48#endif
a1723c35 49
e122f1f5 50#if !HAVE_DECL_STRERROR
43d5792c
DJ
51#ifndef strerror
52extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
53#endif
54#endif
55
68070c10
PA
56#if !HAVE_DECL_PERROR
57#ifndef perror
58extern void perror (const char *);
59#endif
60#endif
61
ec56be1b
PA
62#if !HAVE_DECL_MEMMEM
63extern void *memmem (const void *, size_t , const void *, size_t);
64#endif
65
bb0116a4
JB
66#if !HAVE_DECL_VASPRINTF
67extern int vasprintf(char **strp, const char *fmt, va_list ap);
68#endif
69#if !HAVE_DECL_VSNPRINTF
70int vsnprintf(char *str, size_t size, const char *format, va_list ap);
71#endif
72
0729219d 73#ifndef ATTR_NORETURN
493e2a69
MS
74#if defined(__GNUC__) && (__GNUC__ > 2 \
75 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7))
0729219d
DJ
76#define ATTR_NORETURN __attribute__ ((noreturn))
77#else
78#define ATTR_NORETURN /* nothing */
79#endif
80#endif
81
82#ifndef ATTR_FORMAT
493e2a69
MS
83#if defined(__GNUC__) && (__GNUC__ > 2 \
84 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 4))
0729219d
DJ
85#define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
86#else
87#define ATTR_FORMAT(type, x, y) /* nothing */
88#endif
89#endif
90
bca929d3
DE
91#ifndef ATTR_MALLOC
92#if defined(__GNUC__) && (__GNUC__ >= 3)
93#define ATTR_MALLOC __attribute__ ((__malloc__))
94#else
95#define ATTR_MALLOC /* nothing */
96#endif
97#endif
98
9e0627f1
PM
99/* Define underscore macro, if not available, to be able to use it inside
100 code shared with gdb in common directory. */
101#ifndef _
102#define _(String) (String)
103#endif
104
5e1dc496
LM
105#ifdef IN_PROCESS_AGENT
106# define PROG "ipa"
107#else
108# define PROG "gdbserver"
109#endif
110
01f9e8fa
DJ
111/* A type used for binary buffers. */
112typedef unsigned char gdb_byte;
113
d26e3629
KY
114#include "ptid.h"
115#include "buffer.h"
116#include "xml-utils.h"
117#include "gdb_locale.h"
118
0729219d
DJ
119/* FIXME: This should probably be autoconf'd for. It's an integer type at
120 least the size of a (void *). */
0a30fbc4
DJ
121typedef long long CORE_ADDR;
122
219f2f23 123typedef long long LONGEST;
95954743
PA
124typedef unsigned long long ULONGEST;
125
0d62e5e8
DJ
126/* Generic information for tracking a list of ``inferiors'' - threads,
127 processes, etc. */
128struct inferior_list
129{
130 struct inferior_list_entry *head;
131 struct inferior_list_entry *tail;
132};
133struct inferior_list_entry
134{
95954743 135 ptid_t id;
0d62e5e8
DJ
136 struct inferior_list_entry *next;
137};
138
0d62e5e8 139struct thread_info;
d50171e4
PA
140struct process_info;
141struct regcache;
142
143#include "regcache.h"
144#include "gdb/signals.h"
145#include "gdb_signals.h"
146#include "target.h"
147#include "mem-break.h"
148
149struct thread_info
150{
151 struct inferior_list_entry entry;
152 void *target_data;
153 void *regcache_data;
154
8336d594
PA
155 /* The last resume GDB requested on this thread. */
156 enum resume_kind last_resume_kind;
157
d50171e4
PA
158 /* The last wait status reported for this thread. */
159 struct target_waitstatus last_status;
219f2f23
PA
160
161 /* Given `while-stepping', a thread may be collecting data for more
162 than one tracepoint simultaneously. E.g.:
163
164 ff0001 INSN1 <-- TP1, while-stepping 10 collect $regs
165 ff0002 INSN2
166 ff0003 INSN3 <-- TP2, collect $regs
167 ff0004 INSN4 <-- TP3, while-stepping 10 collect $regs
168 ff0005 INSN5
169
170 Notice that when instruction INSN5 is reached, the while-stepping
171 actions of both TP1 and TP3 are still being collected, and that TP2
172 had been collected meanwhile. The whole range of ff0001-ff0005
173 should be single-stepped, due to at least TP1's while-stepping
174 action covering the whole range.
175
176 On the other hand, the same tracepoint with a while-stepping action
177 may be hit by more than one thread simultaneously, hence we can't
178 keep the current step count in the tracepoint itself.
179
180 This is the head of the list of the states of `while-stepping'
181 tracepoint actions this thread is now collecting; NULL if empty.
182 Each item in the list holds the current step of the while-stepping
183 action. */
184 struct wstep_state *while_stepping;
d50171e4 185};
c04a1aa8 186
255e7678
DJ
187struct dll_info
188{
189 struct inferior_list_entry entry;
190 char *name;
191 CORE_ADDR base_addr;
192};
193
95954743
PA
194struct sym_cache;
195struct breakpoint;
8b07ae33 196struct raw_breakpoint;
fa593d66 197struct fast_tracepoint_jump;
95954743
PA
198struct process_info_private;
199
200struct process_info
201{
202 struct inferior_list_entry head;
203
8336d594
PA
204 /* Nonzero if this child process was attached rather than
205 spawned. */
95954743
PA
206 int attached;
207
8336d594
PA
208 /* True if GDB asked us to detach from this process, but we remained
209 attached anyway. */
210 int gdb_detached;
211
95954743
PA
212 /* The symbol cache. */
213 struct sym_cache *symbol_cache;
214
95954743
PA
215 /* The list of memory breakpoints. */
216 struct breakpoint *breakpoints;
217
8b07ae33
PA
218 /* The list of raw memory breakpoints. */
219 struct raw_breakpoint *raw_breakpoints;
220
fa593d66
PA
221 /* The list of installed fast tracepoints. */
222 struct fast_tracepoint_jump *fast_tracepoint_jumps;
223
95954743
PA
224 /* Private target data. */
225 struct process_info_private *private;
226};
227
228/* Return a pointer to the process that corresponds to the current
229 thread (current_inferior). It is an error to call this if there is
230 no current thread selected. */
231
232struct process_info *current_process (void);
7fe519cb 233struct process_info *get_thread_process (struct thread_info *);
95954743 234
c906108c
SS
235/* Target-specific functions */
236
4ce44c66 237void initialize_low ();
c906108c 238
ce3a066d
DJ
239/* From inferiors.c. */
240
95954743 241extern struct inferior_list all_processes;
0d62e5e8 242extern struct inferior_list all_threads;
255e7678
DJ
243extern struct inferior_list all_dlls;
244extern int dlls_changed;
bf4c19f7 245extern void clear_dlls (void);
255e7678 246
0d62e5e8
DJ
247void add_inferior_to_list (struct inferior_list *list,
248 struct inferior_list_entry *new_inferior);
249void for_each_inferior (struct inferior_list *list,
250 void (*action) (struct inferior_list_entry *));
95954743 251
0d62e5e8
DJ
252extern struct thread_info *current_inferior;
253void remove_inferior (struct inferior_list *list,
254 struct inferior_list_entry *entry);
255void remove_thread (struct thread_info *thread);
95954743
PA
256void add_thread (ptid_t ptid, void *target_data);
257
258struct process_info *add_process (int pid, int attached);
259void remove_process (struct process_info *process);
260struct process_info *find_process_pid (int pid);
9f767825
DE
261int have_started_inferiors_p (void);
262int have_attached_inferiors_p (void);
95954743 263
e09875d4 264struct thread_info *find_thread_ptid (ptid_t ptid);
95954743
PA
265
266ptid_t thread_id_to_gdb_id (ptid_t);
267ptid_t thread_to_gdb_id (struct thread_info *);
268ptid_t gdb_id_to_thread_id (ptid_t);
dae5f5cf 269struct thread_info *gdb_id_to_thread (unsigned int);
ce3a066d 270void clear_inferiors (void);
0d62e5e8
DJ
271struct inferior_list_entry *find_inferior
272 (struct inferior_list *,
273 int (*func) (struct inferior_list_entry *,
274 void *),
275 void *arg);
276struct inferior_list_entry *find_inferior_id (struct inferior_list *list,
95954743 277 ptid_t id);
0d62e5e8
DJ
278void *inferior_target_data (struct thread_info *);
279void set_inferior_target_data (struct thread_info *, void *);
280void *inferior_regcache_data (struct thread_info *);
281void set_inferior_regcache_data (struct thread_info *, void *);
ce3a066d 282
255e7678
DJ
283void loaded_dll (const char *name, CORE_ADDR base_addr);
284void unloaded_dll (const char *name, CORE_ADDR base_addr);
285
c906108c
SS
286/* Public variables in server.c */
287
95954743
PA
288extern ptid_t cont_thread;
289extern ptid_t general_thread;
5b1c542e 290
0d62e5e8 291extern int server_waiting;
c74d0ad8 292extern int debug_threads;
aa5ca48f 293extern int debug_hw_points;
89be2091 294extern int pass_signals[];
9b224c5e
PA
295extern int program_signals[];
296extern int program_signals_p;
c906108c
SS
297
298extern jmp_buf toplevel;
c906108c 299
db42f210
PA
300extern int disable_packet_vCont;
301extern int disable_packet_Tthread;
302extern int disable_packet_qC;
303extern int disable_packet_qfThreadInfo;
304
03f2bd59 305extern int run_once;
95954743 306extern int multi_process;
bd99dc85
PA
307extern int non_stop;
308
03583c20
UW
309extern int disable_randomization;
310
ec48365d
PA
311#if USE_WIN32API
312#include <winsock2.h>
313typedef SOCKET gdb_fildes_t;
314#else
315typedef int gdb_fildes_t;
316#endif
317
bd99dc85
PA
318/* Functions from event-loop.c. */
319typedef void *gdb_client_data;
8336d594 320typedef int (handler_func) (int, gdb_client_data);
24b066ba 321typedef int (callback_handler_func) (gdb_client_data);
bd99dc85 322
ec48365d
PA
323extern void delete_file_handler (gdb_fildes_t fd);
324extern void add_file_handler (gdb_fildes_t fd, handler_func *proc,
bd99dc85 325 gdb_client_data client_data);
24b066ba
DE
326extern int append_callback_event (callback_handler_func *proc,
327 gdb_client_data client_data);
328extern void delete_callback_event (int id);
bd99dc85
PA
329
330extern void start_event_loop (void);
331
332/* Functions from server.c. */
8336d594
PA
333extern int handle_serial_event (int err, gdb_client_data client_data);
334extern int handle_target_event (int err, gdb_client_data client_data);
bd99dc85 335
95954743 336extern void push_event (ptid_t ptid, struct target_waitstatus *status);
bd99dc85 337
a6b151f1
DJ
338/* Functions from hostio.c. */
339extern int handle_vFile (char *, int, int *);
340
59a016f0
PA
341/* Functions from hostio-errno.c. */
342extern void hostio_last_error_from_errno (char *own_buf);
343
ea025f5f
DJ
344/* From remote-utils.c */
345
c74d0ad8 346extern int remote_debug;
a6f3e723
SL
347extern int noack_mode;
348extern int transport_is_reliable;
c906108c 349
8336d594
PA
350int gdb_connected (void);
351
e0f9f062
DE
352#define STDIO_CONNECTION_NAME "stdio"
353int remote_connection_is_stdio (void);
354
95954743
PA
355ptid_t read_ptid (char *buf, char **obuf);
356char *write_ptid (char *buf, ptid_t ptid);
357
a14ed312 358int putpkt (char *buf);
01f9e8fa 359int putpkt_binary (char *buf, int len);
bd99dc85 360int putpkt_notif (char *buf);
a14ed312 361int getpkt (char *buf);
03f2bd59 362void remote_prepare (char *name);
a14ed312
KB
363void remote_open (char *name);
364void remote_close (void);
365void write_ok (char *buf);
366void write_enn (char *buf);
a20d5e98 367void initialize_async_io (void);
a14ed312
KB
368void enable_async_io (void);
369void disable_async_io (void);
7390519e 370void check_remote_input_interrupt_request (void);
fa593d66
PA
371void convert_ascii_to_int (const char *from, unsigned char *to, int n);
372void convert_int_to_ascii (const unsigned char *from, char *to, int n);
0d62e5e8
DJ
373void new_thread_notify (int id);
374void dead_thread_notify (int id);
95954743 375void prepare_resume_reply (char *buf, ptid_t ptid,
5b1c542e 376 struct target_waitstatus *status);
c906108c 377
89be2091 378const char *decode_address_to_semicolon (CORE_ADDR *addrp, const char *start);
dae5f5cf 379void decode_address (CORE_ADDR *addrp, const char *start, int len);
a14ed312
KB
380void decode_m_packet (char *from, CORE_ADDR * mem_addr_ptr,
381 unsigned int *len_ptr);
382void decode_M_packet (char *from, CORE_ADDR * mem_addr_ptr,
fa593d66 383 unsigned int *len_ptr, unsigned char **to_p);
01f9e8fa 384int decode_X_packet (char *from, int packet_len, CORE_ADDR * mem_addr_ptr,
fa593d66 385 unsigned int *len_ptr, unsigned char **to_p);
d08aafef 386int decode_xfer_write (char *buf, int packet_len,
0e7f50da
UW
387 CORE_ADDR *offset, unsigned int *len,
388 unsigned char *data);
08388c79
DE
389int decode_search_memory_packet (const char *buf, int packet_len,
390 CORE_ADDR *start_addrp,
391 CORE_ADDR *search_space_lenp,
493e2a69
MS
392 gdb_byte *pattern,
393 unsigned int *pattern_lenp);
c906108c 394
ce3a066d
DJ
395int unhexify (char *bin, const char *hex, int count);
396int hexify (char *hex, const char *bin, int count);
01f9e8fa
DJ
397int remote_escape_output (const gdb_byte *buffer, int len,
398 gdb_byte *out_buf, int *out_len,
399 int out_maxlen);
219f2f23 400char *unpack_varlen_hex (char *buff, ULONGEST *result);
ce3a066d 401
95954743 402void clear_symbol_cache (struct sym_cache **symcache_p);
9836d6ea 403int look_up_one_symbol (const char *name, CORE_ADDR *addrp, int may_ask_gdb);
ce3a066d 404
fa593d66
PA
405int relocate_instruction (CORE_ADDR *to, CORE_ADDR oldloc);
406
bce7165d 407void monitor_output (const char *msg);
c74d0ad8 408
c906108c 409/* Functions from utils.c */
d26e3629 410#include "common-utils.h"
c906108c 411
bca929d3 412void *xmalloc (size_t) ATTR_MALLOC;
219f2f23 413void *xrealloc (void *, size_t);
bca929d3
DE
414void *xcalloc (size_t, size_t) ATTR_MALLOC;
415char *xstrdup (const char *) ATTR_MALLOC;
6cebaf6e 416int xsnprintf (char *str, size_t size, const char *format, ...)
417 ATTR_FORMAT (printf, 3, 4);;
aef93bd7 418void freeargv (char **argv);
54363045 419void perror_with_name (const char *string);
bee0189a
DJ
420void error (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
421void fatal (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
422void warning (const char *string,...) ATTR_FORMAT (printf, 1, 2);
aa5ca48f 423char *paddress (CORE_ADDR addr);
219f2f23
PA
424char *pulongest (ULONGEST u);
425char *plongest (LONGEST l);
426char *phex_nz (ULONGEST l, int sizeof_l);
ec48365d 427char *pfildes (gdb_fildes_t fd);
0a30fbc4 428
d26e3629 429#include "gdb_assert.h"
e92d13d5 430
5c44784c
JM
431/* Maximum number of bytes to read/write at once. The value here
432 is chosen to fill up a packet (the headers account for the 32). */
433#define MAXBUFBYTES(N) (((N)-32)/2)
434
bb9c3d36
UW
435/* Buffer sizes for transferring memory, registers, etc. Set to a constant
436 value to accomodate multiple register formats. This value must be at least
437 as large as the largest register set supported by gdbserver. */
438#define PBUFSIZ 16384
0a30fbc4 439
219f2f23
PA
440/* Functions from tracepoint.c */
441
405f8e94
SS
442/* Size for a small buffer to report problems from the in-process
443 agent back to GDBserver. */
444#define IPA_BUFSIZ 100
445
219f2f23
PA
446void initialize_tracepoint (void);
447
8336d594
PA
448extern int tracing;
449extern int disconnected_tracing;
450
fa593d66
PA
451void tracepoint_look_up_symbols (void);
452
8336d594
PA
453void stop_tracing (void);
454
219f2f23
PA
455int handle_tracepoint_general_set (char *own_buf);
456int handle_tracepoint_query (char *own_buf);
457
458int tracepoint_finished_step (struct thread_info *tinfo, CORE_ADDR stop_pc);
459int tracepoint_was_hit (struct thread_info *tinfo, CORE_ADDR stop_pc);
460
461void release_while_stepping_state_list (struct thread_info *tinfo);
462
463extern int current_traceframe;
464
465int in_readonly_region (CORE_ADDR addr, ULONGEST length);
466int traceframe_read_mem (int tfnum, CORE_ADDR addr,
467 unsigned char *buf, ULONGEST length,
468 ULONGEST *nbytes);
469int fetch_traceframe_registers (int tfnum,
470 struct regcache *regcache,
471 int regnum);
472
0fb4aa4b
PA
473int traceframe_read_sdata (int tfnum, ULONGEST offset,
474 unsigned char *buf, ULONGEST length,
475 ULONGEST *nbytes);
476
b3b9301e
PA
477int traceframe_read_info (int tfnum, struct buffer *buffer);
478
fa593d66
PA
479/* If a thread is determined to be collecting a fast tracepoint, this
480 structure holds the collect status. */
481
482struct fast_tpoint_collect_status
483{
484 /* The tracepoint that is presently being collected. */
485 int tpoint_num;
486 CORE_ADDR tpoint_addr;
487
488 /* The address range in the jump pad of where the original
489 instruction the tracepoint jump was inserted was relocated
490 to. */
491 CORE_ADDR adjusted_insn_addr;
492 CORE_ADDR adjusted_insn_addr_end;
493};
494
495int fast_tracepoint_collecting (CORE_ADDR thread_area,
496 CORE_ADDR stop_pc,
497 struct fast_tpoint_collect_status *status);
498void force_unlock_trace_buffer (void);
499
500int handle_tracepoint_bkpts (struct thread_info *tinfo, CORE_ADDR stop_pc);
501
502#ifdef IN_PROCESS_AGENT
503void initialize_low_tracepoint (void);
504void supply_fast_tracepoint_registers (struct regcache *regcache,
505 const unsigned char *regs);
0fb4aa4b
PA
506void supply_static_tracepoint_registers (struct regcache *regcache,
507 const unsigned char *regs,
508 CORE_ADDR pc);
405f8e94
SS
509void set_trampoline_buffer_space (CORE_ADDR begin, CORE_ADDR end,
510 char *errmsg);
fa593d66
PA
511#else
512void stop_tracing (void);
405f8e94
SS
513
514int claim_trampoline_space (ULONGEST used, CORE_ADDR *trampoline);
515int have_fast_tracepoint_trampoline_buffer (char *msgbuf);
fa593d66
PA
516#endif
517
5e1dc496
LM
518struct traceframe;
519
520/* Do memory copies for bytecodes. */
521/* Do the recording of memory blocks for actions and bytecodes. */
522
523int agent_mem_read (struct traceframe *tframe,
524 unsigned char *to, CORE_ADDR from,
525 ULONGEST len);
526
527LONGEST agent_get_trace_state_variable_value (int num);
528void agent_set_trace_state_variable_value (int num, LONGEST val);
529
530/* Record the value of a trace state variable. */
531
532int agent_tsv_read (struct traceframe *tframe, int n);
533int agent_mem_read_string (struct traceframe *tframe,
534 unsigned char *to,
535 CORE_ADDR from,
536 ULONGEST len);
537
6a271cae
PA
538/* Bytecode compilation function vector. */
539
540struct emit_ops
541{
542 void (*emit_prologue) (void);
543 void (*emit_epilogue) (void);
544 void (*emit_add) (void);
545 void (*emit_sub) (void);
546 void (*emit_mul) (void);
547 void (*emit_lsh) (void);
548 void (*emit_rsh_signed) (void);
549 void (*emit_rsh_unsigned) (void);
550 void (*emit_ext) (int arg);
551 void (*emit_log_not) (void);
552 void (*emit_bit_and) (void);
553 void (*emit_bit_or) (void);
554 void (*emit_bit_xor) (void);
555 void (*emit_bit_not) (void);
556 void (*emit_equal) (void);
557 void (*emit_less_signed) (void);
558 void (*emit_less_unsigned) (void);
559 void (*emit_ref) (int size);
560 void (*emit_if_goto) (int *offset_p, int *size_p);
561 void (*emit_goto) (int *offset_p, int *size_p);
562 void (*write_goto_address) (CORE_ADDR from, CORE_ADDR to, int size);
4e29fb54 563 void (*emit_const) (LONGEST num);
6a271cae
PA
564 void (*emit_call) (CORE_ADDR fn);
565 void (*emit_reg) (int reg);
566 void (*emit_pop) (void);
567 void (*emit_stack_flush) (void);
568 void (*emit_zero_ext) (int arg);
569 void (*emit_swap) (void);
570 void (*emit_stack_adjust) (int n);
571
572 /* Emit code for a generic function that takes one fixed integer
573 argument and returns a 64-bit int (for instance, tsv getter). */
574 void (*emit_int_call_1) (CORE_ADDR fn, int arg1);
575
576 /* Emit code for a generic function that takes one fixed integer
577 argument and a 64-bit int from the top of the stack, and returns
578 nothing (for instance, tsv setter). */
579 void (*emit_void_call_2) (CORE_ADDR fn, int arg1);
6b9801d4
SS
580
581 /* Emit code specialized for common combinations of compare followed
582 by a goto. */
583 void (*emit_eq_goto) (int *offset_p, int *size_p);
584 void (*emit_ne_goto) (int *offset_p, int *size_p);
585 void (*emit_lt_goto) (int *offset_p, int *size_p);
586 void (*emit_le_goto) (int *offset_p, int *size_p);
587 void (*emit_gt_goto) (int *offset_p, int *size_p);
588 void (*emit_ge_goto) (int *offset_p, int *size_p);
6a271cae
PA
589};
590
591/* Returns the address of the get_raw_reg function in the IPA. */
592CORE_ADDR get_raw_reg_func_addr (void);
5e1dc496
LM
593/* Returns the address of the get_trace_state_variable_value
594 function in the IPA. */
595CORE_ADDR get_get_tsv_func_addr (void);
596/* Returns the address of the set_trace_state_variable_value
597 function in the IPA. */
598CORE_ADDR get_set_tsv_func_addr (void);
6a271cae
PA
599
600CORE_ADDR current_insn_ptr;
601int emit_error;
602
dd24457d
DJ
603/* Version information, from version.c. */
604extern const char version[];
605extern const char host_name[];
606
0a30fbc4 607#endif /* SERVER_H */
This page took 0.922149 seconds and 4 git commands to generate.