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
a1f0f391
Commit
a1f0f391
authored
Apr 03, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Save FPU context for all exceptions.
parent
c77711a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
22 deletions
+26
-22
signal_i386.c
dlls/ntdll/signal_i386.c
+26
-22
No files found.
dlls/ntdll/signal_i386.c
View file @
a1f0f391
...
@@ -704,27 +704,6 @@ inline static void *init_handler( const SIGCONTEXT *sigcontext, WORD *fs, WORD *
...
@@ -704,27 +704,6 @@ inline static void *init_handler( const SIGCONTEXT *sigcontext, WORD *fs, WORD *
/***********************************************************************
/***********************************************************************
* save_fpu
*
* Set the FPU context from a sigcontext.
*/
inline
static
void
save_fpu
(
CONTEXT
*
context
,
const
SIGCONTEXT
*
sigcontext
)
{
context
->
ContextFlags
|=
CONTEXT86_FLOATING_POINT
;
#ifdef FPU_sig
if
(
FPU_sig
(
sigcontext
))
{
context
->
FloatSave
=
*
FPU_sig
(
sigcontext
);
return
;
}
#endif
/* FPU_sig */
#ifdef __GNUC__
__asm__
__volatile__
(
"fnsave %0; fwait"
:
"=m"
(
context
->
FloatSave
)
);
#endif
/* __GNUC__ */
}
/***********************************************************************
* restore_fpu
* restore_fpu
*
*
* Restore the FPU context to a sigcontext.
* Restore the FPU context to a sigcontext.
...
@@ -773,6 +752,21 @@ inline static void save_context( CONTEXT *context, const SIGCONTEXT *sigcontext,
...
@@ -773,6 +752,21 @@ inline static void save_context( CONTEXT *context, const SIGCONTEXT *sigcontext,
context
->
Dr3
=
regs
->
dr3
;
context
->
Dr3
=
regs
->
dr3
;
context
->
Dr6
=
regs
->
dr6
;
context
->
Dr6
=
regs
->
dr6
;
context
->
Dr7
=
regs
->
dr7
;
context
->
Dr7
=
regs
->
dr7
;
#ifdef FPU_sig
if
(
FPU_sig
(
sigcontext
))
{
context
->
ContextFlags
|=
CONTEXT_FLOATING_POINT
;
context
->
FloatSave
=
*
FPU_sig
(
sigcontext
);
}
else
#endif
{
#ifdef __GNUC__
context
->
ContextFlags
|=
CONTEXT_FLOATING_POINT
;
__asm__
__volatile__
(
"fnsave %0; fwait"
:
"=m"
(
context
->
FloatSave
)
);
#endif
}
}
}
...
@@ -815,6 +809,17 @@ inline static void restore_context( const CONTEXT *context, SIGCONTEXT *sigconte
...
@@ -815,6 +809,17 @@ inline static void restore_context( const CONTEXT *context, SIGCONTEXT *sigconte
#else
#else
wine_set_fs
(
context
->
SegFs
);
wine_set_fs
(
context
->
SegFs
);
#endif
#endif
#ifdef FPU_sig
if
(
FPU_sig
(
sigcontext
))
{
*
FPU_sig
(
sigcontext
)
=
context
->
FloatSave
;
}
else
#endif
{
restore_fpu
(
context
);
}
}
}
...
@@ -1278,7 +1283,6 @@ static HANDLER_DEF(fpe_handler)
...
@@ -1278,7 +1283,6 @@ static HANDLER_DEF(fpe_handler)
CONTEXT
*
context
;
CONTEXT
*
context
;
context
=
get_exception_context
(
rec
);
context
=
get_exception_context
(
rec
);
save_fpu
(
context
,
HANDLER_CONTEXT
);
switch
(
get_trap_code
(
HANDLER_CONTEXT
))
switch
(
get_trap_code
(
HANDLER_CONTEXT
))
{
{
...
...
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