Bell 32V development
[unix-history] / usr / src / libc / sys / mcount.s
CommitLineData
d2189992
TL
1# count subroutine called during profiling
2
3.globl mcount
4.comm countbase,4
5
6mcount:
7 movl (r0),r1
8 beql init
9incr:
10 incl (r1)
11return:
12 rsb
13init:
14 movl countbase,r1
15 beql return
16 addl2 $8,countbase
17 movl (sp),(r1)+
18 movl r1,(r0)
19 brb incr