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
6085d32c
There was an error fetching the commit references. Please try again later.
Commit
6085d32c
authored
7 years ago
by
MerryMage
Browse files
Options
Downloads
Patches
Plain Diff
arm_dynarmic: Support direct page table access
parent
ce8006e8
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
externals/catch
+1
-1
1 addition, 1 deletion
externals/catch
externals/dynarmic
+1
-1
1 addition, 1 deletion
externals/dynarmic
src/core/arm/dynarmic/arm_dynarmic.cpp
+14
-6
14 additions, 6 deletions
src/core/arm/dynarmic/arm_dynarmic.cpp
src/core/memory.h
+5
-4
5 additions, 4 deletions
src/core/memory.h
with
21 additions
and
12 deletions
catch
@
cd76f573
Compare
62dae592
...
cd76f573
Subproject commit
62dae592c330ab74cea30c897255ee9518639c3f
Subproject commit
cd76f5730c9a3afa19f3b9c83608d9c7ab325a19
This diff is collapsed.
Click to expand it.
dynarmic
@
d7323d67
Compare
406c0710
...
d7323d67
Subproject commit
406c07100890e0463bd3b44ff6857501cd714a93
Subproject commit
d7323d6799f0845b8c3214d624efce7a3094a657
This diff is collapsed.
Click to expand it.
src/core/arm/dynarmic/arm_dynarmic.cpp
+
14
−
6
View file @
6085d32c
...
@@ -85,11 +85,19 @@ public:
...
@@ -85,11 +85,19 @@ public:
ARM_Dynarmic
&
parent
;
ARM_Dynarmic
&
parent
;
size_t
ticks_remaining
=
0
;
size_t
ticks_remaining
=
0
;
size_t
num_interpreted_instructions
=
0
;
size_t
num_interpreted_instructions
=
0
;
u64
tpidrr
0
_el0
=
0
;
u64
tpidrr
o
_el0
=
0
;
};
};
std
::
unique_ptr
<
Dynarmic
::
A64
::
Jit
>
MakeJit
(
const
std
::
unique_ptr
<
ARM_Dynarmic_Callbacks
>&
cb
)
{
std
::
unique_ptr
<
Dynarmic
::
A64
::
Jit
>
MakeJit
(
const
std
::
unique_ptr
<
ARM_Dynarmic_Callbacks
>&
cb
)
{
Dynarmic
::
A64
::
UserConfig
config
{
cb
.
get
()};
const
auto
page_table
=
Kernel
::
g_current_process
->
vm_manager
.
page_table
.
pointers
.
data
();
Dynarmic
::
A64
::
UserConfig
config
;
config
.
callbacks
=
cb
.
get
();
config
.
tpidrro_el0
=
&
cb
->
tpidrro_el0
;
config
.
dczid_el0
=
4
;
config
.
page_table
=
reinterpret_cast
<
void
**>
(
page_table
);
config
.
page_table_address_space_bits
=
Memory
::
ADDRESS_SPACE_BITS
;
config
.
silently_mirror_page_table
=
false
;
return
std
::
make_unique
<
Dynarmic
::
A64
::
Jit
>
(
config
);
return
std
::
make_unique
<
Dynarmic
::
A64
::
Jit
>
(
config
);
}
}
...
@@ -149,11 +157,11 @@ void ARM_Dynarmic::SetCPSR(u32 cpsr) {
...
@@ -149,11 +157,11 @@ void ARM_Dynarmic::SetCPSR(u32 cpsr) {
}
}
u64
ARM_Dynarmic
::
GetTlsAddress
()
const
{
u64
ARM_Dynarmic
::
GetTlsAddress
()
const
{
return
cb
->
tpidrr
0
_el0
;
return
cb
->
tpidrr
o
_el0
;
}
}
void
ARM_Dynarmic
::
SetTlsAddress
(
u64
address
)
{
void
ARM_Dynarmic
::
SetTlsAddress
(
u64
address
)
{
cb
->
tpidrr
0
_el0
=
address
;
cb
->
tpidrr
o
_el0
=
address
;
}
}
void
ARM_Dynarmic
::
ExecuteInstructions
(
int
num_instructions
)
{
void
ARM_Dynarmic
::
ExecuteInstructions
(
int
num_instructions
)
{
...
@@ -170,7 +178,7 @@ void ARM_Dynarmic::SaveContext(ARM_Interface::ThreadContext& ctx) {
...
@@ -170,7 +178,7 @@ void ARM_Dynarmic::SaveContext(ARM_Interface::ThreadContext& ctx) {
ctx
.
cpsr
=
jit
->
GetPstate
();
ctx
.
cpsr
=
jit
->
GetPstate
();
ctx
.
fpu_registers
=
jit
->
GetVectors
();
ctx
.
fpu_registers
=
jit
->
GetVectors
();
ctx
.
fpscr
=
jit
->
GetFpcr
();
ctx
.
fpscr
=
jit
->
GetFpcr
();
ctx
.
tls_address
=
cb
->
tpidrr
0
_el0
;
ctx
.
tls_address
=
cb
->
tpidrr
o
_el0
;
}
}
void
ARM_Dynarmic
::
LoadContext
(
const
ARM_Interface
::
ThreadContext
&
ctx
)
{
void
ARM_Dynarmic
::
LoadContext
(
const
ARM_Interface
::
ThreadContext
&
ctx
)
{
...
@@ -180,7 +188,7 @@ void ARM_Dynarmic::LoadContext(const ARM_Interface::ThreadContext& ctx) {
...
@@ -180,7 +188,7 @@ void ARM_Dynarmic::LoadContext(const ARM_Interface::ThreadContext& ctx) {
jit
->
SetPstate
(
static_cast
<
u32
>
(
ctx
.
cpsr
));
jit
->
SetPstate
(
static_cast
<
u32
>
(
ctx
.
cpsr
));
jit
->
SetVectors
(
ctx
.
fpu_registers
);
jit
->
SetVectors
(
ctx
.
fpu_registers
);
jit
->
SetFpcr
(
static_cast
<
u32
>
(
ctx
.
fpscr
));
jit
->
SetFpcr
(
static_cast
<
u32
>
(
ctx
.
fpscr
));
cb
->
tpidrr
0
_el0
=
ctx
.
tls_address
;
cb
->
tpidrr
o
_el0
=
ctx
.
tls_address
;
}
}
void
ARM_Dynarmic
::
PrepareReschedule
()
{
void
ARM_Dynarmic
::
PrepareReschedule
()
{
...
...
This diff is collapsed.
Click to expand it.
src/core/memory.h
+
5
−
4
View file @
6085d32c
...
@@ -25,10 +25,11 @@ namespace Memory {
...
@@ -25,10 +25,11 @@ namespace Memory {
* Page size used by the ARM architecture. This is the smallest granularity with which memory can
* Page size used by the ARM architecture. This is the smallest granularity with which memory can
* be mapped.
* be mapped.
*/
*/
const
int
PAGE_BITS
=
12
;
constexpr
size_t
PAGE_BITS
=
12
;
const
u64
PAGE_SIZE
=
1
<<
PAGE_BITS
;
constexpr
u64
PAGE_SIZE
=
1
<<
PAGE_BITS
;
const
u64
PAGE_MASK
=
PAGE_SIZE
-
1
;
constexpr
u64
PAGE_MASK
=
PAGE_SIZE
-
1
;
const
size_t
PAGE_TABLE_NUM_ENTRIES
=
1ULL
<<
(
36
-
PAGE_BITS
);
constexpr
size_t
ADDRESS_SPACE_BITS
=
36
;
constexpr
size_t
PAGE_TABLE_NUM_ENTRIES
=
1ULL
<<
(
ADDRESS_SPACE_BITS
-
PAGE_BITS
);
enum
class
PageType
:
u8
{
enum
class
PageType
:
u8
{
/// Page is unmapped and should cause an access error.
/// Page is unmapped and should cause an access error.
...
...
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