1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
|
/* Function return value location for Linux/mips ABI.
Copyright (C) 2005 Red Hat, Inc.
This file is part of Red Hat elfutils.
Red Hat elfutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by the
Free Software Foundation; version 2 of the License.
Red Hat elfutils is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with Red Hat elfutils; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA.
Red Hat elfutils is an included package of the Open Invention Network.
An included package of the Open Invention Network is a package for which
Open Invention Network licensees cross-license their patents. No patent
license is granted, either expressly or impliedly, by designation as an
included package. Should you wish to participate in the Open Invention
Network licensing program, please visit www.openinventionnetwork.com
<http://www.openinventionnetwork.com>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <string.h>
#include <assert.h>
#include <dwarf.h>
#include <elf.h>
#include "../libebl/libeblP.h"
#include "../libdw/libdwP.h"
#define BACKEND mips_
#include "libebl_CPU.h"
/* The ABI of the file. Also see EF_MIPS_ABI2 above. */
#define EF_MIPS_ABI 0x0000F000
/* The original o32 abi. */
#define E_MIPS_ABI_O32 0x00001000
/* O32 extended to work on 64 bit architectures */
#define E_MIPS_ABI_O64 0x00002000
/* EABI in 32 bit mode */
#define E_MIPS_ABI_EABI32 0x00003000
/* EABI in 64 bit mode */
#define E_MIPS_ABI_EABI64 0x00004000
/* All the possible MIPS ABIs. */
enum mips_abi
{
MIPS_ABI_UNKNOWN = 0,
MIPS_ABI_N32,
MIPS_ABI_O32,
MIPS_ABI_N64,
MIPS_ABI_O64,
MIPS_ABI_EABI32,
MIPS_ABI_EABI64,
MIPS_ABI_LAST
};
/* Find the mips ABI of the current file */
enum mips_abi find_mips_abi(Elf *elf)
{
GElf_Ehdr ehdr_mem;
GElf_Ehdr *ehdr = gelf_getehdr (elf, &ehdr_mem);
if (ehdr == NULL)
return MIPS_ABI_LAST;
GElf_Word elf_flags = ehdr->e_flags;
/* Check elf_flags to see if it specifies the ABI being used. */
switch ((elf_flags & EF_MIPS_ABI))
{
case E_MIPS_ABI_O32:
return MIPS_ABI_O32;
case E_MIPS_ABI_O64:
return MIPS_ABI_O64;
case E_MIPS_ABI_EABI32:
return MIPS_ABI_EABI32;
case E_MIPS_ABI_EABI64:
return MIPS_ABI_EABI64;
default:
if ((elf_flags & EF_MIPS_ABI2))
return MIPS_ABI_N32;
}
/* GCC creates a pseudo-section whose name describes the ABI. */
size_t shstrndx;
if (elf_getshdrstrndx (elf, &shstrndx) < 0)
return MIPS_ABI_LAST;
const char *name;
Elf_Scn *scn = NULL;
while ((scn = elf_nextscn (elf, scn)) != NULL)
{
GElf_Shdr shdr_mem;
GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
if (shdr == NULL)
return MIPS_ABI_LAST;
name = elf_strptr (elf, shstrndx, shdr->sh_name) ?: "";
if (strncmp (name, ".mdebug.", 8) != 0)
continue;
if (strcmp (name, ".mdebug.abi32") == 0)
return MIPS_ABI_O32;
else if (strcmp (name, ".mdebug.abiN32") == 0)
return MIPS_ABI_N32;
else if (strcmp (name, ".mdebug.abi64") == 0)
return MIPS_ABI_N64;
else if (strcmp (name, ".mdebug.abiO64") == 0)
return MIPS_ABI_O64;
else if (strcmp (name, ".mdebug.eabi32") == 0)
return MIPS_ABI_EABI32;
else if (strcmp (name, ".mdebug.eabi64") == 0)
return MIPS_ABI_EABI64;
else
return MIPS_ABI_UNKNOWN;
}
return MIPS_ABI_UNKNOWN;
}
unsigned int
mips_abi_regsize (enum mips_abi abi)
{
switch (abi)
{
case MIPS_ABI_EABI32:
case MIPS_ABI_O32:
return 4;
case MIPS_ABI_N32:
case MIPS_ABI_N64:
case MIPS_ABI_O64:
case MIPS_ABI_EABI64:
return 8;
case MIPS_ABI_UNKNOWN:
case MIPS_ABI_LAST:
default:
return 0;
}
}
/* $v0 or pair $v0, $v1 */
static const Dwarf_Op loc_intreg_o32[] =
{
{ .atom = DW_OP_reg2 }, { .atom = DW_OP_piece, .number = 4 },
{ .atom = DW_OP_reg3 }, { .atom = DW_OP_piece, .number = 4 },
};
static const Dwarf_Op loc_intreg[] =
{
{ .atom = DW_OP_reg2 }, { .atom = DW_OP_piece, .number = 8 },
{ .atom = DW_OP_reg3 }, { .atom = DW_OP_piece, .number = 8 },
};
#define nloc_intreg 1
#define nloc_intregpair 4
/* $f0 (float), or pair $f0, $f1 (double).
* f2/f3 are used for COMPLEX (= 2 doubles) returns in Fortran */
static const Dwarf_Op loc_fpreg_o32[] =
{
{ .atom = DW_OP_regx, .number = 32 }, { .atom = DW_OP_piece, .number = 4 },
{ .atom = DW_OP_regx, .number = 33 }, { .atom = DW_OP_piece, .number = 4 },
{ .atom = DW_OP_regx, .number = 34 }, { .atom = DW_OP_piece, .number = 4 },
{ .atom = DW_OP_regx, .number = 35 }, { .atom = DW_OP_piece, .number = 4 },
};
/* $f0, or pair $f0, $f2. */
static const Dwarf_Op loc_fpreg[] =
{
{ .atom = DW_OP_regx, .number = 32 }, { .atom = DW_OP_piece, .number = 8 },
{ .atom = DW_OP_regx, .number = 34 }, { .atom = DW_OP_piece, .number = 8 },
};
#define nloc_fpreg 1
#define nloc_fpregpair 4
#define nloc_fpregquad 8
/* The return value is a structure and is actually stored in stack space
passed in a hidden argument by the caller. But, the compiler
helpfully returns the address of that space in $v0. */
static const Dwarf_Op loc_aggregate[] =
{
{ .atom = DW_OP_breg2, .number = 0 }
};
#define nloc_aggregate 1
int
mips_return_value_location (Dwarf_Die *functypedie, const Dwarf_Op **locp)
{
/* First find the ABI used by the elf object */
enum mips_abi abi = find_mips_abi(functypedie->cu->dbg->elf);
/* Something went seriously wrong while trying to figure out the ABI */
if (abi == MIPS_ABI_LAST)
return -1;
/* We couldn't identify the ABI, but the file seems valid */
if (abi == MIPS_ABI_UNKNOWN)
return -2;
/* Can't handle EABI variants */
if ((abi == MIPS_ABI_EABI32) || (abi == MIPS_ABI_EABI64))
return -2;
unsigned int regsize = mips_abi_regsize (abi);
if (!regsize)
return -2;
/* Start with the function's type, and get the DW_AT_type attribute,
which is the type of the return value. */
Dwarf_Attribute attr_mem;
Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, &attr_mem);
if (attr == NULL)
/* The function has no return value, like a `void' function in C. */
return 0;
Dwarf_Die die_mem;
Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
int tag = dwarf_tag (typedie);
/* Follow typedefs and qualifiers to get to the actual type. */
while (tag == DW_TAG_typedef
|| tag == DW_TAG_const_type || tag == DW_TAG_volatile_type
|| tag == DW_TAG_restrict_type || tag == DW_TAG_mutable_type)
{
attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
typedie = dwarf_formref_die (attr, &die_mem);
tag = dwarf_tag (typedie);
}
switch (tag)
{
case -1:
return -1;
case DW_TAG_subrange_type:
if (! dwarf_hasattr_integrate (typedie, DW_AT_byte_size))
{
attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
typedie = dwarf_formref_die (attr, &die_mem);
tag = dwarf_tag (typedie);
}
/* Fall through. */
case DW_TAG_base_type:
case DW_TAG_enumeration_type:
case DW_TAG_pointer_type:
case DW_TAG_ptr_to_member_type:
{
Dwarf_Word size;
if (dwarf_formudata (dwarf_attr_integrate (typedie, DW_AT_byte_size,
&attr_mem), &size) != 0)
{
if (tag == DW_TAG_pointer_type || tag == DW_TAG_ptr_to_member_type)
size = regsize;
else
return -1;
}
if (tag == DW_TAG_base_type)
{
Dwarf_Word encoding;
if (dwarf_formudata (dwarf_attr_integrate (typedie, DW_AT_encoding,
&attr_mem), &encoding) != 0)
return -1;
#define ABI_LOC(loc, regsize) ((regsize) == 4 ? (loc ## _o32) : (loc))
if (encoding == DW_ATE_float)
{
*locp = ABI_LOC(loc_fpreg, regsize);
if (size <= regsize)
return nloc_fpreg;
if (size <= 2*regsize)
return nloc_fpregpair;
if (size <= 4*regsize && abi == MIPS_ABI_O32)
return nloc_fpregquad;
goto aggregate;
}
}
*locp = ABI_LOC(loc_intreg, regsize);
if (size <= regsize)
return nloc_intreg;
if (size <= 2*regsize)
return nloc_intregpair;
/* Else fall through. Shouldn't happen though (at least with gcc) */
}
case DW_TAG_structure_type:
case DW_TAG_class_type:
case DW_TAG_union_type:
case DW_TAG_array_type:
aggregate:
/* XXX TODO: Can't handle structure return with other ABI's yet :-/ */
if ((abi != MIPS_ABI_O32) && (abi != MIPS_ABI_O64))
return -2;
*locp = loc_aggregate;
return nloc_aggregate;
}
/* XXX We don't have a good way to return specific errors from ebl calls.
This value means we do not understand the type, but it is well-formed
DWARF and might be valid. */
return -2;
}
|