1 /* Low level interface for debugging AIX 4.3+ pthreads.
3 Copyright (C) 1999-2018 Free Software Foundation, Inc.
4 Written by Nick Duffek <nsd@redhat.com>.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 /* This module uses the libpthdebug.a library provided by AIX 4.3+ for
23 debugging pthread applications.
25 Some name prefix conventions:
26 pthdb_ provided by libpthdebug.a
27 pdc_ callbacks that this module provides to libpthdebug.a
28 pd_ variables or functions interfacing with libpthdebug.a
30 libpthdebug peculiarities:
32 - pthdb_ptid_pthread() is prototyped in <sys/pthdebug.h>, but
33 it's not documented, and after several calls it stops working
34 and causes other libpthdebug functions to fail.
36 - pthdb_tid_pthread() doesn't always work after
37 pthdb_session_update(), but it does work after cycling through
38 all threads using pthdb_pthread().
43 #include "gdbthread.h"
49 #include "observable.h"
53 #include <sys/types.h>
54 #include <sys/ptrace.h>
57 #include <sys/pthdebug.h>
59 #if !HAVE_DECL_GETTHRDS
60 extern int getthrds (pid_t, struct thrdsinfo64 *, int, tid_t *, int);
63 /* Whether to emit debugging output. */
64 static int debug_aix_thread;
66 /* In AIX 5.1, functions use pthdb_tid_t instead of tid_t. */
67 #ifndef PTHDB_VERSION_3
68 #define pthdb_tid_t tid_t
71 /* Return whether to treat PID as a debuggable thread id. */
73 #define PD_TID(ptid) (pd_active && ptid_get_tid (ptid) != 0)
75 /* pthdb_user_t value that we pass to pthdb functions. 0 causes
76 PTHDB_BAD_USER errors, so use 1. */
80 /* Success and failure values returned by pthdb callbacks. */
82 #define PDC_SUCCESS PTHDB_SUCCESS
83 #define PDC_FAILURE PTHDB_CALLBACK
85 /* Private data attached to each element in GDB's thread list. */
87 struct aix_thread_info : public private_thread_info
89 pthdb_pthread_t pdtid; /* thread's libpthdebug id */
90 pthdb_tid_t tid; /* kernel thread id */
93 /* Return the aix_thread_info attached to THREAD. */
95 static aix_thread_info *
96 get_aix_thread_info (thread_info *thread)
98 return static_cast<aix_thread_info *> (thread->priv.get ());
101 /* Information about a thread of which libpthdebug is aware. */
104 pthdb_pthread_t pdtid;
109 /* This module's target-specific operations, active while pd_able is true. */
111 static const target_info aix_thread_target_info = {
113 N_("AIX pthread support"),
114 N_("AIX pthread support")
117 class aix_thread_target final : public target_ops
121 { to_stratum = thread_stratum; }
123 const target_info &info () const override
124 { return aix_thread_target_info; }
126 void detach (inferior *, int) override;
127 void resume (ptid_t, int, enum gdb_signal) override;
128 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
130 void fetch_registers (struct regcache *, int) override;
131 void store_registers (struct regcache *, int) override;
133 enum target_xfer_status xfer_partial (enum target_object object,
136 const gdb_byte *writebuf,
137 ULONGEST offset, ULONGEST len,
138 ULONGEST *xfered_len) override;
140 void mourn_inferior () override;
142 bool thread_alive (ptid_t ptid) override;
144 const char *pid_to_str (ptid_t) override;
146 const char *extra_thread_info (struct thread_info *) override;
148 ptid_t get_ada_task_ptid (long lwp, long thread) override;
151 static aix_thread_target aix_thread_ops;
153 /* Address of the function that libpthread will call when libpthdebug
154 is ready to be initialized. */
156 static CORE_ADDR pd_brk_addr;
158 /* Whether the current application is debuggable by pthdb. */
160 static int pd_able = 0;
162 /* Whether a threaded application is being debugged. */
164 static int pd_active = 0;
166 /* Whether the current architecture is 64-bit.
167 Only valid when pd_able is true. */
171 /* Forward declarations for pthdb callbacks. */
173 static int pdc_symbol_addrs (pthdb_user_t, pthdb_symbol_t *, int);
174 static int pdc_read_data (pthdb_user_t, void *, pthdb_addr_t, size_t);
175 static int pdc_write_data (pthdb_user_t, void *, pthdb_addr_t, size_t);
176 static int pdc_read_regs (pthdb_user_t user, pthdb_tid_t tid,
177 unsigned long long flags,
178 pthdb_context_t *context);
179 static int pdc_write_regs (pthdb_user_t user, pthdb_tid_t tid,
180 unsigned long long flags,
181 pthdb_context_t *context);
182 static int pdc_alloc (pthdb_user_t, size_t, void **);
183 static int pdc_realloc (pthdb_user_t, void *, size_t, void **);
184 static int pdc_dealloc (pthdb_user_t, void *);
186 /* pthdb callbacks. */
188 static pthdb_callbacks_t pd_callbacks = {
200 /* Current pthdb session. */
202 static pthdb_session_t pd_session;
204 /* Return a printable representation of pthdebug function return
208 pd_status2str (int status)
212 case PTHDB_SUCCESS: return "SUCCESS";
213 case PTHDB_NOSYS: return "NOSYS";
214 case PTHDB_NOTSUP: return "NOTSUP";
215 case PTHDB_BAD_VERSION: return "BAD_VERSION";
216 case PTHDB_BAD_USER: return "BAD_USER";
217 case PTHDB_BAD_SESSION: return "BAD_SESSION";
218 case PTHDB_BAD_MODE: return "BAD_MODE";
219 case PTHDB_BAD_FLAGS: return "BAD_FLAGS";
220 case PTHDB_BAD_CALLBACK: return "BAD_CALLBACK";
221 case PTHDB_BAD_POINTER: return "BAD_POINTER";
222 case PTHDB_BAD_CMD: return "BAD_CMD";
223 case PTHDB_BAD_PTHREAD: return "BAD_PTHREAD";
224 case PTHDB_BAD_ATTR: return "BAD_ATTR";
225 case PTHDB_BAD_MUTEX: return "BAD_MUTEX";
226 case PTHDB_BAD_MUTEXATTR: return "BAD_MUTEXATTR";
227 case PTHDB_BAD_COND: return "BAD_COND";
228 case PTHDB_BAD_CONDATTR: return "BAD_CONDATTR";
229 case PTHDB_BAD_RWLOCK: return "BAD_RWLOCK";
230 case PTHDB_BAD_RWLOCKATTR: return "BAD_RWLOCKATTR";
231 case PTHDB_BAD_KEY: return "BAD_KEY";
232 case PTHDB_BAD_PTID: return "BAD_PTID";
233 case PTHDB_BAD_TID: return "BAD_TID";
234 case PTHDB_CALLBACK: return "CALLBACK";
235 case PTHDB_CONTEXT: return "CONTEXT";
236 case PTHDB_HELD: return "HELD";
237 case PTHDB_NOT_HELD: return "NOT_HELD";
238 case PTHDB_MEMORY: return "MEMORY";
239 case PTHDB_NOT_PTHREADED: return "NOT_PTHREADED";
240 case PTHDB_SYMBOL: return "SYMBOL";
241 case PTHDB_NOT_AVAIL: return "NOT_AVAIL";
242 case PTHDB_INTERNAL: return "INTERNAL";
243 default: return "UNKNOWN";
247 /* A call to ptrace(REQ, ID, ...) just returned RET. Check for
248 exceptional conditions and either return nonlocally or else return
249 1 for success and 0 for failure. */
252 ptrace_check (int req, int id, int ret)
254 if (ret == 0 && !errno)
257 /* According to ptrace(2), ptrace may fail with EPERM if "the
258 Identifier parameter corresponds to a kernel thread which is
259 stopped in kernel mode and whose computational state cannot be
260 read or written." This happens quite often with register reads. */
267 if (ret == -1 && errno == EPERM)
269 if (debug_aix_thread)
270 fprintf_unfiltered (gdb_stdlog,
271 "ptrace (%d, %d) = %d (errno = %d)\n",
272 req, id, ret, errno);
273 return ret == -1 ? 0 : 1;
277 error (_("aix-thread: ptrace (%d, %d) returned %d (errno = %d %s)"),
278 req, id, ret, errno, safe_strerror (errno));
279 return 0; /* Not reached. */
282 /* Call ptracex (REQ, ID, ADDR, DATA, BUF) or
283 ptrace64 (REQ, ID, ADDR, DATA, BUF) if HAVE_PTRACE64.
287 # define ptracex(request, pid, addr, data, buf) \
288 ptrace64 (request, pid, addr, data, buf)
292 ptrace64aix (int req, int id, long long addr, int data, int *buf)
295 return ptrace_check (req, id, ptracex (req, id, addr, data, buf));
298 /* Call ptrace (REQ, ID, ADDR, DATA, BUF) or
299 ptrace64 (REQ, ID, ADDR, DATA, BUF) if HAVE_PTRACE64.
303 # define ptrace(request, pid, addr, data, buf) \
304 ptrace64 (request, pid, addr, data, buf)
305 # define addr_ptr long long
307 # define addr_ptr int *
311 ptrace32 (int req, int id, addr_ptr addr, int data, int *buf)
314 return ptrace_check (req, id,
315 ptrace (req, id, addr, data, buf));
318 /* If *PIDP is a composite process/thread id, convert it to a
322 pid_to_prc (ptid_t *ptidp)
328 *ptidp = pid_to_ptid (ptid_get_pid (ptid));
331 /* pthdb callback: for <i> from 0 to COUNT, set SYMBOLS[<i>].addr to
332 the address of SYMBOLS[<i>].name. */
335 pdc_symbol_addrs (pthdb_user_t user, pthdb_symbol_t *symbols, int count)
337 struct bound_minimal_symbol ms;
341 if (debug_aix_thread)
342 fprintf_unfiltered (gdb_stdlog,
343 "pdc_symbol_addrs (user = %ld, symbols = 0x%lx, count = %d)\n",
344 user, (long) symbols, count);
346 for (i = 0; i < count; i++)
348 name = symbols[i].name;
349 if (debug_aix_thread)
350 fprintf_unfiltered (gdb_stdlog,
351 " symbols[%d].name = \"%s\"\n", i, name);
357 ms = lookup_minimal_symbol (name, NULL, NULL);
358 if (ms.minsym == NULL)
360 if (debug_aix_thread)
361 fprintf_unfiltered (gdb_stdlog, " returning PDC_FAILURE\n");
364 symbols[i].addr = BMSYMBOL_VALUE_ADDRESS (ms);
366 if (debug_aix_thread)
367 fprintf_unfiltered (gdb_stdlog, " symbols[%d].addr = %s\n",
368 i, hex_string (symbols[i].addr));
370 if (debug_aix_thread)
371 fprintf_unfiltered (gdb_stdlog, " returning PDC_SUCCESS\n");
375 /* Read registers call back function should be able to read the
376 context information of a debuggee kernel thread from an active
377 process or from a core file. The information should be formatted
378 in context64 form for both 32-bit and 64-bit process.
379 If successful return 0, else non-zero is returned. */
382 pdc_read_regs (pthdb_user_t user,
384 unsigned long long flags,
385 pthdb_context_t *context)
387 /* This function doesn't appear to be used, so we could probably
388 just return 0 here. HOWEVER, if it is not defined, the OS will
389 complain and several thread debug functions will fail. In case
390 this is needed, I have implemented what I think it should do,
391 however this code is untested. */
393 uint64_t gprs64[ppc_num_gprs];
394 uint32_t gprs32[ppc_num_gprs];
395 double fprs[ppc_num_fprs];
396 struct ptxsprs sprs64;
397 struct ptsprs sprs32;
399 if (debug_aix_thread)
400 fprintf_unfiltered (gdb_stdlog, "pdc_read_regs tid=%d flags=%s\n",
401 (int) tid, hex_string (flags));
403 /* General-purpose registers. */
404 if (flags & PTHDB_FLAG_GPRS)
408 if (!ptrace64aix (PTT_READ_GPRS, tid,
409 (unsigned long) gprs64, 0, NULL))
410 memset (gprs64, 0, sizeof (gprs64));
411 memcpy (context->gpr, gprs64, sizeof(gprs64));
415 if (!ptrace32 (PTT_READ_GPRS, tid, (uintptr_t) gprs32, 0, NULL))
416 memset (gprs32, 0, sizeof (gprs32));
417 memcpy (context->gpr, gprs32, sizeof(gprs32));
421 /* Floating-point registers. */
422 if (flags & PTHDB_FLAG_FPRS)
424 if (!ptrace32 (PTT_READ_FPRS, tid, (uintptr_t) fprs, 0, NULL))
425 memset (fprs, 0, sizeof (fprs));
426 memcpy (context->fpr, fprs, sizeof(fprs));
429 /* Special-purpose registers. */
430 if (flags & PTHDB_FLAG_SPRS)
434 if (!ptrace64aix (PTT_READ_SPRS, tid,
435 (unsigned long) &sprs64, 0, NULL))
436 memset (&sprs64, 0, sizeof (sprs64));
437 memcpy (&context->msr, &sprs64, sizeof(sprs64));
441 if (!ptrace32 (PTT_READ_SPRS, tid, (uintptr_t) &sprs32, 0, NULL))
442 memset (&sprs32, 0, sizeof (sprs32));
443 memcpy (&context->msr, &sprs32, sizeof(sprs32));
449 /* Write register function should be able to write requested context
450 information to specified debuggee's kernel thread id.
451 If successful return 0, else non-zero is returned. */
454 pdc_write_regs (pthdb_user_t user,
456 unsigned long long flags,
457 pthdb_context_t *context)
459 /* This function doesn't appear to be used, so we could probably
460 just return 0 here. HOWEVER, if it is not defined, the OS will
461 complain and several thread debug functions will fail. In case
462 this is needed, I have implemented what I think it should do,
463 however this code is untested. */
465 if (debug_aix_thread)
466 fprintf_unfiltered (gdb_stdlog, "pdc_write_regs tid=%d flags=%s\n",
467 (int) tid, hex_string (flags));
469 /* General-purpose registers. */
470 if (flags & PTHDB_FLAG_GPRS)
473 ptrace64aix (PTT_WRITE_GPRS, tid,
474 (unsigned long) context->gpr, 0, NULL);
476 ptrace32 (PTT_WRITE_GPRS, tid, (uintptr_t) context->gpr, 0, NULL);
479 /* Floating-point registers. */
480 if (flags & PTHDB_FLAG_FPRS)
482 ptrace32 (PTT_WRITE_FPRS, tid, (uintptr_t) context->fpr, 0, NULL);
485 /* Special-purpose registers. */
486 if (flags & PTHDB_FLAG_SPRS)
490 ptrace64aix (PTT_WRITE_SPRS, tid,
491 (unsigned long) &context->msr, 0, NULL);
495 ptrace32 (PTT_WRITE_SPRS, tid, (uintptr_t) &context->msr, 0, NULL);
501 /* pthdb callback: read LEN bytes from process ADDR into BUF. */
504 pdc_read_data (pthdb_user_t user, void *buf,
505 pthdb_addr_t addr, size_t len)
509 if (debug_aix_thread)
510 fprintf_unfiltered (gdb_stdlog,
511 "pdc_read_data (user = %ld, buf = 0x%lx, addr = %s, len = %ld)\n",
512 user, (long) buf, hex_string (addr), len);
514 status = target_read_memory (addr, (gdb_byte *) buf, len);
515 ret = status == 0 ? PDC_SUCCESS : PDC_FAILURE;
517 if (debug_aix_thread)
518 fprintf_unfiltered (gdb_stdlog, " status=%d, returning %s\n",
519 status, pd_status2str (ret));
523 /* pthdb callback: write LEN bytes from BUF to process ADDR. */
526 pdc_write_data (pthdb_user_t user, void *buf,
527 pthdb_addr_t addr, size_t len)
531 if (debug_aix_thread)
532 fprintf_unfiltered (gdb_stdlog,
533 "pdc_write_data (user = %ld, buf = 0x%lx, addr = %s, len = %ld)\n",
534 user, (long) buf, hex_string (addr), len);
536 status = target_write_memory (addr, (gdb_byte *) buf, len);
537 ret = status == 0 ? PDC_SUCCESS : PDC_FAILURE;
539 if (debug_aix_thread)
540 fprintf_unfiltered (gdb_stdlog, " status=%d, returning %s\n", status,
541 pd_status2str (ret));
545 /* pthdb callback: allocate a LEN-byte buffer and store a pointer to it
549 pdc_alloc (pthdb_user_t user, size_t len, void **bufp)
551 if (debug_aix_thread)
552 fprintf_unfiltered (gdb_stdlog,
553 "pdc_alloc (user = %ld, len = %ld, bufp = 0x%lx)\n",
554 user, len, (long) bufp);
555 *bufp = xmalloc (len);
556 if (debug_aix_thread)
557 fprintf_unfiltered (gdb_stdlog,
558 " malloc returned 0x%lx\n", (long) *bufp);
560 /* Note: xmalloc() can't return 0; therefore PDC_FAILURE will never
563 return *bufp ? PDC_SUCCESS : PDC_FAILURE;
566 /* pthdb callback: reallocate BUF, which was allocated by the alloc or
567 realloc callback, so that it contains LEN bytes, and store a
568 pointer to the result in BUFP. */
571 pdc_realloc (pthdb_user_t user, void *buf, size_t len, void **bufp)
573 if (debug_aix_thread)
574 fprintf_unfiltered (gdb_stdlog,
575 "pdc_realloc (user = %ld, buf = 0x%lx, len = %ld, bufp = 0x%lx)\n",
576 user, (long) buf, len, (long) bufp);
577 *bufp = xrealloc (buf, len);
578 if (debug_aix_thread)
579 fprintf_unfiltered (gdb_stdlog,
580 " realloc returned 0x%lx\n", (long) *bufp);
581 return *bufp ? PDC_SUCCESS : PDC_FAILURE;
584 /* pthdb callback: free BUF, which was allocated by the alloc or
588 pdc_dealloc (pthdb_user_t user, void *buf)
590 if (debug_aix_thread)
591 fprintf_unfiltered (gdb_stdlog,
592 "pdc_free (user = %ld, buf = 0x%lx)\n", user,
598 /* Return a printable representation of pthread STATE. */
601 state2str (pthdb_state_t state)
606 /* i18n: Like "Thread-Id %d, [state] idle" */
607 return _("idle"); /* being created */
609 /* i18n: Like "Thread-Id %d, [state] running" */
610 return _("running"); /* running */
612 /* i18n: Like "Thread-Id %d, [state] sleeping" */
613 return _("sleeping"); /* awaiting an event */
615 /* i18n: Like "Thread-Id %d, [state] ready" */
616 return _("ready"); /* runnable */
618 /* i18n: Like "Thread-Id %d, [state] finished" */
619 return _("finished"); /* awaiting a join/detach */
621 /* i18n: Like "Thread-Id %d, [state] unknown" */
626 /* qsort() comparison function for sorting pd_thread structs by pthid. */
629 pcmp (const void *p1v, const void *p2v)
631 struct pd_thread *p1 = (struct pd_thread *) p1v;
632 struct pd_thread *p2 = (struct pd_thread *) p2v;
633 return p1->pthid < p2->pthid ? -1 : p1->pthid > p2->pthid;
636 /* iterate_over_threads() callback for counting GDB threads.
638 Do not count the main thread (whose tid is zero). This matches
639 the list of threads provided by the pthreaddebug library, which
640 does not include that main thread either, and thus allows us
641 to compare the two lists. */
644 giter_count (struct thread_info *thread, void *countp)
646 if (PD_TID (thread->ptid))
651 /* iterate_over_threads() callback for accumulating GDB thread pids.
653 Do not include the main thread (whose tid is zero). This matches
654 the list of threads provided by the pthreaddebug library, which
655 does not include that main thread either, and thus allows us
656 to compare the two lists. */
659 giter_accum (struct thread_info *thread, void *bufp)
661 if (PD_TID (thread->ptid))
663 **(struct thread_info ***) bufp = thread;
664 (*(struct thread_info ***) bufp)++;
669 /* ptid comparison function */
672 ptid_cmp (ptid_t ptid1, ptid_t ptid2)
676 if (ptid_get_pid (ptid1) < ptid_get_pid (ptid2))
678 else if (ptid_get_pid (ptid1) > ptid_get_pid (ptid2))
680 else if (ptid_get_tid (ptid1) < ptid_get_tid (ptid2))
682 else if (ptid_get_tid (ptid1) > ptid_get_tid (ptid2))
684 else if (ptid_get_lwp (ptid1) < ptid_get_lwp (ptid2))
686 else if (ptid_get_lwp (ptid1) > ptid_get_lwp (ptid2))
692 /* qsort() comparison function for sorting thread_info structs by pid. */
695 gcmp (const void *t1v, const void *t2v)
697 struct thread_info *t1 = *(struct thread_info **) t1v;
698 struct thread_info *t2 = *(struct thread_info **) t2v;
699 return ptid_cmp (t1->ptid, t2->ptid);
702 /* Search through the list of all kernel threads for the thread
703 that has stopped on a SIGTRAP signal, and return its TID.
704 Return 0 if none found. */
707 get_signaled_thread (void)
709 struct thrdsinfo64 thrinf;
715 if (getthrds (ptid_get_pid (inferior_ptid), &thrinf,
716 sizeof (thrinf), &ktid, 1) != 1)
719 if (thrinf.ti_cursig == SIGTRAP)
720 return thrinf.ti_tid;
723 /* Didn't find any thread stopped on a SIGTRAP signal. */
727 /* Synchronize GDB's thread list with libpthdebug's.
729 There are some benefits of doing this every time the inferior stops:
731 - allows users to run thread-specific commands without needing to
732 run "info threads" first
734 - helps pthdb_tid_pthread() work properly (see "libpthdebug
735 peculiarities" at the top of this module)
737 - simplifies the demands placed on libpthdebug, which seems to
738 have difficulty with certain call patterns */
741 sync_threadlists (void)
743 int cmd, status, infpid;
744 int pcount, psize, pi, gcount, gi;
745 struct pd_thread *pbuf;
746 struct thread_info **gbuf, **g, *thread;
747 pthdb_pthread_t pdtid;
751 /* Accumulate an array of libpthdebug threads sorted by pthread id. */
755 pbuf = XNEWVEC (struct pd_thread, psize);
757 for (cmd = PTHDB_LIST_FIRST;; cmd = PTHDB_LIST_NEXT)
759 status = pthdb_pthread (pd_session, &pdtid, cmd);
760 if (status != PTHDB_SUCCESS || pdtid == PTHDB_INVALID_PTHREAD)
763 status = pthdb_pthread_ptid (pd_session, pdtid, &pthid);
764 if (status != PTHDB_SUCCESS || pthid == PTHDB_INVALID_PTID)
770 pbuf = (struct pd_thread *) xrealloc (pbuf,
771 psize * sizeof *pbuf);
773 pbuf[pcount].pdtid = pdtid;
774 pbuf[pcount].pthid = pthid;
778 for (pi = 0; pi < pcount; pi++)
780 status = pthdb_pthread_tid (pd_session, pbuf[pi].pdtid, &tid);
781 if (status != PTHDB_SUCCESS)
782 tid = PTHDB_INVALID_TID;
786 qsort (pbuf, pcount, sizeof *pbuf, pcmp);
788 /* Accumulate an array of GDB threads sorted by pid. */
791 iterate_over_threads (giter_count, &gcount);
792 g = gbuf = XNEWVEC (struct thread_info *, gcount);
793 iterate_over_threads (giter_accum, &g);
794 qsort (gbuf, gcount, sizeof *gbuf, gcmp);
796 /* Apply differences between the two arrays to GDB's thread list. */
798 infpid = ptid_get_pid (inferior_ptid);
799 for (pi = gi = 0; pi < pcount || gi < gcount;)
803 delete_thread (gbuf[gi]);
806 else if (gi == gcount)
808 aix_thread_info *priv = new aix_thread_info;
809 priv->pdtid = pbuf[pi].pdtid;
810 priv->tid = pbuf[pi].tid;
812 thread = add_thread_with_info (ptid_t (infpid, 0, pbuf[pi].pthid), priv);
821 pptid = ptid_build (infpid, 0, pbuf[pi].pthid);
822 gptid = gbuf[gi]->ptid;
823 pdtid = pbuf[pi].pdtid;
826 cmp_result = ptid_cmp (pptid, gptid);
830 aix_thread_info *priv = get_aix_thread_info (gbuf[gi]);
837 else if (cmp_result > 0)
839 delete_thread (gbuf[gi]);
844 thread = add_thread (pptid);
846 aix_thread_info *priv = new aix_thread_info;
847 thread->priv.reset (priv);
859 /* Iterate_over_threads() callback for locating a thread, using
860 the TID of its associated kernel thread. */
863 iter_tid (struct thread_info *thread, void *tidp)
865 const pthdb_tid_t tid = *(pthdb_tid_t *)tidp;
866 aix_thread_info *priv = get_aix_thread_info (thread);
868 return priv->tid == tid;
871 /* Synchronize libpthdebug's state with the inferior and with GDB,
872 generate a composite process/thread <pid> for the current thread,
873 set inferior_ptid to <pid> if SET_INFPID, and return <pid>. */
876 pd_update (int set_infpid)
881 struct thread_info *thread = NULL;
884 return inferior_ptid;
886 status = pthdb_session_update (pd_session);
887 if (status != PTHDB_SUCCESS)
888 return inferior_ptid;
892 /* Define "current thread" as one that just received a trap signal. */
894 tid = get_signaled_thread ();
896 thread = iterate_over_threads (iter_tid, &tid);
898 ptid = inferior_ptid;
903 inferior_ptid = ptid;
908 /* Try to start debugging threads in the current process.
909 If successful and SET_INFPID, set inferior_ptid to reflect the
913 pd_activate (int set_infpid)
917 status = pthdb_session_init (PD_USER, arch64 ? PEM_64BIT : PEM_32BIT,
918 PTHDB_FLAG_REGS, &pd_callbacks,
920 if (status != PTHDB_SUCCESS)
922 return inferior_ptid;
925 return pd_update (set_infpid);
928 /* Undo the effects of pd_activate(). */
935 pthdb_session_destroy (pd_session);
937 pid_to_prc (&inferior_ptid);
941 /* An object file has just been loaded. Check whether the current
942 application is pthreaded, and if so, prepare for thread debugging. */
949 struct bound_minimal_symbol ms;
951 /* Don't initialize twice. */
955 /* Check application word size. */
956 arch64 = register_size (target_gdbarch (), 0) == 8;
958 /* Check whether the application is pthreaded. */
960 status = pthdb_session_pthreaded (PD_USER, PTHDB_FLAG_REGS,
961 &pd_callbacks, &stub_name);
962 if ((status != PTHDB_SUCCESS
963 && status != PTHDB_NOT_PTHREADED) || !stub_name)
966 /* Set a breakpoint on the returned stub function. */
967 ms = lookup_minimal_symbol (stub_name, NULL, NULL);
968 if (ms.minsym == NULL)
970 pd_brk_addr = BMSYMBOL_VALUE_ADDRESS (ms);
971 if (!create_thread_event_breakpoint (target_gdbarch (), pd_brk_addr))
974 /* Prepare for thread debugging. */
975 push_target (&aix_thread_ops);
978 /* If we're debugging a core file or an attached inferior, the
979 pthread library may already have been initialized, so try to
980 activate thread debugging. */
984 /* Undo the effects of pd_enable(). */
994 unpush_target (&aix_thread_ops);
997 /* new_objfile observer callback.
999 If OBJFILE is non-null, check whether a threaded application is
1000 being debugged, and if so, prepare for thread debugging.
1002 If OBJFILE is null, stop debugging threads. */
1005 new_objfile (struct objfile *objfile)
1013 /* Attach to process specified by ARGS. */
1016 aix_thread_inferior_created (struct target_ops *ops, int from_tty)
1021 /* Detach from the process attached to by aix_thread_attach(). */
1024 aix_thread_target::detach (inferior *inf, int from_tty)
1026 target_ops *beneath = this->beneath ();
1029 beneath->detach (inf, from_tty);
1032 /* Tell the inferior process to continue running thread PID if != -1
1033 and all threads otherwise. */
1036 aix_thread_target::resume (ptid_t ptid, int step, enum gdb_signal sig)
1038 struct thread_info *thread;
1043 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
1045 inferior_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
1046 beneath ()->resume (ptid, step, sig);
1050 thread = find_thread_ptid (ptid);
1052 error (_("aix-thread resume: unknown pthread %ld"),
1053 ptid_get_lwp (ptid));
1055 aix_thread_info *priv = get_aix_thread_info (thread);
1058 if (tid[0] == PTHDB_INVALID_TID)
1059 error (_("aix-thread resume: no tid for pthread %ld"),
1060 ptid_get_lwp (ptid));
1064 ptrace64aix (PTT_CONTINUE, tid[0], (long long) 1,
1065 gdb_signal_to_host (sig), (PTRACE_TYPE_ARG5) tid);
1067 ptrace32 (PTT_CONTINUE, tid[0], (addr_ptr) 1,
1068 gdb_signal_to_host (sig), (PTRACE_TYPE_ARG5) tid);
1072 /* Wait for thread/process ID if != -1 or for any thread otherwise.
1073 If an error occurs, return -1, else return the pid of the stopped
1077 aix_thread_target::wait (ptid_t ptid, struct target_waitstatus *status,
1081 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
1085 inferior_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
1086 ptid = beneath ()->wait (ptid, status, options);
1089 if (ptid_get_pid (ptid) == -1)
1090 return pid_to_ptid (-1);
1092 /* Check whether libpthdebug might be ready to be initialized. */
1093 if (!pd_active && status->kind == TARGET_WAITKIND_STOPPED
1094 && status->value.sig == GDB_SIGNAL_TRAP)
1096 struct regcache *regcache = get_thread_regcache (ptid);
1097 struct gdbarch *gdbarch = regcache->arch ();
1099 if (regcache_read_pc (regcache)
1100 - gdbarch_decr_pc_after_break (gdbarch) == pd_brk_addr)
1101 return pd_activate (0);
1104 return pd_update (0);
1107 /* Record that the 64-bit general-purpose registers contain VALS. */
1110 supply_gprs64 (struct regcache *regcache, uint64_t *vals)
1112 struct gdbarch_tdep *tdep = gdbarch_tdep (regcache->arch ());
1115 for (regno = 0; regno < ppc_num_gprs; regno++)
1116 regcache->raw_supply (tdep->ppc_gp0_regnum + regno,
1117 (char *) (vals + regno));
1120 /* Record that 32-bit register REGNO contains VAL. */
1123 supply_reg32 (struct regcache *regcache, int regno, uint32_t val)
1125 regcache->raw_supply (regno, (char *) &val);
1128 /* Record that the floating-point registers contain VALS. */
1131 supply_fprs (struct regcache *regcache, double *vals)
1133 struct gdbarch *gdbarch = regcache->arch ();
1134 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1137 /* This function should never be called on architectures without
1138 floating-point registers. */
1139 gdb_assert (ppc_floating_point_unit_p (gdbarch));
1141 for (regno = tdep->ppc_fp0_regnum;
1142 regno < tdep->ppc_fp0_regnum + ppc_num_fprs;
1144 regcache->raw_supply (regno,
1145 (char *) (vals + regno - tdep->ppc_fp0_regnum));
1148 /* Predicate to test whether given register number is a "special" register. */
1150 special_register_p (struct gdbarch *gdbarch, int regno)
1152 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1154 return regno == gdbarch_pc_regnum (gdbarch)
1155 || regno == tdep->ppc_ps_regnum
1156 || regno == tdep->ppc_cr_regnum
1157 || regno == tdep->ppc_lr_regnum
1158 || regno == tdep->ppc_ctr_regnum
1159 || regno == tdep->ppc_xer_regnum
1160 || (tdep->ppc_fpscr_regnum >= 0 && regno == tdep->ppc_fpscr_regnum)
1161 || (tdep->ppc_mq_regnum >= 0 && regno == tdep->ppc_mq_regnum);
1165 /* Record that the special registers contain the specified 64-bit and
1169 supply_sprs64 (struct regcache *regcache,
1170 uint64_t iar, uint64_t msr, uint32_t cr,
1171 uint64_t lr, uint64_t ctr, uint32_t xer,
1174 struct gdbarch *gdbarch = regcache->arch ();
1175 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1177 regcache->raw_supply (gdbarch_pc_regnum (gdbarch), (char *) &iar);
1178 regcache->raw_supply (tdep->ppc_ps_regnum, (char *) &msr);
1179 regcache->raw_supply (tdep->ppc_cr_regnum, (char *) &cr);
1180 regcache->raw_supply (tdep->ppc_lr_regnum, (char *) &lr);
1181 regcache->raw_supply (tdep->ppc_ctr_regnum, (char *) &ctr);
1182 regcache->raw_supply (tdep->ppc_xer_regnum, (char *) &xer);
1183 if (tdep->ppc_fpscr_regnum >= 0)
1184 regcache->raw_supply (tdep->ppc_fpscr_regnum, (char *) &fpscr);
1187 /* Record that the special registers contain the specified 32-bit
1191 supply_sprs32 (struct regcache *regcache,
1192 uint32_t iar, uint32_t msr, uint32_t cr,
1193 uint32_t lr, uint32_t ctr, uint32_t xer,
1196 struct gdbarch *gdbarch = regcache->arch ();
1197 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1199 regcache->raw_supply (gdbarch_pc_regnum (gdbarch), (char *) &iar);
1200 regcache->raw_supply (tdep->ppc_ps_regnum, (char *) &msr);
1201 regcache->raw_supply (tdep->ppc_cr_regnum, (char *) &cr);
1202 regcache->raw_supply (tdep->ppc_lr_regnum, (char *) &lr);
1203 regcache->raw_supply (tdep->ppc_ctr_regnum, (char *) &ctr);
1204 regcache->raw_supply (tdep->ppc_xer_regnum, (char *) &xer);
1205 if (tdep->ppc_fpscr_regnum >= 0)
1206 regcache->raw_supply (tdep->ppc_fpscr_regnum, (char *) &fpscr);
1209 /* Fetch all registers from pthread PDTID, which doesn't have a kernel
1212 There's no way to query a single register from a non-kernel
1213 pthread, so there's no need for a single-register version of this
1217 fetch_regs_user_thread (struct regcache *regcache, pthdb_pthread_t pdtid)
1219 struct gdbarch *gdbarch = regcache->arch ();
1220 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1222 pthdb_context_t ctx;
1224 if (debug_aix_thread)
1225 fprintf_unfiltered (gdb_stdlog,
1226 "fetch_regs_user_thread %lx\n", (long) pdtid);
1227 status = pthdb_pthread_context (pd_session, pdtid, &ctx);
1228 if (status != PTHDB_SUCCESS)
1229 error (_("aix-thread: fetch_registers: pthdb_pthread_context returned %s"),
1230 pd_status2str (status));
1232 /* General-purpose registers. */
1235 supply_gprs64 (regcache, ctx.gpr);
1237 for (i = 0; i < ppc_num_gprs; i++)
1238 supply_reg32 (regcache, tdep->ppc_gp0_regnum + i, ctx.gpr[i]);
1240 /* Floating-point registers. */
1242 if (ppc_floating_point_unit_p (gdbarch))
1243 supply_fprs (regcache, ctx.fpr);
1245 /* Special registers. */
1248 supply_sprs64 (regcache, ctx.iar, ctx.msr, ctx.cr, ctx.lr, ctx.ctr,
1249 ctx.xer, ctx.fpscr);
1251 supply_sprs32 (regcache, ctx.iar, ctx.msr, ctx.cr, ctx.lr, ctx.ctr,
1252 ctx.xer, ctx.fpscr);
1255 /* Fetch register REGNO if != -1 or all registers otherwise from
1258 AIX provides a way to query all of a kernel thread's GPRs, FPRs, or
1259 SPRs, but there's no way to query individual registers within those
1260 groups. Therefore, if REGNO != -1, this function fetches an entire
1263 Unfortunately, kernel thread register queries often fail with
1264 EPERM, indicating that the thread is in kernel space. This breaks
1265 backtraces of threads other than the current one. To make that
1266 breakage obvious without throwing an error to top level (which is
1267 bad e.g. during "info threads" output), zero registers that can't
1271 fetch_regs_kernel_thread (struct regcache *regcache, int regno,
1274 struct gdbarch *gdbarch = regcache->arch ();
1275 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1276 uint64_t gprs64[ppc_num_gprs];
1277 uint32_t gprs32[ppc_num_gprs];
1278 double fprs[ppc_num_fprs];
1279 struct ptxsprs sprs64;
1280 struct ptsprs sprs32;
1283 if (debug_aix_thread)
1284 fprintf_unfiltered (gdb_stdlog,
1285 "fetch_regs_kernel_thread tid=%lx regno=%d arch64=%d\n",
1286 (long) tid, regno, arch64);
1288 /* General-purpose registers. */
1290 || (tdep->ppc_gp0_regnum <= regno
1291 && regno < tdep->ppc_gp0_regnum + ppc_num_gprs))
1295 if (!ptrace64aix (PTT_READ_GPRS, tid,
1296 (unsigned long) gprs64, 0, NULL))
1297 memset (gprs64, 0, sizeof (gprs64));
1298 supply_gprs64 (regcache, gprs64);
1302 if (!ptrace32 (PTT_READ_GPRS, tid, (uintptr_t) gprs32, 0, NULL))
1303 memset (gprs32, 0, sizeof (gprs32));
1304 for (i = 0; i < ppc_num_gprs; i++)
1305 supply_reg32 (regcache, tdep->ppc_gp0_regnum + i, gprs32[i]);
1309 /* Floating-point registers. */
1311 if (ppc_floating_point_unit_p (gdbarch)
1313 || (regno >= tdep->ppc_fp0_regnum
1314 && regno < tdep->ppc_fp0_regnum + ppc_num_fprs)))
1316 if (!ptrace32 (PTT_READ_FPRS, tid, (uintptr_t) fprs, 0, NULL))
1317 memset (fprs, 0, sizeof (fprs));
1318 supply_fprs (regcache, fprs);
1321 /* Special-purpose registers. */
1323 if (regno == -1 || special_register_p (gdbarch, regno))
1327 if (!ptrace64aix (PTT_READ_SPRS, tid,
1328 (unsigned long) &sprs64, 0, NULL))
1329 memset (&sprs64, 0, sizeof (sprs64));
1330 supply_sprs64 (regcache, sprs64.pt_iar, sprs64.pt_msr,
1331 sprs64.pt_cr, sprs64.pt_lr, sprs64.pt_ctr,
1332 sprs64.pt_xer, sprs64.pt_fpscr);
1336 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1338 if (!ptrace32 (PTT_READ_SPRS, tid, (uintptr_t) &sprs32, 0, NULL))
1339 memset (&sprs32, 0, sizeof (sprs32));
1340 supply_sprs32 (regcache, sprs32.pt_iar, sprs32.pt_msr, sprs32.pt_cr,
1341 sprs32.pt_lr, sprs32.pt_ctr, sprs32.pt_xer,
1344 if (tdep->ppc_mq_regnum >= 0)
1345 regcache->raw_supply (tdep->ppc_mq_regnum, (char *) &sprs32.pt_mq);
1350 /* Fetch register REGNO if != -1 or all registers otherwise from the
1351 thread/process connected to REGCACHE. */
1354 aix_thread_target::fetch_registers (struct regcache *regcache, int regno)
1356 struct thread_info *thread;
1359 if (!PD_TID (regcache->ptid ()))
1360 beneath ()->fetch_registers (regcache, regno);
1363 thread = find_thread_ptid (regcache->ptid ());
1364 aix_thread_info *priv = get_aix_thread_info (thread);
1367 if (tid == PTHDB_INVALID_TID)
1368 fetch_regs_user_thread (regcache, priv->pdtid);
1370 fetch_regs_kernel_thread (regcache, regno, tid);
1374 /* Store the gp registers into an array of uint32_t or uint64_t. */
1377 fill_gprs64 (const struct regcache *regcache, uint64_t *vals)
1379 struct gdbarch_tdep *tdep = gdbarch_tdep (regcache->arch ());
1382 for (regno = 0; regno < ppc_num_gprs; regno++)
1383 if (REG_VALID == regcache->get_register_status
1384 (tdep->ppc_gp0_regnum + regno))
1385 regcache->raw_collect (tdep->ppc_gp0_regnum + regno, vals + regno);
1389 fill_gprs32 (const struct regcache *regcache, uint32_t *vals)
1391 struct gdbarch_tdep *tdep = gdbarch_tdep (regcache->arch ());
1394 for (regno = 0; regno < ppc_num_gprs; regno++)
1395 if (REG_VALID == regcache->get_register_status
1396 (tdep->ppc_gp0_regnum + regno))
1397 regcache->raw_collect (tdep->ppc_gp0_regnum + regno, vals + regno);
1400 /* Store the floating point registers into a double array. */
1402 fill_fprs (const struct regcache *regcache, double *vals)
1404 struct gdbarch *gdbarch = regcache->arch ();
1405 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1408 /* This function should never be called on architectures without
1409 floating-point registers. */
1410 gdb_assert (ppc_floating_point_unit_p (gdbarch));
1412 for (regno = tdep->ppc_fp0_regnum;
1413 regno < tdep->ppc_fp0_regnum + ppc_num_fprs;
1415 if (REG_VALID == regcache->get_register_status (regno))
1416 regcache->raw_collect (regno, vals + regno - tdep->ppc_fp0_regnum);
1419 /* Store the special registers into the specified 64-bit and 32-bit
1423 fill_sprs64 (const struct regcache *regcache,
1424 uint64_t *iar, uint64_t *msr, uint32_t *cr,
1425 uint64_t *lr, uint64_t *ctr, uint32_t *xer,
1428 struct gdbarch *gdbarch = regcache->arch ();
1429 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1431 /* Verify that the size of the size of the IAR buffer is the
1432 same as the raw size of the PC (in the register cache). If
1433 they're not, then either GDB has been built incorrectly, or
1434 there's some other kind of internal error. To be really safe,
1435 we should check all of the sizes. */
1436 gdb_assert (sizeof (*iar) == register_size
1437 (gdbarch, gdbarch_pc_regnum (gdbarch)));
1439 if (REG_VALID == regcache->get_register_status (gdbarch_pc_regnum (gdbarch)))
1440 regcache->raw_collect (gdbarch_pc_regnum (gdbarch), iar);
1441 if (REG_VALID == regcache->get_register_status (tdep->ppc_ps_regnum))
1442 regcache->raw_collect (tdep->ppc_ps_regnum, msr);
1443 if (REG_VALID == regcache->get_register_status (tdep->ppc_cr_regnum))
1444 regcache->raw_collect (tdep->ppc_cr_regnum, cr);
1445 if (REG_VALID == regcache->get_register_status (tdep->ppc_lr_regnum))
1446 regcache->raw_collect (tdep->ppc_lr_regnum, lr);
1447 if (REG_VALID == regcache->get_register_status (tdep->ppc_ctr_regnum))
1448 regcache->raw_collect (tdep->ppc_ctr_regnum, ctr);
1449 if (REG_VALID == regcache->get_register_status (tdep->ppc_xer_regnum))
1450 regcache->raw_collect (tdep->ppc_xer_regnum, xer);
1451 if (tdep->ppc_fpscr_regnum >= 0
1452 && REG_VALID == regcache->get_register_status (tdep->ppc_fpscr_regnum))
1453 regcache->raw_collect (tdep->ppc_fpscr_regnum, fpscr);
1457 fill_sprs32 (const struct regcache *regcache,
1458 uint32_t *iar, uint32_t *msr, uint32_t *cr,
1459 uint32_t *lr, uint32_t *ctr, uint32_t *xer,
1462 struct gdbarch *gdbarch = regcache->arch ();
1463 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1465 /* Verify that the size of the size of the IAR buffer is the
1466 same as the raw size of the PC (in the register cache). If
1467 they're not, then either GDB has been built incorrectly, or
1468 there's some other kind of internal error. To be really safe,
1469 we should check all of the sizes. */
1470 gdb_assert (sizeof (*iar) == register_size (gdbarch,
1471 gdbarch_pc_regnum (gdbarch)));
1473 if (REG_VALID == regcache->get_register_status (gdbarch_pc_regnum (gdbarch)))
1474 regcache->raw_collect (gdbarch_pc_regnum (gdbarch), iar);
1475 if (REG_VALID == regcache->get_register_status (tdep->ppc_ps_regnum))
1476 regcache->raw_collect (tdep->ppc_ps_regnum, msr);
1477 if (REG_VALID == regcache->get_register_status (tdep->ppc_cr_regnum))
1478 regcache->raw_collect (tdep->ppc_cr_regnum, cr);
1479 if (REG_VALID == regcache->get_register_status (tdep->ppc_lr_regnum))
1480 regcache->raw_collect (tdep->ppc_lr_regnum, lr);
1481 if (REG_VALID == regcache->get_register_status (tdep->ppc_ctr_regnum))
1482 regcache->raw_collect (tdep->ppc_ctr_regnum, ctr);
1483 if (REG_VALID == regcache->get_register_status (tdep->ppc_xer_regnum))
1484 regcache->raw_collect (tdep->ppc_xer_regnum, xer);
1485 if (tdep->ppc_fpscr_regnum >= 0
1486 && REG_VALID == regcache->get_register_status (tdep->ppc_fpscr_regnum))
1487 regcache->raw_collect (tdep->ppc_fpscr_regnum, fpscr);
1490 /* Store all registers into pthread PDTID, which doesn't have a kernel
1493 It's possible to store a single register into a non-kernel pthread,
1494 but I doubt it's worth the effort. */
1497 store_regs_user_thread (const struct regcache *regcache, pthdb_pthread_t pdtid)
1499 struct gdbarch *gdbarch = regcache->arch ();
1500 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1502 pthdb_context_t ctx;
1507 if (debug_aix_thread)
1508 fprintf_unfiltered (gdb_stdlog,
1509 "store_regs_user_thread %lx\n", (long) pdtid);
1511 /* Retrieve the thread's current context for its non-register
1513 status = pthdb_pthread_context (pd_session, pdtid, &ctx);
1514 if (status != PTHDB_SUCCESS)
1515 error (_("aix-thread: store_registers: pthdb_pthread_context returned %s"),
1516 pd_status2str (status));
1518 /* Collect general-purpose register values from the regcache. */
1520 for (i = 0; i < ppc_num_gprs; i++)
1521 if (REG_VALID == regcache->get_register_status (tdep->ppc_gp0_regnum + i))
1525 regcache->raw_collect (tdep->ppc_gp0_regnum + i, (void *) &int64);
1530 regcache->raw_collect (tdep->ppc_gp0_regnum + i, (void *) &int32);
1535 /* Collect floating-point register values from the regcache. */
1536 if (ppc_floating_point_unit_p (gdbarch))
1537 fill_fprs (regcache, ctx.fpr);
1539 /* Special registers (always kept in ctx as 64 bits). */
1542 fill_sprs64 (regcache, &ctx.iar, &ctx.msr, &ctx.cr, &ctx.lr, &ctx.ctr,
1543 &ctx.xer, &ctx.fpscr);
1547 /* Problem: ctx.iar etc. are 64 bits, but raw_registers are 32.
1548 Solution: use 32-bit temp variables. */
1549 uint32_t tmp_iar, tmp_msr, tmp_cr, tmp_lr, tmp_ctr, tmp_xer,
1552 fill_sprs32 (regcache, &tmp_iar, &tmp_msr, &tmp_cr, &tmp_lr, &tmp_ctr,
1553 &tmp_xer, &tmp_fpscr);
1554 if (REG_VALID == regcache->get_register_status
1555 (gdbarch_pc_regnum (gdbarch)))
1557 if (REG_VALID == regcache->get_register_status (tdep->ppc_ps_regnum))
1559 if (REG_VALID == regcache->get_register_status (tdep->ppc_cr_regnum))
1561 if (REG_VALID == regcache->get_register_status (tdep->ppc_lr_regnum))
1563 if (REG_VALID == regcache->get_register_status (tdep->ppc_ctr_regnum))
1565 if (REG_VALID == regcache->get_register_status (tdep->ppc_xer_regnum))
1567 if (REG_VALID == regcache->get_register_status (tdep->ppc_xer_regnum))
1568 ctx.fpscr = tmp_fpscr;
1571 status = pthdb_pthread_setcontext (pd_session, pdtid, &ctx);
1572 if (status != PTHDB_SUCCESS)
1573 error (_("aix-thread: store_registers: "
1574 "pthdb_pthread_setcontext returned %s"),
1575 pd_status2str (status));
1578 /* Store register REGNO if != -1 or all registers otherwise into
1581 AIX provides a way to set all of a kernel thread's GPRs, FPRs, or
1582 SPRs, but there's no way to set individual registers within those
1583 groups. Therefore, if REGNO != -1, this function stores an entire
1587 store_regs_kernel_thread (const struct regcache *regcache, int regno,
1590 struct gdbarch *gdbarch = regcache->arch ();
1591 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1592 uint64_t gprs64[ppc_num_gprs];
1593 uint32_t gprs32[ppc_num_gprs];
1594 double fprs[ppc_num_fprs];
1595 struct ptxsprs sprs64;
1596 struct ptsprs sprs32;
1599 if (debug_aix_thread)
1600 fprintf_unfiltered (gdb_stdlog,
1601 "store_regs_kernel_thread tid=%lx regno=%d\n",
1604 /* General-purpose registers. */
1606 || (tdep->ppc_gp0_regnum <= regno
1607 && regno < tdep->ppc_gp0_regnum + ppc_num_fprs))
1611 /* Pre-fetch: some regs may not be in the cache. */
1612 ptrace64aix (PTT_READ_GPRS, tid, (unsigned long) gprs64, 0, NULL);
1613 fill_gprs64 (regcache, gprs64);
1614 ptrace64aix (PTT_WRITE_GPRS, tid, (unsigned long) gprs64, 0, NULL);
1618 /* Pre-fetch: some regs may not be in the cache. */
1619 ptrace32 (PTT_READ_GPRS, tid, (uintptr_t) gprs32, 0, NULL);
1620 fill_gprs32 (regcache, gprs32);
1621 ptrace32 (PTT_WRITE_GPRS, tid, (uintptr_t) gprs32, 0, NULL);
1625 /* Floating-point registers. */
1627 if (ppc_floating_point_unit_p (gdbarch)
1629 || (regno >= tdep->ppc_fp0_regnum
1630 && regno < tdep->ppc_fp0_regnum + ppc_num_fprs)))
1632 /* Pre-fetch: some regs may not be in the cache. */
1633 ptrace32 (PTT_READ_FPRS, tid, (uintptr_t) fprs, 0, NULL);
1634 fill_fprs (regcache, fprs);
1635 ptrace32 (PTT_WRITE_FPRS, tid, (uintptr_t) fprs, 0, NULL);
1638 /* Special-purpose registers. */
1640 if (regno == -1 || special_register_p (gdbarch, regno))
1644 /* Pre-fetch: some registers won't be in the cache. */
1645 ptrace64aix (PTT_READ_SPRS, tid,
1646 (unsigned long) &sprs64, 0, NULL);
1647 fill_sprs64 (regcache, &sprs64.pt_iar, &sprs64.pt_msr,
1648 &sprs64.pt_cr, &sprs64.pt_lr, &sprs64.pt_ctr,
1649 &sprs64.pt_xer, &sprs64.pt_fpscr);
1650 ptrace64aix (PTT_WRITE_SPRS, tid,
1651 (unsigned long) &sprs64, 0, NULL);
1655 /* The contents of "struct ptspr" were declared as "unsigned
1656 long" up to AIX 5.2, but are "unsigned int" since 5.3.
1657 Use temporaries to work around this problem. Also, add an
1658 assert here to make sure we fail if the system header files
1659 use "unsigned long", and the size of that type is not what
1660 the headers expect. */
1661 uint32_t tmp_iar, tmp_msr, tmp_cr, tmp_lr, tmp_ctr, tmp_xer,
1664 gdb_assert (sizeof (sprs32.pt_iar) == 4);
1666 /* Pre-fetch: some registers won't be in the cache. */
1667 ptrace32 (PTT_READ_SPRS, tid, (uintptr_t) &sprs32, 0, NULL);
1669 fill_sprs32 (regcache, &tmp_iar, &tmp_msr, &tmp_cr, &tmp_lr,
1670 &tmp_ctr, &tmp_xer, &tmp_fpscr);
1672 sprs32.pt_iar = tmp_iar;
1673 sprs32.pt_msr = tmp_msr;
1674 sprs32.pt_cr = tmp_cr;
1675 sprs32.pt_lr = tmp_lr;
1676 sprs32.pt_ctr = tmp_ctr;
1677 sprs32.pt_xer = tmp_xer;
1678 sprs32.pt_fpscr = tmp_fpscr;
1680 if (tdep->ppc_mq_regnum >= 0)
1681 if (REG_VALID == regcache->get_register_status
1682 (tdep->ppc_mq_regnum))
1683 regcache->raw_collect (tdep->ppc_mq_regnum, &sprs32.pt_mq);
1685 ptrace32 (PTT_WRITE_SPRS, tid, (uintptr_t) &sprs32, 0, NULL);
1690 /* Store gdb's current view of the register set into the
1691 thread/process connected to REGCACHE. */
1694 aix_thread_target::store_registers (struct regcache *regcache, int regno)
1696 struct thread_info *thread;
1699 if (!PD_TID (regcache->ptid ()))
1700 beneath ()->store_registers (regcache, regno);
1703 thread = find_thread_ptid (regcache->ptid ());
1704 aix_thread_info *priv = get_aix_thread_info (thread);
1707 if (tid == PTHDB_INVALID_TID)
1708 store_regs_user_thread (regcache, priv->pdtid);
1710 store_regs_kernel_thread (regcache, regno, tid);
1714 /* Implement the to_xfer_partial target_ops method. */
1716 enum target_xfer_status
1717 aix_thread_target::xfer_partial (enum target_object object,
1718 const char *annex, gdb_byte *readbuf,
1719 const gdb_byte *writebuf,
1720 ULONGEST offset, ULONGEST len,
1721 ULONGEST *xfered_len)
1723 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
1725 inferior_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
1726 return beneath ()->xfer_partial (object, annex, readbuf,
1727 writebuf, offset, len, xfered_len);
1730 /* Clean up after the inferior exits. */
1733 aix_thread_target::mourn_inferior ()
1735 target_ops *beneath = this->beneath ();
1738 beneath->mourn_inferior ();
1741 /* Return whether thread PID is still valid. */
1744 aix_thread_target::thread_alive (ptid_t ptid)
1747 return beneath ()->thread_alive (ptid);
1749 /* We update the thread list every time the child stops, so all
1750 valid threads should be in the thread list. */
1751 return in_thread_list (ptid);
1754 /* Return a printable representation of composite PID for use in
1755 "info threads" output. */
1758 aix_thread_target::pid_to_str (ptid_t ptid)
1760 static char *ret = NULL;
1763 return beneath ()->pid_to_str (ptid);
1765 /* Free previous return value; a new one will be allocated by
1769 ret = xstrprintf (_("Thread %ld"), ptid_get_tid (ptid));
1773 /* Return a printable representation of extra information about
1774 THREAD, for use in "info threads" output. */
1777 aix_thread_target::extra_thread_info (struct thread_info *thread)
1780 pthdb_pthread_t pdtid;
1782 pthdb_state_t state;
1783 pthdb_suspendstate_t suspendstate;
1784 pthdb_detachstate_t detachstate;
1786 static char *ret = NULL;
1788 if (!PD_TID (thread->ptid))
1792 aix_thread_info *priv = get_aix_thread_info (thread);
1794 pdtid = priv->pdtid;
1797 if (tid != PTHDB_INVALID_TID)
1798 /* i18n: Like "thread-identifier %d, [state] running, suspended" */
1799 buf.printf (_("tid %d"), (int)tid);
1801 status = pthdb_pthread_state (pd_session, pdtid, &state);
1802 if (status != PTHDB_SUCCESS)
1804 buf.printf (", %s", state2str (state));
1806 status = pthdb_pthread_suspendstate (pd_session, pdtid,
1808 if (status == PTHDB_SUCCESS && suspendstate == PSS_SUSPENDED)
1809 /* i18n: Like "Thread-Id %d, [state] running, suspended" */
1810 buf.printf (_(", suspended"));
1812 status = pthdb_pthread_detachstate (pd_session, pdtid,
1814 if (status == PTHDB_SUCCESS && detachstate == PDS_DETACHED)
1815 /* i18n: Like "Thread-Id %d, [state] running, detached" */
1816 buf.printf (_(", detached"));
1818 pthdb_pthread_cancelpend (pd_session, pdtid, &cancelpend);
1819 if (status == PTHDB_SUCCESS && cancelpend)
1820 /* i18n: Like "Thread-Id %d, [state] running, cancel pending" */
1821 buf.printf (_(", cancel pending"));
1825 xfree (ret); /* Free old buffer. */
1827 ret = xstrdup (buf.c_str ());
1833 aix_thread_target::get_ada_task_ptid (long lwp, long thread)
1835 return ptid_build (ptid_get_pid (inferior_ptid), 0, thread);
1839 /* Module startup initialization function, automagically called by
1843 _initialize_aix_thread (void)
1845 /* Notice when object files get loaded and unloaded. */
1846 gdb::observers::new_objfile.attach (new_objfile);
1848 /* Add ourselves to inferior_created event chain.
1849 This is needed to enable the thread target on "attach". */
1850 gdb::observers::inferior_created.attach (aix_thread_inferior_created);
1852 add_setshow_boolean_cmd ("aix-thread", class_maintenance, &debug_aix_thread,
1853 _("Set debugging of AIX thread module."),
1854 _("Show debugging of AIX thread module."),
1855 _("Enables debugging output (used to debug GDB)."),
1857 /* FIXME: i18n: Debugging of AIX thread
1858 module is \"%d\". */
1859 &setdebuglist, &showdebuglist);