2011-02-21 Hui Zhu <teawater@gmail.com>
[deliverable/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
fa593d66
PA
29/* This file is built for both both GDBserver, and the in-process
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:");
2466 packet = unpack_varlen_hex (packet, &num);
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:");
3036 packet = unpack_varlen_hex (packet, &pc);
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;
3045 packet = unpack_varlen_hex (packet, &hi);
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;
3055 packet = unpack_varlen_hex (packet, &hi);
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:");
3064 packet = unpack_varlen_hex (packet, &num);
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 */
3386 packet = unpack_varlen_hex (packet, &num);
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:");
3436 packet = unpack_varlen_hex (packet, &val);
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);
3679 continue;
3680 }
3681
3682 /* We've just finished one step. */
3683 ++wstep->current_step;
3684
3685 /* Collect data. */
3686 collect_data_at_step ((struct tracepoint_hit_ctx *) &ctx,
3687 stop_pc, tpoint, wstep->current_step);
3688
3689 if (wstep->current_step >= tpoint->step_count)
3690 {
3691 /* The requested numbers of steps have occurred. */
3692 trace_debug ("Thread %s done stepping for tracepoint %d at 0x%s",
3693 target_pid_to_str (tinfo->entry.id),
3694 wstep->tp_number, paddress (wstep->tp_address));
3695
3696 /* Unlink the wstep. */
3697 *wstep_link = wstep->next;
3698 release_while_stepping_state (wstep);
3699 wstep = *wstep_link;
3700
3701 /* Only check the hit count now, which ensure that we do all
3702 our stepping before stopping the run. */
3703 if (tpoint->pass_count > 0
3704 && tpoint->hit_count >= tpoint->pass_count
3705 && stopping_tracepoint == NULL)
3706 stopping_tracepoint = tpoint;
3707 }
3708 else
3709 {
3710 /* Keep single-stepping until the requested numbers of steps
3711 have occurred. */
3712 wstep_link = &wstep->next;
3713 wstep = *wstep_link;
3714 }
3715
3716 if (stopping_tracepoint
3717 || trace_buffer_is_full
3718 || expr_eval_result != expr_eval_no_error)
3719 {
3720 stop_tracing ();
3721 break;
3722 }
3723 }
3724
3725 return 1;
3726}
3727
fa593d66
PA
3728/* Handle any internal tracing control breakpoint hits. That means,
3729 pull traceframes from the IPA to our buffer, and syncing both
3730 tracing agents when the IPA's tracing stops for some reason. */
3731
3732int
3733handle_tracepoint_bkpts (struct thread_info *tinfo, CORE_ADDR stop_pc)
3734{
3735 /* Pull in fast tracepoint trace frames from the inferior in-process
3736 agent's buffer into our buffer. */
3737
3738 if (!in_process_agent_loaded ())
3739 return 0;
3740
3741 upload_fast_traceframes ();
3742
3743 /* Check if the in-process agent had decided we should stop
3744 tracing. */
3745 if (stop_pc == ipa_sym_addrs.addr_stop_tracing)
3746 {
3747 int ipa_trace_buffer_is_full;
3748 CORE_ADDR ipa_stopping_tracepoint;
3749 int ipa_expr_eval_result;
3750 CORE_ADDR ipa_error_tracepoint;
3751
3752 trace_debug ("lib stopped at stop_tracing");
3753
3754 read_inferior_integer (ipa_sym_addrs.addr_trace_buffer_is_full,
3755 &ipa_trace_buffer_is_full);
3756
3757 read_inferior_data_pointer (ipa_sym_addrs.addr_stopping_tracepoint,
3758 &ipa_stopping_tracepoint);
3759 write_inferior_data_pointer (ipa_sym_addrs.addr_stopping_tracepoint, 0);
3760
3761 read_inferior_data_pointer (ipa_sym_addrs.addr_error_tracepoint,
3762 &ipa_error_tracepoint);
3763 write_inferior_data_pointer (ipa_sym_addrs.addr_error_tracepoint, 0);
3764
3765 read_inferior_integer (ipa_sym_addrs.addr_expr_eval_result,
3766 &ipa_expr_eval_result);
3767 write_inferior_integer (ipa_sym_addrs.addr_expr_eval_result, 0);
3768
3769 trace_debug ("lib: trace_buffer_is_full: %d, "
3770 "stopping_tracepoint: %s, "
3771 "ipa_expr_eval_result: %d, "
3772 "error_tracepoint: %s, ",
3773 ipa_trace_buffer_is_full,
3774 paddress (ipa_stopping_tracepoint),
3775 ipa_expr_eval_result,
3776 paddress (ipa_error_tracepoint));
3777
3778 if (debug_threads)
3779 {
3780 if (ipa_trace_buffer_is_full)
3781 trace_debug ("lib stopped due to full buffer.");
3782 if (ipa_stopping_tracepoint)
3783 trace_debug ("lib stopped due to tpoint");
3784 if (ipa_stopping_tracepoint)
3785 trace_debug ("lib stopped due to error");
3786 }
3787
3788 if (ipa_stopping_tracepoint != 0)
3789 {
3790 stopping_tracepoint
3791 = fast_tracepoint_from_ipa_tpoint_address (ipa_stopping_tracepoint);
3792 }
3793 else if (ipa_expr_eval_result != expr_eval_no_error)
3794 {
3795 expr_eval_result = ipa_expr_eval_result;
3796 error_tracepoint
3797 = fast_tracepoint_from_ipa_tpoint_address (ipa_error_tracepoint);
3798 }
3799 stop_tracing ();
3800 return 1;
3801 }
3802 else if (stop_pc == ipa_sym_addrs.addr_flush_trace_buffer)
3803 {
3804 trace_debug ("lib stopped at flush_trace_buffer");
3805 return 1;
3806 }
3807
3808 return 0;
3809}
3810
219f2f23
PA
3811/* Return true if TINFO just hit a tracepoint. Collect data if
3812 so. */
3813
3814int
3815tracepoint_was_hit (struct thread_info *tinfo, CORE_ADDR stop_pc)
3816{
3817 struct tracepoint *tpoint;
3818 int ret = 0;
3819 struct trap_tracepoint_ctx ctx;
3820
3821 /* Not tracing, don't handle. */
3822 if (!tracing)
3823 return 0;
3824
fa593d66 3825 ctx.base.type = trap_tracepoint;
219f2f23
PA
3826 ctx.regcache = get_thread_regcache (tinfo, 1);
3827
3828 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
3829 {
fa593d66
PA
3830 /* Note that we collect fast tracepoints here as well. We'll
3831 step over the fast tracepoint jump later, which avoids the
3832 double collect. */
219f2f23
PA
3833 if (tpoint->enabled && stop_pc == tpoint->address)
3834 {
3835 trace_debug ("Thread %s at address of tracepoint %d at 0x%s",
3836 target_pid_to_str (tinfo->entry.id),
3837 tpoint->number, paddress (tpoint->address));
3838
3839 /* Test the condition if present, and collect if true. */
3840 if (!tpoint->cond
3841 || (condition_true_at_tracepoint
3842 ((struct tracepoint_hit_ctx *) &ctx, tpoint)))
3843 collect_data_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
3844 stop_pc, tpoint);
3845
3846 if (stopping_tracepoint
3847 || trace_buffer_is_full
3848 || expr_eval_result != expr_eval_no_error)
3849 {
3850 stop_tracing ();
3851 }
3852 /* If the tracepoint had a 'while-stepping' action, then set
3853 the thread to collect this tracepoint on the following
3854 single-steps. */
3855 else if (tpoint->step_count > 0)
3856 {
3857 add_while_stepping_state (tinfo,
3858 tpoint->number, tpoint->address);
3859 }
3860
3861 ret = 1;
3862 }
3863 }
3864
3865 return ret;
3866}
3867
fa593d66
PA
3868#endif
3869
0fb4aa4b
PA
3870#if defined IN_PROCESS_AGENT && defined HAVE_UST
3871struct ust_marker_data;
3872static void collect_ust_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
3873 CORE_ADDR stop_pc,
3874 struct tracepoint *tpoint,
3875 struct traceframe *tframe);
3876#endif
3877
219f2f23
PA
3878/* Create a trace frame for the hit of the given tracepoint in the
3879 given thread. */
3880
3881static void
3882collect_data_at_tracepoint (struct tracepoint_hit_ctx *ctx, CORE_ADDR stop_pc,
3883 struct tracepoint *tpoint)
3884{
3885 struct traceframe *tframe;
3886 int acti;
3887
3888 /* Only count it as a hit when we actually collect data. */
3889 tpoint->hit_count++;
3890
3891 /* If we've exceeded a defined pass count, record the event for
3892 later, and finish the collection for this hit. This test is only
3893 for nonstepping tracepoints, stepping tracepoints test at the end
3894 of their while-stepping loop. */
3895 if (tpoint->pass_count > 0
3896 && tpoint->hit_count >= tpoint->pass_count
3897 && tpoint->step_count == 0
3898 && stopping_tracepoint == NULL)
3899 stopping_tracepoint = tpoint;
3900
3901 trace_debug ("Making new traceframe for tracepoint %d at 0x%s, hit %ld",
3902 tpoint->number, paddress (tpoint->address), tpoint->hit_count);
3903
3904 tframe = add_traceframe (tpoint);
3905
3906 if (tframe)
3907 {
3908 for (acti = 0; acti < tpoint->numactions; ++acti)
3909 {
fa593d66 3910#ifndef IN_PROCESS_AGENT
219f2f23
PA
3911 trace_debug ("Tracepoint %d at 0x%s about to do action '%s'",
3912 tpoint->number, paddress (tpoint->address),
3913 tpoint->actions_str[acti]);
fa593d66 3914#endif
219f2f23
PA
3915
3916 do_action_at_tracepoint (ctx, stop_pc, tpoint, tframe,
3917 tpoint->actions[acti]);
3918 }
3919
3920 finish_traceframe (tframe);
3921 }
3922
3923 if (tframe == NULL && tracing)
3924 trace_buffer_is_full = 1;
3925}
3926
fa593d66
PA
3927#ifndef IN_PROCESS_AGENT
3928
219f2f23
PA
3929static void
3930collect_data_at_step (struct tracepoint_hit_ctx *ctx,
3931 CORE_ADDR stop_pc,
3932 struct tracepoint *tpoint, int current_step)
3933{
3934 struct traceframe *tframe;
3935 int acti;
3936
3937 trace_debug ("Making new step traceframe for "
3938 "tracepoint %d at 0x%s, step %d of %ld, hit %ld",
3939 tpoint->number, paddress (tpoint->address),
3940 current_step, tpoint->step_count,
3941 tpoint->hit_count);
3942
3943 tframe = add_traceframe (tpoint);
3944
3945 if (tframe)
3946 {
3947 for (acti = 0; acti < tpoint->num_step_actions; ++acti)
3948 {
3949 trace_debug ("Tracepoint %d at 0x%s about to do step action '%s'",
3950 tpoint->number, paddress (tpoint->address),
3951 tpoint->step_actions_str[acti]);
3952
3953 do_action_at_tracepoint (ctx, stop_pc, tpoint, tframe,
3954 tpoint->step_actions[acti]);
3955 }
3956
3957 finish_traceframe (tframe);
3958 }
3959
3960 if (tframe == NULL && tracing)
3961 trace_buffer_is_full = 1;
3962}
3963
fa593d66
PA
3964#endif
3965
219f2f23
PA
3966static struct regcache *
3967get_context_regcache (struct tracepoint_hit_ctx *ctx)
3968{
fa593d66
PA
3969 struct regcache *regcache = NULL;
3970
3971#ifdef IN_PROCESS_AGENT
3972 if (ctx->type == fast_tracepoint)
3973 {
3974 struct fast_tracepoint_ctx *fctx = (struct fast_tracepoint_ctx *) ctx;
3975 if (!fctx->regcache_initted)
3976 {
3977 fctx->regcache_initted = 1;
3978 init_register_cache (&fctx->regcache, fctx->regspace);
3979 supply_regblock (&fctx->regcache, NULL);
3980 supply_fast_tracepoint_registers (&fctx->regcache, fctx->regs);
3981 }
3982 regcache = &fctx->regcache;
3983 }
0fb4aa4b
PA
3984#ifdef HAVE_UST
3985 if (ctx->type == static_tracepoint)
3986 {
493e2a69
MS
3987 struct static_tracepoint_ctx *sctx
3988 = (struct static_tracepoint_ctx *) ctx;
3989
0fb4aa4b
PA
3990 if (!sctx->regcache_initted)
3991 {
3992 sctx->regcache_initted = 1;
3993 init_register_cache (&sctx->regcache, sctx->regspace);
3994 supply_regblock (&sctx->regcache, NULL);
3995 /* Pass down the tracepoint address, because REGS doesn't
3996 include the PC, but we know what it must have been. */
3997 supply_static_tracepoint_registers (&sctx->regcache,
3998 (const unsigned char *)
3999 sctx->regs,
4000 sctx->tpoint->address);
4001 }
4002 regcache = &sctx->regcache;
4003 }
4004#endif
fa593d66
PA
4005#else
4006 if (ctx->type == trap_tracepoint)
4007 {
4008 struct trap_tracepoint_ctx *tctx = (struct trap_tracepoint_ctx *) ctx;
4009 regcache = tctx->regcache;
4010 }
4011#endif
219f2f23
PA
4012
4013 gdb_assert (regcache != NULL);
4014
4015 return regcache;
4016}
4017
4018static void
4019do_action_at_tracepoint (struct tracepoint_hit_ctx *ctx,
4020 CORE_ADDR stop_pc,
4021 struct tracepoint *tpoint,
4022 struct traceframe *tframe,
4023 struct tracepoint_action *taction)
4024{
4025 enum eval_result_type err;
4026
4027 switch (taction->type)
4028 {
4029 case 'M':
4030 {
4031 struct collect_memory_action *maction;
4032
4033 maction = (struct collect_memory_action *) taction;
4034
4035 trace_debug ("Want to collect %s bytes at 0x%s (basereg %d)",
4036 pulongest (maction->len),
4037 paddress (maction->addr), maction->basereg);
4038 /* (should use basereg) */
4039 agent_mem_read (tframe, NULL,
4040 (CORE_ADDR) maction->addr, maction->len);
4041 break;
4042 }
4043 case 'R':
4044 {
219f2f23
PA
4045 unsigned char *regspace;
4046 struct regcache tregcache;
4047 struct regcache *context_regcache;
4048
219f2f23
PA
4049
4050 trace_debug ("Want to collect registers");
4051
4052 /* Collect all registers for now. */
4053 regspace = add_traceframe_block (tframe,
4054 1 + register_cache_size ());
4055 if (regspace == NULL)
4056 {
4057 trace_debug ("Trace buffer block allocation failed, skipping");
4058 break;
4059 }
4060 /* Identify a register block. */
4061 *regspace = 'R';
4062
4063 context_regcache = get_context_regcache (ctx);
4064
4065 /* Wrap the regblock in a register cache (in the stack, we
4066 don't want to malloc here). */
4067 init_register_cache (&tregcache, regspace + 1);
4068
4069 /* Copy the register data to the regblock. */
4070 regcache_cpy (&tregcache, context_regcache);
4071
fa593d66 4072#ifndef IN_PROCESS_AGENT
219f2f23
PA
4073 /* On some platforms, trap-based tracepoints will have the PC
4074 pointing to the next instruction after the trap, but we
4075 don't want the user or GDB trying to guess whether the
4076 saved PC needs adjusting; so always record the adjusted
4077 stop_pc. Note that we can't use tpoint->address instead,
fa593d66
PA
4078 since it will be wrong for while-stepping actions. This
4079 adjustment is a nop for fast tracepoints collected from the
4080 in-process lib (but not if GDBserver is collecting one
4081 preemptively), since the PC had already been adjusted to
4082 contain the tracepoint's address by the jump pad. */
219f2f23
PA
4083 trace_debug ("Storing stop pc (0x%s) in regblock",
4084 paddress (tpoint->address));
4085
4086 /* This changes the regblock, not the thread's
4087 regcache. */
4088 regcache_write_pc (&tregcache, stop_pc);
fa593d66 4089#endif
219f2f23
PA
4090 }
4091 break;
4092 case 'X':
4093 {
4094 struct eval_expr_action *eaction;
4095
4096 eaction = (struct eval_expr_action *) taction;
4097
4098 trace_debug ("Want to evaluate expression");
4099
4100 err = eval_agent_expr (ctx, tframe, eaction->expr, NULL);
4101
4102 if (err != expr_eval_no_error)
4103 {
4104 record_tracepoint_error (tpoint, "action expression", err);
4105 return;
4106 }
4107 }
4108 break;
0fb4aa4b
PA
4109 case 'L':
4110 {
4111#if defined IN_PROCESS_AGENT && defined HAVE_UST
4112 trace_debug ("Want to collect static trace data");
4113 collect_ust_data_at_tracepoint (ctx, stop_pc,
4114 tpoint, tframe);
4115#else
4116 trace_debug ("warning: collecting static trace data, "
4117 "but static tracepoints are not supported");
4118#endif
4119 }
4120 break;
219f2f23
PA
4121 default:
4122 trace_debug ("unknown trace action '%c', ignoring", taction->type);
4123 break;
4124 }
4125}
4126
4127static int
4128condition_true_at_tracepoint (struct tracepoint_hit_ctx *ctx,
4129 struct tracepoint *tpoint)
4130{
4131 ULONGEST value = 0;
4132 enum eval_result_type err;
4133
c6beb2cb
PA
4134 /* Presently, gdbserver doesn't run compiled conditions, only the
4135 IPA does. If the program stops at a fast tracepoint's address
4136 (e.g., due to a breakpoint, trap tracepoint, or stepping),
4137 gdbserver preemptively collect the fast tracepoint. Later, on
4138 resume, gdbserver steps over the fast tracepoint like it steps
4139 over breakpoints, so that the IPA doesn't see that fast
4140 tracepoint. This avoids double collects of fast tracepoints in
4141 that stopping scenario. Having gdbserver itself handle the fast
4142 tracepoint gives the user a consistent view of when fast or trap
4143 tracepoints are collected, compared to an alternative where only
4144 trap tracepoints are collected on stop, and fast tracepoints on
4145 resume. When a fast tracepoint is being processed by gdbserver,
4146 it is always the non-compiled condition expression that is
4147 used. */
4148#ifdef IN_PROCESS_AGENT
6a271cae
PA
4149 if (tpoint->compiled_cond)
4150 err = ((condfn) (uintptr_t) (tpoint->compiled_cond)) (ctx, &value);
4151 else
c6beb2cb 4152#endif
6a271cae 4153 err = eval_agent_expr (ctx, NULL, tpoint->cond, &value);
219f2f23
PA
4154
4155 if (err != expr_eval_no_error)
4156 {
4157 record_tracepoint_error (tpoint, "condition", err);
4158 /* The error case must return false. */
4159 return 0;
4160 }
4161
4162 trace_debug ("Tracepoint %d at 0x%s condition evals to %s",
4163 tpoint->number, paddress (tpoint->address),
4164 pulongest (value));
4165 return (value ? 1 : 0);
4166}
4167
fa593d66
PA
4168#ifndef IN_PROCESS_AGENT
4169
219f2f23
PA
4170/* The packet form of an agent expression consists of an 'X', number
4171 of bytes in expression, a comma, and then the bytes. */
4172
4173static struct agent_expr *
4174parse_agent_expr (char **actparm)
4175{
4176 char *act = *actparm;
4177 ULONGEST xlen;
4178 struct agent_expr *aexpr;
4179
4180 ++act; /* skip the X */
4181 act = unpack_varlen_hex (act, &xlen);
4182 ++act; /* skip a comma */
4183 aexpr = xmalloc (sizeof (struct agent_expr));
4184 aexpr->length = xlen;
4185 aexpr->bytes = xmalloc (xlen);
4186 convert_ascii_to_int (act, aexpr->bytes, xlen);
4187 *actparm = act + (xlen * 2);
4188 return aexpr;
4189}
4190
4191/* Convert the bytes of an agent expression back into hex digits, so
4192 they can be printed or uploaded. This allocates the buffer,
4193 callers should free when they are done with it. */
4194
4195static char *
4196unparse_agent_expr (struct agent_expr *aexpr)
4197{
4198 char *rslt;
4199
4200 rslt = xmalloc (2 * aexpr->length + 1);
4201 convert_int_to_ascii (aexpr->bytes, rslt, aexpr->length);
4202 return rslt;
4203}
4204
fa593d66
PA
4205#endif
4206
94d5e490
TT
4207/* A wrapper for gdb_agent_op_names that does some bounds-checking. */
4208
4209static const char *
4210gdb_agent_op_name (int op)
4211{
4212 if (op < 0 || op >= gdb_agent_op_last || gdb_agent_op_names[op] == NULL)
4213 return "?undef?";
4214 return gdb_agent_op_names[op];
4215}
4216
f9c6ff72
HZ
4217int
4218tp_printf (const char *format, ...)
4219{
4220 va_list ap;
4221 va_start (ap, format);
4222 vprintf (format, ap);
4223 va_end (ap);
4224 return 0;
4225}
4226
219f2f23
PA
4227/* The agent expression evaluator, as specified by the GDB docs. It
4228 returns 0 if everything went OK, and a nonzero error code
4229 otherwise. */
4230
4231static enum eval_result_type
4232eval_agent_expr (struct tracepoint_hit_ctx *ctx,
4233 struct traceframe *tframe,
4234 struct agent_expr *aexpr,
4235 ULONGEST *rslt)
4236{
4237 int pc = 0;
4238#define STACK_MAX 100
4239 ULONGEST stack[STACK_MAX], top;
4240 int sp = 0;
4241 unsigned char op;
4242 int arg;
4243
4244 /* This union is a convenient way to convert representations. For
4245 now, assume a standard architecture where the hardware integer
4246 types have 8, 16, 32, 64 bit types. A more robust solution would
4247 be to import stdint.h from gnulib. */
4248 union
4249 {
4250 union
4251 {
4252 unsigned char bytes[1];
4253 unsigned char val;
4254 } u8;
4255 union
4256 {
4257 unsigned char bytes[2];
4258 unsigned short val;
4259 } u16;
4260 union
4261 {
4262 unsigned char bytes[4];
4263 unsigned int val;
4264 } u32;
4265 union
4266 {
4267 unsigned char bytes[8];
4268 ULONGEST val;
4269 } u64;
4270 } cnv;
4271
4272 if (aexpr->length == 0)
4273 {
4274 trace_debug ("empty agent expression");
4275 return expr_eval_empty_expression;
4276 }
4277
4278 /* Cache the stack top in its own variable. Much of the time we can
4279 operate on this variable, rather than dinking with the stack. It
4280 needs to be copied to the stack when sp changes. */
4281 top = 0;
4282
4283 while (1)
4284 {
4285 op = aexpr->bytes[pc++];
4286
4287 trace_debug ("About to interpret byte 0x%x", op);
4288
4289 switch (op)
4290 {
4291 case gdb_agent_op_add:
4292 top += stack[--sp];
4293 break;
4294
4295 case gdb_agent_op_sub:
4296 top = stack[--sp] - top;
4297 break;
4298
4299 case gdb_agent_op_mul:
4300 top *= stack[--sp];
4301 break;
4302
4303 case gdb_agent_op_div_signed:
4304 if (top == 0)
4305 {
4306 trace_debug ("Attempted to divide by zero");
4307 return expr_eval_divide_by_zero;
4308 }
4309 top = ((LONGEST) stack[--sp]) / ((LONGEST) top);
4310 break;
4311
4312 case gdb_agent_op_div_unsigned:
4313 if (top == 0)
4314 {
4315 trace_debug ("Attempted to divide by zero");
4316 return expr_eval_divide_by_zero;
4317 }
4318 top = stack[--sp] / top;
4319 break;
4320
4321 case gdb_agent_op_rem_signed:
4322 if (top == 0)
4323 {
4324 trace_debug ("Attempted to divide by zero");
4325 return expr_eval_divide_by_zero;
4326 }
4327 top = ((LONGEST) stack[--sp]) % ((LONGEST) top);
4328 break;
4329
4330 case gdb_agent_op_rem_unsigned:
4331 if (top == 0)
4332 {
4333 trace_debug ("Attempted to divide by zero");
4334 return expr_eval_divide_by_zero;
4335 }
4336 top = stack[--sp] % top;
4337 break;
4338
4339 case gdb_agent_op_lsh:
4340 top = stack[--sp] << top;
4341 break;
4342
4343 case gdb_agent_op_rsh_signed:
4344 top = ((LONGEST) stack[--sp]) >> top;
4345 break;
4346
4347 case gdb_agent_op_rsh_unsigned:
4348 top = stack[--sp] >> top;
4349 break;
4350
4351 case gdb_agent_op_trace:
4352 agent_mem_read (tframe,
4353 NULL, (CORE_ADDR) stack[--sp], (ULONGEST) top);
4354 if (--sp >= 0)
4355 top = stack[sp];
4356 break;
4357
4358 case gdb_agent_op_trace_quick:
4359 arg = aexpr->bytes[pc++];
4360 agent_mem_read (tframe, NULL, (CORE_ADDR) top, (ULONGEST) arg);
4361 break;
4362
4363 case gdb_agent_op_log_not:
4364 top = !top;
4365 break;
4366
4367 case gdb_agent_op_bit_and:
4368 top &= stack[--sp];
4369 break;
4370
4371 case gdb_agent_op_bit_or:
4372 top |= stack[--sp];
4373 break;
4374
4375 case gdb_agent_op_bit_xor:
4376 top ^= stack[--sp];
4377 break;
4378
4379 case gdb_agent_op_bit_not:
4380 top = ~top;
4381 break;
4382
4383 case gdb_agent_op_equal:
4384 top = (stack[--sp] == top);
4385 break;
4386
4387 case gdb_agent_op_less_signed:
4388 top = (((LONGEST) stack[--sp]) < ((LONGEST) top));
4389 break;
4390
4391 case gdb_agent_op_less_unsigned:
4392 top = (stack[--sp] < top);
4393 break;
4394
4395 case gdb_agent_op_ext:
4396 arg = aexpr->bytes[pc++];
4397 if (arg < (sizeof (LONGEST) * 8))
4398 {
4399 LONGEST mask = 1 << (arg - 1);
4400 top &= ((LONGEST) 1 << arg) - 1;
4401 top = (top ^ mask) - mask;
4402 }
4403 break;
4404
4405 case gdb_agent_op_ref8:
4406 agent_mem_read (tframe, cnv.u8.bytes, (CORE_ADDR) top, 1);
4407 top = cnv.u8.val;
4408 break;
4409
4410 case gdb_agent_op_ref16:
4411 agent_mem_read (tframe, cnv.u16.bytes, (CORE_ADDR) top, 2);
4412 top = cnv.u16.val;
4413 break;
4414
4415 case gdb_agent_op_ref32:
4416 agent_mem_read (tframe, cnv.u32.bytes, (CORE_ADDR) top, 4);
4417 top = cnv.u32.val;
4418 break;
4419
4420 case gdb_agent_op_ref64:
4421 agent_mem_read (tframe, cnv.u64.bytes, (CORE_ADDR) top, 8);
4422 top = cnv.u64.val;
4423 break;
4424
4425 case gdb_agent_op_if_goto:
4426 if (top)
4427 pc = (aexpr->bytes[pc] << 8) + (aexpr->bytes[pc + 1]);
4428 else
4429 pc += 2;
4430 if (--sp >= 0)
4431 top = stack[sp];
4432 break;
4433
4434 case gdb_agent_op_goto:
4435 pc = (aexpr->bytes[pc] << 8) + (aexpr->bytes[pc + 1]);
4436 break;
4437
4438 case gdb_agent_op_const8:
4439 /* Flush the cached stack top. */
4440 stack[sp++] = top;
4441 top = aexpr->bytes[pc++];
4442 break;
4443
4444 case gdb_agent_op_const16:
4445 /* Flush the cached stack top. */
4446 stack[sp++] = top;
4447 top = aexpr->bytes[pc++];
4448 top = (top << 8) + aexpr->bytes[pc++];
4449 break;
4450
4451 case gdb_agent_op_const32:
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 break;
4459
4460 case gdb_agent_op_const64:
4461 /* Flush the cached stack top. */
4462 stack[sp++] = top;
4463 top = aexpr->bytes[pc++];
4464 top = (top << 8) + aexpr->bytes[pc++];
4465 top = (top << 8) + aexpr->bytes[pc++];
4466 top = (top << 8) + aexpr->bytes[pc++];
4467 top = (top << 8) + aexpr->bytes[pc++];
4468 top = (top << 8) + aexpr->bytes[pc++];
4469 top = (top << 8) + aexpr->bytes[pc++];
4470 top = (top << 8) + aexpr->bytes[pc++];
4471 break;
4472
4473 case gdb_agent_op_reg:
4474 /* Flush the cached stack top. */
4475 stack[sp++] = top;
4476 arg = aexpr->bytes[pc++];
4477 arg = (arg << 8) + aexpr->bytes[pc++];
4478 {
4479 int regnum = arg;
4480 struct regcache *regcache;
4481
4482 regcache = get_context_regcache (ctx);
4483
4484 switch (register_size (regnum))
4485 {
4486 case 8:
4487 collect_register (regcache, regnum, cnv.u64.bytes);
4488 top = cnv.u64.val;
4489 break;
4490 case 4:
4491 collect_register (regcache, regnum, cnv.u32.bytes);
4492 top = cnv.u32.val;
4493 break;
4494 case 2:
4495 collect_register (regcache, regnum, cnv.u16.bytes);
4496 top = cnv.u16.val;
4497 break;
4498 case 1:
4499 collect_register (regcache, regnum, cnv.u8.bytes);
4500 top = cnv.u8.val;
4501 break;
4502 default:
4503 internal_error (__FILE__, __LINE__,
4504 "unhandled register size");
4505 }
4506 }
4507 break;
4508
4509 case gdb_agent_op_end:
4510 trace_debug ("At end of expression, sp=%d, stack top cache=0x%s",
4511 sp, pulongest (top));
4512 if (rslt)
4513 {
4514 if (sp <= 0)
4515 {
4516 /* This should be an error */
4517 trace_debug ("Stack is empty, nothing to return");
4518 return expr_eval_empty_stack;
4519 }
4520 *rslt = top;
4521 }
4522 return expr_eval_no_error;
4523
4524 case gdb_agent_op_dup:
4525 stack[sp++] = top;
4526 break;
4527
4528 case gdb_agent_op_pop:
4529 if (--sp >= 0)
4530 top = stack[sp];
4531 break;
4532
c7f96d2b
TT
4533 case gdb_agent_op_pick:
4534 arg = aexpr->bytes[pc++];
4535 stack[sp] = top;
4536 top = stack[sp - arg];
4537 ++sp;
4538 break;
4539
4540 case gdb_agent_op_rot:
4541 {
4542 ULONGEST tem = stack[sp - 1];
4543
4544 stack[sp - 1] = stack[sp - 2];
4545 stack[sp - 2] = top;
4546 top = tem;
4547 }
4548 break;
4549
219f2f23
PA
4550 case gdb_agent_op_zero_ext:
4551 arg = aexpr->bytes[pc++];
4552 if (arg < (sizeof (LONGEST) * 8))
4553 top &= ((LONGEST) 1 << arg) - 1;
4554 break;
4555
4556 case gdb_agent_op_swap:
4557 /* Interchange top two stack elements, making sure top gets
4558 copied back onto stack. */
4559 stack[sp] = top;
4560 top = stack[sp - 1];
4561 stack[sp - 1] = stack[sp];
4562 break;
4563
4564 case gdb_agent_op_getv:
4565 /* Flush the cached stack top. */
4566 stack[sp++] = top;
4567 arg = aexpr->bytes[pc++];
4568 arg = (arg << 8) + aexpr->bytes[pc++];
4569 top = get_trace_state_variable_value (arg);
4570 break;
4571
4572 case gdb_agent_op_setv:
4573 arg = aexpr->bytes[pc++];
4574 arg = (arg << 8) + aexpr->bytes[pc++];
4575 set_trace_state_variable_value (arg, top);
4576 /* Note that we leave the value on the stack, for the
4577 benefit of later/enclosing expressions. */
4578 break;
4579
4580 case gdb_agent_op_tracev:
4581 arg = aexpr->bytes[pc++];
4582 arg = (arg << 8) + aexpr->bytes[pc++];
4583 agent_tsv_read (tframe, arg);
4584 break;
4585
f9c6ff72
HZ
4586 case gdb_agent_op_printf:
4587 {
4588 void *argv;
4589 arg = aexpr->bytes[pc++];
4590 argv = (void *) (unsigned long) top;
4591 if (--sp >= 0)
4592 top = stack[sp];
4593
4594 if (arg)
4595 {
4596 if (strstr ((char *) (aexpr->bytes + pc), "%s"))
4597 {
4598 int i;
4599 unsigned char buf[100];
4600
4601 for (i = 0; i < 100; i++)
4602 {
4603 agent_mem_read (tframe, buf + i,
4604 (CORE_ADDR) ((unsigned long)argv + i),
4605 1);
4606 if (!buf[i])
4607 break;
4608 }
4609 tp_printf ((char *) (aexpr->bytes + pc), buf);
4610 }
4611 else
4612 tp_printf ((char *) (aexpr->bytes + pc), argv);
4613 }
4614 else
4615 tp_printf ((char *) (aexpr->bytes + pc));
4616 pc += strlen ((char *) aexpr->bytes + pc) + 1;
4617 }
4618 break;
4619
219f2f23
PA
4620 /* GDB never (currently) generates any of these ops. */
4621 case gdb_agent_op_float:
4622 case gdb_agent_op_ref_float:
4623 case gdb_agent_op_ref_double:
4624 case gdb_agent_op_ref_long_double:
4625 case gdb_agent_op_l_to_d:
4626 case gdb_agent_op_d_to_l:
4627 case gdb_agent_op_trace16:
4628 trace_debug ("Agent expression op 0x%x valid, but not handled",
4629 op);
4630 /* If ever GDB generates any of these, we don't have the
4631 option of ignoring. */
4632 return 1;
4633
4634 default:
4635 trace_debug ("Agent expression op 0x%x not recognized", op);
4636 /* Don't struggle on, things will just get worse. */
4637 return expr_eval_unrecognized_opcode;
4638 }
4639
4640 /* Check for stack badness. */
4641 if (sp >= (STACK_MAX - 1))
4642 {
4643 trace_debug ("Expression stack overflow");
4644 return expr_eval_stack_overflow;
4645 }
4646
4647 if (sp < 0)
4648 {
4649 trace_debug ("Expression stack underflow");
4650 return expr_eval_stack_underflow;
4651 }
4652
4653 trace_debug ("Op %s -> sp=%d, top=0x%s",
94d5e490 4654 gdb_agent_op_name (op), sp, pulongest (top));
219f2f23
PA
4655 }
4656}
4657
4658/* Do memory copies for bytecodes. */
4659/* Do the recording of memory blocks for actions and bytecodes. */
4660
4661static int
4662agent_mem_read (struct traceframe *tframe,
4663 unsigned char *to, CORE_ADDR from, ULONGEST len)
4664{
4665 unsigned char *mspace;
4666 ULONGEST remaining = len;
4667 unsigned short blocklen;
4668
4669 /* If a 'to' buffer is specified, use it. */
4670 if (to != NULL)
4671 {
4672 read_inferior_memory (from, to, len);
4673 return 0;
4674 }
4675
4676 /* Otherwise, create a new memory block in the trace buffer. */
4677 while (remaining > 0)
4678 {
4679 size_t sp;
4680
4681 blocklen = (remaining > 65535 ? 65535 : remaining);
4682 sp = 1 + sizeof (from) + sizeof (blocklen) + blocklen;
4683 mspace = add_traceframe_block (tframe, sp);
4684 if (mspace == NULL)
4685 return 1;
4686 /* Identify block as a memory block. */
4687 *mspace = 'M';
4688 ++mspace;
4689 /* Record address and size. */
4690 memcpy (mspace, &from, sizeof (from));
4691 mspace += sizeof (from);
4692 memcpy (mspace, &blocklen, sizeof (blocklen));
4693 mspace += sizeof (blocklen);
4694 /* Record the memory block proper. */
4695 read_inferior_memory (from, mspace, blocklen);
4696 trace_debug ("%d bytes recorded", blocklen);
4697 remaining -= blocklen;
4698 from += blocklen;
4699 }
4700 return 0;
4701}
4702
4703/* Record the value of a trace state variable. */
4704
4705static int
4706agent_tsv_read (struct traceframe *tframe, int n)
4707{
4708 unsigned char *vspace;
4709 LONGEST val;
4710
4711 vspace = add_traceframe_block (tframe,
4712 1 + sizeof (n) + sizeof (LONGEST));
4713 if (vspace == NULL)
4714 return 1;
4715 /* Identify block as a variable. */
4716 *vspace = 'V';
4717 /* Record variable's number and value. */
4718 memcpy (vspace + 1, &n, sizeof (n));
4719 val = get_trace_state_variable_value (n);
4720 memcpy (vspace + 1 + sizeof (n), &val, sizeof (val));
4721 trace_debug ("Variable %d recorded", n);
4722 return 0;
4723}
4724
fa593d66
PA
4725#ifndef IN_PROCESS_AGENT
4726
b3b9301e
PA
4727/* Callback for traceframe_walk_blocks, used to find a given block
4728 type in a traceframe. */
4729
4730static int
4731match_blocktype (char blocktype, unsigned char *dataptr, void *data)
4732{
4733 char *wantedp = data;
4734
4735 if (*wantedp == blocktype)
4736 return 1;
4737
4738 return 0;
4739}
4740
4741/* Walk over all traceframe blocks of the traceframe buffer starting
4742 at DATABASE, of DATASIZE bytes long, and call CALLBACK for each
4743 block found, passing in DATA unmodified. If CALLBACK returns true,
4744 this returns a pointer to where the block is found. Returns NULL
4745 if no callback call returned true, indicating that all blocks have
4746 been walked. */
4747
219f2f23 4748static unsigned char *
b3b9301e
PA
4749traceframe_walk_blocks (unsigned char *database, unsigned int datasize,
4750 int tfnum,
4751 int (*callback) (char blocktype,
4752 unsigned char *dataptr,
4753 void *data),
4754 void *data)
219f2f23
PA
4755{
4756 unsigned char *dataptr;
4757
4758 if (datasize == 0)
4759 {
4760 trace_debug ("traceframe %d has no data", tfnum);
4761 return NULL;
4762 }
4763
4764 /* Iterate through a traceframe's blocks, looking for a block of the
4765 requested type. */
4766 for (dataptr = database;
4767 dataptr < database + datasize;
4768 /* nothing */)
4769 {
4770 char blocktype;
4771 unsigned short mlen;
4772
4773 if (dataptr == trace_buffer_wrap)
4774 {
4775 /* Adjust to reflect wrapping part of the frame around to
4776 the beginning. */
4777 datasize = dataptr - database;
4778 dataptr = database = trace_buffer_lo;
4779 }
b3b9301e 4780
219f2f23
PA
4781 blocktype = *dataptr++;
4782
b3b9301e 4783 if ((*callback) (blocktype, dataptr, data))
219f2f23
PA
4784 return dataptr;
4785
4786 switch (blocktype)
4787 {
4788 case 'R':
4789 /* Skip over the registers block. */
4790 dataptr += register_cache_size ();
4791 break;
4792 case 'M':
4793 /* Skip over the memory block. */
4794 dataptr += sizeof (CORE_ADDR);
4795 memcpy (&mlen, dataptr, sizeof (mlen));
4796 dataptr += (sizeof (mlen) + mlen);
4797 break;
219f2f23
PA
4798 case 'V':
4799 /* Skip over the TSV block. */
4800 dataptr += (sizeof (int) + sizeof (LONGEST));
4801 break;
0fb4aa4b
PA
4802 case 'S':
4803 /* Skip over the static trace data block. */
4804 memcpy (&mlen, dataptr, sizeof (mlen));
4805 dataptr += (sizeof (mlen) + mlen);
4806 break;
219f2f23
PA
4807 default:
4808 trace_debug ("traceframe %d has unknown block type 0x%x",
4809 tfnum, blocktype);
4810 return NULL;
4811 }
4812 }
4813
4814 return NULL;
4815}
4816
b3b9301e
PA
4817/* Look for the block of type TYPE_WANTED in the trameframe starting
4818 at DATABASE of DATASIZE bytes long. TFNUM is the traceframe
4819 number. */
4820
4821static unsigned char *
4822traceframe_find_block_type (unsigned char *database, unsigned int datasize,
4823 int tfnum, char type_wanted)
4824{
4825 return traceframe_walk_blocks (database, datasize, tfnum,
4826 match_blocktype, &type_wanted);
4827}
4828
219f2f23
PA
4829static unsigned char *
4830traceframe_find_regblock (struct traceframe *tframe, int tfnum)
4831{
4832 unsigned char *regblock;
4833
4834 regblock = traceframe_find_block_type (tframe->data,
4835 tframe->data_size,
4836 tfnum, 'R');
4837
4838 if (regblock == NULL)
4839 trace_debug ("traceframe %d has no register data", tfnum);
4840
4841 return regblock;
4842}
4843
4844/* Get registers from a traceframe. */
4845
4846int
4847fetch_traceframe_registers (int tfnum, struct regcache *regcache, int regnum)
4848{
4849 unsigned char *dataptr;
4850 struct tracepoint *tpoint;
4851 struct traceframe *tframe;
4852
4853 tframe = find_traceframe (tfnum);
4854
4855 if (tframe == NULL)
4856 {
4857 trace_debug ("traceframe %d not found", tfnum);
4858 return 1;
4859 }
4860
4861 dataptr = traceframe_find_regblock (tframe, tfnum);
4862 if (dataptr == NULL)
4863 {
1c79eb8a 4864 /* Mark registers unavailable. */
219f2f23
PA
4865 supply_regblock (regcache, NULL);
4866
4867 /* We can generally guess at a PC, although this will be
4868 misleading for while-stepping frames and multi-location
4869 tracepoints. */
4870 tpoint = find_next_tracepoint_by_number (NULL, tframe->tpnum);
4871 if (tpoint != NULL)
4872 regcache_write_pc (regcache, tpoint->address);
4873 }
4874 else
4875 supply_regblock (regcache, dataptr);
4876
4877 return 0;
4878}
4879
4880static CORE_ADDR
4881traceframe_get_pc (struct traceframe *tframe)
4882{
4883 struct regcache regcache;
4884 unsigned char *dataptr;
4885
4886 dataptr = traceframe_find_regblock (tframe, -1);
4887 if (dataptr == NULL)
4888 return 0;
4889
4890 init_register_cache (&regcache, dataptr);
4891 return regcache_read_pc (&regcache);
4892}
4893
4894/* Read a requested block of memory from a trace frame. */
4895
4896int
4897traceframe_read_mem (int tfnum, CORE_ADDR addr,
4898 unsigned char *buf, ULONGEST length,
4899 ULONGEST *nbytes)
4900{
4901 struct traceframe *tframe;
4902 unsigned char *database, *dataptr;
4903 unsigned int datasize;
4904 CORE_ADDR maddr;
4905 unsigned short mlen;
4906
4907 trace_debug ("traceframe_read_mem");
4908
4909 tframe = find_traceframe (tfnum);
4910
4911 if (!tframe)
4912 {
4913 trace_debug ("traceframe %d not found", tfnum);
4914 return 1;
4915 }
4916
4917 datasize = tframe->data_size;
4918 database = dataptr = &tframe->data[0];
4919
4920 /* Iterate through a traceframe's blocks, looking for memory. */
4921 while ((dataptr = traceframe_find_block_type (dataptr,
493e2a69
MS
4922 datasize
4923 - (dataptr - database),
219f2f23
PA
4924 tfnum, 'M')) != NULL)
4925 {
4926 memcpy (&maddr, dataptr, sizeof (maddr));
4927 dataptr += sizeof (maddr);
4928 memcpy (&mlen, dataptr, sizeof (mlen));
4929 dataptr += sizeof (mlen);
4930 trace_debug ("traceframe %d has %d bytes at %s",
4931 tfnum, mlen, paddress (maddr));
4932
764880b7
PA
4933 /* If the block includes the first part of the desired range,
4934 return as much it has; GDB will re-request the remainder,
4935 which might be in a different block of this trace frame. */
4936 if (maddr <= addr && addr < (maddr + mlen))
219f2f23 4937 {
764880b7
PA
4938 ULONGEST amt = (maddr + mlen) - addr;
4939 if (amt > length)
4940 amt = length;
4941
4942 memcpy (buf, dataptr + (addr - maddr), amt);
4943 *nbytes = amt;
219f2f23
PA
4944 return 0;
4945 }
4946
4947 /* Skip over this block. */
4948 dataptr += mlen;
4949 }
4950
4951 trace_debug ("traceframe %d has no memory data for the desired region",
4952 tfnum);
4953
4954 *nbytes = 0;
4955 return 0;
4956}
4957
4958static int
4959traceframe_read_tsv (int tsvnum, LONGEST *val)
4960{
4961 int tfnum;
4962 struct traceframe *tframe;
4963 unsigned char *database, *dataptr;
4964 unsigned int datasize;
4965 int vnum;
4966
4967 trace_debug ("traceframe_read_tsv");
4968
4969 tfnum = current_traceframe;
4970
4971 if (tfnum < 0)
4972 {
4973 trace_debug ("no current traceframe");
4974 return 1;
4975 }
4976
4977 tframe = find_traceframe (tfnum);
4978
4979 if (tframe == NULL)
4980 {
4981 trace_debug ("traceframe %d not found", tfnum);
4982 return 1;
4983 }
4984
4985 datasize = tframe->data_size;
4986 database = dataptr = &tframe->data[0];
4987
4988 /* Iterate through a traceframe's blocks, looking for the tsv. */
4989 while ((dataptr = traceframe_find_block_type (dataptr,
493e2a69
MS
4990 datasize
4991 - (dataptr - database),
219f2f23
PA
4992 tfnum, 'V')) != NULL)
4993 {
4994 memcpy (&vnum, dataptr, sizeof (vnum));
4995 dataptr += sizeof (vnum);
4996
4997 trace_debug ("traceframe %d has variable %d", tfnum, vnum);
4998
4999 /* Check that this is the variable we want. */
5000 if (tsvnum == vnum)
5001 {
5002 memcpy (val, dataptr, sizeof (*val));
5003 return 0;
5004 }
5005
5006 /* Skip over this block. */
5007 dataptr += sizeof (LONGEST);
5008 }
5009
5010 trace_debug ("traceframe %d has no data for variable %d",
5011 tfnum, tsvnum);
5012 return 1;
5013}
5014
0fb4aa4b
PA
5015/* Read a requested block of static tracepoint data from a trace
5016 frame. */
5017
5018int
5019traceframe_read_sdata (int tfnum, ULONGEST offset,
5020 unsigned char *buf, ULONGEST length,
5021 ULONGEST *nbytes)
5022{
5023 struct traceframe *tframe;
5024 unsigned char *database, *dataptr;
5025 unsigned int datasize;
5026 unsigned short mlen;
5027
5028 trace_debug ("traceframe_read_sdata");
5029
5030 tframe = find_traceframe (tfnum);
5031
5032 if (!tframe)
5033 {
5034 trace_debug ("traceframe %d not found", tfnum);
5035 return 1;
5036 }
5037
5038 datasize = tframe->data_size;
5039 database = &tframe->data[0];
5040
5041 /* Iterate through a traceframe's blocks, looking for static
5042 tracepoint data. */
5043 dataptr = traceframe_find_block_type (database, datasize,
5044 tfnum, 'S');
5045 if (dataptr != NULL)
5046 {
5047 memcpy (&mlen, dataptr, sizeof (mlen));
5048 dataptr += sizeof (mlen);
5049 if (offset < mlen)
5050 {
5051 if (offset + length > mlen)
5052 length = mlen - offset;
5053
5054 memcpy (buf, dataptr, length);
5055 *nbytes = length;
5056 }
5057 else
5058 *nbytes = 0;
5059 return 0;
5060 }
5061
5062 trace_debug ("traceframe %d has no static trace data", tfnum);
5063
5064 *nbytes = 0;
5065 return 0;
5066}
5067
b3b9301e
PA
5068/* Callback for traceframe_walk_blocks. Builds a traceframe-info
5069 object. DATA is pointer to a struct buffer holding the
5070 traceframe-info object being built. */
5071
5072static int
5073build_traceframe_info_xml (char blocktype, unsigned char *dataptr, void *data)
5074{
5075 struct buffer *buffer = data;
5076
5077 switch (blocktype)
5078 {
5079 case 'M':
5080 {
5081 unsigned short mlen;
5082 CORE_ADDR maddr;
5083
5084 memcpy (&maddr, dataptr, sizeof (maddr));
5085 dataptr += sizeof (maddr);
5086 memcpy (&mlen, dataptr, sizeof (mlen));
5087 dataptr += sizeof (mlen);
5088 buffer_xml_printf (buffer,
5089 "<memory start=\"0x%s\" length=\"0x%s\"/>\n",
5090 paddress (maddr), phex_nz (mlen, sizeof (mlen)));
5091 break;
5092 }
5093 case 'V':
5094 case 'R':
5095 case 'S':
5096 {
5097 break;
5098 }
5099 default:
5100 warning ("Unhandled trace block type (%d) '%c ' "
5101 "while building trace frame info.",
5102 blocktype, blocktype);
5103 break;
5104 }
5105
5106 return 0;
5107}
5108
5109/* Build a traceframe-info object for traceframe number TFNUM into
5110 BUFFER. */
5111
5112int
5113traceframe_read_info (int tfnum, struct buffer *buffer)
5114{
5115 struct traceframe *tframe;
5116
5117 trace_debug ("traceframe_read_info");
5118
5119 tframe = find_traceframe (tfnum);
5120
5121 if (!tframe)
5122 {
5123 trace_debug ("traceframe %d not found", tfnum);
5124 return 1;
5125 }
5126
5127 buffer_grow_str (buffer, "<traceframe-info>\n");
5128 traceframe_walk_blocks (tframe->data, tframe->data_size,
5129 tfnum, build_traceframe_info_xml, buffer);
5130 buffer_grow_str0 (buffer, "</traceframe-info>\n");
5131 return 0;
5132}
5133
fa593d66
PA
5134/* Return the first fast tracepoint whose jump pad contains PC. */
5135
5136static struct tracepoint *
5137fast_tracepoint_from_jump_pad_address (CORE_ADDR pc)
5138{
5139 struct tracepoint *tpoint;
5140
5141 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
5142 if (tpoint->type == fast_tracepoint)
5143 if (tpoint->jump_pad <= pc && pc < tpoint->jump_pad_end)
5144 return tpoint;
5145
5146 return NULL;
5147}
5148
5149/* Return GDBserver's tracepoint that matches the IP Agent's
5150 tracepoint object that lives at IPA_TPOINT_OBJ in the IP Agent's
5151 address space. */
5152
5153static struct tracepoint *
5154fast_tracepoint_from_ipa_tpoint_address (CORE_ADDR ipa_tpoint_obj)
5155{
5156 struct tracepoint *tpoint;
5157
5158 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
5159 if (tpoint->type == fast_tracepoint)
5160 if (tpoint->obj_addr_on_target == ipa_tpoint_obj)
5161 return tpoint;
5162
5163 return NULL;
5164}
5165
5166#endif
5167
5168/* The type of the object that is used to synchronize fast tracepoint
5169 collection. */
5170
5171typedef struct collecting_t
5172{
5173 /* The fast tracepoint number currently collecting. */
5174 uintptr_t tpoint;
5175
5176 /* A number that GDBserver can use to identify the thread that is
5177 presently holding the collect lock. This need not (and usually
5178 is not) the thread id, as getting the current thread ID usually
5179 requires a system call, which we want to avoid like the plague.
5180 Usually this is thread's TCB, found in the TLS (pseudo-)
5181 register, which is readable with a single insn on several
5182 architectures. */
5183 uintptr_t thread_area;
5184} collecting_t;
5185
5186#ifndef IN_PROCESS_AGENT
5187
5188void
5189force_unlock_trace_buffer (void)
5190{
5191 write_inferior_data_pointer (ipa_sym_addrs.addr_collecting, 0);
5192}
5193
5194/* Check if the thread identified by THREAD_AREA which is stopped at
5195 STOP_PC, is presently locking the fast tracepoint collection, and
5196 if so, gather some status of said collection. Returns 0 if the
5197 thread isn't collecting or in the jump pad at all. 1, if in the
5198 jump pad (or within gdb_collect) and hasn't executed the adjusted
5199 original insn yet (can set a breakpoint there and run to it). 2,
5200 if presently executing the adjusted original insn --- in which
5201 case, if we want to move the thread out of the jump pad, we need to
5202 single-step it until this function returns 0. */
5203
5204int
5205fast_tracepoint_collecting (CORE_ADDR thread_area,
5206 CORE_ADDR stop_pc,
5207 struct fast_tpoint_collect_status *status)
5208{
5209 CORE_ADDR ipa_collecting;
5210 CORE_ADDR ipa_gdb_jump_pad_buffer, ipa_gdb_jump_pad_buffer_end;
5211 struct tracepoint *tpoint;
5212 int needs_breakpoint;
5213
5214 /* The thread THREAD_AREA is either:
5215
5216 0. not collecting at all, not within the jump pad, or within
5217 gdb_collect or one of its callees.
5218
5219 1. in the jump pad and haven't reached gdb_collect
5220
5221 2. within gdb_collect (out of the jump pad) (collect is set)
5222
5223 3. we're in the jump pad, after gdb_collect having returned,
5224 possibly executing the adjusted insns.
5225
5226 For cases 1 and 3, `collecting' may or not be set. The jump pad
5227 doesn't have any complicated jump logic, so we can tell if the
5228 thread is executing the adjust original insn or not by just
5229 matching STOP_PC with known jump pad addresses. If we it isn't
5230 yet executing the original insn, set a breakpoint there, and let
5231 the thread run to it, so to quickly step over a possible (many
5232 insns) gdb_collect call. Otherwise, or when the breakpoint is
5233 hit, only a few (small number of) insns are left to be executed
5234 in the jump pad. Single-step the thread until it leaves the
5235 jump pad. */
5236
5237 again:
5238 tpoint = NULL;
5239 needs_breakpoint = 0;
5240 trace_debug ("fast_tracepoint_collecting");
5241
5242 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_jump_pad_buffer,
5243 &ipa_gdb_jump_pad_buffer))
5244 fatal ("error extracting `gdb_jump_pad_buffer'");
5245 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_jump_pad_buffer_end,
5246 &ipa_gdb_jump_pad_buffer_end))
5247 fatal ("error extracting `gdb_jump_pad_buffer_end'");
5248
493e2a69
MS
5249 if (ipa_gdb_jump_pad_buffer <= stop_pc
5250 && stop_pc < ipa_gdb_jump_pad_buffer_end)
fa593d66
PA
5251 {
5252 /* We can tell which tracepoint(s) the thread is collecting by
5253 matching the jump pad address back to the tracepoint. */
5254 tpoint = fast_tracepoint_from_jump_pad_address (stop_pc);
5255 if (tpoint == NULL)
5256 {
5257 warning ("in jump pad, but no matching tpoint?");
5258 return 0;
5259 }
5260 else
5261 {
5262 trace_debug ("in jump pad of tpoint (%d, %s); jump_pad(%s, %s); "
5263 "adj_insn(%s, %s)",
5264 tpoint->number, paddress (tpoint->address),
5265 paddress (tpoint->jump_pad),
5266 paddress (tpoint->jump_pad_end),
5267 paddress (tpoint->adjusted_insn_addr),
5268 paddress (tpoint->adjusted_insn_addr_end));
5269 }
5270
5271 /* Definitely in the jump pad. May or may not need
5272 fast-exit-jump-pad breakpoint. */
5273 if (tpoint->jump_pad <= stop_pc
5274 && stop_pc < tpoint->adjusted_insn_addr)
5275 needs_breakpoint = 1;
5276 }
5277 else
5278 {
5279 collecting_t ipa_collecting_obj;
5280
5281 /* If `collecting' is set/locked, then the THREAD_AREA thread
5282 may or not be the one holding the lock. We have to read the
5283 lock to find out. */
5284
5285 if (read_inferior_data_pointer (ipa_sym_addrs.addr_collecting,
5286 &ipa_collecting))
5287 {
5288 trace_debug ("fast_tracepoint_collecting:"
5289 " failed reading 'collecting' in the inferior");
5290 return 0;
5291 }
5292
5293 if (!ipa_collecting)
5294 {
5295 trace_debug ("fast_tracepoint_collecting: not collecting"
5296 " (and nobody is).");
5297 return 0;
5298 }
5299
5300 /* Some thread is collecting. Check which. */
5301 if (read_inferior_memory (ipa_collecting,
5302 (unsigned char *) &ipa_collecting_obj,
5303 sizeof (ipa_collecting_obj)) != 0)
5304 goto again;
5305
5306 if (ipa_collecting_obj.thread_area != thread_area)
5307 {
5308 trace_debug ("fast_tracepoint_collecting: not collecting "
5309 "(another thread is)");
5310 return 0;
5311 }
5312
5313 tpoint
5314 = fast_tracepoint_from_ipa_tpoint_address (ipa_collecting_obj.tpoint);
5315 if (tpoint == NULL)
5316 {
5317 warning ("fast_tracepoint_collecting: collecting, "
5318 "but tpoint %s not found?",
5319 paddress ((CORE_ADDR) ipa_collecting_obj.tpoint));
5320 return 0;
5321 }
5322
5323 /* The thread is within `gdb_collect', skip over the rest of
5324 fast tracepoint collection quickly using a breakpoint. */
5325 needs_breakpoint = 1;
5326 }
5327
5328 /* The caller wants a bit of status detail. */
5329 if (status != NULL)
5330 {
5331 status->tpoint_num = tpoint->number;
5332 status->tpoint_addr = tpoint->address;
5333 status->adjusted_insn_addr = tpoint->adjusted_insn_addr;
5334 status->adjusted_insn_addr_end = tpoint->adjusted_insn_addr_end;
5335 }
5336
5337 if (needs_breakpoint)
5338 {
5339 /* Hasn't executed the original instruction yet. Set breakpoint
5340 there, and wait till it's hit, then single-step until exiting
5341 the jump pad. */
5342
5343 trace_debug ("\
5344fast_tracepoint_collecting, returning continue-until-break at %s",
5345 paddress (tpoint->adjusted_insn_addr));
5346
5347 return 1; /* continue */
5348 }
5349 else
5350 {
5351 /* Just single-step until exiting the jump pad. */
5352
5353 trace_debug ("fast_tracepoint_collecting, returning "
5354 "need-single-step (%s-%s)",
5355 paddress (tpoint->adjusted_insn_addr),
5356 paddress (tpoint->adjusted_insn_addr_end));
5357
5358 return 2; /* single-step */
5359 }
5360}
5361
5362#endif
5363
5364#ifdef IN_PROCESS_AGENT
5365
5366/* The global fast tracepoint collect lock. Points to a collecting_t
5367 object built on the stack by the jump pad, if presently locked;
5368 NULL if it isn't locked. Note that this lock *must* be set while
5369 executing any *function other than the jump pad. See
5370 fast_tracepoint_collecting. */
5371static collecting_t * ATTR_USED collecting;
5372
5373/* This routine, called from the jump pad (in asm) is designed to be
5374 called from the jump pads of fast tracepoints, thus it is on the
5375 critical path. */
5376
5377IP_AGENT_EXPORT void ATTR_USED
5378gdb_collect (struct tracepoint *tpoint, unsigned char *regs)
5379{
5380 struct fast_tracepoint_ctx ctx;
5381
5382 /* Don't do anything until the trace run is completely set up. */
5383 if (!tracing)
5384 return;
5385
5386 ctx.base.type = fast_tracepoint;
5387 ctx.regs = regs;
5388 ctx.regcache_initted = 0;
5389 ctx.tpoint = tpoint;
5390
5391 /* Wrap the regblock in a register cache (in the stack, we don't
5392 want to malloc here). */
5393 ctx.regspace = alloca (register_cache_size ());
5394 if (ctx.regspace == NULL)
5395 {
5396 trace_debug ("Trace buffer block allocation failed, skipping");
5397 return;
5398 }
5399
5400 /* Test the condition if present, and collect if true. */
5401 if (tpoint->cond == NULL
5402 || condition_true_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
5403 tpoint))
5404 {
5405 collect_data_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
5406 tpoint->address, tpoint);
5407
5408 /* Note that this will cause original insns to be written back
5409 to where we jumped from, but that's OK because we're jumping
5410 back to the next whole instruction. This will go badly if
5411 instruction restoration is not atomic though. */
5412 if (stopping_tracepoint
5413 || trace_buffer_is_full
5414 || expr_eval_result != expr_eval_no_error)
5415 stop_tracing ();
5416 }
5417 else
5418 {
5419 /* If there was a condition and it evaluated to false, the only
5420 way we would stop tracing is if there was an error during
5421 condition expression evaluation. */
5422 if (expr_eval_result != expr_eval_no_error)
5423 stop_tracing ();
5424 }
5425}
5426
5427#endif
5428
5429#ifndef IN_PROCESS_AGENT
5430
6a271cae
PA
5431/* Bytecode compilation. */
5432
5433CORE_ADDR current_insn_ptr;
5434
5435int emit_error;
5436
5437struct bytecode_address
5438{
5439 int pc;
5440 CORE_ADDR address;
5441 int goto_pc;
5442 /* Offset and size of field to be modified in the goto block. */
5443 int from_offset, from_size;
5444 struct bytecode_address *next;
5445} *bytecode_address_table;
5446
5447CORE_ADDR
5448get_raw_reg_func_addr (void)
5449{
5450 return ipa_sym_addrs.addr_get_raw_reg;
5451}
5452
5453static void
5454emit_prologue (void)
5455{
5456 target_emit_ops ()->emit_prologue ();
5457}
5458
5459static void
5460emit_epilogue (void)
5461{
5462 target_emit_ops ()->emit_epilogue ();
5463}
5464
5465static void
5466emit_add (void)
5467{
5468 target_emit_ops ()->emit_add ();
5469}
5470
5471static void
5472emit_sub (void)
5473{
5474 target_emit_ops ()->emit_sub ();
5475}
5476
5477static void
5478emit_mul (void)
5479{
5480 target_emit_ops ()->emit_mul ();
5481}
5482
5483static void
5484emit_lsh (void)
5485{
5486 target_emit_ops ()->emit_lsh ();
5487}
5488
5489static void
5490emit_rsh_signed (void)
5491{
5492 target_emit_ops ()->emit_rsh_signed ();
5493}
5494
5495static void
5496emit_rsh_unsigned (void)
5497{
5498 target_emit_ops ()->emit_rsh_unsigned ();
5499}
5500
5501static void
5502emit_ext (int arg)
5503{
5504 target_emit_ops ()->emit_ext (arg);
5505}
5506
5507static void
5508emit_log_not (void)
5509{
5510 target_emit_ops ()->emit_log_not ();
5511}
5512
5513static void
5514emit_bit_and (void)
5515{
5516 target_emit_ops ()->emit_bit_and ();
5517}
5518
5519static void
5520emit_bit_or (void)
5521{
5522 target_emit_ops ()->emit_bit_or ();
5523}
5524
5525static void
5526emit_bit_xor (void)
5527{
5528 target_emit_ops ()->emit_bit_xor ();
5529}
5530
5531static void
5532emit_bit_not (void)
5533{
5534 target_emit_ops ()->emit_bit_not ();
5535}
5536
5537static void
5538emit_equal (void)
5539{
5540 target_emit_ops ()->emit_equal ();
5541}
5542
5543static void
5544emit_less_signed (void)
5545{
5546 target_emit_ops ()->emit_less_signed ();
5547}
5548
5549static void
5550emit_less_unsigned (void)
5551{
5552 target_emit_ops ()->emit_less_unsigned ();
5553}
5554
5555static void
5556emit_ref (int size)
5557{
5558 target_emit_ops ()->emit_ref (size);
5559}
5560
5561static void
5562emit_if_goto (int *offset_p, int *size_p)
5563{
5564 target_emit_ops ()->emit_if_goto (offset_p, size_p);
5565}
5566
5567static void
5568emit_goto (int *offset_p, int *size_p)
5569{
5570 target_emit_ops ()->emit_goto (offset_p, size_p);
5571}
5572
5573static void
5574write_goto_address (CORE_ADDR from, CORE_ADDR to, int size)
5575{
5576 target_emit_ops ()->write_goto_address (from, to, size);
5577}
5578
5579static void
4e29fb54 5580emit_const (LONGEST num)
6a271cae
PA
5581{
5582 target_emit_ops ()->emit_const (num);
5583}
5584
5585static void
5586emit_reg (int reg)
5587{
5588 target_emit_ops ()->emit_reg (reg);
5589}
5590
5591static void
5592emit_pop (void)
5593{
5594 target_emit_ops ()->emit_pop ();
5595}
5596
5597static void
5598emit_stack_flush (void)
5599{
5600 target_emit_ops ()->emit_stack_flush ();
5601}
5602
5603static void
5604emit_zero_ext (int arg)
5605{
5606 target_emit_ops ()->emit_zero_ext (arg);
5607}
5608
5609static void
5610emit_swap (void)
5611{
5612 target_emit_ops ()->emit_swap ();
5613}
5614
5615static void
5616emit_stack_adjust (int n)
5617{
5618 target_emit_ops ()->emit_stack_adjust (n);
5619}
5620
5621/* FN's prototype is `LONGEST(*fn)(int)'. */
5622
5623static void
5624emit_int_call_1 (CORE_ADDR fn, int arg1)
5625{
5626 target_emit_ops ()->emit_int_call_1 (fn, arg1);
5627}
5628
4e29fb54 5629/* FN's prototype is `void(*fn)(int,LONGEST)'. */
6a271cae
PA
5630
5631static void
5632emit_void_call_2 (CORE_ADDR fn, int arg1)
5633{
5634 target_emit_ops ()->emit_void_call_2 (fn, arg1);
5635}
5636
5637static enum eval_result_type compile_bytecodes (struct agent_expr *aexpr);
5638
5639static void
493e2a69
MS
5640compile_tracepoint_condition (struct tracepoint *tpoint,
5641 CORE_ADDR *jump_entry)
6a271cae
PA
5642{
5643 CORE_ADDR entry_point = *jump_entry;
5644 enum eval_result_type err;
5645
5646 trace_debug ("Starting condition compilation for tracepoint %d\n",
5647 tpoint->number);
5648
5649 /* Initialize the global pointer to the code being built. */
5650 current_insn_ptr = *jump_entry;
5651
5652 emit_prologue ();
5653
5654 err = compile_bytecodes (tpoint->cond);
5655
5656 if (err == expr_eval_no_error)
5657 {
5658 emit_epilogue ();
5659
5660 /* Record the beginning of the compiled code. */
5661 tpoint->compiled_cond = entry_point;
5662
5663 trace_debug ("Condition compilation for tracepoint %d complete\n",
5664 tpoint->number);
5665 }
5666 else
5667 {
5668 /* Leave the unfinished code in situ, but don't point to it. */
5669
5670 tpoint->compiled_cond = 0;
5671
5672 trace_debug ("Condition compilation for tracepoint %d failed, "
5673 "error code %d",
5674 tpoint->number, err);
5675 }
5676
5677 /* Update the code pointer passed in. Note that we do this even if
5678 the compile fails, so that we can look at the partial results
5679 instead of letting them be overwritten. */
5680 *jump_entry = current_insn_ptr;
5681
5682 /* Leave a gap, to aid dump decipherment. */
5683 *jump_entry += 16;
5684}
5685
5686/* Given an agent expression, turn it into native code. */
5687
5688static enum eval_result_type
5689compile_bytecodes (struct agent_expr *aexpr)
5690{
5691 int pc = 0;
5692 int done = 0;
5693 unsigned char op;
5694 int arg;
5695 /* This is only used to build 64-bit value for constants. */
5696 ULONGEST top;
5697 struct bytecode_address *aentry, *aentry2;
5698
5699#define UNHANDLED \
5700 do \
5701 { \
5702 trace_debug ("Cannot compile op 0x%x\n", op); \
5703 return expr_eval_unhandled_opcode; \
5704 } while (0)
5705
5706 if (aexpr->length == 0)
5707 {
5708 trace_debug ("empty agent expression\n");
5709 return expr_eval_empty_expression;
5710 }
5711
5712 bytecode_address_table = NULL;
5713
5714 while (!done)
5715 {
5716 op = aexpr->bytes[pc];
5717
5718 trace_debug ("About to compile op 0x%x, pc=%d\n", op, pc);
5719
5720 /* Record the compiled-code address of the bytecode, for use by
5721 jump instructions. */
5722 aentry = xmalloc (sizeof (struct bytecode_address));
5723 aentry->pc = pc;
5724 aentry->address = current_insn_ptr;
5725 aentry->goto_pc = -1;
5726 aentry->from_offset = aentry->from_size = 0;
5727 aentry->next = bytecode_address_table;
5728 bytecode_address_table = aentry;
5729
5730 ++pc;
5731
5732 emit_error = 0;
5733
5734 switch (op)
5735 {
5736 case gdb_agent_op_add:
5737 emit_add ();
5738 break;
5739
5740 case gdb_agent_op_sub:
5741 emit_sub ();
5742 break;
5743
5744 case gdb_agent_op_mul:
5745 emit_mul ();
5746 break;
5747
5748 case gdb_agent_op_div_signed:
5749 UNHANDLED;
5750 break;
5751
5752 case gdb_agent_op_div_unsigned:
5753 UNHANDLED;
5754 break;
5755
5756 case gdb_agent_op_rem_signed:
5757 UNHANDLED;
5758 break;
5759
5760 case gdb_agent_op_rem_unsigned:
5761 UNHANDLED;
5762 break;
5763
5764 case gdb_agent_op_lsh:
5765 emit_lsh ();
5766 break;
5767
5768 case gdb_agent_op_rsh_signed:
5769 emit_rsh_signed ();
5770 break;
5771
5772 case gdb_agent_op_rsh_unsigned:
5773 emit_rsh_unsigned ();
5774 break;
5775
5776 case gdb_agent_op_trace:
5777 UNHANDLED;
5778 break;
5779
5780 case gdb_agent_op_trace_quick:
5781 UNHANDLED;
5782 break;
5783
5784 case gdb_agent_op_log_not:
5785 emit_log_not ();
5786 break;
5787
5788 case gdb_agent_op_bit_and:
5789 emit_bit_and ();
5790 break;
5791
5792 case gdb_agent_op_bit_or:
5793 emit_bit_or ();
5794 break;
5795
5796 case gdb_agent_op_bit_xor:
5797 emit_bit_xor ();
5798 break;
5799
5800 case gdb_agent_op_bit_not:
5801 emit_bit_not ();
5802 break;
5803
5804 case gdb_agent_op_equal:
5805 emit_equal ();
5806 break;
5807
5808 case gdb_agent_op_less_signed:
5809 emit_less_signed ();
5810 break;
5811
5812 case gdb_agent_op_less_unsigned:
5813 emit_less_unsigned ();
5814 break;
5815
5816 case gdb_agent_op_ext:
5817 arg = aexpr->bytes[pc++];
5818 if (arg < (sizeof (LONGEST) * 8))
5819 emit_ext (arg);
5820 break;
5821
5822 case gdb_agent_op_ref8:
5823 emit_ref (1);
5824 break;
5825
5826 case gdb_agent_op_ref16:
5827 emit_ref (2);
5828 break;
5829
5830 case gdb_agent_op_ref32:
5831 emit_ref (4);
5832 break;
5833
5834 case gdb_agent_op_ref64:
5835 emit_ref (8);
5836 break;
5837
5838 case gdb_agent_op_if_goto:
5839 arg = aexpr->bytes[pc++];
5840 arg = (arg << 8) + aexpr->bytes[pc++];
5841 aentry->goto_pc = arg;
5842 emit_if_goto (&(aentry->from_offset), &(aentry->from_size));
5843 break;
5844
5845 case gdb_agent_op_goto:
5846 arg = aexpr->bytes[pc++];
5847 arg = (arg << 8) + aexpr->bytes[pc++];
5848 aentry->goto_pc = arg;
5849 emit_goto (&(aentry->from_offset), &(aentry->from_size));
5850 break;
5851
5852 case gdb_agent_op_const8:
5853 emit_stack_flush ();
5854 top = aexpr->bytes[pc++];
5855 emit_const (top);
5856 break;
5857
5858 case gdb_agent_op_const16:
5859 emit_stack_flush ();
5860 top = aexpr->bytes[pc++];
5861 top = (top << 8) + aexpr->bytes[pc++];
5862 emit_const (top);
5863 break;
5864
5865 case gdb_agent_op_const32:
5866 emit_stack_flush ();
5867 top = aexpr->bytes[pc++];
5868 top = (top << 8) + aexpr->bytes[pc++];
5869 top = (top << 8) + aexpr->bytes[pc++];
5870 top = (top << 8) + aexpr->bytes[pc++];
5871 emit_const (top);
5872 break;
5873
5874 case gdb_agent_op_const64:
5875 emit_stack_flush ();
5876 top = aexpr->bytes[pc++];
5877 top = (top << 8) + aexpr->bytes[pc++];
5878 top = (top << 8) + aexpr->bytes[pc++];
5879 top = (top << 8) + aexpr->bytes[pc++];
5880 top = (top << 8) + aexpr->bytes[pc++];
5881 top = (top << 8) + aexpr->bytes[pc++];
5882 top = (top << 8) + aexpr->bytes[pc++];
5883 top = (top << 8) + aexpr->bytes[pc++];
5884 emit_const (top);
5885 break;
5886
5887 case gdb_agent_op_reg:
5888 emit_stack_flush ();
5889 arg = aexpr->bytes[pc++];
5890 arg = (arg << 8) + aexpr->bytes[pc++];
5891 emit_reg (arg);
5892 break;
5893
5894 case gdb_agent_op_end:
5895 trace_debug ("At end of expression\n");
5896
5897 /* Assume there is one stack element left, and that it is
5898 cached in "top" where emit_epilogue can get to it. */
5899 emit_stack_adjust (1);
5900
5901 done = 1;
5902 break;
5903
5904 case gdb_agent_op_dup:
5905 /* In our design, dup is equivalent to stack flushing. */
5906 emit_stack_flush ();
5907 break;
5908
5909 case gdb_agent_op_pop:
5910 emit_pop ();
5911 break;
5912
5913 case gdb_agent_op_zero_ext:
5914 arg = aexpr->bytes[pc++];
5915 if (arg < (sizeof (LONGEST) * 8))
5916 emit_zero_ext (arg);
5917 break;
5918
5919 case gdb_agent_op_swap:
5920 emit_swap ();
5921 break;
5922
5923 case gdb_agent_op_getv:
5924 emit_stack_flush ();
5925 arg = aexpr->bytes[pc++];
5926 arg = (arg << 8) + aexpr->bytes[pc++];
5927 emit_int_call_1 (ipa_sym_addrs.addr_get_trace_state_variable_value,
5928 arg);
5929 break;
5930
5931 case gdb_agent_op_setv:
5932 arg = aexpr->bytes[pc++];
5933 arg = (arg << 8) + aexpr->bytes[pc++];
5934 emit_void_call_2 (ipa_sym_addrs.addr_set_trace_state_variable_value,
5935 arg);
5936 break;
5937
5938 case gdb_agent_op_tracev:
5939 UNHANDLED;
5940 break;
5941
5942 /* GDB never (currently) generates any of these ops. */
5943 case gdb_agent_op_float:
5944 case gdb_agent_op_ref_float:
5945 case gdb_agent_op_ref_double:
5946 case gdb_agent_op_ref_long_double:
5947 case gdb_agent_op_l_to_d:
5948 case gdb_agent_op_d_to_l:
5949 case gdb_agent_op_trace16:
5950 UNHANDLED;
5951 break;
5952
5953 default:
5954 trace_debug ("Agent expression op 0x%x not recognized\n", op);
5955 /* Don't struggle on, things will just get worse. */
5956 return expr_eval_unrecognized_opcode;
5957 }
5958
5959 /* This catches errors that occur in target-specific code
5960 emission. */
5961 if (emit_error)
5962 {
5963 trace_debug ("Error %d while emitting code for %s\n",
94d5e490 5964 emit_error, gdb_agent_op_name (op));
6a271cae
PA
5965 return expr_eval_unhandled_opcode;
5966 }
5967
94d5e490 5968 trace_debug ("Op %s compiled\n", gdb_agent_op_name (op));
6a271cae
PA
5969 }
5970
5971 /* Now fill in real addresses as goto destinations. */
5972 for (aentry = bytecode_address_table; aentry; aentry = aentry->next)
5973 {
5974 int written = 0;
5975
5976 if (aentry->goto_pc < 0)
5977 continue;
5978
5979 /* Find the location that we are going to, and call back into
5980 target-specific code to write the actual address or
5981 displacement. */
5982 for (aentry2 = bytecode_address_table; aentry2; aentry2 = aentry2->next)
5983 {
5984 if (aentry2->pc == aentry->goto_pc)
5985 {
5986 trace_debug ("Want to jump from %s to %s\n",
5987 paddress (aentry->address),
5988 paddress (aentry2->address));
5989 write_goto_address (aentry->address + aentry->from_offset,
5990 aentry2->address, aentry->from_size);
5991 written = 1;
5992 break;
5993 }
5994 }
5995
5996 /* Error out if we didn't find a destination. */
5997 if (!written)
5998 {
5999 trace_debug ("Destination of goto %d not found\n",
6000 aentry->goto_pc);
6001 return expr_eval_invalid_goto;
6002 }
6003 }
6004
6005 return expr_eval_no_error;
6006}
6007
fa593d66
PA
6008/* We'll need to adjust these when we consider bi-arch setups, and big
6009 endian machines. */
6010
6011static int
6012write_inferior_data_ptr (CORE_ADDR where, CORE_ADDR ptr)
6013{
6014 return write_inferior_memory (where,
6015 (unsigned char *) &ptr, sizeof (void *));
6016}
6017
6018/* The base pointer of the IPA's heap. This is the only memory the
6019 IPA is allowed to use. The IPA should _not_ call the inferior's
6020 `malloc' during operation. That'd be slow, and, most importantly,
6021 it may not be safe. We may be collecting a tracepoint in a signal
6022 handler, for example. */
6023static CORE_ADDR target_tp_heap;
6024
6025/* Allocate at least SIZE bytes of memory from the IPA heap, aligned
6026 to 8 bytes. */
6027
6028static CORE_ADDR
6029target_malloc (ULONGEST size)
6030{
6031 CORE_ADDR ptr;
6032
6033 if (target_tp_heap == 0)
6034 {
6035 /* We have the pointer *address*, need what it points to. */
6036 if (read_inferior_data_pointer (ipa_sym_addrs.addr_gdb_tp_heap_buffer,
6037 &target_tp_heap))
6038 fatal ("could get target heap head pointer");
6039 }
6040
6041 ptr = target_tp_heap;
6042 target_tp_heap += size;
6043
6044 /* Pad to 8-byte alignment. */
6045 target_tp_heap = ((target_tp_heap + 7) & ~0x7);
6046
6047 return ptr;
6048}
6049
6050static CORE_ADDR
6051download_agent_expr (struct agent_expr *expr)
6052{
6053 CORE_ADDR expr_addr;
6054 CORE_ADDR expr_bytes;
6055
6056 expr_addr = target_malloc (sizeof (*expr));
6057 write_inferior_memory (expr_addr, (unsigned char *) expr, sizeof (*expr));
6058
6059 expr_bytes = target_malloc (expr->length);
6060 write_inferior_data_ptr (expr_addr + offsetof (struct agent_expr, bytes),
6061 expr_bytes);
6062 write_inferior_memory (expr_bytes, expr->bytes, expr->length);
6063
6064 return expr_addr;
6065}
6066
6067/* Align V up to N bits. */
6068#define UALIGN(V, N) (((V) + ((N) - 1)) & ~((N) - 1))
6069
6070static void
6071download_tracepoints (void)
6072{
6073 CORE_ADDR tpptr = 0, prev_tpptr = 0;
6074 struct tracepoint *tpoint;
6075
6076 /* Start out empty. */
6077 write_inferior_data_ptr (ipa_sym_addrs.addr_tracepoints, 0);
6078
6079 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
6080 {
6081 struct tracepoint target_tracepoint;
6082
0fb4aa4b
PA
6083 if (tpoint->type != fast_tracepoint
6084 && tpoint->type != static_tracepoint)
fa593d66
PA
6085 continue;
6086
6a271cae
PA
6087 /* Maybe download a compiled condition. */
6088 if (tpoint->cond != NULL && target_emit_ops () != NULL)
6089 {
6090 CORE_ADDR jentry, jump_entry;
6091
6092 jentry = jump_entry = get_jump_space_head ();
6093
6094 if (tpoint->cond != NULL)
6095 {
6096 /* Pad to 8-byte alignment. (needed?) */
6097 /* Actually this should be left for the target to
6098 decide. */
6099 jentry = UALIGN (jentry, 8);
6100
6101 compile_tracepoint_condition (tpoint, &jentry);
6102 }
6103
6104 /* Pad to 8-byte alignment. */
6105 jentry = UALIGN (jentry, 8);
6106 claim_jump_space (jentry - jump_entry);
6107 }
6108
fa593d66
PA
6109 target_tracepoint = *tpoint;
6110
6111 prev_tpptr = tpptr;
6112 tpptr = target_malloc (sizeof (*tpoint));
6113 tpoint->obj_addr_on_target = tpptr;
6114
6115 if (tpoint == tracepoints)
6116 {
6117 /* First object in list, set the head pointer in the
6118 inferior. */
6119 write_inferior_data_ptr (ipa_sym_addrs.addr_tracepoints, tpptr);
6120 }
6121 else
6122 {
6123 write_inferior_data_ptr (prev_tpptr + offsetof (struct tracepoint,
6124 next),
6125 tpptr);
6126 }
6127
6128 /* Write the whole object. We'll fix up its pointers in a bit.
6129 Assume no next for now. This is fixed up above on the next
6130 iteration, if there's any. */
6131 target_tracepoint.next = NULL;
6132 /* Need to clear this here too, since we're downloading the
6133 tracepoints before clearing our own copy. */
6134 target_tracepoint.hit_count = 0;
6135
6136 write_inferior_memory (tpptr, (unsigned char *) &target_tracepoint,
6137 sizeof (target_tracepoint));
6138
6139 if (tpoint->cond)
6140 write_inferior_data_ptr (tpptr + offsetof (struct tracepoint,
6141 cond),
6142 download_agent_expr (tpoint->cond));
6143
6144 if (tpoint->numactions)
6145 {
6146 int i;
6147 CORE_ADDR actions_array;
6148
6149 /* The pointers array. */
6150 actions_array
6151 = target_malloc (sizeof (*tpoint->actions) * tpoint->numactions);
6152 write_inferior_data_ptr (tpptr + offsetof (struct tracepoint,
6153 actions),
6154 actions_array);
6155
6156 /* Now for each pointer, download the action. */
6157 for (i = 0; i < tpoint->numactions; i++)
6158 {
6159 CORE_ADDR ipa_action = 0;
6160 struct tracepoint_action *action = tpoint->actions[i];
6161
6162 switch (action->type)
6163 {
6164 case 'M':
6165 ipa_action
6166 = target_malloc (sizeof (struct collect_memory_action));
6167 write_inferior_memory (ipa_action,
6168 (unsigned char *) action,
6169 sizeof (struct collect_memory_action));
6170 break;
6171 case 'R':
6172 ipa_action
6173 = target_malloc (sizeof (struct collect_registers_action));
6174 write_inferior_memory (ipa_action,
6175 (unsigned char *) action,
6176 sizeof (struct collect_registers_action));
6177 break;
6178 case 'X':
6179 {
6180 CORE_ADDR expr;
6181 struct eval_expr_action *eaction
6182 = (struct eval_expr_action *) action;
6183
6184 ipa_action = target_malloc (sizeof (*eaction));
6185 write_inferior_memory (ipa_action,
6186 (unsigned char *) eaction,
6187 sizeof (*eaction));
6188
6189 expr = download_agent_expr (eaction->expr);
6190 write_inferior_data_ptr
6191 (ipa_action + offsetof (struct eval_expr_action, expr),
6192 expr);
6193 break;
6194 }
0fb4aa4b
PA
6195 case 'L':
6196 ipa_action = target_malloc
6197 (sizeof (struct collect_static_trace_data_action));
6198 write_inferior_memory
6199 (ipa_action,
6200 (unsigned char *) action,
6201 sizeof (struct collect_static_trace_data_action));
6202 break;
fa593d66
PA
6203 default:
6204 trace_debug ("unknown trace action '%c', ignoring",
6205 action->type);
6206 break;
6207 }
6208
6209 if (ipa_action != 0)
6210 write_inferior_data_ptr
6211 (actions_array + i * sizeof (sizeof (*tpoint->actions)),
6212 ipa_action);
6213 }
6214 }
6215 }
6216}
6217
6218static void
6219download_trace_state_variables (void)
6220{
6221 CORE_ADDR ptr = 0, prev_ptr = 0;
6222 struct trace_state_variable *tsv;
6223
6224 /* Start out empty. */
6225 write_inferior_data_ptr (ipa_sym_addrs.addr_trace_state_variables, 0);
6226
6227 for (tsv = trace_state_variables; tsv != NULL; tsv = tsv->next)
6228 {
6229 struct trace_state_variable target_tsv;
6230
6231 /* TSV's with a getter have been initialized equally in both the
6232 inferior and GDBserver. Skip them. */
6233 if (tsv->getter != NULL)
6234 continue;
6235
6236 target_tsv = *tsv;
6237
6238 prev_ptr = ptr;
6239 ptr = target_malloc (sizeof (*tsv));
6240
6241 if (tsv == trace_state_variables)
6242 {
6243 /* First object in list, set the head pointer in the
6244 inferior. */
6245
6246 write_inferior_data_ptr (ipa_sym_addrs.addr_trace_state_variables,
6247 ptr);
6248 }
6249 else
6250 {
6251 write_inferior_data_ptr (prev_ptr
6252 + offsetof (struct trace_state_variable,
6253 next),
6254 ptr);
6255 }
6256
6257 /* Write the whole object. We'll fix up its pointers in a bit.
6258 Assume no next, fixup when needed. */
6259 target_tsv.next = NULL;
6260
6261 write_inferior_memory (ptr, (unsigned char *) &target_tsv,
6262 sizeof (target_tsv));
6263
6264 if (tsv->name != NULL)
6265 {
6266 size_t size = strlen (tsv->name) + 1;
6267 CORE_ADDR name_addr = target_malloc (size);
6268 write_inferior_memory (name_addr,
6269 (unsigned char *) tsv->name, size);
6270 write_inferior_data_ptr (ptr
6271 + offsetof (struct trace_state_variable,
6272 name),
6273 name_addr);
6274 }
6275
6276 if (tsv->getter != NULL)
6277 {
6278 fatal ("what to do with these?");
6279 }
6280 }
6281
6282 if (prev_ptr != 0)
6283 {
6284 /* Fixup the next pointer in the last item in the list. */
493e2a69
MS
6285 write_inferior_data_ptr (prev_ptr
6286 + offsetof (struct trace_state_variable,
6287 next), 0);
fa593d66
PA
6288 }
6289}
6290
6291/* Upload complete trace frames out of the IP Agent's trace buffer
6292 into GDBserver's trace buffer. This always uploads either all or
6293 no trace frames. This is the counter part of
6294 `trace_alloc_trace_buffer'. See its description of the atomic
6295 synching mechanism. */
6296
6297static void
6298upload_fast_traceframes (void)
6299{
6300 unsigned int ipa_traceframe_read_count, ipa_traceframe_write_count;
6301 unsigned int ipa_traceframe_read_count_racy, ipa_traceframe_write_count_racy;
6302 CORE_ADDR tf;
6303 struct ipa_trace_buffer_control ipa_trace_buffer_ctrl;
6304 unsigned int curr_tbctrl_idx;
6305 unsigned int ipa_trace_buffer_ctrl_curr;
6306 unsigned int ipa_trace_buffer_ctrl_curr_old;
6307 CORE_ADDR ipa_trace_buffer_ctrl_addr;
6308 struct breakpoint *about_to_request_buffer_space_bkpt;
6309 CORE_ADDR ipa_trace_buffer_lo;
6310 CORE_ADDR ipa_trace_buffer_hi;
6311
6312 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_read_count,
6313 &ipa_traceframe_read_count_racy))
6314 {
6315 /* This will happen in most targets if the current thread is
6316 running. */
6317 return;
6318 }
6319
6320 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_write_count,
6321 &ipa_traceframe_write_count_racy))
6322 return;
6323
6324 trace_debug ("ipa_traceframe_count (racy area): %d (w=%d, r=%d)",
493e2a69
MS
6325 ipa_traceframe_write_count_racy
6326 - ipa_traceframe_read_count_racy,
6327 ipa_traceframe_write_count_racy,
6328 ipa_traceframe_read_count_racy);
fa593d66
PA
6329
6330 if (ipa_traceframe_write_count_racy == ipa_traceframe_read_count_racy)
6331 return;
6332
6333 about_to_request_buffer_space_bkpt
6334 = set_breakpoint_at (ipa_sym_addrs.addr_about_to_request_buffer_space,
6335 NULL);
6336
6337 if (read_inferior_uinteger (ipa_sym_addrs.addr_trace_buffer_ctrl_curr,
6338 &ipa_trace_buffer_ctrl_curr))
6339 return;
6340
6341 ipa_trace_buffer_ctrl_curr_old = ipa_trace_buffer_ctrl_curr;
6342
6343 curr_tbctrl_idx = ipa_trace_buffer_ctrl_curr & ~GDBSERVER_FLUSH_COUNT_MASK;
6344
6345 {
6346 unsigned int prev, counter;
6347
6348 /* Update the token, with new counters, and the GDBserver stamp
6349 bit. Alway reuse the current TBC index. */
6350 prev = ipa_trace_buffer_ctrl_curr & 0x0007ff00;
6351 counter = (prev + 0x100) & 0x0007ff00;
6352
6353 ipa_trace_buffer_ctrl_curr = (0x80000000
6354 | (prev << 12)
6355 | counter
6356 | curr_tbctrl_idx);
6357 }
6358
6359 if (write_inferior_uinteger (ipa_sym_addrs.addr_trace_buffer_ctrl_curr,
6360 ipa_trace_buffer_ctrl_curr))
6361 return;
6362
6363 trace_debug ("Lib: Committed %08x -> %08x",
6364 ipa_trace_buffer_ctrl_curr_old,
6365 ipa_trace_buffer_ctrl_curr);
6366
6367 /* Re-read these, now that we've installed the
6368 `about_to_request_buffer_space' breakpoint/lock. A thread could
6369 have finished a traceframe between the last read of these
6370 counters and setting the breakpoint above. If we start
6371 uploading, we never want to leave this function with
6372 traceframe_read_count != 0, otherwise, GDBserver could end up
6373 incrementing the counter tokens more than once (due to event loop
6374 nesting), which would break the IP agent's "effective" detection
6375 (see trace_alloc_trace_buffer). */
6376 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_read_count,
6377 &ipa_traceframe_read_count))
6378 return;
6379 if (read_inferior_uinteger (ipa_sym_addrs.addr_traceframe_write_count,
6380 &ipa_traceframe_write_count))
6381 return;
6382
6383 if (debug_threads)
6384 {
6385 trace_debug ("ipa_traceframe_count (blocked area): %d (w=%d, r=%d)",
6386 ipa_traceframe_write_count - ipa_traceframe_read_count,
6387 ipa_traceframe_write_count, ipa_traceframe_read_count);
6388
6389 if (ipa_traceframe_write_count != ipa_traceframe_write_count_racy
6390 || ipa_traceframe_read_count != ipa_traceframe_read_count_racy)
6391 trace_debug ("note that ipa_traceframe_count's parts changed");
6392 }
6393
6394 /* Get the address of the current TBC object (the IP agent has an
6395 array of 3 such objects). The index is stored in the TBC
6396 token. */
6397 ipa_trace_buffer_ctrl_addr = ipa_sym_addrs.addr_trace_buffer_ctrl;
6398 ipa_trace_buffer_ctrl_addr
6399 += sizeof (struct ipa_trace_buffer_control) * curr_tbctrl_idx;
6400
6401 if (read_inferior_memory (ipa_trace_buffer_ctrl_addr,
6402 (unsigned char *) &ipa_trace_buffer_ctrl,
6403 sizeof (struct ipa_trace_buffer_control)))
6404 return;
6405
6406 if (read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_lo,
6407 &ipa_trace_buffer_lo))
6408 return;
6409 if (read_inferior_data_pointer (ipa_sym_addrs.addr_trace_buffer_hi,
6410 &ipa_trace_buffer_hi))
6411 return;
6412
6413 /* Offsets are easier to grok for debugging than raw addresses,
6414 especially for the small trace buffer sizes that are useful for
6415 testing. */
6416 trace_debug ("Lib: Trace buffer [%d] start=%d free=%d "
6417 "endfree=%d wrap=%d hi=%d",
6418 curr_tbctrl_idx,
6419 (int) (ipa_trace_buffer_ctrl.start - ipa_trace_buffer_lo),
6420 (int) (ipa_trace_buffer_ctrl.free - ipa_trace_buffer_lo),
6421 (int) (ipa_trace_buffer_ctrl.end_free - ipa_trace_buffer_lo),
6422 (int) (ipa_trace_buffer_ctrl.wrap - ipa_trace_buffer_lo),
6423 (int) (ipa_trace_buffer_hi - ipa_trace_buffer_lo));
6424
6425 /* Note that the IPA's buffer is always circular. */
6426
6427#define IPA_FIRST_TRACEFRAME() (ipa_trace_buffer_ctrl.start)
6428
6429#define IPA_NEXT_TRACEFRAME_1(TF, TFOBJ) \
6430 ((TF) + sizeof (struct traceframe) + (TFOBJ)->data_size)
6431
6432#define IPA_NEXT_TRACEFRAME(TF, TFOBJ) \
6433 (IPA_NEXT_TRACEFRAME_1 (TF, TFOBJ) \
6434 - ((IPA_NEXT_TRACEFRAME_1 (TF, TFOBJ) >= ipa_trace_buffer_ctrl.wrap) \
6435 ? (ipa_trace_buffer_ctrl.wrap - ipa_trace_buffer_lo) \
6436 : 0))
6437
6438 tf = IPA_FIRST_TRACEFRAME ();
6439
6440 while (ipa_traceframe_write_count - ipa_traceframe_read_count)
6441 {
6442 struct tracepoint *tpoint;
6443 struct traceframe *tframe;
6444 unsigned char *block;
6445 struct traceframe ipa_tframe;
6446
6447 if (read_inferior_memory (tf, (unsigned char *) &ipa_tframe,
6448 offsetof (struct traceframe, data)))
6449 error ("Uploading: couldn't read traceframe at %s\n", paddress (tf));
6450
6451 if (ipa_tframe.tpnum == 0)
6452 fatal ("Uploading: No (more) fast traceframes, but "
6453 "ipa_traceframe_count == %u??\n",
6454 ipa_traceframe_write_count - ipa_traceframe_read_count);
6455
6456 /* Note that this will be incorrect for multi-location
6457 tracepoints... */
6458 tpoint = find_next_tracepoint_by_number (NULL, ipa_tframe.tpnum);
6459
6460 tframe = add_traceframe (tpoint);
6461 if (tframe == NULL)
6462 {
6463 trace_buffer_is_full = 1;
6464 trace_debug ("Uploading: trace buffer is full");
6465 }
6466 else
6467 {
6468 /* Copy the whole set of blocks in one go for now. FIXME:
6469 split this in smaller blocks. */
6470 block = add_traceframe_block (tframe, ipa_tframe.data_size);
6471 if (block != NULL)
6472 {
493e2a69
MS
6473 if (read_inferior_memory (tf
6474 + offsetof (struct traceframe, data),
fa593d66
PA
6475 block, ipa_tframe.data_size))
6476 error ("Uploading: Couldn't read traceframe data at %s\n",
6477 paddress (tf + offsetof (struct traceframe, data)));
6478 }
6479
6480 trace_debug ("Uploading: traceframe didn't fit");
6481 finish_traceframe (tframe);
6482 }
6483
6484 tf = IPA_NEXT_TRACEFRAME (tf, &ipa_tframe);
6485
6486 /* If we freed the traceframe that wrapped around, go back
6487 to the non-wrap case. */
6488 if (tf < ipa_trace_buffer_ctrl.start)
6489 {
6490 trace_debug ("Lib: Discarding past the wraparound");
6491 ipa_trace_buffer_ctrl.wrap = ipa_trace_buffer_hi;
6492 }
6493 ipa_trace_buffer_ctrl.start = tf;
6494 ipa_trace_buffer_ctrl.end_free = ipa_trace_buffer_ctrl.start;
6495 ++ipa_traceframe_read_count;
6496
6497 if (ipa_trace_buffer_ctrl.start == ipa_trace_buffer_ctrl.free
6498 && ipa_trace_buffer_ctrl.start == ipa_trace_buffer_ctrl.end_free)
6499 {
6500 trace_debug ("Lib: buffer is fully empty. "
6501 "Trace buffer [%d] start=%d free=%d endfree=%d",
6502 curr_tbctrl_idx,
6503 (int) (ipa_trace_buffer_ctrl.start
6504 - ipa_trace_buffer_lo),
6505 (int) (ipa_trace_buffer_ctrl.free
6506 - ipa_trace_buffer_lo),
6507 (int) (ipa_trace_buffer_ctrl.end_free
6508 - ipa_trace_buffer_lo));
6509
6510 ipa_trace_buffer_ctrl.start = ipa_trace_buffer_lo;
6511 ipa_trace_buffer_ctrl.free = ipa_trace_buffer_lo;
6512 ipa_trace_buffer_ctrl.end_free = ipa_trace_buffer_hi;
6513 ipa_trace_buffer_ctrl.wrap = ipa_trace_buffer_hi;
6514 }
6515
6516 trace_debug ("Uploaded a traceframe\n"
6517 "Lib: Trace buffer [%d] start=%d free=%d "
6518 "endfree=%d wrap=%d hi=%d",
6519 curr_tbctrl_idx,
6520 (int) (ipa_trace_buffer_ctrl.start - ipa_trace_buffer_lo),
6521 (int) (ipa_trace_buffer_ctrl.free - ipa_trace_buffer_lo),
493e2a69
MS
6522 (int) (ipa_trace_buffer_ctrl.end_free
6523 - ipa_trace_buffer_lo),
fa593d66
PA
6524 (int) (ipa_trace_buffer_ctrl.wrap - ipa_trace_buffer_lo),
6525 (int) (ipa_trace_buffer_hi - ipa_trace_buffer_lo));
6526 }
6527
6528 if (write_inferior_memory (ipa_trace_buffer_ctrl_addr,
6529 (unsigned char *) &ipa_trace_buffer_ctrl,
6530 sizeof (struct ipa_trace_buffer_control)))
6531 return;
6532
6533 write_inferior_integer (ipa_sym_addrs.addr_traceframe_read_count,
6534 ipa_traceframe_read_count);
6535
6536 trace_debug ("Done uploading traceframes [%d]\n", curr_tbctrl_idx);
6537
6538 pause_all (1);
6539 cancel_breakpoints ();
6540
6541 delete_breakpoint (about_to_request_buffer_space_bkpt);
6542 about_to_request_buffer_space_bkpt = NULL;
6543
6544 unpause_all (1);
6545
6546 if (trace_buffer_is_full)
6547 stop_tracing ();
6548}
6549#endif
6550
6551#ifdef IN_PROCESS_AGENT
6552
0fb4aa4b
PA
6553IP_AGENT_EXPORT int ust_loaded;
6554IP_AGENT_EXPORT char cmd_buf[CMD_BUF_SIZE];
fa593d66 6555
0fb4aa4b 6556#ifdef HAVE_UST
fa593d66 6557
0fb4aa4b
PA
6558/* Static tracepoints. */
6559
6560/* UST puts a "struct tracepoint" in the global namespace, which
6561 conflicts with our tracepoint. Arguably, being a library, it
6562 shouldn't take ownership of such a generic name. We work around it
6563 here. */
6564#define tracepoint ust_tracepoint
6565#include <ust/ust.h>
6566#undef tracepoint
6567
6568extern int serialize_to_text (char *outbuf, int bufsize,
6569 const char *fmt, va_list ap);
6570
6571#define GDB_PROBE_NAME "gdb"
6572
6573/* We dynamically search for the UST symbols instead of linking them
6574 in. This lets the user decide if the application uses static
6575 tracepoints, instead of always pulling libust.so in. This vector
6576 holds pointers to all functions we care about. */
6577
6578static struct
fa593d66 6579{
0fb4aa4b
PA
6580 int (*serialize_to_text) (char *outbuf, int bufsize,
6581 const char *fmt, va_list ap);
6582
6583 int (*ltt_probe_register) (struct ltt_available_probe *pdata);
6584 int (*ltt_probe_unregister) (struct ltt_available_probe *pdata);
6585
6586 int (*ltt_marker_connect) (const char *channel, const char *mname,
6587 const char *pname);
6588 int (*ltt_marker_disconnect) (const char *channel, const char *mname,
6589 const char *pname);
6590
6591 void (*marker_iter_start) (struct marker_iter *iter);
6592 void (*marker_iter_next) (struct marker_iter *iter);
6593 void (*marker_iter_stop) (struct marker_iter *iter);
6594 void (*marker_iter_reset) (struct marker_iter *iter);
6595} ust_ops;
6596
6597#include <dlfcn.h>
6598
6599/* Cast through typeof to catch incompatible API changes. Since UST
6600 only builds with gcc, we can freely use gcc extensions here
6601 too. */
6602#define GET_UST_SYM(SYM) \
6603 do \
6604 { \
6605 if (ust_ops.SYM == NULL) \
6606 ust_ops.SYM = (typeof (&SYM)) dlsym (RTLD_DEFAULT, #SYM); \
6607 if (ust_ops.SYM == NULL) \
6608 return 0; \
6609 } while (0)
6610
6611#define USTF(SYM) ust_ops.SYM
6612
6613/* Get pointers to all libust.so functions we care about. */
6614
6615static int
6616dlsym_ust (void)
6617{
6618 GET_UST_SYM (serialize_to_text);
6619
6620 GET_UST_SYM (ltt_probe_register);
6621 GET_UST_SYM (ltt_probe_unregister);
6622 GET_UST_SYM (ltt_marker_connect);
6623 GET_UST_SYM (ltt_marker_disconnect);
6624
6625 GET_UST_SYM (marker_iter_start);
6626 GET_UST_SYM (marker_iter_next);
6627 GET_UST_SYM (marker_iter_stop);
6628 GET_UST_SYM (marker_iter_reset);
6629
6630 ust_loaded = 1;
6631 return 1;
fa593d66
PA
6632}
6633
0fb4aa4b
PA
6634/* Given an UST marker, return the matching gdb static tracepoint.
6635 The match is done by address. */
6636
6637static struct tracepoint *
6638ust_marker_to_static_tracepoint (const struct marker *mdata)
6639{
6640 struct tracepoint *tpoint;
6641
6642 for (tpoint = tracepoints; tpoint; tpoint = tpoint->next)
6643 {
6644 if (!tpoint->enabled || tpoint->type != static_tracepoint)
6645 continue;
6646
6647 if (tpoint->address == (uintptr_t) mdata->location)
6648 return tpoint;
6649 }
6650
6651 return NULL;
6652}
6653
6654/* The probe function we install on lttng/ust markers. Whenever a
6655 probed ust marker is hit, this function is called. This is similar
6656 to gdb_collect, only for static tracepoints, instead of fast
6657 tracepoints. */
6658
6659static void
6660gdb_probe (const struct marker *mdata, void *probe_private,
6661 struct registers *regs, void *call_private,
6662 const char *fmt, va_list *args)
6663{
6664 struct tracepoint *tpoint;
6665 struct static_tracepoint_ctx ctx;
6666
6667 /* Don't do anything until the trace run is completely set up. */
6668 if (!tracing)
6669 {
6670 trace_debug ("gdb_probe: not tracing\n");
6671 return;
6672 }
6673
6674 ctx.base.type = static_tracepoint;
6675 ctx.regcache_initted = 0;
6676 ctx.regs = regs;
6677 ctx.fmt = fmt;
6678 ctx.args = args;
6679
6680 /* Wrap the regblock in a register cache (in the stack, we don't
6681 want to malloc here). */
6682 ctx.regspace = alloca (register_cache_size ());
6683 if (ctx.regspace == NULL)
6684 {
6685 trace_debug ("Trace buffer block allocation failed, skipping");
6686 return;
6687 }
6688
6689 tpoint = ust_marker_to_static_tracepoint (mdata);
6690 if (tpoint == NULL)
6691 {
6692 trace_debug ("gdb_probe: marker not known: "
6693 "loc:0x%p, ch:\"%s\",n:\"%s\",f:\"%s\"",
6694 mdata->location, mdata->channel,
6695 mdata->name, mdata->format);
6696 return;
6697 }
6698
6699 ctx.tpoint = tpoint;
6700
6701 trace_debug ("gdb_probe: collecting marker: "
6702 "loc:0x%p, ch:\"%s\",n:\"%s\",f:\"%s\"",
6703 mdata->location, mdata->channel,
6704 mdata->name, mdata->format);
6705
6706 /* Test the condition if present, and collect if true. */
6707 if (tpoint->cond == NULL
6708 || condition_true_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
6709 tpoint))
6710 {
6711 collect_data_at_tracepoint ((struct tracepoint_hit_ctx *) &ctx,
6712 tpoint->address, tpoint);
6713
6714 if (stopping_tracepoint
6715 || trace_buffer_is_full
6716 || expr_eval_result != expr_eval_no_error)
6717 stop_tracing ();
6718 }
6719 else
6720 {
6721 /* If there was a condition and it evaluated to false, the only
6722 way we would stop tracing is if there was an error during
6723 condition expression evaluation. */
6724 if (expr_eval_result != expr_eval_no_error)
6725 stop_tracing ();
6726 }
6727}
6728
6729/* Called if the gdb static tracepoint requested collecting "$_sdata",
6730 static tracepoint string data. This is a string passed to the
6731 tracing library by the user, at the time of the tracepoint marker
6732 call. E.g., in the UST marker call:
6733
6734 trace_mark (ust, bar33, "str %s", "FOOBAZ");
6735
6736 the collected data is "str FOOBAZ".
6737*/
6738
6739static void
6740collect_ust_data_at_tracepoint (struct tracepoint_hit_ctx *ctx,
6741 CORE_ADDR stop_pc,
6742 struct tracepoint *tpoint,
6743 struct traceframe *tframe)
6744{
6745 struct static_tracepoint_ctx *umd = (struct static_tracepoint_ctx *) ctx;
6746 unsigned char *bufspace;
6747 int size;
6748 va_list copy;
6749 unsigned short blocklen;
6750
6751 if (umd == NULL)
6752 {
6753 trace_debug ("Wanted to collect static trace data, "
6754 "but there's no static trace data");
6755 return;
6756 }
6757
6758 va_copy (copy, *umd->args);
6759 size = USTF(serialize_to_text) (NULL, 0, umd->fmt, copy);
6760 va_end (copy);
6761
6762 trace_debug ("Want to collect ust data");
6763
6764 /* 'S' + size + string */
6765 bufspace = add_traceframe_block (tframe,
6766 1 + sizeof (blocklen) + size + 1);
6767 if (bufspace == NULL)
6768 {
6769 trace_debug ("Trace buffer block allocation failed, skipping");
6770 return;
6771 }
6772
6773 /* Identify a static trace data block. */
6774 *bufspace = 'S';
6775
6776 blocklen = size + 1;
6777 memcpy (bufspace + 1, &blocklen, sizeof (blocklen));
6778
6779 va_copy (copy, *umd->args);
6780 USTF(serialize_to_text) ((char *) bufspace + 1 + sizeof (blocklen),
6781 size + 1, umd->fmt, copy);
6782 va_end (copy);
6783
6784 trace_debug ("Storing static tracepoint data in regblock: %s",
6785 bufspace + 1 + sizeof (blocklen));
6786}
6787
6788/* The probe to register with lttng/ust. */
6789static struct ltt_available_probe gdb_ust_probe =
6790 {
6791 GDB_PROBE_NAME,
6792 NULL,
6793 gdb_probe,
6794 };
6795
6796#endif /* HAVE_UST */
6797#endif /* IN_PROCESS_AGENT */
6798
6799#ifdef HAVE_UST
6800
6801#include <sys/socket.h>
6802#include <sys/un.h>
6803
6804#ifndef UNIX_PATH_MAX
6805#define UNIX_PATH_MAX sizeof(((struct sockaddr_un *) NULL)->sun_path)
6806#endif
6807
6808/* Where we put the socked used for synchronization. */
6809#define SOCK_DIR P_tmpdir
6810
6811#endif /* HAVE_UST */
6812
6813#ifndef IN_PROCESS_AGENT
6814
6815#ifdef HAVE_UST
6816
6817static int
6818gdb_ust_connect_sync_socket (int pid)
6819{
6820 struct sockaddr_un addr;
6821 int res, fd;
6822 char path[UNIX_PATH_MAX];
6823
6cebaf6e 6824 res = xsnprintf (path, UNIX_PATH_MAX, "%s/gdb_ust%d", SOCK_DIR, pid);
0fb4aa4b
PA
6825 if (res >= UNIX_PATH_MAX)
6826 {
6827 trace_debug ("string overflow allocating socket name");
6828 return -1;
6829 }
6830
6831 res = fd = socket (PF_UNIX, SOCK_STREAM, 0);
6832 if (res == -1)
6833 {
6834 warning ("error opening sync socket: %s\n", strerror (errno));
6835 return -1;
6836 }
6837
6838 addr.sun_family = AF_UNIX;
6839
6cebaf6e 6840 res = xsnprintf (addr.sun_path, UNIX_PATH_MAX, "%s", path);
0fb4aa4b
PA
6841 if (res >= UNIX_PATH_MAX)
6842 {
6843 warning ("string overflow allocating socket name\n");
6844 close (fd);
6845 return -1;
6846 }
6847
6848 res = connect (fd, (struct sockaddr *) &addr, sizeof (addr));
6849 if (res == -1)
6850 {
6851 warning ("error connecting sync socket (%s): %s. "
6852 "Make sure the directory exists and that it is writable.",
6853 path, strerror (errno));
6854 close (fd);
6855 return -1;
6856 }
6857
6858 return fd;
6859}
6860
6861/* Resume thread PTID. */
6862
6863static void
6864resume_thread (ptid_t ptid)
6865{
6866 struct thread_resume resume_info;
6867
6868 resume_info.thread = ptid;
6869 resume_info.kind = resume_continue;
6870 resume_info.sig = TARGET_SIGNAL_0;
6871 (*the_target->resume) (&resume_info, 1);
6872}
6873
6874/* Stop thread PTID. */
6875
6876static void
6877stop_thread (ptid_t ptid)
6878{
6879 struct thread_resume resume_info;
6880
6881 resume_info.thread = ptid;
6882 resume_info.kind = resume_stop;
6883 resume_info.sig = TARGET_SIGNAL_0;
6884 (*the_target->resume) (&resume_info, 1);
6885}
6886
6887/* Ask the in-process agent to run a command. Since we don't want to
6888 have to handle the IPA hitting breakpoints while running the
6889 command, we pause all threads, remove all breakpoints, and then set
6890 the helper thread re-running. We communicate with the helper
6891 thread by means of direct memory xfering, and a socket for
6892 synchronization. */
6893
6894static int
6895run_inferior_command (char *cmd)
6896{
6897 int err = -1;
6898 int fd = -1;
6899 int pid = ptid_get_pid (current_inferior->entry.id);
6900 int tid;
6901 ptid_t ptid = null_ptid;
6902
6903 trace_debug ("run_inferior_command: running: %s", cmd);
6904
6905 pause_all (0);
6906 uninsert_all_breakpoints ();
6907
6908 if (read_inferior_integer (ipa_sym_addrs.addr_helper_thread_id, &tid))
6909 {
6910 warning ("Error reading helper thread's id in lib");
6911 goto out;
6912 }
6913
6914 if (tid == 0)
6915 {
6916 warning ("helper thread not initialized yet");
6917 goto out;
6918 }
6919
6920 if (write_inferior_memory (ipa_sym_addrs.addr_cmd_buf,
6921 (unsigned char *) cmd, strlen (cmd) + 1))
6922 {
6923 warning ("Error writing command");
6924 goto out;
6925 }
6926
6927 ptid = ptid_build (pid, tid, 0);
6928
6929 resume_thread (ptid);
6930
6931 fd = gdb_ust_connect_sync_socket (pid);
6932 if (fd >= 0)
6933 {
6934 char buf[1] = "";
6935 int ret;
6936
6937 trace_debug ("signalling helper thread");
6938
6939 do
6940 {
6941 ret = write (fd, buf, 1);
6942 } while (ret == -1 && errno == EINTR);
6943
6944 trace_debug ("waiting for helper thread's response");
6945
6946 do
6947 {
6948 ret = read (fd, buf, 1);
6949 } while (ret == -1 && errno == EINTR);
6950
6951 close (fd);
6952
6953 trace_debug ("helper thread's response received");
6954 }
6955
6956 out:
6957
6958 /* Need to read response with the inferior stopped. */
6959 if (!ptid_equal (ptid, null_ptid))
6960 {
6961 int was_non_stop = non_stop;
6962 struct target_waitstatus status;
6963
6964 stop_thread (ptid);
6965 non_stop = 1;
6966 mywait (ptid, &status, 0, 0);
6967 non_stop = was_non_stop;
6968 }
6969
6970 if (fd >= 0)
6971 {
6972 if (read_inferior_memory (ipa_sym_addrs.addr_cmd_buf,
6973 (unsigned char *) cmd, CMD_BUF_SIZE))
6974 {
6975 warning ("Error reading command response");
6976 }
6977 else
6978 {
6979 err = 0;
6980 trace_debug ("run_inferior_command: response: %s", cmd);
6981 }
6982 }
6983
6984 reinsert_all_breakpoints ();
6985 unpause_all (0);
6986
6987 return err;
6988}
6989
6990#else /* HAVE_UST */
6991
6992static int
6993run_inferior_command (char *cmd)
6994{
6995 return -1;
6996}
6997
6998#endif /* HAVE_UST */
6999
7000#else /* !IN_PROCESS_AGENT */
7001
7002/* Thread ID of the helper thread. GDBserver reads this to know which
7003 is the help thread. This is an LWP id on Linux. */
7004int helper_thread_id;
7005
7006#ifdef HAVE_UST
7007
7008static int
7009init_named_socket (const char *name)
7010{
7011 int result, fd;
7012 struct sockaddr_un addr;
7013
7014 result = fd = socket (PF_UNIX, SOCK_STREAM, 0);
7015 if (result == -1)
7016 {
7017 warning ("socket creation failed: %s", strerror (errno));
7018 return -1;
7019 }
7020
7021 addr.sun_family = AF_UNIX;
7022
7023 strncpy (addr.sun_path, name, UNIX_PATH_MAX);
7024 addr.sun_path[UNIX_PATH_MAX - 1] = '\0';
7025
7026 result = access (name, F_OK);
7027 if (result == 0)
7028 {
7029 /* File exists. */
7030 result = unlink (name);
7031 if (result == -1)
7032 {
7033 warning ("unlink failed: %s", strerror (errno));
7034 close (fd);
7035 return -1;
7036 }
7037 warning ("socket %s already exists; overwriting", name);
7038 }
7039
7040 result = bind (fd, (struct sockaddr *) &addr, sizeof (addr));
7041 if (result == -1)
7042 {
7043 warning ("bind failed: %s", strerror (errno));
7044 close (fd);
7045 return -1;
7046 }
7047
7048 result = listen (fd, 1);
7049 if (result == -1)
7050 {
7051 warning ("listen: %s", strerror (errno));
7052 close (fd);
7053 return -1;
7054 }
7055
7056 return fd;
7057}
7058
7059static int
7060gdb_ust_socket_init (void)
7061{
7062 int result, fd;
7063 char name[UNIX_PATH_MAX];
7064
6cebaf6e 7065 result = xsnprintf (name, UNIX_PATH_MAX, "%s/gdb_ust%d",
7066 SOCK_DIR, getpid ());
0fb4aa4b
PA
7067 if (result >= UNIX_PATH_MAX)
7068 {
7069 trace_debug ("string overflow allocating socket name");
7070 return -1;
7071 }
7072
7073 fd = init_named_socket (name);
7074 if (fd < 0)
7075 warning ("Error initializing named socket (%s) for communication with the "
7076 "ust helper thread. Check that directory exists and that it "
7077 "is writable.", name);
7078
7079 return fd;
7080}
7081
7082/* Return an hexstr version of the STR C string, fit for sending to
7083 GDB. */
7084
7085static char *
7086cstr_to_hexstr (const char *str)
7087{
7088 int len = strlen (str);
7089 char *hexstr = xmalloc (len * 2 + 1);
7090 convert_int_to_ascii ((gdb_byte *) str, hexstr, len);
7091 return hexstr;
7092}
7093
7094/* The next marker to be returned on a qTsSTM command. */
7095static const struct marker *next_st;
7096
7097/* Returns the first known marker. */
7098
7099struct marker *
7100first_marker (void)
7101{
7102 struct marker_iter iter;
7103
7104 USTF(marker_iter_reset) (&iter);
7105 USTF(marker_iter_start) (&iter);
7106
7107 return iter.marker;
7108}
7109
7110/* Returns the marker following M. */
7111
7112const struct marker *
7113next_marker (const struct marker *m)
7114{
7115 struct marker_iter iter;
7116
7117 USTF(marker_iter_reset) (&iter);
7118 USTF(marker_iter_start) (&iter);
7119
7120 for (; iter.marker != NULL; USTF(marker_iter_next) (&iter))
7121 {
7122 if (iter.marker == m)
7123 {
7124 USTF(marker_iter_next) (&iter);
7125 return iter.marker;
7126 }
7127 }
7128
7129 return NULL;
7130}
7131
7132/* Compose packet that is the response to the qTsSTM/qTfSTM/qTSTMat
7133 packets. */
7134
7135static void
7136response_ust_marker (char *packet, const struct marker *st)
7137{
7138 char *strid, *format, *tmp;
7139
7140 next_st = next_marker (st);
7141
7142 tmp = xmalloc (strlen (st->channel) + 1 +
7143 strlen (st->name) + 1);
7144 sprintf (tmp, "%s/%s", st->channel, st->name);
7145
7146 strid = cstr_to_hexstr (tmp);
7147 free (tmp);
7148
7149 format = cstr_to_hexstr (st->format);
7150
7151 sprintf (packet, "m%s:%s:%s",
7152 paddress ((uintptr_t) st->location),
7153 strid,
7154 format);
7155
7156 free (strid);
7157 free (format);
7158}
7159
7160/* Return the first static tracepoint, and initialize the state
7161 machine that will iterate through all the static tracepoints. */
7162
7163static void
7164cmd_qtfstm (char *packet)
7165{
7166 trace_debug ("Returning first trace state variable definition");
7167
7168 if (first_marker ())
7169 response_ust_marker (packet, first_marker ());
7170 else
7171 strcpy (packet, "l");
7172}
7173
7174/* Return additional trace state variable definitions. */
7175
7176static void
7177cmd_qtsstm (char *packet)
7178{
7179 trace_debug ("Returning static tracepoint");
7180
7181 if (next_st)
7182 response_ust_marker (packet, next_st);
7183 else
7184 strcpy (packet, "l");
7185}
7186
7187/* Disconnect the GDB probe from a marker at a given address. */
7188
7189static void
7190unprobe_marker_at (char *packet)
7191{
7192 char *p = packet;
7193 ULONGEST address;
7194 struct marker_iter iter;
7195
7196 p += sizeof ("unprobe_marker_at:") - 1;
7197
7198 p = unpack_varlen_hex (p, &address);
7199
7200 USTF(marker_iter_reset) (&iter);
7201 USTF(marker_iter_start) (&iter);
7202 for (; iter.marker != NULL; USTF(marker_iter_next) (&iter))
7203 if ((uintptr_t ) iter.marker->location == address)
7204 {
7205 int result;
7206
7207 result = USTF(ltt_marker_disconnect) (iter.marker->channel,
7208 iter.marker->name,
7209 GDB_PROBE_NAME);
7210 if (result < 0)
7211 warning ("could not disable marker %s/%s",
7212 iter.marker->channel, iter.marker->name);
7213 break;
7214 }
7215}
7216
7217/* Connect the GDB probe to a marker at a given address. */
7218
7219static int
7220probe_marker_at (char *packet)
7221{
7222 char *p = packet;
7223 ULONGEST address;
7224 struct marker_iter iter;
7225 struct marker *m;
7226
7227 p += sizeof ("probe_marker_at:") - 1;
7228
7229 p = unpack_varlen_hex (p, &address);
7230
7231 USTF(marker_iter_reset) (&iter);
7232
7233 for (USTF(marker_iter_start) (&iter), m = iter.marker;
7234 m != NULL;
7235 USTF(marker_iter_next) (&iter), m = iter.marker)
7236 if ((uintptr_t ) m->location == address)
7237 {
7238 int result;
7239
7240 trace_debug ("found marker for address. "
7241 "ltt_marker_connect (marker = %s/%s)",
7242 m->channel, m->name);
7243
493e2a69
MS
7244 result = USTF(ltt_marker_connect) (m->channel, m->name,
7245 GDB_PROBE_NAME);
0fb4aa4b
PA
7246 if (result && result != -EEXIST)
7247 trace_debug ("ltt_marker_connect (marker = %s/%s, errno = %d)",
7248 m->channel, m->name, -result);
7249
7250 if (result < 0)
7251 {
7252 sprintf (packet, "E.could not connect marker: channel=%s, name=%s",
7253 m->channel, m->name);
7254 return -1;
7255 }
7256
7257 strcpy (packet, "OK");
7258 return 0;
7259 }
7260
7261 sprintf (packet, "E.no marker found at 0x%s", paddress (address));
7262 return -1;
7263}
7264
7265static int
7266cmd_qtstmat (char *packet)
7267{
7268 char *p = packet;
7269 ULONGEST address;
7270 struct marker_iter iter;
7271 struct marker *m;
7272
7273 p += sizeof ("qTSTMat:") - 1;
7274
7275 p = unpack_varlen_hex (p, &address);
7276
7277 USTF(marker_iter_reset) (&iter);
7278
7279 for (USTF(marker_iter_start) (&iter), m = iter.marker;
7280 m != NULL;
7281 USTF(marker_iter_next) (&iter), m = iter.marker)
7282 if ((uintptr_t ) m->location == address)
7283 {
7284 response_ust_marker (packet, m);
7285 return 0;
7286 }
7287
7288 strcpy (packet, "l");
7289 return -1;
7290}
7291
7292static void *
7293gdb_ust_thread (void *arg)
7294{
7295 int listen_fd;
7296
7297 while (1)
7298 {
7299 listen_fd = gdb_ust_socket_init ();
7300
7301#ifdef SYS_gettid
7302 if (helper_thread_id == 0)
7303 helper_thread_id = syscall (SYS_gettid);
7304#endif
7305
7306 if (listen_fd == -1)
7307 {
7308 warning ("could not create sync socket\n");
7309 break;
7310 }
7311
7312 while (1)
7313 {
7314 socklen_t tmp;
7315 struct sockaddr_un sockaddr;
7316 int fd;
7317 char buf[1];
7318 int ret;
7319
7320 tmp = sizeof (sockaddr);
7321
7322 do
7323 {
7324 fd = accept (listen_fd, &sockaddr, &tmp);
7325 }
7326 /* It seems an ERESTARTSYS can escape out of accept. */
7327 while (fd == -512 || (fd == -1 && errno == EINTR));
7328
7329 if (fd < 0)
7330 {
7331 warning ("Accept returned %d, error: %s\n",
7332 fd, strerror (errno));
7333 break;
7334 }
7335
7336 do
7337 {
7338 ret = read (fd, buf, 1);
7339 } while (ret == -1 && errno == EINTR);
7340
7341 if (ret == -1)
7342 {
7343 warning ("reading socket (fd=%d) failed with %s",
7344 fd, strerror (errno));
7345 close (fd);
7346 break;
7347 }
7348
7349 if (cmd_buf[0])
7350 {
7351 if (strcmp ("qTfSTM", cmd_buf) == 0)
7352 {
7353 cmd_qtfstm (cmd_buf);
7354 }
7355 else if (strcmp ("qTsSTM", cmd_buf) == 0)
7356 {
7357 cmd_qtsstm (cmd_buf);
7358 }
7359 else if (strncmp ("unprobe_marker_at:",
7360 cmd_buf,
7361 sizeof ("unprobe_marker_at:") - 1) == 0)
7362 {
7363 unprobe_marker_at (cmd_buf);
7364 }
7365 else if (strncmp ("probe_marker_at:",
7366 cmd_buf,
7367 sizeof ("probe_marker_at:") - 1) == 0)
7368 {
7369 probe_marker_at (cmd_buf);
7370 }
7371 else if (strncmp ("qTSTMat:",
7372 cmd_buf,
7373 sizeof ("qTSTMat:") - 1) == 0)
7374 {
7375 cmd_qtstmat (cmd_buf);
7376 }
7377 else if (strcmp (cmd_buf, "help") == 0)
7378 {
7379 strcpy (cmd_buf, "for help, press F1\n");
7380 }
7381 else
7382 strcpy (cmd_buf, "");
7383 }
7384
7385 write (fd, buf, 1);
7386 close (fd);
7387 }
7388 }
7389
7390 return NULL;
7391}
7392
7393#include <signal.h>
7394
7395static void
7396gdb_ust_init (void)
7397{
7398 int res;
7399 pthread_t thread;
7400 sigset_t new_mask;
7401 sigset_t orig_mask;
7402
7403 if (!dlsym_ust ())
7404 return;
7405
7406 /* We want the helper thread to be as transparent as possible, so
7407 have it inherit an all-signals-blocked mask. */
7408
7409 sigfillset (&new_mask);
7410 res = pthread_sigmask (SIG_SETMASK, &new_mask, &orig_mask);
7411 if (res)
7412 fatal ("pthread_sigmask (1) failed: %s", strerror (res));
7413
7414 res = pthread_create (&thread,
7415 NULL,
7416 gdb_ust_thread,
7417 NULL);
7418
7419 res = pthread_sigmask (SIG_SETMASK, &orig_mask, NULL);
7420 if (res)
7421 fatal ("pthread_sigmask (2) failed: %s", strerror (res));
7422
7423 while (helper_thread_id == 0)
7424 usleep (1);
7425
7426 USTF(ltt_probe_register) (&gdb_ust_probe);
7427}
7428
7429#endif /* HAVE_UST */
7430
7431#include <sys/mman.h>
7432#include <fcntl.h>
7433
7434IP_AGENT_EXPORT char *gdb_tp_heap_buffer;
7435IP_AGENT_EXPORT char *gdb_jump_pad_buffer;
7436IP_AGENT_EXPORT char *gdb_jump_pad_buffer_end;
7437
7438static void __attribute__ ((constructor))
7439initialize_tracepoint_ftlib (void)
7440{
7441 initialize_tracepoint ();
7442
7443#ifdef HAVE_UST
7444 gdb_ust_init ();
7445#endif
7446}
7447
7448#endif /* IN_PROCESS_AGENT */
fa593d66 7449
219f2f23
PA
7450static LONGEST
7451tsv_get_timestamp (void)
7452{
7453 struct timeval tv;
7454
7455 if (gettimeofday (&tv, 0) != 0)
7456 return -1;
7457 else
7458 return (LONGEST) tv.tv_sec * 1000000 + tv.tv_usec;
7459}
7460
7461void
7462initialize_tracepoint (void)
7463{
7464 /* There currently no way to change the buffer size. */
7465 const int sizeOfBuffer = 5 * 1024 * 1024;
7466 unsigned char *buf = xmalloc (sizeOfBuffer);
7467 init_trace_buffer (buf, sizeOfBuffer);
7468
7469 /* Wire trace state variable 1 to be the timestamp. This will be
7470 uploaded to GDB upon connection and become one of its trace state
7471 variables. (In case you're wondering, if GDB already has a trace
7472 variable numbered 1, it will be renumbered.) */
fa593d66 7473 create_trace_state_variable (1, 0);
219f2f23
PA
7474 set_trace_state_variable_name (1, "trace_timestamp");
7475 set_trace_state_variable_getter (1, tsv_get_timestamp);
fa593d66
PA
7476
7477#ifdef IN_PROCESS_AGENT
7478 {
7479 int pagesize;
7480 pagesize = sysconf (_SC_PAGE_SIZE);
7481 if (pagesize == -1)
7482 fatal ("sysconf");
7483
7484 gdb_tp_heap_buffer = xmalloc (5 * 1024 * 1024);
7485
7486 /* Allocate scratch buffer aligned on a page boundary. */
7487 gdb_jump_pad_buffer = memalign (pagesize, pagesize * 20);
7488 gdb_jump_pad_buffer_end = gdb_jump_pad_buffer + pagesize * 20;
7489
7490 /* Make it writable and executable. */
7491 if (mprotect (gdb_jump_pad_buffer, pagesize * 20,
7492 PROT_READ | PROT_WRITE | PROT_EXEC) != 0)
7493 fatal ("\
7494initialize_tracepoint: mprotect(%p, %d, PROT_READ|PROT_EXEC) failed with %s",
7495 gdb_jump_pad_buffer, pagesize * 20, strerror (errno));
7496 }
7497
7498 initialize_low_tracepoint ();
7499#endif
219f2f23 7500}
This page took 0.392233 seconds and 4 git commands to generate.