File:  [DVB] / dietlibc / x86_64 / gettimeofday.S
Revision 1.8: download - view: text, annotated - select for diffs
Mon Jan 25 19:04:48 2016 UTC (8 years, 4 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
  plumbing to get preliminary PIE support for x86_64

#include "dietfeatures.h"
#include "syscalls.h"

.text
.global gettimeofday
#ifdef __PIE__
.hidden gettimeofday
#endif
.type gettimeofday,@function
gettimeofday:
#ifdef WANT_VALGRIND_SUPPORT
#ifdef __PIC__
	mov __valgrind@GOTPCREL(%rip), %rax
	cmpb $1, (%rax)
#else
	cmpb $1, __valgrind(%rip)
#endif
	je .Lvalgrind
#endif
	movq gtod(%rip), %rax
	test %rax,%rax
	jz .L1
.L2:
	callq *%rax
	jmp __error_unified_syscall
.L1:
	push %rsi
	push %rdi
#ifdef __PIC__
	movq __vdso@GOTPCREL(%rip), %rax
	movq (%rax),%rdi
	movq funcname@GOTPCREL(%rip), %rsi
	call vdso_dlsym@PLT
#else
	movq __vdso(%rip),%rdi
	movq $funcname, %rsi
	call vdso_dlsym
#endif
	pop %rdi
	pop %rsi
	jmp .L2

#ifdef WANT_VALGRIND_SUPPORT
.Lvalgrind:
	mov $__NR_gettimeofday, %al
	jmp __unified_syscall
#endif
.Lhere2:
	.size	 gettimeofday,.Lhere2-gettimeofday
.local gtod
.comm gtod,8,8
.section .rodata.str1.1,"aMS",@progbits,1
.local funcname
funcname:
	.string "__vdso_gettimeofday"

LinuxTV legacy CVS <linuxtv.org/cvs>