Remove building with NOCRYPTO option
[minix.git] / external / bsd / elftoolchain / dist / libelf / libelf_fsize.m4
blobf3eb0120152b671ad7fd2d4f67dd158e86b325c4
1 /*      $NetBSD: libelf_fsize.m4,v 1.2 2014/03/09 16:58:04 christos Exp $       */
3 /*-
4  * Copyright (c) 2006,2008-2011 Joseph Koshy
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
29 #include <libelf.h>
31 #include "_libelf.h"
33 __RCSID("$NetBSD: libelf_fsize.m4,v 1.2 2014/03/09 16:58:04 christos Exp $");
34 ELFTC_VCSID("Id: libelf_fsize.m4 2225 2011-11-26 18:55:54Z jkoshy ");
36 /* WARNING: GENERATED FROM __file__. */
39  * Create an array of file sizes from the elf_type definitions
40  */
42 divert(-1)
43 include(SRCDIR`/elf_types.m4')
46  * Translations from structure definitions to the size of their file
47  * representations.
48  */
50 /* `Basic' types. */
51 define(`BYTE_SIZE',     1)
52 define(`IDENT_SIZE',    `EI_NIDENT')
54 /* Types that have variable length. */
55 define(`GNUHASH_SIZE',  1)
56 define(`NOTE_SIZE',     1)
57 define(`VDEF_SIZE',     1)
58 define(`VNEED_SIZE',    1)
60 /* Currently unimplemented types. */
61 define(`MOVEP_SIZE',    0)
63 /* Overrides for 32 bit types that do not exist. */
64 define(`XWORD_SIZE32',  0)
65 define(`SXWORD_SIZE32', 0)
68  * FSZ{32,64} define the sizes of 32 and 64 bit file structures respectively.
69  */
71 define(`FSZ32',`_FSZ32($1_DEF)')
72 define(`_FSZ32',
73   `ifelse($#,1,0,
74     `_BSZ32($1)+_FSZ32(shift($@))')')
75 define(`_BSZ32',`$2_SIZE32')
77 define(`FSZ64',`_FSZ64($1_DEF)')
78 define(`_FSZ64',
79   `ifelse($#,1,0,
80     `_BSZ64($1)+_FSZ64(shift($@))')')
81 define(`_BSZ64',`$2_SIZE64')
84  * DEFINE_ELF_FSIZES(TYPE,NAME)
85  *
86  * Shorthand for defining  for 32 and 64 versions
87  * of elf type TYPE.
88  *
89  * If TYPE`'_SIZE is defined, use its value for both 32 bit and 64 bit
90  * sizes.
91  *
92  * Otherwise, look for a explicit 32/64 bit size definition for TYPE,
93  * TYPE`'_SIZE32 or TYPE`'_SIZE64. If this definition is present, there
94  * is nothing further to do.
95  *
96  * Otherwise, if an Elf{32,64}_`'NAME structure definition is known,
97  * compute an expression that adds up the sizes of the structure's
98  * constituents.
99  *
100  * If such a structure definition is not known, treat TYPE as a primitive
101  * (i.e., integral) type and use sizeof(Elf{32,64}_`'NAME) to get its
102  * file representation size.
103  */
105 define(`DEFINE_ELF_FSIZE',
106   `ifdef($1`_SIZE',
107     `define($1_SIZE32,$1_SIZE)
108      define($1_SIZE64,$1_SIZE)',
109     `ifdef($1`_SIZE32',`',
110       `ifdef(`Elf32_'$2`_DEF',
111         `define($1_SIZE32,FSZ32(Elf32_$2))',
112         `define($1_SIZE32,`sizeof(Elf32_'$2`)')')')
113      ifdef($1`_SIZE64',`',
114       `ifdef(`Elf64_'$2`_DEF',
115         `define($1_SIZE64,FSZ64(Elf64_$2))',
116         `define($1_SIZE64,`sizeof(Elf64_'$2`)')')')')')
118 define(`DEFINE_ELF_FSIZES',
119   `ifelse($#,1,`',
120     `DEFINE_ELF_FSIZE($1)
121      DEFINE_ELF_FSIZES(shift($@))')')
123 DEFINE_ELF_FSIZES(ELF_TYPE_LIST)
124 DEFINE_ELF_FSIZE(`IDENT',`')    # `IDENT' is a pseudo type
126 define(`FSIZE',
127   `[ELF_T_$1] = { .fsz32 = $1_SIZE32, .fsz64 = $1_SIZE64 },
129 define(`FSIZES',
130   `ifelse($#,1,`',
131     `FSIZE($1)
132 FSIZES(shift($@))')')
134 divert(0)
136 struct fsize {
137         size_t fsz32;
138         size_t fsz64;
141 static struct fsize fsize[ELF_T_NUM] = {
142 FSIZES(ELF_TYPE_LIST)
145 size_t
146 _libelf_fsize(Elf_Type t, int ec, unsigned int v, size_t c)
148         size_t sz;
150         sz = 0;
151         if (v != EV_CURRENT)
152                 LIBELF_SET_ERROR(VERSION, 0);
153         else if ((int) t < ELF_T_FIRST || t > ELF_T_LAST)
154                 LIBELF_SET_ERROR(ARGUMENT, 0);
155         else {
156                 sz = ec == ELFCLASS64 ? fsize[t].fsz64 : fsize[t].fsz32;
157                 if (sz == 0)
158                         LIBELF_SET_ERROR(UNIMPL, 0);
159         }
161         return (sz*c);