Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
a040a152
There was an error fetching the commit references. Please try again later.
Commit
a040a152
authored
5 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
core: device_memory: Update to use VirtualBuffer class.
parent
4ba2428c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/device_memory.cpp
+5
-33
5 additions, 33 deletions
src/core/device_memory.cpp
src/core/device_memory.h
+7
-6
7 additions, 6 deletions
src/core/device_memory.h
with
12 additions
and
39 deletions
src/core/device_memory.cpp
+
5
−
33
View file @
a040a152
...
...
@@ -2,49 +2,21 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#ifdef _WIN32
#include
<windows.h>
#endif
#include
"common/assert.h"
#include
"core/core.h"
#include
"core/device_memory.h"
#include
"core/memory.h"
namespace
Core
{
constexpr
u64
DramSize
{
4ULL
*
1024
*
1024
*
1024
};
DeviceMemory
::
DeviceMemory
(
System
&
system
)
:
system
{
system
}
{
#ifdef _WIN32
base
=
static_cast
<
u8
*>
(
VirtualAlloc
(
nullptr
,
// System selects address
DramSize
,
// Size of allocation
MEM_RESERVE
|
MEM_COMMIT
|
MEM_WRITE_WATCH
,
// Allocate reserved pages
PAGE_READWRITE
));
// Protection = no access
#else
physical_memory
.
resize
(
DramSize
);
base
=
physical_memory
.
data
();
#endif
}
DeviceMemory
::
DeviceMemory
(
System
&
system
)
:
buffer
{
DramMemoryMap
::
Size
},
system
{
system
}
{}
DeviceMemory
::~
DeviceMemory
()
{
#ifdef _WIN32
ASSERT
(
VirtualFree
(
base
,
DramSize
,
MEM_RELEASE
));
#endif
}
DeviceMemory
::~
DeviceMemory
()
=
default
;
PAddr
DeviceMemory
::
GetPhysicalAddr
(
VAddr
addr
)
{
u8
*
pointer
{
system
.
Memory
().
GetPointer
(
addr
)};
ASSERT
(
pointer
);
const
uintptr_t
offset
{
static_cast
<
uintptr_t
>
(
pointer
-
GetPointer
(
DramMemoryMap
::
Base
))};
const
u8
*
const
base
{
system
.
Memory
().
GetPointer
(
addr
)};
ASSERT
(
base
);
const
uintptr_t
offset
{
static_cast
<
uintptr_t
>
(
base
-
GetPointer
(
DramMemoryMap
::
Base
))};
return
DramMemoryMap
::
Base
+
offset
;
}
u8
*
DeviceMemory
::
GetPointer
(
PAddr
addr
)
{
ASSERT
(
addr
>=
DramMemoryMap
::
Base
);
ASSERT
(
addr
<
DramMemoryMap
::
Base
+
DramSize
);
return
base
+
(
addr
-
DramMemoryMap
::
Base
);
}
}
// namespace Core
This diff is collapsed.
Click to expand it.
src/core/device_memory.h
+
7
−
6
View file @
a040a152
...
...
@@ -6,7 +6,7 @@
#include
"common/assert.h"
#include
"common/common_funcs.h"
#include
"co
re/hle/kernel/physical_memory
.h"
#include
"co
mmon/virtual_buffer
.h"
namespace
Core
{
...
...
@@ -24,24 +24,25 @@ constexpr u64 SlabHeapEnd = SlabHeapBase + SlapHeapSize;
class
DeviceMemory
:
NonCopyable
{
public:
DeviceMemory
(
Core
::
System
&
system
);
explicit
DeviceMemory
(
Core
::
System
&
system
);
~
DeviceMemory
();
template
<
typename
T
>
PAddr
GetPhysicalAddr
(
T
*
ptr
)
{
const
auto
ptr_addr
{
reinterpret_cast
<
uintptr_t
>
(
ptr
)};
const
auto
base_addr
{
reinterpret_cast
<
uintptr_t
>
(
b
ase
)};
const
auto
base_addr
{
reinterpret_cast
<
uintptr_t
>
(
b
uffer
.
data
()
)};
ASSERT
(
ptr_addr
>=
base_addr
);
return
ptr_addr
-
base_addr
+
DramMemoryMap
::
Base
;
}
PAddr
GetPhysicalAddr
(
VAddr
addr
);
u8
*
GetPointer
(
PAddr
addr
);
constexpr
u8
*
GetPointer
(
PAddr
addr
)
{
return
buffer
.
data
()
+
(
addr
-
DramMemoryMap
::
Base
);
}
private
:
u8
*
base
{};
Kernel
::
PhysicalMemory
physical_memory
;
Common
::
VirtualBuffer
<
u8
>
buffer
;
Core
::
System
&
system
;
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment