forked from open-power/pdbg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.S
24 lines (21 loc) · 836 Bytes
/
template.S
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// On platforms that define this macro, a symbol called "foo" in C must be
// named "_foo" in assembler. GCC Should always define the macro, but
// we add a fallback just in case
#ifndef __USER_LABEL_PREFIX__
#define __USER_LABEL_PREFIX__ ""
#endif
#define CONCAT1(a, b, c, d) CONCAT2(a, b, c, d)
#define CONCAT2(a, b, c, d) a ## b ## c ## d
#define SYM_START(x) CONCAT1(__USER_LABEL_PREFIX__, _binary_, x, _start)
#define SYM_END(x) CONCAT1(__USER_LABEL_PREFIX__, _binary_, x, _end)
#define SYM_SIZE(x) CONCAT1(__USER_LABEL_PREFIX__, _binary_, x, _size)
.section .data
SYM_START(SYMBOL_PREFIX):
.incbin FILENAME
.align 4
SYM_END(SYMBOL_PREFIX):
SYM_SIZE(SYMBOL_PREFIX):
.long SYM_END(SYMBOL_PREFIX) - SYM_START(SYMBOL_PREFIX)
.globl SYM_START(SYMBOL_PREFIX)
.globl SYM_END(SYMBOL_PREFIX)
.globl SYM_SIZE(SYMBOL_PREFIX)