VirtualBox

source: vbox/trunk/include/iprt/param.h@ 98103

Last change on this file since 98103 was 98103, checked in by vboxsync, 17 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
1/** @file
2 * IPRT - Parameter Definitions.
3 */
4
5/*
6 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
7 *
8 * This file is part of VirtualBox base platform packages, as
9 * available from https://www.virtualbox.org.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation, in version 3 of the
14 * License.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses>.
23 *
24 * The contents of this file may alternatively be used under the terms
25 * of the Common Development and Distribution License Version 1.0
26 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
27 * in the VirtualBox distribution, in which case the provisions of the
28 * CDDL are applicable instead of those of the GPL.
29 *
30 * You may elect to license modified versions of this file under the
31 * terms and conditions of either the GPL or the CDDL or both.
32 *
33 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
34 */
35
36#ifndef IPRT_INCLUDED_param_h
37#define IPRT_INCLUDED_param_h
38#ifndef RT_WITHOUT_PRAGMA_ONCE
39# pragma once
40#endif
41
42#include <iprt/cdefs.h>
43
44/** @todo Much of the PAGE_* stuff here is obsolete and highly risky to have around.
45 * As for component configs (MM_*), either we gather all in here or we move those bits away! */
46
47/** @defgroup grp_rt_param System Parameter Definitions
48 * @ingroup grp_rt_cdefs
49 * @{
50 */
51
52/* Undefine PAGE_SIZE and PAGE_SHIFT to avoid unnecessary noice when clashing
53 * with system headers. Include system headers before / after iprt depending
54 * on which you wish to take precedence. */
55#undef PAGE_SIZE
56#undef PAGE_SHIFT
57
58/* Undefine PAGE_OFFSET_MASK to avoid the conflict with the-linux-kernel.h */
59#undef PAGE_OFFSET_MASK
60
61/**
62 * i386 Page size.
63 */
64#if defined(RT_ARCH_SPARC64)
65# define PAGE_SIZE 8192
66#elif defined(RT_ARCH_ARM64)
67# define PAGE_SIZE 16384
68#else
69# define PAGE_SIZE 4096
70#endif
71
72/**
73 * i386 Page shift.
74 * This is used to convert between size (in bytes) and page count.
75 */
76#if defined(RT_ARCH_SPARC64)
77# define PAGE_SHIFT 13
78#elif defined(RT_ARCH_ARM64)
79# define PAGE_SHIFT 14
80#else
81# define PAGE_SHIFT 12
82#endif
83
84/**
85 * i386 Page offset mask.
86 *
87 * @note If you do one-complement this, always insert a target type case after
88 * the operator! Otherwise you may end up with weird results.
89 */
90#if defined(RT_ARCH_SPARC64)
91# define PAGE_OFFSET_MASK 0x1fff
92#elif defined(RT_ARCH_ARM64)
93# define PAGE_OFFSET_MASK 0x3fff
94#else
95# define PAGE_OFFSET_MASK 0xfff
96#endif
97
98/**
99 * Page address mask for the uintptr_t sized pointers.
100 *
101 * Be careful when using this since it may be a size too big!
102 * @remark Physical addresses are always masked using X86_PTE_PAE_PG_MASK!
103 */
104#define PAGE_BASE_MASK (~(uintptr_t)PAGE_OFFSET_MASK)
105
106/**
107 * Get the page aligned address of a POINTER in the CURRENT context.
108 *
109 * @returns Page aligned address (it's an uintptr_t).
110 * @param pv The virtual address to align.
111 *
112 * @remarks Physical addresses are always masked using X86_PTE_PAE_PG_MASK!
113 * @remarks This only works with POINTERS in the current context.
114 * Do NOT use on guest address or physical address!
115 */
116#define PAGE_ADDRESS(pv) ((uintptr_t)(pv) & ~(uintptr_t)PAGE_OFFSET_MASK)
117
118/**
119 * Get the page aligned address of a physical address
120 *
121 * @returns Page aligned address (it's an RTHCPHYS or RTGCPHYS).
122 * @param Phys The physical address to align.
123 */
124#define PHYS_PAGE_ADDRESS(Phys) ((Phys) & X86_PTE_PAE_PG_MASK)
125
126/**
127 * Host max path (the reasonable value).
128 * @remarks defined both by iprt/param.h and iprt/path.h.
129 */
130#if !defined(IPRT_INCLUDED_path_h) || defined(DOXYGEN_RUNNING)
131# define RTPATH_MAX (4096 + 4) /* (PATH_MAX + 1) on linux w/ some alignment */
132#endif
133
134/** @} */
135
136#endif /* !IPRT_INCLUDED_param_h */
137
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use