summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/shared/start/rtems_crti.S
blob: aa61ddc206c48f4817fcfcacbe71a46984839a13 (plain) (blame)
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
/* rtems_crti.S */
#include <rtems/asm.h>
#include <rtems/score/cpu.h>
#include <libcpu/io.h>

	/* terminate the __init() function and create
	 * a new head '_init' for use by RTEMS to 
	 * invoke C++ global constructors
	 * NOTE: it is essential that this snippet
	 * is hooked between ecrti and crtbegin
	 * 
	 * ecrti has the following .init section:
	 * __init:
	 *    stwu r1,-16(r1)
	 *    mflr r0
	 *    stw  r0,20(r1)
	 *
	 * The reason for this is that we want to call
	 * __eabi() at an early stage but prevent __eabi()
	 * from branching to __init (C++ exception init
	 * and global CTORs). Hence we make __init a no-op
	 * and create a new entry point:
	 */
	.section ".init","ax"
	.align 2
	lwz		r0,r20(r1)
	mtlr	r0
	addi	r1,r1,16
	blr
	.globl	_init
	.type	_init,@function
_init:
	stwu	r1,-16(r1)
	mflr	r0
	stw		r0,20(r1)