VirtualBox

source: vbox/trunk/include/VBox/vmm/pdmcritsect.h@ 90828

Last change on this file since 90828 was 90500, checked in by vboxsync, 3 years ago

VMM/PDM: Increased the PDMCRITSECT size by 64 bytes to make space for a self pointer and more statistics. bugref:6695

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 5.8 KB
Line 
1/** @file
2 * PDM - Pluggable Device Manager, Critical Sections.
3 */
4
5/*
6 * Copyright (C) 2006-2020 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef VBOX_INCLUDED_vmm_pdmcritsect_h
27#define VBOX_INCLUDED_vmm_pdmcritsect_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <VBox/types.h>
33#include <iprt/critsect.h>
34
35
36RT_C_DECLS_BEGIN
37
38/** @defgroup grp_pdm_critsect The PDM Critical Section API
39 * @ingroup grp_pdm
40 * @{
41 */
42
43/**
44 * A PDM critical section.
45 * Initialize using PDMDRVHLP::pfnCritSectInit().
46 */
47typedef union PDMCRITSECT
48{
49 /** Padding. */
50 uint8_t padding[HC_ARCH_BITS == 32 ? 0xc0 : 0x100];
51#ifdef PDMCRITSECTINT_DECLARED
52 /** The internal structure (not normally visible). */
53 struct PDMCRITSECTINT s;
54#endif
55} PDMCRITSECT;
56
57VMMR3_INT_DECL(int) PDMR3CritSectBothTerm(PVM pVM);
58VMMR3_INT_DECL(void) PDMR3CritSectLeaveAll(PVM pVM);
59VMM_INT_DECL(void) PDMCritSectBothFF(PVMCC pVM, PVMCPUCC pVCpu);
60
61
62VMMR3DECL(uint32_t) PDMR3CritSectCountOwned(PVM pVM, char *pszNames, size_t cbNames);
63
64VMMR3DECL(int) PDMR3CritSectInit(PVM pVM, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL,
65 const char *pszNameFmt, ...) RT_IPRT_FORMAT_ATTR(6, 7);
66VMMR3DECL(int) PDMR3CritSectEnterEx(PVM pVM, PPDMCRITSECT pCritSect, bool fCallRing3);
67VMMR3DECL(bool) PDMR3CritSectYield(PVM pVM, PPDMCRITSECT pCritSect);
68VMMR3DECL(const char *) PDMR3CritSectName(PCPDMCRITSECT pCritSect);
69VMMR3DECL(int) PDMR3CritSectDelete(PVM pVM, PPDMCRITSECT pCritSect);
70#if defined(IN_RING0) || defined(IN_RING3)
71VMMDECL(int) PDMHCCritSectScheduleExitEvent(PPDMCRITSECT pCritSect, SUPSEMEVENT hEventToSignal);
72#endif
73
74VMMDECL(DECL_CHECK_RETURN_NOT_R3(int))
75 PDMCritSectEnter(PVMCC pVM, PPDMCRITSECT pCritSect, int rcBusy);
76VMMDECL(DECL_CHECK_RETURN_NOT_R3(int))
77 PDMCritSectEnterDebug(PVMCC pVM, PPDMCRITSECT pCritSect, int rcBusy, RTHCUINTPTR uId, RT_SRC_POS_DECL);
78VMMDECL(DECL_CHECK_RETURN(int))
79 PDMCritSectTryEnter(PVMCC pVM, PPDMCRITSECT pCritSect);
80VMMDECL(DECL_CHECK_RETURN(int))
81 PDMCritSectTryEnterDebug(PVMCC pVM, PPDMCRITSECT pCritSect, RTHCUINTPTR uId, RT_SRC_POS_DECL);
82VMMDECL(int) PDMCritSectLeave(PVMCC pVM, PPDMCRITSECT pCritSect);
83
84VMMDECL(bool) PDMCritSectIsOwner(PVMCC pVM, PCPDMCRITSECT pCritSect);
85VMMDECL(bool) PDMCritSectIsOwnerEx(PVMCPUCC pVCpu, PCPDMCRITSECT pCritSect);
86VMMDECL(bool) PDMCritSectIsInitialized(PCPDMCRITSECT pCritSect);
87VMMDECL(bool) PDMCritSectHasWaiters(PVMCC pVM, PCPDMCRITSECT pCritSect);
88VMMDECL(uint32_t) PDMCritSectGetRecursion(PCPDMCRITSECT pCritSect);
89
90VMMR3DECL(PPDMCRITSECT) PDMR3CritSectGetNop(PVM pVM);
91VMMR3DECL(R0PTRTYPE(PPDMCRITSECT)) PDMR3CritSectGetNopR0(PVM pVM);
92VMMR3DECL(RCPTRTYPE(PPDMCRITSECT)) PDMR3CritSectGetNopRC(PVM pVM);
93
94/* Strict build: Remap the two enter calls to the debug versions. */
95#ifdef VBOX_STRICT
96# ifdef IPRT_INCLUDED_asm_h
97# define PDMCritSectEnter(a_pVM, pCritSect, rcBusy) PDMCritSectEnterDebug((a_pVM), (pCritSect), (rcBusy), (uintptr_t)ASMReturnAddress(), RT_SRC_POS)
98# define PDMCritSectTryEnter(a_pVM, pCritSect) PDMCritSectTryEnterDebug((a_pVM), (pCritSect), (uintptr_t)ASMReturnAddress(), RT_SRC_POS)
99# else
100# define PDMCritSectEnter(a_pVM, pCritSect, rcBusy) PDMCritSectEnterDebug((a_pVM), (pCritSect), (rcBusy), 0, RT_SRC_POS)
101# define PDMCritSectTryEnter(a_pVM, pCritSect) PDMCritSectTryEnterDebug((a_pVM), (pCritSect), 0, RT_SRC_POS)
102# endif
103#endif
104
105/** @def PDM_CRITSECT_RELEASE_ASSERT_RC
106 * Helper for PDMCritSectEnter w/ rcBusy VINF_SUCCESS when there is no way
107 * to forward failures to the caller. */
108#define PDM_CRITSECT_RELEASE_ASSERT_RC(a_pVM, a_pCritSect, a_rc) \
109 AssertReleaseMsg(RT_SUCCESS(a_rc), ("pVM=%p pCritSect=%p: %Rrc\n", (a_pVM), (a_pCritSect), (a_rc)))
110
111/** @def PDM_CRITSECT_RELEASE_ASSERT_RC_DEV
112 * Helper for PDMCritSectEnter w/ rcBusy VINF_SUCCESS when there is no way
113 * to forward failures to the caller, device edition. */
114#define PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(a_pDevIns, a_pCritSect, a_rc) \
115 AssertReleaseMsg(RT_SUCCESS(a_rc), ("pDevIns=%p pCritSect=%p: %Rrc\n", (a_pDevIns), (a_pCritSect), (a_rc)))
116
117/** @def PDM_CRITSECT_RELEASE_ASSERT_RC_DRV
118 * Helper for PDMCritSectEnter w/ rcBusy VINF_SUCCESS when there is no way
119 * to forward failures to the caller, driver edition. */
120#define PDM_CRITSECT_RELEASE_ASSERT_RC_DRV(a_pDrvIns, a_pCritSect, a_rc) \
121 AssertReleaseMsg(RT_SUCCESS(a_rc), ("pDrvIns=%p pCritSect=%p: %Rrc\n", (a_pDrvIns), (a_pCritSect), (a_rc)))
122
123/** @def PDM_CRITSECT_RELEASE_ASSERT_RC_USB
124 * Helper for PDMCritSectEnter w/ rcBusy VINF_SUCCESS when there is no way
125 * to forward failures to the caller, USB device edition. */
126#define PDM_CRITSECT_RELEASE_ASSERT_RC_USB(a_pUsbIns, a_pCritSect, a_rc) \
127 AssertReleaseMsg(RT_SUCCESS(a_rc), ("pUsbIns=%p pCritSect=%p: %Rrc\n", (a_pUsbIns), (a_pCritSect), (a_rc)))
128
129
130/** @} */
131
132RT_C_DECLS_END
133
134#endif /* !VBOX_INCLUDED_vmm_pdmcritsect_h */
135
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette