* aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
[deliverable/binutils-gdb.git] / gdb / aix-thread.c
1 /* Low level interface for debugging AIX 4.3+ pthreads.
2
3 Copyright 1999, 2000, 2002 Free Software Foundation, Inc.
4 Written by Nick Duffek <nsd@redhat.com>.
5
6 This file is part of GDB.
7
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 2 of the License, or
11 (at your option) any later version.
12
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.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23
24 /* This module uses the libpthdebug.a library provided by AIX 4.3+ for
25 debugging pthread applications.
26
27 Some name prefix conventions:
28 pthdb_ provided by libpthdebug.a
29 pdc_ callbacks that this module provides to libpthdebug.a
30 pd_ variables or functions interfacing with libpthdebug.a
31
32 libpthdebug peculiarities:
33
34 - pthdb_ptid_pthread() is prototyped in <sys/pthdebug.h>, but
35 it's not documented, and after several calls it stops working
36 and causes other libpthdebug functions to fail.
37
38 - pthdb_tid_pthread() doesn't always work after
39 pthdb_session_update(), but it does work after cycling through
40 all threads using pthdb_pthread().
41
42 */
43
44 #include "defs.h"
45 #include "gdb_assert.h"
46 #include "gdbthread.h"
47 #include "target.h"
48 #include "inferior.h"
49 #include "regcache.h"
50 #include "gdbcmd.h"
51 #include "language.h" /* for local_hex_string() */
52 #include "ppc-tdep.h"
53
54 #if 0
55 #include "coff/internal.h" /* for libcoff.h */
56 #include "bfd/libcoff.h" /* for xcoff_data */
57 #endif
58
59 #include <procinfo.h>
60 #include <sys/types.h>
61 #include <sys/ptrace.h>
62 #include <sys/reg.h>
63 #if 0
64 #include <pthread.h>
65 #endif
66 #include <sched.h>
67 #include <sys/pthdebug.h>
68
69 /* Whether to emit debugging output. */
70 static int debug_aix_thread;
71
72 /* In AIX 5.1, functions use pthdb_tid_t instead of tid_t. */
73 #ifndef PTHDB_VERSION_3
74 #define pthdb_tid_t tid_t
75 #endif
76
77 /* Return whether to treat PID as a debuggable thread id. */
78
79 #define PD_TID(ptid) (pd_active && ptid_get_tid (ptid) != 0)
80
81 /* Build a thread ptid. */
82 #define BUILD_THREAD(TID, PID) ptid_build (PID, 0, TID)
83
84 /* Build and lwp ptid. */
85 #define BUILD_LWP(LWP, PID) MERGEPID (PID, LWP)
86
87 /* pthdb_user_t value that we pass to pthdb functions. 0 causes
88 PTHDB_BAD_USER errors, so use 1. */
89
90 #define PD_USER 1
91
92 /* Success and failure values returned by pthdb callbacks. */
93
94 #define PDC_SUCCESS PTHDB_SUCCESS
95 #define PDC_FAILURE PTHDB_CALLBACK
96
97 /* Private data attached to each element in GDB's thread list. */
98
99 struct private_thread_info {
100 pthdb_pthread_t pdtid; /* thread's libpthdebug id */
101 pthdb_tid_t tid; /* kernel thread id */
102 };
103
104 /* Information about a thread of which libpthdebug is aware. */
105
106 struct pd_thread {
107 pthdb_pthread_t pdtid;
108 pthread_t pthid;
109 pthdb_tid_t tid;
110 };
111
112 /* This module's target-specific operations, active while pd_able is true. */
113
114 static struct target_ops aix_thread_ops;
115
116 /* Copy of the target over which ops is pushed.
117 This is more convenient than a pointer to child_ops or core_ops,
118 because they lack current_target's default callbacks. */
119
120 static struct target_ops base_target;
121
122 /* Address of the function that libpthread will call when libpthdebug
123 is ready to be initialized. */
124
125 static CORE_ADDR pd_brk_addr;
126
127 /* Whether the current application is debuggable by pthdb. */
128
129 static int pd_able = 0;
130
131 /* Whether a threaded application is being debugged. */
132
133 static int pd_active = 0;
134
135 /* Whether the current architecture is 64-bit.
136 Only valid when pd_able is true. */
137
138 static int arch64;
139
140 /* Saved pointer to previous owner of target_new_objfile_hook. */
141
142 static void (*target_new_objfile_chain)(struct objfile *);
143
144 /* Forward declarations for pthdb callbacks. */
145
146 static int pdc_symbol_addrs (pthdb_user_t, pthdb_symbol_t *, int);
147 static int pdc_read_data (pthdb_user_t, void *, pthdb_addr_t, size_t);
148 static int pdc_write_data (pthdb_user_t, void *, pthdb_addr_t, size_t);
149 static int pdc_read_regs (pthdb_user_t user, pthdb_tid_t tid,
150 unsigned long long flags,
151 pthdb_context_t *context);
152 static int pdc_write_regs (pthdb_user_t user, pthdb_tid_t tid,
153 unsigned long long flags,
154 pthdb_context_t *context);
155 static int pdc_alloc (pthdb_user_t, size_t, void **);
156 static int pdc_realloc (pthdb_user_t, void *, size_t, void **);
157 static int pdc_dealloc (pthdb_user_t, void *);
158
159 /* pthdb callbacks. */
160
161 static pthdb_callbacks_t pd_callbacks = {
162 pdc_symbol_addrs,
163 pdc_read_data,
164 pdc_write_data,
165 pdc_read_regs,
166 pdc_write_regs,
167 pdc_alloc,
168 pdc_realloc,
169 pdc_dealloc,
170 NULL
171 };
172
173 /* Current pthdb session. */
174
175 static pthdb_session_t pd_session;
176
177 /* Return a printable representation of pthdebug function return
178 STATUS. */
179
180 static char *
181 pd_status2str (int status)
182 {
183 switch (status)
184 {
185 case PTHDB_SUCCESS: return "SUCCESS";
186 case PTHDB_NOSYS: return "NOSYS";
187 case PTHDB_NOTSUP: return "NOTSUP";
188 case PTHDB_BAD_VERSION: return "BAD_VERSION";
189 case PTHDB_BAD_USER: return "BAD_USER";
190 case PTHDB_BAD_SESSION: return "BAD_SESSION";
191 case PTHDB_BAD_MODE: return "BAD_MODE";
192 case PTHDB_BAD_FLAGS: return "BAD_FLAGS";
193 case PTHDB_BAD_CALLBACK: return "BAD_CALLBACK";
194 case PTHDB_BAD_POINTER: return "BAD_POINTER";
195 case PTHDB_BAD_CMD: return "BAD_CMD";
196 case PTHDB_BAD_PTHREAD: return "BAD_PTHREAD";
197 case PTHDB_BAD_ATTR: return "BAD_ATTR";
198 case PTHDB_BAD_MUTEX: return "BAD_MUTEX";
199 case PTHDB_BAD_MUTEXATTR: return "BAD_MUTEXATTR";
200 case PTHDB_BAD_COND: return "BAD_COND";
201 case PTHDB_BAD_CONDATTR: return "BAD_CONDATTR";
202 case PTHDB_BAD_RWLOCK: return "BAD_RWLOCK";
203 case PTHDB_BAD_RWLOCKATTR: return "BAD_RWLOCKATTR";
204 case PTHDB_BAD_KEY: return "BAD_KEY";
205 case PTHDB_BAD_PTID: return "BAD_PTID";
206 case PTHDB_BAD_TID: return "BAD_TID";
207 case PTHDB_CALLBACK: return "CALLBACK";
208 case PTHDB_CONTEXT: return "CONTEXT";
209 case PTHDB_HELD: return "HELD";
210 case PTHDB_NOT_HELD: return "NOT_HELD";
211 case PTHDB_MEMORY: return "MEMORY";
212 case PTHDB_NOT_PTHREADED: return "NOT_PTHREADED";
213 case PTHDB_SYMBOL: return "SYMBOL";
214 case PTHDB_NOT_AVAIL: return "NOT_AVAIL";
215 case PTHDB_INTERNAL: return "INTERNAL";
216 default: return "UNKNOWN";
217 }
218 }
219
220 /* A call to ptrace(REQ, ID, ...) just returned RET. Check for
221 exceptional conditions and either return nonlocally or else return
222 1 for success and 0 for failure. */
223
224 static int
225 ptrace_check (int req, int id, int ret)
226 {
227 if (ret == 0 && !errno)
228 return 1;
229
230 /* According to ptrace(2), ptrace may fail with EPERM if "the
231 Identifier parameter corresponds to a kernel thread which is
232 stopped in kernel mode and whose computational state cannot be
233 read or written." This happens quite often with register reads. */
234
235 switch (req)
236 {
237 case PTT_READ_GPRS:
238 case PTT_READ_FPRS:
239 case PTT_READ_SPRS:
240 if (ret == -1 && errno == EPERM)
241 {
242 if (debug_aix_thread)
243 fprintf_unfiltered (gdb_stdlog,
244 "ptrace (%d, %d) = %d (errno = %d)\n",
245 req, id, ret, errno);
246 return ret == -1 ? 0 : 1;
247 }
248 break;
249 }
250 error ("aix-thread: ptrace (%d, %d) returned %d (errno = %d %s)",
251 req, id, ret, errno, safe_strerror (errno));
252 return 0; /* Not reached. */
253 }
254
255 /* Call ptracex (REQ, ID, ADDR, DATA, BUF). Return success. */
256
257 static int
258 ptrace64aix (int req, int id, long long addr, int data, int *buf)
259 {
260 errno = 0;
261 return ptrace_check (req, id, ptracex (req, id, addr, data, buf));
262 }
263
264 /* Call ptrace (REQ, ID, ADDR, DATA, BUF). Return success. */
265
266 static int
267 ptrace32 (int req, int id, int *addr, int data, int *buf)
268 {
269 errno = 0;
270 return ptrace_check (req, id,
271 ptrace (req, id, (int *) addr, data, buf));
272 }
273
274 /* If *PIDP is a composite process/thread id, convert it to a
275 process id. */
276
277 static void
278 pid_to_prc (ptid_t *ptidp)
279 {
280 ptid_t ptid;
281
282 ptid = *ptidp;
283 if (PD_TID (ptid))
284 *ptidp = pid_to_ptid (PIDGET (ptid));
285 }
286
287 /* pthdb callback: for <i> from 0 to COUNT, set SYMBOLS[<i>].addr to
288 the address of SYMBOLS[<i>].name. */
289
290 static int
291 pdc_symbol_addrs (pthdb_user_t user, pthdb_symbol_t *symbols, int count)
292 {
293 struct minimal_symbol *ms;
294 int i;
295 char *name;
296
297 if (debug_aix_thread)
298 fprintf_unfiltered (gdb_stdlog,
299 "pdc_symbol_addrs (user = %ld, symbols = 0x%lx, count = %d)\n",
300 user, (long) symbols, count);
301
302 for (i = 0; i < count; i++)
303 {
304 name = symbols[i].name;
305 if (debug_aix_thread)
306 fprintf_unfiltered (gdb_stdlog,
307 " symbols[%d].name = \"%s\"\n", i, name);
308
309 if (!*name)
310 symbols[i].addr = 0;
311 else
312 {
313 if (!(ms = lookup_minimal_symbol (name, NULL, NULL)))
314 {
315 if (debug_aix_thread)
316 fprintf_unfiltered (gdb_stdlog, " returning PDC_FAILURE\n");
317 return PDC_FAILURE;
318 }
319 symbols[i].addr = SYMBOL_VALUE_ADDRESS (ms);
320 }
321 if (debug_aix_thread)
322 fprintf_unfiltered (gdb_stdlog, " symbols[%d].addr = %s\n",
323 i, local_hex_string (symbols[i].addr));
324 }
325 if (debug_aix_thread)
326 fprintf_unfiltered (gdb_stdlog, " returning PDC_SUCCESS\n");
327 return PDC_SUCCESS;
328 }
329
330 /* Read registers call back function should be able to read the
331 context information of a debuggee kernel thread from an active
332 process or from a core file. The information should be formatted
333 in context64 form for both 32-bit and 64-bit process.
334 If successful return 0, else non-zero is returned. */
335
336 static int
337 pdc_read_regs (pthdb_user_t user,
338 pthdb_tid_t tid,
339 unsigned long long flags,
340 pthdb_context_t *context)
341 {
342 /* This function doesn't appear to be used, so we could probably
343 just return 0 here. HOWEVER, if it is not defined, the OS will
344 complain and several thread debug functions will fail. In case
345 this is needed, I have implemented what I think it should do,
346 however this code is untested. */
347
348 uint64_t gprs64[32];
349 uint32_t gprs32[32];
350 double fprs[32];
351 struct ptxsprs sprs64;
352 struct ptsprs sprs32;
353
354 if (debug_aix_thread)
355 fprintf_unfiltered (gdb_stdlog, "pdc_read_regs tid=%d flags=%s\n",
356 (int) tid, local_hex_string (flags));
357
358 /* General-purpose registers. */
359 if (flags & PTHDB_FLAG_GPRS)
360 {
361 if (arch64)
362 {
363 if (!ptrace64aix (PTT_READ_GPRS, tid,
364 (unsigned long) gprs64, 0, NULL))
365 memset (gprs64, 0, sizeof (gprs64));
366 memcpy (context->gpr, gprs64, sizeof(gprs64));
367 }
368 else
369 {
370 if (!ptrace32 (PTT_READ_GPRS, tid, gprs32, 0, NULL))
371 memset (gprs32, 0, sizeof (gprs32));
372 memcpy (context->gpr, gprs32, sizeof(gprs32));
373 }
374 }
375
376 /* Floating-point registers. */
377 if (flags & PTHDB_FLAG_FPRS)
378 {
379 if (!ptrace32 (PTT_READ_FPRS, tid, (int *) fprs, 0, NULL))
380 memset (fprs, 0, sizeof (fprs));
381 memcpy (context->fpr, fprs, sizeof(fprs));
382 }
383
384 /* Special-purpose registers. */
385 if (flags & PTHDB_FLAG_SPRS)
386 {
387 if (arch64)
388 {
389 if (!ptrace64aix (PTT_READ_SPRS, tid,
390 (unsigned long) &sprs64, 0, NULL))
391 memset (&sprs64, 0, sizeof (sprs64));
392 memcpy (&context->msr, &sprs64, sizeof(sprs64));
393 }
394 else
395 {
396 if (!ptrace32 (PTT_READ_SPRS, tid, (int *) &sprs32, 0, NULL))
397 memset (&sprs32, 0, sizeof (sprs32));
398 memcpy (&context->msr, &sprs32, sizeof(sprs32));
399 }
400 }
401 return 0;
402 }
403
404 /* Write register function should be able to write requested context
405 information to specified debuggee's kernel thread id.
406 If successful return 0, else non-zero is returned. */
407
408 static int
409 pdc_write_regs (pthdb_user_t user,
410 pthdb_tid_t tid,
411 unsigned long long flags,
412 pthdb_context_t *context)
413 {
414 /* This function doesn't appear to be used, so we could probably
415 just return 0 here. HOWEVER, if it is not defined, the OS will
416 complain and several thread debug functions will fail. In case
417 this is needed, I have implemented what I think it should do,
418 however this code is untested. */
419
420 if (debug_aix_thread)
421 fprintf_unfiltered (gdb_stdlog, "pdc_write_regs tid=%d flags=%s\n",
422 (int) tid, local_hex_string (flags));
423
424 /* General-purpose registers. */
425 if (flags & PTHDB_FLAG_GPRS)
426 {
427 if (arch64)
428 ptrace64aix (PTT_WRITE_GPRS, tid,
429 (unsigned long) context->gpr, 0, NULL);
430 else
431 ptrace32 (PTT_WRITE_GPRS, tid, (int *) context->gpr, 0, NULL);
432 }
433
434 /* Floating-point registers. */
435 if (flags & PTHDB_FLAG_FPRS)
436 {
437 ptrace32 (PTT_WRITE_FPRS, tid, (int *) context->fpr, 0, NULL);
438 }
439
440 /* Special-purpose registers. */
441 if (flags & PTHDB_FLAG_SPRS)
442 {
443 if (arch64)
444 {
445 ptrace64aix (PTT_WRITE_SPRS, tid,
446 (unsigned long) &context->msr, 0, NULL);
447 }
448 else
449 {
450 ptrace32 (PTT_WRITE_SPRS, tid, (int *) &context->msr, 0, NULL);
451 }
452 }
453 return 0;
454 }
455
456 /* pthdb callback: read LEN bytes from process ADDR into BUF. */
457
458 static int
459 pdc_read_data (pthdb_user_t user, void *buf,
460 pthdb_addr_t addr, size_t len)
461 {
462 int status, ret;
463
464 if (debug_aix_thread)
465 fprintf_unfiltered (gdb_stdlog,
466 "pdc_read_data (user = %ld, buf = 0x%lx, addr = %s, len = %ld)\n",
467 user, (long) buf, local_hex_string (addr), len);
468
469 status = target_read_memory (addr, buf, len);
470 ret = status == 0 ? PDC_SUCCESS : PDC_FAILURE;
471
472 if (debug_aix_thread)
473 fprintf_unfiltered (gdb_stdlog, " status=%d, returning %s\n",
474 status, pd_status2str (ret));
475 return ret;
476 }
477
478 /* pthdb callback: write LEN bytes from BUF to process ADDR. */
479
480 static int
481 pdc_write_data (pthdb_user_t user, void *buf,
482 pthdb_addr_t addr, size_t len)
483 {
484 int status, ret;
485
486 if (debug_aix_thread)
487 fprintf_unfiltered (gdb_stdlog,
488 "pdc_write_data (user = %ld, buf = 0x%lx, addr = %s, len = %ld)\n",
489 user, (long) buf, local_hex_string (addr), len);
490
491 status = target_write_memory (addr, buf, len);
492 ret = status == 0 ? PDC_SUCCESS : PDC_FAILURE;
493
494 if (debug_aix_thread)
495 fprintf_unfiltered (gdb_stdlog, " status=%d, returning %s\n", status,
496 pd_status2str (ret));
497 return ret;
498 }
499
500 /* pthdb callback: allocate a LEN-byte buffer and store a pointer to it
501 in BUFP. */
502
503 static int
504 pdc_alloc (pthdb_user_t user, size_t len, void **bufp)
505 {
506 if (debug_aix_thread)
507 fprintf_unfiltered (gdb_stdlog,
508 "pdc_alloc (user = %ld, len = %ld, bufp = 0x%lx)\n",
509 user, len, (long) bufp);
510 *bufp = xmalloc (len);
511 if (debug_aix_thread)
512 fprintf_unfiltered (gdb_stdlog,
513 " malloc returned 0x%lx\n", (long) *bufp);
514
515 /* Note: xmalloc() can't return 0; therefore PDC_FAILURE will never
516 be returned. */
517
518 return *bufp ? PDC_SUCCESS : PDC_FAILURE;
519 }
520
521 /* pthdb callback: reallocate BUF, which was allocated by the alloc or
522 realloc callback, so that it contains LEN bytes, and store a
523 pointer to the result in BUFP. */
524
525 static int
526 pdc_realloc (pthdb_user_t user, void *buf, size_t len, void **bufp)
527 {
528 if (debug_aix_thread)
529 fprintf_unfiltered (gdb_stdlog,
530 "pdc_realloc (user = %ld, buf = 0x%lx, len = %ld, bufp = 0x%lx)\n",
531 user, (long) buf, len, (long) bufp);
532 *bufp = xrealloc (buf, len);
533 if (debug_aix_thread)
534 fprintf_unfiltered (gdb_stdlog,
535 " realloc returned 0x%lx\n", (long) *bufp);
536 return *bufp ? PDC_SUCCESS : PDC_FAILURE;
537 }
538
539 /* pthdb callback: free BUF, which was allocated by the alloc or
540 realloc callback. */
541
542 static int
543 pdc_dealloc (pthdb_user_t user, void *buf)
544 {
545 if (debug_aix_thread)
546 fprintf_unfiltered (gdb_stdlog,
547 "pdc_free (user = %ld, buf = 0x%lx)\n", user,
548 (long) buf);
549 xfree (buf);
550 return PDC_SUCCESS;
551 }
552
553 /* Return a printable representation of pthread STATE. */
554
555 static char *
556 state2str (pthdb_state_t state)
557 {
558 switch (state)
559 {
560 case PST_IDLE: return "idle"; /* being created */
561 case PST_RUN: return "running"; /* running */
562 case PST_SLEEP: return "sleeping"; /* awaiting an event */
563 case PST_READY: return "ready"; /* runnable */
564 case PST_TERM: return "finished"; /* awaiting a join/detach */
565 default: return "unknown";
566 }
567 }
568
569 /* qsort() comparison function for sorting pd_thread structs by pthid. */
570
571 static int
572 pcmp (const void *p1v, const void *p2v)
573 {
574 struct pd_thread *p1 = (struct pd_thread *) p1v;
575 struct pd_thread *p2 = (struct pd_thread *) p2v;
576 return p1->pthid < p2->pthid ? -1 : p1->pthid > p2->pthid;
577 }
578
579 /* iterate_over_threads() callback for counting GDB threads. */
580
581 static int
582 giter_count (struct thread_info *thread, void *countp)
583 {
584 (*(int *) countp)++;
585 return 0;
586 }
587
588 /* iterate_over_threads() callback for accumulating GDB thread pids. */
589
590 static int
591 giter_accum (struct thread_info *thread, void *bufp)
592 {
593 **(struct thread_info ***) bufp = thread;
594 (*(struct thread_info ***) bufp)++;
595 return 0;
596 }
597
598 /* ptid comparison function */
599
600 static int
601 ptid_cmp (ptid_t ptid1, ptid_t ptid2)
602 {
603 int pid1, pid2;
604
605 if (ptid_get_pid (ptid1) < ptid_get_pid (ptid2))
606 return -1;
607 else if (ptid_get_pid (ptid1) > ptid_get_pid (ptid2))
608 return 1;
609 else if (ptid_get_tid (ptid1) < ptid_get_tid (ptid2))
610 return -1;
611 else if (ptid_get_tid (ptid1) > ptid_get_tid (ptid2))
612 return 1;
613 else if (ptid_get_lwp (ptid1) < ptid_get_lwp (ptid2))
614 return -1;
615 else if (ptid_get_lwp (ptid1) > ptid_get_lwp (ptid2))
616 return 1;
617 else
618 return 0;
619 }
620
621 /* qsort() comparison function for sorting thread_info structs by pid. */
622
623 static int
624 gcmp (const void *t1v, const void *t2v)
625 {
626 struct thread_info *t1 = *(struct thread_info **) t1v;
627 struct thread_info *t2 = *(struct thread_info **) t2v;
628 return ptid_cmp (t1->ptid, t2->ptid);
629 }
630
631 /* Synchronize GDB's thread list with libpthdebug's.
632
633 There are some benefits of doing this every time the inferior stops:
634
635 - allows users to run thread-specific commands without needing to
636 run "info threads" first
637
638 - helps pthdb_tid_pthread() work properly (see "libpthdebug
639 peculiarities" at the top of this module)
640
641 - simplifies the demands placed on libpthdebug, which seems to
642 have difficulty with certain call patterns */
643
644 static void
645 sync_threadlists (void)
646 {
647 int cmd, status, infpid;
648 int pcount, psize, pi, gcount, gi;
649 struct pd_thread *pbuf;
650 struct thread_info **gbuf, **g, *thread;
651 pthdb_pthread_t pdtid;
652 pthread_t pthid;
653 pthdb_tid_t tid;
654
655 /* Accumulate an array of libpthdebug threads sorted by pthread id. */
656
657 pcount = 0;
658 psize = 1;
659 pbuf = (struct pd_thread *) xmalloc (psize * sizeof *pbuf);
660
661 for (cmd = PTHDB_LIST_FIRST;; cmd = PTHDB_LIST_NEXT)
662 {
663 status = pthdb_pthread (pd_session, &pdtid, cmd);
664 if (status != PTHDB_SUCCESS || pdtid == PTHDB_INVALID_PTHREAD)
665 break;
666
667 status = pthdb_pthread_ptid (pd_session, pdtid, &pthid);
668 if (status != PTHDB_SUCCESS || pthid == PTHDB_INVALID_PTID)
669 continue;
670
671 if (pcount == psize)
672 {
673 psize *= 2;
674 pbuf = (struct pd_thread *) xrealloc (pbuf,
675 psize * sizeof *pbuf);
676 }
677 pbuf[pcount].pdtid = pdtid;
678 pbuf[pcount].pthid = pthid;
679 pcount++;
680 }
681
682 for (pi = 0; pi < pcount; pi++)
683 {
684 status = pthdb_pthread_tid (pd_session, pbuf[pi].pdtid, &tid);
685 if (status != PTHDB_SUCCESS)
686 tid = PTHDB_INVALID_TID;
687 pbuf[pi].tid = tid;
688 }
689
690 qsort (pbuf, pcount, sizeof *pbuf, pcmp);
691
692 /* Accumulate an array of GDB threads sorted by pid. */
693
694 gcount = 0;
695 iterate_over_threads (giter_count, &gcount);
696 g = gbuf = (struct thread_info **) xmalloc (gcount * sizeof *gbuf);
697 iterate_over_threads (giter_accum, &g);
698 qsort (gbuf, gcount, sizeof *gbuf, gcmp);
699
700 /* Apply differences between the two arrays to GDB's thread list. */
701
702 infpid = PIDGET (inferior_ptid);
703 for (pi = gi = 0; pi < pcount || gi < gcount;)
704 {
705 if (pi == pcount)
706 {
707 delete_thread (gbuf[gi]->ptid);
708 gi++;
709 }
710 else if (gi == gcount)
711 {
712 thread = add_thread (BUILD_THREAD (pbuf[pi].pthid, infpid));
713 thread->private = xmalloc (sizeof (struct private_thread_info));
714 thread->private->pdtid = pbuf[pi].pdtid;
715 thread->private->tid = pbuf[pi].tid;
716 pi++;
717 }
718 else
719 {
720 ptid_t pptid, gptid;
721 int cmp_result;
722
723 pptid = BUILD_THREAD (pbuf[pi].pthid, infpid);
724 gptid = gbuf[gi]->ptid;
725 pdtid = pbuf[pi].pdtid;
726 tid = pbuf[pi].tid;
727
728 cmp_result = ptid_cmp (pptid, gptid);
729
730 if (cmp_result == 0)
731 {
732 gbuf[gi]->private->pdtid = pdtid;
733 gbuf[gi]->private->tid = tid;
734 pi++;
735 gi++;
736 }
737 else if (cmp_result > 0)
738 {
739 delete_thread (gptid);
740 gi++;
741 }
742 else
743 {
744 thread = add_thread (pptid);
745 thread->private = xmalloc (sizeof (struct private_thread_info));
746 thread->private->pdtid = pdtid;
747 thread->private->tid = tid;
748 pi++;
749 }
750 }
751 }
752
753 xfree (pbuf);
754 xfree (gbuf);
755 }
756
757 /* Iterate_over_threads() callback for locating a thread whose kernel
758 thread just received a trap signal. */
759
760 static int
761 iter_trap (struct thread_info *thread, void *unused)
762 {
763 struct thrdsinfo64 thrinf;
764 pthdb_tid_t tid;
765
766 /* getthrds(3) isn't prototyped in any AIX 4.3.3 #include file. */
767 extern int getthrds (pid_t, struct thrdsinfo64 *,
768 int, pthdb_tid_t *, int);
769
770 tid = thread->private->tid;
771 if (tid == PTHDB_INVALID_TID)
772 return 0;
773
774 if (getthrds (PIDGET (inferior_ptid), &thrinf,
775 sizeof (thrinf), &tid, 1) != 1)
776 return 0;
777
778 return thrinf.ti_cursig == SIGTRAP;
779 }
780
781 /* Synchronize libpthdebug's state with the inferior and with GDB,
782 generate a composite process/thread <pid> for the current thread,
783 set inferior_ptid to <pid> if SET_INFPID, and return <pid>. */
784
785 static ptid_t
786 pd_update (int set_infpid)
787 {
788 int status;
789 ptid_t ptid;
790 struct thread_info *thread;
791
792 if (!pd_active)
793 return inferior_ptid;
794
795 status = pthdb_session_update (pd_session);
796 if (status != PTHDB_SUCCESS)
797 return inferior_ptid;
798
799 sync_threadlists ();
800
801 /* Define "current thread" as one that just received a trap signal. */
802
803 thread = iterate_over_threads (iter_trap, NULL);
804 if (!thread)
805 ptid = inferior_ptid;
806 else
807 {
808 ptid = thread->ptid;
809 if (set_infpid)
810 inferior_ptid = ptid;
811 }
812 return ptid;
813 }
814
815 /* Try to start debugging threads in the current process.
816 If successful and SET_INFPID, set inferior_ptid to reflect the
817 current thread. */
818
819 static ptid_t
820 pd_activate (int set_infpid)
821 {
822 int status;
823
824 status = pthdb_session_init (PD_USER, arch64 ? PEM_64BIT : PEM_32BIT,
825 PTHDB_FLAG_REGS, &pd_callbacks,
826 &pd_session);
827 if (status != PTHDB_SUCCESS)
828 {
829 return inferior_ptid;
830 }
831 pd_active = 1;
832 return pd_update (set_infpid);
833 }
834
835 /* Undo the effects of pd_activate(). */
836
837 static void
838 pd_deactivate (void)
839 {
840 if (!pd_active)
841 return;
842 pthdb_session_destroy (pd_session);
843
844 pid_to_prc (&inferior_ptid);
845 pd_active = 0;
846 }
847
848 /* An object file has just been loaded. Check whether the current
849 application is pthreaded, and if so, prepare for thread debugging. */
850
851 static void
852 pd_enable (void)
853 {
854 int status;
855 char *stub_name;
856 struct minimal_symbol *ms;
857
858 /* Don't initialize twice. */
859 if (pd_able)
860 return;
861
862 /* Check application word size. */
863 arch64 = REGISTER_RAW_SIZE (0) == 8;
864
865 /* Check whether the application is pthreaded. */
866 stub_name = NULL;
867 status = pthdb_session_pthreaded (PD_USER, PTHDB_FLAG_REGS,
868 &pd_callbacks, &stub_name);
869 if ((status != PTHDB_SUCCESS &&
870 status != PTHDB_NOT_PTHREADED) || !stub_name)
871 return;
872
873 /* Set a breakpoint on the returned stub function. */
874 if (!(ms = lookup_minimal_symbol (stub_name, NULL, NULL)))
875 return;
876 pd_brk_addr = SYMBOL_VALUE_ADDRESS (ms);
877 if (!create_thread_event_breakpoint (pd_brk_addr))
878 return;
879
880 /* Prepare for thread debugging. */
881 base_target = current_target;
882 push_target (&aix_thread_ops);
883 pd_able = 1;
884
885 /* If we're debugging a core file or an attached inferior, the
886 pthread library may already have been initialized, so try to
887 activate thread debugging. */
888 pd_activate (1);
889 }
890
891 /* Undo the effects of pd_enable(). */
892
893 static void
894 pd_disable (void)
895 {
896 if (!pd_able)
897 return;
898 if (pd_active)
899 pd_deactivate ();
900 pd_able = 0;
901 unpush_target (&aix_thread_ops);
902 }
903
904 /* target_new_objfile_hook callback.
905
906 If OBJFILE is non-null, check whether a threaded application is
907 being debugged, and if so, prepare for thread debugging.
908
909 If OBJFILE is null, stop debugging threads. */
910
911 static void
912 new_objfile (struct objfile *objfile)
913 {
914 if (objfile)
915 pd_enable ();
916 else
917 pd_disable ();
918
919 if (target_new_objfile_chain)
920 target_new_objfile_chain (objfile);
921 }
922
923 /* Attach to process specified by ARGS. */
924
925 static void
926 aix_thread_attach (char *args, int from_tty)
927 {
928 base_target.to_attach (args, from_tty);
929 pd_activate (1);
930 }
931
932 /* Detach from the process attached to by aix_thread_attach(). */
933
934 static void
935 aix_thread_detach (char *args, int from_tty)
936 {
937 pd_deactivate ();
938 base_target.to_detach (args, from_tty);
939 }
940
941 /* Tell the inferior process to continue running thread PID if != -1
942 and all threads otherwise. */
943
944 static void
945 aix_thread_resume (ptid_t ptid, int step, enum target_signal sig)
946 {
947 struct thread_info *thread;
948 pthdb_tid_t tid[2];
949
950 if (!PD_TID (ptid))
951 {
952 struct cleanup *cleanup = save_inferior_ptid ();
953 inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
954 base_target.to_resume (ptid, step, sig);
955 do_cleanups (cleanup);
956 }
957 else
958 {
959 thread = find_thread_pid (ptid);
960 if (!thread)
961 error ("aix-thread resume: unknown pthread %ld",
962 TIDGET (ptid));
963
964 tid[0] = thread->private->tid;
965 if (tid[0] == PTHDB_INVALID_TID)
966 error ("aix-thread resume: no tid for pthread %ld",
967 TIDGET (ptid));
968 tid[1] = 0;
969
970 if (arch64)
971 ptrace64aix (PTT_CONTINUE, tid[0], 1,
972 target_signal_to_host (sig), (int *) tid);
973 else
974 ptrace32 (PTT_CONTINUE, tid[0], (int *) 1,
975 target_signal_to_host (sig), (int *) tid);
976 }
977 }
978
979 /* Wait for thread/process ID if != -1 or for any thread otherwise.
980 If an error occurs, return -1, else return the pid of the stopped
981 thread. */
982
983 static ptid_t
984 aix_thread_wait (ptid_t ptid, struct target_waitstatus *status)
985 {
986 struct cleanup *cleanup = save_inferior_ptid ();
987
988 pid_to_prc (&ptid);
989
990 inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
991 ptid = base_target.to_wait (ptid, status);
992 do_cleanups (cleanup);
993
994 if (PIDGET (ptid) == -1)
995 return pid_to_ptid (-1);
996
997 /* Check whether libpthdebug might be ready to be initialized. */
998 if (!pd_active && status->kind == TARGET_WAITKIND_STOPPED &&
999 status->value.sig == TARGET_SIGNAL_TRAP &&
1000 read_pc_pid (ptid) - DECR_PC_AFTER_BREAK == pd_brk_addr)
1001 return pd_activate (0);
1002
1003 return pd_update (0);
1004 }
1005
1006 /* Record that the 64-bit general-purpose registers contain VALS. */
1007
1008 static void
1009 supply_gprs64 (uint64_t *vals)
1010 {
1011 int regno;
1012
1013 for (regno = 0; regno < 32; regno++)
1014 supply_register (regno, (char *) (vals + regno));
1015 }
1016
1017 /* Record that 32-bit register REGNO contains VAL. */
1018
1019 static void
1020 supply_reg32 (int regno, uint32_t val)
1021 {
1022 supply_register (regno, (char *) &val);
1023 }
1024
1025 /* Record that the floating-point registers contain VALS. */
1026
1027 static void
1028 supply_fprs (double *vals)
1029 {
1030 int regno;
1031
1032 for (regno = 0; regno < 32; regno++)
1033 supply_register (regno + FP0_REGNUM, (char *) (vals + regno));
1034 }
1035
1036 /* Predicate to test whether given register number is a "special" register. */
1037 static int
1038 special_register_p (int regno)
1039 {
1040 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1041
1042 return regno == PC_REGNUM
1043 || regno == tdep->ppc_ps_regnum
1044 || regno == tdep->ppc_cr_regnum
1045 || regno == tdep->ppc_lr_regnum
1046 || regno == tdep->ppc_ctr_regnum
1047 || regno == tdep->ppc_xer_regnum
1048 || regno == tdep->ppc_fpscr_regnum
1049 || (tdep->ppc_mq_regnum >= 0 && regno == tdep->ppc_mq_regnum);
1050 }
1051
1052
1053 /* Record that the special registers contain the specified 64-bit and
1054 32-bit values. */
1055
1056 static void
1057 supply_sprs64 (uint64_t iar, uint64_t msr, uint32_t cr,
1058 uint64_t lr, uint64_t ctr, uint32_t xer,
1059 uint32_t fpscr)
1060 {
1061 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1062
1063 supply_register (PC_REGNUM, (char *) &iar);
1064 supply_register (tdep->ppc_ps_regnum, (char *) &msr);
1065 supply_register (tdep->ppc_cr_regnum, (char *) &cr);
1066 supply_register (tdep->ppc_lr_regnum, (char *) &lr);
1067 supply_register (tdep->ppc_ctr_regnum, (char *) &ctr);
1068 supply_register (tdep->ppc_xer_regnum, (char *) &xer);
1069 supply_register (tdep->ppc_fpscr_regnum, (char *) &fpscr);
1070 }
1071
1072 /* Record that the special registers contain the specified 32-bit
1073 values. */
1074
1075 static void
1076 supply_sprs32 (uint32_t iar, uint32_t msr, uint32_t cr,
1077 uint32_t lr, uint32_t ctr, uint32_t xer,
1078 uint32_t fpscr)
1079 {
1080 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1081
1082 supply_register (PC_REGNUM, (char *) &iar);
1083 supply_register (tdep->ppc_ps_regnum, (char *) &msr);
1084 supply_register (tdep->ppc_cr_regnum, (char *) &cr);
1085 supply_register (tdep->ppc_lr_regnum, (char *) &lr);
1086 supply_register (tdep->ppc_ctr_regnum, (char *) &ctr);
1087 supply_register (tdep->ppc_xer_regnum, (char *) &xer);
1088 supply_register (tdep->ppc_fpscr_regnum, (char *) &fpscr);
1089 }
1090
1091 /* Fetch all registers from pthread PDTID, which doesn't have a kernel
1092 thread.
1093
1094 There's no way to query a single register from a non-kernel
1095 pthread, so there's no need for a single-register version of this
1096 function. */
1097
1098 static void
1099 fetch_regs_user_thread (pthdb_pthread_t pdtid)
1100 {
1101 int status, i;
1102 pthdb_context_t ctx;
1103
1104 if (debug_aix_thread)
1105 fprintf_unfiltered (gdb_stdlog,
1106 "fetch_regs_user_thread %lx\n", (long) pdtid);
1107 status = pthdb_pthread_context (pd_session, pdtid, &ctx);
1108 if (status != PTHDB_SUCCESS)
1109 error ("aix-thread: fetch_registers: pthdb_pthread_context returned %s",
1110 pd_status2str (status));
1111
1112 /* General-purpose registers. */
1113
1114 if (arch64)
1115 supply_gprs64 (ctx.gpr);
1116 else
1117 for (i = 0; i < 32; i++)
1118 supply_reg32 (i, ctx.gpr[i]);
1119
1120 /* Floating-point registers. */
1121
1122 supply_fprs (ctx.fpr);
1123
1124 /* Special registers. */
1125
1126 if (arch64)
1127 supply_sprs64 (ctx.iar, ctx.msr, ctx.cr, ctx.lr, ctx.ctr, ctx.xer,
1128 ctx.fpscr);
1129 else
1130 supply_sprs32 (ctx.iar, ctx.msr, ctx.cr, ctx.lr, ctx.ctr, ctx.xer,
1131 ctx.fpscr);
1132 }
1133
1134 /* Fetch register REGNO if != -1 or all registers otherwise from
1135 kernel thread TID.
1136
1137 AIX provides a way to query all of a kernel thread's GPRs, FPRs, or
1138 SPRs, but there's no way to query individual registers within those
1139 groups. Therefore, if REGNO != -1, this function fetches an entire
1140 group.
1141
1142 Unfortunately, kernel thread register queries often fail with
1143 EPERM, indicating that the thread is in kernel space. This breaks
1144 backtraces of threads other than the current one. To make that
1145 breakage obvious without throwing an error to top level (which is
1146 bad e.g. during "info threads" output), zero registers that can't
1147 be retrieved. */
1148
1149 static void
1150 fetch_regs_kernel_thread (int regno, pthdb_tid_t tid)
1151 {
1152 uint64_t gprs64[32];
1153 uint32_t gprs32[32];
1154 double fprs[32];
1155 struct ptxsprs sprs64;
1156 struct ptsprs sprs32;
1157 int i;
1158
1159 if (debug_aix_thread)
1160 fprintf_unfiltered (gdb_stdlog,
1161 "fetch_regs_kernel_thread tid=%lx regno=%d arch64=%d\n",
1162 (long) tid, regno, arch64);
1163
1164 /* General-purpose registers. */
1165 if (regno == -1 || regno < FP0_REGNUM)
1166 {
1167 if (arch64)
1168 {
1169 if (!ptrace64aix (PTT_READ_GPRS, tid,
1170 (unsigned long) gprs64, 0, NULL))
1171 memset (gprs64, 0, sizeof (gprs64));
1172 supply_gprs64 (gprs64);
1173 }
1174 else
1175 {
1176 if (!ptrace32 (PTT_READ_GPRS, tid, gprs32, 0, NULL))
1177 memset (gprs32, 0, sizeof (gprs32));
1178 for (i = 0; i < 32; i++)
1179 supply_reg32 (i, gprs32[i]);
1180 }
1181 }
1182
1183 /* Floating-point registers. */
1184
1185 if (regno == -1 || (regno >= FP0_REGNUM && regno <= FPLAST_REGNUM))
1186 {
1187 if (!ptrace32 (PTT_READ_FPRS, tid, (int *) fprs, 0, NULL))
1188 memset (fprs, 0, sizeof (fprs));
1189 supply_fprs (fprs);
1190 }
1191
1192 /* Special-purpose registers. */
1193
1194 if (regno == -1 || special_register_p (regno))
1195 {
1196 if (arch64)
1197 {
1198 if (!ptrace64aix (PTT_READ_SPRS, tid,
1199 (unsigned long) &sprs64, 0, NULL))
1200 memset (&sprs64, 0, sizeof (sprs64));
1201 supply_sprs64 (sprs64.pt_iar, sprs64.pt_msr, sprs64.pt_cr,
1202 sprs64.pt_lr, sprs64.pt_ctr, sprs64.pt_xer,
1203 sprs64.pt_fpscr);
1204 }
1205 else
1206 {
1207 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1208
1209 if (!ptrace32 (PTT_READ_SPRS, tid, (int *) &sprs32, 0, NULL))
1210 memset (&sprs32, 0, sizeof (sprs32));
1211 supply_sprs32 (sprs32.pt_iar, sprs32.pt_msr, sprs32.pt_cr,
1212 sprs32.pt_lr, sprs32.pt_ctr, sprs32.pt_xer,
1213 sprs32.pt_fpscr);
1214
1215 if (tdep->ppc_mq_regnum >= 0)
1216 supply_register (tdep->ppc_mq_regnum, (char *) &sprs32.pt_mq);
1217 }
1218 }
1219 }
1220
1221 /* Fetch register REGNO if != -1 or all registers otherwise in the
1222 thread/process specified by inferior_ptid. */
1223
1224 static void
1225 aix_thread_fetch_registers (int regno)
1226 {
1227 struct thread_info *thread;
1228 pthdb_tid_t tid;
1229
1230 if (!PD_TID (inferior_ptid))
1231 base_target.to_fetch_registers (regno);
1232 else
1233 {
1234 thread = find_thread_pid (inferior_ptid);
1235 tid = thread->private->tid;
1236
1237 if (tid == PTHDB_INVALID_TID)
1238 fetch_regs_user_thread (thread->private->pdtid);
1239 else
1240 fetch_regs_kernel_thread (regno, tid);
1241 }
1242 }
1243
1244 /* Store the gp registers into an array of uint32_t or uint64_t. */
1245
1246 static void
1247 fill_gprs64 (uint64_t *vals)
1248 {
1249 int regno;
1250
1251 for (regno = 0; regno < FP0_REGNUM; regno++)
1252 if (register_cached (regno))
1253 regcache_collect (regno, vals + regno);
1254 }
1255
1256 static void
1257 fill_gprs32 (uint32_t *vals)
1258 {
1259 int regno;
1260
1261 for (regno = 0; regno < FP0_REGNUM; regno++)
1262 if (register_cached (regno))
1263 regcache_collect (regno, vals + regno);
1264 }
1265
1266 /* Store the floating point registers into a double array. */
1267 static void
1268 fill_fprs (double *vals)
1269 {
1270 int regno;
1271
1272 for (regno = FP0_REGNUM; regno < FPLAST_REGNUM; regno++)
1273 if (register_cached (regno))
1274 regcache_collect (regno, vals + regno);
1275 }
1276
1277 /* Store the special registers into the specified 64-bit and 32-bit
1278 locations. */
1279
1280 static void
1281 fill_sprs64 (uint64_t *iar, uint64_t *msr, uint32_t *cr,
1282 uint64_t *lr, uint64_t *ctr, uint32_t *xer,
1283 uint32_t *fpscr)
1284 {
1285 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1286
1287 /* Verify that the size of the size of the IAR buffer is the
1288 same as the raw size of the PC (in the register cache). If
1289 they're not, then either GDB has been built incorrectly, or
1290 there's some other kind of internal error. To be really safe,
1291 we should check all of the sizes. */
1292 gdb_assert (sizeof (*iar) == REGISTER_RAW_SIZE (PC_REGNUM));
1293
1294 if (register_cached (PC_REGNUM))
1295 regcache_collect (PC_REGNUM, iar);
1296 if (register_cached (tdep->ppc_ps_regnum))
1297 regcache_collect (tdep->ppc_ps_regnum, msr);
1298 if (register_cached (tdep->ppc_cr_regnum))
1299 regcache_collect (tdep->ppc_cr_regnum, cr);
1300 if (register_cached (tdep->ppc_lr_regnum))
1301 regcache_collect (tdep->ppc_lr_regnum, lr);
1302 if (register_cached (tdep->ppc_ctr_regnum))
1303 regcache_collect (tdep->ppc_ctr_regnum, ctr);
1304 if (register_cached (tdep->ppc_xer_regnum))
1305 regcache_collect (tdep->ppc_xer_regnum, xer);
1306 if (register_cached (tdep->ppc_fpscr_regnum))
1307 regcache_collect (tdep->ppc_fpscr_regnum, fpscr);
1308 }
1309
1310 static void
1311 fill_sprs32 (unsigned long *iar, unsigned long *msr, unsigned long *cr,
1312 unsigned long *lr, unsigned long *ctr, unsigned long *xer,
1313 unsigned long *fpscr)
1314 {
1315 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1316
1317 /* Verify that the size of the size of the IAR buffer is the
1318 same as the raw size of the PC (in the register cache). If
1319 they're not, then either GDB has been built incorrectly, or
1320 there's some other kind of internal error. To be really safe,
1321 we should check all of the sizes.
1322
1323 If this assert() fails, the most likely reason is that GDB was
1324 built incorrectly. In order to make use of many of the header
1325 files in /usr/include/sys, GDB needs to be configured so that
1326 sizeof (long) == 4). */
1327 gdb_assert (sizeof (*iar) == REGISTER_RAW_SIZE (PC_REGNUM));
1328
1329 if (register_cached (PC_REGNUM))
1330 regcache_collect (PC_REGNUM, iar);
1331 if (register_cached (tdep->ppc_ps_regnum))
1332 regcache_collect (tdep->ppc_ps_regnum, msr);
1333 if (register_cached (tdep->ppc_cr_regnum))
1334 regcache_collect (tdep->ppc_cr_regnum, cr);
1335 if (register_cached (tdep->ppc_lr_regnum))
1336 regcache_collect (tdep->ppc_lr_regnum, lr);
1337 if (register_cached (tdep->ppc_ctr_regnum))
1338 regcache_collect (tdep->ppc_ctr_regnum, ctr);
1339 if (register_cached (tdep->ppc_xer_regnum))
1340 regcache_collect (tdep->ppc_xer_regnum, xer);
1341 if (register_cached (tdep->ppc_fpscr_regnum))
1342 regcache_collect (tdep->ppc_fpscr_regnum, fpscr);
1343 }
1344
1345 /* Store all registers into pthread PDTID, which doesn't have a kernel
1346 thread.
1347
1348 It's possible to store a single register into a non-kernel pthread,
1349 but I doubt it's worth the effort. */
1350
1351 static void
1352 store_regs_user_thread (pthdb_pthread_t pdtid)
1353 {
1354 int status, i;
1355 pthdb_context_t ctx;
1356 uint32_t int32;
1357 uint64_t int64;
1358 double dbl;
1359
1360 if (debug_aix_thread)
1361 fprintf_unfiltered (gdb_stdlog,
1362 "store_regs_user_thread %lx\n", (long) pdtid);
1363
1364 /* Retrieve the thread's current context for its non-register
1365 values. */
1366 status = pthdb_pthread_context (pd_session, pdtid, &ctx);
1367 if (status != PTHDB_SUCCESS)
1368 error ("aix-thread: store_registers: pthdb_pthread_context returned %s",
1369 pd_status2str (status));
1370
1371 /* Collect general-purpose register values from the regcache. */
1372
1373 for (i = 0; i < 32; i++)
1374 if (register_cached (i))
1375 {
1376 if (arch64)
1377 {
1378 regcache_collect (i, (void *) &int64);
1379 ctx.gpr[i] = int64;
1380 }
1381 else
1382 {
1383 regcache_collect (i, (void *) &int32);
1384 ctx.gpr[i] = int32;
1385 }
1386 }
1387
1388 /* Collect floating-point register values from the regcache. */
1389 fill_fprs (ctx.fpr);
1390
1391 /* Special registers (always kept in ctx as 64 bits). */
1392 if (arch64)
1393 {
1394 fill_sprs64 (&ctx.iar, &ctx.msr, &ctx.cr, &ctx.lr, &ctx.ctr, &ctx.xer,
1395 &ctx.fpscr);
1396 }
1397 else
1398 {
1399 /* Problem: ctx.iar etc. are 64 bits, but raw_registers are 32.
1400 Solution: use 32-bit temp variables. (The assert() in fill_sprs32()
1401 will fail if the size of an unsigned long is incorrect. If this
1402 happens, GDB needs to be reconfigured so that longs are 32-bits.) */
1403 unsigned long tmp_iar, tmp_msr, tmp_cr, tmp_lr, tmp_ctr, tmp_xer,
1404 tmp_fpscr;
1405 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1406
1407 fill_sprs32 (&tmp_iar, &tmp_msr, &tmp_cr, &tmp_lr, &tmp_ctr, &tmp_xer,
1408 &tmp_fpscr);
1409 if (register_cached (PC_REGNUM))
1410 ctx.iar = tmp_iar;
1411 if (register_cached (tdep->ppc_ps_regnum))
1412 ctx.msr = tmp_msr;
1413 if (register_cached (tdep->ppc_cr_regnum))
1414 ctx.cr = tmp_cr;
1415 if (register_cached (tdep->ppc_lr_regnum))
1416 ctx.lr = tmp_lr;
1417 if (register_cached (tdep->ppc_ctr_regnum))
1418 ctx.ctr = tmp_ctr;
1419 if (register_cached (tdep->ppc_xer_regnum))
1420 ctx.xer = tmp_xer;
1421 if (register_cached (tdep->ppc_xer_regnum))
1422 ctx.fpscr = tmp_fpscr;
1423 }
1424
1425 status = pthdb_pthread_setcontext (pd_session, pdtid, &ctx);
1426 if (status != PTHDB_SUCCESS)
1427 error ("aix-thread: store_registers: pthdb_pthread_setcontext returned %s",
1428 pd_status2str (status));
1429 }
1430
1431 /* Store register REGNO if != -1 or all registers otherwise into
1432 kernel thread TID.
1433
1434 AIX provides a way to set all of a kernel thread's GPRs, FPRs, or
1435 SPRs, but there's no way to set individual registers within those
1436 groups. Therefore, if REGNO != -1, this function stores an entire
1437 group. */
1438
1439 static void
1440 store_regs_kernel_thread (int regno, pthdb_tid_t tid)
1441 {
1442 uint64_t gprs64[32];
1443 uint32_t gprs32[32];
1444 double fprs[32];
1445 struct ptxsprs sprs64;
1446 struct ptsprs sprs32;
1447 int i;
1448 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1449
1450 if (debug_aix_thread)
1451 fprintf_unfiltered (gdb_stdlog,
1452 "store_regs_kernel_thread tid=%lx regno=%d\n",
1453 (long) tid, regno);
1454
1455 /* General-purpose registers. */
1456 if (regno == -1 || regno < FP0_REGNUM)
1457 {
1458 if (arch64)
1459 {
1460 /* Pre-fetch: some regs may not be in the cache. */
1461 ptrace64aix (PTT_READ_GPRS, tid, (unsigned long) gprs64, 0, NULL);
1462 fill_gprs64 (gprs64);
1463 ptrace64aix (PTT_WRITE_GPRS, tid, (unsigned long) gprs64, 0, NULL);
1464 }
1465 else
1466 {
1467 /* Pre-fetch: some regs may not be in the cache. */
1468 ptrace32 (PTT_READ_GPRS, tid, gprs32, 0, NULL);
1469 fill_gprs32 (gprs32);
1470 ptrace32 (PTT_WRITE_GPRS, tid, gprs32, 0, NULL);
1471 }
1472 }
1473
1474 /* Floating-point registers. */
1475
1476 if (regno == -1 || (regno >= FP0_REGNUM && regno <= FPLAST_REGNUM))
1477 {
1478 /* Pre-fetch: some regs may not be in the cache. */
1479 ptrace32 (PTT_READ_FPRS, tid, (int *) fprs, 0, NULL);
1480 fill_fprs (fprs);
1481 ptrace32 (PTT_WRITE_FPRS, tid, (int *) fprs, 0, NULL);
1482 }
1483
1484 /* Special-purpose registers. */
1485
1486 if (regno == -1 || special_register_p (regno))
1487 {
1488 if (arch64)
1489 {
1490 /* Pre-fetch: some registers won't be in the cache. */
1491 ptrace64aix (PTT_READ_SPRS, tid,
1492 (unsigned long) &sprs64, 0, NULL);
1493 fill_sprs64 (&sprs64.pt_iar, &sprs64.pt_msr, &sprs64.pt_cr,
1494 &sprs64.pt_lr, &sprs64.pt_ctr, &sprs64.pt_xer,
1495 &sprs64.pt_fpscr);
1496 ptrace64aix (PTT_WRITE_SPRS, tid,
1497 (unsigned long) &sprs64, 0, NULL);
1498 }
1499 else
1500 {
1501 /* Pre-fetch: some registers won't be in the cache. */
1502 ptrace32 (PTT_READ_SPRS, tid, (int *) &sprs32, 0, NULL);
1503
1504 fill_sprs32 (&sprs32.pt_iar, &sprs32.pt_msr, &sprs32.pt_cr,
1505 &sprs32.pt_lr, &sprs32.pt_ctr, &sprs32.pt_xer,
1506 &sprs32.pt_fpscr);
1507
1508 if (tdep->ppc_mq_regnum >= 0)
1509 if (register_cached (tdep->ppc_mq_regnum))
1510 regcache_collect (tdep->ppc_mq_regnum, &sprs32.pt_mq);
1511
1512 ptrace32 (PTT_WRITE_SPRS, tid, (int *) &sprs32, 0, NULL);
1513 }
1514 }
1515 }
1516
1517 /* Store gdb's current view of the register set into the
1518 thread/process specified by inferior_ptid. */
1519
1520 static void
1521 aix_thread_store_registers (int regno)
1522 {
1523 struct thread_info *thread;
1524 pthdb_tid_t tid;
1525
1526 if (!PD_TID (inferior_ptid))
1527 base_target.to_store_registers (regno);
1528 else
1529 {
1530 thread = find_thread_pid (inferior_ptid);
1531 tid = thread->private->tid;
1532
1533 if (tid == PTHDB_INVALID_TID)
1534 store_regs_user_thread (thread->private->pdtid);
1535 else
1536 store_regs_kernel_thread (regno, tid);
1537 }
1538 }
1539
1540 /* Transfer LEN bytes of memory from GDB address MYADDR to target
1541 address MEMADDR if WRITE and vice versa otherwise. */
1542
1543 static int
1544 aix_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
1545 struct mem_attrib *attrib,
1546 struct target_ops *target)
1547 {
1548 int n;
1549 struct cleanup *cleanup = save_inferior_ptid ();
1550
1551 inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
1552 n = base_target.to_xfer_memory (memaddr, myaddr, len,
1553 write, attrib, &base_target);
1554 do_cleanups (cleanup);
1555
1556 return n;
1557 }
1558
1559 /* Kill and forget about the inferior process. */
1560
1561 static void
1562 aix_thread_kill (void)
1563 {
1564 struct cleanup *cleanup = save_inferior_ptid ();
1565
1566 inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
1567 base_target.to_kill ();
1568 do_cleanups (cleanup);
1569 }
1570
1571 /* Clean up after the inferior exits. */
1572
1573 static void
1574 aix_thread_mourn_inferior (void)
1575 {
1576 pd_deactivate ();
1577 base_target.to_mourn_inferior ();
1578 }
1579
1580 /* Return whether thread PID is still valid. */
1581
1582 static int
1583 aix_thread_thread_alive (ptid_t ptid)
1584 {
1585 if (!PD_TID (ptid))
1586 return base_target.to_thread_alive (ptid);
1587
1588 /* We update the thread list every time the child stops, so all
1589 valid threads should be in the thread list. */
1590 return in_thread_list (ptid);
1591 }
1592
1593 /* Return a printable representation of composite PID for use in
1594 "info threads" output. */
1595
1596 static char *
1597 aix_thread_pid_to_str (ptid_t ptid)
1598 {
1599 static char *ret = NULL;
1600
1601 if (!PD_TID (ptid))
1602 return base_target.to_pid_to_str (ptid);
1603
1604 /* Free previous return value; a new one will be allocated by
1605 xasprintf(). */
1606 xfree (ret);
1607
1608 xasprintf (&ret, "Thread %ld", ptid_get_tid (ptid));
1609 return ret;
1610 }
1611
1612 /* Return a printable representation of extra information about
1613 THREAD, for use in "info threads" output. */
1614
1615 static char *
1616 aix_thread_extra_thread_info (struct thread_info *thread)
1617 {
1618 struct ui_file *buf;
1619 int status;
1620 pthdb_pthread_t pdtid;
1621 pthdb_tid_t tid;
1622 pthdb_state_t state;
1623 pthdb_suspendstate_t suspendstate;
1624 pthdb_detachstate_t detachstate;
1625 int cancelpend;
1626 long length;
1627 static char *ret = NULL;
1628
1629 if (!PD_TID (thread->ptid))
1630 return NULL;
1631
1632 buf = mem_fileopen ();
1633
1634 pdtid = thread->private->pdtid;
1635 tid = thread->private->tid;
1636
1637 if (tid != PTHDB_INVALID_TID)
1638 fprintf_unfiltered (buf, "tid %d", tid);
1639
1640 status = pthdb_pthread_state (pd_session, pdtid, &state);
1641 if (status != PTHDB_SUCCESS)
1642 state = PST_NOTSUP;
1643 fprintf_unfiltered (buf, ", %s", state2str (state));
1644
1645 status = pthdb_pthread_suspendstate (pd_session, pdtid,
1646 &suspendstate);
1647 if (status == PTHDB_SUCCESS && suspendstate == PSS_SUSPENDED)
1648 fprintf_unfiltered (buf, ", suspended");
1649
1650 status = pthdb_pthread_detachstate (pd_session, pdtid,
1651 &detachstate);
1652 if (status == PTHDB_SUCCESS && detachstate == PDS_DETACHED)
1653 fprintf_unfiltered (buf, ", detached");
1654
1655 pthdb_pthread_cancelpend (pd_session, pdtid, &cancelpend);
1656 if (status == PTHDB_SUCCESS && cancelpend)
1657 fprintf_unfiltered (buf, ", cancel pending");
1658
1659 ui_file_write (buf, "", 1);
1660
1661 xfree (ret); /* Free old buffer. */
1662
1663 ret = ui_file_xstrdup (buf, &length);
1664 ui_file_delete (buf);
1665
1666 return ret;
1667 }
1668
1669 /* Initialize target aix_thread_ops. */
1670
1671 static void
1672 init_aix_thread_ops (void)
1673 {
1674 aix_thread_ops.to_shortname = "aix-threads";
1675 aix_thread_ops.to_longname = "AIX pthread support";
1676 aix_thread_ops.to_doc = "AIX pthread support";
1677
1678 aix_thread_ops.to_attach = aix_thread_attach;
1679 aix_thread_ops.to_detach = aix_thread_detach;
1680 aix_thread_ops.to_resume = aix_thread_resume;
1681 aix_thread_ops.to_wait = aix_thread_wait;
1682 aix_thread_ops.to_fetch_registers = aix_thread_fetch_registers;
1683 aix_thread_ops.to_store_registers = aix_thread_store_registers;
1684 aix_thread_ops.to_xfer_memory = aix_thread_xfer_memory;
1685 /* No need for aix_thread_ops.to_create_inferior, because we activate thread
1686 debugging when the inferior reaches pd_brk_addr. */
1687 aix_thread_ops.to_kill = aix_thread_kill;
1688 aix_thread_ops.to_mourn_inferior = aix_thread_mourn_inferior;
1689 aix_thread_ops.to_thread_alive = aix_thread_thread_alive;
1690 aix_thread_ops.to_pid_to_str = aix_thread_pid_to_str;
1691 aix_thread_ops.to_extra_thread_info = aix_thread_extra_thread_info;
1692 aix_thread_ops.to_stratum = thread_stratum;
1693 aix_thread_ops.to_magic = OPS_MAGIC;
1694 }
1695
1696 /* Module startup initialization function, automagically called by
1697 init.c. */
1698
1699 void
1700 _initialize_aix_thread (void)
1701 {
1702 init_aix_thread_ops ();
1703 add_target (&aix_thread_ops);
1704
1705 /* Notice when object files get loaded and unloaded. */
1706 target_new_objfile_chain = target_new_objfile_hook;
1707 target_new_objfile_hook = new_objfile;
1708
1709 add_show_from_set (add_set_cmd ("aix-thread", no_class, var_zinteger,
1710 (char *) &debug_aix_thread,
1711 "Set debugging of AIX thread module.\n"
1712 "Enables printf debugging output.\n",
1713 &setdebuglist),
1714 &showdebuglist);
1715 }
This page took 0.086858 seconds and 4 git commands to generate.