SUPLibAll.cpp revision 17b2cb8e3b230499965d868e7946db24398a17d7
/* $Id$ */
/** @file
* VirtualBox Support Library - All Contexts Code.
*/
/*
* Copyright (C) 2006-2014 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#ifdef IN_RING0
#endif
#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
# include <iprt/asm-amd64-x86.h>
#endif
#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
/**
* The slow case for SUPReadTsc where we need to apply deltas.
*
* Must only be called when deltas are applicable, so please do not call it
* directly.
*
* @returns TSC with delta applied.
*
* @remarks May be called with interrupts disabled in ring-0! This is why the
* ring-0 code doesn't attempt to figure the delta.
*
* @internal
*/
{
/** @todo Check out the rdtscp optimization, ASMGetApicId is very expensive. */
# ifdef IN_RING3
/*
* Read the TSC and delta.
*/
for (;;)
{
|| cTries >= 10))
{
/*
* If the delta is valid, apply it.
*/
/*
* The delta needs calculating, call supdrv to get the TSC.
*/
if (RT_SUCCESS(rc))
return uTsc;
/* That didn't work, just return something half useful... */
return ASMReadTSC();
}
cTries++;
}
# else
/*
* Read the TSC and delta.
*/
# ifdef IN_RING0
# else
uint16_t idApic = ASMGetApicId(); /** @todo this could probably be eliminated in RC if we really wanted to... */
# endif
/*
* If the delta is valid, apply it, otherwise ignore it (really shouldn't
* happen in these contexts!).
*/
# ifdef IN_RING0
# else
# endif
return uTsc;
# endif
}
#endif /* RT_ARCH_AMD64 || RT_ARCH_X86 */