VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/darwin/threadpreempt-r0drv-darwin.cpp@ 37040

Last change on this file since 37040 was 37040, checked in by vboxsync, 14 years ago

RTThreadPreemptIsPending/darwin: Try to unbreak this on AMD64.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.2 KB
Line 
1/* $Id: threadpreempt-r0drv-darwin.cpp 37040 2011-05-11 16:42:48Z vboxsync $ */
2/** @file
3 * IPRT - Thread Preemption, Ring-0 Driver, Darwin.
4 */
5
6/*
7 * Copyright (C) 2009 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.215389.xyz. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#include "the-darwin-kernel.h"
32#include "internal/iprt.h"
33#include <iprt/thread.h>
34
35#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
36# include <iprt/asm-amd64-x86.h>
37#endif
38#include <iprt/assert.h>
39#include <iprt/err.h>
40#include <iprt/mp.h>
41
42
43/*******************************************************************************
44* Structures and Typedefs *
45*******************************************************************************/
46typedef struct RTDARWINPREEMPTHACK
47{
48 /** The spinlock we exploit for disabling preemption. */
49 lck_spin_t *pSpinLock;
50 /** The preemption count for this CPU, to guard against nested calls. */
51 uint32_t cRecursion;
52} RTDARWINPREEMPTHACK;
53typedef RTDARWINPREEMPTHACK *PRTDARWINPREEMPTHACK;
54
55
56/*******************************************************************************
57* Global Variables *
58*******************************************************************************/
59static RTDARWINPREEMPTHACK g_aPreemptHacks[16]; /* see MAX_CPUS in i386/mp.h */
60
61
62/**
63 * Allocates the per-cpu spin locks used to disable preemption.
64 *
65 * Called by rtR0InitNative.
66 */
67int rtThreadPreemptDarwinInit(void)
68{
69 Assert(g_pDarwinLockGroup);
70
71 for (size_t i = 0; i < RT_ELEMENTS(g_aPreemptHacks); i++)
72 {
73 g_aPreemptHacks[i].pSpinLock = lck_spin_alloc_init(g_pDarwinLockGroup, LCK_ATTR_NULL);
74 if (!g_aPreemptHacks[i].pSpinLock)
75 return VERR_NO_MEMORY; /* (The caller will invoke rtThreadPreemptDarwinTerm) */
76 }
77 return VINF_SUCCESS;
78}
79
80
81/**
82 * Frees the per-cpu spin locks used to disable preemption.
83 *
84 * Called by rtR0TermNative.
85 */
86void rtThreadPreemptDarwinTerm(void)
87{
88 for (size_t i = 0; i < RT_ELEMENTS(g_aPreemptHacks); i++)
89 if (g_aPreemptHacks[i].pSpinLock)
90 {
91 lck_spin_free(g_aPreemptHacks[i].pSpinLock, g_pDarwinLockGroup);
92 g_aPreemptHacks[i].pSpinLock = NULL;
93 }
94}
95
96
97RTDECL(bool) RTThreadPreemptIsEnabled(RTTHREAD hThread)
98{
99 Assert(hThread == NIL_RTTHREAD);
100 return preemption_enabled();
101}
102
103
104RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread)
105{
106 Assert(hThread == NIL_RTTHREAD);
107
108 /* HACK ALERT! This ASSUMES that the cpu_pending_ast member of cpu_data_t doesn't move. */
109 uint32_t ast_pending;
110#if defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64)
111 __asm__ volatile("movl %%gs:%P1,%0\n\t"
112 : "=r" (ast_pending)
113 : "i" (7*sizeof(void*) + (7 + (ARCH_BITS == 64)) *sizeof(int)) );
114#else
115# error fixme.
116 cpu_data_t *pCpu = current_cpu_datap(void);
117 AssertCompileMemberOffset(cpu_data_t, cpu_pending_ast, 7*sizeof(void*) + 7*sizeof(int));
118 cpu_pending_ast = pCpu->cpu_pending_ast;
119#endif
120 AssertMsg(!(ast_pending & UINT32_C(0xfffff000)),("%#x\n", ast_pending));
121 return (ast_pending & (AST_PREEMPT | AST_URGENT)) != 0;
122}
123
124
125RTDECL(bool) RTThreadPreemptIsPendingTrusty(void)
126{
127 /* yes, we think that RTThreadPreemptIsPending is reliable... */
128 return true;
129}
130
131
132RTDECL(bool) RTThreadPreemptIsPossible(void)
133{
134 /* yes, kernel preemption is possible. */
135 return true;
136}
137
138
139RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState)
140{
141 AssertPtr(pState);
142 Assert(pState->u32Reserved == 0);
143 pState->u32Reserved = 42;
144
145 /*
146 * Disable to prevent preemption while we grab the per-cpu spin lock.
147 * Note! Only take the lock on the first call or we end up spinning for ever.
148 */
149 RTCCUINTREG fSavedFlags = ASMIntDisableFlags();
150 RTCPUID idCpu = RTMpCpuId();
151 if (RT_UNLIKELY(idCpu < RT_ELEMENTS(g_aPreemptHacks)))
152 {
153 Assert(g_aPreemptHacks[idCpu].cRecursion < UINT32_MAX / 2);
154 if (++g_aPreemptHacks[idCpu].cRecursion == 1)
155 {
156 lck_spin_t *pSpinLock = g_aPreemptHacks[idCpu].pSpinLock;
157 if (pSpinLock)
158 lck_spin_lock(pSpinLock);
159 else
160 AssertFailed();
161 }
162 }
163 ASMSetFlags(fSavedFlags);
164 Assert(!RTThreadPreemptIsEnabled(NIL_RTTHREAD));
165 RT_ASSERT_PREEMPT_CPUID_DISABLE(pState);
166}
167
168
169RTDECL(void) RTThreadPreemptRestore(PRTTHREADPREEMPTSTATE pState)
170{
171 AssertPtr(pState);
172 Assert(pState->u32Reserved == 42);
173 pState->u32Reserved = 0;
174 RT_ASSERT_PREEMPT_CPUID_RESTORE(pState);
175
176 RTCPUID idCpu = RTMpCpuId();
177 if (RT_UNLIKELY(idCpu < RT_ELEMENTS(g_aPreemptHacks)))
178 {
179 Assert(g_aPreemptHacks[idCpu].cRecursion > 0);
180 if (--g_aPreemptHacks[idCpu].cRecursion == 0)
181 {
182 lck_spin_t *pSpinLock = g_aPreemptHacks[idCpu].pSpinLock;
183 if (pSpinLock)
184 lck_spin_unlock(pSpinLock);
185 else
186 AssertFailed();
187 }
188 }
189}
190
191
192RTDECL(bool) RTThreadIsInInterrupt(RTTHREAD hThread)
193{
194 Assert(hThread == NIL_RTTHREAD); NOREF(hThread);
195 /** @todo Darwin: Implement RTThreadIsInInterrupt. Required for guest
196 * additions! */
197 return !ASMIntAreEnabled();
198}
199
Note: See TracBrowser for help on using the repository browser.

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