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