VirtualBox

source: vbox/trunk/include/VBox/sup.mac@ 93115

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

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1; $Id: sup.mac 93115 2022-01-01 11:31:46Z vboxsync $
2;; @file
3; SUP - Support Library, assembly definitions.
4;
5
6;
7; Copyright (C) 2006-2022 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; 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%ifndef ___VBox_sup_mac
28%define ___VBox_sup_mac
29
30struc SUPGIPCPU
31 .u32TransactionId resd 1
32 .u32UpdateIntervalTSC resd 1
33 .u64NanoTS resq 1
34 .u64TSC resq 1
35 .u64CpuHz resq 1
36 .i64TSCDelta resq 1
37 .cErrors resd 1
38 .iTSCHistoryHead resd 1
39 .au32TSCHistory resd 8
40 .u32PrevUpdateIntervalNS resd 1
41 .u32Reserved resd 1
42 .u64TSCSample resq 1
43 .au32Reserved1 resd 3
44 .enmState resd 1
45 .idCpu resd 1
46 .iCpuSet resw 1
47 .iCpuGroup resw 1
48 .iCpuGroupMember resw 1
49 .idApic resw 1
50 .iReservedForNumaNode resd 1
51endstruc
52
53%define SUPGIPUSETSCDELTA_NOT_APPLICABLE 0
54%define SUPGIPUSETSCDELTA_ZERO_CLAIMED 1
55%define SUPGIPUSETSCDELTA_PRACTICALLY_ZERO 2
56%define SUPGIPUSETSCDELTA_ROUGHLY_ZERO 3
57%define SUPGIPUSETSCDELTA_NOT_ZERO 4
58
59%define SUPGIPGETCPU_APIC_ID 1
60%define SUPGIPGETCPU_RDTSCP_MASK_MAX_SET_CPUS 2
61%define SUPGIPGETCPU_IDTR_LIMIT_MASK_MAX_SET_CPUS 4
62%define SUPGIPGETCPU_RDTSCP_GROUP_IN_CH_NUMBER_IN_CL 8
63%define SUPGIPGETCPU_APIC_ID_EXT_0B 16
64%define SUPGIPGETCPU_APIC_ID_EXT_8000001E 32
65
66
67%define SUPGLOBALINFOPAGE_MAGIC 0x19590106
68struc SUPGLOBALINFOPAGE
69 .u32Magic resd 1
70 .u32Version resd 1
71 .u32Mode resd 1
72 .cCpus resw 1
73 .cPages resw 1
74 .u32UpdateHz resd 1
75 .u32UpdateIntervalNS resd 1
76 .u64NanoTSLastUpdateHz resq 1
77 .u64CpuHz resq 1
78 .cOnlineCpus resw 1
79 .cPresentCpus resw 1
80 .cPossibleCpus resw 1
81 .cPossibleCpuGroups resw 1
82 .idCpuMax resd 1
83 .enmUseTscDelta resd 1
84 .fGetGipCpu resd 1
85 .fFlags resd 1
86 .OnlineCpuSet resq 16
87 .PresentCpuSet resq 16
88 .PossibleCpuSet resq 16
89 .au32Padding1 resd 48
90 .aiCpuFromApicId resw 4096
91 .aiCpuFromCpuSetIdx resw 1024
92 .aoffCpuGroup resd 256
93 .aCPUs resb SUPGIPCPU_size
94endstruc
95
96struc SUPDRVTRACERUSRCTX32
97 .idProbe resd 1
98 .cBits resb 1
99 .abReserved resb 3
100 .u.X86.uVtgProbeLoc resd 1
101 .u.X86.aArgs resd 20
102 .u.X86.eip resd 1
103 .u.X86.eflags resd 1
104 .u.X86.eax resd 1
105 .u.X86.ecx resd 1
106 .u.X86.edx resd 1
107 .u.X86.ebx resd 1
108 .u.X86.esp resd 1
109 .u.X86.ebp resd 1
110 .u.X86.esi resd 1
111 .u.X86.edi resd 1
112 .u.X86.cs resw 1
113 .u.X86.ss resw 1
114 .u.X86.ds resw 1
115 .u.X86.es resw 1
116 .u.X86.fs resw 1
117 .u.X86.gs resw 1
118endstruc
119
120struc SUPDRVTRACERUSRCTX64
121 .idProbe resd 1
122 .cBits resb 1
123 .abReserved resb 3
124 .u.Amd64.uVtgProbeLoc resq 1
125 .u.Amd64.aArgs resq 10
126 .u.Amd64.rip resq 1
127 .u.Amd64.rflags resq 1
128 .u.Amd64.rax resq 1
129 .u.Amd64.rcx resq 1
130 .u.Amd64.rdx resq 1
131 .u.Amd64.rbx resq 1
132 .u.Amd64.rsp resq 1
133 .u.Amd64.rbp resq 1
134 .u.Amd64.rsi resq 1
135 .u.Amd64.rdi resq 1
136 .u.Amd64.r8 resq 1
137 .u.Amd64.r9 resq 1
138 .u.Amd64.r10 resq 1
139 .u.Amd64.r11 resq 1
140 .u.Amd64.r12 resq 1
141 .u.Amd64.r13 resq 1
142 .u.Amd64.r14 resq 1
143 .u.Amd64.r15 resq 1
144endstruc
145
146%endif
147
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