2 * Copyright (c) 2003-2006 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #include <sys/appleapiopts.h>
30 #include <machine/cpu_capabilities.h>
31 #include <machine/commpage.h>
43 COMMPAGE_DESCRIPTOR(mach_absolute_time,_COMM_PAGE_ABSOLUTE_TIME,0,0)
45 /* Nanotime is being moved out of the way of bcopy in the commpage.
46 * First we put it in both places, old and new. Then, when all the build
47 * trains have rebuilt libSystem, we can remove the deprecated instance.
50 /* return nanotime in %edx:%eax */
60 mov _COMM_PAGE_NT_TSC_BASE,%esi
61 mov _COMM_PAGE_NT_TSC_BASE+4,%edi
67 mov _COMM_PAGE_NT_SCALE,%ecx
77 add _COMM_PAGE_NT_NS_BASE,%eax
78 adc _COMM_PAGE_NT_NS_BASE+4,%edx
80 cmp _COMM_PAGE_NT_TSC_BASE,%esi
82 cmp _COMM_PAGE_NT_TSC_BASE+4,%edi
91 COMMPAGE_DESCRIPTOR(nanotime,_COMM_PAGE_NANOTIME,0,0)
92 COMMPAGE_DESCRIPTOR(old_nanotime,_COMM_PAGE_OLD_NANOTIME,0,0)
95 /* The 64-bit version. We return the 64-bit nanotime in %rax,
96 * and by convention we must preserve %r9, %r10, and %r11.
102 Lnanotime_64: // NB: must preserve r9, r10, and r11
103 pushq %rbp // set up a frame for backtraces
105 movq $_COMM_PAGE_32_TO_64(_COMM_PAGE_NT_TSC_BASE),%rsi
107 movq _NT_TSC_BASE(%rsi),%r8 // r8 := base_tsc
108 rdtsc // edx:eax := tsc
109 shlq $32,%rdx // rax := ((edx << 32) | eax), ie 64-bit tsc
111 subq %r8, %rax // rax := (tsc - base_tsc)
112 movl _NT_SCALE(%rsi),%ecx
113 mulq %rcx // rdx:rax := (tsc - base_tsc) * scale
114 shrdq $32,%rdx,%rax // _COMM_PAGE_NT_SHIFT is always 32
115 addq _NT_NS_BASE(%rsi),%rax // (((tsc - base_tsc) * scale) >> 32) + ns_base
117 cmpq _NT_TSC_BASE(%rsi),%r8 // did the data change during computation?
122 COMMPAGE_DESCRIPTOR(nanotime_64,_COMM_PAGE_NANOTIME,0,0)
123 COMMPAGE_DESCRIPTOR(old_nanotime_64,_COMM_PAGE_OLD_NANOTIME,0,0)