]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/tracepoint.c
* config/default.exp (ld_assemble): Pass flags parameter to
[thirdparty/binutils-gdb.git] / gdb / gdbserver / tracepoint.c
CommitLineData
219f2f23 1/* Tracepoint code for remote server for GDB.
7b6bb8da 2 Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
219f2f23
PA
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19#include "server.h"
20#include <ctype.h>
21#include <fcntl.h>
22#include <unistd.h>
23#include <sys/time.h>
fa593d66 24#include <stddef.h>
fa593d66
PA
25#if HAVE_STDINT_H
26#include <stdint.h>
27#endif
219f2f23 28
61adf464 29/* This file is built for both GDBserver, and the in-process
fa593d66
PA
30 agent (IPA), a shared library that includes a tracing agent that is
31 loaded by the inferior to support fast tracepoints. Fast
32 tracepoints (or more accurately, jump based tracepoints) are
33 implemented by patching the tracepoint location with a jump into a
34 small trampoline function whose job is to save the register state,
35 call the in-process tracing agent, and then execute the original
36 instruction that was under the tracepoint jump (possibly adjusted,
37 if PC-relative, or some such).
38
39 The current synchronization design is pull based. That means,
40 GDBserver does most of the work, by peeking/poking at the inferior
41 agent's memory directly for downloading tracepoint and associated
42 objects, and for uploading trace frames. Whenever the IPA needs
43 something from GDBserver (trace buffer is full, tracing stopped for
44 some reason, etc.) the IPA calls a corresponding hook function
45 where GDBserver has placed a breakpoint.
46
47 Each of the agents has its own trace buffer. When browsing the
48 trace frames built from slow and fast tracepoints from GDB (tfind
49 mode), there's no guarantee the user is seeing the trace frames in
50 strict chronological creation order, although, GDBserver tries to
51 keep the order relatively reasonable, by syncing the trace buffers
52 at appropriate times.
53
54*/
55
56static void trace_vdebug (const char *, ...) ATTR_FORMAT (printf, 1, 2);
219f2f23
PA
57
58static void
fa593d66 59trace_vdebug (const char *fmt, ...)
219f2f23
PA
60{
61 char buf[1024];
62 va_list ap;
63
64 va_start (ap, fmt);
65 vsprintf (buf, fmt, ap);
66 fprintf (stderr, "gdbserver/tracepoint: %s\n", buf);
67 va_end (ap);
68}
69
fa593d66 70#define trace_debug_1(level, fmt, args...) \
219f2f23 71 do { \
fa593d66
PA
72 if (level <= debug_threads) \
73 trace_vdebug ((fmt), ##args); \
219f2f23
PA
74 } while (0)
75
fa593d66
PA
76#define trace_debug(FMT, args...) \
77 trace_debug_1 (1, FMT, ##args)
78
79#if defined(__GNUC__)
80# define ATTR_USED __attribute__((used))
81# define ATTR_NOINLINE __attribute__((noinline))
82# define ATTR_CONSTRUCTOR __attribute__ ((constructor))
83#else
84# define ATTR_USED
85# define ATTR_NOINLINE
86# define ATTR_CONSTRUCTOR
87#endif
88
89/* Make sure the functions the IPA needs to export (symbols GDBserver
90 needs to query GDB about) are exported. */
91
92#ifdef IN_PROCESS_AGENT
93# if defined _WIN32 || defined __CYGWIN__
94# define IP_AGENT_EXPORT __declspec(dllexport) ATTR_USED
95# else
96# if __GNUC__ >= 4
97# define IP_AGENT_EXPORT \
98 __attribute__ ((visibility("default"))) ATTR_USED
99# else
100# define IP_AGENT_EXPORT ATTR_USED
101# endif
102# endif
103#else
104# define IP_AGENT_EXPORT
105#endif
106
107/* Prefix exported symbols, for good citizenship. All the symbols
108 that need exporting are defined in this module. */
109#ifdef IN_PROCESS_AGENT
110# define gdb_tp_heap_buffer gdb_agent_gdb_tp_heap_buffer
111# define gdb_jump_pad_buffer gdb_agent_gdb_jump_pad_buffer
112# define gdb_jump_pad_buffer_end gdb_agent_gdb_jump_pad_buffer_end
113# define collecting gdb_agent_collecting
114# define gdb_collect gdb_agent_gdb_collect
115# define stop_tracing gdb_agent_stop_tracing
116# define flush_trace_buffer gdb_agent_flush_trace_buffer
117# define about_to_request_buffer_space gdb_agent_about_to_request_buffer_space
118# define trace_buffer_is_full gdb_agent_trace_buffer_is_full
119# define stopping_tracepoint gdb_agent_stopping_tracepoint
120# define expr_eval_result gdb_agent_expr_eval_result
121# define error_tracepoint gdb_agent_error_tracepoint
122# define tracepoints gdb_agent_tracepoints
123# define tracing gdb_agent_tracing
124# define trace_buffer_ctrl gdb_agent_trace_buffer_ctrl
125# define trace_buffer_ctrl_curr gdb_agent_trace_buffer_ctrl_curr
126# define trace_buffer_lo gdb_agent_trace_buffer_lo
127# define trace_buffer_hi gdb_agent_trace_buffer_hi
128# define traceframe_read_count gdb_agent_traceframe_read_count
129# define traceframe_write_count gdb_agent_traceframe_write_count
130# define traceframes_created gdb_agent_traceframes_created
131# define trace_state_variables gdb_agent_trace_state_variables
6a271cae 132# define get_raw_reg gdb_agent_get_raw_reg
493e2a69
MS
133# define get_trace_state_variable_value \
134 gdb_agent_get_trace_state_variable_value
135# define set_trace_state_variable_value \
136 gdb_agent_set_trace_state_variable_value
0fb4aa4b
PA
137# define ust_loaded gdb_agent_ust_loaded
138# define helper_thread_id gdb_agent_helper_thread_id
139# define cmd_buf gdb_agent_cmd_buf
fa593d66
PA
140#endif
141
142#ifndef IN_PROCESS_AGENT
143
144/* Addresses of in-process agent's symbols GDBserver cares about. */
145
146struct ipa_sym_addresses
147{
148 CORE_ADDR addr_gdb_tp_heap_buffer;
149 CORE_ADDR addr_gdb_jump_pad_buffer;
150 CORE_ADDR addr_gdb_jump_pad_buffer_end;
151 CORE_ADDR addr_collecting;
152 CORE_ADDR addr_gdb_collect;
153 CORE_ADDR addr_stop_tracing;
154 CORE_ADDR addr_flush_trace_buffer;
155 CORE_ADDR addr_about_to_request_buffer_space;
156 CORE_ADDR addr_trace_buffer_is_full;
157 CORE_ADDR addr_stopping_tracepoint;
158 CORE_ADDR addr_expr_eval_result;
159 CORE_ADDR addr_error_tracepoint;
160 CORE_ADDR addr_tracepoints;
161 CORE_ADDR addr_tracing;
162 CORE_ADDR addr_trace_buffer_ctrl;
163 CORE_ADDR addr_trace_buffer_ctrl_curr;
164 CORE_ADDR addr_trace_buffer_lo;
165 CORE_ADDR addr_trace_buffer_hi;
166 CORE_ADDR addr_traceframe_read_count;
167 CORE_ADDR addr_traceframe_write_count;
168 CORE_ADDR addr_traceframes_created;
169 CORE_ADDR addr_trace_state_variables;
6a271cae
PA
170 CORE_ADDR addr_get_raw_reg;
171 CORE_ADDR addr_get_trace_state_variable_value;
172 CORE_ADDR addr_set_trace_state_variable_value;
0fb4aa4b
PA
173 CORE_ADDR addr_ust_loaded;
174 CORE_ADDR addr_helper_thread_id;
175 CORE_ADDR addr_cmd_buf;
fa593d66
PA
176};
177
178#define STRINGIZE_1(STR) #STR
179#define STRINGIZE(STR) STRINGIZE_1(STR)
493e2a69 180#define IPA_SYM(SYM) \
fa593d66
PA
181 { \
182 STRINGIZE (gdb_agent_ ## SYM), \
183 offsetof (struct ipa_sym_addresses, addr_ ## SYM) \
184 }
185
186static struct
187{
188 const char *name;
189 int offset;
190 int required;
191} symbol_list[] = {
192 IPA_SYM(gdb_tp_heap_buffer),
193 IPA_SYM(gdb_jump_pad_buffer),
194 IPA_SYM(gdb_jump_pad_buffer_end),
195 IPA_SYM(collecting),
196 IPA_SYM(gdb_collect),
197 IPA_SYM(stop_tracing),
198 IPA_SYM(flush_trace_buffer),
199 IPA_SYM(about_to_request_buffer_space),
200 IPA_SYM(trace_buffer_is_full),
201 IPA_SYM(stopping_tracepoint),
202 IPA_SYM(expr_eval_result),
203 IPA_SYM(error_tracepoint),
204 IPA_SYM(tracepoints),
205 IPA_SYM(tracing),
206 IPA_SYM(trace_buffer_ctrl),
207 IPA_SYM(trace_buffer_ctrl_curr),
208 IPA_SYM(trace_buffer_lo),
209 IPA_SYM(trace_buffer_hi),
210 IPA_SYM(traceframe_read_count),
211 IPA_SYM(traceframe_write_count),
212 IPA_SYM(traceframes_created),
213 IPA_SYM(trace_state_variables),
6a271cae
PA
214 IPA_SYM(get_raw_reg),
215 IPA_SYM(get_trace_state_variable_value),
216 IPA_SYM(set_trace_state_variable_value),
0fb4aa4b
PA
217 IPA_SYM(ust_loaded),
218 IPA_SYM(helper_thread_id),
219 IPA_SYM(cmd_buf),
fa593d66
PA
220};
221
222struct ipa_sym_addresses ipa_sym_addrs;
223
224int all_tracepoint_symbols_looked_up;
225
226int
227in_process_agent_loaded (void)
228{
229 return all_tracepoint_symbols_looked_up;
230}
231
232static int read_inferior_integer (CORE_ADDR symaddr, int *val);
233
0fb4aa4b
PA
234/* Returns true if both the in-process agent library and the static
235 tracepoints libraries are loaded in the inferior. */
236
237static int
238in_process_agent_loaded_ust (void)
239{
240 int loaded = 0;
241
242 if (!in_process_agent_loaded ())
243 {
244 warning ("In-process agent not loaded");
245 return 0;
246 }
247
248 if (read_inferior_integer (ipa_sym_addrs.addr_ust_loaded, &loaded))
249 {
250 warning ("Error reading ust_loaded in lib");
251 return 0;
252 }
253
254 return loaded;
255}
256
fa593d66
PA
257static void
258write_e_ipa_not_loaded (char *buffer)
259{
260 sprintf (buffer,
261 "E.In-process agent library not loaded in process. "
0fb4aa4b
PA
262 "Fast and static tracepoints unavailable.");
263}
264
265/* Write an error to BUFFER indicating that UST isn't loaded in the
266 inferior. */
267
268static void
269write_e_ust_not_loaded (char *buffer)
270{
271#ifdef HAVE_UST
272 sprintf (buffer,
273 "E.UST library not loaded in process. "
274 "Static tracepoints unavailable.");
275#else
276 sprintf (buffer, "E.GDBserver was built without static tracepoints support");
277#endif
fa593d66
PA
278}
279
0fb4aa4b
PA
280/* If the in-process agent library isn't loaded in the inferior, write
281 an error to BUFFER, and return 1. Otherwise, return 0. */
282
fa593d66
PA
283static int
284maybe_write_ipa_not_loaded (char *buffer)
285{
286 if (!in_process_agent_loaded ())
287 {
288 write_e_ipa_not_loaded (buffer);
289 return 1;
290 }
291 return 0;
292}
293
0fb4aa4b
PA
294/* If the in-process agent library and the ust (static tracepoints)
295 library aren't loaded in the inferior, write an error to BUFFER,
296 and return 1. Otherwise, return 0. */
297
298static int
299maybe_write_ipa_ust_not_loaded (char *buffer)
300{
301 if (!in_process_agent_loaded ())
302 {
303 write_e_ipa_not_loaded (buffer);
304 return 1;
305 }
306 else if (!in_process_agent_loaded_ust ())
307 {
308 write_e_ust_not_loaded (buffer);
309 return 1;
310 }
311 return 0;
312}
313
fa593d66
PA
314/* Cache all future symbols that the tracepoints module might request.
315 We can not request symbols at arbitrary states in the remote
316 protocol, only when the client tells us that new symbols are
317 available. So when we load the in-process library, make sure to
318 check the entire list. */
319
320void
321tracepoint_look_up_symbols (void)
322{
323 int all_ok;
324 int i;
325
326 if (all_tracepoint_symbols_looked_up)
327 return;
328
329 all_ok = 1;
330 for (i = 0; i < sizeof (symbol_list) / sizeof (symbol_list[0]); i++)
331 {
332 CORE_ADDR *addrp =
333 (CORE_ADDR *) ((char *) &ipa_sym_addrs + symbol_list[i].offset);
334
335 if (look_up_one_symbol (symbol_list[i].name, addrp, 1) == 0)
336 {
337 if (debug_threads)
338 fprintf (stderr, "symbol `%s' not found\n", symbol_list[i].name);
339 all_ok = 0;
340 }
341 }
342
343 all_tracepoint_symbols_looked_up = all_ok;
344}
345
346#endif
347
348/* GDBserver places a breakpoint on the IPA's version (which is a nop)
349 of the "stop_tracing" function. When this breakpoint is hit,
350 tracing stopped in the IPA for some reason. E.g., due to
351 tracepoint reaching the pass count, hitting conditional expression
352 evaluation error, etc.
353
354 The IPA's trace buffer is never in circular tracing mode: instead,
355 GDBserver's is, and whenever the in-process buffer fills, it calls
356 "flush_trace_buffer", which triggers an internal breakpoint.
357 GDBserver reacts to this breakpoint by pulling the meanwhile
358 collected data. Old frames discarding is always handled on the
359 GDBserver side. */
360
361#ifdef IN_PROCESS_AGENT
362int debug_threads = 0;
363
364int
365read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
366{
367 memcpy (myaddr, (void *) (uintptr_t) memaddr, len);
368 return 0;
369}
370
371/* Call this in the functions where GDBserver places a breakpoint, so
372 that the compiler doesn't try to be clever and skip calling the
373 function at all. This is necessary, even if we tell the compiler
374 to not inline said functions. */
375
376#if defined(__GNUC__)
377# define UNKNOWN_SIDE_EFFECTS() asm ("")
378#else
379# define UNKNOWN_SIDE_EFFECTS() do {} while (0)
380#endif
381
382IP_AGENT_EXPORT void ATTR_USED ATTR_NOINLINE
383stop_tracing (void)
384{
385 /* GDBserver places breakpoint here. */
386 UNKNOWN_SIDE_EFFECTS();
387}
388
389IP_AGENT_EXPORT void ATTR_USED ATTR_NOINLINE
390flush_trace_buffer (void)
391{
392 /* GDBserver places breakpoint here. */
393 UNKNOWN_SIDE_EFFECTS();
394}
395
396#endif
397
398#ifndef IN_PROCESS_AGENT
219f2f23
PA
399static int
400tracepoint_handler (CORE_ADDR address)
401{
402 trace_debug ("tracepoint_handler: tracepoint at 0x%s hit",
403 paddress (address));
404 return 0;
405}
406
fa593d66
PA
407/* Breakpoint at "stop_tracing" in the inferior lib. */
408struct breakpoint *stop_tracing_bkpt;
409static int stop_tracing_handler (CORE_ADDR);
410
411/* Breakpoint at "flush_trace_buffer" in the inferior lib. */
412struct breakpoint *flush_trace_buffer_bkpt;
413static int flush_trace_buffer_handler (CORE_ADDR);
414
415static void download_tracepoints (void);
416static void download_trace_state_variables (void);
417static void upload_fast_traceframes (void);
418
0fb4aa4b
PA
419static int run_inferior_command (char *cmd);
420
fa593d66
PA
421static int
422read_inferior_integer (CORE_ADDR symaddr, int *val)
423{
424 return read_inferior_memory (symaddr, (unsigned char *) val,
425 sizeof (*val));
426}
427
428static int
429read_inferior_uinteger (CORE_ADDR symaddr, unsigned int *val)
430{
431 return read_inferior_memory (symaddr, (unsigned char *) val,
432 sizeof (*val));
433}
434
435static int
436read_inferior_data_pointer (CORE_ADDR symaddr, CORE_ADDR *val)
437{
438 void *pval = (void *) (uintptr_t) val;
439 int ret;
440
441 ret = read_inferior_memory (symaddr, (unsigned char *) &pval, sizeof (pval));
442 *val = (uintptr_t) pval;
443 return ret;
444}
445
446static int
447write_inferior_data_pointer (CORE_ADDR symaddr, CORE_ADDR val)
448{
449 void *pval = (void *) (uintptr_t) val;
450 return write_inferior_memory (symaddr,
451 (unsigned char *) &pval, sizeof (pval));
452}
453
454static int
455write_inferior_integer (CORE_ADDR symaddr, int val)
456{
457 return write_inferior_memory (symaddr, (unsigned char *) &val, sizeof (val));
458}
459
460static int
461write_inferior_uinteger (CORE_ADDR symaddr, unsigned int val)
462{
463 return write_inferior_memory (symaddr, (unsigned char *) &val, sizeof (val));
464}
465
466#endif
467
219f2f23
PA
468/* This enum must exactly match what is documented in
469 gdb/doc/agentexpr.texi, including all the numerical values. */
470
471enum gdb_agent_op
472 {
94d5e490
TT
473#define DEFOP(NAME, SIZE, DATA_SIZE, CONSUMED, PRODUCED, VALUE) \
474 gdb_agent_op_ ## NAME = VALUE,
475#include "ax.def"
476#undef DEFOP
219f2f23
PA
477 gdb_agent_op_last
478 };
479
480static const char *gdb_agent_op_names [gdb_agent_op_last] =
481 {
94d5e490
TT
482 "?undef?"
483#define DEFOP(NAME, SIZE, DATA_SIZE, CONSUMED, PRODUCED, VALUE) , # NAME
484#include "ax.def"
485#undef DEFOP
219f2f23
PA
486 };
487
488struct agent_expr
489{
490 int length;
491
492 unsigned char *bytes;
493};
494
495/* Base action. Concrete actions inherit this. */
496
497struct tracepoint_action
498{
499 char type;
500};
501
502/* An 'M' (collect memory) action. */
503struct collect_memory_action
504{
505 struct tracepoint_action base;
506
507 ULONGEST addr;
508 ULONGEST len;
509 int basereg;
510};
511
512/* An 'R' (collect registers) action. */
513
514struct collect_registers_action
515{
516 struct tracepoint_action base;
517};
518
519/* An 'X' (evaluate expression) action. */
520
521struct eval_expr_action
522{
523 struct tracepoint_action base;
524
525 struct agent_expr *expr;
526};
527
0fb4aa4b
PA
528/* An 'L' (collect static trace data) action. */
529struct collect_static_trace_data_action
530{
531 struct tracepoint_action base;
532};
533
219f2f23
PA
534/* This structure describes a piece of the source-level definition of
535 the tracepoint. The contents are not interpreted by the target,
536 but preserved verbatim for uploading upon reconnection. */
537
538struct source_string
539{
540 /* The type of string, such as "cond" for a conditional. */
541 char *type;
542
543 /* The source-level string itself. For the sake of target
544 debugging, we store it in plaintext, even though it is always
545 transmitted in hex. */
546 char *str;
547
548 /* Link to the next one in the list. We link them in the order
549 received, in case some make up an ordered list of commands or
550 some such. */
551 struct source_string *next;
552};
553
fa593d66
PA
554enum tracepoint_type
555{
556 /* Trap based tracepoint. */
557 trap_tracepoint,
558
559 /* A fast tracepoint implemented with a jump instead of a trap. */
560 fast_tracepoint,
0fb4aa4b
PA
561
562 /* A static tracepoint, implemented by a program call into a tracing
563 library. */
564 static_tracepoint
fa593d66
PA
565};
566
219f2f23
PA
567struct tracepoint_hit_ctx;
568
6a271cae
PA
569typedef enum eval_result_type (*condfn) (struct tracepoint_hit_ctx *,
570 ULONGEST *);
571
219f2f23
PA
572/* The definition of a tracepoint. */
573
574/* Tracepoints may have multiple locations, each at a different
575 address. This can occur with optimizations, template
576 instantiation, etc. Since the locations may be in different
577 scopes, the conditions and actions may be different for each
578 location. Our target version of tracepoints is more like GDB's
579 notion of "breakpoint locations", but we have almost nothing that
580 is not per-location, so we bother having two kinds of objects. The
581 key consequence is that numbers are not unique, and that it takes
582 both number and address to identify a tracepoint uniquely. */
583
584struct tracepoint
585{
586 /* The number of the tracepoint, as specified by GDB. Several
587 tracepoint objects here may share a number. */
588 int number;
589
590 /* Address at which the tracepoint is supposed to trigger. Several
591 tracepoints may share an address. */
592 CORE_ADDR address;
593
fa593d66
PA
594 /* Tracepoint type. */
595 enum tracepoint_type type;
596
219f2f23
PA
597 /* True if the tracepoint is currently enabled. */
598 int enabled;
599
600 /* The number of single steps that will be performed after each
601 tracepoint hit. */
602 long step_count;
603
604 /* The number of times the tracepoint may be hit before it will
605 terminate the entire tracing run. */
606 long pass_count;
607
608 /* Pointer to the agent expression that is the tracepoint's
609 conditional, or NULL if the tracepoint is unconditional. */
610 struct agent_expr *cond;
611
612 /* The list of actions to take when the tracepoint triggers. */
613 int numactions;
614 struct tracepoint_action **actions;
219f2f23
PA
615
616 /* Count of the times we've hit this tracepoint during the run.
617 Note that while-stepping steps are not counted as "hits". */
618 long hit_count;
619
6a271cae
PA
620 CORE_ADDR compiled_cond;
621
fa593d66
PA
622 /* Link to the next tracepoint in the list. */
623 struct tracepoint *next;
624
625#ifndef IN_PROCESS_AGENT
626 /* The list of actions to take when the tracepoint triggers, in
627 string/packet form. */
628 char **actions_str;
629
219f2f23
PA
630 /* The collection of strings that describe the tracepoint as it was
631 entered into GDB. These are not used by the target, but are
632 reported back to GDB upon reconnection. */
633 struct source_string *source_strings;
634
fa593d66
PA
635 /* The number of bytes displaced by fast tracepoints. It may subsume
636 multiple instructions, for multi-byte fast tracepoints. This
637 field is only valid for fast tracepoints. */
638 int orig_size;
639
640 /* Only for fast tracepoints. */
641 CORE_ADDR obj_addr_on_target;
642
643 /* Address range where the original instruction under a fast
644 tracepoint was relocated to. (_end is actually one byte past
645 the end). */
646 CORE_ADDR adjusted_insn_addr;
647 CORE_ADDR adjusted_insn_addr_end;
648
649 /* The address range of the piece of the jump pad buffer that was
650 assigned to this fast tracepoint. (_end is actually one byte
651 past the end).*/
652 CORE_ADDR jump_pad;
653 CORE_ADDR jump_pad_end;
654
655 /* The list of actions to take while in a stepping loop. These
656 fields are only valid for patch-based tracepoints. */
657 int num_step_actions;
658 struct tracepoint_action **step_actions;
659 /* Same, but in string/packet form. */
660 char **step_actions_str;
661
662 /* Handle returned by the breakpoint or tracepoint module when we
0fb4aa4b
PA
663 inserted the trap or jump, or hooked into a static tracepoint.
664 NULL if we haven't inserted it yet. */
219f2f23 665 void *handle;
fa593d66 666#endif
219f2f23 667
219f2f23
PA
668};
669
fa593d66
PA
670#ifndef IN_PROCESS_AGENT
671
219f2f23
PA
672/* Given `while-stepping', a thread may be collecting data for more
673 than one tracepoint simultaneously. On the other hand, the same
674 tracepoint with a while-stepping action may be hit by more than one
675 thread simultaneously (but not quite, each thread could be handling
676 a different step). Each thread holds a list of these objects,
677 representing the current step of each while-stepping action being
678 collected. */
679
680struct wstep_state
681{
682 struct wstep_state *next;
683
684 /* The tracepoint number. */
685 int tp_number;
686 /* The tracepoint's address. */
687 CORE_ADDR tp_address;
688
689 /* The number of the current step in this 'while-stepping'
690 action. */
691 long current_step;
692};
693
fa593d66
PA
694#endif
695
696/* The linked list of all tracepoints. Marked explicitly as used as
697 the in-process library doesn't use it for the fast tracepoints
698 support. */
699IP_AGENT_EXPORT struct tracepoint *tracepoints ATTR_USED;
219f2f23 700
fa593d66 701#ifndef IN_PROCESS_AGENT
219f2f23
PA
702
703/* Pointer to the last tracepoint in the list, new tracepoints are
704 linked in at the end. */
705
706static struct tracepoint *last_tracepoint;
fa593d66 707#endif
219f2f23
PA
708
709/* The first tracepoint to exceed its pass count. */
710
fa593d66 711IP_AGENT_EXPORT struct tracepoint *stopping_tracepoint;
219f2f23
PA
712
713/* True if the trace buffer is full or otherwise no longer usable. */
714
fa593d66 715IP_AGENT_EXPORT int trace_buffer_is_full;
219f2f23
PA
716
717/* Enumeration of the different kinds of things that can happen during
718 agent expression evaluation. */
719
720enum eval_result_type
721 {
722 expr_eval_no_error,
723 expr_eval_empty_expression,
724 expr_eval_empty_stack,
725 expr_eval_stack_overflow,
726 expr_eval_stack_underflow,
727 expr_eval_unhandled_opcode,
728 expr_eval_unrecognized_opcode,
729 expr_eval_divide_by_zero,
730 expr_eval_invalid_goto
731 };
732
733static enum eval_result_type expr_eval_result = expr_eval_no_error;
734
fa593d66
PA
735#ifndef IN_PROCESS_AGENT
736
219f2f23
PA
737static const char *eval_result_names[] =
738 {
739 "terror:in the attic", /* this should never be reported */
740 "terror:empty expression",
741 "terror:empty stack",
742 "terror:stack overflow",
743 "terror:stack underflow",
744 "terror:unhandled opcode",
745 "terror:unrecognized opcode",
746 "terror:divide by zero"
747 };
748
fa593d66
PA
749#endif
750
219f2f23
PA
751/* The tracepoint in which the error occurred. */
752
753static struct tracepoint *error_tracepoint;
754
755struct trace_state_variable
756{
757 /* This is the name of the variable as used in GDB. The target
758 doesn't use the name, but needs to have it for saving and
759 reconnection purposes. */
760 char *name;
761
762 /* This number identifies the variable uniquely. Numbers may be
763 assigned either by the target (in the case of builtin variables),
764 or by GDB, and are presumed unique during the course of a trace
765 experiment. */
766 int number;
767
768 /* The variable's initial value, a 64-bit signed integer always. */
769 LONGEST initial_value;
770
771 /* The variable's value, a 64-bit signed integer always. */
772 LONGEST value;
773
774 /* Pointer to a getter function, used to supply computed values. */
775 LONGEST (*getter) (void);
776
777 /* Link to the next variable. */
778 struct trace_state_variable *next;
779};
780
781/* Linked list of all trace state variables. */
782
fa593d66
PA
783#ifdef IN_PROCESS_AGENT
784struct trace_state_variable *alloced_trace_state_variables;
785#endif
786
787IP_AGENT_EXPORT struct trace_state_variable *trace_state_variables;
219f2f23
PA
788
789/* The results of tracing go into a fixed-size space known as the
790 "trace buffer". Because usage follows a limited number of
791 patterns, we manage it ourselves rather than with malloc. Basic
792 rules are that we create only one trace frame at a time, each is
793 variable in size, they are never moved once created, and we only
794 discard if we are doing a circular buffer, and then only the oldest
795 ones. Each trace frame includes its own size, so we don't need to
796 link them together, and the trace frame number is relative to the
797 first one, so we don't need to record numbers. A trace frame also
798 records the number of the tracepoint that created it. The data
799 itself is a series of blocks, each introduced by a single character
800 and with a defined format. Each type of block has enough
801 type/length info to allow scanners to jump quickly from one block
802 to the next without reading each byte in the block. */
803
804/* Trace buffer management would be simple - advance a free pointer
805 from beginning to end, then stop - were it not for the circular
806 buffer option, which is a useful way to prevent a trace run from
807 stopping prematurely because the buffer filled up. In the circular
808 case, the location of the first trace frame (trace_buffer_start)
809 moves as old trace frames are discarded. Also, since we grow trace
810 frames incrementally as actions are performed, we wrap around to
811 the beginning of the trace buffer. This is per-block, so each
812 block within a trace frame remains contiguous. Things get messy
813 when the wrapped-around trace frame is the one being discarded; the
814 free space ends up in two parts at opposite ends of the buffer. */
815
816#ifndef ATTR_PACKED
817# if defined(__GNUC__)
818# define ATTR_PACKED __attribute__ ((packed))
819# else
820# define ATTR_PACKED /* nothing */
821# endif
822#endif
823
824/* The data collected at a tracepoint hit. This object should be as
825 small as possible, since there may be a great many of them. We do
826 not need to keep a frame number, because they are all sequential
827 and there are no deletions; so the Nth frame in the buffer is
828 always frame number N. */
829
830struct traceframe
831{
832 /* Number of the tracepoint that collected this traceframe. A value
833 of 0 indicates the current end of the trace buffer. We make this
834 a 16-bit field because it's never going to happen that GDB's
835 numbering of tracepoints reaches 32,000. */
836 int tpnum : 16;
837
838 /* The size of the data in this trace frame. We limit this to 32
839 bits, even on a 64-bit target, because it's just implausible that
840 one is validly going to collect 4 gigabytes of data at a single
841 tracepoint hit. */
842 unsigned int data_size : 32;
843
844 /* The base of the trace data, which is contiguous from this point. */
845 unsigned char data[0];
846
fa593d66 847} ATTR_PACKED;
219f2f23
PA
848
849/* The traceframe to be used as the source of data to send back to
850 GDB. A value of -1 means to get data from the live program. */
851
852int current_traceframe = -1;
853
854/* This flag is true if the trace buffer is circular, meaning that
855 when it fills, the oldest trace frames are discarded in order to
856 make room. */
857
fa593d66 858#ifndef IN_PROCESS_AGENT
219f2f23 859static int circular_trace_buffer;
fa593d66 860#endif
219f2f23
PA
861
862/* Pointer to the block of memory that traceframes all go into. */
863
864static unsigned char *trace_buffer_lo;
865
866/* Pointer to the end of the trace buffer, more precisely to the byte
867 after the end of the buffer. */
868
869static unsigned char *trace_buffer_hi;
870
fa593d66
PA
871/* Control structure holding the read/write/etc. pointers into the
872 trace buffer. We need more than one of these to implement a
873 transaction-like mechanism to garantees that both GDBserver and the
874 in-process agent can try to change the trace buffer
875 simultaneously. */
876
877struct trace_buffer_control
878{
879 /* Pointer to the first trace frame in the buffer. In the
880 non-circular case, this is equal to trace_buffer_lo, otherwise it
881 moves around in the buffer. */
882 unsigned char *start;
883
884 /* Pointer to the free part of the trace buffer. Note that we clear
885 several bytes at and after this pointer, so that traceframe
886 scans/searches terminate properly. */
887 unsigned char *free;
888
889 /* Pointer to the byte after the end of the free part. Note that
890 this may be smaller than trace_buffer_free in the circular case,
891 and means that the free part is in two pieces. Initially it is
892 equal to trace_buffer_hi, then is generally equivalent to
893 trace_buffer_start. */
894 unsigned char *end_free;
895
896 /* Pointer to the wraparound. If not equal to trace_buffer_hi, then
897 this is the point at which the trace data breaks, and resumes at
898 trace_buffer_lo. */
899 unsigned char *wrap;
900};
901
902/* Same as above, to be used by GDBserver when updating the in-process
903 agent. */
904struct ipa_trace_buffer_control
905{
906 uintptr_t start;
907 uintptr_t free;
908 uintptr_t end_free;
909 uintptr_t wrap;
910};
911
912
913/* We have possibly both GDBserver and an inferior thread accessing
914 the same IPA trace buffer memory. The IPA is the producer (tries
915 to put new frames in the buffer), while GDBserver occasionally
916 consumes them, that is, flushes the IPA's buffer into its own
917 buffer. Both sides need to update the trace buffer control
918 pointers (current head, tail, etc.). We can't use a global lock to
919 synchronize the accesses, as otherwise we could deadlock GDBserver
920 (if the thread holding the lock stops for a signal, say). So
921 instead of that, we use a transaction scheme where GDBserver writes
922 always prevail over the IPAs writes, and, we have the IPA detect
923 the commit failure/overwrite, and retry the whole attempt. This is
924 mainly implemented by having a global token object that represents
925 who wrote last to the buffer control structure. We need to freeze
926 any inferior writing to the buffer while GDBserver touches memory,
927 so that the inferior can correctly detect that GDBserver had been
928 there, otherwise, it could mistakingly think its commit was
929 successful; that's implemented by simply having GDBserver set a
930 breakpoint the inferior hits if it is the critical region.
931
932 There are three cycling trace buffer control structure copies
933 (buffer head, tail, etc.), with the token object including an index
934 indicating which is current live copy. The IPA tentatively builds
935 an updated copy in a non-current control structure, while GDBserver
936 always clobbers the current version directly. The IPA then tries
937 to atomically "commit" its version; if GDBserver clobbered the
938 structure meanwhile, that will fail, and the IPA restarts the
939 allocation process.
940
941 Listing the step in further detail, we have:
942
943 In-process agent (producer):
944
945 - passes by `about_to_request_buffer_space' breakpoint/lock
946
947 - reads current token, extracts current trace buffer control index,
948 and starts tentatively updating the rightmost one (0->1, 1->2,
949 2->0). Note that only one inferior thread is executing this code
950 at any given time, due to an outer lock in the jump pads.
219f2f23 951
fa593d66 952 - updates counters, and tries to commit the token.
219f2f23 953
fa593d66
PA
954 - passes by second `about_to_request_buffer_space' breakpoint/lock,
955 leaving the sync region.
219f2f23 956
fa593d66 957 - checks if the update was effective.
219f2f23 958
fa593d66
PA
959 - if trace buffer was found full, hits flush_trace_buffer
960 breakpoint, and restarts later afterwards.
219f2f23 961
fa593d66 962 GDBserver (consumer):
219f2f23 963
fa593d66
PA
964 - sets `about_to_request_buffer_space' breakpoint/lock.
965
966 - updates the token unconditionally, using the current buffer
967 control index, since it knows that the IP agent always writes to
968 the rightmost, and due to the breakpoint, at most one IP thread
969 can try to update the trace buffer concurrently to GDBserver, so
970 there will be no danger of trace buffer control index wrap making
971 the IPA write to the same index as GDBserver.
972
973 - flushes the IP agent's trace buffer completely, and updates the
974 current trace buffer control structure. GDBserver *always* wins.
975
976 - removes the `about_to_request_buffer_space' breakpoint.
977
978The token is stored in the `trace_buffer_ctrl_curr' variable.
979Internally, it's bits are defined as:
980
981 |-------------+-----+-------------+--------+-------------+--------------|
982 | Bit offsets | 31 | 30 - 20 | 19 | 18-8 | 7-0 |
983 |-------------+-----+-------------+--------+-------------+--------------|
984 | What | GSB | PC (11-bit) | unused | CC (11-bit) | TBCI (8-bit) |
985 |-------------+-----+-------------+--------+-------------+--------------|
986
987 GSB - GDBserver Stamp Bit
988 PC - Previous Counter
989 CC - Current Counter
990 TBCI - Trace Buffer Control Index
991
992
993An IPA update of `trace_buffer_ctrl_curr' does:
994
995 - read CC from the current token, save as PC.
996 - updates pointers
997 - atomically tries to write PC+1,CC
998
999A GDBserver update of `trace_buffer_ctrl_curr' does:
1000
1001 - reads PC and CC from the current token.
1002 - updates pointers
1003 - writes GSB,PC,CC
1004*/
1005
1006/* These are the bits of `trace_buffer_ctrl_curr' that are reserved
1007 for the counters described below. The cleared bits are used to
1008 hold the index of the items of the `trace_buffer_ctrl' array that
1009 is "current". */
1010#define GDBSERVER_FLUSH_COUNT_MASK 0xfffffff0
1011
1012/* `trace_buffer_ctrl_curr' contains two counters. The `previous'
1013 counter, and the `current' counter. */
1014
1015#define GDBSERVER_FLUSH_COUNT_MASK_PREV 0x7ff00000
1016#define GDBSERVER_FLUSH_COUNT_MASK_CURR 0x0007ff00
1017
1018/* When GDBserver update the IP agent's `trace_buffer_ctrl_curr', it
1019 always stamps this bit as set. */
1020#define GDBSERVER_UPDATED_FLUSH_COUNT_BIT 0x80000000
1021
1022#ifdef IN_PROCESS_AGENT
1023IP_AGENT_EXPORT struct trace_buffer_control trace_buffer_ctrl[3];
1024IP_AGENT_EXPORT unsigned int trace_buffer_ctrl_curr;
1025
1026# define TRACE_BUFFER_CTRL_CURR \
1027 (trace_buffer_ctrl_curr & ~GDBSERVER_FLUSH_COUNT_MASK)
1028
1029#else
1030
1031/* The GDBserver side agent only needs one instance of this object, as
1032 it doesn't need to sync with itself. Define it as array anyway so
1033 that the rest of the code base doesn't need to care for the
1034 difference. */
1035struct trace_buffer_control trace_buffer_ctrl[1];
1036# define TRACE_BUFFER_CTRL_CURR 0
1037#endif
1038
1039/* These are convenience macros used to access the current trace
1040 buffer control in effect. */
1041#define trace_buffer_start (trace_buffer_ctrl[TRACE_BUFFER_CTRL_CURR].start)
1042#define trace_buffer_free (trace_buffer_ctrl[TRACE_BUFFER_CTRL_CURR].free)
1043#define trace_buffer_end_free \
1044 (trace_buffer_ctrl[TRACE_BUFFER_CTRL_CURR].end_free)
1045#define trace_buffer_wrap (trace_buffer_ctrl[TRACE_BUFFER_CTRL_CURR].wrap)
219f2f23 1046
219f2f23
PA
1047
1048/* Macro that returns a pointer to the first traceframe in the buffer. */
1049
1050#define FIRST_TRACEFRAME() ((struct traceframe *) trace_buffer_start)
1051
1052/* Macro that returns a pointer to the next traceframe in the buffer.
1053 If the computed location is beyond the wraparound point, subtract
1054 the offset of the wraparound. */
1055
1056#define NEXT_TRACEFRAME_1(TF) \
1057 (((unsigned char *) (TF)) + sizeof (struct traceframe) + (TF)->data_size)
1058
1059#define NEXT_TRACEFRAME(TF) \
1060 ((struct traceframe *) (NEXT_TRACEFRAME_1 (TF) \
1061 - ((NEXT_TRACEFRAME_1 (TF) >= trace_buffer_wrap) \
1062 ? (trace_buffer_wrap - trace_buffer_lo) \
1063 : 0)))
1064
1065/* The difference between these counters represents the total number
fa593d66
PA
1066 of complete traceframes present in the trace buffer. The IP agent
1067 writes to the write count, GDBserver writes to read count. */
219f2f23 1068
fa593d66
PA
1069IP_AGENT_EXPORT unsigned int traceframe_write_count;
1070IP_AGENT_EXPORT unsigned int traceframe_read_count;
219f2f23
PA
1071
1072/* Convenience macro. */
1073
1074#define traceframe_count \
1075 ((unsigned int) (traceframe_write_count - traceframe_read_count))
1076
1077/* The count of all traceframes created in the current run, including
1078 ones that were discarded to make room. */
1079
fa593d66
PA
1080IP_AGENT_EXPORT int traceframes_created;
1081
1082#ifndef IN_PROCESS_AGENT
219f2f23
PA
1083
1084/* Read-only regions are address ranges whose contents don't change,
1085 and so can be read from target memory even while looking at a trace
1086 frame. Without these, disassembly for instance will likely fail,
1087 because the program code is not usually collected into a trace
1088 frame. This data structure does not need to be very complicated or
1089 particularly efficient, it's only going to be used occasionally,
1090 and only by some commands. */
1091
1092struct readonly_region
1093{
1094 /* The bounds of the region. */
1095 CORE_ADDR start, end;
1096
1097 /* Link to the next one. */
1098 struct readonly_region *next;
1099};
1100
1101/* Linked list of readonly regions. This list stays in effect from
1102 one tstart to the next. */
1103
1104static struct readonly_region *readonly_regions;
1105
fa593d66
PA
1106#endif
1107
219f2f23
PA
1108/* The global that controls tracing overall. */
1109
fa593d66
PA
1110IP_AGENT_EXPORT int tracing;
1111
1112#ifndef IN_PROCESS_AGENT
8336d594
PA
1113
1114/* Controls whether tracing should continue after GDB disconnects. */
1115
1116int disconnected_tracing;
219f2f23
PA
1117
1118/* The reason for the last tracing run to have stopped. We initialize
1119 to a distinct string so that GDB can distinguish between "stopped
1120 after running" and "stopped because never run" cases. */
1121
1122static const char *tracing_stop_reason = "tnotrun";
1123
1124static int tracing_stop_tpnum;
1125
fa593d66
PA
1126#endif
1127
219f2f23
PA
1128/* Functions local to this file. */
1129
1130/* Base "class" for tracepoint type specific data to be passed down to
fa593d66 1131 collect_data_at_tracepoint. */
219f2f23
PA
1132struct tracepoint_hit_ctx
1133{
fa593d66 1134 enum tracepoint_type type;
219f2f23
PA
1135};
1136
fa593d66
PA
1137#ifdef IN_PROCESS_AGENT
1138
1139/* Fast/jump tracepoint specific data to be passed down to
219f2f23 1140 collect_data_at_tracepoint. */
fa593d66
PA
1141struct fast_tracepoint_ctx
1142{
1143 struct tracepoint_hit_ctx base;
1144
1145 struct regcache regcache;
1146 int regcache_initted;
1147 unsigned char *regspace;
1148
1149 unsigned char *regs;
1150 struct tracepoint *tpoint;
1151};
219f2f23 1152
0fb4aa4b
PA
1153/* Static tracepoint specific data to be passed down to
1154 collect_data_at_tracepoint. */
1155struct static_tracepoint_ctx
1156{
1157 struct tracepoint_hit_ctx base;
1158
1159 /* The regcache corresponding to the registers state at the time of
1160 the tracepoint hit. Initialized lazily, from REGS. */
1161 struct regcache regcache;
1162 int regcache_initted;
1163
1164 /* The buffer space REGCACHE above uses. We use a separate buffer
1165 instead of letting the regcache malloc for both signal safety and
1166 performance reasons; this is allocated on the stack instead. */
1167 unsigned char *regspace;
1168
1169 /* The register buffer as passed on by lttng/ust. */
1170 struct registers *regs;
1171
1172 /* The "printf" formatter and the args the user passed to the marker
1173 call. We use this to be able to collect "static trace data"
1174 ($_sdata). */
1175 const char *fmt;
1176 va_list *args;
1177
1178 /* The GDB tracepoint matching the probed marker that was "hit". */
1179 struct tracepoint *tpoint;
1180};
1181
fa593d66
PA
1182#else
1183
1184/* Static tracepoint specific data to be passed down to
1185 collect_data_at_tracepoint. */
219f2f23
PA
1186struct trap_tracepoint_ctx
1187{
1188 struct tracepoint_hit_ctx base;
1189
1190 struct regcache *regcache;
1191};
1192
fa593d66
PA
1193#endif
1194
1195#ifndef IN_PROCESS_AGENT
219f2f23
PA
1196static struct agent_expr *parse_agent_expr (char **actparm);
1197static char *unparse_agent_expr (struct agent_expr *aexpr);
fa593d66 1198#endif
219f2f23
PA
1199static enum eval_result_type eval_agent_expr (struct tracepoint_hit_ctx *ctx,
1200 struct traceframe *tframe,
1201 struct agent_expr *aexpr,
1202 ULONGEST *rslt);
1203
1204static int agent_mem_read (struct traceframe *tframe,
1205 unsigned char *to, CORE_ADDR from, ULONGEST len);
1206static int agent_tsv_read (struct traceframe *tframe, int n);
1207
fa593d66 1208#ifndef IN_PROCESS_AGENT
219f2f23
PA
1209static CORE_ADDR traceframe_get_pc (struct traceframe *tframe);
1210static int traceframe_read_tsv (int num, LONGEST *val);
fa593d66 1211#endif
219f2f23
PA
1212
1213static int condition_true_at_tracepoint (struct tracepoint_hit_ctx *ctx,
1214 struct tracepoint *tpoint);
1215
fa593d66 1216#ifndef IN_PROCESS_AGENT
219f2f23
PA
1217static void clear_readonly_regions (void);
1218static void clear_installed_tracepoints (void);
fa593d66 1219#endif
219f2f23
PA
1220
1221static void collect_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
1222 CORE_ADDR stop_pc,
1223 struct tracepoint *tpoint);
fa593d66 1224#ifndef IN_PROCESS_AGENT
219f2f23
PA
1225static void collect_data_at_step (struct tracepoint_hit_ctx *ctx,
1226 CORE_ADDR stop_pc,
1227 struct tracepoint *tpoint, int current_step);
6a271cae
PA
1228static void compile_tracepoint_condition (struct tracepoint *tpoint,
1229 CORE_ADDR *jump_entry);
fa593d66 1230#endif
219f2f23
PA
1231static void do_action_at_tracepoint (struct tracepoint_hit_ctx *ctx,
1232 CORE_ADDR stop_pc,
1233 struct tracepoint *tpoint,
1234 struct traceframe *tframe,
1235 struct tracepoint_action *taction);
1236
fa593d66
PA
1237#ifndef IN_PROCESS_AGENT
1238static struct tracepoint *fast_tracepoint_from_ipa_tpoint_address (CORE_ADDR);
1239#endif
1240
1241#if defined(__GNUC__)
1242# define memory_barrier() asm volatile ("" : : : "memory")
1243#else
1244# define memory_barrier() do {} while (0)
1245#endif
1246
1247/* We only build the IPA if this builtin is supported, and there are
1248 no uses of this in GDBserver itself, so we're safe in defining this
1249 unconditionally. */
1250#define cmpxchg(mem, oldval, newval) \
1251 __sync_val_compare_and_swap (mem, oldval, newval)
1252
0fb4aa4b
PA
1253/* The size in bytes of the buffer used to talk to the IPA helper
1254 thread. */
1255#define CMD_BUF_SIZE 1024
1256
219f2f23
PA
1257/* Record that an error occurred during expression evaluation. */
1258
1259static void
1260record_tracepoint_error (struct tracepoint *tpoint, const char *which,
1261 enum eval_result_type rtype)
1262{
1263 trace_debug ("Tracepoint %d at %s %s eval reports error %d",
1264 tpoint->number, paddress (tpoint->address), which, rtype);
1265
fa593d66
PA
1266#ifdef IN_PROCESS_AGENT
1267 /* Only record the first error we get. */
1268 if (cmpxchg (&expr_eval_result,
1269 expr_eval_no_error,
1270 rtype) != expr_eval_no_error)
1271 return;
1272#else
1273 if (expr_eval_result != expr_eval_no_error)
1274 return;
1275#endif
1276
219f2f23
PA
1277 error_tracepoint = tpoint;
1278}
1279
1280/* Trace buffer management. */
1281
1282static void
1283clear_trace_buffer (void)
1284{
1285 trace_buffer_start = trace_buffer_lo;
1286 trace_buffer_free = trace_buffer_lo;
1287 trace_buffer_end_free = trace_buffer_hi;
1288 trace_buffer_wrap = trace_buffer_hi;
1289 /* A traceframe with zeroed fields marks the end of trace data. */
1290 ((struct traceframe *) trace_buffer_free)->tpnum = 0;
1291 ((struct traceframe *) trace_buffer_free)->data_size = 0;
1292 traceframe_read_count = traceframe_write_count = 0;
1293 traceframes_created = 0;
1294}
1295
fa593d66
PA
1296#ifndef IN_PROCESS_AGENT
1297
1298static void
1299clear_inferior_trace_buffer (void)
1300{
1301 CORE_ADDR ipa_trace_buffer_lo;
1302 CORE_ADDR ipa_trace_buffer_hi;
1303 struct traceframe ipa_traceframe = { 0 };
1304 struct ipa_trace_buffer_control ipa_trace_buffer_ctrl;
1305
1306 read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_lo,
1307 &ipa_trace_buffer_lo);
1308 read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_hi,
1309 &ipa_trace_buffer_hi);
1310
1311 ipa_trace_buffer_ctrl.start = ipa_trace_buffer_lo;
1312 ipa_trace_buffer_ctrl.free = ipa_trace_buffer_lo;
1313 ipa_trace_buffer_ctrl.end_free = ipa_trace_buffer_hi;
1314 ipa_trace_buffer_ctrl.wrap = ipa_trace_buffer_hi;
1315
1316 /* A traceframe with zeroed fields marks the end of trace data. */
1317 write_inferior_memory (ipa_sym_addrs.addr_trace_buffer_ctrl,
1318 (unsigned char *) &ipa_trace_buffer_ctrl,
1319 sizeof (ipa_trace_buffer_ctrl));
1320
1321 write_inferior_uinteger (ipa_sym_addrs.addr_trace_buffer_ctrl_curr, 0);
1322
1323 /* A traceframe with zeroed fields marks the end of trace data. */
1324 write_inferior_memory (ipa_trace_buffer_lo,
1325 (unsigned char *) &ipa_traceframe,
1326 sizeof (ipa_traceframe));
1327
1328 write_inferior_uinteger (ipa_sym_addrs.addr_traceframe_write_count, 0);
1329 write_inferior_uinteger (ipa_sym_addrs.addr_traceframe_read_count, 0);
1330 write_inferior_integer (ipa_sym_addrs.addr_traceframes_created, 0);
1331}
1332
1333#endif
1334
219f2f23
PA
1335static void
1336init_trace_buffer (unsigned char *buf, int bufsize)
1337{
1338 trace_buffer_lo = buf;
1339 trace_buffer_hi = trace_buffer_lo + bufsize;
1340
1341 clear_trace_buffer ();
1342}
1343
fa593d66
PA
1344#ifdef IN_PROCESS_AGENT
1345
1346IP_AGENT_EXPORT void ATTR_USED ATTR_NOINLINE
1347about_to_request_buffer_space (void)
1348{
1349 /* GDBserver places breakpoint here while it goes about to flush
1350 data at random times. */
1351 UNKNOWN_SIDE_EFFECTS();
1352}
1353
1354#endif
1355
219f2f23
PA
1356/* Carve out a piece of the trace buffer, returning NULL in case of
1357 failure. */
1358
1359static void *
1360trace_buffer_alloc (size_t amt)
1361{
1362 unsigned char *rslt;
fa593d66
PA
1363 struct trace_buffer_control *tbctrl;
1364 unsigned int curr;
1365#ifdef IN_PROCESS_AGENT
1366 unsigned int prev, prev_filtered;
1367 unsigned int commit_count;
1368 unsigned int commit;
1369 unsigned int readout;
1370#else
219f2f23
PA
1371 struct traceframe *oldest;
1372 unsigned char *new_start;
fa593d66 1373#endif
219f2f23
PA
1374
1375 trace_debug ("Want to allocate %ld+%ld bytes in trace buffer",
1376 (long) amt, (long) sizeof (struct traceframe));
1377
1378 /* Account for the EOB marker. */
1379 amt += sizeof (struct traceframe);
1380
fa593d66
PA
1381#ifdef IN_PROCESS_AGENT
1382 again:
1383 memory_barrier ();
1384
1385 /* Read the current token and extract the index to try to write to,
1386 storing it in CURR. */
1387 prev = trace_buffer_ctrl_curr;
1388 prev_filtered = prev & ~GDBSERVER_FLUSH_COUNT_MASK;
1389 curr = prev_filtered + 1;
1390 if (curr > 2)
1391 curr = 0;
1392
1393 about_to_request_buffer_space ();
1394
1395 /* Start out with a copy of the current state. GDBserver may be
1396 midway writing to the PREV_FILTERED TBC, but, that's OK, we won't
1397 be able to commit anyway if that happens. */
1398 trace_buffer_ctrl[curr]
1399 = trace_buffer_ctrl[prev_filtered];
1400 trace_debug ("trying curr=%u", curr);
1401#else
1402 /* The GDBserver's agent doesn't need all that syncing, and always
1403 updates TCB 0 (there's only one, mind you). */
1404 curr = 0;
1405#endif
1406 tbctrl = &trace_buffer_ctrl[curr];
1407
219f2f23
PA
1408 /* Offsets are easier to grok for debugging than raw addresses,
1409 especially for the small trace buffer sizes that are useful for
1410 testing. */
fa593d66
PA
1411 trace_debug ("Trace buffer [%d] start=%d free=%d endfree=%d wrap=%d hi=%d",
1412 curr,
1413 (int) (tbctrl->start - trace_buffer_lo),
1414 (int) (tbctrl->free - trace_buffer_lo),
1415 (int) (tbctrl->end_free - trace_buffer_lo),
1416 (int) (tbctrl->wrap - trace_buffer_lo),
219f2f23
PA
1417 (int) (trace_buffer_hi - trace_buffer_lo));
1418
1419 /* The algorithm here is to keep trying to get a contiguous block of
1420 the requested size, possibly discarding older traceframes to free
1421 up space. Since free space might come in one or two pieces,
1422 depending on whether discarded traceframes wrapped around at the
1423 high end of the buffer, we test both pieces after each
1424 discard. */
1425 while (1)
1426 {
1427 /* First, if we have two free parts, try the upper one first. */
fa593d66 1428 if (tbctrl->end_free < tbctrl->free)
219f2f23 1429 {
fa593d66 1430 if (tbctrl->free + amt <= trace_buffer_hi)
219f2f23
PA
1431 /* We have enough in the upper part. */
1432 break;
1433 else
1434 {
1435 /* Our high part of free space wasn't enough. Give up
1436 on it for now, set wraparound. We will recover the
1437 space later, if/when the wrapped-around traceframe is
1438 discarded. */
1439 trace_debug ("Upper part too small, setting wraparound");
fa593d66
PA
1440 tbctrl->wrap = tbctrl->free;
1441 tbctrl->free = trace_buffer_lo;
219f2f23
PA
1442 }
1443 }
1444
1445 /* The normal case. */
fa593d66 1446 if (tbctrl->free + amt <= tbctrl->end_free)
219f2f23
PA
1447 break;
1448
fa593d66
PA
1449#ifdef IN_PROCESS_AGENT
1450 /* The IP Agent's buffer is always circular. It isn't used
1451 currently, but `circular_trace_buffer' could represent
1452 GDBserver's mode. If we didn't find space, ask GDBserver to
1453 flush. */
1454
1455 flush_trace_buffer ();
1456 memory_barrier ();
1457 if (tracing)
1458 {
1459 trace_debug ("gdbserver flushed buffer, retrying");
1460 goto again;
1461 }
1462
1463 /* GDBserver cancelled the tracing. Bail out as well. */
1464 return NULL;
1465#else
219f2f23
PA
1466 /* If we're here, then neither part is big enough, and
1467 non-circular trace buffers are now full. */
1468 if (!circular_trace_buffer)
1469 {
1470 trace_debug ("Not enough space in the trace buffer");
1471 return NULL;
1472 }
1473
1474 trace_debug ("Need more space in the trace buffer");
1475
1476 /* If we have a circular buffer, we can try discarding the
1477 oldest traceframe and see if that helps. */
1478 oldest = FIRST_TRACEFRAME ();
1479 if (oldest->tpnum == 0)
1480 {
1481 /* Not good; we have no traceframes to free. Perhaps we're
1482 asking for a block that is larger than the buffer? In
1483 any case, give up. */
1484 trace_debug ("No traceframes to discard");
1485 return NULL;
1486 }
1487
fa593d66
PA
1488 /* We don't run this code in the in-process agent currently.
1489 E.g., we could leave the in-process agent in autonomous
1490 circular mode if we only have fast tracepoints. If we do
1491 that, then this bit becomes racy with GDBserver, which also
1492 writes to this counter. */
219f2f23
PA
1493 --traceframe_write_count;
1494
1495 new_start = (unsigned char *) NEXT_TRACEFRAME (oldest);
1496 /* If we freed the traceframe that wrapped around, go back
1497 to the non-wrap case. */
fa593d66 1498 if (new_start < tbctrl->start)
219f2f23
PA
1499 {
1500 trace_debug ("Discarding past the wraparound");
fa593d66 1501 tbctrl->wrap = trace_buffer_hi;
219f2f23 1502 }
fa593d66
PA
1503 tbctrl->start = new_start;
1504 tbctrl->end_free = tbctrl->start;
219f2f23
PA
1505
1506 trace_debug ("Discarded a traceframe\n"
fa593d66
PA
1507 "Trace buffer [%d], start=%d free=%d "
1508 "endfree=%d wrap=%d hi=%d",
1509 curr,
1510 (int) (tbctrl->start - trace_buffer_lo),
1511 (int) (tbctrl->free - trace_buffer_lo),
1512 (int) (tbctrl->end_free - trace_buffer_lo),
1513 (int) (tbctrl->wrap - trace_buffer_lo),
219f2f23
PA
1514 (int) (trace_buffer_hi - trace_buffer_lo));
1515
1516 /* Now go back around the loop. The discard might have resulted
1517 in either one or two pieces of free space, so we want to try
1518 both before freeing any more traceframes. */
fa593d66 1519#endif
219f2f23
PA
1520 }
1521
1522 /* If we get here, we know we can provide the asked-for space. */
1523
fa593d66 1524 rslt = tbctrl->free;
219f2f23
PA
1525
1526 /* Adjust the request back down, now that we know we have space for
fa593d66
PA
1527 the marker, but don't commit to AMT yet, we may still need to
1528 restart the operation if GDBserver touches the trace buffer
1529 (obviously only important in the in-process agent's version). */
1530 tbctrl->free += (amt - sizeof (struct traceframe));
1531
1532 /* Or not. If GDBserver changed the trace buffer behind our back,
1533 we get to restart a new allocation attempt. */
1534
1535#ifdef IN_PROCESS_AGENT
1536 /* Build the tentative token. */
1537 commit_count = (((prev & 0x0007ff00) + 0x100) & 0x0007ff00);
1538 commit = (((prev & 0x0007ff00) << 12)
1539 | commit_count
1540 | curr);
1541
1542 /* Try to commit it. */
1543 readout = cmpxchg (&trace_buffer_ctrl_curr, prev, commit);
1544 if (readout != prev)
1545 {
1546 trace_debug ("GDBserver has touched the trace buffer, restarting."
1547 " (prev=%08x, commit=%08x, readout=%08x)",
1548 prev, commit, readout);
1549 goto again;
1550 }
219f2f23 1551
fa593d66
PA
1552 /* Hold your horses here. Even if that change was committed,
1553 GDBserver could come in, and clobber it. We need to hold to be
1554 able to tell if GDBserver clobbers before or after we committed
1555 the change. Whenever GDBserver goes about touching the IPA
1556 buffer, it sets a breakpoint in this routine, so we have a sync
1557 point here. */
1558 about_to_request_buffer_space ();
219f2f23 1559
fa593d66
PA
1560 /* Check if the change has been effective, even if GDBserver stopped
1561 us at the breakpoint. */
219f2f23 1562
fa593d66
PA
1563 {
1564 unsigned int refetch;
219f2f23 1565
fa593d66
PA
1566 memory_barrier ();
1567
1568 refetch = trace_buffer_ctrl_curr;
1569
1570 if ((refetch == commit
1571 || ((refetch & 0x7ff00000) >> 12) == commit_count))
1572 {
1573 /* effective */
1574 trace_debug ("change is effective: (prev=%08x, commit=%08x, "
1575 "readout=%08x, refetch=%08x)",
1576 prev, commit, readout, refetch);
1577 }
1578 else
1579 {
1580 trace_debug ("GDBserver has touched the trace buffer, not effective."
1581 " (prev=%08x, commit=%08x, readout=%08x, refetch=%08x)",
1582 prev, commit, readout, refetch);
1583 goto again;
1584 }
1585 }
1586#endif
1587
1588 /* We have a new piece of the trace buffer. Hurray! */
1589
1590 /* Add an EOB marker just past this allocation. */
1591 ((struct traceframe *) tbctrl->free)->tpnum = 0;
1592 ((struct traceframe *) tbctrl->free)->data_size = 0;
1593
1594 /* Adjust the request back down, now that we know we have space for
1595 the marker. */
1596 amt -= sizeof (struct traceframe);
1597
1598 if (debug_threads)
1599 {
219f2f23 1600 trace_debug ("Allocated %d bytes", (int) amt);
fa593d66
PA
1601 trace_debug ("Trace buffer [%d] start=%d free=%d "
1602 "endfree=%d wrap=%d hi=%d",
1603 curr,
1604 (int) (tbctrl->start - trace_buffer_lo),
1605 (int) (tbctrl->free - trace_buffer_lo),
1606 (int) (tbctrl->end_free - trace_buffer_lo),
1607 (int) (tbctrl->wrap - trace_buffer_lo),
219f2f23
PA
1608 (int) (trace_buffer_hi - trace_buffer_lo));
1609 }
1610
1611 return rslt;
1612}
1613
fa593d66
PA
1614#ifndef IN_PROCESS_AGENT
1615
219f2f23
PA
1616/* Return the total free space. This is not necessarily the largest
1617 block we can allocate, because of the two-part case. */
1618
1619static int
1620free_space (void)
1621{
1622 if (trace_buffer_free <= trace_buffer_end_free)
1623 return trace_buffer_end_free - trace_buffer_free;
1624 else
1625 return ((trace_buffer_end_free - trace_buffer_lo)
1626 + (trace_buffer_hi - trace_buffer_free));
1627}
1628
1629/* An 'S' in continuation packets indicates remainder are for
1630 while-stepping. */
1631
1632static int seen_step_action_flag;
1633
1634/* Create a tracepoint (location) with given number and address. */
1635
1636static struct tracepoint *
1637add_tracepoint (int num, CORE_ADDR addr)
1638{
1639 struct tracepoint *tpoint;
1640
1641 tpoint = xmalloc (sizeof (struct tracepoint));
1642 tpoint->number = num;
1643 tpoint->address = addr;
1644 tpoint->numactions = 0;
1645 tpoint->actions = NULL;
1646 tpoint->actions_str = NULL;
1647 tpoint->cond = NULL;
1648 tpoint->num_step_actions = 0;
1649 tpoint->step_actions = NULL;
1650 tpoint->step_actions_str = NULL;
fa593d66
PA
1651 /* Start all off as regular (slow) tracepoints. */
1652 tpoint->type = trap_tracepoint;
1653 tpoint->orig_size = -1;
219f2f23 1654 tpoint->source_strings = NULL;
6a271cae 1655 tpoint->compiled_cond = 0;
219f2f23
PA
1656 tpoint->handle = NULL;
1657 tpoint->next = NULL;
1658
1659 if (!last_tracepoint)
1660 tracepoints = tpoint;
1661 else
1662 last_tracepoint->next = tpoint;
1663 last_tracepoint = tpoint;
1664
1665 seen_step_action_flag = 0;
1666
1667 return tpoint;
1668}
1669
fa593d66
PA
1670#ifndef IN_PROCESS_AGENT
1671
219f2f23
PA
1672/* Return the tracepoint with the given number and address, or NULL. */
1673
1674static struct tracepoint *
1675find_tracepoint (int id, CORE_ADDR addr)
1676{
1677 struct tracepoint *tpoint;
1678
1679 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
1680 if (tpoint->number == id && tpoint->address == addr)
1681 return tpoint;
1682
1683 return NULL;
1684}
1685
1686/* There may be several tracepoints with the same number (because they
1687 are "locations", in GDB parlance); return the next one after the
1688 given tracepoint, or search from the beginning of the list if the
1689 first argument is NULL. */
1690
1691static struct tracepoint *
1692find_next_tracepoint_by_number (struct tracepoint *prev_tp, int num)
1693{
1694 struct tracepoint *tpoint;
1695
1696 if (prev_tp)
1697 tpoint = prev_tp->next;
1698 else
1699 tpoint = tracepoints;
1700 for (; tpoint; tpoint = tpoint->next)
1701 if (tpoint->number == num)
1702 return tpoint;
1703
1704 return NULL;
1705}
1706
fa593d66
PA
1707#endif
1708
219f2f23
PA
1709static char *
1710save_string (const char *str, size_t len)
1711{
1712 char *s;
1713
1714 s = xmalloc (len + 1);
1715 memcpy (s, str, len);
1716 s[len] = '\0';
1717
1718 return s;
1719}
1720
1721/* Append another action to perform when the tracepoint triggers. */
1722
1723static void
1724add_tracepoint_action (struct tracepoint *tpoint, char *packet)
1725{
1726 char *act;
1727
1728 if (*packet == 'S')
1729 {
1730 seen_step_action_flag = 1;
1731 ++packet;
1732 }
1733
1734 act = packet;
1735
1736 while (*act)
1737 {
1738 char *act_start = act;
1739 struct tracepoint_action *action = NULL;
1740
1741 switch (*act)
1742 {
1743 case 'M':
1744 {
1745 struct collect_memory_action *maction;
1746 ULONGEST basereg;
1747 int is_neg;
1748
1749 maction = xmalloc (sizeof *maction);
1750 maction->base.type = *act;
1751 action = &maction->base;
1752
1753 ++act;
1754 is_neg = (*act == '-');
1755 if (*act == '-')
1756 ++act;
1757 act = unpack_varlen_hex (act, &basereg);
1758 ++act;
1759 act = unpack_varlen_hex (act, &maction->addr);
1760 ++act;
1761 act = unpack_varlen_hex (act, &maction->len);
1762 maction->basereg = (is_neg
1763 ? - (int) basereg
1764 : (int) basereg);
1765 trace_debug ("Want to collect %s bytes at 0x%s (basereg %d)",
1766 pulongest (maction->len),
1767 paddress (maction->addr), maction->basereg);
1768 break;
1769 }
1770 case 'R':
1771 {
1772 struct collect_registers_action *raction;
1773
1774 raction = xmalloc (sizeof *raction);
1775 raction->base.type = *act;
1776 action = &raction->base;
1777
1778 trace_debug ("Want to collect registers");
1779 ++act;
1780 /* skip past hex digits of mask for now */
1781 while (isxdigit(*act))
1782 ++act;
1783 break;
1784 }
0fb4aa4b
PA
1785 case 'L':
1786 {
1787 struct collect_static_trace_data_action *raction;
1788
1789 raction = xmalloc (sizeof *raction);
1790 raction->base.type = *act;
1791 action = &raction->base;
1792
1793 trace_debug ("Want to collect static trace data");
1794 ++act;
1795 break;
1796 }
219f2f23
PA
1797 case 'S':
1798 trace_debug ("Unexpected step action, ignoring");
1799 ++act;
1800 break;
1801 case 'X':
1802 {
1803 struct eval_expr_action *xaction;
1804
1805 xaction = xmalloc (sizeof (*xaction));
1806 xaction->base.type = *act;
1807 action = &xaction->base;
1808
1809 trace_debug ("Want to evaluate expression");
1810 xaction->expr = parse_agent_expr (&act);
1811 break;
1812 }
1813 default:
1814 trace_debug ("unknown trace action '%c', ignoring...", *act);
1815 break;
1816 case '-':
1817 break;
1818 }
1819
1820 if (action == NULL)
1821 break;
1822
1823 if (seen_step_action_flag)
1824 {
1825 tpoint->num_step_actions++;
1826
1827 tpoint->step_actions
1828 = xrealloc (tpoint->step_actions,
1829 (sizeof (*tpoint->step_actions)
1830 * tpoint->num_step_actions));
1831 tpoint->step_actions_str
1832 = xrealloc (tpoint->step_actions_str,
1833 (sizeof (*tpoint->step_actions_str)
1834 * tpoint->num_step_actions));
1835 tpoint->step_actions[tpoint->num_step_actions - 1] = action;
1836 tpoint->step_actions_str[tpoint->num_step_actions - 1]
1837 = save_string (act_start, act - act_start);
1838 }
1839 else
1840 {
1841 tpoint->numactions++;
1842 tpoint->actions
1843 = xrealloc (tpoint->actions,
1844 sizeof (*tpoint->actions) * tpoint->numactions);
1845 tpoint->actions_str
1846 = xrealloc (tpoint->actions_str,
1847 sizeof (*tpoint->actions_str) * tpoint->numactions);
1848 tpoint->actions[tpoint->numactions - 1] = action;
1849 tpoint->actions_str[tpoint->numactions - 1]
1850 = save_string (act_start, act - act_start);
1851 }
1852 }
1853}
1854
fa593d66
PA
1855#endif
1856
219f2f23
PA
1857/* Find or create a trace state variable with the given number. */
1858
1859static struct trace_state_variable *
1860get_trace_state_variable (int num)
1861{
1862 struct trace_state_variable *tsv;
1863
fa593d66
PA
1864#ifdef IN_PROCESS_AGENT
1865 /* Search for an existing variable. */
1866 for (tsv = alloced_trace_state_variables; tsv; tsv = tsv->next)
1867 if (tsv->number == num)
1868 return tsv;
1869#endif
1870
219f2f23
PA
1871 /* Search for an existing variable. */
1872 for (tsv = trace_state_variables; tsv; tsv = tsv->next)
1873 if (tsv->number == num)
1874 return tsv;
1875
1876 return NULL;
1877}
1878
1879/* Find or create a trace state variable with the given number. */
1880
1881static struct trace_state_variable *
fa593d66 1882create_trace_state_variable (int num, int gdb)
219f2f23
PA
1883{
1884 struct trace_state_variable *tsv;
1885
1886 tsv = get_trace_state_variable (num);
1887 if (tsv != NULL)
1888 return tsv;
1889
1890 /* Create a new variable. */
1891 tsv = xmalloc (sizeof (struct trace_state_variable));
1892 tsv->number = num;
1893 tsv->initial_value = 0;
1894 tsv->value = 0;
1895 tsv->getter = NULL;
1896 tsv->name = NULL;
fa593d66
PA
1897#ifdef IN_PROCESS_AGENT
1898 if (!gdb)
1899 {
1900 tsv->next = alloced_trace_state_variables;
1901 alloced_trace_state_variables = tsv;
1902 }
1903 else
1904#endif
1905 {
1906 tsv->next = trace_state_variables;
1907 trace_state_variables = tsv;
1908 }
219f2f23
PA
1909 return tsv;
1910}
1911
6a271cae 1912IP_AGENT_EXPORT LONGEST
219f2f23
PA
1913get_trace_state_variable_value (int num)
1914{
1915 struct trace_state_variable *tsv;
1916
1917 tsv = get_trace_state_variable (num);
1918
1919 if (!tsv)
1920 {
1921 trace_debug ("No trace state variable %d, skipping value get", num);
1922 return 0;
1923 }
1924
1925 /* Call a getter function if we have one. While it's tempting to
1926 set up something to only call the getter once per tracepoint hit,
1927 it could run afoul of thread races. Better to let the getter
1928 handle it directly, if necessary to worry about it. */
1929 if (tsv->getter)
1930 tsv->value = (tsv->getter) ();
1931
1932 trace_debug ("get_trace_state_variable_value(%d) ==> %s",
1933 num, plongest (tsv->value));
1934
1935 return tsv->value;
1936}
1937
6a271cae 1938IP_AGENT_EXPORT void
219f2f23
PA
1939set_trace_state_variable_value (int num, LONGEST val)
1940{
1941 struct trace_state_variable *tsv;
1942
1943 tsv = get_trace_state_variable (num);
1944
1945 if (!tsv)
1946 {
1947 trace_debug ("No trace state variable %d, skipping value set", num);
1948 return;
1949 }
1950
1951 tsv->value = val;
1952}
1953
1954static void
1955set_trace_state_variable_name (int num, const char *name)
1956{
1957 struct trace_state_variable *tsv;
1958
1959 tsv = get_trace_state_variable (num);
1960
1961 if (!tsv)
1962 {
1963 trace_debug ("No trace state variable %d, skipping name set", num);
1964 return;
1965 }
1966
1967 tsv->name = (char *) name;
1968}
1969
1970static void
1971set_trace_state_variable_getter (int num, LONGEST (*getter) (void))
1972{
1973 struct trace_state_variable *tsv;
1974
1975 tsv = get_trace_state_variable (num);
1976
1977 if (!tsv)
1978 {
1979 trace_debug ("No trace state variable %d, skipping getter set", num);
1980 return;
1981 }
1982
1983 tsv->getter = getter;
1984}
1985
1986/* Add a raw traceframe for the given tracepoint. */
1987
1988static struct traceframe *
1989add_traceframe (struct tracepoint *tpoint)
1990{
1991 struct traceframe *tframe;
1992
1993 tframe = trace_buffer_alloc (sizeof (struct traceframe));
1994
1995 if (tframe == NULL)
1996 return NULL;
1997
1998 tframe->tpnum = tpoint->number;
1999 tframe->data_size = 0;
2000
2001 return tframe;
2002}
2003
2004/* Add a block to the traceframe currently being worked on. */
2005
2006static unsigned char *
2007add_traceframe_block (struct traceframe *tframe, int amt)
2008{
2009 unsigned char *block;
2010
2011 if (!tframe)
2012 return NULL;
2013
2014 block = trace_buffer_alloc (amt);
2015
2016 if (!block)
2017 return NULL;
2018
2019 tframe->data_size += amt;
2020
2021 return block;
2022}
2023
2024/* Flag that the current traceframe is finished. */
2025
2026static void
2027finish_traceframe (struct traceframe *tframe)
2028{
2029 ++traceframe_write_count;
2030 ++traceframes_created;
2031}
2032
fa593d66
PA
2033#ifndef IN_PROCESS_AGENT
2034
219f2f23
PA
2035/* Given a traceframe number NUM, find the NUMth traceframe in the
2036 buffer. */
2037
2038static struct traceframe *
2039find_traceframe (int num)
2040{
2041 struct traceframe *tframe;
2042 int tfnum = 0;
2043
2044 for (tframe = FIRST_TRACEFRAME ();
2045 tframe->tpnum != 0;
2046 tframe = NEXT_TRACEFRAME (tframe))
2047 {
2048 if (tfnum == num)
2049 return tframe;
2050 ++tfnum;
2051 }
2052
2053 return NULL;
2054}
2055
2056static CORE_ADDR
2057get_traceframe_address (struct traceframe *tframe)
2058{
2059 CORE_ADDR addr;
2060 struct tracepoint *tpoint;
2061
2062 addr = traceframe_get_pc (tframe);
2063
2064 if (addr)
2065 return addr;
2066
2067 /* Fallback strategy, will be incorrect for while-stepping frames
2068 and multi-location tracepoints. */
2069 tpoint = find_next_tracepoint_by_number (NULL, tframe->tpnum);
2070 return tpoint->address;
2071}
2072
2073/* Search for the next traceframe whose address is inside or outside
2074 the given range. */
2075
2076static struct traceframe *
2077find_next_traceframe_in_range (CORE_ADDR lo, CORE_ADDR hi, int inside_p,
2078 int *tfnump)
2079{
2080 struct traceframe *tframe;
2081 CORE_ADDR tfaddr;
2082
2083 *tfnump = current_traceframe + 1;
2084 tframe = find_traceframe (*tfnump);
2085 /* The search is not supposed to wrap around. */
2086 if (!tframe)
2087 {
2088 *tfnump = -1;
2089 return NULL;
2090 }
2091
2092 for (; tframe->tpnum != 0; tframe = NEXT_TRACEFRAME (tframe))
2093 {
2094 tfaddr = get_traceframe_address (tframe);
2095 if (inside_p
2096 ? (lo <= tfaddr && tfaddr <= hi)
2097 : (lo > tfaddr || tfaddr > hi))
2098 return tframe;
2099 ++*tfnump;
2100 }
2101
2102 *tfnump = -1;
2103 return NULL;
2104}
2105
2106/* Search for the next traceframe recorded by the given tracepoint.
2107 Note that for multi-location tracepoints, this will find whatever
2108 location appears first. */
2109
2110static struct traceframe *
2111find_next_traceframe_by_tracepoint (int num, int *tfnump)
2112{
2113 struct traceframe *tframe;
2114
2115 *tfnump = current_traceframe + 1;
2116 tframe = find_traceframe (*tfnump);
2117 /* The search is not supposed to wrap around. */
2118 if (!tframe)
2119 {
2120 *tfnump = -1;
2121 return NULL;
2122 }
2123
2124 for (; tframe->tpnum != 0; tframe = NEXT_TRACEFRAME (tframe))
2125 {
2126 if (tframe->tpnum == num)
2127 return tframe;
2128 ++*tfnump;
2129 }
2130
2131 *tfnump = -1;
2132 return NULL;
2133}
2134
fa593d66
PA
2135#endif
2136
2137#ifndef IN_PROCESS_AGENT
2138
219f2f23
PA
2139/* Clear all past trace state. */
2140
2141static void
2142cmd_qtinit (char *packet)
2143{
2144 struct trace_state_variable *tsv, *prev, *next;
2145
2146 /* Make sure we don't try to read from a trace frame. */
2147 current_traceframe = -1;
2148
2149 trace_debug ("Initializing the trace");
2150
2151 clear_installed_tracepoints ();
2152 clear_readonly_regions ();
2153
2154 tracepoints = NULL;
2155 last_tracepoint = NULL;
2156
2157 /* Clear out any leftover trace state variables. Ones with target
2158 defined getters should be kept however. */
2159 prev = NULL;
2160 tsv = trace_state_variables;
2161 while (tsv)
2162 {
2163 trace_debug ("Looking at var %d", tsv->number);
2164 if (tsv->getter == NULL)
2165 {
2166 next = tsv->next;
2167 if (prev)
2168 prev->next = next;
2169 else
2170 trace_state_variables = next;
2171 trace_debug ("Deleting var %d", tsv->number);
2172 free (tsv);
2173 tsv = next;
2174 }
2175 else
2176 {
2177 prev = tsv;
2178 tsv = tsv->next;
2179 }
2180 }
2181
2182 clear_trace_buffer ();
fa593d66 2183 clear_inferior_trace_buffer ();
219f2f23
PA
2184
2185 write_ok (packet);
2186}
2187
0fb4aa4b
PA
2188/* Unprobe the UST marker at ADDRESS. */
2189
2190static void
2191unprobe_marker_at (CORE_ADDR address)
2192{
2193 char cmd[CMD_BUF_SIZE];
2194
2195 sprintf (cmd, "unprobe_marker_at:%s", paddress (address));
2196 run_inferior_command (cmd);
2197}
2198
219f2f23
PA
2199/* Restore the program to its pre-tracing state. This routine may be called
2200 in error situations, so it needs to be careful about only restoring
2201 from known-valid bits. */
2202
2203static void
2204clear_installed_tracepoints (void)
2205{
2206 struct tracepoint *tpoint;
2207 struct tracepoint *prev_stpoint;
2208
7984d532
PA
2209 pause_all (1);
2210 cancel_breakpoints ();
2211
219f2f23
PA
2212 prev_stpoint = NULL;
2213
2214 /* Restore any bytes overwritten by tracepoints. */
2215 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
2216 {
2217 if (!tpoint->enabled)
2218 continue;
2219
2220 /* Catch the case where we might try to remove a tracepoint that
2221 was never actually installed. */
2222 if (tpoint->handle == NULL)
2223 {
2224 trace_debug ("Tracepoint %d at 0x%s was "
2225 "never installed, nothing to clear",
2226 tpoint->number, paddress (tpoint->address));
2227 continue;
2228 }
2229
fa593d66
PA
2230 switch (tpoint->type)
2231 {
2232 case trap_tracepoint:
2233 delete_breakpoint (tpoint->handle);
2234 break;
2235 case fast_tracepoint:
2236 delete_fast_tracepoint_jump (tpoint->handle);
2237 break;
0fb4aa4b
PA
2238 case static_tracepoint:
2239 if (prev_stpoint != NULL
2240 && prev_stpoint->address == tpoint->address)
2241 /* Nothing to do. We already unprobed a tracepoint set at
2242 this marker address (and there can only be one probe
2243 per marker). */
2244 ;
2245 else
2246 {
2247 unprobe_marker_at (tpoint->address);
2248 prev_stpoint = tpoint;
2249 }
2250 break;
fa593d66
PA
2251 }
2252
219f2f23
PA
2253 tpoint->handle = NULL;
2254 }
7984d532
PA
2255
2256 unpause_all (1);
219f2f23
PA
2257}
2258
2259/* Parse a packet that defines a tracepoint. */
2260
2261static void
2262cmd_qtdp (char *own_buf)
2263{
2264 int tppacket;
2265 ULONGEST num;
2266 ULONGEST addr;
2267 ULONGEST count;
2268 struct tracepoint *tpoint;
2269 char *actparm;
2270 char *packet = own_buf;
2271
2272 packet += strlen ("QTDP:");
2273
2274 /* A hyphen at the beginning marks a packet specifying actions for a
2275 tracepoint already supplied. */
2276 tppacket = 1;
2277 if (*packet == '-')
2278 {
2279 tppacket = 0;
2280 ++packet;
2281 }
2282 packet = unpack_varlen_hex (packet, &num);
2283 ++packet; /* skip a colon */
2284 packet = unpack_varlen_hex (packet, &addr);
2285 ++packet; /* skip a colon */
2286
2287 /* See if we already have this tracepoint. */
2288 tpoint = find_tracepoint (num, addr);
2289
2290 if (tppacket)
2291 {
2292 /* Duplicate tracepoints are never allowed. */
2293 if (tpoint)
2294 {
2295 trace_debug ("Tracepoint error: tracepoint %d"
2296 " at 0x%s already exists",
2297 (int) num, paddress (addr));
2298 write_enn (own_buf);
2299 return;
2300 }
2301
2302 tpoint = add_tracepoint (num, addr);
2303
2304 tpoint->enabled = (*packet == 'E');
2305 ++packet; /* skip 'E' */
2306 ++packet; /* skip a colon */
2307 packet = unpack_varlen_hex (packet, &count);
2308 tpoint->step_count = count;
2309 ++packet; /* skip a colon */
2310 packet = unpack_varlen_hex (packet, &count);
2311 tpoint->pass_count = count;
2312 /* See if we have any of the additional optional fields. */
2313 while (*packet == ':')
2314 {
2315 ++packet;
fa593d66
PA
2316 if (*packet == 'F')
2317 {
2318 tpoint->type = fast_tracepoint;
2319 ++packet;
2320 packet = unpack_varlen_hex (packet, &count);
2321 tpoint->orig_size = count;
2322 }
0fb4aa4b
PA
2323 else if (*packet == 'S')
2324 {
2325 tpoint->type = static_tracepoint;
2326 ++packet;
2327 }
fa593d66 2328 else if (*packet == 'X')
219f2f23
PA
2329 {
2330 actparm = (char *) packet;
2331 tpoint->cond = parse_agent_expr (&actparm);
2332 packet = actparm;
2333 }
2334 else if (*packet == '-')
2335 break;
2336 else if (*packet == '\0')
2337 break;
2338 else
2339 trace_debug ("Unknown optional tracepoint field");
2340 }
2341 if (*packet == '-')
2342 trace_debug ("Also has actions\n");
2343
fa593d66 2344 trace_debug ("Defined %stracepoint %d at 0x%s, "
219f2f23 2345 "enabled %d step %ld pass %ld",
fa593d66
PA
2346 tpoint->type == fast_tracepoint ? "fast "
2347 : "",
2348 tpoint->number, paddress (tpoint->address), tpoint->enabled,
219f2f23
PA
2349 tpoint->step_count, tpoint->pass_count);
2350 }
2351 else if (tpoint)
2352 add_tracepoint_action (tpoint, packet);
2353 else
2354 {
2355 trace_debug ("Tracepoint error: tracepoint %d at 0x%s not found",
2356 (int) num, paddress (addr));
2357 write_enn (own_buf);
2358 return;
2359 }
2360
2361 write_ok (own_buf);
2362}
2363
2364static void
2365cmd_qtdpsrc (char *own_buf)
2366{
2367 ULONGEST num, addr, start, slen;
2368 struct tracepoint *tpoint;
2369 char *packet = own_buf;
2370 char *saved, *srctype, *src;
2371 size_t nbytes;
2372 struct source_string *last, *newlast;
2373
2374 packet += strlen ("QTDPsrc:");
2375
2376 packet = unpack_varlen_hex (packet, &num);
2377 ++packet; /* skip a colon */
2378 packet = unpack_varlen_hex (packet, &addr);
2379 ++packet; /* skip a colon */
2380
2381 /* See if we already have this tracepoint. */
2382 tpoint = find_tracepoint (num, addr);
2383
2384 if (!tpoint)
2385 {
2386 trace_debug ("Tracepoint error: tracepoint %d at 0x%s not found",
2387 (int) num, paddress (addr));
2388 write_enn (own_buf);
2389 return;
2390 }
2391
2392 saved = packet;
2393 packet = strchr (packet, ':');
2394 srctype = xmalloc (packet - saved + 1);
2395 memcpy (srctype, saved, packet - saved);
2396 srctype[packet - saved] = '\0';
2397 ++packet;
2398 packet = unpack_varlen_hex (packet, &start);
2399 ++packet; /* skip a colon */
2400 packet = unpack_varlen_hex (packet, &slen);
2401 ++packet; /* skip a colon */
2402 src = xmalloc (slen + 1);
2403 nbytes = unhexify (src, packet, strlen (packet) / 2);
2404 src[nbytes] = '\0';
2405
2406 newlast = xmalloc (sizeof (struct source_string));
2407 newlast->type = srctype;
2408 newlast->str = src;
2409 newlast->next = NULL;
2410 /* Always add a source string to the end of the list;
2411 this keeps sequences of actions/commands in the right
2412 order. */
2413 if (tpoint->source_strings)
2414 {
2415 for (last = tpoint->source_strings; last->next; last = last->next)
2416 ;
2417 last->next = newlast;
2418 }
2419 else
2420 tpoint->source_strings = newlast;
2421
2422 write_ok (own_buf);
2423}
2424
2425static void
2426cmd_qtdv (char *own_buf)
2427{
2428 ULONGEST num, val, builtin;
2429 char *varname;
2430 size_t nbytes;
2431 struct trace_state_variable *tsv;
2432 char *packet = own_buf;
2433
2434 packet += strlen ("QTDV:");
2435
2436 packet = unpack_varlen_hex (packet, &num);
2437 ++packet; /* skip a colon */
2438 packet = unpack_varlen_hex (packet, &val);
2439 ++packet; /* skip a colon */
2440 packet = unpack_varlen_hex (packet, &builtin);
2441 ++packet; /* skip a colon */
2442
2443 nbytes = strlen (packet) / 2;
2444 varname = xmalloc (nbytes + 1);
2445 nbytes = unhexify (varname, packet, nbytes);
2446 varname[nbytes] = '\0';
2447
fa593d66 2448 tsv = create_trace_state_variable (num, 1);
219f2f23
PA
2449 tsv->initial_value = (LONGEST) val;
2450 tsv->name = varname;
2451
2452 set_trace_state_variable_value (num, (LONGEST) val);
2453
2454 write_ok (own_buf);
2455}
2456
2457static void
2458cmd_qtv (char *own_buf)
2459{
2460 ULONGEST num;
2461 LONGEST val;
2462 int err;
2463 char *packet = own_buf;
2464
2465 packet += strlen ("qTV:");
f8f67713 2466 unpack_varlen_hex (packet, &num);
219f2f23
PA
2467
2468 if (current_traceframe >= 0)
2469 {
2470 err = traceframe_read_tsv ((int) num, &val);
2471 if (err)
2472 {
2473 strcpy (own_buf, "U");
2474 return;
2475 }
2476 }
2477 /* Only make tsv's be undefined before the first trace run. After a
2478 trace run is over, the user might want to see the last value of
2479 the tsv, and it might not be available in a traceframe. */
2480 else if (!tracing && strcmp (tracing_stop_reason, "tnotrun") == 0)
2481 {
2482 strcpy (own_buf, "U");
2483 return;
2484 }
2485 else
2486 val = get_trace_state_variable_value (num);
2487
2488 sprintf (own_buf, "V%s", phex_nz (val, 0));
2489}
2490
2491/* Clear out the list of readonly regions. */
2492
2493static void
2494clear_readonly_regions (void)
2495{
2496 struct readonly_region *roreg;
2497
2498 while (readonly_regions)
2499 {
2500 roreg = readonly_regions;
2501 readonly_regions = readonly_regions->next;
2502 free (roreg);
2503 }
2504}
2505
2506/* Parse the collection of address ranges whose contents GDB believes
2507 to be unchanging and so can be read directly from target memory
2508 even while looking at a traceframe. */
2509
2510static void
2511cmd_qtro (char *own_buf)
2512{
2513 ULONGEST start, end;
2514 struct readonly_region *roreg;
2515 char *packet = own_buf;
2516
2517 trace_debug ("Want to mark readonly regions");
2518
2519 clear_readonly_regions ();
2520
2521 packet += strlen ("QTro");
2522
2523 while (*packet == ':')
2524 {
2525 ++packet; /* skip a colon */
2526 packet = unpack_varlen_hex (packet, &start);
2527 ++packet; /* skip a comma */
2528 packet = unpack_varlen_hex (packet, &end);
2529 roreg = xmalloc (sizeof (struct readonly_region));
2530 roreg->start = start;
2531 roreg->end = end;
2532 roreg->next = readonly_regions;
2533 readonly_regions = roreg;
2534 trace_debug ("Added readonly region from 0x%s to 0x%s",
2535 paddress (roreg->start), paddress (roreg->end));
2536 }
2537
2538 write_ok (own_buf);
2539}
2540
2541/* Test to see if the given range is in our list of readonly ranges.
2542 We only test for being entirely within a range, GDB is not going to
2543 send a single memory packet that spans multiple regions. */
2544
2545int
2546in_readonly_region (CORE_ADDR addr, ULONGEST length)
2547{
2548 struct readonly_region *roreg;
2549
2550 for (roreg = readonly_regions; roreg; roreg = roreg->next)
2551 if (roreg->start <= addr && (addr + length - 1) <= roreg->end)
2552 return 1;
2553
2554 return 0;
2555}
2556
fa593d66
PA
2557/* The maximum size of a jump pad entry. */
2558static const int max_jump_pad_size = 0x100;
2559
2560static CORE_ADDR gdb_jump_pad_head;
2561
2562/* Return the address of the next free jump space. */
2563
2564static CORE_ADDR
2565get_jump_space_head (void)
2566{
2567 if (gdb_jump_pad_head == 0)
2568 {
2569 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_jump_pad_buffer,
2570 &gdb_jump_pad_head))
2571 fatal ("error extracting jump_pad_buffer");
2572 }
2573
2574 return gdb_jump_pad_head;
2575}
2576
2577/* Reserve USED bytes from the jump space. */
2578
2579static void
2580claim_jump_space (ULONGEST used)
2581{
2582 trace_debug ("claim_jump_space reserves %s bytes at %s",
2583 pulongest (used), paddress (gdb_jump_pad_head));
2584 gdb_jump_pad_head += used;
2585}
2586
2587/* Sort tracepoints by PC, using a bubble sort. */
2588
2589static void
2590sort_tracepoints (void)
2591{
2592 struct tracepoint *lst, *tmp, *prev = NULL;
2593 int i, j, n = 0;
2594
2595 if (tracepoints == NULL)
2596 return;
2597
2598 /* Count nodes. */
2599 for (tmp = tracepoints; tmp->next; tmp = tmp->next)
2600 n++;
2601
2602 for (i = 0; i < n - 1; i++)
2603 for (j = 0, lst = tracepoints;
2604 lst && lst->next && (j <= n - 1 - i);
2605 j++)
2606 {
2607 /* If we're at beginning, the start node is the prev
2608 node. */
2609 if (j == 0)
2610 prev = lst;
2611
2612 /* Compare neighbors. */
2613 if (lst->next->address < lst->address)
2614 {
2615 struct tracepoint *p;
2616
2617 /* Swap'em. */
2618 tmp = (lst->next ? lst->next->next : NULL);
2619
2620 if (j == 0 && prev == tracepoints)
2621 tracepoints = lst->next;
2622
2623 p = lst->next;
2624 prev->next = lst->next;
2625 lst->next->next = lst;
2626 lst->next = tmp;
2627 prev = p;
2628 }
2629 else
2630 {
2631 lst = lst->next;
2632 /* Keep track of the previous node. We need it if we need
2633 to swap nodes. */
2634 if (j != 0)
2635 prev = prev->next;
2636 }
2637 }
2638}
2639
0fb4aa4b
PA
2640/* Ask the IPA to probe the marker at ADDRESS. Returns -1 if running
2641 the command fails, or 0 otherwise. If the command ran
2642 successfully, but probing the marker failed, ERROUT will be filled
2643 with the error to reply to GDB, and -1 is also returned. This
2644 allows directly passing IPA errors to GDB. */
2645
2646static int
2647probe_marker_at (CORE_ADDR address, char *errout)
2648{
2649 char cmd[CMD_BUF_SIZE];
2650 int err;
2651
2652 sprintf (cmd, "probe_marker_at:%s", paddress (address));
2653 err = run_inferior_command (cmd);
2654
2655 if (err == 0)
2656 {
2657 if (*cmd == 'E')
2658 {
2659 strcpy (errout, cmd);
2660 return -1;
2661 }
2662 }
2663
2664 return err;
2665}
2666
fa593d66
PA
2667#define MAX_JUMP_SIZE 20
2668
219f2f23
PA
2669static void
2670cmd_qtstart (char *packet)
2671{
0fb4aa4b 2672 struct tracepoint *tpoint, *prev_ftpoint, *prev_stpoint;
fa593d66
PA
2673 int slow_tracepoint_count, fast_count;
2674 CORE_ADDR jump_entry;
2675
2676 /* The jump to the jump pad of the last fast tracepoint
2677 installed. */
2678 unsigned char fjump[MAX_JUMP_SIZE];
2679 ULONGEST fjump_size;
219f2f23
PA
2680
2681 trace_debug ("Starting the trace");
2682
fa593d66 2683 slow_tracepoint_count = fast_count = 0;
219f2f23 2684
fa593d66
PA
2685 /* Sort tracepoints by ascending address. This makes installing
2686 fast tracepoints at the same address easier to handle. */
2687 sort_tracepoints ();
219f2f23 2688
7984d532 2689 /* Pause all threads temporarily while we patch tracepoints. */
fa593d66
PA
2690 pause_all (0);
2691
2692 /* Get threads out of jump pads. Safe to do here, since this is a
2693 top level command. And, required to do here, since we're
2694 deleting/rewriting jump pads. */
2695
2696 stabilize_threads ();
2697
2698 /* Freeze threads. */
7984d532
PA
2699 pause_all (1);
2700
fa593d66
PA
2701 /* Sync the fast tracepoints list in the inferior ftlib. */
2702 if (in_process_agent_loaded ())
2703 {
2704 download_tracepoints ();
2705 download_trace_state_variables ();
2706 }
2707
2708 /* No previous fast tpoint yet. */
2709 prev_ftpoint = NULL;
2710
0fb4aa4b
PA
2711 /* No previous static tpoint yet. */
2712 prev_stpoint = NULL;
2713
fa593d66
PA
2714 *packet = '\0';
2715
219f2f23
PA
2716 /* Install tracepoints. */
2717 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
2718 {
2719 /* Ensure all the hit counts start at zero. */
2720 tpoint->hit_count = 0;
2721
2722 if (!tpoint->enabled)
2723 continue;
2724
fa593d66
PA
2725 if (tpoint->type == trap_tracepoint)
2726 {
2727 ++slow_tracepoint_count;
2728
2729 /* Tracepoints are installed as memory breakpoints. Just go
2730 ahead and install the trap. The breakpoints module
2731 handles duplicated breakpoints, and the memory read
2732 routine handles un-patching traps from memory reads. */
2733 tpoint->handle = set_breakpoint_at (tpoint->address,
2734 tracepoint_handler);
2735 }
2736 else if (tpoint->type == fast_tracepoint)
2737 {
2738 ++fast_count;
2739
2740 if (maybe_write_ipa_not_loaded (packet))
2741 {
2742 trace_debug ("Requested a fast tracepoint, but fast "
2743 "tracepoints aren't supported.");
2744 break;
2745 }
2746
2747 if (prev_ftpoint != NULL && prev_ftpoint->address == tpoint->address)
2748 {
2749 tpoint->handle = set_fast_tracepoint_jump (tpoint->address,
2750 fjump,
2751 fjump_size);
2752 tpoint->jump_pad = prev_ftpoint->jump_pad;
2753 tpoint->jump_pad_end = prev_ftpoint->jump_pad_end;
2754 tpoint->adjusted_insn_addr = prev_ftpoint->adjusted_insn_addr;
2755 tpoint->adjusted_insn_addr_end
2756 = prev_ftpoint->adjusted_insn_addr_end;
2757 }
2758 else
2759 {
2760 CORE_ADDR jentry;
2761 int err = 0;
2762
2763 prev_ftpoint = NULL;
2764
2765 jentry = jump_entry = get_jump_space_head ();
2766
2767 /* Install the jump pad. */
2768 err = install_fast_tracepoint_jump_pad
2769 (tpoint->obj_addr_on_target,
2770 tpoint->address,
2771 ipa_sym_addrs.addr_gdb_collect,
2772 ipa_sym_addrs.addr_collecting,
2773 tpoint->orig_size,
2774 &jentry,
2775 fjump, &fjump_size,
2776 &tpoint->adjusted_insn_addr,
2777 &tpoint->adjusted_insn_addr_end);
2778
2779 /* Wire it in. */
2780 if (!err)
2781 tpoint->handle = set_fast_tracepoint_jump (tpoint->address,
2782 fjump, fjump_size);
2783
2784 if (tpoint->handle != NULL)
2785 {
2786 tpoint->jump_pad = jump_entry;
2787 tpoint->jump_pad_end = jentry;
219f2f23 2788
fa593d66
PA
2789 /* Pad to 8-byte alignment. */
2790 jentry = ((jentry + 7) & ~0x7);
2791 claim_jump_space (jentry - jump_entry);
219f2f23 2792
fa593d66
PA
2793 /* So that we can handle multiple fast tracepoints
2794 at the same address easily. */
2795 prev_ftpoint = tpoint;
2796 }
2797 }
2798 }
0fb4aa4b
PA
2799 else if (tpoint->type == static_tracepoint)
2800 {
2801 if (maybe_write_ipa_ust_not_loaded (packet))
2802 {
2803 trace_debug ("Requested a static tracepoint, but static "
2804 "tracepoints are not supported.");
2805 break;
2806 }
2807
2808 /* Can only probe a given marker once. */
2809 if (prev_stpoint != NULL && prev_stpoint->address == tpoint->address)
2810 {
2811 tpoint->handle = (void *) -1;
2812 }
2813 else
2814 {
2815 if (probe_marker_at (tpoint->address, packet) == 0)
2816 {
2817 tpoint->handle = (void *) -1;
2818
2819 /* So that we can handle multiple static tracepoints
2820 at the same address easily. */
2821 prev_stpoint = tpoint;
2822 }
2823 }
2824 }
fa593d66
PA
2825
2826 /* Any failure in the inner loop is sufficient cause to give
2827 up. */
219f2f23
PA
2828 if (tpoint->handle == NULL)
2829 break;
2830 }
2831
2832 /* Any error in tracepoint insertion is unacceptable; better to
2833 address the problem now, than end up with a useless or misleading
2834 trace run. */
2835 if (tpoint != NULL)
2836 {
2837 clear_installed_tracepoints ();
2838 if (*packet == '\0')
2839 write_enn (packet);
7984d532 2840 unpause_all (1);
219f2f23
PA
2841 return;
2842 }
2843
2844 stopping_tracepoint = NULL;
2845 trace_buffer_is_full = 0;
2846 expr_eval_result = expr_eval_no_error;
2847 error_tracepoint = NULL;
2848
2849 /* Tracing is now active, hits will now start being logged. */
2850 tracing = 1;
2851
fa593d66
PA
2852 if (in_process_agent_loaded ())
2853 {
2854 if (write_inferior_integer (ipa_sym_addrs.addr_tracing, 1))
2855 fatal ("Error setting tracing variable in lib");
2856
2857 if (write_inferior_data_pointer (ipa_sym_addrs.addr_stopping_tracepoint,
2858 0))
2859 fatal ("Error clearing stopping_tracepoint variable in lib");
2860
2861 if (write_inferior_integer (ipa_sym_addrs.addr_trace_buffer_is_full, 0))
2862 fatal ("Error clearing trace_buffer_is_full variable in lib");
2863
2864 stop_tracing_bkpt = set_breakpoint_at (ipa_sym_addrs.addr_stop_tracing,
2865 stop_tracing_handler);
2866 if (stop_tracing_bkpt == NULL)
2867 error ("Error setting stop_tracing breakpoint");
2868
2869 flush_trace_buffer_bkpt
2870 = set_breakpoint_at (ipa_sym_addrs.addr_flush_trace_buffer,
2871 flush_trace_buffer_handler);
2872 if (flush_trace_buffer_bkpt == NULL)
2873 error ("Error setting flush_trace_buffer breakpoint");
2874 }
2875
7984d532
PA
2876 unpause_all (1);
2877
219f2f23
PA
2878 write_ok (packet);
2879}
2880
2881/* End a tracing run, filling in a stop reason to report back to GDB,
2882 and removing the tracepoints from the code. */
2883
8336d594 2884void
219f2f23
PA
2885stop_tracing (void)
2886{
2887 if (!tracing)
2888 {
2889 trace_debug ("Tracing is already off, ignoring");
2890 return;
2891 }
2892
2893 trace_debug ("Stopping the trace");
2894
fa593d66
PA
2895 /* Pause all threads before removing fast jumps from memory,
2896 breakpoints, and touching IPA state variables (inferior memory).
2897 Some thread may hit the internal tracing breakpoints, or be
2898 collecting this moment, but that's ok, we don't release the
2899 tpoint object's memory or the jump pads here (we only do that
2900 when we're sure we can move all threads out of the jump pads).
2901 We can't now, since we may be getting here due to the inferior
2902 agent calling us. */
7984d532
PA
2903 pause_all (1);
2904 /* Since we're removing breakpoints, cancel breakpoint hits,
2905 possibly related to the breakpoints we're about to delete. */
2906 cancel_breakpoints ();
2907
219f2f23
PA
2908 /* Stop logging. Tracepoints can still be hit, but they will not be
2909 recorded. */
2910 tracing = 0;
fa593d66
PA
2911 if (in_process_agent_loaded ())
2912 {
2913 if (write_inferior_integer (ipa_sym_addrs.addr_tracing, 0))
2914 fatal ("Error clearing tracing variable in lib");
2915 }
219f2f23
PA
2916
2917 tracing_stop_reason = "t???";
2918 tracing_stop_tpnum = 0;
2919 if (stopping_tracepoint)
2920 {
2921 trace_debug ("Stopping the trace because "
2922 "tracepoint %d was hit %ld times",
2923 stopping_tracepoint->number,
2924 stopping_tracepoint->pass_count);
2925 tracing_stop_reason = "tpasscount";
2926 tracing_stop_tpnum = stopping_tracepoint->number;
2927 }
2928 else if (trace_buffer_is_full)
2929 {
2930 trace_debug ("Stopping the trace because the trace buffer is full");
2931 tracing_stop_reason = "tfull";
2932 }
2933 else if (expr_eval_result != expr_eval_no_error)
2934 {
2935 trace_debug ("Stopping the trace because of an expression eval error");
2936 tracing_stop_reason = eval_result_names[expr_eval_result];
2937 tracing_stop_tpnum = error_tracepoint->number;
2938 }
fa593d66 2939#ifndef IN_PROCESS_AGENT
8336d594
PA
2940 else if (!gdb_connected ())
2941 {
2942 trace_debug ("Stopping the trace because GDB disconnected");
2943 tracing_stop_reason = "tdisconnected";
2944 }
fa593d66 2945#endif
219f2f23
PA
2946 else
2947 {
2948 trace_debug ("Stopping the trace because of a tstop command");
2949 tracing_stop_reason = "tstop";
2950 }
2951
2952 stopping_tracepoint = NULL;
2953 error_tracepoint = NULL;
2954
2955 /* Clear out the tracepoints. */
2956 clear_installed_tracepoints ();
7984d532 2957
fa593d66
PA
2958 if (in_process_agent_loaded ())
2959 {
2960 /* Pull in fast tracepoint trace frames from the inferior lib
2961 buffer into our buffer, even if our buffer is already full,
2962 because we want to present the full number of created frames
2963 in addition to what fit in the trace buffer. */
2964 upload_fast_traceframes ();
2965 }
2966
2967 if (stop_tracing_bkpt != NULL)
2968 {
2969 delete_breakpoint (stop_tracing_bkpt);
2970 stop_tracing_bkpt = NULL;
2971 }
2972
2973 if (flush_trace_buffer_bkpt != NULL)
2974 {
2975 delete_breakpoint (flush_trace_buffer_bkpt);
2976 flush_trace_buffer_bkpt = NULL;
2977 }
2978
7984d532 2979 unpause_all (1);
219f2f23
PA
2980}
2981
fa593d66
PA
2982static int
2983stop_tracing_handler (CORE_ADDR addr)
2984{
2985 trace_debug ("lib hit stop_tracing");
2986
2987 /* Don't actually handle it here. When we stop tracing we remove
2988 breakpoints from the inferior, and that is not allowed in a
2989 breakpoint handler (as the caller is walking the breakpoint
2990 list). */
2991 return 0;
2992}
2993
2994static int
2995flush_trace_buffer_handler (CORE_ADDR addr)
2996{
2997 trace_debug ("lib hit flush_trace_buffer");
2998 return 0;
2999}
3000
219f2f23
PA
3001static void
3002cmd_qtstop (char *packet)
3003{
3004 stop_tracing ();
3005 write_ok (packet);
3006}
3007
8336d594
PA
3008static void
3009cmd_qtdisconnected (char *own_buf)
3010{
3011 ULONGEST setting;
3012 char *packet = own_buf;
3013
3014 packet += strlen ("QTDisconnected:");
3015
3016 unpack_varlen_hex (packet, &setting);
3017
3018 write_ok (own_buf);
3019
3020 disconnected_tracing = setting;
3021}
3022
219f2f23
PA
3023static void
3024cmd_qtframe (char *own_buf)
3025{
3026 ULONGEST frame, pc, lo, hi, num;
3027 int tfnum, tpnum;
3028 struct traceframe *tframe;
3029 char *packet = own_buf;
3030
3031 packet += strlen ("QTFrame:");
3032
3033 if (strncmp (packet, "pc:", strlen ("pc:")) == 0)
3034 {
3035 packet += strlen ("pc:");
f8f67713 3036 unpack_varlen_hex (packet, &pc);
219f2f23
PA
3037 trace_debug ("Want to find next traceframe at pc=0x%s", paddress (pc));
3038 tframe = find_next_traceframe_in_range (pc, pc, 1, &tfnum);
3039 }
3040 else if (strncmp (packet, "range:", strlen ("range:")) == 0)
3041 {
3042 packet += strlen ("range:");
3043 packet = unpack_varlen_hex (packet, &lo);
3044 ++packet;
f8f67713 3045 unpack_varlen_hex (packet, &hi);
219f2f23
PA
3046 trace_debug ("Want to find next traceframe in the range 0x%s to 0x%s",
3047 paddress (lo), paddress (hi));
3048 tframe = find_next_traceframe_in_range (lo, hi, 1, &tfnum);
3049 }
3050 else if (strncmp (packet, "outside:", strlen ("outside:")) == 0)
3051 {
3052 packet += strlen ("outside:");
3053 packet = unpack_varlen_hex (packet, &lo);
3054 ++packet;
f8f67713 3055 unpack_varlen_hex (packet, &hi);
219f2f23
PA
3056 trace_debug ("Want to find next traceframe "
3057 "outside the range 0x%s to 0x%s",
3058 paddress (lo), paddress (hi));
3059 tframe = find_next_traceframe_in_range (lo, hi, 0, &tfnum);
3060 }
3061 else if (strncmp (packet, "tdp:", strlen ("tdp:")) == 0)
3062 {
3063 packet += strlen ("tdp:");
f8f67713 3064 unpack_varlen_hex (packet, &num);
219f2f23
PA
3065 tpnum = (int) num;
3066 trace_debug ("Want to find next traceframe for tracepoint %d", tpnum);
3067 tframe = find_next_traceframe_by_tracepoint (tpnum, &tfnum);
3068 }
3069 else
3070 {
3071 unpack_varlen_hex (packet, &frame);
3072 tfnum = (int) frame;
3073 if (tfnum == -1)
3074 {
3075 trace_debug ("Want to stop looking at traceframes");
3076 current_traceframe = -1;
3077 write_ok (own_buf);
3078 return;
3079 }
3080 trace_debug ("Want to look at traceframe %d", tfnum);
3081 tframe = find_traceframe (tfnum);
3082 }
3083
3084 if (tframe)
3085 {
3086 current_traceframe = tfnum;
3087 sprintf (own_buf, "F%xT%x", tfnum, tframe->tpnum);
3088 }
3089 else
3090 sprintf (own_buf, "F-1");
3091}
3092
3093static void
3094cmd_qtstatus (char *packet)
3095{
3096 char *stop_reason_rsp = NULL;
3097
3098 trace_debug ("Returning trace status as %d, stop reason %s",
3099 tracing, tracing_stop_reason);
3100
fa593d66
PA
3101 if (in_process_agent_loaded ())
3102 {
3103 pause_all (1);
3104
3105 upload_fast_traceframes ();
3106
3107 unpause_all (1);
3108 }
3109
219f2f23
PA
3110 stop_reason_rsp = (char *) tracing_stop_reason;
3111
3112 /* The user visible error string in terror needs to be hex encoded.
3113 We leave it as plain string in `tracepoint_stop_reason' to ease
3114 debugging. */
3115 if (strncmp (stop_reason_rsp, "terror:", strlen ("terror:")) == 0)
3116 {
3117 const char *result_name;
3118 int hexstr_len;
3119 char *p;
3120
3121 result_name = stop_reason_rsp + strlen ("terror:");
3122 hexstr_len = strlen (result_name) * 2;
3123 p = stop_reason_rsp = alloca (strlen ("terror:") + hexstr_len + 1);
3124 strcpy (p, "terror:");
3125 p += strlen (p);
3126 convert_int_to_ascii ((gdb_byte *) result_name, p, strlen (result_name));
3127 }
3128
8336d594
PA
3129 sprintf (packet,
3130 "T%d;"
3131 "%s:%x;"
3132 "tframes:%x;tcreated:%x;"
3133 "tfree:%x;tsize:%s;"
3134 "circular:%d;"
3135 "disconn:%d",
623ccd72 3136 tracing ? 1 : 0,
219f2f23
PA
3137 stop_reason_rsp, tracing_stop_tpnum,
3138 traceframe_count, traceframes_created,
8336d594
PA
3139 free_space (), phex_nz (trace_buffer_hi - trace_buffer_lo, 0),
3140 circular_trace_buffer,
3141 disconnected_tracing);
219f2f23
PA
3142}
3143
3144/* State variables to help return all the tracepoint bits. */
3145static struct tracepoint *cur_tpoint;
3146static int cur_action;
3147static int cur_step_action;
3148static struct source_string *cur_source_string;
3149static struct trace_state_variable *cur_tsv;
3150
3151/* Compose a response that is an imitation of the syntax by which the
3152 tracepoint was originally downloaded. */
3153
3154static void
3155response_tracepoint (char *packet, struct tracepoint *tpoint)
3156{
3157 char *buf;
3158
3159 sprintf (packet, "T%x:%s:%c:%lx:%lx", tpoint->number,
3160 paddress (tpoint->address),
3161 (tpoint->enabled ? 'E' : 'D'), tpoint->step_count,
3162 tpoint->pass_count);
fa593d66
PA
3163 if (tpoint->type == fast_tracepoint)
3164 sprintf (packet + strlen (packet), ":F%x", tpoint->orig_size);
0fb4aa4b
PA
3165 else if (tpoint->type == static_tracepoint)
3166 sprintf (packet + strlen (packet), ":S");
219f2f23
PA
3167
3168 if (tpoint->cond)
3169 {
3170 buf = unparse_agent_expr (tpoint->cond);
3171 sprintf (packet + strlen (packet), ":X%x,%s",
3172 tpoint->cond->length, buf);
3173 free (buf);
3174 }
3175}
3176
3177/* Compose a response that is an imitation of the syntax by which the
3178 tracepoint action was originally downloaded (with the difference
3179 that due to the way we store the actions, this will output a packet
3180 per action, while GDB could have combined more than one action
3181 per-packet. */
3182
3183static void
3184response_action (char *packet, struct tracepoint *tpoint,
3185 char *taction, int step)
3186{
3187 sprintf (packet, "%c%x:%s:%s",
3188 (step ? 'S' : 'A'), tpoint->number, paddress (tpoint->address),
3189 taction);
3190}
3191
3192/* Compose a response that is an imitation of the syntax by which the
3193 tracepoint source piece was originally downloaded. */
3194
3195static void
3196response_source (char *packet,
3197 struct tracepoint *tpoint, struct source_string *src)
3198{
3199 char *buf;
3200 int len;
3201
3202 len = strlen (src->str);
3203 buf = alloca (len * 2 + 1);
3204 convert_int_to_ascii ((gdb_byte *) src->str, buf, len);
3205
3206 sprintf (packet, "Z%x:%s:%s:%x:%x:%s",
3207 tpoint->number, paddress (tpoint->address),
3208 src->type, 0, len, buf);
3209}
3210
3211/* Return the first piece of tracepoint definition, and initialize the
3212 state machine that will iterate through all the tracepoint
3213 bits. */
3214
3215static void
3216cmd_qtfp (char *packet)
3217{
3218 trace_debug ("Returning first tracepoint definition piece");
3219
3220 cur_tpoint = tracepoints;
3221 cur_action = cur_step_action = -1;
3222 cur_source_string = NULL;
3223
3224 if (cur_tpoint)
3225 response_tracepoint (packet, cur_tpoint);
3226 else
3227 strcpy (packet, "l");
3228}
3229
3230/* Return additional pieces of tracepoint definition. Each action and
3231 stepping action must go into its own packet, because of packet size
3232 limits, and so we use state variables to deliver one piece at a
3233 time. */
3234
3235static void
3236cmd_qtsp (char *packet)
3237{
3238 trace_debug ("Returning subsequent tracepoint definition piece");
3239
3240 if (!cur_tpoint)
3241 {
3242 /* This case would normally never occur, but be prepared for
3243 GDB misbehavior. */
3244 strcpy (packet, "l");
3245 }
3246 else if (cur_action < cur_tpoint->numactions - 1)
3247 {
3248 ++cur_action;
3249 response_action (packet, cur_tpoint,
3250 cur_tpoint->actions_str[cur_action], 0);
3251 }
3252 else if (cur_step_action < cur_tpoint->num_step_actions - 1)
3253 {
3254 ++cur_step_action;
3255 response_action (packet, cur_tpoint,
3256 cur_tpoint->step_actions_str[cur_step_action], 1);
3257 }
3258 else if ((cur_source_string
3259 ? cur_source_string->next
3260 : cur_tpoint->source_strings))
3261 {
3262 if (cur_source_string)
3263 cur_source_string = cur_source_string->next;
3264 else
3265 cur_source_string = cur_tpoint->source_strings;
3266 response_source (packet, cur_tpoint, cur_source_string);
3267 }
3268 else
3269 {
3270 cur_tpoint = cur_tpoint->next;
3271 cur_action = cur_step_action = -1;
3272 cur_source_string = NULL;
3273 if (cur_tpoint)
3274 response_tracepoint (packet, cur_tpoint);
3275 else
3276 strcpy (packet, "l");
3277 }
3278}
3279
3280/* Compose a response that is an imitation of the syntax by which the
3281 trace state variable was originally downloaded. */
3282
3283static void
3284response_tsv (char *packet, struct trace_state_variable *tsv)
3285{
3286 char *buf = (char *) "";
3287 int namelen;
3288
3289 if (tsv->name)
3290 {
3291 namelen = strlen (tsv->name);
3292 buf = alloca (namelen * 2 + 1);
3293 convert_int_to_ascii ((gdb_byte *) tsv->name, buf, namelen);
3294 }
3295
3296 sprintf (packet, "%x:%s:%x:%s", tsv->number, phex_nz (tsv->initial_value, 0),
3297 tsv->getter ? 1 : 0, buf);
3298}
3299
3300/* Return the first trace state variable definition, and initialize
3301 the state machine that will iterate through all the tsv bits. */
3302
3303static void
3304cmd_qtfv (char *packet)
3305{
3306 trace_debug ("Returning first trace state variable definition");
3307
3308 cur_tsv = trace_state_variables;
3309
3310 if (cur_tsv)
3311 response_tsv (packet, cur_tsv);
3312 else
3313 strcpy (packet, "l");
3314}
3315
3316/* Return additional trace state variable definitions. */
3317
3318static void
3319cmd_qtsv (char *packet)
3320{
3321 trace_debug ("Returning first trace state variable definition");
3322
3323 if (!cur_tpoint)
3324 {
3325 /* This case would normally never occur, but be prepared for
3326 GDB misbehavior. */
3327 strcpy (packet, "l");
3328 }
3329 else if (cur_tsv)
3330 {
3331 cur_tsv = cur_tsv->next;
3332 if (cur_tsv)
3333 response_tsv (packet, cur_tsv);
3334 else
3335 strcpy (packet, "l");
3336 }
3337 else
3338 strcpy (packet, "l");
3339}
3340
0fb4aa4b
PA
3341/* Return the first static tracepoint marker, and initialize the state
3342 machine that will iterate through all the static tracepoints
3343 markers. */
3344
3345static void
3346cmd_qtfstm (char *packet)
3347{
3348 if (!maybe_write_ipa_ust_not_loaded (packet))
3349 run_inferior_command (packet);
3350}
3351
3352/* Return additional static tracepoints markers. */
3353
3354static void
3355cmd_qtsstm (char *packet)
3356{
3357 if (!maybe_write_ipa_ust_not_loaded (packet))
3358 run_inferior_command (packet);
3359}
3360
3361/* Return the definition of the static tracepoint at a given address.
3362 Result packet is the same as qTsST's. */
3363
3364static void
3365cmd_qtstmat (char *packet)
3366{
3367 if (!maybe_write_ipa_ust_not_loaded (packet))
3368 run_inferior_command (packet);
3369}
3370
219f2f23
PA
3371/* Respond to qTBuffer packet with a block of raw data from the trace
3372 buffer. GDB may ask for a lot, but we are allowed to reply with
3373 only as much as will fit within packet limits or whatever. */
3374
3375static void
3376cmd_qtbuffer (char *own_buf)
3377{
3378 ULONGEST offset, num, tot;
3379 unsigned char *tbp;
3380 char *packet = own_buf;
3381
3382 packet += strlen ("qTBuffer:");
3383
3384 packet = unpack_varlen_hex (packet, &offset);
3385 ++packet; /* skip a comma */
f8f67713 3386 unpack_varlen_hex (packet, &num);
219f2f23
PA
3387
3388 trace_debug ("Want to get trace buffer, %d bytes at offset 0x%s",
3389 (int) num, pulongest (offset));
3390
3391 tot = (trace_buffer_hi - trace_buffer_lo) - free_space ();
3392
3393 /* If we're right at the end, reply specially that we're done. */
3394 if (offset == tot)
3395 {
3396 strcpy (own_buf, "l");
3397 return;
3398 }
3399
3400 /* Object to any other out-of-bounds request. */
3401 if (offset > tot)
3402 {
3403 write_enn (own_buf);
3404 return;
3405 }
3406
3407 /* Compute the pointer corresponding to the given offset, accounting
3408 for wraparound. */
3409 tbp = trace_buffer_start + offset;
3410 if (tbp >= trace_buffer_wrap)
3411 tbp -= (trace_buffer_wrap - trace_buffer_lo);
3412
3413 /* Trim to the remaining bytes if we're close to the end. */
3414 if (num > tot - offset)
3415 num = tot - offset;
3416
3417 /* Trim to available packet size. */
3418 if (num >= (PBUFSIZ - 16) / 2 )
3419 num = (PBUFSIZ - 16) / 2;
3420
3421 convert_int_to_ascii (tbp, own_buf, num);
3422 own_buf[num] = '\0';
3423}
3424
3425static void
3426cmd_bigqtbuffer (char *own_buf)
3427{
3428 ULONGEST val;
3429 char *packet = own_buf;
3430
3431 packet += strlen ("QTBuffer:");
3432
3433 if (strncmp ("circular:", packet, strlen ("circular:")) == 0)
3434 {
3435 packet += strlen ("circular:");
f8f67713 3436 unpack_varlen_hex (packet, &val);
219f2f23
PA
3437 circular_trace_buffer = val;
3438 trace_debug ("Trace buffer is now %s",
3439 circular_trace_buffer ? "circular" : "linear");
3440 write_ok (own_buf);
3441 }
3442 else
3443 write_enn (own_buf);
3444}
3445
3446int
3447handle_tracepoint_general_set (char *packet)
3448{
3449 if (strcmp ("QTinit", packet) == 0)
3450 {
3451 cmd_qtinit (packet);
3452 return 1;
3453 }
3454 else if (strncmp ("QTDP:", packet, strlen ("QTDP:")) == 0)
3455 {
3456 cmd_qtdp (packet);
3457 return 1;
3458 }
3459 else if (strncmp ("QTDPsrc:", packet, strlen ("QTDPsrc:")) == 0)
3460 {
3461 cmd_qtdpsrc (packet);
3462 return 1;
3463 }
3464 else if (strncmp ("QTDV:", packet, strlen ("QTDV:")) == 0)
3465 {
3466 cmd_qtdv (packet);
3467 return 1;
3468 }
3469 else if (strncmp ("QTro:", packet, strlen ("QTro:")) == 0)
3470 {
3471 cmd_qtro (packet);
3472 return 1;
3473 }
3474 else if (strcmp ("QTStart", packet) == 0)
3475 {
3476 cmd_qtstart (packet);
3477 return 1;
3478 }
3479 else if (strcmp ("QTStop", packet) == 0)
3480 {
3481 cmd_qtstop (packet);
3482 return 1;
3483 }
8336d594
PA
3484 else if (strncmp ("QTDisconnected:", packet,
3485 strlen ("QTDisconnected:")) == 0)
3486 {
3487 cmd_qtdisconnected (packet);
3488 return 1;
3489 }
219f2f23
PA
3490 else if (strncmp ("QTFrame:", packet, strlen ("QTFrame:")) == 0)
3491 {
3492 cmd_qtframe (packet);
3493 return 1;
3494 }
3495 else if (strncmp ("QTBuffer:", packet, strlen ("QTBuffer:")) == 0)
3496 {
3497 cmd_bigqtbuffer (packet);
3498 return 1;
3499 }
3500
3501 return 0;
3502}
3503
3504int
3505handle_tracepoint_query (char *packet)
3506{
3507 if (strcmp ("qTStatus", packet) == 0)
3508 {
3509 cmd_qtstatus (packet);
3510 return 1;
3511 }
3512 else if (strcmp ("qTfP", packet) == 0)
3513 {
3514 cmd_qtfp (packet);
3515 return 1;
3516 }
3517 else if (strcmp ("qTsP", packet) == 0)
3518 {
3519 cmd_qtsp (packet);
3520 return 1;
3521 }
3522 else if (strcmp ("qTfV", packet) == 0)
3523 {
3524 cmd_qtfv (packet);
3525 return 1;
3526 }
3527 else if (strcmp ("qTsV", packet) == 0)
3528 {
3529 cmd_qtsv (packet);
3530 return 1;
3531 }
3532 else if (strncmp ("qTV:", packet, strlen ("qTV:")) == 0)
3533 {
3534 cmd_qtv (packet);
3535 return 1;
3536 }
3537 else if (strncmp ("qTBuffer:", packet, strlen ("qTBuffer:")) == 0)
3538 {
3539 cmd_qtbuffer (packet);
3540 return 1;
3541 }
0fb4aa4b
PA
3542 else if (strcmp ("qTfSTM", packet) == 0)
3543 {
3544 cmd_qtfstm (packet);
3545 return 1;
3546 }
3547 else if (strcmp ("qTsSTM", packet) == 0)
3548 {
3549 cmd_qtsstm (packet);
3550 return 1;
3551 }
3552 else if (strncmp ("qTSTMat:", packet, strlen ("qTSTMat:")) == 0)
3553 {
3554 cmd_qtstmat (packet);
3555 return 1;
3556 }
219f2f23
PA
3557
3558 return 0;
3559}
3560
fa593d66
PA
3561#endif
3562#ifndef IN_PROCESS_AGENT
3563
219f2f23
PA
3564/* Call this when thread TINFO has hit the tracepoint defined by
3565 TP_NUMBER and TP_ADDRESS, and that tracepoint has a while-stepping
3566 action. This adds a while-stepping collecting state item to the
3567 threads' collecting state list, so that we can keep track of
3568 multiple simultaneous while-stepping actions being collected by the
3569 same thread. This can happen in cases like:
3570
3571 ff0001 INSN1 <-- TP1, while-stepping 10 collect $regs
3572 ff0002 INSN2
3573 ff0003 INSN3 <-- TP2, collect $regs
3574 ff0004 INSN4 <-- TP3, while-stepping 10 collect $regs
3575 ff0005 INSN5
3576
3577 Notice that when instruction INSN5 is reached, the while-stepping
3578 actions of both TP1 and TP3 are still being collected, and that TP2
3579 had been collected meanwhile. The whole range of ff0001-ff0005
3580 should be single-stepped, due to at least TP1's while-stepping
3581 action covering the whole range. */
3582
3583static void
3584add_while_stepping_state (struct thread_info *tinfo,
3585 int tp_number, CORE_ADDR tp_address)
3586{
3587 struct wstep_state *wstep;
3588
3589 wstep = xmalloc (sizeof (*wstep));
3590 wstep->next = tinfo->while_stepping;
3591
3592 wstep->tp_number = tp_number;
3593 wstep->tp_address = tp_address;
3594 wstep->current_step = 0;
3595
3596 tinfo->while_stepping = wstep;
3597}
3598
3599/* Release the while-stepping collecting state WSTEP. */
3600
3601static void
3602release_while_stepping_state (struct wstep_state *wstep)
3603{
3604 free (wstep);
3605}
3606
3607/* Release all while-stepping collecting states currently associated
3608 with thread TINFO. */
3609
3610void
3611release_while_stepping_state_list (struct thread_info *tinfo)
3612{
3613 struct wstep_state *head;
3614
3615 while (tinfo->while_stepping)
3616 {
3617 head = tinfo->while_stepping;
3618 tinfo->while_stepping = head->next;
3619 release_while_stepping_state (head);
3620 }
3621}
3622
3623/* If TINFO was handling a 'while-stepping' action, the step has
3624 finished, so collect any step data needed, and check if any more
3625 steps are required. Return true if the thread was indeed
3626 collecting tracepoint data, false otherwise. */
3627
3628int
3629tracepoint_finished_step (struct thread_info *tinfo, CORE_ADDR stop_pc)
3630{
3631 struct tracepoint *tpoint;
3632 struct wstep_state *wstep;
3633 struct wstep_state **wstep_link;
3634 struct trap_tracepoint_ctx ctx;
3635
fa593d66
PA
3636 /* Pull in fast tracepoint trace frames from the inferior lib buffer into
3637 our buffer. */
3638 if (in_process_agent_loaded ())
3639 upload_fast_traceframes ();
3640
219f2f23
PA
3641 /* Check if we were indeed collecting data for one of more
3642 tracepoints with a 'while-stepping' count. */
3643 if (tinfo->while_stepping == NULL)
3644 return 0;
3645
3646 if (!tracing)
3647 {
3648 /* We're not even tracing anymore. Stop this thread from
3649 collecting. */
3650 release_while_stepping_state_list (tinfo);
3651
3652 /* The thread had stopped due to a single-step request indeed
3653 explained by a tracepoint. */
3654 return 1;
3655 }
3656
3657 wstep = tinfo->while_stepping;
3658 wstep_link = &tinfo->while_stepping;
3659
3660 trace_debug ("Thread %s finished a single-step for tracepoint %d at 0x%s",
3661 target_pid_to_str (tinfo->entry.id),
3662 wstep->tp_number, paddress (wstep->tp_address));
3663
fa593d66 3664 ctx.base.type = trap_tracepoint;
219f2f23
PA
3665 ctx.regcache = get_thread_regcache (tinfo, 1);
3666
3667 while (wstep != NULL)
3668 {
3669 tpoint = find_tracepoint (wstep->tp_number, wstep->tp_address);
3670 if (tpoint == NULL)
3671 {
3672 trace_debug ("NO TRACEPOINT %d at 0x%s FOR THREAD %s!",
3673 wstep->tp_number, paddress (wstep->tp_address),
3674 target_pid_to_str (tinfo->entry.id));
3675
3676 /* Unlink. */
3677 *wstep_link = wstep->next;
3678 release_while_stepping_state (wstep);
4f269b12 3679 wstep = *wstep_link;
219f2f23
PA
3680 continue;
3681 }
3682
3683 /* We've just finished one step. */
3684 ++wstep->current_step;
3685
3686 /* Collect data. */
3687 collect_data_at_step ((struct tracepoint_hit_ctx *) &ctx,
3688 stop_pc, tpoint, wstep->current_step);
3689
3690 if (wstep->current_step >= tpoint->step_count)
3691 {
3692 /* The requested numbers of steps have occurred. */
3693 trace_debug ("Thread %s done stepping for tracepoint %d at 0x%s",
3694 target_pid_to_str (tinfo->entry.id),
3695 wstep->tp_number, paddress (wstep->tp_address));
3696
3697 /* Unlink the wstep. */
3698 *wstep_link = wstep->next;
3699 release_while_stepping_state (wstep);
3700 wstep = *wstep_link;
3701
3702 /* Only check the hit count now, which ensure that we do all
3703 our stepping before stopping the run. */
3704 if (tpoint->pass_count > 0
3705 && tpoint->hit_count >= tpoint->pass_count
3706 && stopping_tracepoint == NULL)
3707 stopping_tracepoint = tpoint;
3708 }
3709 else
3710 {
3711 /* Keep single-stepping until the requested numbers of steps
3712 have occurred. */
3713 wstep_link = &wstep->next;
3714 wstep = *wstep_link;
3715 }
3716
3717 if (stopping_tracepoint
3718 || trace_buffer_is_full
3719 || expr_eval_result != expr_eval_no_error)
3720 {
3721 stop_tracing ();
3722 break;
3723 }
3724 }
3725
3726 return 1;
3727}
3728
fa593d66
PA
3729/* Handle any internal tracing control breakpoint hits. That means,
3730 pull traceframes from the IPA to our buffer, and syncing both
3731 tracing agents when the IPA's tracing stops for some reason. */
3732
3733int
3734handle_tracepoint_bkpts (struct thread_info *tinfo, CORE_ADDR stop_pc)
3735{
3736 /* Pull in fast tracepoint trace frames from the inferior in-process
3737 agent's buffer into our buffer. */
3738
3739 if (!in_process_agent_loaded ())
3740 return 0;
3741
3742 upload_fast_traceframes ();
3743
3744 /* Check if the in-process agent had decided we should stop
3745 tracing. */
3746 if (stop_pc == ipa_sym_addrs.addr_stop_tracing)
3747 {
3748 int ipa_trace_buffer_is_full;
3749 CORE_ADDR ipa_stopping_tracepoint;
3750 int ipa_expr_eval_result;
3751 CORE_ADDR ipa_error_tracepoint;
3752
3753 trace_debug ("lib stopped at stop_tracing");
3754
3755 read_inferior_integer (ipa_sym_addrs.addr_trace_buffer_is_full,
3756 &ipa_trace_buffer_is_full);
3757
3758 read_inferior_data_pointer (ipa_sym_addrs.addr_stopping_tracepoint,
3759 &ipa_stopping_tracepoint);
3760 write_inferior_data_pointer (ipa_sym_addrs.addr_stopping_tracepoint, 0);
3761
3762 read_inferior_data_pointer (ipa_sym_addrs.addr_error_tracepoint,
3763 &ipa_error_tracepoint);
3764 write_inferior_data_pointer (ipa_sym_addrs.addr_error_tracepoint, 0);
3765
3766 read_inferior_integer (ipa_sym_addrs.addr_expr_eval_result,
3767 &ipa_expr_eval_result);
3768 write_inferior_integer (ipa_sym_addrs.addr_expr_eval_result, 0);
3769
3770 trace_debug ("lib: trace_buffer_is_full: %d, "
3771 "stopping_tracepoint: %s, "
3772 "ipa_expr_eval_result: %d, "
3773 "error_tracepoint: %s, ",
3774 ipa_trace_buffer_is_full,
3775 paddress (ipa_stopping_tracepoint),
3776 ipa_expr_eval_result,
3777 paddress (ipa_error_tracepoint));
3778
3779 if (debug_threads)
3780 {
3781 if (ipa_trace_buffer_is_full)
3782 trace_debug ("lib stopped due to full buffer.");
3783 if (ipa_stopping_tracepoint)
3784 trace_debug ("lib stopped due to tpoint");
3785 if (ipa_stopping_tracepoint)
3786 trace_debug ("lib stopped due to error");
3787 }
3788
3789 if (ipa_stopping_tracepoint != 0)
3790 {
3791 stopping_tracepoint
3792 = fast_tracepoint_from_ipa_tpoint_address (ipa_stopping_tracepoint);
3793 }
3794 else if (ipa_expr_eval_result != expr_eval_no_error)
3795 {
3796 expr_eval_result = ipa_expr_eval_result;
3797 error_tracepoint
3798 = fast_tracepoint_from_ipa_tpoint_address (ipa_error_tracepoint);
3799 }
3800 stop_tracing ();
3801 return 1;
3802 }
3803 else if (stop_pc == ipa_sym_addrs.addr_flush_trace_buffer)
3804 {
3805 trace_debug ("lib stopped at flush_trace_buffer");
3806 return 1;
3807 }
3808
3809 return 0;
3810}
3811
219f2f23
PA
3812/* Return true if TINFO just hit a tracepoint. Collect data if
3813 so. */
3814
3815int
3816tracepoint_was_hit (struct thread_info *tinfo, CORE_ADDR stop_pc)
3817{
3818 struct tracepoint *tpoint;
3819 int ret = 0;
3820 struct trap_tracepoint_ctx ctx;
3821
3822 /* Not tracing, don't handle. */
3823 if (!tracing)
3824 return 0;
3825
fa593d66 3826 ctx.base.type = trap_tracepoint;
219f2f23
PA
3827 ctx.regcache = get_thread_regcache (tinfo, 1);
3828
3829 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
3830 {
fa593d66
PA
3831 /* Note that we collect fast tracepoints here as well. We'll
3832 step over the fast tracepoint jump later, which avoids the
3833 double collect. */
219f2f23
PA
3834 if (tpoint->enabled && stop_pc == tpoint->address)
3835 {
3836 trace_debug ("Thread %s at address of tracepoint %d at 0x%s",
3837 target_pid_to_str (tinfo->entry.id),
3838 tpoint->number, paddress (tpoint->address));
3839
3840 /* Test the condition if present, and collect if true. */
3841 if (!tpoint->cond
3842 || (condition_true_at_tracepoint
3843 ((struct tracepoint_hit_ctx *) &ctx, tpoint)))
3844 collect_data_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
3845 stop_pc, tpoint);
3846
3847 if (stopping_tracepoint
3848 || trace_buffer_is_full
3849 || expr_eval_result != expr_eval_no_error)
3850 {
3851 stop_tracing ();
3852 }
3853 /* If the tracepoint had a 'while-stepping' action, then set
3854 the thread to collect this tracepoint on the following
3855 single-steps. */
3856 else if (tpoint->step_count > 0)
3857 {
3858 add_while_stepping_state (tinfo,
3859 tpoint->number, tpoint->address);
3860 }
3861
3862 ret = 1;
3863 }
3864 }
3865
3866 return ret;
3867}
3868
fa593d66
PA
3869#endif
3870
0fb4aa4b
PA
3871#if defined IN_PROCESS_AGENT && defined HAVE_UST
3872struct ust_marker_data;
3873static void collect_ust_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
3874 CORE_ADDR stop_pc,
3875 struct tracepoint *tpoint,
3876 struct traceframe *tframe);
3877#endif
3878
219f2f23
PA
3879/* Create a trace frame for the hit of the given tracepoint in the
3880 given thread. */
3881
3882static void
3883collect_data_at_tracepoint (struct tracepoint_hit_ctx *ctx, CORE_ADDR stop_pc,
3884 struct tracepoint *tpoint)
3885{
3886 struct traceframe *tframe;
3887 int acti;
3888
3889 /* Only count it as a hit when we actually collect data. */
3890 tpoint->hit_count++;
3891
3892 /* If we've exceeded a defined pass count, record the event for
3893 later, and finish the collection for this hit. This test is only
3894 for nonstepping tracepoints, stepping tracepoints test at the end
3895 of their while-stepping loop. */
3896 if (tpoint->pass_count > 0
3897 && tpoint->hit_count >= tpoint->pass_count
3898 && tpoint->step_count == 0
3899 && stopping_tracepoint == NULL)
3900 stopping_tracepoint = tpoint;
3901
3902 trace_debug ("Making new traceframe for tracepoint %d at 0x%s, hit %ld",
3903 tpoint->number, paddress (tpoint->address), tpoint->hit_count);
3904
3905 tframe = add_traceframe (tpoint);
3906
3907 if (tframe)
3908 {
3909 for (acti = 0; acti < tpoint->numactions; ++acti)
3910 {
fa593d66 3911#ifndef IN_PROCESS_AGENT
219f2f23
PA
3912 trace_debug ("Tracepoint %d at 0x%s about to do action '%s'",
3913 tpoint->number, paddress (tpoint->address),
3914 tpoint->actions_str[acti]);
fa593d66 3915#endif
219f2f23
PA
3916
3917 do_action_at_tracepoint (ctx, stop_pc, tpoint, tframe,
3918 tpoint->actions[acti]);
3919 }
3920
3921 finish_traceframe (tframe);
3922 }
3923
3924 if (tframe == NULL && tracing)
3925 trace_buffer_is_full = 1;
3926}
3927
fa593d66
PA
3928#ifndef IN_PROCESS_AGENT
3929
219f2f23
PA
3930static void
3931collect_data_at_step (struct tracepoint_hit_ctx *ctx,
3932 CORE_ADDR stop_pc,
3933 struct tracepoint *tpoint, int current_step)
3934{
3935 struct traceframe *tframe;
3936 int acti;
3937
3938 trace_debug ("Making new step traceframe for "
3939 "tracepoint %d at 0x%s, step %d of %ld, hit %ld",
3940 tpoint->number, paddress (tpoint->address),
3941 current_step, tpoint->step_count,
3942 tpoint->hit_count);
3943
3944 tframe = add_traceframe (tpoint);
3945
3946 if (tframe)
3947 {
3948 for (acti = 0; acti < tpoint->num_step_actions; ++acti)
3949 {
3950 trace_debug ("Tracepoint %d at 0x%s about to do step action '%s'",
3951 tpoint->number, paddress (tpoint->address),
3952 tpoint->step_actions_str[acti]);
3953
3954 do_action_at_tracepoint (ctx, stop_pc, tpoint, tframe,
3955 tpoint->step_actions[acti]);
3956 }
3957
3958 finish_traceframe (tframe);
3959 }
3960
3961 if (tframe == NULL && tracing)
3962 trace_buffer_is_full = 1;
3963}
3964
fa593d66
PA
3965#endif
3966
219f2f23
PA
3967static struct regcache *
3968get_context_regcache (struct tracepoint_hit_ctx *ctx)
3969{
fa593d66
PA
3970 struct regcache *regcache = NULL;
3971
3972#ifdef IN_PROCESS_AGENT
3973 if (ctx->type == fast_tracepoint)
3974 {
3975 struct fast_tracepoint_ctx *fctx = (struct fast_tracepoint_ctx *) ctx;
3976 if (!fctx->regcache_initted)
3977 {
3978 fctx->regcache_initted = 1;
3979 init_register_cache (&fctx->regcache, fctx->regspace);
3980 supply_regblock (&fctx->regcache, NULL);
3981 supply_fast_tracepoint_registers (&fctx->regcache, fctx->regs);
3982 }
3983 regcache = &fctx->regcache;
3984 }
0fb4aa4b
PA
3985#ifdef HAVE_UST
3986 if (ctx->type == static_tracepoint)
3987 {
493e2a69
MS
3988 struct static_tracepoint_ctx *sctx
3989 = (struct static_tracepoint_ctx *) ctx;
3990
0fb4aa4b
PA
3991 if (!sctx->regcache_initted)
3992 {
3993 sctx->regcache_initted = 1;
3994 init_register_cache (&sctx->regcache, sctx->regspace);
3995 supply_regblock (&sctx->regcache, NULL);
3996 /* Pass down the tracepoint address, because REGS doesn't
3997 include the PC, but we know what it must have been. */
3998 supply_static_tracepoint_registers (&sctx->regcache,
3999 (const unsigned char *)
4000 sctx->regs,
4001 sctx->tpoint->address);
4002 }
4003 regcache = &sctx->regcache;
4004 }
4005#endif
fa593d66
PA
4006#else
4007 if (ctx->type == trap_tracepoint)
4008 {
4009 struct trap_tracepoint_ctx *tctx = (struct trap_tracepoint_ctx *) ctx;
4010 regcache = tctx->regcache;
4011 }
4012#endif
219f2f23
PA
4013
4014 gdb_assert (regcache != NULL);
4015
4016 return regcache;
4017}
4018
4019static void
4020do_action_at_tracepoint (struct tracepoint_hit_ctx *ctx,
4021 CORE_ADDR stop_pc,
4022 struct tracepoint *tpoint,
4023 struct traceframe *tframe,
4024 struct tracepoint_action *taction)
4025{
4026 enum eval_result_type err;
4027
4028 switch (taction->type)
4029 {
4030 case 'M':
4031 {
4032 struct collect_memory_action *maction;
4033
4034 maction = (struct collect_memory_action *) taction;
4035
4036 trace_debug ("Want to collect %s bytes at 0x%s (basereg %d)",
4037 pulongest (maction->len),
4038 paddress (maction->addr), maction->basereg);
4039 /* (should use basereg) */
4040 agent_mem_read (tframe, NULL,
4041 (CORE_ADDR) maction->addr, maction->len);
4042 break;
4043 }
4044 case 'R':
4045 {
219f2f23
PA
4046 unsigned char *regspace;
4047 struct regcache tregcache;
4048 struct regcache *context_regcache;
4049
219f2f23
PA
4050
4051 trace_debug ("Want to collect registers");
4052
4053 /* Collect all registers for now. */
4054 regspace = add_traceframe_block (tframe,
4055 1 + register_cache_size ());
4056 if (regspace == NULL)
4057 {
4058 trace_debug ("Trace buffer block allocation failed, skipping");
4059 break;
4060 }
4061 /* Identify a register block. */
4062 *regspace = 'R';
4063
4064 context_regcache = get_context_regcache (ctx);
4065
4066 /* Wrap the regblock in a register cache (in the stack, we
4067 don't want to malloc here). */
4068 init_register_cache (&tregcache, regspace + 1);
4069
4070 /* Copy the register data to the regblock. */
4071 regcache_cpy (&tregcache, context_regcache);
4072
fa593d66 4073#ifndef IN_PROCESS_AGENT
219f2f23
PA
4074 /* On some platforms, trap-based tracepoints will have the PC
4075 pointing to the next instruction after the trap, but we
4076 don't want the user or GDB trying to guess whether the
4077 saved PC needs adjusting; so always record the adjusted
4078 stop_pc. Note that we can't use tpoint->address instead,
fa593d66
PA
4079 since it will be wrong for while-stepping actions. This
4080 adjustment is a nop for fast tracepoints collected from the
4081 in-process lib (but not if GDBserver is collecting one
4082 preemptively), since the PC had already been adjusted to
4083 contain the tracepoint's address by the jump pad. */
219f2f23
PA
4084 trace_debug ("Storing stop pc (0x%s) in regblock",
4085 paddress (tpoint->address));
4086
4087 /* This changes the regblock, not the thread's
4088 regcache. */
4089 regcache_write_pc (&tregcache, stop_pc);
fa593d66 4090#endif
219f2f23
PA
4091 }
4092 break;
4093 case 'X':
4094 {
4095 struct eval_expr_action *eaction;
4096
4097 eaction = (struct eval_expr_action *) taction;
4098
4099 trace_debug ("Want to evaluate expression");
4100
4101 err = eval_agent_expr (ctx, tframe, eaction->expr, NULL);
4102
4103 if (err != expr_eval_no_error)
4104 {
4105 record_tracepoint_error (tpoint, "action expression", err);
4106 return;
4107 }
4108 }
4109 break;
0fb4aa4b
PA
4110 case 'L':
4111 {
4112#if defined IN_PROCESS_AGENT && defined HAVE_UST
4113 trace_debug ("Want to collect static trace data");
4114 collect_ust_data_at_tracepoint (ctx, stop_pc,
4115 tpoint, tframe);
4116#else
4117 trace_debug ("warning: collecting static trace data, "
4118 "but static tracepoints are not supported");
4119#endif
4120 }
4121 break;
219f2f23
PA
4122 default:
4123 trace_debug ("unknown trace action '%c', ignoring", taction->type);
4124 break;
4125 }
4126}
4127
4128static int
4129condition_true_at_tracepoint (struct tracepoint_hit_ctx *ctx,
4130 struct tracepoint *tpoint)
4131{
4132 ULONGEST value = 0;
4133 enum eval_result_type err;
4134
c6beb2cb
PA
4135 /* Presently, gdbserver doesn't run compiled conditions, only the
4136 IPA does. If the program stops at a fast tracepoint's address
4137 (e.g., due to a breakpoint, trap tracepoint, or stepping),
4138 gdbserver preemptively collect the fast tracepoint. Later, on
4139 resume, gdbserver steps over the fast tracepoint like it steps
4140 over breakpoints, so that the IPA doesn't see that fast
4141 tracepoint. This avoids double collects of fast tracepoints in
4142 that stopping scenario. Having gdbserver itself handle the fast
4143 tracepoint gives the user a consistent view of when fast or trap
4144 tracepoints are collected, compared to an alternative where only
4145 trap tracepoints are collected on stop, and fast tracepoints on
4146 resume. When a fast tracepoint is being processed by gdbserver,
4147 it is always the non-compiled condition expression that is
4148 used. */
4149#ifdef IN_PROCESS_AGENT
6a271cae
PA
4150 if (tpoint->compiled_cond)
4151 err = ((condfn) (uintptr_t) (tpoint->compiled_cond)) (ctx, &value);
4152 else
c6beb2cb 4153#endif
6a271cae 4154 err = eval_agent_expr (ctx, NULL, tpoint->cond, &value);
219f2f23
PA
4155
4156 if (err != expr_eval_no_error)
4157 {
4158 record_tracepoint_error (tpoint, "condition", err);
4159 /* The error case must return false. */
4160 return 0;
4161 }
4162
4163 trace_debug ("Tracepoint %d at 0x%s condition evals to %s",
4164 tpoint->number, paddress (tpoint->address),
4165 pulongest (value));
4166 return (value ? 1 : 0);
4167}
4168
fa593d66
PA
4169#ifndef IN_PROCESS_AGENT
4170
219f2f23
PA
4171/* The packet form of an agent expression consists of an 'X', number
4172 of bytes in expression, a comma, and then the bytes. */
4173
4174static struct agent_expr *
4175parse_agent_expr (char **actparm)
4176{
4177 char *act = *actparm;
4178 ULONGEST xlen;
4179 struct agent_expr *aexpr;
4180
4181 ++act; /* skip the X */
4182 act = unpack_varlen_hex (act, &xlen);
4183 ++act; /* skip a comma */
4184 aexpr = xmalloc (sizeof (struct agent_expr));
4185 aexpr->length = xlen;
4186 aexpr->bytes = xmalloc (xlen);
4187 convert_ascii_to_int (act, aexpr->bytes, xlen);
4188 *actparm = act + (xlen * 2);
4189 return aexpr;
4190}
4191
4192/* Convert the bytes of an agent expression back into hex digits, so
4193 they can be printed or uploaded. This allocates the buffer,
4194 callers should free when they are done with it. */
4195
4196static char *
4197unparse_agent_expr (struct agent_expr *aexpr)
4198{
4199 char *rslt;
4200
4201 rslt = xmalloc (2 * aexpr->length + 1);
4202 convert_int_to_ascii (aexpr->bytes, rslt, aexpr->length);
4203 return rslt;
4204}
4205
fa593d66
PA
4206#endif
4207
94d5e490
TT
4208/* A wrapper for gdb_agent_op_names that does some bounds-checking. */
4209
4210static const char *
4211gdb_agent_op_name (int op)
4212{
4213 if (op < 0 || op >= gdb_agent_op_last || gdb_agent_op_names[op] == NULL)
4214 return "?undef?";
4215 return gdb_agent_op_names[op];
4216}
4217
219f2f23
PA
4218/* The agent expression evaluator, as specified by the GDB docs. It
4219 returns 0 if everything went OK, and a nonzero error code
4220 otherwise. */
4221
4222static enum eval_result_type
4223eval_agent_expr (struct tracepoint_hit_ctx *ctx,
4224 struct traceframe *tframe,
4225 struct agent_expr *aexpr,
4226 ULONGEST *rslt)
4227{
4228 int pc = 0;
4229#define STACK_MAX 100
4230 ULONGEST stack[STACK_MAX], top;
4231 int sp = 0;
4232 unsigned char op;
4233 int arg;
4234
4235 /* This union is a convenient way to convert representations. For
4236 now, assume a standard architecture where the hardware integer
4237 types have 8, 16, 32, 64 bit types. A more robust solution would
4238 be to import stdint.h from gnulib. */
4239 union
4240 {
4241 union
4242 {
4243 unsigned char bytes[1];
4244 unsigned char val;
4245 } u8;
4246 union
4247 {
4248 unsigned char bytes[2];
4249 unsigned short val;
4250 } u16;
4251 union
4252 {
4253 unsigned char bytes[4];
4254 unsigned int val;
4255 } u32;
4256 union
4257 {
4258 unsigned char bytes[8];
4259 ULONGEST val;
4260 } u64;
4261 } cnv;
4262
4263 if (aexpr->length == 0)
4264 {
4265 trace_debug ("empty agent expression");
4266 return expr_eval_empty_expression;
4267 }
4268
4269 /* Cache the stack top in its own variable. Much of the time we can
4270 operate on this variable, rather than dinking with the stack. It
4271 needs to be copied to the stack when sp changes. */
4272 top = 0;
4273
4274 while (1)
4275 {
4276 op = aexpr->bytes[pc++];
4277
4278 trace_debug ("About to interpret byte 0x%x", op);
4279
4280 switch (op)
4281 {
4282 case gdb_agent_op_add:
4283 top += stack[--sp];
4284 break;
4285
4286 case gdb_agent_op_sub:
4287 top = stack[--sp] - top;
4288 break;
4289
4290 case gdb_agent_op_mul:
4291 top *= stack[--sp];
4292 break;
4293
4294 case gdb_agent_op_div_signed:
4295 if (top == 0)
4296 {
4297 trace_debug ("Attempted to divide by zero");
4298 return expr_eval_divide_by_zero;
4299 }
4300 top = ((LONGEST) stack[--sp]) / ((LONGEST) top);
4301 break;
4302
4303 case gdb_agent_op_div_unsigned:
4304 if (top == 0)
4305 {
4306 trace_debug ("Attempted to divide by zero");
4307 return expr_eval_divide_by_zero;
4308 }
4309 top = stack[--sp] / top;
4310 break;
4311
4312 case gdb_agent_op_rem_signed:
4313 if (top == 0)
4314 {
4315 trace_debug ("Attempted to divide by zero");
4316 return expr_eval_divide_by_zero;
4317 }
4318 top = ((LONGEST) stack[--sp]) % ((LONGEST) top);
4319 break;
4320
4321 case gdb_agent_op_rem_unsigned:
4322 if (top == 0)
4323 {
4324 trace_debug ("Attempted to divide by zero");
4325 return expr_eval_divide_by_zero;
4326 }
4327 top = stack[--sp] % top;
4328 break;
4329
4330 case gdb_agent_op_lsh:
4331 top = stack[--sp] << top;
4332 break;
4333
4334 case gdb_agent_op_rsh_signed:
4335 top = ((LONGEST) stack[--sp]) >> top;
4336 break;
4337
4338 case gdb_agent_op_rsh_unsigned:
4339 top = stack[--sp] >> top;
4340 break;
4341
4342 case gdb_agent_op_trace:
4343 agent_mem_read (tframe,
4344 NULL, (CORE_ADDR) stack[--sp], (ULONGEST) top);
4345 if (--sp >= 0)
4346 top = stack[sp];
4347 break;
4348
4349 case gdb_agent_op_trace_quick:
4350 arg = aexpr->bytes[pc++];
4351 agent_mem_read (tframe, NULL, (CORE_ADDR) top, (ULONGEST) arg);
4352 break;
4353
4354 case gdb_agent_op_log_not:
4355 top = !top;
4356 break;
4357
4358 case gdb_agent_op_bit_and:
4359 top &= stack[--sp];
4360 break;
4361
4362 case gdb_agent_op_bit_or:
4363 top |= stack[--sp];
4364 break;
4365
4366 case gdb_agent_op_bit_xor:
4367 top ^= stack[--sp];
4368 break;
4369
4370 case gdb_agent_op_bit_not:
4371 top = ~top;
4372 break;
4373
4374 case gdb_agent_op_equal:
4375 top = (stack[--sp] == top);
4376 break;
4377
4378 case gdb_agent_op_less_signed:
4379 top = (((LONGEST) stack[--sp]) < ((LONGEST) top));
4380 break;
4381
4382 case gdb_agent_op_less_unsigned:
4383 top = (stack[--sp] < top);
4384 break;
4385
4386 case gdb_agent_op_ext:
4387 arg = aexpr->bytes[pc++];
4388 if (arg < (sizeof (LONGEST) * 8))
4389 {
4390 LONGEST mask = 1 << (arg - 1);
4391 top &= ((LONGEST) 1 << arg) - 1;
4392 top = (top ^ mask) - mask;
4393 }
4394 break;
4395
4396 case gdb_agent_op_ref8:
4397 agent_mem_read (tframe, cnv.u8.bytes, (CORE_ADDR) top, 1);
4398 top = cnv.u8.val;
4399 break;
4400
4401 case gdb_agent_op_ref16:
4402 agent_mem_read (tframe, cnv.u16.bytes, (CORE_ADDR) top, 2);
4403 top = cnv.u16.val;
4404 break;
4405
4406 case gdb_agent_op_ref32:
4407 agent_mem_read (tframe, cnv.u32.bytes, (CORE_ADDR) top, 4);
4408 top = cnv.u32.val;
4409 break;
4410
4411 case gdb_agent_op_ref64:
4412 agent_mem_read (tframe, cnv.u64.bytes, (CORE_ADDR) top, 8);
4413 top = cnv.u64.val;
4414 break;
4415
4416 case gdb_agent_op_if_goto:
4417 if (top)
4418 pc = (aexpr->bytes[pc] << 8) + (aexpr->bytes[pc + 1]);
4419 else
4420 pc += 2;
4421 if (--sp >= 0)
4422 top = stack[sp];
4423 break;
4424
4425 case gdb_agent_op_goto:
4426 pc = (aexpr->bytes[pc] << 8) + (aexpr->bytes[pc + 1]);
4427 break;
4428
4429 case gdb_agent_op_const8:
4430 /* Flush the cached stack top. */
4431 stack[sp++] = top;
4432 top = aexpr->bytes[pc++];
4433 break;
4434
4435 case gdb_agent_op_const16:
4436 /* Flush the cached stack top. */
4437 stack[sp++] = top;
4438 top = aexpr->bytes[pc++];
4439 top = (top << 8) + aexpr->bytes[pc++];
4440 break;
4441
4442 case gdb_agent_op_const32:
4443 /* Flush the cached stack top. */
4444 stack[sp++] = top;
4445 top = aexpr->bytes[pc++];
4446 top = (top << 8) + aexpr->bytes[pc++];
4447 top = (top << 8) + aexpr->bytes[pc++];
4448 top = (top << 8) + aexpr->bytes[pc++];
4449 break;
4450
4451 case gdb_agent_op_const64:
4452 /* Flush the cached stack top. */
4453 stack[sp++] = top;
4454 top = aexpr->bytes[pc++];
4455 top = (top << 8) + aexpr->bytes[pc++];
4456 top = (top << 8) + aexpr->bytes[pc++];
4457 top = (top << 8) + aexpr->bytes[pc++];
4458 top = (top << 8) + aexpr->bytes[pc++];
4459 top = (top << 8) + aexpr->bytes[pc++];
4460 top = (top << 8) + aexpr->bytes[pc++];
4461 top = (top << 8) + aexpr->bytes[pc++];
4462 break;
4463
4464 case gdb_agent_op_reg:
4465 /* Flush the cached stack top. */
4466 stack[sp++] = top;
4467 arg = aexpr->bytes[pc++];
4468 arg = (arg << 8) + aexpr->bytes[pc++];
4469 {
4470 int regnum = arg;
4471 struct regcache *regcache;
4472
4473 regcache = get_context_regcache (ctx);
4474
4475 switch (register_size (regnum))
4476 {
4477 case 8:
4478 collect_register (regcache, regnum, cnv.u64.bytes);
4479 top = cnv.u64.val;
4480 break;
4481 case 4:
4482 collect_register (regcache, regnum, cnv.u32.bytes);
4483 top = cnv.u32.val;
4484 break;
4485 case 2:
4486 collect_register (regcache, regnum, cnv.u16.bytes);
4487 top = cnv.u16.val;
4488 break;
4489 case 1:
4490 collect_register (regcache, regnum, cnv.u8.bytes);
4491 top = cnv.u8.val;
4492 break;
4493 default:
4494 internal_error (__FILE__, __LINE__,
4495 "unhandled register size");
4496 }
4497 }
4498 break;
4499
4500 case gdb_agent_op_end:
4501 trace_debug ("At end of expression, sp=%d, stack top cache=0x%s",
4502 sp, pulongest (top));
4503 if (rslt)
4504 {
4505 if (sp <= 0)
4506 {
4507 /* This should be an error */
4508 trace_debug ("Stack is empty, nothing to return");
4509 return expr_eval_empty_stack;
4510 }
4511 *rslt = top;
4512 }
4513 return expr_eval_no_error;
4514
4515 case gdb_agent_op_dup:
4516 stack[sp++] = top;
4517 break;
4518
4519 case gdb_agent_op_pop:
4520 if (--sp >= 0)
4521 top = stack[sp];
4522 break;
4523
c7f96d2b
TT
4524 case gdb_agent_op_pick:
4525 arg = aexpr->bytes[pc++];
4526 stack[sp] = top;
4527 top = stack[sp - arg];
4528 ++sp;
4529 break;
4530
4531 case gdb_agent_op_rot:
4532 {
4533 ULONGEST tem = stack[sp - 1];
4534
4535 stack[sp - 1] = stack[sp - 2];
4536 stack[sp - 2] = top;
4537 top = tem;
4538 }
4539 break;
4540
219f2f23
PA
4541 case gdb_agent_op_zero_ext:
4542 arg = aexpr->bytes[pc++];
4543 if (arg < (sizeof (LONGEST) * 8))
4544 top &= ((LONGEST) 1 << arg) - 1;
4545 break;
4546
4547 case gdb_agent_op_swap:
4548 /* Interchange top two stack elements, making sure top gets
4549 copied back onto stack. */
4550 stack[sp] = top;
4551 top = stack[sp - 1];
4552 stack[sp - 1] = stack[sp];
4553 break;
4554
4555 case gdb_agent_op_getv:
4556 /* Flush the cached stack top. */
4557 stack[sp++] = top;
4558 arg = aexpr->bytes[pc++];
4559 arg = (arg << 8) + aexpr->bytes[pc++];
4560 top = get_trace_state_variable_value (arg);
4561 break;
4562
4563 case gdb_agent_op_setv:
4564 arg = aexpr->bytes[pc++];
4565 arg = (arg << 8) + aexpr->bytes[pc++];
4566 set_trace_state_variable_value (arg, top);
4567 /* Note that we leave the value on the stack, for the
4568 benefit of later/enclosing expressions. */
4569 break;
4570
4571 case gdb_agent_op_tracev:
4572 arg = aexpr->bytes[pc++];
4573 arg = (arg << 8) + aexpr->bytes[pc++];
4574 agent_tsv_read (tframe, arg);
4575 break;
4576
4577 /* GDB never (currently) generates any of these ops. */
4578 case gdb_agent_op_float:
4579 case gdb_agent_op_ref_float:
4580 case gdb_agent_op_ref_double:
4581 case gdb_agent_op_ref_long_double:
4582 case gdb_agent_op_l_to_d:
4583 case gdb_agent_op_d_to_l:
4584 case gdb_agent_op_trace16:
4585 trace_debug ("Agent expression op 0x%x valid, but not handled",
4586 op);
4587 /* If ever GDB generates any of these, we don't have the
4588 option of ignoring. */
4589 return 1;
4590
4591 default:
4592 trace_debug ("Agent expression op 0x%x not recognized", op);
4593 /* Don't struggle on, things will just get worse. */
4594 return expr_eval_unrecognized_opcode;
4595 }
4596
4597 /* Check for stack badness. */
4598 if (sp >= (STACK_MAX - 1))
4599 {
4600 trace_debug ("Expression stack overflow");
4601 return expr_eval_stack_overflow;
4602 }
4603
4604 if (sp < 0)
4605 {
4606 trace_debug ("Expression stack underflow");
4607 return expr_eval_stack_underflow;
4608 }
4609
4610 trace_debug ("Op %s -> sp=%d, top=0x%s",
94d5e490 4611 gdb_agent_op_name (op), sp, pulongest (top));
219f2f23
PA
4612 }
4613}
4614
4615/* Do memory copies for bytecodes. */
4616/* Do the recording of memory blocks for actions and bytecodes. */
4617
4618static int
4619agent_mem_read (struct traceframe *tframe,
4620 unsigned char *to, CORE_ADDR from, ULONGEST len)
4621{
4622 unsigned char *mspace;
4623 ULONGEST remaining = len;
4624 unsigned short blocklen;
4625
4626 /* If a 'to' buffer is specified, use it. */
4627 if (to != NULL)
4628 {
4629 read_inferior_memory (from, to, len);
4630 return 0;
4631 }
4632
4633 /* Otherwise, create a new memory block in the trace buffer. */
4634 while (remaining > 0)
4635 {
4636 size_t sp;
4637
4638 blocklen = (remaining > 65535 ? 65535 : remaining);
4639 sp = 1 + sizeof (from) + sizeof (blocklen) + blocklen;
4640 mspace = add_traceframe_block (tframe, sp);
4641 if (mspace == NULL)
4642 return 1;
4643 /* Identify block as a memory block. */
4644 *mspace = 'M';
4645 ++mspace;
4646 /* Record address and size. */
4647 memcpy (mspace, &from, sizeof (from));
4648 mspace += sizeof (from);
4649 memcpy (mspace, &blocklen, sizeof (blocklen));
4650 mspace += sizeof (blocklen);
4651 /* Record the memory block proper. */
4652 read_inferior_memory (from, mspace, blocklen);
4653 trace_debug ("%d bytes recorded", blocklen);
4654 remaining -= blocklen;
4655 from += blocklen;
4656 }
4657 return 0;
4658}
4659
4660/* Record the value of a trace state variable. */
4661
4662static int
4663agent_tsv_read (struct traceframe *tframe, int n)
4664{
4665 unsigned char *vspace;
4666 LONGEST val;
4667
4668 vspace = add_traceframe_block (tframe,
4669 1 + sizeof (n) + sizeof (LONGEST));
4670 if (vspace == NULL)
4671 return 1;
4672 /* Identify block as a variable. */
4673 *vspace = 'V';
4674 /* Record variable's number and value. */
4675 memcpy (vspace + 1, &n, sizeof (n));
4676 val = get_trace_state_variable_value (n);
4677 memcpy (vspace + 1 + sizeof (n), &val, sizeof (val));
4678 trace_debug ("Variable %d recorded", n);
4679 return 0;
4680}
4681
fa593d66
PA
4682#ifndef IN_PROCESS_AGENT
4683
b3b9301e
PA
4684/* Callback for traceframe_walk_blocks, used to find a given block
4685 type in a traceframe. */
4686
4687static int
4688match_blocktype (char blocktype, unsigned char *dataptr, void *data)
4689{
4690 char *wantedp = data;
4691
4692 if (*wantedp == blocktype)
4693 return 1;
4694
4695 return 0;
4696}
4697
4698/* Walk over all traceframe blocks of the traceframe buffer starting
4699 at DATABASE, of DATASIZE bytes long, and call CALLBACK for each
4700 block found, passing in DATA unmodified. If CALLBACK returns true,
4701 this returns a pointer to where the block is found. Returns NULL
4702 if no callback call returned true, indicating that all blocks have
4703 been walked. */
4704
219f2f23 4705static unsigned char *
b3b9301e
PA
4706traceframe_walk_blocks (unsigned char *database, unsigned int datasize,
4707 int tfnum,
4708 int (*callback) (char blocktype,
4709 unsigned char *dataptr,
4710 void *data),
4711 void *data)
219f2f23
PA
4712{
4713 unsigned char *dataptr;
4714
4715 if (datasize == 0)
4716 {
4717 trace_debug ("traceframe %d has no data", tfnum);
4718 return NULL;
4719 }
4720
4721 /* Iterate through a traceframe's blocks, looking for a block of the
4722 requested type. */
4723 for (dataptr = database;
4724 dataptr < database + datasize;
4725 /* nothing */)
4726 {
4727 char blocktype;
4728 unsigned short mlen;
4729
4730 if (dataptr == trace_buffer_wrap)
4731 {
4732 /* Adjust to reflect wrapping part of the frame around to
4733 the beginning. */
4734 datasize = dataptr - database;
4735 dataptr = database = trace_buffer_lo;
4736 }
b3b9301e 4737
219f2f23
PA
4738 blocktype = *dataptr++;
4739
b3b9301e 4740 if ((*callback) (blocktype, dataptr, data))
219f2f23
PA
4741 return dataptr;
4742
4743 switch (blocktype)
4744 {
4745 case 'R':
4746 /* Skip over the registers block. */
4747 dataptr += register_cache_size ();
4748 break;
4749 case 'M':
4750 /* Skip over the memory block. */
4751 dataptr += sizeof (CORE_ADDR);
4752 memcpy (&mlen, dataptr, sizeof (mlen));
4753 dataptr += (sizeof (mlen) + mlen);
4754 break;
219f2f23
PA
4755 case 'V':
4756 /* Skip over the TSV block. */
4757 dataptr += (sizeof (int) + sizeof (LONGEST));
4758 break;
0fb4aa4b
PA
4759 case 'S':
4760 /* Skip over the static trace data block. */
4761 memcpy (&mlen, dataptr, sizeof (mlen));
4762 dataptr += (sizeof (mlen) + mlen);
4763 break;
219f2f23
PA
4764 default:
4765 trace_debug ("traceframe %d has unknown block type 0x%x",
4766 tfnum, blocktype);
4767 return NULL;
4768 }
4769 }
4770
4771 return NULL;
4772}
4773
b3b9301e
PA
4774/* Look for the block of type TYPE_WANTED in the trameframe starting
4775 at DATABASE of DATASIZE bytes long. TFNUM is the traceframe
4776 number. */
4777
4778static unsigned char *
4779traceframe_find_block_type (unsigned char *database, unsigned int datasize,
4780 int tfnum, char type_wanted)
4781{
4782 return traceframe_walk_blocks (database, datasize, tfnum,
4783 match_blocktype, &type_wanted);
4784}
4785
219f2f23
PA
4786static unsigned char *
4787traceframe_find_regblock (struct traceframe *tframe, int tfnum)
4788{
4789 unsigned char *regblock;
4790
4791 regblock = traceframe_find_block_type (tframe->data,
4792 tframe->data_size,
4793 tfnum, 'R');
4794
4795 if (regblock == NULL)
4796 trace_debug ("traceframe %d has no register data", tfnum);
4797
4798 return regblock;
4799}
4800
4801/* Get registers from a traceframe. */
4802
4803int
4804fetch_traceframe_registers (int tfnum, struct regcache *regcache, int regnum)
4805{
4806 unsigned char *dataptr;
4807 struct tracepoint *tpoint;
4808 struct traceframe *tframe;
4809
4810 tframe = find_traceframe (tfnum);
4811
4812 if (tframe == NULL)
4813 {
4814 trace_debug ("traceframe %d not found", tfnum);
4815 return 1;
4816 }
4817
4818 dataptr = traceframe_find_regblock (tframe, tfnum);
4819 if (dataptr == NULL)
4820 {
1c79eb8a 4821 /* Mark registers unavailable. */
219f2f23
PA
4822 supply_regblock (regcache, NULL);
4823
4824 /* We can generally guess at a PC, although this will be
4825 misleading for while-stepping frames and multi-location
4826 tracepoints. */
4827 tpoint = find_next_tracepoint_by_number (NULL, tframe->tpnum);
4828 if (tpoint != NULL)
4829 regcache_write_pc (regcache, tpoint->address);
4830 }
4831 else
4832 supply_regblock (regcache, dataptr);
4833
4834 return 0;
4835}
4836
4837static CORE_ADDR
4838traceframe_get_pc (struct traceframe *tframe)
4839{
4840 struct regcache regcache;
4841 unsigned char *dataptr;
4842
4843 dataptr = traceframe_find_regblock (tframe, -1);
4844 if (dataptr == NULL)
4845 return 0;
4846
4847 init_register_cache (&regcache, dataptr);
4848 return regcache_read_pc (&regcache);
4849}
4850
4851/* Read a requested block of memory from a trace frame. */
4852
4853int
4854traceframe_read_mem (int tfnum, CORE_ADDR addr,
4855 unsigned char *buf, ULONGEST length,
4856 ULONGEST *nbytes)
4857{
4858 struct traceframe *tframe;
4859 unsigned char *database, *dataptr;
4860 unsigned int datasize;
4861 CORE_ADDR maddr;
4862 unsigned short mlen;
4863
4864 trace_debug ("traceframe_read_mem");
4865
4866 tframe = find_traceframe (tfnum);
4867
4868 if (!tframe)
4869 {
4870 trace_debug ("traceframe %d not found", tfnum);
4871 return 1;
4872 }
4873
4874 datasize = tframe->data_size;
4875 database = dataptr = &tframe->data[0];
4876
4877 /* Iterate through a traceframe's blocks, looking for memory. */
4878 while ((dataptr = traceframe_find_block_type (dataptr,
493e2a69
MS
4879 datasize
4880 - (dataptr - database),
219f2f23
PA
4881 tfnum, 'M')) != NULL)
4882 {
4883 memcpy (&maddr, dataptr, sizeof (maddr));
4884 dataptr += sizeof (maddr);
4885 memcpy (&mlen, dataptr, sizeof (mlen));
4886 dataptr += sizeof (mlen);
4887 trace_debug ("traceframe %d has %d bytes at %s",
4888 tfnum, mlen, paddress (maddr));
4889
764880b7
PA
4890 /* If the block includes the first part of the desired range,
4891 return as much it has; GDB will re-request the remainder,
4892 which might be in a different block of this trace frame. */
4893 if (maddr <= addr && addr < (maddr + mlen))
219f2f23 4894 {
764880b7
PA
4895 ULONGEST amt = (maddr + mlen) - addr;
4896 if (amt > length)
4897 amt = length;
4898
4899 memcpy (buf, dataptr + (addr - maddr), amt);
4900 *nbytes = amt;
219f2f23
PA
4901 return 0;
4902 }
4903
4904 /* Skip over this block. */
4905 dataptr += mlen;
4906 }
4907
4908 trace_debug ("traceframe %d has no memory data for the desired region",
4909 tfnum);
4910
4911 *nbytes = 0;
4912 return 0;
4913}
4914
4915static int
4916traceframe_read_tsv (int tsvnum, LONGEST *val)
4917{
4918 int tfnum;
4919 struct traceframe *tframe;
4920 unsigned char *database, *dataptr;
4921 unsigned int datasize;
4922 int vnum;
4923
4924 trace_debug ("traceframe_read_tsv");
4925
4926 tfnum = current_traceframe;
4927
4928 if (tfnum < 0)
4929 {
4930 trace_debug ("no current traceframe");
4931 return 1;
4932 }
4933
4934 tframe = find_traceframe (tfnum);
4935
4936 if (tframe == NULL)
4937 {
4938 trace_debug ("traceframe %d not found", tfnum);
4939 return 1;
4940 }
4941
4942 datasize = tframe->data_size;
4943 database = dataptr = &tframe->data[0];
4944
4945 /* Iterate through a traceframe's blocks, looking for the tsv. */
4946 while ((dataptr = traceframe_find_block_type (dataptr,
493e2a69
MS
4947 datasize
4948 - (dataptr - database),
219f2f23
PA
4949 tfnum, 'V')) != NULL)
4950 {
4951 memcpy (&vnum, dataptr, sizeof (vnum));
4952 dataptr += sizeof (vnum);
4953
4954 trace_debug ("traceframe %d has variable %d", tfnum, vnum);
4955
4956 /* Check that this is the variable we want. */
4957 if (tsvnum == vnum)
4958 {
4959 memcpy (val, dataptr, sizeof (*val));
4960 return 0;
4961 }
4962
4963 /* Skip over this block. */
4964 dataptr += sizeof (LONGEST);
4965 }
4966
4967 trace_debug ("traceframe %d has no data for variable %d",
4968 tfnum, tsvnum);
4969 return 1;
4970}
4971
0fb4aa4b
PA
4972/* Read a requested block of static tracepoint data from a trace
4973 frame. */
4974
4975int
4976traceframe_read_sdata (int tfnum, ULONGEST offset,
4977 unsigned char *buf, ULONGEST length,
4978 ULONGEST *nbytes)
4979{
4980 struct traceframe *tframe;
4981 unsigned char *database, *dataptr;
4982 unsigned int datasize;
4983 unsigned short mlen;
4984
4985 trace_debug ("traceframe_read_sdata");
4986
4987 tframe = find_traceframe (tfnum);
4988
4989 if (!tframe)
4990 {
4991 trace_debug ("traceframe %d not found", tfnum);
4992 return 1;
4993 }
4994
4995 datasize = tframe->data_size;
4996 database = &tframe->data[0];
4997
4998 /* Iterate through a traceframe's blocks, looking for static
4999 tracepoint data. */
5000 dataptr = traceframe_find_block_type (database, datasize,
5001 tfnum, 'S');
5002 if (dataptr != NULL)
5003 {
5004 memcpy (&mlen, dataptr, sizeof (mlen));
5005 dataptr += sizeof (mlen);
5006 if (offset < mlen)
5007 {
5008 if (offset + length > mlen)
5009 length = mlen - offset;
5010
5011 memcpy (buf, dataptr, length);
5012 *nbytes = length;
5013 }
5014 else
5015 *nbytes = 0;
5016 return 0;
5017 }
5018
5019 trace_debug ("traceframe %d has no static trace data", tfnum);
5020
5021 *nbytes = 0;
5022 return 0;
5023}
5024
b3b9301e
PA
5025/* Callback for traceframe_walk_blocks. Builds a traceframe-info
5026 object. DATA is pointer to a struct buffer holding the
5027 traceframe-info object being built. */
5028
5029static int
5030build_traceframe_info_xml (char blocktype, unsigned char *dataptr, void *data)
5031{
5032 struct buffer *buffer = data;
5033
5034 switch (blocktype)
5035 {
5036 case 'M':
5037 {
5038 unsigned short mlen;
5039 CORE_ADDR maddr;
5040
5041 memcpy (&maddr, dataptr, sizeof (maddr));
5042 dataptr += sizeof (maddr);
5043 memcpy (&mlen, dataptr, sizeof (mlen));
5044 dataptr += sizeof (mlen);
5045 buffer_xml_printf (buffer,
5046 "<memory start=\"0x%s\" length=\"0x%s\"/>\n",
5047 paddress (maddr), phex_nz (mlen, sizeof (mlen)));
5048 break;
5049 }
5050 case 'V':
5051 case 'R':
5052 case 'S':
5053 {
5054 break;
5055 }
5056 default:
5057 warning ("Unhandled trace block type (%d) '%c ' "
5058 "while building trace frame info.",
5059 blocktype, blocktype);
5060 break;
5061 }
5062
5063 return 0;
5064}
5065
5066/* Build a traceframe-info object for traceframe number TFNUM into
5067 BUFFER. */
5068
5069int
5070traceframe_read_info (int tfnum, struct buffer *buffer)
5071{
5072 struct traceframe *tframe;
5073
5074 trace_debug ("traceframe_read_info");
5075
5076 tframe = find_traceframe (tfnum);
5077
5078 if (!tframe)
5079 {
5080 trace_debug ("traceframe %d not found", tfnum);
5081 return 1;
5082 }
5083
5084 buffer_grow_str (buffer, "<traceframe-info>\n");
5085 traceframe_walk_blocks (tframe->data, tframe->data_size,
5086 tfnum, build_traceframe_info_xml, buffer);
5087 buffer_grow_str0 (buffer, "</traceframe-info>\n");
5088 return 0;
5089}
5090
fa593d66
PA
5091/* Return the first fast tracepoint whose jump pad contains PC. */
5092
5093static struct tracepoint *
5094fast_tracepoint_from_jump_pad_address (CORE_ADDR pc)
5095{
5096 struct tracepoint *tpoint;
5097
5098 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
5099 if (tpoint->type == fast_tracepoint)
5100 if (tpoint->jump_pad <= pc && pc < tpoint->jump_pad_end)
5101 return tpoint;
5102
5103 return NULL;
5104}
5105
5106/* Return GDBserver's tracepoint that matches the IP Agent's
5107 tracepoint object that lives at IPA_TPOINT_OBJ in the IP Agent's
5108 address space. */
5109
5110static struct tracepoint *
5111fast_tracepoint_from_ipa_tpoint_address (CORE_ADDR ipa_tpoint_obj)
5112{
5113 struct tracepoint *tpoint;
5114
5115 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
5116 if (tpoint->type == fast_tracepoint)
5117 if (tpoint->obj_addr_on_target == ipa_tpoint_obj)
5118 return tpoint;
5119
5120 return NULL;
5121}
5122
5123#endif
5124
5125/* The type of the object that is used to synchronize fast tracepoint
5126 collection. */
5127
5128typedef struct collecting_t
5129{
5130 /* The fast tracepoint number currently collecting. */
5131 uintptr_t tpoint;
5132
5133 /* A number that GDBserver can use to identify the thread that is
5134 presently holding the collect lock. This need not (and usually
5135 is not) the thread id, as getting the current thread ID usually
5136 requires a system call, which we want to avoid like the plague.
5137 Usually this is thread's TCB, found in the TLS (pseudo-)
5138 register, which is readable with a single insn on several
5139 architectures. */
5140 uintptr_t thread_area;
5141} collecting_t;
5142
5143#ifndef IN_PROCESS_AGENT
5144
5145void
5146force_unlock_trace_buffer (void)
5147{
5148 write_inferior_data_pointer (ipa_sym_addrs.addr_collecting, 0);
5149}
5150
5151/* Check if the thread identified by THREAD_AREA which is stopped at
5152 STOP_PC, is presently locking the fast tracepoint collection, and
5153 if so, gather some status of said collection. Returns 0 if the
5154 thread isn't collecting or in the jump pad at all. 1, if in the
5155 jump pad (or within gdb_collect) and hasn't executed the adjusted
5156 original insn yet (can set a breakpoint there and run to it). 2,
5157 if presently executing the adjusted original insn --- in which
5158 case, if we want to move the thread out of the jump pad, we need to
5159 single-step it until this function returns 0. */
5160
5161int
5162fast_tracepoint_collecting (CORE_ADDR thread_area,
5163 CORE_ADDR stop_pc,
5164 struct fast_tpoint_collect_status *status)
5165{
5166 CORE_ADDR ipa_collecting;
5167 CORE_ADDR ipa_gdb_jump_pad_buffer, ipa_gdb_jump_pad_buffer_end;
5168 struct tracepoint *tpoint;
5169 int needs_breakpoint;
5170
5171 /* The thread THREAD_AREA is either:
5172
5173 0. not collecting at all, not within the jump pad, or within
5174 gdb_collect or one of its callees.
5175
5176 1. in the jump pad and haven't reached gdb_collect
5177
5178 2. within gdb_collect (out of the jump pad) (collect is set)
5179
5180 3. we're in the jump pad, after gdb_collect having returned,
5181 possibly executing the adjusted insns.
5182
5183 For cases 1 and 3, `collecting' may or not be set. The jump pad
5184 doesn't have any complicated jump logic, so we can tell if the
5185 thread is executing the adjust original insn or not by just
5186 matching STOP_PC with known jump pad addresses. If we it isn't
5187 yet executing the original insn, set a breakpoint there, and let
5188 the thread run to it, so to quickly step over a possible (many
5189 insns) gdb_collect call. Otherwise, or when the breakpoint is
5190 hit, only a few (small number of) insns are left to be executed
5191 in the jump pad. Single-step the thread until it leaves the
5192 jump pad. */
5193
5194 again:
5195 tpoint = NULL;
5196 needs_breakpoint = 0;
5197 trace_debug ("fast_tracepoint_collecting");
5198
5199 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_jump_pad_buffer,
5200 &ipa_gdb_jump_pad_buffer))
5201 fatal ("error extracting `gdb_jump_pad_buffer'");
5202 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_jump_pad_buffer_end,
5203 &ipa_gdb_jump_pad_buffer_end))
5204 fatal ("error extracting `gdb_jump_pad_buffer_end'");
5205
493e2a69
MS
5206 if (ipa_gdb_jump_pad_buffer <= stop_pc
5207 && stop_pc < ipa_gdb_jump_pad_buffer_end)
fa593d66
PA
5208 {
5209 /* We can tell which tracepoint(s) the thread is collecting by
5210 matching the jump pad address back to the tracepoint. */
5211 tpoint = fast_tracepoint_from_jump_pad_address (stop_pc);
5212 if (tpoint == NULL)
5213 {
5214 warning ("in jump pad, but no matching tpoint?");
5215 return 0;
5216 }
5217 else
5218 {
5219 trace_debug ("in jump pad of tpoint (%d, %s); jump_pad(%s, %s); "
5220 "adj_insn(%s, %s)",
5221 tpoint->number, paddress (tpoint->address),
5222 paddress (tpoint->jump_pad),
5223 paddress (tpoint->jump_pad_end),
5224 paddress (tpoint->adjusted_insn_addr),
5225 paddress (tpoint->adjusted_insn_addr_end));
5226 }
5227
5228 /* Definitely in the jump pad. May or may not need
5229 fast-exit-jump-pad breakpoint. */
5230 if (tpoint->jump_pad <= stop_pc
5231 && stop_pc < tpoint->adjusted_insn_addr)
5232 needs_breakpoint = 1;
5233 }
5234 else
5235 {
5236 collecting_t ipa_collecting_obj;
5237
5238 /* If `collecting' is set/locked, then the THREAD_AREA thread
5239 may or not be the one holding the lock. We have to read the
5240 lock to find out. */
5241
5242 if (read_inferior_data_pointer (ipa_sym_addrs.addr_collecting,
5243 &ipa_collecting))
5244 {
5245 trace_debug ("fast_tracepoint_collecting:"
5246 " failed reading 'collecting' in the inferior");
5247 return 0;
5248 }
5249
5250 if (!ipa_collecting)
5251 {
5252 trace_debug ("fast_tracepoint_collecting: not collecting"
5253 " (and nobody is).");
5254 return 0;
5255 }
5256
5257 /* Some thread is collecting. Check which. */
5258 if (read_inferior_memory (ipa_collecting,
5259 (unsigned char *) &ipa_collecting_obj,
5260 sizeof (ipa_collecting_obj)) != 0)
5261 goto again;
5262
5263 if (ipa_collecting_obj.thread_area != thread_area)
5264 {
5265 trace_debug ("fast_tracepoint_collecting: not collecting "
5266 "(another thread is)");
5267 return 0;
5268 }
5269
5270 tpoint
5271 = fast_tracepoint_from_ipa_tpoint_address (ipa_collecting_obj.tpoint);
5272 if (tpoint == NULL)
5273 {
5274 warning ("fast_tracepoint_collecting: collecting, "
5275 "but tpoint %s not found?",
5276 paddress ((CORE_ADDR) ipa_collecting_obj.tpoint));
5277 return 0;
5278 }
5279
5280 /* The thread is within `gdb_collect', skip over the rest of
5281 fast tracepoint collection quickly using a breakpoint. */
5282 needs_breakpoint = 1;
5283 }
5284
5285 /* The caller wants a bit of status detail. */
5286 if (status != NULL)
5287 {
5288 status->tpoint_num = tpoint->number;
5289 status->tpoint_addr = tpoint->address;
5290 status->adjusted_insn_addr = tpoint->adjusted_insn_addr;
5291 status->adjusted_insn_addr_end = tpoint->adjusted_insn_addr_end;
5292 }
5293
5294 if (needs_breakpoint)
5295 {
5296 /* Hasn't executed the original instruction yet. Set breakpoint
5297 there, and wait till it's hit, then single-step until exiting
5298 the jump pad. */
5299
5300 trace_debug ("\
5301fast_tracepoint_collecting, returning continue-until-break at %s",
5302 paddress (tpoint->adjusted_insn_addr));
5303
5304 return 1; /* continue */
5305 }
5306 else
5307 {
5308 /* Just single-step until exiting the jump pad. */
5309
5310 trace_debug ("fast_tracepoint_collecting, returning "
5311 "need-single-step (%s-%s)",
5312 paddress (tpoint->adjusted_insn_addr),
5313 paddress (tpoint->adjusted_insn_addr_end));
5314
5315 return 2; /* single-step */
5316 }
5317}
5318
5319#endif
5320
5321#ifdef IN_PROCESS_AGENT
5322
5323/* The global fast tracepoint collect lock. Points to a collecting_t
5324 object built on the stack by the jump pad, if presently locked;
5325 NULL if it isn't locked. Note that this lock *must* be set while
5326 executing any *function other than the jump pad. See
5327 fast_tracepoint_collecting. */
5328static collecting_t * ATTR_USED collecting;
5329
5330/* This routine, called from the jump pad (in asm) is designed to be
5331 called from the jump pads of fast tracepoints, thus it is on the
5332 critical path. */
5333
5334IP_AGENT_EXPORT void ATTR_USED
5335gdb_collect (struct tracepoint *tpoint, unsigned char *regs)
5336{
5337 struct fast_tracepoint_ctx ctx;
5338
5339 /* Don't do anything until the trace run is completely set up. */
5340 if (!tracing)
5341 return;
5342
5343 ctx.base.type = fast_tracepoint;
5344 ctx.regs = regs;
5345 ctx.regcache_initted = 0;
5346 ctx.tpoint = tpoint;
5347
5348 /* Wrap the regblock in a register cache (in the stack, we don't
5349 want to malloc here). */
5350 ctx.regspace = alloca (register_cache_size ());
5351 if (ctx.regspace == NULL)
5352 {
5353 trace_debug ("Trace buffer block allocation failed, skipping");
5354 return;
5355 }
5356
5357 /* Test the condition if present, and collect if true. */
5358 if (tpoint->cond == NULL
5359 || condition_true_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
5360 tpoint))
5361 {
5362 collect_data_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
5363 tpoint->address, tpoint);
5364
5365 /* Note that this will cause original insns to be written back
5366 to where we jumped from, but that's OK because we're jumping
5367 back to the next whole instruction. This will go badly if
5368 instruction restoration is not atomic though. */
5369 if (stopping_tracepoint
5370 || trace_buffer_is_full
5371 || expr_eval_result != expr_eval_no_error)
5372 stop_tracing ();
5373 }
5374 else
5375 {
5376 /* If there was a condition and it evaluated to false, the only
5377 way we would stop tracing is if there was an error during
5378 condition expression evaluation. */
5379 if (expr_eval_result != expr_eval_no_error)
5380 stop_tracing ();
5381 }
5382}
5383
5384#endif
5385
5386#ifndef IN_PROCESS_AGENT
5387
6a271cae
PA
5388/* Bytecode compilation. */
5389
5390CORE_ADDR current_insn_ptr;
5391
5392int emit_error;
5393
5394struct bytecode_address
5395{
5396 int pc;
5397 CORE_ADDR address;
5398 int goto_pc;
5399 /* Offset and size of field to be modified in the goto block. */
5400 int from_offset, from_size;
5401 struct bytecode_address *next;
5402} *bytecode_address_table;
5403
5404CORE_ADDR
5405get_raw_reg_func_addr (void)
5406{
5407 return ipa_sym_addrs.addr_get_raw_reg;
5408}
5409
5410static void
5411emit_prologue (void)
5412{
5413 target_emit_ops ()->emit_prologue ();
5414}
5415
5416static void
5417emit_epilogue (void)
5418{
5419 target_emit_ops ()->emit_epilogue ();
5420}
5421
5422static void
5423emit_add (void)
5424{
5425 target_emit_ops ()->emit_add ();
5426}
5427
5428static void
5429emit_sub (void)
5430{
5431 target_emit_ops ()->emit_sub ();
5432}
5433
5434static void
5435emit_mul (void)
5436{
5437 target_emit_ops ()->emit_mul ();
5438}
5439
5440static void
5441emit_lsh (void)
5442{
5443 target_emit_ops ()->emit_lsh ();
5444}
5445
5446static void
5447emit_rsh_signed (void)
5448{
5449 target_emit_ops ()->emit_rsh_signed ();
5450}
5451
5452static void
5453emit_rsh_unsigned (void)
5454{
5455 target_emit_ops ()->emit_rsh_unsigned ();
5456}
5457
5458static void
5459emit_ext (int arg)
5460{
5461 target_emit_ops ()->emit_ext (arg);
5462}
5463
5464static void
5465emit_log_not (void)
5466{
5467 target_emit_ops ()->emit_log_not ();
5468}
5469
5470static void
5471emit_bit_and (void)
5472{
5473 target_emit_ops ()->emit_bit_and ();
5474}
5475
5476static void
5477emit_bit_or (void)
5478{
5479 target_emit_ops ()->emit_bit_or ();
5480}
5481
5482static void
5483emit_bit_xor (void)
5484{
5485 target_emit_ops ()->emit_bit_xor ();
5486}
5487
5488static void
5489emit_bit_not (void)
5490{
5491 target_emit_ops ()->emit_bit_not ();
5492}
5493
5494static void
5495emit_equal (void)
5496{
5497 target_emit_ops ()->emit_equal ();
5498}
5499
5500static void
5501emit_less_signed (void)
5502{
5503 target_emit_ops ()->emit_less_signed ();
5504}
5505
5506static void
5507emit_less_unsigned (void)
5508{
5509 target_emit_ops ()->emit_less_unsigned ();
5510}
5511
5512static void
5513emit_ref (int size)
5514{
5515 target_emit_ops ()->emit_ref (size);
5516}
5517
5518static void
5519emit_if_goto (int *offset_p, int *size_p)
5520{
5521 target_emit_ops ()->emit_if_goto (offset_p, size_p);
5522}
5523
5524static void
5525emit_goto (int *offset_p, int *size_p)
5526{
5527 target_emit_ops ()->emit_goto (offset_p, size_p);
5528}
5529
5530static void
5531write_goto_address (CORE_ADDR from, CORE_ADDR to, int size)
5532{
5533 target_emit_ops ()->write_goto_address (from, to, size);
5534}
5535
5536static void
4e29fb54 5537emit_const (LONGEST num)
6a271cae
PA
5538{
5539 target_emit_ops ()->emit_const (num);
5540}
5541
5542static void
5543emit_reg (int reg)
5544{
5545 target_emit_ops ()->emit_reg (reg);
5546}
5547
5548static void
5549emit_pop (void)
5550{
5551 target_emit_ops ()->emit_pop ();
5552}
5553
5554static void
5555emit_stack_flush (void)
5556{
5557 target_emit_ops ()->emit_stack_flush ();
5558}
5559
5560static void
5561emit_zero_ext (int arg)
5562{
5563 target_emit_ops ()->emit_zero_ext (arg);
5564}
5565
5566static void
5567emit_swap (void)
5568{
5569 target_emit_ops ()->emit_swap ();
5570}
5571
5572static void
5573emit_stack_adjust (int n)
5574{
5575 target_emit_ops ()->emit_stack_adjust (n);
5576}
5577
5578/* FN's prototype is `LONGEST(*fn)(int)'. */
5579
5580static void
5581emit_int_call_1 (CORE_ADDR fn, int arg1)
5582{
5583 target_emit_ops ()->emit_int_call_1 (fn, arg1);
5584}
5585
4e29fb54 5586/* FN's prototype is `void(*fn)(int,LONGEST)'. */
6a271cae
PA
5587
5588static void
5589emit_void_call_2 (CORE_ADDR fn, int arg1)
5590{
5591 target_emit_ops ()->emit_void_call_2 (fn, arg1);
5592}
5593
5594static enum eval_result_type compile_bytecodes (struct agent_expr *aexpr);
5595
5596static void
493e2a69
MS
5597compile_tracepoint_condition (struct tracepoint *tpoint,
5598 CORE_ADDR *jump_entry)
6a271cae
PA
5599{
5600 CORE_ADDR entry_point = *jump_entry;
5601 enum eval_result_type err;
5602
5603 trace_debug ("Starting condition compilation for tracepoint %d\n",
5604 tpoint->number);
5605
5606 /* Initialize the global pointer to the code being built. */
5607 current_insn_ptr = *jump_entry;
5608
5609 emit_prologue ();
5610
5611 err = compile_bytecodes (tpoint->cond);
5612
5613 if (err == expr_eval_no_error)
5614 {
5615 emit_epilogue ();
5616
5617 /* Record the beginning of the compiled code. */
5618 tpoint->compiled_cond = entry_point;
5619
5620 trace_debug ("Condition compilation for tracepoint %d complete\n",
5621 tpoint->number);
5622 }
5623 else
5624 {
5625 /* Leave the unfinished code in situ, but don't point to it. */
5626
5627 tpoint->compiled_cond = 0;
5628
5629 trace_debug ("Condition compilation for tracepoint %d failed, "
5630 "error code %d",
5631 tpoint->number, err);
5632 }
5633
5634 /* Update the code pointer passed in. Note that we do this even if
5635 the compile fails, so that we can look at the partial results
5636 instead of letting them be overwritten. */
5637 *jump_entry = current_insn_ptr;
5638
5639 /* Leave a gap, to aid dump decipherment. */
5640 *jump_entry += 16;
5641}
5642
5643/* Given an agent expression, turn it into native code. */
5644
5645static enum eval_result_type
5646compile_bytecodes (struct agent_expr *aexpr)
5647{
5648 int pc = 0;
5649 int done = 0;
5650 unsigned char op;
5651 int arg;
5652 /* This is only used to build 64-bit value for constants. */
5653 ULONGEST top;
5654 struct bytecode_address *aentry, *aentry2;
5655
5656#define UNHANDLED \
5657 do \
5658 { \
5659 trace_debug ("Cannot compile op 0x%x\n", op); \
5660 return expr_eval_unhandled_opcode; \
5661 } while (0)
5662
5663 if (aexpr->length == 0)
5664 {
5665 trace_debug ("empty agent expression\n");
5666 return expr_eval_empty_expression;
5667 }
5668
5669 bytecode_address_table = NULL;
5670
5671 while (!done)
5672 {
5673 op = aexpr->bytes[pc];
5674
5675 trace_debug ("About to compile op 0x%x, pc=%d\n", op, pc);
5676
5677 /* Record the compiled-code address of the bytecode, for use by
5678 jump instructions. */
5679 aentry = xmalloc (sizeof (struct bytecode_address));
5680 aentry->pc = pc;
5681 aentry->address = current_insn_ptr;
5682 aentry->goto_pc = -1;
5683 aentry->from_offset = aentry->from_size = 0;
5684 aentry->next = bytecode_address_table;
5685 bytecode_address_table = aentry;
5686
5687 ++pc;
5688
5689 emit_error = 0;
5690
5691 switch (op)
5692 {
5693 case gdb_agent_op_add:
5694 emit_add ();
5695 break;
5696
5697 case gdb_agent_op_sub:
5698 emit_sub ();
5699 break;
5700
5701 case gdb_agent_op_mul:
5702 emit_mul ();
5703 break;
5704
5705 case gdb_agent_op_div_signed:
5706 UNHANDLED;
5707 break;
5708
5709 case gdb_agent_op_div_unsigned:
5710 UNHANDLED;
5711 break;
5712
5713 case gdb_agent_op_rem_signed:
5714 UNHANDLED;
5715 break;
5716
5717 case gdb_agent_op_rem_unsigned:
5718 UNHANDLED;
5719 break;
5720
5721 case gdb_agent_op_lsh:
5722 emit_lsh ();
5723 break;
5724
5725 case gdb_agent_op_rsh_signed:
5726 emit_rsh_signed ();
5727 break;
5728
5729 case gdb_agent_op_rsh_unsigned:
5730 emit_rsh_unsigned ();
5731 break;
5732
5733 case gdb_agent_op_trace:
5734 UNHANDLED;
5735 break;
5736
5737 case gdb_agent_op_trace_quick:
5738 UNHANDLED;
5739 break;
5740
5741 case gdb_agent_op_log_not:
5742 emit_log_not ();
5743 break;
5744
5745 case gdb_agent_op_bit_and:
5746 emit_bit_and ();
5747 break;
5748
5749 case gdb_agent_op_bit_or:
5750 emit_bit_or ();
5751 break;
5752
5753 case gdb_agent_op_bit_xor:
5754 emit_bit_xor ();
5755 break;
5756
5757 case gdb_agent_op_bit_not:
5758 emit_bit_not ();
5759 break;
5760
5761 case gdb_agent_op_equal:
5762 emit_equal ();
5763 break;
5764
5765 case gdb_agent_op_less_signed:
5766 emit_less_signed ();
5767 break;
5768
5769 case gdb_agent_op_less_unsigned:
5770 emit_less_unsigned ();
5771 break;
5772
5773 case gdb_agent_op_ext:
5774 arg = aexpr->bytes[pc++];
5775 if (arg < (sizeof (LONGEST) * 8))
5776 emit_ext (arg);
5777 break;
5778
5779 case gdb_agent_op_ref8:
5780 emit_ref (1);
5781 break;
5782
5783 case gdb_agent_op_ref16:
5784 emit_ref (2);
5785 break;
5786
5787 case gdb_agent_op_ref32:
5788 emit_ref (4);
5789 break;
5790
5791 case gdb_agent_op_ref64:
5792 emit_ref (8);
5793 break;
5794
5795 case gdb_agent_op_if_goto:
5796 arg = aexpr->bytes[pc++];
5797 arg = (arg << 8) + aexpr->bytes[pc++];
5798 aentry->goto_pc = arg;
5799 emit_if_goto (&(aentry->from_offset), &(aentry->from_size));
5800 break;
5801
5802 case gdb_agent_op_goto:
5803 arg = aexpr->bytes[pc++];
5804 arg = (arg << 8) + aexpr->bytes[pc++];
5805 aentry->goto_pc = arg;
5806 emit_goto (&(aentry->from_offset), &(aentry->from_size));
5807 break;
5808
5809 case gdb_agent_op_const8:
5810 emit_stack_flush ();
5811 top = aexpr->bytes[pc++];
5812 emit_const (top);
5813 break;
5814
5815 case gdb_agent_op_const16:
5816 emit_stack_flush ();
5817 top = aexpr->bytes[pc++];
5818 top = (top << 8) + aexpr->bytes[pc++];
5819 emit_const (top);
5820 break;
5821
5822 case gdb_agent_op_const32:
5823 emit_stack_flush ();
5824 top = aexpr->bytes[pc++];
5825 top = (top << 8) + aexpr->bytes[pc++];
5826 top = (top << 8) + aexpr->bytes[pc++];
5827 top = (top << 8) + aexpr->bytes[pc++];
5828 emit_const (top);
5829 break;
5830
5831 case gdb_agent_op_const64:
5832 emit_stack_flush ();
5833 top = aexpr->bytes[pc++];
5834 top = (top << 8) + aexpr->bytes[pc++];
5835 top = (top << 8) + aexpr->bytes[pc++];
5836 top = (top << 8) + aexpr->bytes[pc++];
5837 top = (top << 8) + aexpr->bytes[pc++];
5838 top = (top << 8) + aexpr->bytes[pc++];
5839 top = (top << 8) + aexpr->bytes[pc++];
5840 top = (top << 8) + aexpr->bytes[pc++];
5841 emit_const (top);
5842 break;
5843
5844 case gdb_agent_op_reg:
5845 emit_stack_flush ();
5846 arg = aexpr->bytes[pc++];
5847 arg = (arg << 8) + aexpr->bytes[pc++];
5848 emit_reg (arg);
5849 break;
5850
5851 case gdb_agent_op_end:
5852 trace_debug ("At end of expression\n");
5853
5854 /* Assume there is one stack element left, and that it is
5855 cached in "top" where emit_epilogue can get to it. */
5856 emit_stack_adjust (1);
5857
5858 done = 1;
5859 break;
5860
5861 case gdb_agent_op_dup:
5862 /* In our design, dup is equivalent to stack flushing. */
5863 emit_stack_flush ();
5864 break;
5865
5866 case gdb_agent_op_pop:
5867 emit_pop ();
5868 break;
5869
5870 case gdb_agent_op_zero_ext:
5871 arg = aexpr->bytes[pc++];
5872 if (arg < (sizeof (LONGEST) * 8))
5873 emit_zero_ext (arg);
5874 break;
5875
5876 case gdb_agent_op_swap:
5877 emit_swap ();
5878 break;
5879
5880 case gdb_agent_op_getv:
5881 emit_stack_flush ();
5882 arg = aexpr->bytes[pc++];
5883 arg = (arg << 8) + aexpr->bytes[pc++];
5884 emit_int_call_1 (ipa_sym_addrs.addr_get_trace_state_variable_value,
5885 arg);
5886 break;
5887
5888 case gdb_agent_op_setv:
5889 arg = aexpr->bytes[pc++];
5890 arg = (arg << 8) + aexpr->bytes[pc++];
5891 emit_void_call_2 (ipa_sym_addrs.addr_set_trace_state_variable_value,
5892 arg);
5893 break;
5894
5895 case gdb_agent_op_tracev:
5896 UNHANDLED;
5897 break;
5898
5899 /* GDB never (currently) generates any of these ops. */
5900 case gdb_agent_op_float:
5901 case gdb_agent_op_ref_float:
5902 case gdb_agent_op_ref_double:
5903 case gdb_agent_op_ref_long_double:
5904 case gdb_agent_op_l_to_d:
5905 case gdb_agent_op_d_to_l:
5906 case gdb_agent_op_trace16:
5907 UNHANDLED;
5908 break;
5909
5910 default:
5911 trace_debug ("Agent expression op 0x%x not recognized\n", op);
5912 /* Don't struggle on, things will just get worse. */
5913 return expr_eval_unrecognized_opcode;
5914 }
5915
5916 /* This catches errors that occur in target-specific code
5917 emission. */
5918 if (emit_error)
5919 {
5920 trace_debug ("Error %d while emitting code for %s\n",
94d5e490 5921 emit_error, gdb_agent_op_name (op));
6a271cae
PA
5922 return expr_eval_unhandled_opcode;
5923 }
5924
94d5e490 5925 trace_debug ("Op %s compiled\n", gdb_agent_op_name (op));
6a271cae
PA
5926 }
5927
5928 /* Now fill in real addresses as goto destinations. */
5929 for (aentry = bytecode_address_table; aentry; aentry = aentry->next)
5930 {
5931 int written = 0;
5932
5933 if (aentry->goto_pc < 0)
5934 continue;
5935
5936 /* Find the location that we are going to, and call back into
5937 target-specific code to write the actual address or
5938 displacement. */
5939 for (aentry2 = bytecode_address_table; aentry2; aentry2 = aentry2->next)
5940 {
5941 if (aentry2->pc == aentry->goto_pc)
5942 {
5943 trace_debug ("Want to jump from %s to %s\n",
5944 paddress (aentry->address),
5945 paddress (aentry2->address));
5946 write_goto_address (aentry->address + aentry->from_offset,
5947 aentry2->address, aentry->from_size);
5948 written = 1;
5949 break;
5950 }
5951 }
5952
5953 /* Error out if we didn't find a destination. */
5954 if (!written)
5955 {
5956 trace_debug ("Destination of goto %d not found\n",
5957 aentry->goto_pc);
5958 return expr_eval_invalid_goto;
5959 }
5960 }
5961
5962 return expr_eval_no_error;
5963}
5964
fa593d66
PA
5965/* We'll need to adjust these when we consider bi-arch setups, and big
5966 endian machines. */
5967
5968static int
5969write_inferior_data_ptr (CORE_ADDR where, CORE_ADDR ptr)
5970{
5971 return write_inferior_memory (where,
5972 (unsigned char *) &ptr, sizeof (void *));
5973}
5974
5975/* The base pointer of the IPA's heap. This is the only memory the
5976 IPA is allowed to use. The IPA should _not_ call the inferior's
5977 `malloc' during operation. That'd be slow, and, most importantly,
5978 it may not be safe. We may be collecting a tracepoint in a signal
5979 handler, for example. */
5980static CORE_ADDR target_tp_heap;
5981
5982/* Allocate at least SIZE bytes of memory from the IPA heap, aligned
5983 to 8 bytes. */
5984
5985static CORE_ADDR
5986target_malloc (ULONGEST size)
5987{
5988 CORE_ADDR ptr;
5989
5990 if (target_tp_heap == 0)
5991 {
5992 /* We have the pointer *address*, need what it points to. */
5993 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_tp_heap_buffer,
5994 &target_tp_heap))
5995 fatal ("could get target heap head pointer");
5996 }
5997
5998 ptr = target_tp_heap;
5999 target_tp_heap += size;
6000
6001 /* Pad to 8-byte alignment. */
6002 target_tp_heap = ((target_tp_heap + 7) & ~0x7);
6003
6004 return ptr;
6005}
6006
6007static CORE_ADDR
6008download_agent_expr (struct agent_expr *expr)
6009{
6010 CORE_ADDR expr_addr;
6011 CORE_ADDR expr_bytes;
6012
6013 expr_addr = target_malloc (sizeof (*expr));
6014 write_inferior_memory (expr_addr, (unsigned char *) expr, sizeof (*expr));
6015
6016 expr_bytes = target_malloc (expr->length);
6017 write_inferior_data_ptr (expr_addr + offsetof (struct agent_expr, bytes),
6018 expr_bytes);
6019 write_inferior_memory (expr_bytes, expr->bytes, expr->length);
6020
6021 return expr_addr;
6022}
6023
6024/* Align V up to N bits. */
6025#define UALIGN(V, N) (((V) + ((N) - 1)) & ~((N) - 1))
6026
6027static void
6028download_tracepoints (void)
6029{
6030 CORE_ADDR tpptr = 0, prev_tpptr = 0;
6031 struct tracepoint *tpoint;
6032
6033 /* Start out empty. */
6034 write_inferior_data_ptr (ipa_sym_addrs.addr_tracepoints, 0);
6035
6036 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
6037 {
6038 struct tracepoint target_tracepoint;
6039
0fb4aa4b
PA
6040 if (tpoint->type != fast_tracepoint
6041 && tpoint->type != static_tracepoint)
fa593d66
PA
6042 continue;
6043
6a271cae
PA
6044 /* Maybe download a compiled condition. */
6045 if (tpoint->cond != NULL && target_emit_ops () != NULL)
6046 {
6047 CORE_ADDR jentry, jump_entry;
6048
6049 jentry = jump_entry = get_jump_space_head ();
6050
6051 if (tpoint->cond != NULL)
6052 {
6053 /* Pad to 8-byte alignment. (needed?) */
6054 /* Actually this should be left for the target to
6055 decide. */
6056 jentry = UALIGN (jentry, 8);
6057
6058 compile_tracepoint_condition (tpoint, &jentry);
6059 }
6060
6061 /* Pad to 8-byte alignment. */
6062 jentry = UALIGN (jentry, 8);
6063 claim_jump_space (jentry - jump_entry);
6064 }
6065
fa593d66
PA
6066 target_tracepoint = *tpoint;
6067
6068 prev_tpptr = tpptr;
6069 tpptr = target_malloc (sizeof (*tpoint));
6070 tpoint->obj_addr_on_target = tpptr;
6071
6072 if (tpoint == tracepoints)
6073 {
6074 /* First object in list, set the head pointer in the
6075 inferior. */
6076 write_inferior_data_ptr (ipa_sym_addrs.addr_tracepoints, tpptr);
6077 }
6078 else
6079 {
6080 write_inferior_data_ptr (prev_tpptr + offsetof (struct tracepoint,
6081 next),
6082 tpptr);
6083 }
6084
6085 /* Write the whole object. We'll fix up its pointers in a bit.
6086 Assume no next for now. This is fixed up above on the next
6087 iteration, if there's any. */
6088 target_tracepoint.next = NULL;
6089 /* Need to clear this here too, since we're downloading the
6090 tracepoints before clearing our own copy. */
6091 target_tracepoint.hit_count = 0;
6092
6093 write_inferior_memory (tpptr, (unsigned char *) &target_tracepoint,
6094 sizeof (target_tracepoint));
6095
6096 if (tpoint->cond)
6097 write_inferior_data_ptr (tpptr + offsetof (struct tracepoint,
6098 cond),
6099 download_agent_expr (tpoint->cond));
6100
6101 if (tpoint->numactions)
6102 {
6103 int i;
6104 CORE_ADDR actions_array;
6105
6106 /* The pointers array. */
6107 actions_array
6108 = target_malloc (sizeof (*tpoint->actions) * tpoint->numactions);
6109 write_inferior_data_ptr (tpptr + offsetof (struct tracepoint,
6110 actions),
6111 actions_array);
6112
6113 /* Now for each pointer, download the action. */
6114 for (i = 0; i < tpoint->numactions; i++)
6115 {
6116 CORE_ADDR ipa_action = 0;
6117 struct tracepoint_action *action = tpoint->actions[i];
6118
6119 switch (action->type)
6120 {
6121 case 'M':
6122 ipa_action
6123 = target_malloc (sizeof (struct collect_memory_action));
6124 write_inferior_memory (ipa_action,
6125 (unsigned char *) action,
6126 sizeof (struct collect_memory_action));
6127 break;
6128 case 'R':
6129 ipa_action
6130 = target_malloc (sizeof (struct collect_registers_action));
6131 write_inferior_memory (ipa_action,
6132 (unsigned char *) action,
6133 sizeof (struct collect_registers_action));
6134 break;
6135 case 'X':
6136 {
6137 CORE_ADDR expr;
6138 struct eval_expr_action *eaction
6139 = (struct eval_expr_action *) action;
6140
6141 ipa_action = target_malloc (sizeof (*eaction));
6142 write_inferior_memory (ipa_action,
6143 (unsigned char *) eaction,
6144 sizeof (*eaction));
6145
6146 expr = download_agent_expr (eaction->expr);
6147 write_inferior_data_ptr
6148 (ipa_action + offsetof (struct eval_expr_action, expr),
6149 expr);
6150 break;
6151 }
0fb4aa4b
PA
6152 case 'L':
6153 ipa_action = target_malloc
6154 (sizeof (struct collect_static_trace_data_action));
6155 write_inferior_memory
6156 (ipa_action,
6157 (unsigned char *) action,
6158 sizeof (struct collect_static_trace_data_action));
6159 break;
fa593d66
PA
6160 default:
6161 trace_debug ("unknown trace action '%c', ignoring",
6162 action->type);
6163 break;
6164 }
6165
6166 if (ipa_action != 0)
6167 write_inferior_data_ptr
6168 (actions_array + i * sizeof (sizeof (*tpoint->actions)),
6169 ipa_action);
6170 }
6171 }
6172 }
6173}
6174
6175static void
6176download_trace_state_variables (void)
6177{
6178 CORE_ADDR ptr = 0, prev_ptr = 0;
6179 struct trace_state_variable *tsv;
6180
6181 /* Start out empty. */
6182 write_inferior_data_ptr (ipa_sym_addrs.addr_trace_state_variables, 0);
6183
6184 for (tsv = trace_state_variables; tsv != NULL; tsv = tsv->next)
6185 {
6186 struct trace_state_variable target_tsv;
6187
6188 /* TSV's with a getter have been initialized equally in both the
6189 inferior and GDBserver. Skip them. */
6190 if (tsv->getter != NULL)
6191 continue;
6192
6193 target_tsv = *tsv;
6194
6195 prev_ptr = ptr;
6196 ptr = target_malloc (sizeof (*tsv));
6197
6198 if (tsv == trace_state_variables)
6199 {
6200 /* First object in list, set the head pointer in the
6201 inferior. */
6202
6203 write_inferior_data_ptr (ipa_sym_addrs.addr_trace_state_variables,
6204 ptr);
6205 }
6206 else
6207 {
6208 write_inferior_data_ptr (prev_ptr
6209 + offsetof (struct trace_state_variable,
6210 next),
6211 ptr);
6212 }
6213
6214 /* Write the whole object. We'll fix up its pointers in a bit.
6215 Assume no next, fixup when needed. */
6216 target_tsv.next = NULL;
6217
6218 write_inferior_memory (ptr, (unsigned char *) &target_tsv,
6219 sizeof (target_tsv));
6220
6221 if (tsv->name != NULL)
6222 {
6223 size_t size = strlen (tsv->name) + 1;
6224 CORE_ADDR name_addr = target_malloc (size);
6225 write_inferior_memory (name_addr,
6226 (unsigned char *) tsv->name, size);
6227 write_inferior_data_ptr (ptr
6228 + offsetof (struct trace_state_variable,
6229 name),
6230 name_addr);
6231 }
6232
6233 if (tsv->getter != NULL)
6234 {
6235 fatal ("what to do with these?");
6236 }
6237 }
6238
6239 if (prev_ptr != 0)
6240 {
6241 /* Fixup the next pointer in the last item in the list. */
493e2a69
MS
6242 write_inferior_data_ptr (prev_ptr
6243 + offsetof (struct trace_state_variable,
6244 next), 0);
fa593d66
PA
6245 }
6246}
6247
6248/* Upload complete trace frames out of the IP Agent's trace buffer
6249 into GDBserver's trace buffer. This always uploads either all or
6250 no trace frames. This is the counter part of
6251 `trace_alloc_trace_buffer'. See its description of the atomic
6252 synching mechanism. */
6253
6254static void
6255upload_fast_traceframes (void)
6256{
6257 unsigned int ipa_traceframe_read_count, ipa_traceframe_write_count;
6258 unsigned int ipa_traceframe_read_count_racy, ipa_traceframe_write_count_racy;
6259 CORE_ADDR tf;
6260 struct ipa_trace_buffer_control ipa_trace_buffer_ctrl;
6261 unsigned int curr_tbctrl_idx;
6262 unsigned int ipa_trace_buffer_ctrl_curr;
6263 unsigned int ipa_trace_buffer_ctrl_curr_old;
6264 CORE_ADDR ipa_trace_buffer_ctrl_addr;
6265 struct breakpoint *about_to_request_buffer_space_bkpt;
6266 CORE_ADDR ipa_trace_buffer_lo;
6267 CORE_ADDR ipa_trace_buffer_hi;
6268
6269 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_read_count,
6270 &ipa_traceframe_read_count_racy))
6271 {
6272 /* This will happen in most targets if the current thread is
6273 running. */
6274 return;
6275 }
6276
6277 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_write_count,
6278 &ipa_traceframe_write_count_racy))
6279 return;
6280
6281 trace_debug ("ipa_traceframe_count (racy area): %d (w=%d, r=%d)",
493e2a69
MS
6282 ipa_traceframe_write_count_racy
6283 - ipa_traceframe_read_count_racy,
6284 ipa_traceframe_write_count_racy,
6285 ipa_traceframe_read_count_racy);
fa593d66
PA
6286
6287 if (ipa_traceframe_write_count_racy == ipa_traceframe_read_count_racy)
6288 return;
6289
6290 about_to_request_buffer_space_bkpt
6291 = set_breakpoint_at (ipa_sym_addrs.addr_about_to_request_buffer_space,
6292 NULL);
6293
6294 if (read_inferior_uinteger (ipa_sym_addrs.addr_trace_buffer_ctrl_curr,
6295 &ipa_trace_buffer_ctrl_curr))
6296 return;
6297
6298 ipa_trace_buffer_ctrl_curr_old = ipa_trace_buffer_ctrl_curr;
6299
6300 curr_tbctrl_idx = ipa_trace_buffer_ctrl_curr & ~GDBSERVER_FLUSH_COUNT_MASK;
6301
6302 {
6303 unsigned int prev, counter;
6304
6305 /* Update the token, with new counters, and the GDBserver stamp
6306 bit. Alway reuse the current TBC index. */
6307 prev = ipa_trace_buffer_ctrl_curr & 0x0007ff00;
6308 counter = (prev + 0x100) & 0x0007ff00;
6309
6310 ipa_trace_buffer_ctrl_curr = (0x80000000
6311 | (prev << 12)
6312 | counter
6313 | curr_tbctrl_idx);
6314 }
6315
6316 if (write_inferior_uinteger (ipa_sym_addrs.addr_trace_buffer_ctrl_curr,
6317 ipa_trace_buffer_ctrl_curr))
6318 return;
6319
6320 trace_debug ("Lib: Committed %08x -> %08x",
6321 ipa_trace_buffer_ctrl_curr_old,
6322 ipa_trace_buffer_ctrl_curr);
6323
6324 /* Re-read these, now that we've installed the
6325 `about_to_request_buffer_space' breakpoint/lock. A thread could
6326 have finished a traceframe between the last read of these
6327 counters and setting the breakpoint above. If we start
6328 uploading, we never want to leave this function with
6329 traceframe_read_count != 0, otherwise, GDBserver could end up
6330 incrementing the counter tokens more than once (due to event loop
6331 nesting), which would break the IP agent's "effective" detection
6332 (see trace_alloc_trace_buffer). */
6333 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_read_count,
6334 &ipa_traceframe_read_count))
6335 return;
6336 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_write_count,
6337 &ipa_traceframe_write_count))
6338 return;
6339
6340 if (debug_threads)
6341 {
6342 trace_debug ("ipa_traceframe_count (blocked area): %d (w=%d, r=%d)",
6343 ipa_traceframe_write_count - ipa_traceframe_read_count,
6344 ipa_traceframe_write_count, ipa_traceframe_read_count);
6345
6346 if (ipa_traceframe_write_count != ipa_traceframe_write_count_racy
6347 || ipa_traceframe_read_count != ipa_traceframe_read_count_racy)
6348 trace_debug ("note that ipa_traceframe_count's parts changed");
6349 }
6350
6351 /* Get the address of the current TBC object (the IP agent has an
6352 array of 3 such objects). The index is stored in the TBC
6353 token. */
6354 ipa_trace_buffer_ctrl_addr = ipa_sym_addrs.addr_trace_buffer_ctrl;
6355 ipa_trace_buffer_ctrl_addr
6356 += sizeof (struct ipa_trace_buffer_control) * curr_tbctrl_idx;
6357
6358 if (read_inferior_memory (ipa_trace_buffer_ctrl_addr,
6359 (unsigned char *) &ipa_trace_buffer_ctrl,
6360 sizeof (struct ipa_trace_buffer_control)))
6361 return;
6362
6363 if (read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_lo,
6364 &ipa_trace_buffer_lo))
6365 return;
6366 if (read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_hi,
6367 &ipa_trace_buffer_hi))
6368 return;
6369
6370 /* Offsets are easier to grok for debugging than raw addresses,
6371 especially for the small trace buffer sizes that are useful for
6372 testing. */
6373 trace_debug ("Lib: Trace buffer [%d] start=%d free=%d "
6374 "endfree=%d wrap=%d hi=%d",
6375 curr_tbctrl_idx,
6376 (int) (ipa_trace_buffer_ctrl.start - ipa_trace_buffer_lo),
6377 (int) (ipa_trace_buffer_ctrl.free - ipa_trace_buffer_lo),
6378 (int) (ipa_trace_buffer_ctrl.end_free - ipa_trace_buffer_lo),
6379 (int) (ipa_trace_buffer_ctrl.wrap - ipa_trace_buffer_lo),
6380 (int) (ipa_trace_buffer_hi - ipa_trace_buffer_lo));
6381
6382 /* Note that the IPA's buffer is always circular. */
6383
6384#define IPA_FIRST_TRACEFRAME() (ipa_trace_buffer_ctrl.start)
6385
6386#define IPA_NEXT_TRACEFRAME_1(TF, TFOBJ) \
6387 ((TF) + sizeof (struct traceframe) + (TFOBJ)->data_size)
6388
6389#define IPA_NEXT_TRACEFRAME(TF, TFOBJ) \
6390 (IPA_NEXT_TRACEFRAME_1 (TF, TFOBJ) \
6391 - ((IPA_NEXT_TRACEFRAME_1 (TF, TFOBJ) >= ipa_trace_buffer_ctrl.wrap) \
6392 ? (ipa_trace_buffer_ctrl.wrap - ipa_trace_buffer_lo) \
6393 : 0))
6394
6395 tf = IPA_FIRST_TRACEFRAME ();
6396
6397 while (ipa_traceframe_write_count - ipa_traceframe_read_count)
6398 {
6399 struct tracepoint *tpoint;
6400 struct traceframe *tframe;
6401 unsigned char *block;
6402 struct traceframe ipa_tframe;
6403
6404 if (read_inferior_memory (tf, (unsigned char *) &ipa_tframe,
6405 offsetof (struct traceframe, data)))
6406 error ("Uploading: couldn't read traceframe at %s\n", paddress (tf));
6407
6408 if (ipa_tframe.tpnum == 0)
6409 fatal ("Uploading: No (more) fast traceframes, but "
6410 "ipa_traceframe_count == %u??\n",
6411 ipa_traceframe_write_count - ipa_traceframe_read_count);
6412
6413 /* Note that this will be incorrect for multi-location
6414 tracepoints... */
6415 tpoint = find_next_tracepoint_by_number (NULL, ipa_tframe.tpnum);
6416
6417 tframe = add_traceframe (tpoint);
6418 if (tframe == NULL)
6419 {
6420 trace_buffer_is_full = 1;
6421 trace_debug ("Uploading: trace buffer is full");
6422 }
6423 else
6424 {
6425 /* Copy the whole set of blocks in one go for now. FIXME:
6426 split this in smaller blocks. */
6427 block = add_traceframe_block (tframe, ipa_tframe.data_size);
6428 if (block != NULL)
6429 {
493e2a69
MS
6430 if (read_inferior_memory (tf
6431 + offsetof (struct traceframe, data),
fa593d66
PA
6432 block, ipa_tframe.data_size))
6433 error ("Uploading: Couldn't read traceframe data at %s\n",
6434 paddress (tf + offsetof (struct traceframe, data)));
6435 }
6436
6437 trace_debug ("Uploading: traceframe didn't fit");
6438 finish_traceframe (tframe);
6439 }
6440
6441 tf = IPA_NEXT_TRACEFRAME (tf, &ipa_tframe);
6442
6443 /* If we freed the traceframe that wrapped around, go back
6444 to the non-wrap case. */
6445 if (tf < ipa_trace_buffer_ctrl.start)
6446 {
6447 trace_debug ("Lib: Discarding past the wraparound");
6448 ipa_trace_buffer_ctrl.wrap = ipa_trace_buffer_hi;
6449 }
6450 ipa_trace_buffer_ctrl.start = tf;
6451 ipa_trace_buffer_ctrl.end_free = ipa_trace_buffer_ctrl.start;
6452 ++ipa_traceframe_read_count;
6453
6454 if (ipa_trace_buffer_ctrl.start == ipa_trace_buffer_ctrl.free
6455 && ipa_trace_buffer_ctrl.start == ipa_trace_buffer_ctrl.end_free)
6456 {
6457 trace_debug ("Lib: buffer is fully empty. "
6458 "Trace buffer [%d] start=%d free=%d endfree=%d",
6459 curr_tbctrl_idx,
6460 (int) (ipa_trace_buffer_ctrl.start
6461 - ipa_trace_buffer_lo),
6462 (int) (ipa_trace_buffer_ctrl.free
6463 - ipa_trace_buffer_lo),
6464 (int) (ipa_trace_buffer_ctrl.end_free
6465 - ipa_trace_buffer_lo));
6466
6467 ipa_trace_buffer_ctrl.start = ipa_trace_buffer_lo;
6468 ipa_trace_buffer_ctrl.free = ipa_trace_buffer_lo;
6469 ipa_trace_buffer_ctrl.end_free = ipa_trace_buffer_hi;
6470 ipa_trace_buffer_ctrl.wrap = ipa_trace_buffer_hi;
6471 }
6472
6473 trace_debug ("Uploaded a traceframe\n"
6474 "Lib: Trace buffer [%d] start=%d free=%d "
6475 "endfree=%d wrap=%d hi=%d",
6476 curr_tbctrl_idx,
6477 (int) (ipa_trace_buffer_ctrl.start - ipa_trace_buffer_lo),
6478 (int) (ipa_trace_buffer_ctrl.free - ipa_trace_buffer_lo),
493e2a69
MS
6479 (int) (ipa_trace_buffer_ctrl.end_free
6480 - ipa_trace_buffer_lo),
fa593d66
PA
6481 (int) (ipa_trace_buffer_ctrl.wrap - ipa_trace_buffer_lo),
6482 (int) (ipa_trace_buffer_hi - ipa_trace_buffer_lo));
6483 }
6484
6485 if (write_inferior_memory (ipa_trace_buffer_ctrl_addr,
6486 (unsigned char *) &ipa_trace_buffer_ctrl,
6487 sizeof (struct ipa_trace_buffer_control)))
6488 return;
6489
6490 write_inferior_integer (ipa_sym_addrs.addr_traceframe_read_count,
6491 ipa_traceframe_read_count);
6492
6493 trace_debug ("Done uploading traceframes [%d]\n", curr_tbctrl_idx);
6494
6495 pause_all (1);
6496 cancel_breakpoints ();
6497
6498 delete_breakpoint (about_to_request_buffer_space_bkpt);
6499 about_to_request_buffer_space_bkpt = NULL;
6500
6501 unpause_all (1);
6502
6503 if (trace_buffer_is_full)
6504 stop_tracing ();
6505}
6506#endif
6507
6508#ifdef IN_PROCESS_AGENT
6509
0fb4aa4b
PA
6510IP_AGENT_EXPORT int ust_loaded;
6511IP_AGENT_EXPORT char cmd_buf[CMD_BUF_SIZE];
fa593d66 6512
0fb4aa4b 6513#ifdef HAVE_UST
fa593d66 6514
0fb4aa4b
PA
6515/* Static tracepoints. */
6516
6517/* UST puts a "struct tracepoint" in the global namespace, which
6518 conflicts with our tracepoint. Arguably, being a library, it
6519 shouldn't take ownership of such a generic name. We work around it
6520 here. */
6521#define tracepoint ust_tracepoint
6522#include <ust/ust.h>
6523#undef tracepoint
6524
6525extern int serialize_to_text (char *outbuf, int bufsize,
6526 const char *fmt, va_list ap);
6527
6528#define GDB_PROBE_NAME "gdb"
6529
6530/* We dynamically search for the UST symbols instead of linking them
6531 in. This lets the user decide if the application uses static
6532 tracepoints, instead of always pulling libust.so in. This vector
6533 holds pointers to all functions we care about. */
6534
6535static struct
fa593d66 6536{
0fb4aa4b
PA
6537 int (*serialize_to_text) (char *outbuf, int bufsize,
6538 const char *fmt, va_list ap);
6539
6540 int (*ltt_probe_register) (struct ltt_available_probe *pdata);
6541 int (*ltt_probe_unregister) (struct ltt_available_probe *pdata);
6542
6543 int (*ltt_marker_connect) (const char *channel, const char *mname,
6544 const char *pname);
6545 int (*ltt_marker_disconnect) (const char *channel, const char *mname,
6546 const char *pname);
6547
6548 void (*marker_iter_start) (struct marker_iter *iter);
6549 void (*marker_iter_next) (struct marker_iter *iter);
6550 void (*marker_iter_stop) (struct marker_iter *iter);
6551 void (*marker_iter_reset) (struct marker_iter *iter);
6552} ust_ops;
6553
6554#include <dlfcn.h>
6555
6556/* Cast through typeof to catch incompatible API changes. Since UST
6557 only builds with gcc, we can freely use gcc extensions here
6558 too. */
6559#define GET_UST_SYM(SYM) \
6560 do \
6561 { \
6562 if (ust_ops.SYM == NULL) \
6563 ust_ops.SYM = (typeof (&SYM)) dlsym (RTLD_DEFAULT, #SYM); \
6564 if (ust_ops.SYM == NULL) \
6565 return 0; \
6566 } while (0)
6567
6568#define USTF(SYM) ust_ops.SYM
6569
6570/* Get pointers to all libust.so functions we care about. */
6571
6572static int
6573dlsym_ust (void)
6574{
6575 GET_UST_SYM (serialize_to_text);
6576
6577 GET_UST_SYM (ltt_probe_register);
6578 GET_UST_SYM (ltt_probe_unregister);
6579 GET_UST_SYM (ltt_marker_connect);
6580 GET_UST_SYM (ltt_marker_disconnect);
6581
6582 GET_UST_SYM (marker_iter_start);
6583 GET_UST_SYM (marker_iter_next);
6584 GET_UST_SYM (marker_iter_stop);
6585 GET_UST_SYM (marker_iter_reset);
6586
6587 ust_loaded = 1;
6588 return 1;
fa593d66
PA
6589}
6590
0fb4aa4b
PA
6591/* Given an UST marker, return the matching gdb static tracepoint.
6592 The match is done by address. */
6593
6594static struct tracepoint *
6595ust_marker_to_static_tracepoint (const struct marker *mdata)
6596{
6597 struct tracepoint *tpoint;
6598
6599 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
6600 {
6601 if (!tpoint->enabled || tpoint->type != static_tracepoint)
6602 continue;
6603
6604 if (tpoint->address == (uintptr_t) mdata->location)
6605 return tpoint;
6606 }
6607
6608 return NULL;
6609}
6610
6611/* The probe function we install on lttng/ust markers. Whenever a
6612 probed ust marker is hit, this function is called. This is similar
6613 to gdb_collect, only for static tracepoints, instead of fast
6614 tracepoints. */
6615
6616static void
6617gdb_probe (const struct marker *mdata, void *probe_private,
6618 struct registers *regs, void *call_private,
6619 const char *fmt, va_list *args)
6620{
6621 struct tracepoint *tpoint;
6622 struct static_tracepoint_ctx ctx;
6623
6624 /* Don't do anything until the trace run is completely set up. */
6625 if (!tracing)
6626 {
6627 trace_debug ("gdb_probe: not tracing\n");
6628 return;
6629 }
6630
6631 ctx.base.type = static_tracepoint;
6632 ctx.regcache_initted = 0;
6633 ctx.regs = regs;
6634 ctx.fmt = fmt;
6635 ctx.args = args;
6636
6637 /* Wrap the regblock in a register cache (in the stack, we don't
6638 want to malloc here). */
6639 ctx.regspace = alloca (register_cache_size ());
6640 if (ctx.regspace == NULL)
6641 {
6642 trace_debug ("Trace buffer block allocation failed, skipping");
6643 return;
6644 }
6645
6646 tpoint = ust_marker_to_static_tracepoint (mdata);
6647 if (tpoint == NULL)
6648 {
6649 trace_debug ("gdb_probe: marker not known: "
6650 "loc:0x%p, ch:\"%s\",n:\"%s\",f:\"%s\"",
6651 mdata->location, mdata->channel,
6652 mdata->name, mdata->format);
6653 return;
6654 }
6655
6656 ctx.tpoint = tpoint;
6657
6658 trace_debug ("gdb_probe: collecting marker: "
6659 "loc:0x%p, ch:\"%s\",n:\"%s\",f:\"%s\"",
6660 mdata->location, mdata->channel,
6661 mdata->name, mdata->format);
6662
6663 /* Test the condition if present, and collect if true. */
6664 if (tpoint->cond == NULL
6665 || condition_true_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
6666 tpoint))
6667 {
6668 collect_data_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
6669 tpoint->address, tpoint);
6670
6671 if (stopping_tracepoint
6672 || trace_buffer_is_full
6673 || expr_eval_result != expr_eval_no_error)
6674 stop_tracing ();
6675 }
6676 else
6677 {
6678 /* If there was a condition and it evaluated to false, the only
6679 way we would stop tracing is if there was an error during
6680 condition expression evaluation. */
6681 if (expr_eval_result != expr_eval_no_error)
6682 stop_tracing ();
6683 }
6684}
6685
6686/* Called if the gdb static tracepoint requested collecting "$_sdata",
6687 static tracepoint string data. This is a string passed to the
6688 tracing library by the user, at the time of the tracepoint marker
6689 call. E.g., in the UST marker call:
6690
6691 trace_mark (ust, bar33, "str %s", "FOOBAZ");
6692
6693 the collected data is "str FOOBAZ".
6694*/
6695
6696static void
6697collect_ust_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
6698 CORE_ADDR stop_pc,
6699 struct tracepoint *tpoint,
6700 struct traceframe *tframe)
6701{
6702 struct static_tracepoint_ctx *umd = (struct static_tracepoint_ctx *) ctx;
6703 unsigned char *bufspace;
6704 int size;
6705 va_list copy;
6706 unsigned short blocklen;
6707
6708 if (umd == NULL)
6709 {
6710 trace_debug ("Wanted to collect static trace data, "
6711 "but there's no static trace data");
6712 return;
6713 }
6714
6715 va_copy (copy, *umd->args);
6716 size = USTF(serialize_to_text) (NULL, 0, umd->fmt, copy);
6717 va_end (copy);
6718
6719 trace_debug ("Want to collect ust data");
6720
6721 /* 'S' + size + string */
6722 bufspace = add_traceframe_block (tframe,
6723 1 + sizeof (blocklen) + size + 1);
6724 if (bufspace == NULL)
6725 {
6726 trace_debug ("Trace buffer block allocation failed, skipping");
6727 return;
6728 }
6729
6730 /* Identify a static trace data block. */
6731 *bufspace = 'S';
6732
6733 blocklen = size + 1;
6734 memcpy (bufspace + 1, &blocklen, sizeof (blocklen));
6735
6736 va_copy (copy, *umd->args);
6737 USTF(serialize_to_text) ((char *) bufspace + 1 + sizeof (blocklen),
6738 size + 1, umd->fmt, copy);
6739 va_end (copy);
6740
6741 trace_debug ("Storing static tracepoint data in regblock: %s",
6742 bufspace + 1 + sizeof (blocklen));
6743}
6744
6745/* The probe to register with lttng/ust. */
6746static struct ltt_available_probe gdb_ust_probe =
6747 {
6748 GDB_PROBE_NAME,
6749 NULL,
6750 gdb_probe,
6751 };
6752
6753#endif /* HAVE_UST */
6754#endif /* IN_PROCESS_AGENT */
6755
6756#ifdef HAVE_UST
6757
6758#include <sys/socket.h>
6759#include <sys/un.h>
6760
6761#ifndef UNIX_PATH_MAX
6762#define UNIX_PATH_MAX sizeof(((struct sockaddr_un *) NULL)->sun_path)
6763#endif
6764
6765/* Where we put the socked used for synchronization. */
6766#define SOCK_DIR P_tmpdir
6767
6768#endif /* HAVE_UST */
6769
6770#ifndef IN_PROCESS_AGENT
6771
6772#ifdef HAVE_UST
6773
6774static int
6775gdb_ust_connect_sync_socket (int pid)
6776{
6777 struct sockaddr_un addr;
6778 int res, fd;
6779 char path[UNIX_PATH_MAX];
6780
6cebaf6e 6781 res = xsnprintf (path, UNIX_PATH_MAX, "%s/gdb_ust%d", SOCK_DIR, pid);
0fb4aa4b
PA
6782 if (res >= UNIX_PATH_MAX)
6783 {
6784 trace_debug ("string overflow allocating socket name");
6785 return -1;
6786 }
6787
6788 res = fd = socket (PF_UNIX, SOCK_STREAM, 0);
6789 if (res == -1)
6790 {
6791 warning ("error opening sync socket: %s\n", strerror (errno));
6792 return -1;
6793 }
6794
6795 addr.sun_family = AF_UNIX;
6796
6cebaf6e 6797 res = xsnprintf (addr.sun_path, UNIX_PATH_MAX, "%s", path);
0fb4aa4b
PA
6798 if (res >= UNIX_PATH_MAX)
6799 {
6800 warning ("string overflow allocating socket name\n");
6801 close (fd);
6802 return -1;
6803 }
6804
6805 res = connect (fd, (struct sockaddr *) &addr, sizeof (addr));
6806 if (res == -1)
6807 {
6808 warning ("error connecting sync socket (%s): %s. "
6809 "Make sure the directory exists and that it is writable.",
6810 path, strerror (errno));
6811 close (fd);
6812 return -1;
6813 }
6814
6815 return fd;
6816}
6817
6818/* Resume thread PTID. */
6819
6820static void
6821resume_thread (ptid_t ptid)
6822{
6823 struct thread_resume resume_info;
6824
6825 resume_info.thread = ptid;
6826 resume_info.kind = resume_continue;
6827 resume_info.sig = TARGET_SIGNAL_0;
6828 (*the_target->resume) (&resume_info, 1);
6829}
6830
6831/* Stop thread PTID. */
6832
6833static void
6834stop_thread (ptid_t ptid)
6835{
6836 struct thread_resume resume_info;
6837
6838 resume_info.thread = ptid;
6839 resume_info.kind = resume_stop;
6840 resume_info.sig = TARGET_SIGNAL_0;
6841 (*the_target->resume) (&resume_info, 1);
6842}
6843
6844/* Ask the in-process agent to run a command. Since we don't want to
6845 have to handle the IPA hitting breakpoints while running the
6846 command, we pause all threads, remove all breakpoints, and then set
6847 the helper thread re-running. We communicate with the helper
6848 thread by means of direct memory xfering, and a socket for
6849 synchronization. */
6850
6851static int
6852run_inferior_command (char *cmd)
6853{
6854 int err = -1;
6855 int fd = -1;
6856 int pid = ptid_get_pid (current_inferior->entry.id);
6857 int tid;
6858 ptid_t ptid = null_ptid;
6859
6860 trace_debug ("run_inferior_command: running: %s", cmd);
6861
6862 pause_all (0);
6863 uninsert_all_breakpoints ();
6864
6865 if (read_inferior_integer (ipa_sym_addrs.addr_helper_thread_id, &tid))
6866 {
6867 warning ("Error reading helper thread's id in lib");
6868 goto out;
6869 }
6870
6871 if (tid == 0)
6872 {
6873 warning ("helper thread not initialized yet");
6874 goto out;
6875 }
6876
6877 if (write_inferior_memory (ipa_sym_addrs.addr_cmd_buf,
6878 (unsigned char *) cmd, strlen (cmd) + 1))
6879 {
6880 warning ("Error writing command");
6881 goto out;
6882 }
6883
6884 ptid = ptid_build (pid, tid, 0);
6885
6886 resume_thread (ptid);
6887
6888 fd = gdb_ust_connect_sync_socket (pid);
6889 if (fd >= 0)
6890 {
6891 char buf[1] = "";
6892 int ret;
6893
6894 trace_debug ("signalling helper thread");
6895
6896 do
6897 {
6898 ret = write (fd, buf, 1);
6899 } while (ret == -1 && errno == EINTR);
6900
6901 trace_debug ("waiting for helper thread's response");
6902
6903 do
6904 {
6905 ret = read (fd, buf, 1);
6906 } while (ret == -1 && errno == EINTR);
6907
6908 close (fd);
6909
6910 trace_debug ("helper thread's response received");
6911 }
6912
6913 out:
6914
6915 /* Need to read response with the inferior stopped. */
6916 if (!ptid_equal (ptid, null_ptid))
6917 {
6918 int was_non_stop = non_stop;
6919 struct target_waitstatus status;
6920
6921 stop_thread (ptid);
6922 non_stop = 1;
6923 mywait (ptid, &status, 0, 0);
6924 non_stop = was_non_stop;
6925 }
6926
6927 if (fd >= 0)
6928 {
6929 if (read_inferior_memory (ipa_sym_addrs.addr_cmd_buf,
6930 (unsigned char *) cmd, CMD_BUF_SIZE))
6931 {
6932 warning ("Error reading command response");
6933 }
6934 else
6935 {
6936 err = 0;
6937 trace_debug ("run_inferior_command: response: %s", cmd);
6938 }
6939 }
6940
6941 reinsert_all_breakpoints ();
6942 unpause_all (0);
6943
6944 return err;
6945}
6946
6947#else /* HAVE_UST */
6948
6949static int
6950run_inferior_command (char *cmd)
6951{
6952 return -1;
6953}
6954
6955#endif /* HAVE_UST */
6956
6957#else /* !IN_PROCESS_AGENT */
6958
6959/* Thread ID of the helper thread. GDBserver reads this to know which
6960 is the help thread. This is an LWP id on Linux. */
6961int helper_thread_id;
6962
6963#ifdef HAVE_UST
6964
6965static int
6966init_named_socket (const char *name)
6967{
6968 int result, fd;
6969 struct sockaddr_un addr;
6970
6971 result = fd = socket (PF_UNIX, SOCK_STREAM, 0);
6972 if (result == -1)
6973 {
6974 warning ("socket creation failed: %s", strerror (errno));
6975 return -1;
6976 }
6977
6978 addr.sun_family = AF_UNIX;
6979
6980 strncpy (addr.sun_path, name, UNIX_PATH_MAX);
6981 addr.sun_path[UNIX_PATH_MAX - 1] = '\0';
6982
6983 result = access (name, F_OK);
6984 if (result == 0)
6985 {
6986 /* File exists. */
6987 result = unlink (name);
6988 if (result == -1)
6989 {
6990 warning ("unlink failed: %s", strerror (errno));
6991 close (fd);
6992 return -1;
6993 }
6994 warning ("socket %s already exists; overwriting", name);
6995 }
6996
6997 result = bind (fd, (struct sockaddr *) &addr, sizeof (addr));
6998 if (result == -1)
6999 {
7000 warning ("bind failed: %s", strerror (errno));
7001 close (fd);
7002 return -1;
7003 }
7004
7005 result = listen (fd, 1);
7006 if (result == -1)
7007 {
7008 warning ("listen: %s", strerror (errno));
7009 close (fd);
7010 return -1;
7011 }
7012
7013 return fd;
7014}
7015
7016static int
7017gdb_ust_socket_init (void)
7018{
7019 int result, fd;
7020 char name[UNIX_PATH_MAX];
7021
6cebaf6e 7022 result = xsnprintf (name, UNIX_PATH_MAX, "%s/gdb_ust%d",
7023 SOCK_DIR, getpid ());
0fb4aa4b
PA
7024 if (result >= UNIX_PATH_MAX)
7025 {
7026 trace_debug ("string overflow allocating socket name");
7027 return -1;
7028 }
7029
7030 fd = init_named_socket (name);
7031 if (fd < 0)
7032 warning ("Error initializing named socket (%s) for communication with the "
7033 "ust helper thread. Check that directory exists and that it "
7034 "is writable.", name);
7035
7036 return fd;
7037}
7038
7039/* Return an hexstr version of the STR C string, fit for sending to
7040 GDB. */
7041
7042static char *
7043cstr_to_hexstr (const char *str)
7044{
7045 int len = strlen (str);
7046 char *hexstr = xmalloc (len * 2 + 1);
7047 convert_int_to_ascii ((gdb_byte *) str, hexstr, len);
7048 return hexstr;
7049}
7050
7051/* The next marker to be returned on a qTsSTM command. */
7052static const struct marker *next_st;
7053
7054/* Returns the first known marker. */
7055
7056struct marker *
7057first_marker (void)
7058{
7059 struct marker_iter iter;
7060
7061 USTF(marker_iter_reset) (&iter);
7062 USTF(marker_iter_start) (&iter);
7063
7064 return iter.marker;
7065}
7066
7067/* Returns the marker following M. */
7068
7069const struct marker *
7070next_marker (const struct marker *m)
7071{
7072 struct marker_iter iter;
7073
7074 USTF(marker_iter_reset) (&iter);
7075 USTF(marker_iter_start) (&iter);
7076
7077 for (; iter.marker != NULL; USTF(marker_iter_next) (&iter))
7078 {
7079 if (iter.marker == m)
7080 {
7081 USTF(marker_iter_next) (&iter);
7082 return iter.marker;
7083 }
7084 }
7085
7086 return NULL;
7087}
7088
7089/* Compose packet that is the response to the qTsSTM/qTfSTM/qTSTMat
7090 packets. */
7091
7092static void
7093response_ust_marker (char *packet, const struct marker *st)
7094{
7095 char *strid, *format, *tmp;
7096
7097 next_st = next_marker (st);
7098
7099 tmp = xmalloc (strlen (st->channel) + 1 +
7100 strlen (st->name) + 1);
7101 sprintf (tmp, "%s/%s", st->channel, st->name);
7102
7103 strid = cstr_to_hexstr (tmp);
7104 free (tmp);
7105
7106 format = cstr_to_hexstr (st->format);
7107
7108 sprintf (packet, "m%s:%s:%s",
7109 paddress ((uintptr_t) st->location),
7110 strid,
7111 format);
7112
7113 free (strid);
7114 free (format);
7115}
7116
7117/* Return the first static tracepoint, and initialize the state
7118 machine that will iterate through all the static tracepoints. */
7119
7120static void
7121cmd_qtfstm (char *packet)
7122{
7123 trace_debug ("Returning first trace state variable definition");
7124
7125 if (first_marker ())
7126 response_ust_marker (packet, first_marker ());
7127 else
7128 strcpy (packet, "l");
7129}
7130
7131/* Return additional trace state variable definitions. */
7132
7133static void
7134cmd_qtsstm (char *packet)
7135{
7136 trace_debug ("Returning static tracepoint");
7137
7138 if (next_st)
7139 response_ust_marker (packet, next_st);
7140 else
7141 strcpy (packet, "l");
7142}
7143
7144/* Disconnect the GDB probe from a marker at a given address. */
7145
7146static void
7147unprobe_marker_at (char *packet)
7148{
7149 char *p = packet;
7150 ULONGEST address;
7151 struct marker_iter iter;
7152
7153 p += sizeof ("unprobe_marker_at:") - 1;
7154
7155 p = unpack_varlen_hex (p, &address);
7156
7157 USTF(marker_iter_reset) (&iter);
7158 USTF(marker_iter_start) (&iter);
7159 for (; iter.marker != NULL; USTF(marker_iter_next) (&iter))
7160 if ((uintptr_t ) iter.marker->location == address)
7161 {
7162 int result;
7163
7164 result = USTF(ltt_marker_disconnect) (iter.marker->channel,
7165 iter.marker->name,
7166 GDB_PROBE_NAME);
7167 if (result < 0)
7168 warning ("could not disable marker %s/%s",
7169 iter.marker->channel, iter.marker->name);
7170 break;
7171 }
7172}
7173
7174/* Connect the GDB probe to a marker at a given address. */
7175
7176static int
7177probe_marker_at (char *packet)
7178{
7179 char *p = packet;
7180 ULONGEST address;
7181 struct marker_iter iter;
7182 struct marker *m;
7183
7184 p += sizeof ("probe_marker_at:") - 1;
7185
7186 p = unpack_varlen_hex (p, &address);
7187
7188 USTF(marker_iter_reset) (&iter);
7189
7190 for (USTF(marker_iter_start) (&iter), m = iter.marker;
7191 m != NULL;
7192 USTF(marker_iter_next) (&iter), m = iter.marker)
7193 if ((uintptr_t ) m->location == address)
7194 {
7195 int result;
7196
7197 trace_debug ("found marker for address. "
7198 "ltt_marker_connect (marker = %s/%s)",
7199 m->channel, m->name);
7200
493e2a69
MS
7201 result = USTF(ltt_marker_connect) (m->channel, m->name,
7202 GDB_PROBE_NAME);
0fb4aa4b
PA
7203 if (result && result != -EEXIST)
7204 trace_debug ("ltt_marker_connect (marker = %s/%s, errno = %d)",
7205 m->channel, m->name, -result);
7206
7207 if (result < 0)
7208 {
7209 sprintf (packet, "E.could not connect marker: channel=%s, name=%s",
7210 m->channel, m->name);
7211 return -1;
7212 }
7213
7214 strcpy (packet, "OK");
7215 return 0;
7216 }
7217
7218 sprintf (packet, "E.no marker found at 0x%s", paddress (address));
7219 return -1;
7220}
7221
7222static int
7223cmd_qtstmat (char *packet)
7224{
7225 char *p = packet;
7226 ULONGEST address;
7227 struct marker_iter iter;
7228 struct marker *m;
7229
7230 p += sizeof ("qTSTMat:") - 1;
7231
7232 p = unpack_varlen_hex (p, &address);
7233
7234 USTF(marker_iter_reset) (&iter);
7235
7236 for (USTF(marker_iter_start) (&iter), m = iter.marker;
7237 m != NULL;
7238 USTF(marker_iter_next) (&iter), m = iter.marker)
7239 if ((uintptr_t ) m->location == address)
7240 {
7241 response_ust_marker (packet, m);
7242 return 0;
7243 }
7244
7245 strcpy (packet, "l");
7246 return -1;
7247}
7248
7249static void *
7250gdb_ust_thread (void *arg)
7251{
7252 int listen_fd;
7253
7254 while (1)
7255 {
7256 listen_fd = gdb_ust_socket_init ();
7257
7258#ifdef SYS_gettid
7259 if (helper_thread_id == 0)
7260 helper_thread_id = syscall (SYS_gettid);
7261#endif
7262
7263 if (listen_fd == -1)
7264 {
7265 warning ("could not create sync socket\n");
7266 break;
7267 }
7268
7269 while (1)
7270 {
7271 socklen_t tmp;
7272 struct sockaddr_un sockaddr;
7273 int fd;
7274 char buf[1];
7275 int ret;
7276
7277 tmp = sizeof (sockaddr);
7278
7279 do
7280 {
7281 fd = accept (listen_fd, &sockaddr, &tmp);
7282 }
7283 /* It seems an ERESTARTSYS can escape out of accept. */
7284 while (fd == -512 || (fd == -1 && errno == EINTR));
7285
7286 if (fd < 0)
7287 {
7288 warning ("Accept returned %d, error: %s\n",
7289 fd, strerror (errno));
7290 break;
7291 }
7292
7293 do
7294 {
7295 ret = read (fd, buf, 1);
7296 } while (ret == -1 && errno == EINTR);
7297
7298 if (ret == -1)
7299 {
7300 warning ("reading socket (fd=%d) failed with %s",
7301 fd, strerror (errno));
7302 close (fd);
7303 break;
7304 }
7305
7306 if (cmd_buf[0])
7307 {
7308 if (strcmp ("qTfSTM", cmd_buf) == 0)
7309 {
7310 cmd_qtfstm (cmd_buf);
7311 }
7312 else if (strcmp ("qTsSTM", cmd_buf) == 0)
7313 {
7314 cmd_qtsstm (cmd_buf);
7315 }
7316 else if (strncmp ("unprobe_marker_at:",
7317 cmd_buf,
7318 sizeof ("unprobe_marker_at:") - 1) == 0)
7319 {
7320 unprobe_marker_at (cmd_buf);
7321 }
7322 else if (strncmp ("probe_marker_at:",
7323 cmd_buf,
7324 sizeof ("probe_marker_at:") - 1) == 0)
7325 {
7326 probe_marker_at (cmd_buf);
7327 }
7328 else if (strncmp ("qTSTMat:",
7329 cmd_buf,
7330 sizeof ("qTSTMat:") - 1) == 0)
7331 {
7332 cmd_qtstmat (cmd_buf);
7333 }
7334 else if (strcmp (cmd_buf, "help") == 0)
7335 {
7336 strcpy (cmd_buf, "for help, press F1\n");
7337 }
7338 else
7339 strcpy (cmd_buf, "");
7340 }
7341
7342 write (fd, buf, 1);
7343 close (fd);
7344 }
7345 }
7346
7347 return NULL;
7348}
7349
7350#include <signal.h>
7351
7352static void
7353gdb_ust_init (void)
7354{
7355 int res;
7356 pthread_t thread;
7357 sigset_t new_mask;
7358 sigset_t orig_mask;
7359
7360 if (!dlsym_ust ())
7361 return;
7362
7363 /* We want the helper thread to be as transparent as possible, so
7364 have it inherit an all-signals-blocked mask. */
7365
7366 sigfillset (&new_mask);
7367 res = pthread_sigmask (SIG_SETMASK, &new_mask, &orig_mask);
7368 if (res)
7369 fatal ("pthread_sigmask (1) failed: %s", strerror (res));
7370
7371 res = pthread_create (&thread,
7372 NULL,
7373 gdb_ust_thread,
7374 NULL);
7375
7376 res = pthread_sigmask (SIG_SETMASK, &orig_mask, NULL);
7377 if (res)
7378 fatal ("pthread_sigmask (2) failed: %s", strerror (res));
7379
7380 while (helper_thread_id == 0)
7381 usleep (1);
7382
7383 USTF(ltt_probe_register) (&gdb_ust_probe);
7384}
7385
7386#endif /* HAVE_UST */
7387
7388#include <sys/mman.h>
7389#include <fcntl.h>
7390
7391IP_AGENT_EXPORT char *gdb_tp_heap_buffer;
7392IP_AGENT_EXPORT char *gdb_jump_pad_buffer;
7393IP_AGENT_EXPORT char *gdb_jump_pad_buffer_end;
7394
7395static void __attribute__ ((constructor))
7396initialize_tracepoint_ftlib (void)
7397{
7398 initialize_tracepoint ();
7399
7400#ifdef HAVE_UST
7401 gdb_ust_init ();
7402#endif
7403}
7404
7405#endif /* IN_PROCESS_AGENT */
fa593d66 7406
219f2f23
PA
7407static LONGEST
7408tsv_get_timestamp (void)
7409{
7410 struct timeval tv;
7411
7412 if (gettimeofday (&tv, 0) != 0)
7413 return -1;
7414 else
7415 return (LONGEST) tv.tv_sec * 1000000 + tv.tv_usec;
7416}
7417
7418void
7419initialize_tracepoint (void)
7420{
7421 /* There currently no way to change the buffer size. */
7422 const int sizeOfBuffer = 5 * 1024 * 1024;
7423 unsigned char *buf = xmalloc (sizeOfBuffer);
7424 init_trace_buffer (buf, sizeOfBuffer);
7425
7426 /* Wire trace state variable 1 to be the timestamp. This will be
7427 uploaded to GDB upon connection and become one of its trace state
7428 variables. (In case you're wondering, if GDB already has a trace
7429 variable numbered 1, it will be renumbered.) */
fa593d66 7430 create_trace_state_variable (1, 0);
219f2f23
PA
7431 set_trace_state_variable_name (1, "trace_timestamp");
7432 set_trace_state_variable_getter (1, tsv_get_timestamp);
fa593d66
PA
7433
7434#ifdef IN_PROCESS_AGENT
7435 {
7436 int pagesize;
7437 pagesize = sysconf (_SC_PAGE_SIZE);
7438 if (pagesize == -1)
7439 fatal ("sysconf");
7440
7441 gdb_tp_heap_buffer = xmalloc (5 * 1024 * 1024);
7442
7443 /* Allocate scratch buffer aligned on a page boundary. */
7444 gdb_jump_pad_buffer = memalign (pagesize, pagesize * 20);
7445 gdb_jump_pad_buffer_end = gdb_jump_pad_buffer + pagesize * 20;
7446
7447 /* Make it writable and executable. */
7448 if (mprotect (gdb_jump_pad_buffer, pagesize * 20,
7449 PROT_READ | PROT_WRITE | PROT_EXEC) != 0)
7450 fatal ("\
7451initialize_tracepoint: mprotect(%p, %d, PROT_READ|PROT_EXEC) failed with %s",
7452 gdb_jump_pad_buffer, pagesize * 20, strerror (errno));
7453 }
7454
7455 initialize_low_tracepoint ();
7456#endif
219f2f23 7457}