blob: 629462c3f9b4e877483224c29b98d5a7d8b6ea75 [file] [log] [blame]
Roland McGratha845f682008-12-03 03:41:58 +00001/* x86-specific core note handling, pieces common to x86-64 and i386.
Roland McGrath0ccbbcd2010-01-04 21:59:07 -08002 Copyright (C) 2005-2010 Red Hat, Inc.
Mark Wielaardde2ed972012-06-05 17:15:16 +02003 This file is part of elfutils.
Roland McGratha845f682008-12-03 03:41:58 +00004
Mark Wielaardde2ed972012-06-05 17:15:16 +02005 This file is free software; you can redistribute it and/or modify
6 it under the terms of either
Roland McGratha845f682008-12-03 03:41:58 +00007
Mark Wielaardde2ed972012-06-05 17:15:16 +02008 * 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
Roland McGratha845f682008-12-03 03:41:58 +000021 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
Mark Wielaardde2ed972012-06-05 17:15:16 +020025 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/>. */
Roland McGratha845f682008-12-03 03:41:58 +000028
29#define EXTRA_NOTES_IOPERM \
30 case NT_386_IOPERM: \
Roland McGrath0ccbbcd2010-01-04 21:59:07 -080031 return ioperm_info (nhdr->n_descsz, \
32 regs_offset, nregloc, reglocs, nitems, items);
Roland McGratha845f682008-12-03 03:41:58 +000033
34static int
35ioperm_info (GElf_Word descsz, GElf_Word *regs_offset,
36 size_t *nregloc, const Ebl_Register_Location **reglocs,
37 size_t *nitems, const Ebl_Core_Item **items)
38{
39 static const Ebl_Core_Item ioperm_item =
40 { .type = ELF_T_WORD, .format = 'b', .name = "ioperm" };
41
42 if (descsz % 4 != 0)
43 return 0;
44
45 *regs_offset = 0;
46 *nregloc = 0;
47 *reglocs = NULL;
48 *nitems = 1;
49 *items = &ioperm_item;
50 return 1;
51}