Imported Upstream version 0.155
[platform/upstream/elfutils.git] / backends / tilegx_retval.c
1 /* Function return value location for Linux/TILE-Gx ABI.
2    Copyright (C) 2012 Tilera Corporation
3    This file is part of elfutils.
4
5    This file is free software; you can redistribute it and/or modify
6    it under the terms of either
7
8      * the GNU Lesser General Public License as published by the Free
9        Software Foundation; either version 3 of the License, or (at
10        your option) any later version
11
12    or
13
14      * the GNU General Public License as published by the Free
15        Software Foundation; either version 2 of the License, or (at
16        your option) any later version
17
18    or both in parallel, as here.
19
20    elfutils is distributed in the hope that it will be useful, but
21    WITHOUT ANY WARRANTY; without even the implied warranty of
22    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23    General Public License for more details.
24
25    You should have received copies of the GNU General Public License and
26    the GNU Lesser General Public License along with this program.  If
27    not, see <http://www.gnu.org/licenses/>.  */
28
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 tilegx_
38 #include "libebl_CPU.h"
39
40
41 /* r0.  */
42 static const Dwarf_Op loc_intreg[] =
43   {
44     { .atom = DW_OP_reg0 }
45   };
46 #define nloc_intreg     1
47
48 /* The return value is a structure and is actually stored in stack space
49    passed in a hidden argument by the caller.  But, the compiler
50    helpfully returns the address of that space in r0.  */
51 static const Dwarf_Op loc_aggregate[] =
52   {
53     { .atom = DW_OP_breg0, .number = 0 }
54   };
55 #define nloc_aggregate 1
56
57 int
58 tilegx_return_value_location (Dwarf_Die *functypedie, const Dwarf_Op **locp)
59 {
60   /* Start with the function's type, and get the DW_AT_type attribute,
61      which is the type of the return value.  */
62
63   Dwarf_Attribute attr_mem;
64   Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type,
65                                                 &attr_mem);
66   if (attr == NULL)
67     /* The function has no return value, like a `void' function in C.  */
68     return 0;
69
70   Dwarf_Die die_mem;
71   Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
72   int tag = dwarf_tag (typedie);
73
74   /* Follow typedefs and qualifiers to get to the actual type.  */
75   while (tag == DW_TAG_typedef
76          || tag == DW_TAG_const_type || tag == DW_TAG_volatile_type
77          || tag == DW_TAG_restrict_type || tag == DW_TAG_mutable_type)
78     {
79       attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
80       typedie = dwarf_formref_die (attr, &die_mem);
81       tag = dwarf_tag (typedie);
82     }
83
84   Dwarf_Word size;
85   switch (tag)
86     {
87     case -1:
88       return -1;
89
90     case DW_TAG_subrange_type:
91       if (! dwarf_hasattr_integrate (typedie, DW_AT_byte_size))
92         {
93           attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
94           typedie = dwarf_formref_die (attr, &die_mem);
95           tag = dwarf_tag (typedie);
96         }
97       /* Fall through.  */
98
99     case DW_TAG_base_type:
100     case DW_TAG_enumeration_type:
101     case DW_TAG_pointer_type:
102     case DW_TAG_ptr_to_member_type:
103       if (dwarf_formudata (dwarf_attr_integrate (typedie, DW_AT_byte_size,
104                                                  &attr_mem), &size) != 0)
105         {
106           if (tag == DW_TAG_pointer_type || tag == DW_TAG_ptr_to_member_type)
107             size = 8;
108           else
109             return -1;
110         }
111       if (tag == DW_TAG_base_type)
112         {
113           Dwarf_Word encoding;
114           if (dwarf_formudata (dwarf_attr_integrate (typedie, DW_AT_encoding,
115                                                      &attr_mem),
116                                &encoding) != 0)
117             return -1;
118         }
119
120       /* Small enough structs are passed directly in registers R0 ... R7.  */
121       if (size <= 8)
122         {
123         intreg:
124           *locp = loc_intreg;
125           return nloc_intreg;
126         }
127
128       /* Else fall through.  */
129     case DW_TAG_structure_type:
130     case DW_TAG_class_type:
131     case DW_TAG_union_type:
132     aggregate:
133       *locp = loc_aggregate;
134       return nloc_aggregate;
135
136     case DW_TAG_array_type:
137     case DW_TAG_string_type:
138       if (dwarf_aggregate_size (typedie, &size) == 0 && size <= 8)
139         {
140           if (tag == DW_TAG_array_type)
141             {
142               /* Check if it's a character array.  */
143               attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
144               typedie = dwarf_formref_die (attr, &die_mem);
145               tag = dwarf_tag (typedie);
146               if (tag != DW_TAG_base_type)
147                 goto aggregate;
148               if (dwarf_formudata (dwarf_attr_integrate (typedie,
149                                                          DW_AT_byte_size,
150                                                          &attr_mem),
151                                    &size) != 0)
152                 return -1;
153               if (size != 1)
154                 goto aggregate;
155             }
156           goto intreg;
157         }
158       goto aggregate;
159     }
160
161   /* XXX We don't have a good way to return specific errors from ebl calls.
162      This value means we do not understand the type, but it is well-formed
163      DWARF and might be valid.  */
164   return -2;
165 }