source: rtems-libbsd/freebsd/sys/sys/linker_set.h @ 1153f0c

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 1153f0c was 5084ad8, checked in by Sebastian Huber <sebastian.huber@…>, on 12/04/13 at 14:38:28

Simplify linker set handling

  • Property mode set to 100644
File size: 4.9 KB
Line 
1/*-
2 * Copyright (c) 1999 John D. Polstra
3 * Copyright (c) 1999,2001 Peter Wemm <peter@FreeBSD.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD$
28 */
29
30#ifndef _SYS_LINKER_SET_H_
31#define _SYS_LINKER_SET_H_
32
33#ifndef _SYS_CDEFS_H_
34#error this file needs sys/cdefs.h as a prerequisite
35#endif
36
37/*
38 * The following macros are used to declare global sets of objects, which
39 * are collected by the linker into a `linker_set' as defined below.
40 * For ELF, this is done by constructing a separate segment for each set.
41 */
42
43/*
44 * Private macros, not to be used outside this header file.
45 */
46#ifdef __GNUCLIKE___SECTION
47#ifndef __rtems__
48#define __MAKE_SET(set, sym)                                            \
49        __GLOBL(__CONCAT(__start_set_,set));                            \
50        __GLOBL(__CONCAT(__stop_set_,set));                             \
51        static void const * const __set_##set##_sym_##sym               \
52        __section("set_" #set) __used = &sym
53#else /* __rtems__ */
54#define RTEMS_BSD_DEFINE_SET(set, ptype)                                \
55        ptype * const __CONCAT(_bsd__start_set_,set)[0]                 \
56        __section(".rtemsroset.bsd." __STRING(set) ".begin") __used;            \
57        ptype * const __CONCAT(_bsd__stop_set_,set)[0]                  \
58        __section(".rtemsroset.bsd." __STRING(set) ".end") __used
59
60#define __MAKE_SET(set, sym)                                            \
61        static const void * const __set_##set##_sym_##sym               \
62        __section(".rtemsroset.bsd." __STRING(set) ".content") __used = &sym
63
64#define RTEMS_BSD_DEFINE_RWSET(set, ptype)                              \
65        ptype *__CONCAT(_bsd__start_set_,set)[0]                        \
66        __section(".rtemsrwset.bsd." __STRING(set) ".begin") __used;            \
67        ptype *__CONCAT(_bsd__stop_set_,set)[0]                         \
68        __section(".rtemsrwset.bsd." __STRING(set) ".end") __used
69
70#define __MAKE_RWSET(set, sym)                                          \
71        static const void * __set_##set##_sym_##sym                     \
72        __section(".rtemsrwset.bsd." __STRING(set) ".content") __used = &sym
73#endif /* __rtems__ */
74#else /* !__GNUCLIKE___SECTION */
75#ifndef lint
76#error this file needs to be ported to your compiler
77#endif /* lint */
78#define __MAKE_SET(set, sym)    extern void const * const (__set_##set##_sym_##sym)
79#endif /* __GNUCLIKE___SECTION */
80
81/*
82 * Public macros.
83 */
84#define TEXT_SET(set, sym)      __MAKE_SET(set, sym)
85#define DATA_SET(set, sym)      __MAKE_SET(set, sym)
86#define BSS_SET(set, sym)       __MAKE_SET(set, sym)
87#define ABS_SET(set, sym)       __MAKE_SET(set, sym)
88#define SET_ENTRY(set, sym)     __MAKE_SET(set, sym)
89#ifdef __rtems__
90#define RWDATA_SET(set, sym)    __MAKE_RWSET(set, sym)
91#endif /* __rtems__ */
92
93/*
94 * Initialize before referring to a given linker set.
95 */
96#ifndef __rtems__
97#define SET_DECLARE(set, ptype)                                         \
98        extern ptype *__CONCAT(__start_set_,set);                       \
99        extern ptype *__CONCAT(__stop_set_,set)
100
101#define SET_BEGIN(set)                                                  \
102        (&__CONCAT(__start_set_,set))
103#define SET_LIMIT(set)                                                  \
104        (&__CONCAT(__stop_set_,set))
105#else /* __rtems__ */
106#define SET_DECLARE(set, ptype)                                         \
107        extern ptype * const __CONCAT(_bsd__start_set_,set)[];          \
108        extern ptype * const __CONCAT(_bsd__stop_set_,set)[]
109
110#define RWSET_DECLARE(set, ptype)                                       \
111        extern ptype *__CONCAT(_bsd__start_set_,set)[];                 \
112        extern ptype *__CONCAT(_bsd__stop_set_,set)[]
113
114#define SET_BEGIN(set)                                                  \
115        (__CONCAT(_bsd__start_set_,set))
116#define SET_LIMIT(set)                                                  \
117        (__CONCAT(_bsd__stop_set_,set))
118#endif /* __rtems__ */
119
120/*
121 * Iterate over all the elements of a set.
122 *
123 * Sets always contain addresses of things, and "pvar" points to words
124 * containing those addresses.  Thus is must be declared as "type **pvar",
125 * and the address of each set item is obtained inside the loop by "*pvar".
126 */
127#define SET_FOREACH(pvar, set)                                          \
128        for (pvar = SET_BEGIN(set); pvar < SET_LIMIT(set); pvar++)
129
130#define SET_ITEM(set, i)                                                \
131        ((SET_BEGIN(set))[i])
132
133/*
134 * Provide a count of the items in a set.
135 */
136#define SET_COUNT(set)                                                  \
137        (SET_LIMIT(set) - SET_BEGIN(set))
138
139#endif  /* _SYS_LINKER_SET_H_ */
Note: See TracBrowser for help on using the repository browser.