* gas/i386/intel16.d: Ignore trailing text with #pass.
[deliverable/binutils-gdb.git] / gdb / arm-linux-nat.c
CommitLineData
ed9a39eb 1/* GNU/Linux on ARM native support.
34e8f22d 2 Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
ed9a39eb
JM
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21#include "defs.h"
22#include "inferior.h"
23#include "gdbcore.h"
24#include "gdb_string.h"
4e052eda 25#include "regcache.h"
ed9a39eb 26
aeb98c60
RE
27#include "arm-tdep.h"
28
ed9a39eb
JM
29#include <sys/user.h>
30#include <sys/ptrace.h>
31#include <sys/utsname.h>
41c49b06 32#include <sys/procfs.h>
ed9a39eb 33
c60c0f5f
MS
34/* Prototypes for supply_gregset etc. */
35#include "gregset.h"
36
ed9a39eb
JM
37extern int arm_apcs_32;
38
39#define typeNone 0x00
40#define typeSingle 0x01
41#define typeDouble 0x02
42#define typeExtended 0x03
43#define FPWORDS 28
34e8f22d 44#define ARM_CPSR_REGNUM 16
ed9a39eb
JM
45
46typedef union tagFPREG
47 {
48 unsigned int fSingle;
49 unsigned int fDouble[2];
50 unsigned int fExtended[3];
51 }
52FPREG;
53
54typedef struct tagFPA11
55 {
56 FPREG fpreg[8]; /* 8 floating point registers */
57 unsigned int fpsr; /* floating point status register */
58 unsigned int fpcr; /* floating point control register */
59 unsigned char fType[8]; /* type of floating point value held in
60 floating point registers. */
61 int initflag; /* NWFPE initialization flag. */
62 }
63FPA11;
64
65/* The following variables are used to determine the version of the
fdf39c9a 66 underlying GNU/Linux operating system. Examples:
ed9a39eb 67
fdf39c9a 68 GNU/Linux 2.0.35 GNU/Linux 2.2.12
ed9a39eb
JM
69 os_version = 0x00020023 os_version = 0x0002020c
70 os_major = 2 os_major = 2
71 os_minor = 0 os_minor = 2
72 os_release = 35 os_release = 12
73
74 Note: os_version = (os_major << 16) | (os_minor << 8) | os_release
75
76 These are initialized using get_linux_version() from
77 _initialize_arm_linux_nat(). */
78
79static unsigned int os_version, os_major, os_minor, os_release;
80
fdf39c9a 81/* On GNU/Linux, threads are implemented as pseudo-processes, in which
41c49b06 82 case we may be tracing more than one process at a time. In that
39f77062 83 case, inferior_ptid will contain the main process ID and the
fdf39c9a
RE
84 individual thread (process) ID. get_thread_id () is used to get
85 the thread id if it's available, and the process id otherwise. */
41c49b06
SB
86
87int
39f77062 88get_thread_id (ptid_t ptid)
41c49b06 89{
39f77062
KB
90 int tid = TIDGET (ptid);
91 if (0 == tid)
92 tid = PIDGET (ptid);
41c49b06
SB
93 return tid;
94}
39f77062 95#define GET_THREAD_ID(PTID) get_thread_id ((PTID));
41c49b06 96
ed9a39eb 97static void
56624b0a 98fetch_nwfpe_single (unsigned int fn, FPA11 * fpa11)
ed9a39eb
JM
99{
100 unsigned int mem[3];
101
102 mem[0] = fpa11->fpreg[fn].fSingle;
103 mem[1] = 0;
104 mem[2] = 0;
23a6d369 105 regcache_raw_supply (current_regcache, ARM_F0_REGNUM + fn, (char *) &mem[0]);
ed9a39eb
JM
106}
107
108static void
56624b0a 109fetch_nwfpe_double (unsigned int fn, FPA11 * fpa11)
ed9a39eb
JM
110{
111 unsigned int mem[3];
112
113 mem[0] = fpa11->fpreg[fn].fDouble[1];
114 mem[1] = fpa11->fpreg[fn].fDouble[0];
115 mem[2] = 0;
23a6d369 116 regcache_raw_supply (current_regcache, ARM_F0_REGNUM + fn, (char *) &mem[0]);
ed9a39eb
JM
117}
118
119static void
56624b0a 120fetch_nwfpe_none (unsigned int fn)
ed9a39eb
JM
121{
122 unsigned int mem[3] =
123 {0, 0, 0};
124
23a6d369 125 regcache_raw_supply (current_regcache, ARM_F0_REGNUM + fn, (char *) &mem[0]);
ed9a39eb
JM
126}
127
128static void
56624b0a 129fetch_nwfpe_extended (unsigned int fn, FPA11 * fpa11)
ed9a39eb
JM
130{
131 unsigned int mem[3];
132
133 mem[0] = fpa11->fpreg[fn].fExtended[0]; /* sign & exponent */
134 mem[1] = fpa11->fpreg[fn].fExtended[2]; /* ls bits */
135 mem[2] = fpa11->fpreg[fn].fExtended[1]; /* ms bits */
23a6d369 136 regcache_raw_supply (current_regcache, ARM_F0_REGNUM + fn, (char *) &mem[0]);
ed9a39eb
JM
137}
138
41c49b06
SB
139static void
140fetch_nwfpe_register (int regno, FPA11 * fpa11)
141{
34e8f22d 142 int fn = regno - ARM_F0_REGNUM;
41c49b06
SB
143
144 switch (fpa11->fType[fn])
145 {
146 case typeSingle:
147 fetch_nwfpe_single (fn, fpa11);
148 break;
149
150 case typeDouble:
151 fetch_nwfpe_double (fn, fpa11);
152 break;
153
154 case typeExtended:
155 fetch_nwfpe_extended (fn, fpa11);
156 break;
157
158 default:
159 fetch_nwfpe_none (fn);
160 }
161}
162
ed9a39eb 163static void
85ae890c 164store_nwfpe_single (unsigned int fn, FPA11 *fpa11)
ed9a39eb
JM
165{
166 unsigned int mem[3];
167
822c9732
AC
168 regcache_raw_collect (current_regcache, ARM_F0_REGNUM + fn,
169 (char *) &mem[0]);
ed9a39eb
JM
170 fpa11->fpreg[fn].fSingle = mem[0];
171 fpa11->fType[fn] = typeSingle;
172}
173
174static void
85ae890c 175store_nwfpe_double (unsigned int fn, FPA11 *fpa11)
ed9a39eb
JM
176{
177 unsigned int mem[3];
178
822c9732
AC
179 regcache_raw_collect (current_regcache, ARM_F0_REGNUM + fn,
180 (char *) &mem[0]);
ed9a39eb
JM
181 fpa11->fpreg[fn].fDouble[1] = mem[0];
182 fpa11->fpreg[fn].fDouble[0] = mem[1];
183 fpa11->fType[fn] = typeDouble;
184}
185
186void
85ae890c 187store_nwfpe_extended (unsigned int fn, FPA11 *fpa11)
ed9a39eb
JM
188{
189 unsigned int mem[3];
190
822c9732
AC
191 regcache_raw_collect (current_regcache, ARM_F0_REGNUM + fn,
192 (char *) &mem[0]);
ed9a39eb
JM
193 fpa11->fpreg[fn].fExtended[0] = mem[0]; /* sign & exponent */
194 fpa11->fpreg[fn].fExtended[2] = mem[1]; /* ls bits */
195 fpa11->fpreg[fn].fExtended[1] = mem[2]; /* ms bits */
196 fpa11->fType[fn] = typeDouble;
197}
198
41c49b06
SB
199void
200store_nwfpe_register (int regno, FPA11 * fpa11)
201{
c6b92abd 202 if (register_cached (regno))
41c49b06 203 {
34e8f22d 204 unsigned int fn = regno - ARM_F0_REGNUM;
41c49b06
SB
205 switch (fpa11->fType[fn])
206 {
207 case typeSingle:
208 store_nwfpe_single (fn, fpa11);
209 break;
210
211 case typeDouble:
212 store_nwfpe_double (fn, fpa11);
213 break;
214
215 case typeExtended:
216 store_nwfpe_extended (fn, fpa11);
217 break;
218 }
219 }
220}
221
222
223/* Get the value of a particular register from the floating point
c6b92abd 224 state of the process and store it into regcache. */
41c49b06
SB
225
226static void
227fetch_fpregister (int regno)
228{
229 int ret, tid;
230 FPA11 fp;
231
232 /* Get the thread id for the ptrace call. */
39f77062 233 tid = GET_THREAD_ID (inferior_ptid);
41c49b06
SB
234
235 /* Read the floating point state. */
236 ret = ptrace (PT_GETFPREGS, tid, 0, &fp);
237 if (ret < 0)
238 {
edefbb7c 239 warning (_("Unable to fetch floating point register."));
41c49b06
SB
240 return;
241 }
242
243 /* Fetch fpsr. */
34e8f22d 244 if (ARM_FPS_REGNUM == regno)
23a6d369 245 regcache_raw_supply (current_regcache, ARM_FPS_REGNUM, (char *) &fp.fpsr);
41c49b06
SB
246
247 /* Fetch the floating point register. */
34e8f22d 248 if (regno >= ARM_F0_REGNUM && regno <= ARM_F7_REGNUM)
41c49b06 249 {
34e8f22d 250 int fn = regno - ARM_F0_REGNUM;
41c49b06
SB
251
252 switch (fp.fType[fn])
253 {
254 case typeSingle:
255 fetch_nwfpe_single (fn, &fp);
256 break;
257
258 case typeDouble:
259 fetch_nwfpe_double (fn, &fp);
260 break;
261
262 case typeExtended:
263 fetch_nwfpe_extended (fn, &fp);
264 break;
265
266 default:
267 fetch_nwfpe_none (fn);
268 }
269 }
270}
271
272/* Get the whole floating point state of the process and store it
c6b92abd 273 into regcache. */
ed9a39eb
JM
274
275static void
276fetch_fpregs (void)
277{
41c49b06 278 int ret, regno, tid;
ed9a39eb
JM
279 FPA11 fp;
280
41c49b06 281 /* Get the thread id for the ptrace call. */
39f77062 282 tid = GET_THREAD_ID (inferior_ptid);
41c49b06 283
ed9a39eb 284 /* Read the floating point state. */
41c49b06 285 ret = ptrace (PT_GETFPREGS, tid, 0, &fp);
ed9a39eb
JM
286 if (ret < 0)
287 {
edefbb7c 288 warning (_("Unable to fetch the floating point registers."));
ed9a39eb
JM
289 return;
290 }
291
292 /* Fetch fpsr. */
23a6d369 293 regcache_raw_supply (current_regcache, ARM_FPS_REGNUM, (char *) &fp.fpsr);
ed9a39eb
JM
294
295 /* Fetch the floating point registers. */
34e8f22d 296 for (regno = ARM_F0_REGNUM; regno <= ARM_F7_REGNUM; regno++)
ed9a39eb 297 {
34e8f22d 298 int fn = regno - ARM_F0_REGNUM;
ed9a39eb
JM
299
300 switch (fp.fType[fn])
301 {
302 case typeSingle:
56624b0a 303 fetch_nwfpe_single (fn, &fp);
ed9a39eb
JM
304 break;
305
306 case typeDouble:
56624b0a 307 fetch_nwfpe_double (fn, &fp);
ed9a39eb
JM
308 break;
309
310 case typeExtended:
56624b0a 311 fetch_nwfpe_extended (fn, &fp);
ed9a39eb
JM
312 break;
313
314 default:
56624b0a 315 fetch_nwfpe_none (fn);
ed9a39eb
JM
316 }
317 }
318}
319
41c49b06 320/* Save a particular register into the floating point state of the
c6b92abd 321 process using the contents from regcache. */
41c49b06
SB
322
323static void
324store_fpregister (int regno)
325{
326 int ret, tid;
327 FPA11 fp;
328
329 /* Get the thread id for the ptrace call. */
39f77062 330 tid = GET_THREAD_ID (inferior_ptid);
41c49b06
SB
331
332 /* Read the floating point state. */
333 ret = ptrace (PT_GETFPREGS, tid, 0, &fp);
334 if (ret < 0)
335 {
edefbb7c 336 warning (_("Unable to fetch the floating point registers."));
41c49b06
SB
337 return;
338 }
339
340 /* Store fpsr. */
34e8f22d 341 if (ARM_FPS_REGNUM == regno && register_cached (ARM_FPS_REGNUM))
822c9732 342 regcache_raw_collect (current_regcache, ARM_FPS_REGNUM, (char *) &fp.fpsr);
41c49b06
SB
343
344 /* Store the floating point register. */
34e8f22d 345 if (regno >= ARM_F0_REGNUM && regno <= ARM_F7_REGNUM)
41c49b06
SB
346 {
347 store_nwfpe_register (regno, &fp);
348 }
349
350 ret = ptrace (PTRACE_SETFPREGS, tid, 0, &fp);
351 if (ret < 0)
352 {
edefbb7c 353 warning (_("Unable to store floating point register."));
41c49b06
SB
354 return;
355 }
356}
357
ed9a39eb 358/* Save the whole floating point state of the process using
c6b92abd 359 the contents from regcache. */
ed9a39eb
JM
360
361static void
362store_fpregs (void)
363{
41c49b06 364 int ret, regno, tid;
ed9a39eb
JM
365 FPA11 fp;
366
41c49b06 367 /* Get the thread id for the ptrace call. */
39f77062 368 tid = GET_THREAD_ID (inferior_ptid);
41c49b06
SB
369
370 /* Read the floating point state. */
371 ret = ptrace (PT_GETFPREGS, tid, 0, &fp);
372 if (ret < 0)
373 {
edefbb7c 374 warning (_("Unable to fetch the floating point registers."));
41c49b06
SB
375 return;
376 }
377
ed9a39eb 378 /* Store fpsr. */
34e8f22d 379 if (register_cached (ARM_FPS_REGNUM))
822c9732 380 regcache_raw_collect (current_regcache, ARM_FPS_REGNUM, (char *) &fp.fpsr);
ed9a39eb
JM
381
382 /* Store the floating point registers. */
34e8f22d 383 for (regno = ARM_F0_REGNUM; regno <= ARM_F7_REGNUM; regno++)
ed9a39eb 384 {
41c49b06 385 fetch_nwfpe_register (regno, &fp);
ed9a39eb
JM
386 }
387
41c49b06 388 ret = ptrace (PTRACE_SETFPREGS, tid, 0, &fp);
ed9a39eb
JM
389 if (ret < 0)
390 {
edefbb7c 391 warning (_("Unable to store floating point registers."));
ed9a39eb
JM
392 return;
393 }
394}
395
41c49b06 396/* Fetch a general register of the process and store into
c6b92abd 397 regcache. */
41c49b06
SB
398
399static void
400fetch_register (int regno)
401{
402 int ret, tid;
c2152441 403 elf_gregset_t regs;
41c49b06
SB
404
405 /* Get the thread id for the ptrace call. */
39f77062 406 tid = GET_THREAD_ID (inferior_ptid);
41c49b06
SB
407
408 ret = ptrace (PTRACE_GETREGS, tid, 0, &regs);
409 if (ret < 0)
410 {
edefbb7c 411 warning (_("Unable to fetch general register."));
41c49b06
SB
412 return;
413 }
414
34e8f22d 415 if (regno >= ARM_A1_REGNUM && regno < ARM_PC_REGNUM)
23a6d369 416 regcache_raw_supply (current_regcache, regno, (char *) &regs[regno]);
41c49b06 417
34e8f22d 418 if (ARM_PS_REGNUM == regno)
41c49b06
SB
419 {
420 if (arm_apcs_32)
23a6d369
AC
421 regcache_raw_supply (current_regcache, ARM_PS_REGNUM,
422 (char *) &regs[ARM_CPSR_REGNUM]);
41c49b06 423 else
23a6d369
AC
424 regcache_raw_supply (current_regcache, ARM_PS_REGNUM,
425 (char *) &regs[ARM_PC_REGNUM]);
41c49b06
SB
426 }
427
34e8f22d 428 if (ARM_PC_REGNUM == regno)
41c49b06 429 {
34e8f22d 430 regs[ARM_PC_REGNUM] = ADDR_BITS_REMOVE (regs[ARM_PC_REGNUM]);
23a6d369
AC
431 regcache_raw_supply (current_regcache, ARM_PC_REGNUM,
432 (char *) &regs[ARM_PC_REGNUM]);
41c49b06
SB
433 }
434}
435
ed9a39eb 436/* Fetch all general registers of the process and store into
c6b92abd 437 regcache. */
ed9a39eb
JM
438
439static void
440fetch_regs (void)
441{
41c49b06 442 int ret, regno, tid;
c2152441 443 elf_gregset_t regs;
ed9a39eb 444
41c49b06 445 /* Get the thread id for the ptrace call. */
39f77062 446 tid = GET_THREAD_ID (inferior_ptid);
41c49b06
SB
447
448 ret = ptrace (PTRACE_GETREGS, tid, 0, &regs);
ed9a39eb
JM
449 if (ret < 0)
450 {
edefbb7c 451 warning (_("Unable to fetch general registers."));
ed9a39eb
JM
452 return;
453 }
454
34e8f22d 455 for (regno = ARM_A1_REGNUM; regno < ARM_PC_REGNUM; regno++)
23a6d369 456 regcache_raw_supply (current_regcache, regno, (char *) &regs[regno]);
ed9a39eb
JM
457
458 if (arm_apcs_32)
23a6d369
AC
459 regcache_raw_supply (current_regcache, ARM_PS_REGNUM,
460 (char *) &regs[ARM_CPSR_REGNUM]);
ed9a39eb 461 else
23a6d369
AC
462 regcache_raw_supply (current_regcache, ARM_PS_REGNUM,
463 (char *) &regs[ARM_PC_REGNUM]);
ed9a39eb 464
34e8f22d 465 regs[ARM_PC_REGNUM] = ADDR_BITS_REMOVE (regs[ARM_PC_REGNUM]);
23a6d369
AC
466 regcache_raw_supply (current_regcache, ARM_PC_REGNUM,
467 (char *) &regs[ARM_PC_REGNUM]);
ed9a39eb
JM
468}
469
470/* Store all general registers of the process from the values in
c6b92abd 471 regcache. */
ed9a39eb 472
41c49b06
SB
473static void
474store_register (int regno)
475{
476 int ret, tid;
c2152441 477 elf_gregset_t regs;
41c49b06 478
c6b92abd 479 if (!register_cached (regno))
41c49b06
SB
480 return;
481
482 /* Get the thread id for the ptrace call. */
39f77062 483 tid = GET_THREAD_ID (inferior_ptid);
41c49b06
SB
484
485 /* Get the general registers from the process. */
486 ret = ptrace (PTRACE_GETREGS, tid, 0, &regs);
487 if (ret < 0)
488 {
edefbb7c 489 warning (_("Unable to fetch general registers."));
41c49b06
SB
490 return;
491 }
492
34e8f22d 493 if (regno >= ARM_A1_REGNUM && regno <= ARM_PC_REGNUM)
822c9732 494 regcache_raw_collect (current_regcache, regno, (char *) &regs[regno]);
41c49b06
SB
495
496 ret = ptrace (PTRACE_SETREGS, tid, 0, &regs);
497 if (ret < 0)
498 {
edefbb7c 499 warning (_("Unable to store general register."));
41c49b06
SB
500 return;
501 }
502}
503
ed9a39eb
JM
504static void
505store_regs (void)
506{
41c49b06 507 int ret, regno, tid;
c2152441 508 elf_gregset_t regs;
ed9a39eb 509
41c49b06 510 /* Get the thread id for the ptrace call. */
39f77062 511 tid = GET_THREAD_ID (inferior_ptid);
41c49b06
SB
512
513 /* Fetch the general registers. */
514 ret = ptrace (PTRACE_GETREGS, tid, 0, &regs);
ed9a39eb
JM
515 if (ret < 0)
516 {
edefbb7c 517 warning (_("Unable to fetch general registers."));
ed9a39eb
JM
518 return;
519 }
520
34e8f22d 521 for (regno = ARM_A1_REGNUM; regno <= ARM_PC_REGNUM; regno++)
ed9a39eb 522 {
c6b92abd 523 if (register_cached (regno))
822c9732 524 regcache_raw_collect (current_regcache, regno, (char *) &regs[regno]);
ed9a39eb
JM
525 }
526
41c49b06 527 ret = ptrace (PTRACE_SETREGS, tid, 0, &regs);
ed9a39eb
JM
528
529 if (ret < 0)
530 {
edefbb7c 531 warning (_("Unable to store general registers."));
ed9a39eb
JM
532 return;
533 }
534}
535
536/* Fetch registers from the child process. Fetch all registers if
537 regno == -1, otherwise fetch all general registers or all floating
538 point registers depending upon the value of regno. */
539
540void
541fetch_inferior_registers (int regno)
542{
41c49b06
SB
543 if (-1 == regno)
544 {
545 fetch_regs ();
546 fetch_fpregs ();
547 }
548 else
549 {
34e8f22d 550 if (regno < ARM_F0_REGNUM || regno > ARM_FPS_REGNUM)
41c49b06 551 fetch_register (regno);
ed9a39eb 552
34e8f22d 553 if (regno >= ARM_F0_REGNUM && regno <= ARM_FPS_REGNUM)
41c49b06
SB
554 fetch_fpregister (regno);
555 }
ed9a39eb
JM
556}
557
558/* Store registers back into the inferior. Store all registers if
559 regno == -1, otherwise store all general registers or all floating
560 point registers depending upon the value of regno. */
561
562void
563store_inferior_registers (int regno)
564{
41c49b06
SB
565 if (-1 == regno)
566 {
567 store_regs ();
568 store_fpregs ();
569 }
570 else
571 {
34e8f22d 572 if ((regno < ARM_F0_REGNUM) || (regno > ARM_FPS_REGNUM))
41c49b06 573 store_register (regno);
ed9a39eb 574
34e8f22d 575 if ((regno >= ARM_F0_REGNUM) && (regno <= ARM_FPS_REGNUM))
41c49b06
SB
576 store_fpregister (regno);
577 }
ed9a39eb
JM
578}
579
41c49b06
SB
580/* Fill register regno (if it is a general-purpose register) in
581 *gregsetp with the appropriate value from GDB's register array.
582 If regno is -1, do this for all registers. */
583
584void
713f0374 585fill_gregset (gdb_gregset_t *gregsetp, int regno)
41c49b06
SB
586{
587 if (-1 == regno)
588 {
589 int regnum;
34e8f22d 590 for (regnum = ARM_A1_REGNUM; regnum <= ARM_PC_REGNUM; regnum++)
822c9732
AC
591 regcache_raw_collect (current_regcache, regnum,
592 (char *) &(*gregsetp)[regnum]);
41c49b06 593 }
34e8f22d 594 else if (regno >= ARM_A1_REGNUM && regno <= ARM_PC_REGNUM)
822c9732
AC
595 regcache_raw_collect (current_regcache, regno,
596 (char *) &(*gregsetp)[regno]);
41c49b06 597
34e8f22d 598 if (ARM_PS_REGNUM == regno || -1 == regno)
41c49b06 599 {
17fd1ad9 600 if (arm_apcs_32)
822c9732
AC
601 regcache_raw_collect (current_regcache, ARM_PS_REGNUM,
602 (char *) &(*gregsetp)[ARM_CPSR_REGNUM]);
17fd1ad9 603 else
822c9732
AC
604 regcache_raw_collect (current_regcache, ARM_PC_REGNUM,
605 (char *) &(*gregsetp)[ARM_PC_REGNUM]);
41c49b06 606 }
41c49b06
SB
607}
608
609/* Fill GDB's register array with the general-purpose register values
610 in *gregsetp. */
611
612void
713f0374 613supply_gregset (gdb_gregset_t *gregsetp)
41c49b06
SB
614{
615 int regno, reg_pc;
616
34e8f22d 617 for (regno = ARM_A1_REGNUM; regno < ARM_PC_REGNUM; regno++)
23a6d369
AC
618 regcache_raw_supply (current_regcache, regno,
619 (char *) &(*gregsetp)[regno]);
41c49b06
SB
620
621 if (arm_apcs_32)
23a6d369
AC
622 regcache_raw_supply (current_regcache, ARM_PS_REGNUM,
623 (char *) &(*gregsetp)[ARM_CPSR_REGNUM]);
41c49b06 624 else
23a6d369
AC
625 regcache_raw_supply (current_regcache, ARM_PS_REGNUM,
626 (char *) &(*gregsetp)[ARM_PC_REGNUM]);
41c49b06 627
34e8f22d 628 reg_pc = ADDR_BITS_REMOVE ((CORE_ADDR)(*gregsetp)[ARM_PC_REGNUM]);
23a6d369 629 regcache_raw_supply (current_regcache, ARM_PC_REGNUM, (char *) &reg_pc);
41c49b06
SB
630}
631
632/* Fill register regno (if it is a floating-point register) in
633 *fpregsetp with the appropriate value from GDB's register array.
634 If regno is -1, do this for all registers. */
635
636void
713f0374 637fill_fpregset (gdb_fpregset_t *fpregsetp, int regno)
41c49b06
SB
638{
639 FPA11 *fp = (FPA11 *) fpregsetp;
640
641 if (-1 == regno)
642 {
643 int regnum;
34e8f22d 644 for (regnum = ARM_F0_REGNUM; regnum <= ARM_F7_REGNUM; regnum++)
41c49b06
SB
645 store_nwfpe_register (regnum, fp);
646 }
34e8f22d 647 else if (regno >= ARM_F0_REGNUM && regno <= ARM_F7_REGNUM)
41c49b06
SB
648 {
649 store_nwfpe_register (regno, fp);
650 return;
651 }
652
653 /* Store fpsr. */
34e8f22d 654 if (ARM_FPS_REGNUM == regno || -1 == regno)
822c9732
AC
655 regcache_raw_collect (current_regcache, ARM_FPS_REGNUM,
656 (char *) &fp->fpsr);
41c49b06
SB
657}
658
659/* Fill GDB's register array with the floating-point register values
660 in *fpregsetp. */
661
662void
713f0374 663supply_fpregset (gdb_fpregset_t *fpregsetp)
ed9a39eb 664{
41c49b06
SB
665 int regno;
666 FPA11 *fp = (FPA11 *) fpregsetp;
667
668 /* Fetch fpsr. */
23a6d369 669 regcache_raw_supply (current_regcache, ARM_FPS_REGNUM, (char *) &fp->fpsr);
41c49b06
SB
670
671 /* Fetch the floating point registers. */
34e8f22d 672 for (regno = ARM_F0_REGNUM; regno <= ARM_F7_REGNUM; regno++)
41c49b06
SB
673 {
674 fetch_nwfpe_register (regno, fp);
675 }
ed9a39eb
JM
676}
677
678int
679arm_linux_kernel_u_size (void)
680{
681 return (sizeof (struct user));
682}
683
ed9a39eb
JM
684static unsigned int
685get_linux_version (unsigned int *vmajor,
686 unsigned int *vminor,
687 unsigned int *vrelease)
688{
689 struct utsname info;
690 char *pmajor, *pminor, *prelease, *tail;
691
692 if (-1 == uname (&info))
693 {
edefbb7c 694 warning (_("Unable to determine GNU/Linux version."));
ed9a39eb
JM
695 return -1;
696 }
697
698 pmajor = strtok (info.release, ".");
699 pminor = strtok (NULL, ".");
700 prelease = strtok (NULL, ".");
701
702 *vmajor = (unsigned int) strtoul (pmajor, &tail, 0);
703 *vminor = (unsigned int) strtoul (pminor, &tail, 0);
704 *vrelease = (unsigned int) strtoul (prelease, &tail, 0);
705
706 return ((*vmajor << 16) | (*vminor << 8) | *vrelease);
707}
708
709void
710_initialize_arm_linux_nat (void)
711{
712 os_version = get_linux_version (&os_major, &os_minor, &os_release);
713}
This page took 0.34609 seconds and 4 git commands to generate.