blob: 3bb2d8468c7cc3b2d15dc1524148b155c5a37cf1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Albert ARIBAUD3ebd1cb2013-02-25 00:58:59 +00002/*
3 * Copyright 2013 Albert ARIBAUD <albert.u.boot@aribaud.net>
Albert ARIBAUD3ebd1cb2013-02-25 00:58:59 +00004 */
5
6/**
7 * These two symbols are declared in a C file so that the linker
8 * uses R_ARM_RELATIVE relocation, rather than the R_ARM_ABS32 one
9 * it would use if the symbols were defined in the linker file.
10 * Using only R_ARM_RELATIVE relocation ensures that references to
11 * the symbols are correct after as well as before relocation.
12 *
13 * We need a 0-byte-size type for these symbols, and the compiler
14 * does not allow defining objects of C type 'void'. Using an empty
15 * struct is allowed by the compiler, but causes gcc versions 4.4 and
16 * below to complain about aliasing. Therefore we use the next best
17 * thing: zero-sized arrays, which are both 0-byte-size and exempt from
18 * aliasing warnings.
19 */
20
Albert ARIBAUDdf845022013-06-11 14:17:32 +020021char __bss_start[0] __attribute__((section(".__bss_start")));
22char __bss_end[0] __attribute__((section(".__bss_end")));
Albert ARIBAUDd026dec2013-06-11 14:17:33 +020023char __image_copy_start[0] __attribute__((section(".__image_copy_start")));
24char __image_copy_end[0] __attribute__((section(".__image_copy_end")));
Albert ARIBAUD47bd65e2013-06-11 14:17:34 +020025char __rel_dyn_start[0] __attribute__((section(".__rel_dyn_start")));
26char __rel_dyn_end[0] __attribute__((section(".__rel_dyn_end")));
Marc Zyngierbf433af2014-07-12 14:24:02 +010027char __secure_start[0] __attribute__((section(".__secure_start")));
28char __secure_end[0] __attribute__((section(".__secure_end")));
Chen-Yu Tsai980d6a52016-06-19 12:38:36 +080029char __secure_stack_start[0] __attribute__((section(".__secure_stack_start")));
30char __secure_stack_end[0] __attribute__((section(".__secure_stack_end")));
Alexander Graf50149ea2016-03-04 01:10:01 +010031char __efi_runtime_start[0] __attribute__((section(".__efi_runtime_start")));
32char __efi_runtime_stop[0] __attribute__((section(".__efi_runtime_stop")));
33char __efi_runtime_rel_start[0] __attribute__((section(".__efi_runtime_rel_start")));
34char __efi_runtime_rel_stop[0] __attribute__((section(".__efi_runtime_rel_stop")));
Albert ARIBAUDd0b5d9d2014-02-22 17:53:42 +010035char _end[0] __attribute__((section(".__end")));