OpenCores
URL https://opencores.org/ocsvn/hf-risc/hf-risc/trunk

Subversion Repositories hf-risc

[/] [hf-risc/] [trunk/] [tools/] [riscv-gnu-toolchain-master/] [glibc/] [sysdeps/] [unix/] [sysv/] [linux/] [riscv/] [register-dump.h] - Blame information for rev 13

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 13 serginhofr
/* Dump registers.
2
   Copyright (C) 2000, 2001, 2002, 2006 Free Software Foundation, Inc.
3
   This file is part of the GNU C Library.
4
   Contributed by Andreas Jaeger <aj@suse.de>, 2000.
5
 
6
   The GNU C Library is free software; you can redistribute it and/or
7
   modify it under the terms of the GNU Lesser General Public
8
   License as published by the Free Software Foundation; either
9
   version 2.1 of the License, or (at your option) any later version.
10
 
11
   The GNU C Library 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 GNU
14
   Lesser General Public License for more details.
15
 
16
   You should have received a copy of the GNU Lesser General Public
17
   License along with the GNU C Library; if not, write to the Free
18
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19
   02111-1307 USA.  */
20
 
21
#include <unistd.h>
22
#include <string.h>
23
#include <_itoa.h>
24
 
25
static void
26
hexvalue (unsigned long int value, char *buf, size_t len)
27
{
28
  char *cp = _itoa_word (value, buf + len, 16, 0);
29
  while (cp > buf)
30
    *--cp = '0';
31
}
32
 
33
#define REGDUMP_NREGS 32
34
#define REGDUMP_PER_LINE (80 / (__WORDSIZE/4 + 4))
35
 
36
static void
37
register_dump (int fd, struct ucontext *ctx)
38
{
39
  int i;
40
  char regvalue[__WORDSIZE/4 + 1];
41
  char str[82 * ((REGDUMP_NREGS + REGDUMP_PER_LINE - 1) / REGDUMP_PER_LINE)];
42
 
43
  static const char names[REGDUMP_NREGS][4] = {
44
    "pc", "ra", "sp", "gp", "tp", "t0", "t1", "t2",
45
    "s0", "s1", "a0", "a1", "a2", "a3", "a4", "a5",
46
    "a6", "a7", "s2", "s3", "s4", "s5", "s6", "s7",
47
    "s8", "s9", "sA", "sB", "t3", "t4", "t5", "t6"
48
  };
49
 
50
  str[0] = 0;
51
  for (i = 0; i < REGDUMP_NREGS; i++)
52
    {
53
      strcat (str, names[i]);
54
      strcat (str, " ");
55
      hexvalue (ctx->uc_mcontext.gregs[i], regvalue, __WORDSIZE/4);
56
      strcat (str, regvalue);
57
 
58
      if ((i + 1) % REGDUMP_PER_LINE == 0)
59
        strcat (str, "\n");
60
    }
61
 
62
  write (fd, str, strlen (str));
63
}
64
 
65
#define REGISTER_DUMP register_dump (fd, ctx)

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.