Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
3acb058a
Commit
3acb058a
authored
Sep 20, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add SEH annotations to ARM64 assembly code.
parent
bb611b9d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
cproxy.c
dlls/rpcrt4/cproxy.c
+3
-0
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+3
-0
No files found.
dlls/rpcrt4/cproxy.c
View file @
3acb058a
...
...
@@ -201,7 +201,10 @@ static inline void init_thunk( struct thunk *thunk, unsigned int index )
extern
void
call_stubless_func
(
void
);
__ASM_GLOBAL_FUNC
(
call_stubless_func
,
"stp x29, x30, [sp, #-0x90]!
\n\t
"
__ASM_SEH
(
".seh_save_fplr_x 0x90
\n\t
"
)
"mov x29, sp
\n\t
"
__ASM_SEH
(
".seh_set_fp
\n\t
"
)
__ASM_SEH
(
".seh_endprologue
\n\t
"
)
"stp d0, d1, [sp, #0x10]
\n\t
"
"stp d2, d3, [sp, #0x20]
\n\t
"
"stp d4, d5, [sp, #0x30]
\n\t
"
...
...
dlls/rpcrt4/ndr_stubless.c
View file @
3acb058a
...
...
@@ -1181,7 +1181,10 @@ __ASM_GLOBAL_FUNC( call_server_func,
LONG_PTR
__cdecl
call_server_func
(
SERVER_ROUTINE
func
,
unsigned
char
*
args
,
unsigned
int
stack_size
);
__ASM_GLOBAL_FUNC
(
call_server_func
,
"stp x29, x30, [sp, #-16]!
\n\t
"
__ASM_SEH
(
".seh_save_fplr_x 16
\n\t
"
)
"mov x29, sp
\n\t
"
__ASM_SEH
(
".seh_set_fp
\n\t
"
)
__ASM_SEH
(
".seh_endprologue
\n\t
"
)
"add x9, x2, #15
\n\t
"
"lsr x9, x9, #4
\n\t
"
"sub sp, sp, x9, lsl #4
\n\t
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment