VirtualBox

source: vbox/trunk/include/VBox/vmm/dbgfsel.h@ 73768

Last change on this file since 73768 was 69107, checked in by vboxsync, 7 years ago

include/VBox/: (C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1/** @file
2 * DBGF - Debugger Facility, selector interface partly shared with SELM.
3 */
4
5/*
6 * Copyright (C) 2006-2017 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
27#ifndef ___VBox_vmm_dbgfsel_h
28#define ___VBox_vmm_dbgfsel_h
29
30#include <VBox/types.h>
31#include <iprt/x86.h>
32
33
34/** @addtogroup grp_dbgf
35 * @{ */
36
37/**
38 * Selector information structure.
39 */
40typedef struct DBGFSELINFO
41{
42 /** The base address.
43 * For gate descriptors, this is the target address. */
44 RTGCPTR GCPtrBase;
45 /** The limit (-1).
46 * For gate descriptors, this is set to zero. */
47 RTGCUINTPTR cbLimit;
48 /** The raw descriptor. */
49 union
50 {
51 X86DESC Raw;
52 X86DESC64 Raw64;
53 } u;
54 /** The selector. */
55 RTSEL Sel;
56 /** The target selector for a gate.
57 * This is 0 if non-gate descriptor. */
58 RTSEL SelGate;
59 /** Flags. */
60 uint32_t fFlags;
61} DBGFSELINFO;
62/** Pointer to a SELM selector information struct. */
63typedef DBGFSELINFO *PDBGFSELINFO;
64/** Pointer to a const SELM selector information struct. */
65typedef const DBGFSELINFO *PCDBGFSELINFO;
66
67/** @name DBGFSELINFO::fFlags
68 * @{ */
69/** The CPU is in real mode. */
70#define DBGFSELINFO_FLAGS_REAL_MODE RT_BIT_32(0)
71/** The CPU is in protected mode. */
72#define DBGFSELINFO_FLAGS_PROT_MODE RT_BIT_32(1)
73/** The CPU is in long mode. */
74#define DBGFSELINFO_FLAGS_LONG_MODE RT_BIT_32(2)
75/** The selector is a hyper selector. */
76#define DBGFSELINFO_FLAGS_HYPER RT_BIT_32(3)
77/** The selector is a gate selector. */
78#define DBGFSELINFO_FLAGS_GATE RT_BIT_32(4)
79/** The selector is invalid. */
80#define DBGFSELINFO_FLAGS_INVALID RT_BIT_32(5)
81/** The selector not present. */
82#define DBGFSELINFO_FLAGS_NOT_PRESENT RT_BIT_32(6)
83/** @} */
84
85
86/**
87 * Tests whether the selector info describes an expand-down selector or now.
88 *
89 * @returns true / false.
90 * @param pSelInfo The selector info.
91 */
92DECLINLINE(bool) DBGFSelInfoIsExpandDown(PCDBGFSELINFO pSelInfo)
93{
94 return (pSelInfo)->u.Raw.Gen.u1DescType
95 && ((pSelInfo)->u.Raw.Gen.u4Type & (X86_SEL_TYPE_DOWN | X86_SEL_TYPE_CODE)) == X86_SEL_TYPE_DOWN;
96}
97
98
99VMMR3DECL(int) DBGFR3SelInfoValidateCS(PCDBGFSELINFO pSelInfo, RTSEL SelCPL);
100
101/** @} */
102
103#endif
104
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use