4692d35c81fa1f93dced23b4ca06790eddbd2a2a
[platform/upstream/elfutils.git] / backends / sh_retval.c
1 /* Function return value location for Linux/SH ABI.
2    Copyright (C) 2010 Red Hat, Inc.
3    This file is part of elfutils.
4    Contributed by Matt Fleming <matt@console-pimps.org>.
5
6    This file is free software; you can redistribute it and/or modify
7    it under the terms of either
8
9      * the GNU Lesser General Public License as published by the Free
10        Software Foundation; either version 3 of the License, or (at
11        your option) any later version
12
13    or
14
15      * the GNU General Public License as published by the Free
16        Software Foundation; either version 2 of the License, or (at
17        your option) any later version
18
19    or both in parallel, as here.
20
21    elfutils is distributed in the hope that it will be useful, but
22    WITHOUT ANY WARRANTY; without even the implied warranty of
23    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24    General Public License for more details.
25
26    You should have received copies of the GNU General Public License and
27    the GNU Lesser General Public License along with this program.  If
28    not, see <http://www.gnu.org/licenses/>.  */
29
30 #ifdef HAVE_CONFIG_H
31 # include <config.h>
32 #endif
33
34 #include <assert.h>
35 #include <dwarf.h>
36
37 #define BACKEND sh_
38 #include "libebl_CPU.h"
39
40
41 /* This is the SVR4 ELF ABI convention, but AIX and Linux do not use it.  */
42 #define SVR4_STRUCT_RETURN 0
43
44
45 /* r0, or pair r0, r1.  */
46 static const Dwarf_Op loc_intreg[] =
47   {
48     { .atom = DW_OP_reg0 }, { .atom = DW_OP_piece, .number = 4 },
49     { .atom = DW_OP_reg1 }, { .atom = DW_OP_piece, .number = 4 },
50   };
51 #define nloc_intreg     1
52 #define nloc_intregpair 4
53
54 /* fr0 or fr1.  */
55 static const Dwarf_Op loc_fpreg[] =
56   {
57     { .atom = DW_OP_reg25 }, { .atom = DW_OP_piece, .number = 4 },
58     { .atom = DW_OP_reg26 }, { .atom = DW_OP_piece, .number = 4 },
59   };
60 #define nloc_fpreg      1
61 #define nloc_fpregpair  2
62
63 int
64 sh_return_value_location (Dwarf_Die *functypedie, const Dwarf_Op **locp)
65 {
66   /* Start with the function's type, and get the DW_AT_type attribute,
67      which is the type of the return value.  */
68
69   Dwarf_Attribute attr_mem;
70   Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type,
71                                                 &attr_mem);
72   if (attr == NULL)
73     /* The function has no return value, like a `void' function in C.  */
74     return 0;
75
76   Dwarf_Die die_mem;
77   Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
78   int tag = dwarf_tag (typedie);
79
80   /* Follow typedefs and qualifiers to get to the actual type.  */
81   while (tag == DW_TAG_typedef
82          || tag == DW_TAG_const_type || tag == DW_TAG_volatile_type
83          || tag == DW_TAG_restrict_type || tag == DW_TAG_mutable_type)
84     {
85       attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
86       typedie = dwarf_formref_die (attr, &die_mem);
87       tag = dwarf_tag (typedie);
88     }
89
90   Dwarf_Word size;
91   switch (tag)
92     {
93     case -1:
94       return -1;
95
96     case DW_TAG_subrange_type:
97       if (! dwarf_hasattr_integrate (typedie, DW_AT_byte_size))
98         {
99           attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
100           typedie = dwarf_formref_die (attr, &die_mem);
101           tag = dwarf_tag (typedie);
102         }
103       /* Fall through.  */
104
105     case DW_TAG_base_type:
106     case DW_TAG_enumeration_type:
107     case DW_TAG_pointer_type:
108     case DW_TAG_ptr_to_member_type:
109       if (dwarf_formudata (dwarf_attr_integrate (typedie, DW_AT_byte_size,
110                                                  &attr_mem), &size) != 0)
111         {
112           if (tag == DW_TAG_pointer_type || tag == DW_TAG_ptr_to_member_type)
113             size = 4;
114           else
115             return -1;
116         }
117       if (size <= 8)
118         {
119           if (tag == DW_TAG_base_type)
120             {
121               Dwarf_Word encoding;
122               if (dwarf_formudata (dwarf_attr_integrate (typedie,
123                                                          DW_AT_encoding,
124                                                          &attr_mem),
125                                    &encoding) != 0)
126                 return -1;
127               if (encoding == DW_ATE_float)
128                 {
129                   *locp = loc_fpreg;
130                   return size <= 4 ? nloc_fpreg : nloc_fpregpair;
131                 }
132             }
133           *locp = loc_intreg;
134           return size <= 4 ? nloc_intreg : nloc_intregpair;
135         }
136     }
137
138   /* XXX We don't have a good way to return specific errors from ebl calls.
139      This value means we do not understand the type, but it is well-formed
140      DWARF and might be valid.  */
141   return -2;
142 }