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