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
32847d8b
There was an error fetching the commit references. Please try again later.
Commit
32847d8b
authored
7 years ago
by
Subv
Committed by
bunnei
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
IPC: Add functions to read the input move/copy objects from an IPC request.
parent
7e3561b1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/core/hle/ipc_helpers.h
+16
-0
16 additions, 0 deletions
src/core/hle/ipc_helpers.h
src/core/hle/kernel/hle_ipc.cpp
+14
-2
14 additions, 2 deletions
src/core/hle/kernel/hle_ipc.cpp
src/core/hle/kernel/hle_ipc.h
+12
-0
12 additions, 0 deletions
src/core/hle/kernel/hle_ipc.h
with
42 additions
and
2 deletions
src/core/hle/ipc_helpers.h
+
16
−
0
View file @
32847d8b
...
...
@@ -233,6 +233,12 @@ public:
*/
template
<
typename
T
>
T
PopRaw
();
template
<
typename
T
>
Kernel
::
SharedPtr
<
T
>
GetMoveObject
(
size_t
index
);
template
<
typename
T
>
Kernel
::
SharedPtr
<
T
>
GetCopyObject
(
size_t
index
);
};
/// Pop ///
...
...
@@ -293,4 +299,14 @@ void RequestParser::Pop(First& first_value, Other&... other_values) {
Pop
(
other_values
...);
}
template
<
typename
T
>
Kernel
::
SharedPtr
<
T
>
RequestParser
::
GetMoveObject
(
size_t
index
)
{
return
context
->
GetMoveObject
<
T
>
(
index
);
}
template
<
typename
T
>
Kernel
::
SharedPtr
<
T
>
RequestParser
::
GetCopyObject
(
size_t
index
)
{
return
context
->
GetCopyObject
<
T
>
(
index
);
}
}
// namespace IPC
This diff is collapsed.
Click to expand it.
src/core/hle/kernel/hle_ipc.cpp
+
14
−
2
View file @
32847d8b
...
...
@@ -53,8 +53,20 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
if
(
handle_descriptor_header
->
send_current_pid
)
{
rp
.
Skip
(
2
,
false
);
}
rp
.
Skip
(
handle_descriptor_header
->
num_handles_to_copy
,
false
);
rp
.
Skip
(
handle_descriptor_header
->
num_handles_to_move
,
false
);
if
(
incoming
)
{
// Populate the object lists with the data in the IPC request.
for
(
u32
handle
=
0
;
handle
<
handle_descriptor_header
->
num_handles_to_copy
;
++
handle
)
{
copy_objects
.
push_back
(
Kernel
::
g_handle_table
.
GetGeneric
(
rp
.
Pop
<
Handle
>
()));
}
for
(
u32
handle
=
0
;
handle
<
handle_descriptor_header
->
num_handles_to_move
;
++
handle
)
{
move_objects
.
push_back
(
Kernel
::
g_handle_table
.
GetGeneric
(
rp
.
Pop
<
Handle
>
()));
}
}
else
{
// For responses we just ignore the handles, they're empty and will be populated when
// translating the response.
rp
.
Skip
(
handle_descriptor_header
->
num_handles_to_copy
,
false
);
rp
.
Skip
(
handle_descriptor_header
->
num_handles_to_move
,
false
);
}
}
for
(
unsigned
i
=
0
;
i
<
command_header
->
num_buf_x_descriptors
;
++
i
)
{
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/kernel/hle_ipc.h
+
12
−
0
View file @
32847d8b
...
...
@@ -147,6 +147,18 @@ public:
return
domain
!=
nullptr
;
}
template
<
typename
T
>
SharedPtr
<
T
>
GetCopyObject
(
size_t
index
)
{
ASSERT
(
index
<
copy_objects
.
size
());
return
DynamicObjectCast
(
copy_objects
[
index
]);
}
template
<
typename
T
>
SharedPtr
<
T
>
GetMoveObject
(
size_t
index
)
{
ASSERT
(
index
<
move_objects
.
size
());
return
DynamicObjectCast
(
move_objects
[
index
]);
}
void
AddMoveObject
(
SharedPtr
<
Object
>
object
)
{
move_objects
.
emplace_back
(
std
::
move
(
object
));
}
...
...
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