+
+
+ .code64
+ .text
+ .align 2, 0x90
+
+Lgettimeofday_64: // %rdi = ptr to timeval
+ pushq %rbp // set up a frame for backtraces
+ movq %rsp,%rbp
+ movq %rdi,%r9 // save ptr to timeval
+ movq $_COMM_PAGE_32_TO_64(_COMM_PAGE_TIMEBASE),%r10
+0:
+ cmpl $0,_TIMEENABLE(%r10) // is data valid? (test _COMM_PAGE_TIMEENABLE)
+ jz 4f // no
+ movq _TIMEBASE(%r10),%r11 // get _COMM_PAGE_TIMEBASE
+ movq $_COMM_PAGE_32_TO_64(_COMM_PAGE_NANOTIME),%rax
+ call *%rax // get %rax <- nanotime(), preserving %r9, %r10 and %r11
+ movl _TIMESTAMP(%r10),%r8d // get _COMM_PAGE_TIMESTAMP
+ cmpq _TIMEBASE(%r10),%r11 // has _COMM_PAGE_TIMEBASE changed?
+ jne 0b // loop until we have consistent data
+ cmpl $0,_TIMEENABLE(%r10) // is data valid? (test _COMM_PAGE_TIMEENABLE)
+ jz 4f // no
+
+ movl $ NSEC_PER_SEC,%ecx
+ subq %r11,%rax // generate nanoseconds since timestamp
+ movq %rax,%rdx
+ shrq $32,%rdx // get high half of delta in %edx
+ divl %ecx // %eax <- seconds since timestamp, %edx <- nanoseconds
+ addl %eax,%r8d // add seconds elapsed to timestamp seconds
+
+ movl $ NSEC_PER_USEC,%ecx
+ movl %edx,%eax
+ xorl %edx,%edx
+ divl %ecx // divide residual ns by 1000 to get residual us in %eax
+
+ movq %r8,(%r9) // store 64-bit seconds into timeval
+ movl %eax,8(%r9) // store 32-bit useconds into timeval
+ xorl %eax,%eax // return 0 for success
+3:
+ popq %rbp
+ ret
+4: // fail
+ movl $1,%eax
+ jmp 3b
+
+ COMMPAGE_DESCRIPTOR(gettimeofday_64,_COMM_PAGE_GETTIMEOFDAY,0,0)