TianoCore EDK2 master
Loading...
Searching...
No Matches
AsmMacroLib.h
Go to the documentation of this file.
1
12#ifndef ASM_MACRO_IO_LIB_H_
13#define ASM_MACRO_IO_LIB_H_
14
15#define _ASM_FUNC(Name, Section) \
16 .global Name ; \
17 .section #Section, "ax" ; \
18 .type Name, %function ; \
19 .p2align 2 ; \
20 Name:
21
22#define ASM_FUNC(Name) _ASM_FUNC(ASM_PFX(Name), .text. ## Name)
23
24#define MOV32(Reg, Val) \
25 movw Reg, #(Val) & 0xffff ; \
26 movt Reg, #(Val) >> 16
27
28#define ADRL(Reg, Sym) \
29 movw Reg, #:lower16:(Sym) - (. + 16) ; \
30 movt Reg, #:upper16:(Sym) - (. + 12) ; \
31 add Reg, Reg, pc
32
33#define LDRL(Reg, Sym) \
34 movw Reg, #:lower16:(Sym) - (. + 16) ; \
35 movt Reg, #:upper16:(Sym) - (. + 12) ; \
36 ldr Reg, [pc, Reg]
37
38#endif // ASM_MACRO_IO_LIB_H_