File: pic.s

package info (click to toggle)
gcl 2.6.7-45
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 119,632 kB
  • ctags: 147,352
  • sloc: ansic: 829,468; asm: 311,430; lisp: 163,931; exp: 45,962; makefile: 41,897; sh: 31,641; cpp: 13,316; yacc: 6,093; perl: 3,454; tcl: 3,181; lex: 1,620; sed: 684; pascal: 175; awk: 56; fortran: 24; csh: 23
file content (43 lines) | stat: -rw-r--r-- 763 bytes parent folder | download | duplicates (45)
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
36
37
38
39
40
41
42
43
	.section .text
# R_M32R_GOTPC24
pic_gotpc:
	bl.s .+4
        ld24 r12,#_GLOBAL_OFFSET_TABLE_
	add r12,lr

# R_M32R_GOTPC_HI_ULO
# R_M32R_GOTPC_HI_SLO
# R_M32R_GOTPC_LO
pic_gotpc_slo:
	bl.s .+4
        seth r12,#shigh(_GLOBAL_OFFSET_TABLE_)
        add3 r12,r12,#low(_GLOBAL_OFFSET_TABLE_+4)
	add r12,lr

pic_gotpc_ulo:
	bl.s .+4
        seth r12,#high(_GLOBAL_OFFSET_TABLE_)
        or3 r12,r12,#low(_GLOBAL_OFFSET_TABLE_+4)
	add r12,lr

# R_M32R_GOT24
pic_got:
	.global sym
	ld24 r0,#sym

# R_M32R_GOT16_HI_ULO
# R_M32R_GOT16_HI_SLO
# R_M32R_GOT16_LO
pic_got16:
	.global sym2
        seth r12,#shigh(sym2)
        add3 r12,r12,#low(sym2+4)
        seth r12,#high(sym2)
        or3 r12,r12,#low(sym2+4)

# R_M32R_26_PLTREL
pic_plt:
	.global func
	bl func

	.end