SUPLibAll.cpp revision 597a6046b788f6fe31249596d13f14b17df79ad0
/* $Id$ */
/** @file
* VirtualBox Support Library - All Contexts Code.
*/
/*
* Copyright (C) 2006-2015 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_RC
#endif
#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
*/
{
/*
* Read the TSC and get the corresponding aCPUs index.
*/
{
}
# ifndef IN_RING0
{
/* Storing the IDTR is normally very quick, but we need to loop. */
for (;;)
{
uTsc = ASMReadTSC();
{
break;
}
if (cTries >= 16)
{
break;
}
cTries++;
}
}
# endif /* !IN_RING0 */
else
{
# ifdef IN_RING3
/* Ring-3: Get APIC ID via the slow CPUID instruction, requires looping. */
for (;;)
{
uTsc = ASMReadTSC();
{
break;
}
if (cTries >= 16)
{
break;
}
cTries++;
}
/* Ring-0: Use use RTMpCpuId(), no loops. */
else
uTsc = ASMReadTSC();
/* Raw-mode context: We can get the host CPU set index via VMCPU, no loops. */
else
uTsc = ASMReadTSC();
# else
# error "IN_RING3, IN_RC or IN_RING0 must be defined!"
# endif
}
/*
* If the delta is valid, apply it.
*/
{
# ifdef IN_RING3
/*
* The delta needs calculating, call supdrv to get the TSC.
*/
if (RT_SUCCESS(rc))
return uTsc;
uTsc = ASMReadTSC();
# endif /* IN_RING3 */
}
/*
* This shouldn't happen, especially not in ring-3 and raw-mode context.
* But if it does, return something that's half useful.
*/
AssertMsgFailed(("iGipCpu=%d (%#x) cCpus=%d fGetGipCpu=%#x\n", iGipCpu, iGipCpu, pGip->cCpus, pGip->fGetGipCpu));
return uTsc;
}
#endif /* RT_ARCH_AMD64 || RT_ARCH_X86 */