14856 cmn_err(9F) missing vdev_err()
[illumos-gate.git] / usr / src / uts / intel / asm / clock.h
blob26e33d0bb5df7310ef4a1cd2c8a7934ed12bc12f
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
37 #if !defined(__lint) && defined(__GNUC__)
39 #include <sys/machlock.h>
41 extern __GNU_INLINE void
42 unlock_hres_lock(void)
44 __asm__ __volatile__(
45 "lock; incl %0"
46 : /* no output */
47 : "m" (hres_lock)
48 : "cc");
51 #if defined(__xpv)
53 extern __GNU_INLINE hrtime_t
54 __rdtsc_insn(void)
56 #if defined(__amd64)
57 uint32_t lobits, hibits;
59 __asm__ __volatile__(
60 "rdtsc"
61 : "=a" (lobits), "=d" (hibits));
62 return (lobits | ((hrtime_t)hibits << 32));
63 #elif defined(__i386)
64 hrtime_t __value;
66 __asm__ __volatile__(
67 "rdtsc"
68 : "=A" (__value));
69 return (__value);
70 #else
71 #error "port me"
72 #endif
75 #endif /* __xpv */
77 #endif /* !__lint && __GNUC__ */
79 #ifdef __cplusplus
81 #endif
83 #endif /* _ASM_CLOCK_H */