Unleashed v1.4
[unleashed.git] / usr / src / uts / intel / asm / clock.h
blob6fcd8ca15b0ab6ee2560e88f12a4576a0e7fcf7b
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #ifndef _ASM_CLOCK_H
27 #define _ASM_CLOCK_H
29 #include <sys/ccompile.h>
30 #include <sys/types.h>
31 #include <sys/time.h>
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
38 #include <sys/machlock.h>
40 extern __GNU_INLINE void
41 unlock_hres_lock(void)
43 __asm__ __volatile__(
44 "lock; incl %0"
45 : /* no output */
46 : "m" (hres_lock)
47 : "cc");
50 #if defined(__xpv)
52 extern __GNU_INLINE hrtime_t
53 __rdtsc_insn(void)
55 #if defined(__amd64)
56 uint32_t lobits, hibits;
58 __asm__ __volatile__(
59 "rdtsc"
60 : "=a" (lobits), "=d" (hibits));
61 return (lobits | ((hrtime_t)hibits << 32));
62 #elif defined(__i386)
63 hrtime_t __value;
65 __asm__ __volatile__(
66 "rdtsc"
67 : "=A" (__value));
68 return (__value);
69 #else
70 #error "port me"
71 #endif
74 #endif /* __xpv */
77 #ifdef __cplusplus
79 #endif
81 #endif /* _ASM_CLOCK_H */