-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHostVirtualMemoryPageInfo.cpp
More file actions
159 lines (124 loc) Β· 5.27 KB
/
HostVirtualMemoryPageInfo.cpp
File metadata and controls
159 lines (124 loc) Β· 5.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
// MLB Utility Library Module File
// ////////////////////////////////////////////////////////////////////////////
/*
File Name : %M%
File Version : %I%
Last Extracted : %D% %T%
Last Updated : %E% %U%
File Description : Implementation of the HostVirtualMemoryPageInfo class.
Revision History : 2006-01-07 --- Creation.
Michael L. Brock
Copyright Michael L. Brock 2006 - 2018.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
// Required include files...
// ////////////////////////////////////////////////////////////////////////////
#include <Utility/HostVirtualMemoryPageInfo.hpp>
// ////////////////////////////////////////////////////////////////////////////
namespace MLB {
namespace Utility {
// ////////////////////////////////////////////////////////////////////////////
HostVirtualMemoryPageInfo::HostVirtualMemoryPageInfo()
:page_size_(GetPageSize())
,page_alloc_granularity_size_(GetPageAllocGranularitySize())
{
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
void HostVirtualMemoryPageInfo::swap(HostVirtualMemoryPageInfo &other)
{
std::swap(page_size_, other.page_size_);
std::swap(page_alloc_granularity_size_, other.page_alloc_granularity_size_);
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
bool HostVirtualMemoryPageInfo::operator < (
const HostVirtualMemoryPageInfo &other) const
{
return(Compare(other) < 0);
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
bool HostVirtualMemoryPageInfo::operator == (
const HostVirtualMemoryPageInfo &other) const
{
return(Compare(other) == 0);
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
bool HostVirtualMemoryPageInfo::operator != (
const HostVirtualMemoryPageInfo &other) const
{
return(!(*this == other));
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
int HostVirtualMemoryPageInfo::Compare(
const HostVirtualMemoryPageInfo &other) const
{
int cmp;
if ((cmp = (static_cast<int>(page_size_) -
static_cast<int>(other.page_size_))) == 0)
cmp = static_cast<int>(page_alloc_granularity_size_) -
static_cast<int>(other.page_alloc_granularity_size_);
return(cmp);
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
std::string HostVirtualMemoryPageInfo::ToString() const
{
std::string out_string;
return(ToString(out_string));
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
std::string &HostVirtualMemoryPageInfo::ToString(std::string &out_string) const
{
std::ostringstream o_str;
o_str <<
"pageSize = " << page_size_ << ", " <<
"pageAllocationGranularitySize = " << page_alloc_granularity_size_;
return(out_string.assign(o_str.str()));
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
std::string HostVirtualMemoryPageInfo::ToStringLines(
unsigned int padding, const std::string &separator) const
{
std::string out_string;
return(ToStringLines(out_string, padding, separator));
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
std::string &HostVirtualMemoryPageInfo::ToStringLines(std::string &out_string,
unsigned int padding, const std::string &separator) const
{
std::ostringstream o_str;
o_str <<
std::left << std::setw(static_cast<std::streamsize>(padding)) <<
"pageSize" <<
std::right << separator << page_size_ << std::endl <<
std::left << std::setw(static_cast<std::streamsize>(padding)) <<
"pageAllocationGranularitySize" <<
std::right << separator << page_alloc_granularity_size_;
return(out_string.assign(o_str.str()));
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
std::ostream & operator << (std::ostream &o_str,
const HostVirtualMemoryPageInfo &datum)
{
o_str <<
datum.ToString();
return(o_str);
}
// ////////////////////////////////////////////////////////////////////////////
} // namespace Utility
} // namespace MLB