]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/jit.c
PR gdb/14550
[thirdparty/binutils-gdb.git] / gdb / jit.c
CommitLineData
4efc6507
DE
1/* Handle JIT code generation in the inferior for GDB, the GNU Debugger.
2
28e7fd62 3 Copyright (C) 2009-2013 Free Software Foundation, Inc.
4efc6507
DE
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21
22#include "jit.h"
f997c383 23#include "jit-reader.h"
1825a88d 24#include "block.h"
4efc6507 25#include "breakpoint.h"
a255712f 26#include "command.h"
1825a88d
SD
27#include "dictionary.h"
28#include "frame-unwind.h"
a255712f 29#include "gdbcmd.h"
4efc6507 30#include "gdbcore.h"
03673fc7 31#include "inferior.h"
4efc6507
DE
32#include "observer.h"
33#include "objfiles.h"
3623dc3a 34#include "regcache.h"
4efc6507
DE
35#include "symfile.h"
36#include "symtab.h"
37#include "target.h"
784c47ee 38#include "gdb-dlfcn.h"
4efc6507 39#include "gdb_stat.h"
1825a88d 40#include "exceptions.h"
cbb099e8 41#include "gdb_bfd.h"
4efc6507 42
b8e0a31c
SD
43static const char *jit_reader_dir = NULL;
44
4efc6507
DE
45static const struct objfile_data *jit_objfile_data;
46
47static const char *const jit_break_name = "__jit_debug_register_code";
48
49static const char *const jit_descriptor_name = "__jit_debug_descriptor";
50
03673fc7 51static const struct inferior_data *jit_inferior_data = NULL;
4efc6507 52
e2bd3b15 53static void jit_inferior_init (struct gdbarch *gdbarch);
3b2a0cf2 54
3623dc3a
SD
55/* An unwinder is registered for every gdbarch. This key is used to
56 remember if the unwinder has been registered for a particular
57 gdbarch. */
58
59static struct gdbarch_data *jit_gdbarch_data;
60
a255712f
PP
61/* Non-zero if we want to see trace of jit level stuff. */
62
ccce17b0 63static unsigned int jit_debug = 0;
a255712f
PP
64
65static void
66show_jit_debug (struct ui_file *file, int from_tty,
67 struct cmd_list_element *c, const char *value)
68{
69 fprintf_filtered (file, _("JIT debugging is %s.\n"), value);
70}
71
4efc6507
DE
72struct target_buffer
73{
74 CORE_ADDR base;
a255712f 75 ULONGEST size;
4efc6507
DE
76};
77
78/* Openning the file is a no-op. */
79
80static void *
81mem_bfd_iovec_open (struct bfd *abfd, void *open_closure)
82{
83 return open_closure;
84}
85
86/* Closing the file is just freeing the base/size pair on our side. */
87
88static int
89mem_bfd_iovec_close (struct bfd *abfd, void *stream)
90{
91 xfree (stream);
92 return 1;
93}
94
95/* For reading the file, we just need to pass through to target_read_memory and
96 fix up the arguments and return values. */
97
98static file_ptr
99mem_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
100 file_ptr nbytes, file_ptr offset)
101{
102 int err;
103 struct target_buffer *buffer = (struct target_buffer *) stream;
104
105 /* If this read will read all of the file, limit it to just the rest. */
106 if (offset + nbytes > buffer->size)
107 nbytes = buffer->size - offset;
108
109 /* If there are no more bytes left, we've reached EOF. */
110 if (nbytes == 0)
111 return 0;
112
113 err = target_read_memory (buffer->base + offset, (gdb_byte *) buf, nbytes);
114 if (err)
115 return -1;
116
117 return nbytes;
118}
119
120/* For statting the file, we only support the st_size attribute. */
121
122static int
123mem_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
124{
125 struct target_buffer *buffer = (struct target_buffer*) stream;
126
127 sb->st_size = buffer->size;
128 return 0;
129}
130
f0bbc364
TT
131/* Open a BFD from the target's memory. */
132
133static struct bfd *
134bfd_open_from_target_memory (CORE_ADDR addr, ULONGEST size, char *target)
135{
f0bbc364
TT
136 struct target_buffer *buffer = xmalloc (sizeof (struct target_buffer));
137
138 buffer->base = addr;
139 buffer->size = size;
64c31149
TT
140 return gdb_bfd_openr_iovec ("<in-memory>", target,
141 mem_bfd_iovec_open,
142 buffer,
143 mem_bfd_iovec_pread,
144 mem_bfd_iovec_close,
145 mem_bfd_iovec_stat);
f0bbc364
TT
146}
147
784c47ee
SD
148/* One reader that has been loaded successfully, and can potentially be used to
149 parse debug info. */
150
151static struct jit_reader
152{
153 struct gdb_reader_funcs *functions;
154 void *handle;
155} *loaded_jit_reader = NULL;
156
157typedef struct gdb_reader_funcs * (reader_init_fn_type) (void);
158static const char *reader_init_fn_sym = "gdb_init_reader";
159
160/* Try to load FILE_NAME as a JIT debug info reader. */
161
162static struct jit_reader *
163jit_reader_load (const char *file_name)
164{
165 void *so;
166 reader_init_fn_type *init_fn;
167 struct jit_reader *new_reader = NULL;
168 struct gdb_reader_funcs *funcs = NULL;
169 struct cleanup *old_cleanups;
170
171 if (jit_debug)
172 fprintf_unfiltered (gdb_stdlog, _("Opening shared object %s.\n"),
173 file_name);
174 so = gdb_dlopen (file_name);
175 old_cleanups = make_cleanup_dlclose (so);
176
177 init_fn = gdb_dlsym (so, reader_init_fn_sym);
178 if (!init_fn)
179 error (_("Could not locate initialization function: %s."),
180 reader_init_fn_sym);
181
182 if (gdb_dlsym (so, "plugin_is_GPL_compatible") == NULL)
183 error (_("Reader not GPL compatible."));
184
185 funcs = init_fn ();
186 if (funcs->reader_version != GDB_READER_INTERFACE_VERSION)
187 error (_("Reader version does not match GDB version."));
188
189 new_reader = XZALLOC (struct jit_reader);
190 new_reader->functions = funcs;
191 new_reader->handle = so;
192
193 discard_cleanups (old_cleanups);
194 return new_reader;
195}
196
197/* Provides the jit-reader-load command. */
198
199static void
200jit_reader_load_command (char *args, int from_tty)
201{
202 char *so_name;
784c47ee
SD
203 struct cleanup *prev_cleanup;
204
205 if (args == NULL)
206 error (_("No reader name provided."));
207
208 if (loaded_jit_reader != NULL)
209 error (_("JIT reader already loaded. Run jit-reader-unload first."));
210
211 so_name = xstrprintf ("%s/%s", jit_reader_dir, args);
212 prev_cleanup = make_cleanup (xfree, so_name);
213
214 loaded_jit_reader = jit_reader_load (so_name);
215 do_cleanups (prev_cleanup);
216}
217
218/* Provides the jit-reader-unload command. */
219
220static void
221jit_reader_unload_command (char *args, int from_tty)
222{
223 if (!loaded_jit_reader)
224 error (_("No JIT reader loaded."));
225
226 loaded_jit_reader->functions->destroy (loaded_jit_reader->functions);
227
228 gdb_dlclose (loaded_jit_reader->handle);
229 xfree (loaded_jit_reader);
230 loaded_jit_reader = NULL;
231}
232
03bef283
TT
233/* Per-inferior structure recording which objfile has the JIT
234 symbols. */
03673fc7
PP
235
236struct jit_inferior_data
237{
03bef283
TT
238 /* The objfile. This is NULL if no objfile holds the JIT
239 symbols. */
240
241 struct objfile *objfile;
242};
243
244/* Per-objfile structure recording the addresses in the inferior. */
245
246struct jit_objfile_data
247{
248 /* Symbol for __jit_debug_register_code. */
249 struct minimal_symbol *register_code;
250
251 /* Symbol for __jit_debug_descriptor. */
252 struct minimal_symbol *descriptor;
253
254 /* Address of struct jit_code_entry in this objfile. */
255 CORE_ADDR addr;
03673fc7
PP
256};
257
03bef283
TT
258/* Fetch the jit_objfile_data associated with OBJF. If no data exists
259 yet, make a new structure and attach it. */
260
261static struct jit_objfile_data *
262get_jit_objfile_data (struct objfile *objf)
263{
264 struct jit_objfile_data *objf_data;
265
266 objf_data = objfile_data (objf, jit_objfile_data);
267 if (objf_data == NULL)
268 {
269 objf_data = XZALLOC (struct jit_objfile_data);
270 set_objfile_data (objf, jit_objfile_data, objf_data);
271 }
272
273 return objf_data;
274}
275
b4264740
SD
276/* Remember OBJFILE has been created for struct jit_code_entry located
277 at inferior address ENTRY. */
1825a88d
SD
278
279static void
280add_objfile_entry (struct objfile *objfile, CORE_ADDR entry)
281{
03bef283 282 struct jit_objfile_data *objf_data;
1825a88d 283
03bef283
TT
284 objf_data = get_jit_objfile_data (objfile);
285 objf_data->addr = entry;
1825a88d
SD
286}
287
03673fc7
PP
288/* Return jit_inferior_data for current inferior. Allocate if not already
289 present. */
290
291static struct jit_inferior_data *
292get_jit_inferior_data (void)
293{
294 struct inferior *inf;
295 struct jit_inferior_data *inf_data;
296
297 inf = current_inferior ();
298 inf_data = inferior_data (inf, jit_inferior_data);
299 if (inf_data == NULL)
300 {
301 inf_data = XZALLOC (struct jit_inferior_data);
302 set_inferior_data (inf, jit_inferior_data, inf_data);
303 }
304
305 return inf_data;
306}
307
308static void
309jit_inferior_data_cleanup (struct inferior *inf, void *arg)
310{
311 xfree (arg);
312}
313
1777feb0 314/* Helper function for reading the global JIT descriptor from remote
03bef283 315 memory. Returns 1 if all went well, 0 otherwise. */
4efc6507 316
03bef283 317static int
0756c555 318jit_read_descriptor (struct gdbarch *gdbarch,
03673fc7 319 struct jit_descriptor *descriptor,
03bef283 320 struct jit_inferior_data *inf_data)
4efc6507
DE
321{
322 int err;
323 struct type *ptr_type;
324 int ptr_size;
325 int desc_size;
326 gdb_byte *desc_buf;
0756c555 327 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
03bef283
TT
328 struct jit_objfile_data *objf_data;
329
330 if (inf_data->objfile == NULL)
331 return 0;
332 objf_data = get_jit_objfile_data (inf_data->objfile);
333 if (objf_data->descriptor == NULL)
334 return 0;
335
336 if (jit_debug)
337 fprintf_unfiltered (gdb_stdlog,
338 "jit_read_descriptor, descriptor_addr = %s\n",
339 paddress (gdbarch, SYMBOL_VALUE_ADDRESS (objf_data->descriptor)));
4efc6507
DE
340
341 /* Figure out how big the descriptor is on the remote and how to read it. */
0756c555 342 ptr_type = builtin_type (gdbarch)->builtin_data_ptr;
4efc6507
DE
343 ptr_size = TYPE_LENGTH (ptr_type);
344 desc_size = 8 + 2 * ptr_size; /* Two 32-bit ints and two pointers. */
345 desc_buf = alloca (desc_size);
346
347 /* Read the descriptor. */
03bef283
TT
348 err = target_read_memory (SYMBOL_VALUE_ADDRESS (objf_data->descriptor),
349 desc_buf, desc_size);
4efc6507 350 if (err)
03bef283
TT
351 {
352 printf_unfiltered (_("Unable to read JIT descriptor from "
353 "remote memory\n"));
354 return 0;
355 }
4efc6507
DE
356
357 /* Fix the endianness to match the host. */
358 descriptor->version = extract_unsigned_integer (&desc_buf[0], 4, byte_order);
359 descriptor->action_flag =
360 extract_unsigned_integer (&desc_buf[4], 4, byte_order);
361 descriptor->relevant_entry = extract_typed_address (&desc_buf[8], ptr_type);
362 descriptor->first_entry =
363 extract_typed_address (&desc_buf[8 + ptr_size], ptr_type);
03bef283
TT
364
365 return 1;
4efc6507
DE
366}
367
368/* Helper function for reading a JITed code entry from remote memory. */
369
370static void
0756c555
DE
371jit_read_code_entry (struct gdbarch *gdbarch,
372 CORE_ADDR code_addr, struct jit_code_entry *code_entry)
4efc6507 373{
205c306f 374 int err, off;
4efc6507
DE
375 struct type *ptr_type;
376 int ptr_size;
377 int entry_size;
205c306f 378 int align_bytes;
4efc6507 379 gdb_byte *entry_buf;
0756c555 380 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
4efc6507
DE
381
382 /* Figure out how big the entry is on the remote and how to read it. */
0756c555 383 ptr_type = builtin_type (gdbarch)->builtin_data_ptr;
4efc6507 384 ptr_size = TYPE_LENGTH (ptr_type);
227ee7fc
RH
385
386 /* Figure out where the longlong value will be. */
387 align_bytes = gdbarch_long_long_align_bit (gdbarch) / 8;
388 off = 3 * ptr_size;
389 off = (off + (align_bytes - 1)) & ~(align_bytes - 1);
390
391 entry_size = off + 8; /* Three pointers and one 64-bit int. */
4efc6507
DE
392 entry_buf = alloca (entry_size);
393
394 /* Read the entry. */
395 err = target_read_memory (code_addr, entry_buf, entry_size);
396 if (err)
397 error (_("Unable to read JIT code entry from remote memory!"));
398
399 /* Fix the endianness to match the host. */
0756c555 400 ptr_type = builtin_type (gdbarch)->builtin_data_ptr;
4efc6507
DE
401 code_entry->next_entry = extract_typed_address (&entry_buf[0], ptr_type);
402 code_entry->prev_entry =
403 extract_typed_address (&entry_buf[ptr_size], ptr_type);
404 code_entry->symfile_addr =
405 extract_typed_address (&entry_buf[2 * ptr_size], ptr_type);
406 code_entry->symfile_size =
205c306f 407 extract_unsigned_integer (&entry_buf[off], 8, byte_order);
4efc6507
DE
408}
409
1825a88d
SD
410/* Proxy object for building a block. */
411
412struct gdb_block
413{
414 /* gdb_blocks are linked into a tree structure. Next points to the
415 next node at the same depth as this block and parent to the
416 parent gdb_block. */
417 struct gdb_block *next, *parent;
418
419 /* Points to the "real" block that is being built out of this
420 instance. This block will be added to a blockvector, which will
421 then be added to a symtab. */
422 struct block *real_block;
423
424 /* The first and last code address corresponding to this block. */
425 CORE_ADDR begin, end;
426
427 /* The name of this block (if any). If this is non-NULL, the
428 FUNCTION symbol symbol is set to this value. */
429 const char *name;
430};
431
432/* Proxy object for building a symtab. */
433
434struct gdb_symtab
435{
436 /* The list of blocks in this symtab. These will eventually be
437 converted to real blocks. */
438 struct gdb_block *blocks;
439
440 /* The number of blocks inserted. */
441 int nblocks;
442
443 /* A mapping between line numbers to PC. */
444 struct linetable *linetable;
445
446 /* The source file for this symtab. */
447 const char *file_name;
448 struct gdb_symtab *next;
449};
450
451/* Proxy object for building an object. */
452
453struct gdb_object
454{
455 struct gdb_symtab *symtabs;
456};
457
458/* The type of the `private' data passed around by the callback
459 functions. */
460
461typedef CORE_ADDR jit_dbg_reader_data;
462
463/* The reader calls into this function to read data off the targets
464 address space. */
465
466static enum gdb_status
467jit_target_read_impl (GDB_CORE_ADDR target_mem, void *gdb_buf, int len)
468{
469 int result = target_read_memory ((CORE_ADDR) target_mem, gdb_buf, len);
470 if (result == 0)
471 return GDB_SUCCESS;
472 else
473 return GDB_FAIL;
474}
475
476/* The reader calls into this function to create a new gdb_object
477 which it can then pass around to the other callbacks. Right now,
478 all that is required is allocating the memory. */
479
480static struct gdb_object *
481jit_object_open_impl (struct gdb_symbol_callbacks *cb)
482{
483 /* CB is not required right now, but sometime in the future we might
484 need a handle to it, and we'd like to do that without breaking
485 the ABI. */
486 return XZALLOC (struct gdb_object);
487}
488
489/* Readers call into this function to open a new gdb_symtab, which,
490 again, is passed around to other callbacks. */
491
492static struct gdb_symtab *
493jit_symtab_open_impl (struct gdb_symbol_callbacks *cb,
494 struct gdb_object *object,
495 const char *file_name)
496{
497 struct gdb_symtab *ret;
498
499 /* CB stays unused. See comment in jit_object_open_impl. */
500
501 ret = XZALLOC (struct gdb_symtab);
502 ret->file_name = file_name ? xstrdup (file_name) : xstrdup ("");
503 ret->next = object->symtabs;
504 object->symtabs = ret;
505 return ret;
506}
507
508/* Returns true if the block corresponding to old should be placed
509 before the block corresponding to new in the final blockvector. */
510
511static int
512compare_block (const struct gdb_block *const old,
513 const struct gdb_block *const new)
514{
515 if (old == NULL)
516 return 1;
517 if (old->begin < new->begin)
518 return 1;
519 else if (old->begin == new->begin)
520 {
521 if (old->end > new->end)
522 return 1;
523 else
524 return 0;
525 }
526 else
527 return 0;
528}
529
530/* Called by readers to open a new gdb_block. This function also
531 inserts the new gdb_block in the correct place in the corresponding
532 gdb_symtab. */
533
534static struct gdb_block *
535jit_block_open_impl (struct gdb_symbol_callbacks *cb,
536 struct gdb_symtab *symtab, struct gdb_block *parent,
537 GDB_CORE_ADDR begin, GDB_CORE_ADDR end, const char *name)
538{
539 struct gdb_block *block = XZALLOC (struct gdb_block);
540
541 block->next = symtab->blocks;
542 block->begin = (CORE_ADDR) begin;
543 block->end = (CORE_ADDR) end;
544 block->name = name ? xstrdup (name) : NULL;
545 block->parent = parent;
546
547 /* Ensure that the blocks are inserted in the correct (reverse of
548 the order expected by blockvector). */
549 if (compare_block (symtab->blocks, block))
550 {
551 symtab->blocks = block;
552 }
553 else
554 {
555 struct gdb_block *i = symtab->blocks;
556
557 for (;; i = i->next)
558 {
559 /* Guaranteed to terminate, since compare_block (NULL, _)
560 returns 1. */
561 if (compare_block (i->next, block))
562 {
563 block->next = i->next;
564 i->next = block;
565 break;
566 }
567 }
568 }
569 symtab->nblocks++;
570
571 return block;
572}
573
574/* Readers call this to add a line mapping (from PC to line number) to
575 a gdb_symtab. */
4efc6507
DE
576
577static void
1825a88d
SD
578jit_symtab_line_mapping_add_impl (struct gdb_symbol_callbacks *cb,
579 struct gdb_symtab *stab, int nlines,
580 struct gdb_line_mapping *map)
581{
582 int i;
583
584 if (nlines < 1)
585 return;
586
587 stab->linetable = xmalloc (sizeof (struct linetable)
588 + (nlines - 1) * sizeof (struct linetable_entry));
589 stab->linetable->nitems = nlines;
590 for (i = 0; i < nlines; i++)
591 {
592 stab->linetable->item[i].pc = (CORE_ADDR) map[i].pc;
593 stab->linetable->item[i].line = map[i].line;
594 }
595}
596
597/* Called by readers to close a gdb_symtab. Does not need to do
598 anything as of now. */
599
600static void
601jit_symtab_close_impl (struct gdb_symbol_callbacks *cb,
602 struct gdb_symtab *stab)
603{
604 /* Right now nothing needs to be done here. We may need to do some
605 cleanup here in the future (again, without breaking the plugin
606 ABI). */
607}
608
609/* Transform STAB to a proper symtab, and add it it OBJFILE. */
610
611static void
612finalize_symtab (struct gdb_symtab *stab, struct objfile *objfile)
613{
614 struct symtab *symtab;
615 struct gdb_block *gdb_block_iter, *gdb_block_iter_tmp;
616 struct block *block_iter;
617 int actual_nblocks, i, blockvector_size;
618 CORE_ADDR begin, end;
619
620 actual_nblocks = FIRST_LOCAL_BLOCK + stab->nblocks;
621
622 symtab = allocate_symtab (stab->file_name, objfile);
623 /* JIT compilers compile in memory. */
624 symtab->dirname = NULL;
625
626 /* Copy over the linetable entry if one was provided. */
627 if (stab->linetable)
628 {
629 int size = ((stab->linetable->nitems - 1)
630 * sizeof (struct linetable_entry)
631 + sizeof (struct linetable));
632 LINETABLE (symtab) = obstack_alloc (&objfile->objfile_obstack, size);
633 memcpy (LINETABLE (symtab), stab->linetable, size);
634 }
635 else
636 {
637 LINETABLE (symtab) = NULL;
638 }
639
640 blockvector_size = (sizeof (struct blockvector)
641 + (actual_nblocks - 1) * sizeof (struct block *));
642 symtab->blockvector = obstack_alloc (&objfile->objfile_obstack,
643 blockvector_size);
644
645 /* (begin, end) will contain the PC range this entire blockvector
646 spans. */
647 symtab->primary = 1;
648 BLOCKVECTOR_MAP (symtab->blockvector) = NULL;
649 begin = stab->blocks->begin;
650 end = stab->blocks->end;
651 BLOCKVECTOR_NBLOCKS (symtab->blockvector) = actual_nblocks;
652
653 /* First run over all the gdb_block objects, creating a real block
654 object for each. Simultaneously, keep setting the real_block
655 fields. */
656 for (i = (actual_nblocks - 1), gdb_block_iter = stab->blocks;
657 i >= FIRST_LOCAL_BLOCK;
658 i--, gdb_block_iter = gdb_block_iter->next)
659 {
660 struct block *new_block = allocate_block (&objfile->objfile_obstack);
661 struct symbol *block_name = obstack_alloc (&objfile->objfile_obstack,
662 sizeof (struct symbol));
2535757a
TT
663 struct type *block_type = arch_type (get_objfile_arch (objfile),
664 TYPE_CODE_VOID,
665 1,
666 "void");
1825a88d
SD
667
668 BLOCK_DICT (new_block) = dict_create_linear (&objfile->objfile_obstack,
669 NULL);
670 /* The address range. */
671 BLOCK_START (new_block) = (CORE_ADDR) gdb_block_iter->begin;
672 BLOCK_END (new_block) = (CORE_ADDR) gdb_block_iter->end;
673
674 /* The name. */
675 memset (block_name, 0, sizeof (struct symbol));
676 SYMBOL_DOMAIN (block_name) = VAR_DOMAIN;
677 SYMBOL_CLASS (block_name) = LOC_BLOCK;
678 SYMBOL_SYMTAB (block_name) = symtab;
2535757a 679 SYMBOL_TYPE (block_name) = lookup_function_type (block_type);
1825a88d
SD
680 SYMBOL_BLOCK_VALUE (block_name) = new_block;
681
682 block_name->ginfo.name = obsavestring (gdb_block_iter->name,
683 strlen (gdb_block_iter->name),
684 &objfile->objfile_obstack);
685
686 BLOCK_FUNCTION (new_block) = block_name;
687
688 BLOCKVECTOR_BLOCK (symtab->blockvector, i) = new_block;
689 if (begin > BLOCK_START (new_block))
690 begin = BLOCK_START (new_block);
691 if (end < BLOCK_END (new_block))
692 end = BLOCK_END (new_block);
693
694 gdb_block_iter->real_block = new_block;
695 }
696
697 /* Now add the special blocks. */
698 block_iter = NULL;
699 for (i = 0; i < FIRST_LOCAL_BLOCK; i++)
700 {
84a146c9
TT
701 struct block *new_block;
702
703 new_block = (i == GLOBAL_BLOCK
704 ? allocate_global_block (&objfile->objfile_obstack)
705 : allocate_block (&objfile->objfile_obstack));
1825a88d
SD
706 BLOCK_DICT (new_block) = dict_create_linear (&objfile->objfile_obstack,
707 NULL);
708 BLOCK_SUPERBLOCK (new_block) = block_iter;
709 block_iter = new_block;
710
711 BLOCK_START (new_block) = (CORE_ADDR) begin;
712 BLOCK_END (new_block) = (CORE_ADDR) end;
713
714 BLOCKVECTOR_BLOCK (symtab->blockvector, i) = new_block;
84a146c9
TT
715
716 if (i == GLOBAL_BLOCK)
717 set_block_symtab (new_block, symtab);
1825a88d
SD
718 }
719
720 /* Fill up the superblock fields for the real blocks, using the
721 real_block fields populated earlier. */
722 for (gdb_block_iter = stab->blocks;
723 gdb_block_iter;
724 gdb_block_iter = gdb_block_iter->next)
725 {
726 if (gdb_block_iter->parent != NULL)
db334a01
SD
727 {
728 /* If the plugin specifically mentioned a parent block, we
729 use that. */
730 BLOCK_SUPERBLOCK (gdb_block_iter->real_block) =
731 gdb_block_iter->parent->real_block;
732 }
733 else
734 {
735 /* And if not, we set a default parent block. */
736 BLOCK_SUPERBLOCK (gdb_block_iter->real_block) =
737 BLOCKVECTOR_BLOCK (symtab->blockvector, STATIC_BLOCK);
738 }
1825a88d
SD
739 }
740
741 /* Free memory. */
742 gdb_block_iter = stab->blocks;
743
744 for (gdb_block_iter = stab->blocks, gdb_block_iter_tmp = gdb_block_iter->next;
745 gdb_block_iter;
746 gdb_block_iter = gdb_block_iter_tmp)
747 {
748 xfree ((void *) gdb_block_iter->name);
749 xfree (gdb_block_iter);
750 }
751 xfree (stab->linetable);
752 xfree ((char *) stab->file_name);
753 xfree (stab);
754}
755
756/* Called when closing a gdb_objfile. Converts OBJ to a proper
757 objfile. */
758
759static void
760jit_object_close_impl (struct gdb_symbol_callbacks *cb,
761 struct gdb_object *obj)
762{
763 struct gdb_symtab *i, *j;
764 struct objfile *objfile;
765 jit_dbg_reader_data *priv_data;
766
767 priv_data = cb->priv_data;
768
769 objfile = allocate_objfile (NULL, 0);
f5656ead 770 objfile->gdbarch = target_gdbarch ();
1825a88d 771
a5bd37c3 772 terminate_minimal_symbol_table (objfile);
1825a88d 773
e1507e95 774 objfile->name = "<< JIT compiled code >>";
1825a88d
SD
775
776 j = NULL;
777 for (i = obj->symtabs; i; i = j)
778 {
779 j = i->next;
780 finalize_symtab (i, objfile);
781 }
782 add_objfile_entry (objfile, *priv_data);
783 xfree (obj);
784}
785
744ab88c 786/* Try to read CODE_ENTRY using the loaded jit reader (if any).
b4264740
SD
787 ENTRY_ADDR is the address of the struct jit_code_entry in the
788 inferior address space. */
1825a88d
SD
789
790static int
744ab88c
SD
791jit_reader_try_read_symtab (struct jit_code_entry *code_entry,
792 CORE_ADDR entry_addr)
1825a88d
SD
793{
794 void *gdb_mem;
795 int status;
1825a88d
SD
796 jit_dbg_reader_data priv_data;
797 struct gdb_reader_funcs *funcs;
798 volatile struct gdb_exception e;
799 struct gdb_symbol_callbacks callbacks =
800 {
801 jit_object_open_impl,
802 jit_symtab_open_impl,
803 jit_block_open_impl,
804 jit_symtab_close_impl,
805 jit_object_close_impl,
806
807 jit_symtab_line_mapping_add_impl,
808 jit_target_read_impl,
809
810 &priv_data
811 };
812
744ab88c 813 priv_data = entry_addr;
1825a88d
SD
814
815 if (!loaded_jit_reader)
816 return 0;
817
818 gdb_mem = xmalloc (code_entry->symfile_size);
819
820 status = 1;
821 TRY_CATCH (e, RETURN_MASK_ALL)
822 if (target_read_memory (code_entry->symfile_addr, gdb_mem,
823 code_entry->symfile_size))
824 status = 0;
825 if (e.reason < 0)
826 status = 0;
827
828 if (status)
829 {
830 funcs = loaded_jit_reader->functions;
831 if (funcs->read (funcs, &callbacks, gdb_mem, code_entry->symfile_size)
832 != GDB_SUCCESS)
833 status = 0;
834 }
835
836 xfree (gdb_mem);
837 if (jit_debug && status == 0)
838 fprintf_unfiltered (gdb_stdlog,
839 "Could not read symtab using the loaded JIT reader.\n");
840 return status;
841}
842
744ab88c 843/* Try to read CODE_ENTRY using BFD. ENTRY_ADDR is the address of the
b4264740 844 struct jit_code_entry in the inferior address space. */
1825a88d
SD
845
846static void
847jit_bfd_try_read_symtab (struct jit_code_entry *code_entry,
744ab88c 848 CORE_ADDR entry_addr,
1825a88d 849 struct gdbarch *gdbarch)
4efc6507
DE
850{
851 bfd *nbfd;
852 struct section_addr_info *sai;
853 struct bfd_section *sec;
854 struct objfile *objfile;
4dfb2365 855 struct cleanup *old_cleanups;
4efc6507
DE
856 int i;
857 const struct bfd_arch_info *b;
4efc6507 858
a255712f
PP
859 if (jit_debug)
860 fprintf_unfiltered (gdb_stdlog,
861 "jit_register_code, symfile_addr = %s, "
862 "symfile_size = %s\n",
863 paddress (gdbarch, code_entry->symfile_addr),
864 pulongest (code_entry->symfile_size));
865
4efc6507
DE
866 nbfd = bfd_open_from_target_memory (code_entry->symfile_addr,
867 code_entry->symfile_size, gnutarget);
4dfb2365
JK
868 if (nbfd == NULL)
869 {
870 puts_unfiltered (_("Error opening JITed symbol file, ignoring it.\n"));
871 return;
872 }
4efc6507
DE
873
874 /* Check the format. NOTE: This initializes important data that GDB uses!
875 We would segfault later without this line. */
876 if (!bfd_check_format (nbfd, bfd_object))
877 {
878 printf_unfiltered (_("\
879JITed symbol file is not an object file, ignoring it.\n"));
cbb099e8 880 gdb_bfd_unref (nbfd);
4efc6507
DE
881 return;
882 }
883
884 /* Check bfd arch. */
0756c555 885 b = gdbarch_bfd_arch_info (gdbarch);
4efc6507
DE
886 if (b->compatible (b, bfd_get_arch_info (nbfd)) != b)
887 warning (_("JITed object file architecture %s is not compatible "
888 "with target architecture %s."), bfd_get_arch_info
889 (nbfd)->printable_name, b->printable_name);
890
891 /* Read the section address information out of the symbol file. Since the
892 file is generated by the JIT at runtime, it should all of the absolute
893 addresses that we care about. */
894 sai = alloc_section_addr_info (bfd_count_sections (nbfd));
4dfb2365 895 old_cleanups = make_cleanup_free_section_addr_info (sai);
4efc6507
DE
896 i = 0;
897 for (sec = nbfd->sections; sec != NULL; sec = sec->next)
898 if ((bfd_get_section_flags (nbfd, sec) & (SEC_ALLOC|SEC_LOAD)) != 0)
899 {
900 /* We assume that these virtual addresses are absolute, and do not
901 treat them as offsets. */
902 sai->other[i].addr = bfd_get_section_vma (nbfd, sec);
04a679b8 903 sai->other[i].name = xstrdup (bfd_get_section_name (nbfd, sec));
4efc6507
DE
904 sai->other[i].sectindex = sec->index;
905 ++i;
906 }
907
8ac244b4
TT
908 /* This call does not take ownership of SAI. */
909 make_cleanup_bfd_unref (nbfd);
63524580 910 objfile = symbol_file_add_from_bfd (nbfd, 0, sai, OBJF_SHARED, NULL);
4efc6507 911
4dfb2365 912 do_cleanups (old_cleanups);
744ab88c 913 add_objfile_entry (objfile, entry_addr);
1825a88d
SD
914}
915
916/* This function registers code associated with a JIT code entry. It uses the
917 pointer and size pair in the entry to read the symbol file from the remote
918 and then calls symbol_file_add_from_local_memory to add it as though it were
919 a symbol file added by the user. */
920
921static void
922jit_register_code (struct gdbarch *gdbarch,
923 CORE_ADDR entry_addr, struct jit_code_entry *code_entry)
924{
925 int i, success;
926 const struct bfd_arch_info *b;
927 struct jit_inferior_data *inf_data = get_jit_inferior_data ();
928
929 if (jit_debug)
930 fprintf_unfiltered (gdb_stdlog,
931 "jit_register_code, symfile_addr = %s, "
932 "symfile_size = %s\n",
933 paddress (gdbarch, code_entry->symfile_addr),
934 pulongest (code_entry->symfile_size));
935
744ab88c 936 success = jit_reader_try_read_symtab (code_entry, entry_addr);
1825a88d
SD
937
938 if (!success)
744ab88c 939 jit_bfd_try_read_symtab (code_entry, entry_addr, gdbarch);
4efc6507
DE
940}
941
1777feb0
MS
942/* This function unregisters JITed code and frees the corresponding
943 objfile. */
4efc6507
DE
944
945static void
946jit_unregister_code (struct objfile *objfile)
947{
948 free_objfile (objfile);
949}
950
951/* Look up the objfile with this code entry address. */
952
953static struct objfile *
954jit_find_objf_with_entry_addr (CORE_ADDR entry_addr)
955{
956 struct objfile *objf;
4efc6507
DE
957
958 ALL_OBJFILES (objf)
959 {
03bef283
TT
960 struct jit_objfile_data *objf_data;
961
962 objf_data = objfile_data (objf, jit_objfile_data);
963 if (objf_data != NULL && objf_data->addr == entry_addr)
4efc6507
DE
964 return objf;
965 }
966 return NULL;
967}
968
03673fc7
PP
969/* (Re-)Initialize the jit breakpoint if necessary.
970 Return 0 on success. */
971
972static int
973jit_breakpoint_re_set_internal (struct gdbarch *gdbarch,
974 struct jit_inferior_data *inf_data)
975{
03bef283
TT
976 struct minimal_symbol *reg_symbol, *desc_symbol;
977 struct objfile *objf;
978 struct jit_objfile_data *objf_data;
979
980 if (inf_data->objfile != NULL)
03673fc7
PP
981 return 0;
982
03bef283
TT
983 /* Lookup the registration symbol. If it is missing, then we assume
984 we are not attached to a JIT. */
985 reg_symbol = lookup_minimal_symbol_and_objfile (jit_break_name, &objf);
986 if (reg_symbol == NULL || SYMBOL_VALUE_ADDRESS (reg_symbol) == 0)
987 return 1;
988
989 desc_symbol = lookup_minimal_symbol (jit_descriptor_name, NULL, objf);
990 if (desc_symbol == NULL || SYMBOL_VALUE_ADDRESS (desc_symbol) == 0)
991 return 1;
992
993 objf_data = get_jit_objfile_data (objf);
994 objf_data->register_code = reg_symbol;
995 objf_data->descriptor = desc_symbol;
996
997 inf_data->objfile = objf;
998
999 jit_inferior_init (gdbarch);
1000
03673fc7
PP
1001 if (jit_debug)
1002 fprintf_unfiltered (gdb_stdlog,
1003 "jit_breakpoint_re_set_internal, "
1004 "breakpoint_addr = %s\n",
03bef283 1005 paddress (gdbarch, SYMBOL_VALUE_ADDRESS (reg_symbol)));
03673fc7
PP
1006
1007 /* Put a breakpoint in the registration symbol. */
03bef283 1008 create_jit_event_breakpoint (gdbarch, SYMBOL_VALUE_ADDRESS (reg_symbol));
03673fc7
PP
1009
1010 return 0;
1011}
1012
3623dc3a
SD
1013/* The private data passed around in the frame unwind callback
1014 functions. */
1015
1016struct jit_unwind_private
1017{
1018 /* Cached register values. See jit_frame_sniffer to see how this
1019 works. */
1020 struct gdb_reg_value **registers;
1021
1022 /* The frame being unwound. */
1023 struct frame_info *this_frame;
1024};
1025
1026/* Sets the value of a particular register in this frame. */
1027
1028static void
1029jit_unwind_reg_set_impl (struct gdb_unwind_callbacks *cb, int dwarf_regnum,
1030 struct gdb_reg_value *value)
1031{
1032 struct jit_unwind_private *priv;
1033 int gdb_reg;
1034
1035 priv = cb->priv_data;
1036
1037 gdb_reg = gdbarch_dwarf2_reg_to_regnum (get_frame_arch (priv->this_frame),
1038 dwarf_regnum);
1039 if (gdb_reg == -1)
1040 {
1041 if (jit_debug)
1042 fprintf_unfiltered (gdb_stdlog,
1043 _("Could not recognize DWARF regnum %d"),
1044 dwarf_regnum);
1045 return;
1046 }
1047
1048 gdb_assert (priv->registers);
1049 priv->registers[gdb_reg] = value;
1050}
1051
1052static void
1053reg_value_free_impl (struct gdb_reg_value *value)
1054{
1055 xfree (value);
1056}
1057
1058/* Get the value of register REGNUM in the previous frame. */
1059
1060static struct gdb_reg_value *
1061jit_unwind_reg_get_impl (struct gdb_unwind_callbacks *cb, int regnum)
1062{
1063 struct jit_unwind_private *priv;
1064 struct gdb_reg_value *value;
1065 int gdb_reg, size;
1066 struct gdbarch *frame_arch;
1067
1068 priv = cb->priv_data;
1069 frame_arch = get_frame_arch (priv->this_frame);
1070
1071 gdb_reg = gdbarch_dwarf2_reg_to_regnum (frame_arch, regnum);
1072 size = register_size (frame_arch, gdb_reg);
1073 value = xmalloc (sizeof (struct gdb_reg_value) + size - 1);
ca9d61b9
JB
1074 value->defined = deprecated_frame_register_read (priv->this_frame, gdb_reg,
1075 value->value);
3623dc3a
SD
1076 value->size = size;
1077 value->free = reg_value_free_impl;
1078 return value;
1079}
1080
1081/* gdb_reg_value has a free function, which must be called on each
1082 saved register value. */
1083
1084static void
1085jit_dealloc_cache (struct frame_info *this_frame, void *cache)
1086{
1087 struct jit_unwind_private *priv_data = cache;
1088 struct gdbarch *frame_arch;
1089 int i;
1090
1091 gdb_assert (priv_data->registers);
1092 frame_arch = get_frame_arch (priv_data->this_frame);
1093
1094 for (i = 0; i < gdbarch_num_regs (frame_arch); i++)
1095 if (priv_data->registers[i] && priv_data->registers[i]->free)
1096 priv_data->registers[i]->free (priv_data->registers[i]);
1097
1098 xfree (priv_data->registers);
1099 xfree (priv_data);
1100}
1101
1102/* The frame sniffer for the pseudo unwinder.
1103
1104 While this is nominally a frame sniffer, in the case where the JIT
1105 reader actually recognizes the frame, it does a lot more work -- it
1106 unwinds the frame and saves the corresponding register values in
1107 the cache. jit_frame_prev_register simply returns the saved
1108 register values. */
1109
1110static int
1111jit_frame_sniffer (const struct frame_unwind *self,
1112 struct frame_info *this_frame, void **cache)
1113{
1114 struct jit_inferior_data *inf_data;
1115 struct jit_unwind_private *priv_data;
3623dc3a
SD
1116 struct gdb_unwind_callbacks callbacks;
1117 struct gdb_reader_funcs *funcs;
1118
1119 inf_data = get_jit_inferior_data ();
1120
1121 callbacks.reg_get = jit_unwind_reg_get_impl;
1122 callbacks.reg_set = jit_unwind_reg_set_impl;
1123 callbacks.target_read = jit_target_read_impl;
1124
1125 if (loaded_jit_reader == NULL)
1126 return 0;
1127
1128 funcs = loaded_jit_reader->functions;
1129
1130 gdb_assert (!*cache);
1131
1132 *cache = XZALLOC (struct jit_unwind_private);
1133 priv_data = *cache;
1134 priv_data->registers =
1135 XCALLOC (gdbarch_num_regs (get_frame_arch (this_frame)),
1136 struct gdb_reg_value *);
1137 priv_data->this_frame = this_frame;
1138
1139 callbacks.priv_data = priv_data;
1140
1141 /* Try to coax the provided unwinder to unwind the stack */
1142 if (funcs->unwind (funcs, &callbacks) == GDB_SUCCESS)
1143 {
1144 if (jit_debug)
1145 fprintf_unfiltered (gdb_stdlog, _("Successfully unwound frame using "
1146 "JIT reader.\n"));
1147 return 1;
1148 }
1149 if (jit_debug)
1150 fprintf_unfiltered (gdb_stdlog, _("Could not unwind frame using "
1151 "JIT reader.\n"));
1152
1153 jit_dealloc_cache (this_frame, *cache);
1154 *cache = NULL;
1155
1156 return 0;
1157}
1158
1159
1160/* The frame_id function for the pseudo unwinder. Relays the call to
1161 the loaded plugin. */
1162
1163static void
1164jit_frame_this_id (struct frame_info *this_frame, void **cache,
1165 struct frame_id *this_id)
1166{
1167 struct jit_unwind_private private;
1168 struct gdb_frame_id frame_id;
1169 struct gdb_reader_funcs *funcs;
1170 struct gdb_unwind_callbacks callbacks;
1171
1172 private.registers = NULL;
1173 private.this_frame = this_frame;
1174
1175 /* We don't expect the frame_id function to set any registers, so we
1176 set reg_set to NULL. */
1177 callbacks.reg_get = jit_unwind_reg_get_impl;
1178 callbacks.reg_set = NULL;
1179 callbacks.target_read = jit_target_read_impl;
1180 callbacks.priv_data = &private;
1181
1182 gdb_assert (loaded_jit_reader);
1183 funcs = loaded_jit_reader->functions;
1184
1185 frame_id = funcs->get_frame_id (funcs, &callbacks);
1186 *this_id = frame_id_build (frame_id.stack_address, frame_id.code_address);
1187}
1188
1189/* Pseudo unwinder function. Reads the previously fetched value for
1190 the register from the cache. */
1191
1192static struct value *
1193jit_frame_prev_register (struct frame_info *this_frame, void **cache, int reg)
1194{
1195 struct jit_unwind_private *priv = *cache;
1196 struct gdb_reg_value *value;
1197
1198 if (priv == NULL)
1199 return frame_unwind_got_optimized (this_frame, reg);
1200
1201 gdb_assert (priv->registers);
1202 value = priv->registers[reg];
1203 if (value && value->defined)
1204 return frame_unwind_got_bytes (this_frame, reg, value->value);
1205 else
1206 return frame_unwind_got_optimized (this_frame, reg);
1207}
1208
1209/* Relay everything back to the unwinder registered by the JIT debug
1210 info reader.*/
1211
1212static const struct frame_unwind jit_frame_unwind =
1213{
1214 NORMAL_FRAME,
1215 default_frame_unwind_stop_reason,
1216 jit_frame_this_id,
1217 jit_frame_prev_register,
1218 NULL,
1219 jit_frame_sniffer,
1220 jit_dealloc_cache
1221};
1222
1223
1224/* This is the information that is stored at jit_gdbarch_data for each
1225 architecture. */
1226
1227struct jit_gdbarch_data_type
1228{
1229 /* Has the (pseudo) unwinder been prepended? */
1230 int unwinder_registered;
1231};
1232
1233/* Check GDBARCH and prepend the pseudo JIT unwinder if needed. */
1234
1235static void
1236jit_prepend_unwinder (struct gdbarch *gdbarch)
1237{
1238 struct jit_gdbarch_data_type *data;
1239
1240 data = gdbarch_data (gdbarch, jit_gdbarch_data);
1241 if (!data->unwinder_registered)
1242 {
1243 frame_unwind_prepend_unwinder (gdbarch, &jit_frame_unwind);
1244 data->unwinder_registered = 1;
1245 }
1246}
1247
03673fc7 1248/* Register any already created translations. */
0756c555
DE
1249
1250static void
1251jit_inferior_init (struct gdbarch *gdbarch)
4efc6507 1252{
4efc6507
DE
1253 struct jit_descriptor descriptor;
1254 struct jit_code_entry cur_entry;
03673fc7 1255 struct jit_inferior_data *inf_data;
4efc6507 1256 CORE_ADDR cur_entry_addr;
4efc6507 1257
a255712f 1258 if (jit_debug)
03673fc7 1259 fprintf_unfiltered (gdb_stdlog, "jit_inferior_init\n");
a255712f 1260
3623dc3a
SD
1261 jit_prepend_unwinder (gdbarch);
1262
03673fc7
PP
1263 inf_data = get_jit_inferior_data ();
1264 if (jit_breakpoint_re_set_internal (gdbarch, inf_data) != 0)
4efc6507
DE
1265 return;
1266
1777feb0
MS
1267 /* Read the descriptor so we can check the version number and load
1268 any already JITed functions. */
03bef283
TT
1269 if (!jit_read_descriptor (gdbarch, &descriptor, inf_data))
1270 return;
4efc6507
DE
1271
1272 /* Check that the version number agrees with that we support. */
1273 if (descriptor.version != 1)
03bef283
TT
1274 {
1275 printf_unfiltered (_("Unsupported JIT protocol version %ld "
1276 "in descriptor (expected 1)\n"),
1277 (long) descriptor.version);
1278 return;
1279 }
4efc6507 1280
1777feb0
MS
1281 /* If we've attached to a running program, we need to check the descriptor
1282 to register any functions that were already generated. */
4efc6507
DE
1283 for (cur_entry_addr = descriptor.first_entry;
1284 cur_entry_addr != 0;
1285 cur_entry_addr = cur_entry.next_entry)
1286 {
0756c555 1287 jit_read_code_entry (gdbarch, cur_entry_addr, &cur_entry);
4efc6507
DE
1288
1289 /* This hook may be called many times during setup, so make sure we don't
1290 add the same symbol file twice. */
1291 if (jit_find_objf_with_entry_addr (cur_entry_addr) != NULL)
1292 continue;
1293
0756c555 1294 jit_register_code (gdbarch, cur_entry_addr, &cur_entry);
4efc6507
DE
1295 }
1296}
1297
0756c555
DE
1298/* Exported routine to call when an inferior has been created. */
1299
1300void
1301jit_inferior_created_hook (void)
1302{
f5656ead 1303 jit_inferior_init (target_gdbarch ());
0756c555
DE
1304}
1305
1306/* Exported routine to call to re-set the jit breakpoints,
1307 e.g. when a program is rerun. */
1308
1309void
1310jit_breakpoint_re_set (void)
1311{
f5656ead 1312 jit_breakpoint_re_set_internal (target_gdbarch (),
03673fc7
PP
1313 get_jit_inferior_data ());
1314}
1315
1777feb0
MS
1316/* This function cleans up any code entries left over when the
1317 inferior exits. We get left over code when the inferior exits
1318 without unregistering its code, for example when it crashes. */
4efc6507
DE
1319
1320static void
a79b8f6e 1321jit_inferior_exit_hook (struct inferior *inf)
4efc6507
DE
1322{
1323 struct objfile *objf;
1324 struct objfile *temp;
1325
4efc6507 1326 ALL_OBJFILES_SAFE (objf, temp)
03bef283
TT
1327 {
1328 struct jit_objfile_data *objf_data = objfile_data (objf,
1329 jit_objfile_data);
4efc6507 1330
03bef283
TT
1331 if (objf_data != NULL && objf_data->addr != 0)
1332 jit_unregister_code (objf);
1333 }
03673fc7
PP
1334}
1335
4efc6507 1336void
0756c555 1337jit_event_handler (struct gdbarch *gdbarch)
4efc6507
DE
1338{
1339 struct jit_descriptor descriptor;
1340 struct jit_code_entry code_entry;
1341 CORE_ADDR entry_addr;
1342 struct objfile *objf;
1343
1344 /* Read the descriptor from remote memory. */
03bef283
TT
1345 if (!jit_read_descriptor (gdbarch, &descriptor, get_jit_inferior_data ()))
1346 return;
4efc6507
DE
1347 entry_addr = descriptor.relevant_entry;
1348
1777feb0 1349 /* Do the corresponding action. */
4efc6507
DE
1350 switch (descriptor.action_flag)
1351 {
1352 case JIT_NOACTION:
1353 break;
1354 case JIT_REGISTER:
0756c555
DE
1355 jit_read_code_entry (gdbarch, entry_addr, &code_entry);
1356 jit_register_code (gdbarch, entry_addr, &code_entry);
4efc6507
DE
1357 break;
1358 case JIT_UNREGISTER:
1359 objf = jit_find_objf_with_entry_addr (entry_addr);
1360 if (objf == NULL)
1777feb0
MS
1361 printf_unfiltered (_("Unable to find JITed code "
1362 "entry at address: %s\n"),
dfdbc9b4 1363 paddress (gdbarch, entry_addr));
4efc6507
DE
1364 else
1365 jit_unregister_code (objf);
1366
1367 break;
1368 default:
1369 error (_("Unknown action_flag value in JIT descriptor!"));
1370 break;
1371 }
1372}
1373
1825a88d
SD
1374/* Called to free the data allocated to the jit_inferior_data slot. */
1375
1376static void
1377free_objfile_data (struct objfile *objfile, void *data)
1378{
03bef283
TT
1379 struct jit_objfile_data *objf_data = data;
1380
1381 if (objf_data->register_code != NULL)
1382 {
1383 struct jit_inferior_data *inf_data = get_jit_inferior_data ();
1384
1385 if (inf_data->objfile == objfile)
1386 inf_data->objfile = NULL;
1387 }
1388
1825a88d
SD
1389 xfree (data);
1390}
1391
3623dc3a
SD
1392/* Initialize the jit_gdbarch_data slot with an instance of struct
1393 jit_gdbarch_data_type */
1394
1395static void *
1396jit_gdbarch_data_init (struct obstack *obstack)
1397{
1398 struct jit_gdbarch_data_type *data;
1399
1400 data = obstack_alloc (obstack, sizeof (struct jit_gdbarch_data_type));
1401 data->unwinder_registered = 0;
1402 return data;
1403}
1404
4efc6507
DE
1405/* Provide a prototype to silence -Wmissing-prototypes. */
1406
1407extern void _initialize_jit (void);
1408
1409void
1410_initialize_jit (void)
1411{
b8e0a31c
SD
1412 jit_reader_dir = relocate_gdb_directory (JIT_READER_DIR,
1413 JIT_READER_DIR_RELOCATABLE);
ccce17b0
YQ
1414 add_setshow_zuinteger_cmd ("jit", class_maintenance, &jit_debug,
1415 _("Set JIT debugging."),
1416 _("Show JIT debugging."),
1417 _("When non-zero, JIT debugging is enabled."),
1418 NULL,
1419 show_jit_debug,
1420 &setdebuglist, &showdebuglist);
a255712f 1421
4efc6507 1422 observer_attach_inferior_exit (jit_inferior_exit_hook);
1825a88d
SD
1423 jit_objfile_data =
1424 register_objfile_data_with_cleanup (NULL, free_objfile_data);
03673fc7 1425 jit_inferior_data =
8e260fc0 1426 register_inferior_data_with_cleanup (NULL, jit_inferior_data_cleanup);
3623dc3a 1427 jit_gdbarch_data = gdbarch_data_register_pre_init (jit_gdbarch_data_init);
784c47ee
SD
1428 if (is_dl_available ())
1429 {
1430 add_com ("jit-reader-load", no_class, jit_reader_load_command, _("\
1431Load FILE as debug info reader and unwinder for JIT compiled code.\n\
1432Usage: jit-reader-load FILE\n\
1433Try to load file FILE as a debug info reader (and unwinder) for\n\
1434JIT compiled code. The file is loaded from " JIT_READER_DIR ",\n\
1435relocated relative to the GDB executable if required."));
1436 add_com ("jit-reader-unload", no_class, jit_reader_unload_command, _("\
1437Unload the currently loaded JIT debug info reader.\n\
1438Usage: jit-reader-unload FILE\n\n\
1439Do \"help jit-reader-load\" for info on loading debug info readers."));
1440 }
4efc6507 1441}