[PATCH 47/57][Arm][OBJDUMP] Add support for MVE instructions: vaddv, vmlaldav, vmlada...
[binutils-gdb.git] / gdb / aix-thread.c
blobffa3352d03992338614c3883d8ac2f268e597ed8
1 /* Low level interface for debugging AIX 4.3+ pthreads.
3 Copyright (C) 1999-2019 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().
42 #include "defs.h"
43 #include "gdbthread.h"
44 #include "target.h"
45 #include "inferior.h"
46 #include "regcache.h"
47 #include "gdbcmd.h"
48 #include "ppc-tdep.h"
49 #include "observable.h"
50 #include "objfiles.h"
52 #include <procinfo.h>
53 #include <sys/types.h>
54 #include <sys/ptrace.h>
55 #include <sys/reg.h>
56 #include <sched.h>
57 #include <sys/pthdebug.h>
59 #if !HAVE_DECL_GETTHRDS
60 extern int getthrds (pid_t, struct thrdsinfo64 *, int, tid_t *, int);
61 #endif
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
69 #endif
71 /* Return whether to treat PID as a debuggable thread id. */
73 #define PD_TID(ptid) (pd_active && ptid.tid () != 0)
75 /* pthdb_user_t value that we pass to pthdb functions. 0 causes
76 PTHDB_BAD_USER errors, so use 1. */
78 #define PD_USER 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. */
103 struct pd_thread {
104 pthdb_pthread_t pdtid;
105 pthread_t pthid;
106 pthdb_tid_t tid;
109 /* This module's target-specific operations, active while pd_able is true. */
111 static const target_info aix_thread_target_info = {
112 "aix-threads",
113 N_("AIX pthread support"),
114 N_("AIX pthread support")
117 class aix_thread_target final : public target_ops
119 public:
120 const target_info &info () const override
121 { return aix_thread_target_info; }
123 strata stratum () const override { return thread_stratum; }
125 void detach (inferior *, int) override;
126 void resume (ptid_t, int, enum gdb_signal) override;
127 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
129 void fetch_registers (struct regcache *, int) override;
130 void store_registers (struct regcache *, int) override;
132 enum target_xfer_status xfer_partial (enum target_object object,
133 const char *annex,
134 gdb_byte *readbuf,
135 const gdb_byte *writebuf,
136 ULONGEST offset, ULONGEST len,
137 ULONGEST *xfered_len) override;
139 void mourn_inferior () override;
141 bool thread_alive (ptid_t ptid) override;
143 std::string pid_to_str (ptid_t) override;
145 const char *extra_thread_info (struct thread_info *) override;
147 ptid_t get_ada_task_ptid (long lwp, long thread) override;
150 static aix_thread_target aix_thread_ops;
152 /* Address of the function that libpthread will call when libpthdebug
153 is ready to be initialized. */
155 static CORE_ADDR pd_brk_addr;
157 /* Whether the current application is debuggable by pthdb. */
159 static int pd_able = 0;
161 /* Whether a threaded application is being debugged. */
163 static int pd_active = 0;
165 /* Whether the current architecture is 64-bit.
166 Only valid when pd_able is true. */
168 static int arch64;
170 /* Forward declarations for pthdb callbacks. */
172 static int pdc_symbol_addrs (pthdb_user_t, pthdb_symbol_t *, int);
173 static int pdc_read_data (pthdb_user_t, void *, pthdb_addr_t, size_t);
174 static int pdc_write_data (pthdb_user_t, void *, pthdb_addr_t, size_t);
175 static int pdc_read_regs (pthdb_user_t user, pthdb_tid_t tid,
176 unsigned long long flags,
177 pthdb_context_t *context);
178 static int pdc_write_regs (pthdb_user_t user, pthdb_tid_t tid,
179 unsigned long long flags,
180 pthdb_context_t *context);
181 static int pdc_alloc (pthdb_user_t, size_t, void **);
182 static int pdc_realloc (pthdb_user_t, void *, size_t, void **);
183 static int pdc_dealloc (pthdb_user_t, void *);
185 /* pthdb callbacks. */
187 static pthdb_callbacks_t pd_callbacks = {
188 pdc_symbol_addrs,
189 pdc_read_data,
190 pdc_write_data,
191 pdc_read_regs,
192 pdc_write_regs,
193 pdc_alloc,
194 pdc_realloc,
195 pdc_dealloc,
196 NULL
199 /* Current pthdb session. */
201 static pthdb_session_t pd_session;
203 /* Return a printable representation of pthdebug function return
204 STATUS. */
206 static const char *
207 pd_status2str (int status)
209 switch (status)
211 case PTHDB_SUCCESS: return "SUCCESS";
212 case PTHDB_NOSYS: return "NOSYS";
213 case PTHDB_NOTSUP: return "NOTSUP";
214 case PTHDB_BAD_VERSION: return "BAD_VERSION";
215 case PTHDB_BAD_USER: return "BAD_USER";
216 case PTHDB_BAD_SESSION: return "BAD_SESSION";
217 case PTHDB_BAD_MODE: return "BAD_MODE";
218 case PTHDB_BAD_FLAGS: return "BAD_FLAGS";
219 case PTHDB_BAD_CALLBACK: return "BAD_CALLBACK";
220 case PTHDB_BAD_POINTER: return "BAD_POINTER";
221 case PTHDB_BAD_CMD: return "BAD_CMD";
222 case PTHDB_BAD_PTHREAD: return "BAD_PTHREAD";
223 case PTHDB_BAD_ATTR: return "BAD_ATTR";
224 case PTHDB_BAD_MUTEX: return "BAD_MUTEX";
225 case PTHDB_BAD_MUTEXATTR: return "BAD_MUTEXATTR";
226 case PTHDB_BAD_COND: return "BAD_COND";
227 case PTHDB_BAD_CONDATTR: return "BAD_CONDATTR";
228 case PTHDB_BAD_RWLOCK: return "BAD_RWLOCK";
229 case PTHDB_BAD_RWLOCKATTR: return "BAD_RWLOCKATTR";
230 case PTHDB_BAD_KEY: return "BAD_KEY";
231 case PTHDB_BAD_PTID: return "BAD_PTID";
232 case PTHDB_BAD_TID: return "BAD_TID";
233 case PTHDB_CALLBACK: return "CALLBACK";
234 case PTHDB_CONTEXT: return "CONTEXT";
235 case PTHDB_HELD: return "HELD";
236 case PTHDB_NOT_HELD: return "NOT_HELD";
237 case PTHDB_MEMORY: return "MEMORY";
238 case PTHDB_NOT_PTHREADED: return "NOT_PTHREADED";
239 case PTHDB_SYMBOL: return "SYMBOL";
240 case PTHDB_NOT_AVAIL: return "NOT_AVAIL";
241 case PTHDB_INTERNAL: return "INTERNAL";
242 default: return "UNKNOWN";
246 /* A call to ptrace(REQ, ID, ...) just returned RET. Check for
247 exceptional conditions and either return nonlocally or else return
248 1 for success and 0 for failure. */
250 static int
251 ptrace_check (int req, int id, int ret)
253 if (ret == 0 && !errno)
254 return 1;
256 /* According to ptrace(2), ptrace may fail with EPERM if "the
257 Identifier parameter corresponds to a kernel thread which is
258 stopped in kernel mode and whose computational state cannot be
259 read or written." This happens quite often with register reads. */
261 switch (req)
263 case PTT_READ_GPRS:
264 case PTT_READ_FPRS:
265 case PTT_READ_SPRS:
266 if (ret == -1 && errno == EPERM)
268 if (debug_aix_thread)
269 fprintf_unfiltered (gdb_stdlog,
270 "ptrace (%d, %d) = %d (errno = %d)\n",
271 req, id, ret, errno);
272 return ret == -1 ? 0 : 1;
274 break;
276 error (_("aix-thread: ptrace (%d, %d) returned %d (errno = %d %s)"),
277 req, id, ret, errno, safe_strerror (errno));
278 return 0; /* Not reached. */
281 /* Call ptracex (REQ, ID, ADDR, DATA, BUF) or
282 ptrace64 (REQ, ID, ADDR, DATA, BUF) if HAVE_PTRACE64.
283 Return success. */
285 #ifdef HAVE_PTRACE64
286 # define ptracex(request, pid, addr, data, buf) \
287 ptrace64 (request, pid, addr, data, buf)
288 #endif
290 static int
291 ptrace64aix (int req, int id, long long addr, int data, int *buf)
293 errno = 0;
294 return ptrace_check (req, id, ptracex (req, id, addr, data, buf));
297 /* Call ptrace (REQ, ID, ADDR, DATA, BUF) or
298 ptrace64 (REQ, ID, ADDR, DATA, BUF) if HAVE_PTRACE64.
299 Return success. */
301 #ifdef HAVE_PTRACE64
302 # define ptrace(request, pid, addr, data, buf) \
303 ptrace64 (request, pid, addr, data, buf)
304 # define addr_ptr long long
305 #else
306 # define addr_ptr int *
307 #endif
309 static int
310 ptrace32 (int req, int id, addr_ptr addr, int data, int *buf)
312 errno = 0;
313 return ptrace_check (req, id,
314 ptrace (req, id, addr, data, buf));
317 /* If *PIDP is a composite process/thread id, convert it to a
318 process id. */
320 static void
321 pid_to_prc (ptid_t *ptidp)
323 ptid_t ptid;
325 ptid = *ptidp;
326 if (PD_TID (ptid))
327 *ptidp = ptid_t (ptid.pid ());
330 /* pthdb callback: for <i> from 0 to COUNT, set SYMBOLS[<i>].addr to
331 the address of SYMBOLS[<i>].name. */
333 static int
334 pdc_symbol_addrs (pthdb_user_t user, pthdb_symbol_t *symbols, int count)
336 struct bound_minimal_symbol ms;
337 int i;
338 char *name;
340 if (debug_aix_thread)
341 fprintf_unfiltered (gdb_stdlog,
342 "pdc_symbol_addrs (user = %ld, symbols = 0x%lx, count = %d)\n",
343 user, (long) symbols, count);
345 for (i = 0; i < count; i++)
347 name = symbols[i].name;
348 if (debug_aix_thread)
349 fprintf_unfiltered (gdb_stdlog,
350 " symbols[%d].name = \"%s\"\n", i, name);
352 if (!*name)
353 symbols[i].addr = 0;
354 else
356 ms = lookup_minimal_symbol (name, NULL, NULL);
357 if (ms.minsym == NULL)
359 if (debug_aix_thread)
360 fprintf_unfiltered (gdb_stdlog, " returning PDC_FAILURE\n");
361 return PDC_FAILURE;
363 symbols[i].addr = BMSYMBOL_VALUE_ADDRESS (ms);
365 if (debug_aix_thread)
366 fprintf_unfiltered (gdb_stdlog, " symbols[%d].addr = %s\n",
367 i, hex_string (symbols[i].addr));
369 if (debug_aix_thread)
370 fprintf_unfiltered (gdb_stdlog, " returning PDC_SUCCESS\n");
371 return PDC_SUCCESS;
374 /* Read registers call back function should be able to read the
375 context information of a debuggee kernel thread from an active
376 process or from a core file. The information should be formatted
377 in context64 form for both 32-bit and 64-bit process.
378 If successful return 0, else non-zero is returned. */
380 static int
381 pdc_read_regs (pthdb_user_t user,
382 pthdb_tid_t tid,
383 unsigned long long flags,
384 pthdb_context_t *context)
386 /* This function doesn't appear to be used, so we could probably
387 just return 0 here. HOWEVER, if it is not defined, the OS will
388 complain and several thread debug functions will fail. In case
389 this is needed, I have implemented what I think it should do,
390 however this code is untested. */
392 uint64_t gprs64[ppc_num_gprs];
393 uint32_t gprs32[ppc_num_gprs];
394 double fprs[ppc_num_fprs];
395 struct ptxsprs sprs64;
396 struct ptsprs sprs32;
398 if (debug_aix_thread)
399 fprintf_unfiltered (gdb_stdlog, "pdc_read_regs tid=%d flags=%s\n",
400 (int) tid, hex_string (flags));
402 /* General-purpose registers. */
403 if (flags & PTHDB_FLAG_GPRS)
405 if (arch64)
407 if (!ptrace64aix (PTT_READ_GPRS, tid,
408 (unsigned long) gprs64, 0, NULL))
409 memset (gprs64, 0, sizeof (gprs64));
410 memcpy (context->gpr, gprs64, sizeof(gprs64));
412 else
414 if (!ptrace32 (PTT_READ_GPRS, tid, (uintptr_t) gprs32, 0, NULL))
415 memset (gprs32, 0, sizeof (gprs32));
416 memcpy (context->gpr, gprs32, sizeof(gprs32));
420 /* Floating-point registers. */
421 if (flags & PTHDB_FLAG_FPRS)
423 if (!ptrace32 (PTT_READ_FPRS, tid, (uintptr_t) fprs, 0, NULL))
424 memset (fprs, 0, sizeof (fprs));
425 memcpy (context->fpr, fprs, sizeof(fprs));
428 /* Special-purpose registers. */
429 if (flags & PTHDB_FLAG_SPRS)
431 if (arch64)
433 if (!ptrace64aix (PTT_READ_SPRS, tid,
434 (unsigned long) &sprs64, 0, NULL))
435 memset (&sprs64, 0, sizeof (sprs64));
436 memcpy (&context->msr, &sprs64, sizeof(sprs64));
438 else
440 if (!ptrace32 (PTT_READ_SPRS, tid, (uintptr_t) &sprs32, 0, NULL))
441 memset (&sprs32, 0, sizeof (sprs32));
442 memcpy (&context->msr, &sprs32, sizeof(sprs32));
445 return 0;
448 /* Write register function should be able to write requested context
449 information to specified debuggee's kernel thread id.
450 If successful return 0, else non-zero is returned. */
452 static int
453 pdc_write_regs (pthdb_user_t user,
454 pthdb_tid_t tid,
455 unsigned long long flags,
456 pthdb_context_t *context)
458 /* This function doesn't appear to be used, so we could probably
459 just return 0 here. HOWEVER, if it is not defined, the OS will
460 complain and several thread debug functions will fail. In case
461 this is needed, I have implemented what I think it should do,
462 however this code is untested. */
464 if (debug_aix_thread)
465 fprintf_unfiltered (gdb_stdlog, "pdc_write_regs tid=%d flags=%s\n",
466 (int) tid, hex_string (flags));
468 /* General-purpose registers. */
469 if (flags & PTHDB_FLAG_GPRS)
471 if (arch64)
472 ptrace64aix (PTT_WRITE_GPRS, tid,
473 (unsigned long) context->gpr, 0, NULL);
474 else
475 ptrace32 (PTT_WRITE_GPRS, tid, (uintptr_t) context->gpr, 0, NULL);
478 /* Floating-point registers. */
479 if (flags & PTHDB_FLAG_FPRS)
481 ptrace32 (PTT_WRITE_FPRS, tid, (uintptr_t) context->fpr, 0, NULL);
484 /* Special-purpose registers. */
485 if (flags & PTHDB_FLAG_SPRS)
487 if (arch64)
489 ptrace64aix (PTT_WRITE_SPRS, tid,
490 (unsigned long) &context->msr, 0, NULL);
492 else
494 ptrace32 (PTT_WRITE_SPRS, tid, (uintptr_t) &context->msr, 0, NULL);
497 return 0;
500 /* pthdb callback: read LEN bytes from process ADDR into BUF. */
502 static int
503 pdc_read_data (pthdb_user_t user, void *buf,
504 pthdb_addr_t addr, size_t len)
506 int status, ret;
508 if (debug_aix_thread)
509 fprintf_unfiltered (gdb_stdlog,
510 "pdc_read_data (user = %ld, buf = 0x%lx, addr = %s, len = %ld)\n",
511 user, (long) buf, hex_string (addr), len);
513 status = target_read_memory (addr, (gdb_byte *) buf, len);
514 ret = status == 0 ? PDC_SUCCESS : PDC_FAILURE;
516 if (debug_aix_thread)
517 fprintf_unfiltered (gdb_stdlog, " status=%d, returning %s\n",
518 status, pd_status2str (ret));
519 return ret;
522 /* pthdb callback: write LEN bytes from BUF to process ADDR. */
524 static int
525 pdc_write_data (pthdb_user_t user, void *buf,
526 pthdb_addr_t addr, size_t len)
528 int status, ret;
530 if (debug_aix_thread)
531 fprintf_unfiltered (gdb_stdlog,
532 "pdc_write_data (user = %ld, buf = 0x%lx, addr = %s, len = %ld)\n",
533 user, (long) buf, hex_string (addr), len);
535 status = target_write_memory (addr, (gdb_byte *) buf, len);
536 ret = status == 0 ? PDC_SUCCESS : PDC_FAILURE;
538 if (debug_aix_thread)
539 fprintf_unfiltered (gdb_stdlog, " status=%d, returning %s\n", status,
540 pd_status2str (ret));
541 return ret;
544 /* pthdb callback: allocate a LEN-byte buffer and store a pointer to it
545 in BUFP. */
547 static int
548 pdc_alloc (pthdb_user_t user, size_t len, void **bufp)
550 if (debug_aix_thread)
551 fprintf_unfiltered (gdb_stdlog,
552 "pdc_alloc (user = %ld, len = %ld, bufp = 0x%lx)\n",
553 user, len, (long) bufp);
554 *bufp = xmalloc (len);
555 if (debug_aix_thread)
556 fprintf_unfiltered (gdb_stdlog,
557 " malloc returned 0x%lx\n", (long) *bufp);
559 /* Note: xmalloc() can't return 0; therefore PDC_FAILURE will never
560 be returned. */
562 return *bufp ? PDC_SUCCESS : PDC_FAILURE;
565 /* pthdb callback: reallocate BUF, which was allocated by the alloc or
566 realloc callback, so that it contains LEN bytes, and store a
567 pointer to the result in BUFP. */
569 static int
570 pdc_realloc (pthdb_user_t user, void *buf, size_t len, void **bufp)
572 if (debug_aix_thread)
573 fprintf_unfiltered (gdb_stdlog,
574 "pdc_realloc (user = %ld, buf = 0x%lx, len = %ld, bufp = 0x%lx)\n",
575 user, (long) buf, len, (long) bufp);
576 *bufp = xrealloc (buf, len);
577 if (debug_aix_thread)
578 fprintf_unfiltered (gdb_stdlog,
579 " realloc returned 0x%lx\n", (long) *bufp);
580 return *bufp ? PDC_SUCCESS : PDC_FAILURE;
583 /* pthdb callback: free BUF, which was allocated by the alloc or
584 realloc callback. */
586 static int
587 pdc_dealloc (pthdb_user_t user, void *buf)
589 if (debug_aix_thread)
590 fprintf_unfiltered (gdb_stdlog,
591 "pdc_free (user = %ld, buf = 0x%lx)\n", user,
592 (long) buf);
593 xfree (buf);
594 return PDC_SUCCESS;
597 /* Return a printable representation of pthread STATE. */
599 static char *
600 state2str (pthdb_state_t state)
602 switch (state)
604 case PST_IDLE:
605 /* i18n: Like "Thread-Id %d, [state] idle" */
606 return _("idle"); /* being created */
607 case PST_RUN:
608 /* i18n: Like "Thread-Id %d, [state] running" */
609 return _("running"); /* running */
610 case PST_SLEEP:
611 /* i18n: Like "Thread-Id %d, [state] sleeping" */
612 return _("sleeping"); /* awaiting an event */
613 case PST_READY:
614 /* i18n: Like "Thread-Id %d, [state] ready" */
615 return _("ready"); /* runnable */
616 case PST_TERM:
617 /* i18n: Like "Thread-Id %d, [state] finished" */
618 return _("finished"); /* awaiting a join/detach */
619 default:
620 /* i18n: Like "Thread-Id %d, [state] unknown" */
621 return _("unknown");
625 /* qsort() comparison function for sorting pd_thread structs by pthid. */
627 static int
628 pcmp (const void *p1v, const void *p2v)
630 struct pd_thread *p1 = (struct pd_thread *) p1v;
631 struct pd_thread *p2 = (struct pd_thread *) p2v;
632 return p1->pthid < p2->pthid ? -1 : p1->pthid > p2->pthid;
635 /* iterate_over_threads() callback for counting GDB threads.
637 Do not count the main thread (whose tid is zero). This matches
638 the list of threads provided by the pthreaddebug library, which
639 does not include that main thread either, and thus allows us
640 to compare the two lists. */
642 static int
643 giter_count (struct thread_info *thread, void *countp)
645 if (PD_TID (thread->ptid))
646 (*(int *) countp)++;
647 return 0;
650 /* iterate_over_threads() callback for accumulating GDB thread pids.
652 Do not include the main thread (whose tid is zero). This matches
653 the list of threads provided by the pthreaddebug library, which
654 does not include that main thread either, and thus allows us
655 to compare the two lists. */
657 static int
658 giter_accum (struct thread_info *thread, void *bufp)
660 if (PD_TID (thread->ptid))
662 **(struct thread_info ***) bufp = thread;
663 (*(struct thread_info ***) bufp)++;
665 return 0;
668 /* ptid comparison function */
670 static int
671 ptid_cmp (ptid_t ptid1, ptid_t ptid2)
673 if (ptid1.pid () < ptid2.pid ())
674 return -1;
675 else if (ptid1.pid () > ptid2.pid ())
676 return 1;
677 else if (ptid1.tid () < ptid2.tid ())
678 return -1;
679 else if (ptid1.tid () > ptid2.tid ())
680 return 1;
681 else if (ptid1.lwp () < ptid2.lwp ())
682 return -1;
683 else if (ptid1.lwp () > ptid2.lwp ())
684 return 1;
685 else
686 return 0;
689 /* qsort() comparison function for sorting thread_info structs by pid. */
691 static int
692 gcmp (const void *t1v, const void *t2v)
694 struct thread_info *t1 = *(struct thread_info **) t1v;
695 struct thread_info *t2 = *(struct thread_info **) t2v;
696 return ptid_cmp (t1->ptid, t2->ptid);
699 /* Search through the list of all kernel threads for the thread
700 that has stopped on a SIGTRAP signal, and return its TID.
701 Return 0 if none found. */
703 static pthdb_tid_t
704 get_signaled_thread (void)
706 struct thrdsinfo64 thrinf;
707 tid_t ktid = 0;
709 while (1)
711 if (getthrds (inferior_ptid.pid (), &thrinf,
712 sizeof (thrinf), &ktid, 1) != 1)
713 break;
715 if (thrinf.ti_cursig == SIGTRAP)
716 return thrinf.ti_tid;
719 /* Didn't find any thread stopped on a SIGTRAP signal. */
720 return 0;
723 /* Synchronize GDB's thread list with libpthdebug's.
725 There are some benefits of doing this every time the inferior stops:
727 - allows users to run thread-specific commands without needing to
728 run "info threads" first
730 - helps pthdb_tid_pthread() work properly (see "libpthdebug
731 peculiarities" at the top of this module)
733 - simplifies the demands placed on libpthdebug, which seems to
734 have difficulty with certain call patterns */
736 static void
737 sync_threadlists (void)
739 int cmd, status, infpid;
740 int pcount, psize, pi, gcount, gi;
741 struct pd_thread *pbuf;
742 struct thread_info **gbuf, **g, *thread;
743 pthdb_pthread_t pdtid;
744 pthread_t pthid;
745 pthdb_tid_t tid;
747 /* Accumulate an array of libpthdebug threads sorted by pthread id. */
749 pcount = 0;
750 psize = 1;
751 pbuf = XNEWVEC (struct pd_thread, psize);
753 for (cmd = PTHDB_LIST_FIRST;; cmd = PTHDB_LIST_NEXT)
755 status = pthdb_pthread (pd_session, &pdtid, cmd);
756 if (status != PTHDB_SUCCESS || pdtid == PTHDB_INVALID_PTHREAD)
757 break;
759 status = pthdb_pthread_ptid (pd_session, pdtid, &pthid);
760 if (status != PTHDB_SUCCESS || pthid == PTHDB_INVALID_PTID)
761 continue;
763 if (pcount == psize)
765 psize *= 2;
766 pbuf = (struct pd_thread *) xrealloc (pbuf,
767 psize * sizeof *pbuf);
769 pbuf[pcount].pdtid = pdtid;
770 pbuf[pcount].pthid = pthid;
771 pcount++;
774 for (pi = 0; pi < pcount; pi++)
776 status = pthdb_pthread_tid (pd_session, pbuf[pi].pdtid, &tid);
777 if (status != PTHDB_SUCCESS)
778 tid = PTHDB_INVALID_TID;
779 pbuf[pi].tid = tid;
782 qsort (pbuf, pcount, sizeof *pbuf, pcmp);
784 /* Accumulate an array of GDB threads sorted by pid. */
786 gcount = 0;
787 iterate_over_threads (giter_count, &gcount);
788 g = gbuf = XNEWVEC (struct thread_info *, gcount);
789 iterate_over_threads (giter_accum, &g);
790 qsort (gbuf, gcount, sizeof *gbuf, gcmp);
792 /* Apply differences between the two arrays to GDB's thread list. */
794 infpid = inferior_ptid.pid ();
795 for (pi = gi = 0; pi < pcount || gi < gcount;)
797 if (pi == pcount)
799 delete_thread (gbuf[gi]);
800 gi++;
802 else if (gi == gcount)
804 aix_thread_info *priv = new aix_thread_info;
805 priv->pdtid = pbuf[pi].pdtid;
806 priv->tid = pbuf[pi].tid;
808 thread = add_thread_with_info (ptid_t (infpid, 0, pbuf[pi].pthid), priv);
810 pi++;
812 else
814 ptid_t pptid, gptid;
815 int cmp_result;
817 pptid = ptid_t (infpid, 0, pbuf[pi].pthid);
818 gptid = gbuf[gi]->ptid;
819 pdtid = pbuf[pi].pdtid;
820 tid = pbuf[pi].tid;
822 cmp_result = ptid_cmp (pptid, gptid);
824 if (cmp_result == 0)
826 aix_thread_info *priv = get_aix_thread_info (gbuf[gi]);
828 priv->pdtid = pdtid;
829 priv->tid = tid;
830 pi++;
831 gi++;
833 else if (cmp_result > 0)
835 delete_thread (gbuf[gi]);
836 gi++;
838 else
840 thread = add_thread (pptid);
842 aix_thread_info *priv = new aix_thread_info;
843 thread->priv.reset (priv);
844 priv->pdtid = pdtid;
845 priv->tid = tid;
846 pi++;
851 xfree (pbuf);
852 xfree (gbuf);
855 /* Iterate_over_threads() callback for locating a thread, using
856 the TID of its associated kernel thread. */
858 static int
859 iter_tid (struct thread_info *thread, void *tidp)
861 const pthdb_tid_t tid = *(pthdb_tid_t *)tidp;
862 aix_thread_info *priv = get_aix_thread_info (thread);
864 return priv->tid == tid;
867 /* Synchronize libpthdebug's state with the inferior and with GDB,
868 generate a composite process/thread <pid> for the current thread,
869 set inferior_ptid to <pid> if SET_INFPID, and return <pid>. */
871 static ptid_t
872 pd_update (int set_infpid)
874 int status;
875 ptid_t ptid;
876 pthdb_tid_t tid;
877 struct thread_info *thread = NULL;
879 if (!pd_active)
880 return inferior_ptid;
882 status = pthdb_session_update (pd_session);
883 if (status != PTHDB_SUCCESS)
884 return inferior_ptid;
886 sync_threadlists ();
888 /* Define "current thread" as one that just received a trap signal. */
890 tid = get_signaled_thread ();
891 if (tid != 0)
892 thread = iterate_over_threads (iter_tid, &tid);
893 if (!thread)
894 ptid = inferior_ptid;
895 else
897 ptid = thread->ptid;
898 if (set_infpid)
899 inferior_ptid = ptid;
901 return ptid;
904 /* Try to start debugging threads in the current process.
905 If successful and SET_INFPID, set inferior_ptid to reflect the
906 current thread. */
908 static ptid_t
909 pd_activate (int set_infpid)
911 int status;
913 status = pthdb_session_init (PD_USER, arch64 ? PEM_64BIT : PEM_32BIT,
914 PTHDB_FLAG_REGS, &pd_callbacks,
915 &pd_session);
916 if (status != PTHDB_SUCCESS)
918 return inferior_ptid;
920 pd_active = 1;
921 return pd_update (set_infpid);
924 /* Undo the effects of pd_activate(). */
926 static void
927 pd_deactivate (void)
929 if (!pd_active)
930 return;
931 pthdb_session_destroy (pd_session);
933 pid_to_prc (&inferior_ptid);
934 pd_active = 0;
937 /* An object file has just been loaded. Check whether the current
938 application is pthreaded, and if so, prepare for thread debugging. */
940 static void
941 pd_enable (void)
943 int status;
944 char *stub_name;
945 struct bound_minimal_symbol ms;
947 /* Don't initialize twice. */
948 if (pd_able)
949 return;
951 /* Check application word size. */
952 arch64 = register_size (target_gdbarch (), 0) == 8;
954 /* Check whether the application is pthreaded. */
955 stub_name = NULL;
956 status = pthdb_session_pthreaded (PD_USER, PTHDB_FLAG_REGS,
957 &pd_callbacks, &stub_name);
958 if ((status != PTHDB_SUCCESS
959 && status != PTHDB_NOT_PTHREADED) || !stub_name)
960 return;
962 /* Set a breakpoint on the returned stub function. */
963 ms = lookup_minimal_symbol (stub_name, NULL, NULL);
964 if (ms.minsym == NULL)
965 return;
966 pd_brk_addr = BMSYMBOL_VALUE_ADDRESS (ms);
967 if (!create_thread_event_breakpoint (target_gdbarch (), pd_brk_addr))
968 return;
970 /* Prepare for thread debugging. */
971 push_target (&aix_thread_ops);
972 pd_able = 1;
974 /* If we're debugging a core file or an attached inferior, the
975 pthread library may already have been initialized, so try to
976 activate thread debugging. */
977 pd_activate (1);
980 /* Undo the effects of pd_enable(). */
982 static void
983 pd_disable (void)
985 if (!pd_able)
986 return;
987 if (pd_active)
988 pd_deactivate ();
989 pd_able = 0;
990 unpush_target (&aix_thread_ops);
993 /* new_objfile observer callback.
995 If OBJFILE is non-null, check whether a threaded application is
996 being debugged, and if so, prepare for thread debugging.
998 If OBJFILE is null, stop debugging threads. */
1000 static void
1001 new_objfile (struct objfile *objfile)
1003 if (objfile)
1004 pd_enable ();
1005 else
1006 pd_disable ();
1009 /* Attach to process specified by ARGS. */
1011 static void
1012 aix_thread_inferior_created (struct target_ops *ops, int from_tty)
1014 pd_enable ();
1017 /* Detach from the process attached to by aix_thread_attach(). */
1019 void
1020 aix_thread_target::detach (inferior *inf, int from_tty)
1022 target_ops *beneath = this->beneath ();
1024 pd_disable ();
1025 beneath->detach (inf, from_tty);
1028 /* Tell the inferior process to continue running thread PID if != -1
1029 and all threads otherwise. */
1031 void
1032 aix_thread_target::resume (ptid_t ptid, int step, enum gdb_signal sig)
1034 struct thread_info *thread;
1035 pthdb_tid_t tid[2];
1037 if (!PD_TID (ptid))
1039 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
1041 inferior_ptid = ptid_t (inferior_ptid.pid ());
1042 beneath ()->resume (ptid, step, sig);
1044 else
1046 thread = find_thread_ptid (ptid);
1047 if (!thread)
1048 error (_("aix-thread resume: unknown pthread %ld"),
1049 ptid.lwp ());
1051 aix_thread_info *priv = get_aix_thread_info (thread);
1053 tid[0] = priv->tid;
1054 if (tid[0] == PTHDB_INVALID_TID)
1055 error (_("aix-thread resume: no tid for pthread %ld"),
1056 ptid.lwp ());
1057 tid[1] = 0;
1059 if (arch64)
1060 ptrace64aix (PTT_CONTINUE, tid[0], (long long) 1,
1061 gdb_signal_to_host (sig), (PTRACE_TYPE_ARG5) tid);
1062 else
1063 ptrace32 (PTT_CONTINUE, tid[0], (addr_ptr) 1,
1064 gdb_signal_to_host (sig), (PTRACE_TYPE_ARG5) tid);
1068 /* Wait for thread/process ID if != -1 or for any thread otherwise.
1069 If an error occurs, return -1, else return the pid of the stopped
1070 thread. */
1072 ptid_t
1073 aix_thread_target::wait (ptid_t ptid, struct target_waitstatus *status,
1074 int options)
1077 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
1079 pid_to_prc (&ptid);
1081 inferior_ptid = ptid_t (inferior_ptid.pid ());
1082 ptid = beneath ()->wait (ptid, status, options);
1085 if (ptid.pid () == -1)
1086 return ptid_t (-1);
1088 /* Check whether libpthdebug might be ready to be initialized. */
1089 if (!pd_active && status->kind == TARGET_WAITKIND_STOPPED
1090 && status->value.sig == GDB_SIGNAL_TRAP)
1092 struct regcache *regcache = get_thread_regcache (ptid);
1093 struct gdbarch *gdbarch = regcache->arch ();
1095 if (regcache_read_pc (regcache)
1096 - gdbarch_decr_pc_after_break (gdbarch) == pd_brk_addr)
1097 return pd_activate (0);
1100 return pd_update (0);
1103 /* Record that the 64-bit general-purpose registers contain VALS. */
1105 static void
1106 supply_gprs64 (struct regcache *regcache, uint64_t *vals)
1108 struct gdbarch_tdep *tdep = gdbarch_tdep (regcache->arch ());
1109 int regno;
1111 for (regno = 0; regno < ppc_num_gprs; regno++)
1112 regcache->raw_supply (tdep->ppc_gp0_regnum + regno,
1113 (char *) (vals + regno));
1116 /* Record that 32-bit register REGNO contains VAL. */
1118 static void
1119 supply_reg32 (struct regcache *regcache, int regno, uint32_t val)
1121 regcache->raw_supply (regno, (char *) &val);
1124 /* Record that the floating-point registers contain VALS. */
1126 static void
1127 supply_fprs (struct regcache *regcache, double *vals)
1129 struct gdbarch *gdbarch = regcache->arch ();
1130 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1131 int regno;
1133 /* This function should never be called on architectures without
1134 floating-point registers. */
1135 gdb_assert (ppc_floating_point_unit_p (gdbarch));
1137 for (regno = tdep->ppc_fp0_regnum;
1138 regno < tdep->ppc_fp0_regnum + ppc_num_fprs;
1139 regno++)
1140 regcache->raw_supply (regno,
1141 (char *) (vals + regno - tdep->ppc_fp0_regnum));
1144 /* Predicate to test whether given register number is a "special" register. */
1145 static int
1146 special_register_p (struct gdbarch *gdbarch, int regno)
1148 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1150 return regno == gdbarch_pc_regnum (gdbarch)
1151 || regno == tdep->ppc_ps_regnum
1152 || regno == tdep->ppc_cr_regnum
1153 || regno == tdep->ppc_lr_regnum
1154 || regno == tdep->ppc_ctr_regnum
1155 || regno == tdep->ppc_xer_regnum
1156 || (tdep->ppc_fpscr_regnum >= 0 && regno == tdep->ppc_fpscr_regnum)
1157 || (tdep->ppc_mq_regnum >= 0 && regno == tdep->ppc_mq_regnum);
1161 /* Record that the special registers contain the specified 64-bit and
1162 32-bit values. */
1164 static void
1165 supply_sprs64 (struct regcache *regcache,
1166 uint64_t iar, uint64_t msr, uint32_t cr,
1167 uint64_t lr, uint64_t ctr, uint32_t xer,
1168 uint32_t fpscr)
1170 struct gdbarch *gdbarch = regcache->arch ();
1171 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1173 regcache->raw_supply (gdbarch_pc_regnum (gdbarch), (char *) &iar);
1174 regcache->raw_supply (tdep->ppc_ps_regnum, (char *) &msr);
1175 regcache->raw_supply (tdep->ppc_cr_regnum, (char *) &cr);
1176 regcache->raw_supply (tdep->ppc_lr_regnum, (char *) &lr);
1177 regcache->raw_supply (tdep->ppc_ctr_regnum, (char *) &ctr);
1178 regcache->raw_supply (tdep->ppc_xer_regnum, (char *) &xer);
1179 if (tdep->ppc_fpscr_regnum >= 0)
1180 regcache->raw_supply (tdep->ppc_fpscr_regnum, (char *) &fpscr);
1183 /* Record that the special registers contain the specified 32-bit
1184 values. */
1186 static void
1187 supply_sprs32 (struct regcache *regcache,
1188 uint32_t iar, uint32_t msr, uint32_t cr,
1189 uint32_t lr, uint32_t ctr, uint32_t xer,
1190 uint32_t fpscr)
1192 struct gdbarch *gdbarch = regcache->arch ();
1193 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1195 regcache->raw_supply (gdbarch_pc_regnum (gdbarch), (char *) &iar);
1196 regcache->raw_supply (tdep->ppc_ps_regnum, (char *) &msr);
1197 regcache->raw_supply (tdep->ppc_cr_regnum, (char *) &cr);
1198 regcache->raw_supply (tdep->ppc_lr_regnum, (char *) &lr);
1199 regcache->raw_supply (tdep->ppc_ctr_regnum, (char *) &ctr);
1200 regcache->raw_supply (tdep->ppc_xer_regnum, (char *) &xer);
1201 if (tdep->ppc_fpscr_regnum >= 0)
1202 regcache->raw_supply (tdep->ppc_fpscr_regnum, (char *) &fpscr);
1205 /* Fetch all registers from pthread PDTID, which doesn't have a kernel
1206 thread.
1208 There's no way to query a single register from a non-kernel
1209 pthread, so there's no need for a single-register version of this
1210 function. */
1212 static void
1213 fetch_regs_user_thread (struct regcache *regcache, pthdb_pthread_t pdtid)
1215 struct gdbarch *gdbarch = regcache->arch ();
1216 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1217 int status, i;
1218 pthdb_context_t ctx;
1220 if (debug_aix_thread)
1221 fprintf_unfiltered (gdb_stdlog,
1222 "fetch_regs_user_thread %lx\n", (long) pdtid);
1223 status = pthdb_pthread_context (pd_session, pdtid, &ctx);
1224 if (status != PTHDB_SUCCESS)
1225 error (_("aix-thread: fetch_registers: pthdb_pthread_context returned %s"),
1226 pd_status2str (status));
1228 /* General-purpose registers. */
1230 if (arch64)
1231 supply_gprs64 (regcache, ctx.gpr);
1232 else
1233 for (i = 0; i < ppc_num_gprs; i++)
1234 supply_reg32 (regcache, tdep->ppc_gp0_regnum + i, ctx.gpr[i]);
1236 /* Floating-point registers. */
1238 if (ppc_floating_point_unit_p (gdbarch))
1239 supply_fprs (regcache, ctx.fpr);
1241 /* Special registers. */
1243 if (arch64)
1244 supply_sprs64 (regcache, ctx.iar, ctx.msr, ctx.cr, ctx.lr, ctx.ctr,
1245 ctx.xer, ctx.fpscr);
1246 else
1247 supply_sprs32 (regcache, ctx.iar, ctx.msr, ctx.cr, ctx.lr, ctx.ctr,
1248 ctx.xer, ctx.fpscr);
1251 /* Fetch register REGNO if != -1 or all registers otherwise from
1252 kernel thread TID.
1254 AIX provides a way to query all of a kernel thread's GPRs, FPRs, or
1255 SPRs, but there's no way to query individual registers within those
1256 groups. Therefore, if REGNO != -1, this function fetches an entire
1257 group.
1259 Unfortunately, kernel thread register queries often fail with
1260 EPERM, indicating that the thread is in kernel space. This breaks
1261 backtraces of threads other than the current one. To make that
1262 breakage obvious without throwing an error to top level (which is
1263 bad e.g. during "info threads" output), zero registers that can't
1264 be retrieved. */
1266 static void
1267 fetch_regs_kernel_thread (struct regcache *regcache, int regno,
1268 pthdb_tid_t tid)
1270 struct gdbarch *gdbarch = regcache->arch ();
1271 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1272 uint64_t gprs64[ppc_num_gprs];
1273 uint32_t gprs32[ppc_num_gprs];
1274 double fprs[ppc_num_fprs];
1275 struct ptxsprs sprs64;
1276 struct ptsprs sprs32;
1277 int i;
1279 if (debug_aix_thread)
1280 fprintf_unfiltered (gdb_stdlog,
1281 "fetch_regs_kernel_thread tid=%lx regno=%d arch64=%d\n",
1282 (long) tid, regno, arch64);
1284 /* General-purpose registers. */
1285 if (regno == -1
1286 || (tdep->ppc_gp0_regnum <= regno
1287 && regno < tdep->ppc_gp0_regnum + ppc_num_gprs))
1289 if (arch64)
1291 if (!ptrace64aix (PTT_READ_GPRS, tid,
1292 (unsigned long) gprs64, 0, NULL))
1293 memset (gprs64, 0, sizeof (gprs64));
1294 supply_gprs64 (regcache, gprs64);
1296 else
1298 if (!ptrace32 (PTT_READ_GPRS, tid, (uintptr_t) gprs32, 0, NULL))
1299 memset (gprs32, 0, sizeof (gprs32));
1300 for (i = 0; i < ppc_num_gprs; i++)
1301 supply_reg32 (regcache, tdep->ppc_gp0_regnum + i, gprs32[i]);
1305 /* Floating-point registers. */
1307 if (ppc_floating_point_unit_p (gdbarch)
1308 && (regno == -1
1309 || (regno >= tdep->ppc_fp0_regnum
1310 && regno < tdep->ppc_fp0_regnum + ppc_num_fprs)))
1312 if (!ptrace32 (PTT_READ_FPRS, tid, (uintptr_t) fprs, 0, NULL))
1313 memset (fprs, 0, sizeof (fprs));
1314 supply_fprs (regcache, fprs);
1317 /* Special-purpose registers. */
1319 if (regno == -1 || special_register_p (gdbarch, regno))
1321 if (arch64)
1323 if (!ptrace64aix (PTT_READ_SPRS, tid,
1324 (unsigned long) &sprs64, 0, NULL))
1325 memset (&sprs64, 0, sizeof (sprs64));
1326 supply_sprs64 (regcache, sprs64.pt_iar, sprs64.pt_msr,
1327 sprs64.pt_cr, sprs64.pt_lr, sprs64.pt_ctr,
1328 sprs64.pt_xer, sprs64.pt_fpscr);
1330 else
1332 if (!ptrace32 (PTT_READ_SPRS, tid, (uintptr_t) &sprs32, 0, NULL))
1333 memset (&sprs32, 0, sizeof (sprs32));
1334 supply_sprs32 (regcache, sprs32.pt_iar, sprs32.pt_msr, sprs32.pt_cr,
1335 sprs32.pt_lr, sprs32.pt_ctr, sprs32.pt_xer,
1336 sprs32.pt_fpscr);
1338 if (tdep->ppc_mq_regnum >= 0)
1339 regcache->raw_supply (tdep->ppc_mq_regnum, (char *) &sprs32.pt_mq);
1344 /* Fetch register REGNO if != -1 or all registers otherwise from the
1345 thread/process connected to REGCACHE. */
1347 void
1348 aix_thread_target::fetch_registers (struct regcache *regcache, int regno)
1350 struct thread_info *thread;
1351 pthdb_tid_t tid;
1353 if (!PD_TID (regcache->ptid ()))
1354 beneath ()->fetch_registers (regcache, regno);
1355 else
1357 thread = find_thread_ptid (regcache->ptid ());
1358 aix_thread_info *priv = get_aix_thread_info (thread);
1359 tid = priv->tid;
1361 if (tid == PTHDB_INVALID_TID)
1362 fetch_regs_user_thread (regcache, priv->pdtid);
1363 else
1364 fetch_regs_kernel_thread (regcache, regno, tid);
1368 /* Store the gp registers into an array of uint32_t or uint64_t. */
1370 static void
1371 fill_gprs64 (const struct regcache *regcache, uint64_t *vals)
1373 struct gdbarch_tdep *tdep = gdbarch_tdep (regcache->arch ());
1374 int regno;
1376 for (regno = 0; regno < ppc_num_gprs; regno++)
1377 if (REG_VALID == regcache->get_register_status
1378 (tdep->ppc_gp0_regnum + regno))
1379 regcache->raw_collect (tdep->ppc_gp0_regnum + regno, vals + regno);
1382 static void
1383 fill_gprs32 (const struct regcache *regcache, uint32_t *vals)
1385 struct gdbarch_tdep *tdep = gdbarch_tdep (regcache->arch ());
1386 int regno;
1388 for (regno = 0; regno < ppc_num_gprs; regno++)
1389 if (REG_VALID == regcache->get_register_status
1390 (tdep->ppc_gp0_regnum + regno))
1391 regcache->raw_collect (tdep->ppc_gp0_regnum + regno, vals + regno);
1394 /* Store the floating point registers into a double array. */
1395 static void
1396 fill_fprs (const struct regcache *regcache, double *vals)
1398 struct gdbarch *gdbarch = regcache->arch ();
1399 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1400 int regno;
1402 /* This function should never be called on architectures without
1403 floating-point registers. */
1404 gdb_assert (ppc_floating_point_unit_p (gdbarch));
1406 for (regno = tdep->ppc_fp0_regnum;
1407 regno < tdep->ppc_fp0_regnum + ppc_num_fprs;
1408 regno++)
1409 if (REG_VALID == regcache->get_register_status (regno))
1410 regcache->raw_collect (regno, vals + regno - tdep->ppc_fp0_regnum);
1413 /* Store the special registers into the specified 64-bit and 32-bit
1414 locations. */
1416 static void
1417 fill_sprs64 (const struct regcache *regcache,
1418 uint64_t *iar, uint64_t *msr, uint32_t *cr,
1419 uint64_t *lr, uint64_t *ctr, uint32_t *xer,
1420 uint32_t *fpscr)
1422 struct gdbarch *gdbarch = regcache->arch ();
1423 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1425 /* Verify that the size of the size of the IAR buffer is the
1426 same as the raw size of the PC (in the register cache). If
1427 they're not, then either GDB has been built incorrectly, or
1428 there's some other kind of internal error. To be really safe,
1429 we should check all of the sizes. */
1430 gdb_assert (sizeof (*iar) == register_size
1431 (gdbarch, gdbarch_pc_regnum (gdbarch)));
1433 if (REG_VALID == regcache->get_register_status (gdbarch_pc_regnum (gdbarch)))
1434 regcache->raw_collect (gdbarch_pc_regnum (gdbarch), iar);
1435 if (REG_VALID == regcache->get_register_status (tdep->ppc_ps_regnum))
1436 regcache->raw_collect (tdep->ppc_ps_regnum, msr);
1437 if (REG_VALID == regcache->get_register_status (tdep->ppc_cr_regnum))
1438 regcache->raw_collect (tdep->ppc_cr_regnum, cr);
1439 if (REG_VALID == regcache->get_register_status (tdep->ppc_lr_regnum))
1440 regcache->raw_collect (tdep->ppc_lr_regnum, lr);
1441 if (REG_VALID == regcache->get_register_status (tdep->ppc_ctr_regnum))
1442 regcache->raw_collect (tdep->ppc_ctr_regnum, ctr);
1443 if (REG_VALID == regcache->get_register_status (tdep->ppc_xer_regnum))
1444 regcache->raw_collect (tdep->ppc_xer_regnum, xer);
1445 if (tdep->ppc_fpscr_regnum >= 0
1446 && REG_VALID == regcache->get_register_status (tdep->ppc_fpscr_regnum))
1447 regcache->raw_collect (tdep->ppc_fpscr_regnum, fpscr);
1450 static void
1451 fill_sprs32 (const struct regcache *regcache,
1452 uint32_t *iar, uint32_t *msr, uint32_t *cr,
1453 uint32_t *lr, uint32_t *ctr, uint32_t *xer,
1454 uint32_t *fpscr)
1456 struct gdbarch *gdbarch = regcache->arch ();
1457 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1459 /* Verify that the size of the size of the IAR buffer is the
1460 same as the raw size of the PC (in the register cache). If
1461 they're not, then either GDB has been built incorrectly, or
1462 there's some other kind of internal error. To be really safe,
1463 we should check all of the sizes. */
1464 gdb_assert (sizeof (*iar) == register_size (gdbarch,
1465 gdbarch_pc_regnum (gdbarch)));
1467 if (REG_VALID == regcache->get_register_status (gdbarch_pc_regnum (gdbarch)))
1468 regcache->raw_collect (gdbarch_pc_regnum (gdbarch), iar);
1469 if (REG_VALID == regcache->get_register_status (tdep->ppc_ps_regnum))
1470 regcache->raw_collect (tdep->ppc_ps_regnum, msr);
1471 if (REG_VALID == regcache->get_register_status (tdep->ppc_cr_regnum))
1472 regcache->raw_collect (tdep->ppc_cr_regnum, cr);
1473 if (REG_VALID == regcache->get_register_status (tdep->ppc_lr_regnum))
1474 regcache->raw_collect (tdep->ppc_lr_regnum, lr);
1475 if (REG_VALID == regcache->get_register_status (tdep->ppc_ctr_regnum))
1476 regcache->raw_collect (tdep->ppc_ctr_regnum, ctr);
1477 if (REG_VALID == regcache->get_register_status (tdep->ppc_xer_regnum))
1478 regcache->raw_collect (tdep->ppc_xer_regnum, xer);
1479 if (tdep->ppc_fpscr_regnum >= 0
1480 && REG_VALID == regcache->get_register_status (tdep->ppc_fpscr_regnum))
1481 regcache->raw_collect (tdep->ppc_fpscr_regnum, fpscr);
1484 /* Store all registers into pthread PDTID, which doesn't have a kernel
1485 thread.
1487 It's possible to store a single register into a non-kernel pthread,
1488 but I doubt it's worth the effort. */
1490 static void
1491 store_regs_user_thread (const struct regcache *regcache, pthdb_pthread_t pdtid)
1493 struct gdbarch *gdbarch = regcache->arch ();
1494 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1495 int status, i;
1496 pthdb_context_t ctx;
1497 uint32_t int32;
1498 uint64_t int64;
1500 if (debug_aix_thread)
1501 fprintf_unfiltered (gdb_stdlog,
1502 "store_regs_user_thread %lx\n", (long) pdtid);
1504 /* Retrieve the thread's current context for its non-register
1505 values. */
1506 status = pthdb_pthread_context (pd_session, pdtid, &ctx);
1507 if (status != PTHDB_SUCCESS)
1508 error (_("aix-thread: store_registers: pthdb_pthread_context returned %s"),
1509 pd_status2str (status));
1511 /* Collect general-purpose register values from the regcache. */
1513 for (i = 0; i < ppc_num_gprs; i++)
1514 if (REG_VALID == regcache->get_register_status (tdep->ppc_gp0_regnum + i))
1516 if (arch64)
1518 regcache->raw_collect (tdep->ppc_gp0_regnum + i, (void *) &int64);
1519 ctx.gpr[i] = int64;
1521 else
1523 regcache->raw_collect (tdep->ppc_gp0_regnum + i, (void *) &int32);
1524 ctx.gpr[i] = int32;
1528 /* Collect floating-point register values from the regcache. */
1529 if (ppc_floating_point_unit_p (gdbarch))
1530 fill_fprs (regcache, ctx.fpr);
1532 /* Special registers (always kept in ctx as 64 bits). */
1533 if (arch64)
1535 fill_sprs64 (regcache, &ctx.iar, &ctx.msr, &ctx.cr, &ctx.lr, &ctx.ctr,
1536 &ctx.xer, &ctx.fpscr);
1538 else
1540 /* Problem: ctx.iar etc. are 64 bits, but raw_registers are 32.
1541 Solution: use 32-bit temp variables. */
1542 uint32_t tmp_iar, tmp_msr, tmp_cr, tmp_lr, tmp_ctr, tmp_xer,
1543 tmp_fpscr;
1545 fill_sprs32 (regcache, &tmp_iar, &tmp_msr, &tmp_cr, &tmp_lr, &tmp_ctr,
1546 &tmp_xer, &tmp_fpscr);
1547 if (REG_VALID == regcache->get_register_status
1548 (gdbarch_pc_regnum (gdbarch)))
1549 ctx.iar = tmp_iar;
1550 if (REG_VALID == regcache->get_register_status (tdep->ppc_ps_regnum))
1551 ctx.msr = tmp_msr;
1552 if (REG_VALID == regcache->get_register_status (tdep->ppc_cr_regnum))
1553 ctx.cr = tmp_cr;
1554 if (REG_VALID == regcache->get_register_status (tdep->ppc_lr_regnum))
1555 ctx.lr = tmp_lr;
1556 if (REG_VALID == regcache->get_register_status (tdep->ppc_ctr_regnum))
1557 ctx.ctr = tmp_ctr;
1558 if (REG_VALID == regcache->get_register_status (tdep->ppc_xer_regnum))
1559 ctx.xer = tmp_xer;
1560 if (REG_VALID == regcache->get_register_status (tdep->ppc_xer_regnum))
1561 ctx.fpscr = tmp_fpscr;
1564 status = pthdb_pthread_setcontext (pd_session, pdtid, &ctx);
1565 if (status != PTHDB_SUCCESS)
1566 error (_("aix-thread: store_registers: "
1567 "pthdb_pthread_setcontext returned %s"),
1568 pd_status2str (status));
1571 /* Store register REGNO if != -1 or all registers otherwise into
1572 kernel thread TID.
1574 AIX provides a way to set all of a kernel thread's GPRs, FPRs, or
1575 SPRs, but there's no way to set individual registers within those
1576 groups. Therefore, if REGNO != -1, this function stores an entire
1577 group. */
1579 static void
1580 store_regs_kernel_thread (const struct regcache *regcache, int regno,
1581 pthdb_tid_t tid)
1583 struct gdbarch *gdbarch = regcache->arch ();
1584 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1585 uint64_t gprs64[ppc_num_gprs];
1586 uint32_t gprs32[ppc_num_gprs];
1587 double fprs[ppc_num_fprs];
1588 struct ptxsprs sprs64;
1589 struct ptsprs sprs32;
1591 if (debug_aix_thread)
1592 fprintf_unfiltered (gdb_stdlog,
1593 "store_regs_kernel_thread tid=%lx regno=%d\n",
1594 (long) tid, regno);
1596 /* General-purpose registers. */
1597 if (regno == -1
1598 || (tdep->ppc_gp0_regnum <= regno
1599 && regno < tdep->ppc_gp0_regnum + ppc_num_fprs))
1601 if (arch64)
1603 /* Pre-fetch: some regs may not be in the cache. */
1604 ptrace64aix (PTT_READ_GPRS, tid, (unsigned long) gprs64, 0, NULL);
1605 fill_gprs64 (regcache, gprs64);
1606 ptrace64aix (PTT_WRITE_GPRS, tid, (unsigned long) gprs64, 0, NULL);
1608 else
1610 /* Pre-fetch: some regs may not be in the cache. */
1611 ptrace32 (PTT_READ_GPRS, tid, (uintptr_t) gprs32, 0, NULL);
1612 fill_gprs32 (regcache, gprs32);
1613 ptrace32 (PTT_WRITE_GPRS, tid, (uintptr_t) gprs32, 0, NULL);
1617 /* Floating-point registers. */
1619 if (ppc_floating_point_unit_p (gdbarch)
1620 && (regno == -1
1621 || (regno >= tdep->ppc_fp0_regnum
1622 && regno < tdep->ppc_fp0_regnum + ppc_num_fprs)))
1624 /* Pre-fetch: some regs may not be in the cache. */
1625 ptrace32 (PTT_READ_FPRS, tid, (uintptr_t) fprs, 0, NULL);
1626 fill_fprs (regcache, fprs);
1627 ptrace32 (PTT_WRITE_FPRS, tid, (uintptr_t) fprs, 0, NULL);
1630 /* Special-purpose registers. */
1632 if (regno == -1 || special_register_p (gdbarch, regno))
1634 if (arch64)
1636 /* Pre-fetch: some registers won't be in the cache. */
1637 ptrace64aix (PTT_READ_SPRS, tid,
1638 (unsigned long) &sprs64, 0, NULL);
1639 fill_sprs64 (regcache, &sprs64.pt_iar, &sprs64.pt_msr,
1640 &sprs64.pt_cr, &sprs64.pt_lr, &sprs64.pt_ctr,
1641 &sprs64.pt_xer, &sprs64.pt_fpscr);
1642 ptrace64aix (PTT_WRITE_SPRS, tid,
1643 (unsigned long) &sprs64, 0, NULL);
1645 else
1647 /* The contents of "struct ptspr" were declared as "unsigned
1648 long" up to AIX 5.2, but are "unsigned int" since 5.3.
1649 Use temporaries to work around this problem. Also, add an
1650 assert here to make sure we fail if the system header files
1651 use "unsigned long", and the size of that type is not what
1652 the headers expect. */
1653 uint32_t tmp_iar, tmp_msr, tmp_cr, tmp_lr, tmp_ctr, tmp_xer,
1654 tmp_fpscr;
1656 gdb_assert (sizeof (sprs32.pt_iar) == 4);
1658 /* Pre-fetch: some registers won't be in the cache. */
1659 ptrace32 (PTT_READ_SPRS, tid, (uintptr_t) &sprs32, 0, NULL);
1661 fill_sprs32 (regcache, &tmp_iar, &tmp_msr, &tmp_cr, &tmp_lr,
1662 &tmp_ctr, &tmp_xer, &tmp_fpscr);
1664 sprs32.pt_iar = tmp_iar;
1665 sprs32.pt_msr = tmp_msr;
1666 sprs32.pt_cr = tmp_cr;
1667 sprs32.pt_lr = tmp_lr;
1668 sprs32.pt_ctr = tmp_ctr;
1669 sprs32.pt_xer = tmp_xer;
1670 sprs32.pt_fpscr = tmp_fpscr;
1672 if (tdep->ppc_mq_regnum >= 0)
1673 if (REG_VALID == regcache->get_register_status
1674 (tdep->ppc_mq_regnum))
1675 regcache->raw_collect (tdep->ppc_mq_regnum, &sprs32.pt_mq);
1677 ptrace32 (PTT_WRITE_SPRS, tid, (uintptr_t) &sprs32, 0, NULL);
1682 /* Store gdb's current view of the register set into the
1683 thread/process connected to REGCACHE. */
1685 void
1686 aix_thread_target::store_registers (struct regcache *regcache, int regno)
1688 struct thread_info *thread;
1689 pthdb_tid_t tid;
1691 if (!PD_TID (regcache->ptid ()))
1692 beneath ()->store_registers (regcache, regno);
1693 else
1695 thread = find_thread_ptid (regcache->ptid ());
1696 aix_thread_info *priv = get_aix_thread_info (thread);
1697 tid = priv->tid;
1699 if (tid == PTHDB_INVALID_TID)
1700 store_regs_user_thread (regcache, priv->pdtid);
1701 else
1702 store_regs_kernel_thread (regcache, regno, tid);
1706 /* Implement the to_xfer_partial target_ops method. */
1708 enum target_xfer_status
1709 aix_thread_target::xfer_partial (enum target_object object,
1710 const char *annex, gdb_byte *readbuf,
1711 const gdb_byte *writebuf,
1712 ULONGEST offset, ULONGEST len,
1713 ULONGEST *xfered_len)
1715 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
1717 inferior_ptid = ptid_t (inferior_ptid.pid ());
1718 return beneath ()->xfer_partial (object, annex, readbuf,
1719 writebuf, offset, len, xfered_len);
1722 /* Clean up after the inferior exits. */
1724 void
1725 aix_thread_target::mourn_inferior ()
1727 target_ops *beneath = this->beneath ();
1729 pd_deactivate ();
1730 beneath->mourn_inferior ();
1733 /* Return whether thread PID is still valid. */
1735 bool
1736 aix_thread_target::thread_alive (ptid_t ptid)
1738 if (!PD_TID (ptid))
1739 return beneath ()->thread_alive (ptid);
1741 /* We update the thread list every time the child stops, so all
1742 valid threads should be in the thread list. */
1743 return in_thread_list (ptid);
1746 /* Return a printable representation of composite PID for use in
1747 "info threads" output. */
1749 std::string
1750 aix_thread_target::pid_to_str (ptid_t ptid)
1752 if (!PD_TID (ptid))
1753 return beneath ()->pid_to_str (ptid);
1755 return string_printf (_("Thread %ld"), ptid.tid ());
1758 /* Return a printable representation of extra information about
1759 THREAD, for use in "info threads" output. */
1761 const char *
1762 aix_thread_target::extra_thread_info (struct thread_info *thread)
1764 int status;
1765 pthdb_pthread_t pdtid;
1766 pthdb_tid_t tid;
1767 pthdb_state_t state;
1768 pthdb_suspendstate_t suspendstate;
1769 pthdb_detachstate_t detachstate;
1770 int cancelpend;
1771 static char *ret = NULL;
1773 if (!PD_TID (thread->ptid))
1774 return NULL;
1776 string_file buf;
1777 aix_thread_info *priv = get_aix_thread_info (thread);
1779 pdtid = priv->pdtid;
1780 tid = priv->tid;
1782 if (tid != PTHDB_INVALID_TID)
1783 /* i18n: Like "thread-identifier %d, [state] running, suspended" */
1784 buf.printf (_("tid %d"), (int)tid);
1786 status = pthdb_pthread_state (pd_session, pdtid, &state);
1787 if (status != PTHDB_SUCCESS)
1788 state = PST_NOTSUP;
1789 buf.printf (", %s", state2str (state));
1791 status = pthdb_pthread_suspendstate (pd_session, pdtid,
1792 &suspendstate);
1793 if (status == PTHDB_SUCCESS && suspendstate == PSS_SUSPENDED)
1794 /* i18n: Like "Thread-Id %d, [state] running, suspended" */
1795 buf.printf (_(", suspended"));
1797 status = pthdb_pthread_detachstate (pd_session, pdtid,
1798 &detachstate);
1799 if (status == PTHDB_SUCCESS && detachstate == PDS_DETACHED)
1800 /* i18n: Like "Thread-Id %d, [state] running, detached" */
1801 buf.printf (_(", detached"));
1803 pthdb_pthread_cancelpend (pd_session, pdtid, &cancelpend);
1804 if (status == PTHDB_SUCCESS && cancelpend)
1805 /* i18n: Like "Thread-Id %d, [state] running, cancel pending" */
1806 buf.printf (_(", cancel pending"));
1808 buf.write ("", 1);
1810 xfree (ret); /* Free old buffer. */
1812 ret = xstrdup (buf.c_str ());
1814 return ret;
1817 ptid_t
1818 aix_thread_target::get_ada_task_ptid (long lwp, long thread)
1820 return ptid_t (inferior_ptid.pid (), 0, thread);
1824 /* Module startup initialization function, automagically called by
1825 init.c. */
1827 void
1828 _initialize_aix_thread (void)
1830 /* Notice when object files get loaded and unloaded. */
1831 gdb::observers::new_objfile.attach (new_objfile);
1833 /* Add ourselves to inferior_created event chain.
1834 This is needed to enable the thread target on "attach". */
1835 gdb::observers::inferior_created.attach (aix_thread_inferior_created);
1837 add_setshow_boolean_cmd ("aix-thread", class_maintenance, &debug_aix_thread,
1838 _("Set debugging of AIX thread module."),
1839 _("Show debugging of AIX thread module."),
1840 _("Enables debugging output (used to debug GDB)."),
1841 NULL, NULL,
1842 /* FIXME: i18n: Debugging of AIX thread
1843 module is \"%d\". */
1844 &setdebuglist, &showdebuglist);