in a few places, non-hidden symbols were referenced from asm in ways that assumed ld-time binding. while these is no semantic reason these symbols need to be hidden, fixing the references without making them hidden was going to be ugly, and hidden reduces some bloat anyway. in the asm files, .global/.hidden directives have been moved to the top to unclutter the actual code.
30 lines
483 B
ArmAsm
30 lines
483 B
ArmAsm
.text
|
|
.global __cp_begin
|
|
.hidden __cp_begin
|
|
.global __cp_end
|
|
.hidden __cp_end
|
|
.global __cp_cancel
|
|
.hidden __cp_cancel
|
|
.hidden __cancel
|
|
.global __syscall_cp_internal
|
|
.hidden __syscall_cp_internal
|
|
.type __syscall_cp_internal,@function
|
|
__syscall_cp_internal:
|
|
|
|
__cp_begin:
|
|
mov (%rdi),%eax
|
|
test %eax,%eax
|
|
jnz __cancel
|
|
mov %rdi,%r11
|
|
mov %rsi,%rax
|
|
mov %rdx,%rdi
|
|
mov %rcx,%rsi
|
|
mov %r8,%rdx
|
|
mov %r9,%r10
|
|
mov 8(%rsp),%r8
|
|
mov 16(%rsp),%r9
|
|
mov %r11,8(%rsp)
|
|
syscall
|
|
__cp_end:
|
|
ret
|