1 /* Core dump and executable file functions below target vector, for GDB.
3 Copyright (C) 1986-2018 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
21 #include "arch-utils.h"
24 #ifdef HAVE_SYS_FILE_H
25 #include <sys/file.h> /* needed for F_OK and friends */
27 #include "frame.h" /* required by inferior.h */
35 #include "gdbthread.h"
40 #include "readline/readline.h"
42 #include "filenames.h"
43 #include "progspace.h"
46 #include "completer.h"
47 #include "filestuff.h"
53 static core_fns
*sniff_core_bfd (gdbarch
*core_gdbarch
,
56 /* The core file target. */
58 static const target_info core_target_info
= {
60 N_("Local core dump file"),
61 N_("Use a core file as a target. Specify the filename of the core file.")
64 class core_target final
: public target_ops
68 ~core_target () override
;
70 const target_info
&info () const override
71 { return core_target_info
; }
73 void close () override
;
74 void detach (inferior
*, int) override
;
75 void fetch_registers (struct regcache
*, int) override
;
77 enum target_xfer_status
xfer_partial (enum target_object object
,
80 const gdb_byte
*writebuf
,
81 ULONGEST offset
, ULONGEST len
,
82 ULONGEST
*xfered_len
) override
;
83 void files_info () override
;
85 bool thread_alive (ptid_t ptid
) override
;
86 const struct target_desc
*read_description () override
;
88 const char *pid_to_str (ptid_t
) override
;
90 const char *thread_name (struct thread_info
*) override
;
92 bool has_memory () override
;
93 bool has_stack () override
;
94 bool has_registers () override
;
95 bool info_proc (const char *, enum info_proc_what
) override
;
99 /* Getter, see variable definition. */
100 struct gdbarch
*core_gdbarch ()
102 return m_core_gdbarch
;
105 /* See definition. */
106 void get_core_register_section (struct regcache
*regcache
,
107 const struct regset
*regset
,
109 int section_min_size
,
111 const char *human_name
,
114 private: /* per-core data */
116 /* The core's section table. Note that these target sections are
117 *not* mapped in the current address spaces' set of target
118 sections --- those should come only from pure executable or
119 shared library bfds. The core bfd sections are an implementation
120 detail of the core target, just like ptrace is for unix child
122 target_section_table m_core_section_table
{};
124 /* The core_fns for a core file handler that is prepared to read the
125 core file currently open on core_bfd. */
126 core_fns
*m_core_vec
= NULL
;
128 /* FIXME: kettenis/20031023: Eventually this field should
130 struct gdbarch
*m_core_gdbarch
= NULL
;
133 core_target::core_target ()
135 to_stratum
= process_stratum
;
137 m_core_gdbarch
= gdbarch_from_bfd (core_bfd
);
139 /* Find a suitable core file handler to munch on core_bfd */
140 m_core_vec
= sniff_core_bfd (m_core_gdbarch
, core_bfd
);
142 /* Find the data section */
143 if (build_section_table (core_bfd
,
144 &m_core_section_table
.sections
,
145 &m_core_section_table
.sections_end
))
146 error (_("\"%s\": Can't find sections: %s"),
147 bfd_get_filename (core_bfd
), bfd_errmsg (bfd_get_error ()));
150 core_target::~core_target ()
152 xfree (m_core_section_table
.sections
);
155 /* List of all available core_fns. On gdb startup, each core file
156 register reader calls deprecated_add_core_fns() to register
157 information on each core format it is prepared to read. */
159 static struct core_fns
*core_file_fns
= NULL
;
161 static int gdb_check_format (bfd
*);
163 static void add_to_thread_list (bfd
*, asection
*, void *);
165 /* An arbitrary identifier for the core inferior. */
166 #define CORELOW_PID 1
168 /* Link a new core_fns into the global core_file_fns list. Called on
169 gdb startup by the _initialize routine in each core file register
170 reader, to register information about each format the reader is
171 prepared to handle. */
174 deprecated_add_core_fns (struct core_fns
*cf
)
176 cf
->next
= core_file_fns
;
180 /* The default function that core file handlers can use to examine a
181 core file BFD and decide whether or not to accept the job of
182 reading the core file. */
185 default_core_sniffer (struct core_fns
*our_fns
, bfd
*abfd
)
189 result
= (bfd_get_flavour (abfd
) == our_fns
-> core_flavour
);
193 /* Walk through the list of core functions to find a set that can
194 handle the core file open on ABFD. Returns pointer to set that is
197 static struct core_fns
*
198 sniff_core_bfd (struct gdbarch
*core_gdbarch
, bfd
*abfd
)
201 struct core_fns
*yummy
= NULL
;
204 /* Don't sniff if we have support for register sets in
206 if (core_gdbarch
&& gdbarch_iterate_over_regset_sections_p (core_gdbarch
))
209 for (cf
= core_file_fns
; cf
!= NULL
; cf
= cf
->next
)
211 if (cf
->core_sniffer (cf
, abfd
))
219 warning (_("\"%s\": ambiguous core format, %d handlers match"),
220 bfd_get_filename (abfd
), matches
);
222 else if (matches
== 0)
223 error (_("\"%s\": no core file handler recognizes format"),
224 bfd_get_filename (abfd
));
229 /* The default is to reject every core file format we see. Either
230 BFD has to recognize it, or we have to provide a function in the
231 core file handler that recognizes it. */
234 default_check_format (bfd
*abfd
)
239 /* Attempt to recognize core file formats that BFD rejects. */
242 gdb_check_format (bfd
*abfd
)
246 for (cf
= core_file_fns
; cf
!= NULL
; cf
= cf
->next
)
248 if (cf
->check_format (abfd
))
256 /* Close the core target. */
259 core_target::close ()
263 inferior_ptid
= null_ptid
; /* Avoid confusion from thread
265 exit_inferior_silent (current_inferior ());
267 /* Clear out solib state while the bfd is still open. See
268 comments in clear_solib in solib.c. */
271 current_program_space
->cbfd
.reset (nullptr);
274 /* Core targets are heap-allocated (see core_target_open), so here
275 we delete ourselves. */
279 /* Look for sections whose names start with `.reg/' so that we can
280 extract the list of threads in a core file. */
283 add_to_thread_list (bfd
*abfd
, asection
*asect
, void *reg_sect_arg
)
288 asection
*reg_sect
= (asection
*) reg_sect_arg
;
290 struct inferior
*inf
;
292 if (!startswith (bfd_section_name (abfd
, asect
), ".reg/"))
295 core_tid
= atoi (bfd_section_name (abfd
, asect
) + 5);
297 pid
= bfd_core_file_pid (core_bfd
);
306 inf
= current_inferior ();
309 inferior_appeared (inf
, pid
);
310 inf
->fake_pid_p
= fake_pid_p
;
313 ptid
= ptid_t (pid
, lwpid
, 0);
317 /* Warning, Will Robinson, looking at BFD private data! */
320 && asect
->filepos
== reg_sect
->filepos
) /* Did we find .reg? */
321 inferior_ptid
= ptid
; /* Yes, make it current. */
324 /* Issue a message saying we have no core to debug, if FROM_TTY. */
327 maybe_say_no_core_file_now (int from_tty
)
330 printf_filtered (_("No core file now.\n"));
333 /* Backward compatability with old way of specifying core files. */
336 core_file_command (const char *filename
, int from_tty
)
338 dont_repeat (); /* Either way, seems bogus. */
340 if (filename
== NULL
)
342 if (core_bfd
!= NULL
)
344 target_detach (current_inferior (), from_tty
);
345 gdb_assert (core_bfd
== NULL
);
348 maybe_say_no_core_file_now (from_tty
);
351 core_target_open (filename
, from_tty
);
357 core_target_open (const char *arg
, int from_tty
)
364 target_preopen (from_tty
);
368 error (_("No core file specified. (Use `detach' "
369 "to stop debugging a core file.)"));
371 error (_("No core file specified."));
374 gdb::unique_xmalloc_ptr
<char> filename (tilde_expand (arg
));
375 if (!IS_ABSOLUTE_PATH (filename
.get ()))
376 filename
.reset (concat (current_directory
, "/",
377 filename
.get (), (char *) NULL
));
379 flags
= O_BINARY
| O_LARGEFILE
;
384 scratch_chan
= gdb_open_cloexec (filename
.get (), flags
, 0);
385 if (scratch_chan
< 0)
386 perror_with_name (filename
.get ());
388 gdb_bfd_ref_ptr
temp_bfd (gdb_bfd_fopen (filename
.get (), gnutarget
,
389 write_files
? FOPEN_RUB
: FOPEN_RB
,
391 if (temp_bfd
== NULL
)
392 perror_with_name (filename
.get ());
394 if (!bfd_check_format (temp_bfd
.get (), bfd_core
)
395 && !gdb_check_format (temp_bfd
.get ()))
397 /* Do it after the err msg */
398 /* FIXME: should be checking for errors from bfd_close (for one
399 thing, on error it does not free all the storage associated
401 error (_("\"%s\" is not a core dump: %s"),
402 filename
.get (), bfd_errmsg (bfd_get_error ()));
405 current_program_space
->cbfd
= std::move (temp_bfd
);
407 core_target
*target
= new core_target ();
409 /* Own the target until it is successfully pushed. */
410 target_ops_up
target_holder (target
);
414 /* If we have no exec file, try to set the architecture from the
415 core file. We don't do this unconditionally since an exec file
416 typically contains more information that helps us determine the
417 architecture than a core file. */
419 set_gdbarch_from_file (core_bfd
);
421 push_target (target
);
422 target_holder
.release ();
424 /* Do this before acknowledging the inferior, so if
425 post_create_inferior throws (can happen easilly if you're loading
426 a core file with the wrong exec), we aren't left with threads
427 from the previous inferior. */
430 inferior_ptid
= null_ptid
;
432 /* Need to flush the register cache (and the frame cache) from a
433 previous debug session. If inferior_ptid ends up the same as the
434 last debug session --- e.g., b foo; run; gcore core1; step; gcore
435 core2; core core1; core core2 --- then there's potential for
436 get_current_regcache to return the cached regcache of the
437 previous session, and the frame cache being stale. */
438 registers_changed ();
440 /* Build up thread list from BFD sections, and possibly set the
441 current thread to the .reg/NN section matching the .reg
443 bfd_map_over_sections (core_bfd
, add_to_thread_list
,
444 bfd_get_section_by_name (core_bfd
, ".reg"));
446 if (inferior_ptid
== null_ptid
)
448 /* Either we found no .reg/NN section, and hence we have a
449 non-threaded core (single-threaded, from gdb's perspective),
450 or for some reason add_to_thread_list couldn't determine
451 which was the "main" thread. The latter case shouldn't
452 usually happen, but we're dealing with input here, which can
453 always be broken in different ways. */
454 thread_info
*thread
= first_thread_of_inferior (current_inferior ());
458 inferior_appeared (current_inferior (), CORELOW_PID
);
459 inferior_ptid
= ptid_t (CORELOW_PID
);
460 add_thread_silent (inferior_ptid
);
463 switch_to_thread (thread
);
466 post_create_inferior (target
, from_tty
);
468 /* Now go through the target stack looking for threads since there
469 may be a thread_stratum target loaded on top of target core by
470 now. The layer above should claim threads found in the BFD
474 target_update_thread_list ();
477 CATCH (except
, RETURN_MASK_ERROR
)
479 exception_print (gdb_stderr
, except
);
483 p
= bfd_core_file_failing_command (core_bfd
);
485 printf_filtered (_("Core was generated by `%s'.\n"), p
);
487 /* Clearing any previous state of convenience variables. */
488 clear_exit_convenience_vars ();
490 siggy
= bfd_core_file_failing_signal (core_bfd
);
493 gdbarch
*core_gdbarch
= target
->core_gdbarch ();
495 /* If we don't have a CORE_GDBARCH to work with, assume a native
496 core (map gdb_signal from host signals). If we do have
497 CORE_GDBARCH to work with, but no gdb_signal_from_target
498 implementation for that gdbarch, as a fallback measure,
499 assume the host signal mapping. It'll be correct for native
500 cores, but most likely incorrect for cross-cores. */
501 enum gdb_signal sig
= (core_gdbarch
!= NULL
502 && gdbarch_gdb_signal_from_target_p (core_gdbarch
)
503 ? gdbarch_gdb_signal_from_target (core_gdbarch
,
505 : gdb_signal_from_host (siggy
));
507 printf_filtered (_("Program terminated with signal %s, %s.\n"),
508 gdb_signal_to_name (sig
), gdb_signal_to_string (sig
));
510 /* Set the value of the internal variable $_exitsignal,
511 which holds the signal uncaught by the inferior. */
512 set_internalvar_integer (lookup_internalvar ("_exitsignal"),
516 /* Fetch all registers from core file. */
517 target_fetch_registers (get_current_regcache (), -1);
519 /* Now, set up the frame cache, and print the top of stack. */
520 reinit_frame_cache ();
521 print_stack_frame (get_selected_frame (NULL
), 1, SRC_AND_LOC
, 1);
523 /* Current thread should be NUM 1 but the user does not know that.
524 If a program is single threaded gdb in general does not mention
525 anything about threads. That is why the test is >= 2. */
526 if (thread_count () >= 2)
530 thread_command (NULL
, from_tty
);
532 CATCH (except
, RETURN_MASK_ERROR
)
534 exception_print (gdb_stderr
, except
);
541 core_target::detach (inferior
*inf
, int from_tty
)
543 /* Note that 'this' is dangling after this call. unpush_target
544 closes the target, and our close implementation deletes
546 unpush_target (this);
548 reinit_frame_cache ();
549 maybe_say_no_core_file_now (from_tty
);
552 /* Try to retrieve registers from a section in core_bfd, and supply
553 them to m_core_vec->core_read_registers, as the register set
556 If ptid's lwp member is zero, do the single-threaded
557 thing: look for a section named NAME. If ptid's lwp
558 member is non-zero, do the multi-threaded thing: look for a section
559 named "NAME/LWP", where LWP is the shortest ASCII decimal
560 representation of ptid's lwp member.
562 HUMAN_NAME is a human-readable name for the kind of registers the
563 NAME section contains, for use in error messages.
565 If REQUIRED is true, print an error if the core file doesn't have a
566 section by the appropriate name. Otherwise, just do nothing. */
569 core_target::get_core_register_section (struct regcache
*regcache
,
570 const struct regset
*regset
,
572 int section_min_size
,
574 const char *human_name
,
577 struct bfd_section
*section
;
580 bool variable_size_section
= (regset
!= NULL
581 && regset
->flags
& REGSET_VARIABLE_SIZE
);
583 thread_section_name
section_name (name
, regcache
->ptid ());
585 section
= bfd_get_section_by_name (core_bfd
, section_name
.c_str ());
589 warning (_("Couldn't find %s registers in core file."),
594 size
= bfd_section_size (core_bfd
, section
);
595 if (size
< section_min_size
)
597 warning (_("Section `%s' in core file too small."),
598 section_name
.c_str ());
601 if (size
!= section_min_size
&& !variable_size_section
)
603 warning (_("Unexpected size of section `%s' in core file."),
604 section_name
.c_str ());
607 contents
= (char *) alloca (size
);
608 if (! bfd_get_section_contents (core_bfd
, section
, contents
,
611 warning (_("Couldn't read %s registers from `%s' section in core file."),
612 human_name
, section_name
.c_str ());
618 regset
->supply_regset (regset
, regcache
, -1, contents
, size
);
622 gdb_assert (m_core_vec
!= nullptr);
623 m_core_vec
->core_read_registers (regcache
, contents
, size
, which
,
625 bfd_section_vma (core_bfd
, section
)));
628 /* Data passed to gdbarch_iterate_over_regset_sections's callback. */
629 struct get_core_registers_cb_data
632 struct regcache
*regcache
;
635 /* Callback for get_core_registers that handles a single core file
636 register note section. */
639 get_core_registers_cb (const char *sect_name
, int supply_size
, int collect_size
,
640 const struct regset
*regset
,
641 const char *human_name
, void *cb_data
)
643 auto *data
= (get_core_registers_cb_data
*) cb_data
;
644 bool required
= false;
645 bool variable_size_section
= (regset
!= NULL
646 && regset
->flags
& REGSET_VARIABLE_SIZE
);
648 if (!variable_size_section
)
649 gdb_assert (supply_size
== collect_size
);
651 if (strcmp (sect_name
, ".reg") == 0)
654 if (human_name
== NULL
)
655 human_name
= "general-purpose";
657 else if (strcmp (sect_name
, ".reg2") == 0)
659 if (human_name
== NULL
)
660 human_name
= "floating-point";
663 /* The 'which' parameter is only used when no regset is provided.
664 Thus we just set it to -1. */
665 data
->target
->get_core_register_section (data
->regcache
, regset
, sect_name
,
666 supply_size
, -1, human_name
,
670 /* Get the registers out of a core file. This is the machine-
671 independent part. Fetch_core_registers is the machine-dependent
672 part, typically implemented in the xm-file for each
675 /* We just get all the registers, so we don't use regno. */
678 core_target::fetch_registers (struct regcache
*regcache
, int regno
)
681 struct gdbarch
*gdbarch
;
683 if (!(m_core_gdbarch
!= nullptr
684 && gdbarch_iterate_over_regset_sections_p (m_core_gdbarch
))
685 && (m_core_vec
== NULL
|| m_core_vec
->core_read_registers
== NULL
))
687 fprintf_filtered (gdb_stderr
,
688 "Can't fetch registers from this type of core file\n");
692 gdbarch
= regcache
->arch ();
693 if (gdbarch_iterate_over_regset_sections_p (gdbarch
))
695 get_core_registers_cb_data data
= { this, regcache
};
696 gdbarch_iterate_over_regset_sections (gdbarch
,
697 get_core_registers_cb
,
698 (void *) &data
, NULL
);
702 get_core_register_section (regcache
, NULL
,
703 ".reg", 0, 0, "general-purpose", 1);
704 get_core_register_section (regcache
, NULL
,
705 ".reg2", 0, 2, "floating-point", 0);
708 /* Mark all registers not found in the core as unavailable. */
709 for (i
= 0; i
< gdbarch_num_regs (regcache
->arch ()); i
++)
710 if (regcache
->get_register_status (i
) == REG_UNKNOWN
)
711 regcache
->raw_supply (i
, NULL
);
715 core_target::files_info ()
717 print_section_info (&m_core_section_table
, core_bfd
);
730 add_to_spuid_list (bfd
*abfd
, asection
*asect
, void *list_p
)
732 struct spuid_list
*list
= (struct spuid_list
*) list_p
;
733 enum bfd_endian byte_order
734 = bfd_big_endian (abfd
) ? BFD_ENDIAN_BIG
: BFD_ENDIAN_LITTLE
;
737 sscanf (bfd_section_name (abfd
, asect
), "SPU/%d/regs%n", &fd
, &pos
);
741 if (list
->pos
>= list
->offset
&& list
->pos
+ 4 <= list
->offset
+ list
->len
)
743 store_unsigned_integer (list
->buf
+ list
->pos
- list
->offset
,
750 enum target_xfer_status
751 core_target::xfer_partial (enum target_object object
, const char *annex
,
752 gdb_byte
*readbuf
, const gdb_byte
*writebuf
,
753 ULONGEST offset
, ULONGEST len
, ULONGEST
*xfered_len
)
757 case TARGET_OBJECT_MEMORY
:
758 return (section_table_xfer_memory_partial
760 offset
, len
, xfered_len
,
761 m_core_section_table
.sections
,
762 m_core_section_table
.sections_end
,
765 case TARGET_OBJECT_AUXV
:
768 /* When the aux vector is stored in core file, BFD
769 represents this with a fake section called ".auxv". */
771 struct bfd_section
*section
;
774 section
= bfd_get_section_by_name (core_bfd
, ".auxv");
776 return TARGET_XFER_E_IO
;
778 size
= bfd_section_size (core_bfd
, section
);
780 return TARGET_XFER_EOF
;
786 return TARGET_XFER_EOF
;
787 if (!bfd_get_section_contents (core_bfd
, section
, readbuf
,
788 (file_ptr
) offset
, size
))
790 warning (_("Couldn't read NT_AUXV note in core file."));
791 return TARGET_XFER_E_IO
;
794 *xfered_len
= (ULONGEST
) size
;
795 return TARGET_XFER_OK
;
797 return TARGET_XFER_E_IO
;
799 case TARGET_OBJECT_WCOOKIE
:
802 /* When the StackGhost cookie is stored in core file, BFD
803 represents this with a fake section called
806 struct bfd_section
*section
;
809 section
= bfd_get_section_by_name (core_bfd
, ".wcookie");
811 return TARGET_XFER_E_IO
;
813 size
= bfd_section_size (core_bfd
, section
);
815 return TARGET_XFER_EOF
;
821 return TARGET_XFER_EOF
;
822 if (!bfd_get_section_contents (core_bfd
, section
, readbuf
,
823 (file_ptr
) offset
, size
))
825 warning (_("Couldn't read StackGhost cookie in core file."));
826 return TARGET_XFER_E_IO
;
829 *xfered_len
= (ULONGEST
) size
;
830 return TARGET_XFER_OK
;
833 return TARGET_XFER_E_IO
;
835 case TARGET_OBJECT_LIBRARIES
:
836 if (m_core_gdbarch
!= nullptr
837 && gdbarch_core_xfer_shared_libraries_p (m_core_gdbarch
))
840 return TARGET_XFER_E_IO
;
843 *xfered_len
= gdbarch_core_xfer_shared_libraries (m_core_gdbarch
,
847 if (*xfered_len
== 0)
848 return TARGET_XFER_EOF
;
850 return TARGET_XFER_OK
;
855 case TARGET_OBJECT_LIBRARIES_AIX
:
856 if (m_core_gdbarch
!= nullptr
857 && gdbarch_core_xfer_shared_libraries_aix_p (m_core_gdbarch
))
860 return TARGET_XFER_E_IO
;
864 = gdbarch_core_xfer_shared_libraries_aix (m_core_gdbarch
,
868 if (*xfered_len
== 0)
869 return TARGET_XFER_EOF
;
871 return TARGET_XFER_OK
;
876 case TARGET_OBJECT_SPU
:
877 if (readbuf
&& annex
)
879 /* When the SPU contexts are stored in a core file, BFD
880 represents this with a fake section called
883 struct bfd_section
*section
;
885 char sectionstr
[100];
887 xsnprintf (sectionstr
, sizeof sectionstr
, "SPU/%s", annex
);
889 section
= bfd_get_section_by_name (core_bfd
, sectionstr
);
891 return TARGET_XFER_E_IO
;
893 size
= bfd_section_size (core_bfd
, section
);
895 return TARGET_XFER_EOF
;
901 return TARGET_XFER_EOF
;
902 if (!bfd_get_section_contents (core_bfd
, section
, readbuf
,
903 (file_ptr
) offset
, size
))
905 warning (_("Couldn't read SPU section in core file."));
906 return TARGET_XFER_E_IO
;
909 *xfered_len
= (ULONGEST
) size
;
910 return TARGET_XFER_OK
;
914 /* NULL annex requests list of all present spuids. */
915 struct spuid_list list
;
918 list
.offset
= offset
;
922 bfd_map_over_sections (core_bfd
, add_to_spuid_list
, &list
);
924 if (list
.written
== 0)
925 return TARGET_XFER_EOF
;
928 *xfered_len
= (ULONGEST
) list
.written
;
929 return TARGET_XFER_OK
;
932 return TARGET_XFER_E_IO
;
934 case TARGET_OBJECT_SIGNAL_INFO
:
937 if (m_core_gdbarch
!= nullptr
938 && gdbarch_core_xfer_siginfo_p (m_core_gdbarch
))
940 LONGEST l
= gdbarch_core_xfer_siginfo (m_core_gdbarch
, readbuf
,
947 return TARGET_XFER_EOF
;
949 return TARGET_XFER_OK
;
953 return TARGET_XFER_E_IO
;
956 return this->beneath ()->xfer_partial (object
, annex
, readbuf
,
957 writebuf
, offset
, len
,
964 /* Okay, let's be honest: threads gleaned from a core file aren't
965 exactly lively, are they? On the other hand, if we don't claim
966 that each & every one is alive, then we don't get any of them
967 to appear in an "info thread" command, which is quite a useful
971 core_target::thread_alive (ptid_t ptid
)
976 /* Ask the current architecture what it knows about this core file.
977 That will be used, in turn, to pick a better architecture. This
978 wrapper could be avoided if targets got a chance to specialize
981 const struct target_desc
*
982 core_target::read_description ()
984 if (m_core_gdbarch
&& gdbarch_core_read_description_p (m_core_gdbarch
))
986 const struct target_desc
*result
;
988 result
= gdbarch_core_read_description (m_core_gdbarch
, this, core_bfd
);
993 return this->beneath ()->read_description ();
997 core_target::pid_to_str (ptid_t ptid
)
1000 struct inferior
*inf
;
1003 /* The preferred way is to have a gdbarch/OS specific
1005 if (m_core_gdbarch
!= nullptr
1006 && gdbarch_core_pid_to_str_p (m_core_gdbarch
))
1007 return gdbarch_core_pid_to_str (m_core_gdbarch
, ptid
);
1009 /* Otherwise, if we don't have one, we'll just fallback to
1010 "process", with normal_pid_to_str. */
1012 /* Try the LWPID field first. */
1015 return normal_pid_to_str (ptid_t (pid
));
1017 /* Otherwise, this isn't a "threaded" core -- use the PID field, but
1018 only if it isn't a fake PID. */
1019 inf
= find_inferior_ptid (ptid
);
1020 if (inf
!= NULL
&& !inf
->fake_pid_p
)
1021 return normal_pid_to_str (ptid
);
1023 /* No luck. We simply don't have a valid PID to print. */
1024 xsnprintf (buf
, sizeof buf
, "<main task>");
1029 core_target::thread_name (struct thread_info
*thr
)
1031 if (m_core_gdbarch
!= nullptr
1032 && gdbarch_core_thread_name_p (m_core_gdbarch
))
1033 return gdbarch_core_thread_name (m_core_gdbarch
, thr
);
1038 core_target::has_memory ()
1040 return (core_bfd
!= NULL
);
1044 core_target::has_stack ()
1046 return (core_bfd
!= NULL
);
1050 core_target::has_registers ()
1052 return (core_bfd
!= NULL
);
1055 /* Implement the to_info_proc method. */
1058 core_target::info_proc (const char *args
, enum info_proc_what request
)
1060 struct gdbarch
*gdbarch
= get_current_arch ();
1062 /* Since this is the core file target, call the 'core_info_proc'
1063 method on gdbarch, not 'info_proc'. */
1064 if (gdbarch_core_info_proc_p (gdbarch
))
1065 gdbarch_core_info_proc (gdbarch
, args
, request
);
1071 _initialize_corelow (void)
1073 add_target (core_target_info
, core_target_open
, filename_completer
);