LCOV - code coverage report
Current view: top level - backends - riscv_regs.c (source / functions) Coverage Total Hit
Test: elfutils-0.192 Lines: 97.1 % 104 101
Test Date: 2024-10-18 15:14:37 Functions: 100.0 % 1 1
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 92.0 % 25 23

             Branch data     Line data    Source code
       1                 :             : /* Register names and numbers for RISC-V DWARF.
       2                 :             :    This file is part of elfutils.
       3                 :             : 
       4                 :             :    This file is free software; you can redistribute it and/or modify
       5                 :             :    it under the terms of either
       6                 :             : 
       7                 :             :      * the GNU Lesser General Public License as published by the Free
       8                 :             :        Software Foundation; either version 3 of the License, or (at
       9                 :             :        your option) any later version
      10                 :             : 
      11                 :             :    or
      12                 :             : 
      13                 :             :      * the GNU General Public License as published by the Free
      14                 :             :        Software Foundation; either version 2 of the License, or (at
      15                 :             :        your option) any later version
      16                 :             : 
      17                 :             :    or both in parallel, as here.
      18                 :             : 
      19                 :             :    elfutils is distributed in the hope that it will be useful, but
      20                 :             :    WITHOUT ANY WARRANTY; without even the implied warranty of
      21                 :             :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      22                 :             :    General Public License for more details.
      23                 :             : 
      24                 :             :    You should have received copies of the GNU General Public License and
      25                 :             :    the GNU Lesser General Public License along with this program.  If
      26                 :             :    not, see <http://www.gnu.org/licenses/>.  */
      27                 :             : 
      28                 :             : #ifdef HAVE_CONFIG_H
      29                 :             : # include <config.h>
      30                 :             : #endif
      31                 :             : 
      32                 :             : #include <string.h>
      33                 :             : #include <dwarf.h>
      34                 :             : 
      35                 :             : #define BACKEND riscv_
      36                 :             : #include "libebl_CPU.h"
      37                 :             : 
      38                 :             : ssize_t
      39                 :         312 : riscv_register_info (Ebl *ebl, int regno, char *name, size_t namelen,
      40                 :             :                      const char **prefix, const char **setname,
      41                 :             :                      int *bits, int *type)
      42                 :             : {
      43         [ +  + ]:         312 :   if (name == NULL)
      44                 :             :     return 64;
      45                 :             : 
      46                 :         308 :   *prefix = "";
      47                 :             : 
      48         [ +  + ]:         308 :   if (regno < 32)
      49                 :             :     {
      50                 :         244 :       *setname = "integer";
      51                 :         244 :       *type = DW_ATE_signed;
      52         [ -  + ]:         244 :       *bits = ebl->class == ELFCLASS64 ? 64 : 32;
      53                 :             :     }
      54                 :             :   else
      55                 :             :     {
      56                 :          64 :       *setname = "FPU";
      57                 :          64 :       *type = DW_ATE_float;
      58                 :          64 :       *bits = 64;
      59                 :             :     }
      60                 :             : 
      61   [ +  +  +  +  :         308 :   switch (regno)
          +  +  +  +  +  
          +  +  +  +  +  
             +  +  +  +  
                      - ]
      62                 :             :     {
      63                 :             :     case 0:
      64                 :           2 :       return stpcpy (name, "zero") + 1 - name;
      65                 :             : 
      66                 :          22 :     case 1:
      67                 :          22 :       *type = DW_ATE_address;
      68                 :          22 :       return stpcpy (name, "ra") + 1 - name;
      69                 :             : 
      70                 :          22 :     case 2:
      71                 :          22 :       *type = DW_ATE_address;
      72                 :          22 :       return stpcpy (name, "sp") + 1 - name;
      73                 :             : 
      74                 :           6 :     case 3:
      75                 :           6 :       *type = DW_ATE_address;
      76                 :           6 :       return stpcpy (name, "gp") + 1 - name;
      77                 :             : 
      78                 :           6 :     case 4:
      79                 :           6 :       *type = DW_ATE_address;
      80                 :           6 :       return stpcpy (name, "tp") + 1 - name;
      81                 :             : 
      82                 :          18 :     case 5 ... 7:
      83                 :          18 :       name[0] = 't';
      84                 :          18 :       name[1] = regno - 5 + '0';
      85                 :          18 :       namelen = 2;
      86                 :          18 :       break;
      87                 :             : 
      88                 :          36 :     case 8 ... 9:
      89                 :          36 :       name[0] = 's';
      90                 :          36 :       name[1] = regno - 8 + '0';
      91                 :          36 :       namelen = 2;
      92                 :          36 :       break;
      93                 :             : 
      94                 :          48 :     case 10 ... 17:
      95                 :          48 :       name[0] = 'a';
      96                 :          48 :       name[1] = regno - 10 + '0';
      97                 :          48 :       namelen = 2;
      98                 :          48 :       break;
      99                 :             : 
     100                 :          48 :     case 18 ... 25:
     101                 :          48 :       name[0] = 's';
     102                 :          48 :       name[1] = regno - 18 + '2';
     103                 :          48 :       namelen = 2;
     104                 :          48 :       break;
     105                 :             : 
     106                 :          12 :     case 26 ... 27:
     107                 :          12 :       name[0] = 's';
     108                 :          12 :       name[1] = '1';
     109                 :          12 :       name[2] = regno - 26 + '0';
     110                 :          12 :       namelen = 3;
     111                 :          12 :       break;
     112                 :             : 
     113                 :          24 :     case 28 ... 31:
     114                 :          24 :       name[0] = 't';
     115                 :          24 :       name[1] = regno - 28 + '3';
     116                 :          24 :       namelen = 2;
     117                 :          24 :       break;
     118                 :             : 
     119                 :          16 :     case 32 ... 39:
     120                 :          16 :       name[0] = 'f';
     121                 :          16 :       name[1] = 't';
     122                 :          16 :       name[2] = regno - 32 + '0';
     123                 :          16 :       namelen = 3;
     124                 :          16 :       break;
     125                 :             : 
     126                 :           4 :     case 40 ... 41:
     127                 :           4 :       name[0] = 'f';
     128                 :           4 :       name[1] = 's';
     129                 :           4 :       name[2] = regno - 40 + '0';
     130                 :           4 :       namelen = 3;
     131                 :           4 :       break;
     132                 :             : 
     133                 :          16 :     case 42 ... 49:
     134                 :          16 :       name[0] = 'f';
     135                 :          16 :       name[1] = 'a';
     136                 :          16 :       name[2] = regno - 42 + '0';
     137                 :          16 :       namelen = 3;
     138                 :          16 :       break;
     139                 :             : 
     140                 :          16 :     case 50 ... 57:
     141                 :          16 :       name[0] = 'f';
     142                 :          16 :       name[1] = 's';
     143                 :          16 :       name[2] = regno - 50 + '2';
     144                 :          16 :       namelen = 3;
     145                 :          16 :       break;
     146                 :             : 
     147                 :           4 :     case 58 ... 59:
     148                 :           4 :       name[0] = 'f';
     149                 :           4 :       name[1] = 's';
     150                 :           4 :       name[2] = '1';
     151                 :           4 :       name[3] = regno - 58 + '0';
     152                 :           4 :       namelen = 4;
     153                 :           4 :       break;
     154                 :             : 
     155                 :           4 :     case 60 ... 61:
     156                 :           4 :       name[0] = 'f';
     157                 :           4 :       name[1] = 't';
     158                 :           4 :       name[2] = regno - 60 + '8';
     159                 :           4 :       namelen = 3;
     160                 :           4 :       break;
     161                 :             : 
     162                 :           4 :     case 62 ... 63:
     163                 :           4 :       name[0] = 'f';
     164                 :           4 :       name[1] = 't';
     165                 :           4 :       name[2] = '1';
     166                 :           4 :       name[3] = regno - 62 + '0';
     167                 :           4 :       namelen = 4;
     168                 :           4 :       break;
     169                 :             : 
     170                 :           0 :     default:
     171                 :           0 :       *setname = NULL;
     172                 :           0 :       return 0;
     173                 :             :     }
     174                 :             : 
     175                 :         250 :   name[namelen++] = '\0';
     176                 :         250 :   return namelen;
     177                 :             : }
        

Generated by: LCOV version 2.0-1