~ubuntu-branches/debian/lenny/elfutils/lenny

« back to all changes in this revision

Viewing changes to backends/alpha_retval.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2006-08-27 15:48:23 UTC
  • Revision ID: james.westby@ubuntu.com-20060827154823-mjwd7ydlbxgwqn4u
Tags: upstream-0.123
ImportĀ upstreamĀ versionĀ 0.123

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Function return value location for Alpha ELF ABI.
 
2
   Copyright (C) 2005 Red Hat, Inc.
 
3
   This file is part of Red Hat elfutils.
 
4
 
 
5
   Red Hat elfutils is free software; you can redistribute it and/or modify
 
6
   it under the terms of the GNU General Public License as published by the
 
7
   Free Software Foundation; version 2 of the License.
 
8
 
 
9
   Red Hat elfutils is distributed in the hope that it will be useful, but
 
10
   WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
   General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU General Public License along
 
15
   with Red Hat elfutils; if not, write to the Free Software Foundation,
 
16
   Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA.
 
17
 
 
18
   Red Hat elfutils is an included package of the Open Invention Network.
 
19
   An included package of the Open Invention Network is a package for which
 
20
   Open Invention Network licensees cross-license their patents.  No patent
 
21
   license is granted, either expressly or impliedly, by designation as an
 
22
   included package.  Should you wish to participate in the Open Invention
 
23
   Network licensing program, please visit www.openinventionnetwork.com
 
24
   <http://www.openinventionnetwork.com>.  */
 
25
 
 
26
#ifdef HAVE_CONFIG_H
 
27
# include <config.h>
 
28
#endif
 
29
 
 
30
#include <assert.h>
 
31
#include <dwarf.h>
 
32
 
 
33
#define BACKEND alpha_
 
34
#include "libebl_CPU.h"
 
35
 
 
36
 
 
37
/* $0.  */
 
38
static const Dwarf_Op loc_intreg[] =
 
39
  {
 
40
    { .atom = DW_OP_reg0 }
 
41
  };
 
42
#define nloc_intreg     1
 
43
 
 
44
/* $f0, or pair $f0, $f1.  */
 
45
static const Dwarf_Op loc_fpreg[] =
 
46
  {
 
47
    { .atom = DW_OP_regx, .number = 32 }, { .atom = DW_OP_piece, .number = 4 },
 
48
    { .atom = DW_OP_regx, .number = 33 }, { .atom = DW_OP_piece, .number = 4 },
 
49
  };
 
50
#define nloc_fpreg      1
 
51
#define nloc_fpregpair  4
 
52
 
 
53
/* The return value is a structure and is actually stored in stack space
 
54
   passed in a hidden argument by the caller.  But, the compiler
 
55
   helpfully returns the address of that space in $0.  */
 
56
static const Dwarf_Op loc_aggregate[] =
 
57
  {
 
58
    { .atom = DW_OP_breg0, .number = 0 }
 
59
  };
 
60
#define nloc_aggregate 1
 
61
 
 
62
int
 
63
alpha_return_value_location (Dwarf_Die *functypedie, const Dwarf_Op **locp)
 
64
{
 
65
  /* Start with the function's type, and get the DW_AT_type attribute,
 
66
     which is the type of the return value.  */
 
67
 
 
68
  Dwarf_Attribute attr_mem;
 
69
  Dwarf_Attribute *attr = dwarf_attr (functypedie, DW_AT_type, &attr_mem);
 
70
  if (attr == NULL)
 
71
    /* The function has no return value, like a `void' function in C.  */
 
72
    return 0;
 
73
 
 
74
  Dwarf_Die die_mem;
 
75
  Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
 
76
  int tag = dwarf_tag (typedie);
 
77
 
 
78
  /* Follow typedefs and qualifiers to get to the actual type.  */
 
79
  while (tag == DW_TAG_typedef
 
80
         || tag == DW_TAG_const_type || tag == DW_TAG_volatile_type
 
81
         || tag == DW_TAG_restrict_type || tag == DW_TAG_mutable_type)
 
82
    {
 
83
      attr = dwarf_attr (typedie, DW_AT_type, &attr_mem);
 
84
      typedie = dwarf_formref_die (attr, &die_mem);
 
85
      tag = dwarf_tag (typedie);
 
86
    }
 
87
 
 
88
  switch (tag)
 
89
    {
 
90
    case -1:
 
91
      return -1;
 
92
 
 
93
    case DW_TAG_subrange_type:
 
94
      if (! dwarf_hasattr (typedie, DW_AT_byte_size))
 
95
        {
 
96
          attr = dwarf_attr (typedie, DW_AT_type, &attr_mem);
 
97
          typedie = dwarf_formref_die (attr, &die_mem);
 
98
          tag = dwarf_tag (typedie);
 
99
        }
 
100
      /* Fall through.  */
 
101
 
 
102
    case DW_TAG_base_type:
 
103
    case DW_TAG_enumeration_type:
 
104
    case DW_TAG_pointer_type:
 
105
    case DW_TAG_ptr_to_member_type:
 
106
      {
 
107
        Dwarf_Word size;
 
108
        if (dwarf_formudata (dwarf_attr (typedie, DW_AT_byte_size,
 
109
                                         &attr_mem), &size) != 0)
 
110
          {
 
111
            if (tag == DW_TAG_pointer_type || tag == DW_TAG_ptr_to_member_type)
 
112
              size = 8;
 
113
            else
 
114
              return -1;
 
115
          }
 
116
        if (tag == DW_TAG_base_type)
 
117
          {
 
118
            Dwarf_Word encoding;
 
119
            if (dwarf_formudata (dwarf_attr (typedie, DW_AT_encoding,
 
120
                                             &attr_mem), &encoding) != 0)
 
121
              return -1;
 
122
 
 
123
            *locp = loc_fpreg;
 
124
            if (encoding == DW_ATE_float)
 
125
              {
 
126
                if (size <= 8)
 
127
                  return nloc_fpreg;
 
128
                goto aggregate;
 
129
              }
 
130
            if (encoding == DW_ATE_complex_float)
 
131
              {
 
132
                if (size <= 8 * 2)
 
133
                  return nloc_fpregpair;
 
134
                goto aggregate;
 
135
              }
 
136
          }
 
137
        if (size <= 8)
 
138
          {
 
139
            *locp = loc_intreg;
 
140
            return nloc_intreg;
 
141
          }
 
142
      }
 
143
 
 
144
      /* Else fall through.  */
 
145
 
 
146
    case DW_TAG_structure_type:
 
147
    case DW_TAG_class_type:
 
148
    case DW_TAG_union_type:
 
149
    case DW_TAG_string_type:
 
150
    case DW_TAG_array_type:
 
151
    aggregate:
 
152
      *locp = loc_aggregate;
 
153
      return nloc_aggregate;
 
154
    }
 
155
 
 
156
  /* XXX We don't have a good way to return specific errors from ebl calls.
 
157
     This value means we do not understand the type, but it is well-formed
 
158
     DWARF and might be valid.  */
 
159
  return -2;
 
160
}