1 | ; $Id: VMMR0StackBack-darwin.asm 91820 2021-10-18 09:59:23Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; VMM - Temporary hack for darwin stack switching.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2021 Oracle Corporation
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. 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 |
|
---|
18 | ;*********************************************************************************************************************************
|
---|
19 | ;* Header Files *
|
---|
20 | ;*********************************************************************************************************************************
|
---|
21 | ;%define RT_ASM_WITH_SEH64_ALT
|
---|
22 | %include "VBox/asmdefs.mac"
|
---|
23 | %include "VBox/SUPR0StackWrapper.mac"
|
---|
24 |
|
---|
25 |
|
---|
26 | SUPR0StackWrapperGeneric vmmR0LoggerFlushInner, 5
|
---|
27 | SUPR0StackWrapperGeneric pdmR0CritSectEnterContendedOnKrnlStk, 6
|
---|
28 | SUPR0StackWrapperGeneric pdmR0CritSectLeaveSignallingOnKrnlStk, 5
|
---|
29 | SUPR0StackWrapperGeneric pdmCritSectRwEnterShared, 6
|
---|
30 | SUPR0StackWrapperGeneric pdmCritSectRwLeaveSharedWorker, 3
|
---|
31 | SUPR0StackWrapperGeneric pdmCritSectRwEnterExcl, 6
|
---|
32 | SUPR0StackWrapperGeneric pdmCritSectRwLeaveExclWorker, 6
|
---|
33 | SUPR0StackWrapperGeneric pgmR0PoolGrowOnKrnlStk, 3
|
---|
34 |
|
---|