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
eeb0a90e
Commit
eeb0a90e
authored
May 27, 2005
by
Ivan Leo Puoti
Committed by
Alexandre Julliard
May 27, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some privileged instructions emulation.
parent
b69e7a19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
3 deletions
+25
-3
instr.c
dlls/kernel/instr.c
+25
-3
No files found.
dlls/kernel/instr.c
View file @
eeb0a90e
...
...
@@ -2,6 +2,8 @@
* Emulation of privileged instructions
*
* Copyright 1995 Alexandre Julliard
* Copyright 2005 Ivan Leo Puoti
* Copyright 2005 Laurent Pinchart
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
...
...
@@ -537,15 +539,35 @@ DWORD INSTR_EmulateInstruction( EXCEPTION_RECORD *rec, CONTEXT86 *context )
case
0x21
:
/* mov drX, eax */
switch
(
instr
[
2
])
{
case
0xc8
:
/* mov dr1, eax */
context
->
ContextFlags
=
CONTEXT_DEBUG_REGISTERS
;
NtGetContextThread
(
GetCurrentThread
(),
context
);
TRACE
(
"mov dr1,eax at 0x%08lx
\n
"
,
context
->
Eip
);
context
->
Eax
=
context
->
Dr1
;
context
->
Eip
+=
prefixlen
+
3
;
return
ExceptionContinueExecution
;
case
0xf8
:
/* mov dr7, eax */
TRACE
(
"mov dr7,eax at 0x%08lx
\n
"
,
context
->
Eip
);
context
->
Eax
=
0x400
;
context
->
Eip
+=
prefixlen
+
3
;
return
ExceptionContinueExecution
;
default:
/* fallthrough to illegal instruction */
ERR
(
"Unknown DR register, eip+2 is %02x
\n
"
,
instr
[
2
]);
break
;
}
ERR
(
"Unsupported DR register, eip+2 is %02x
\n
"
,
instr
[
2
]);
/* fallthrough to illegal instruction */
break
;
case
0x23
:
/* mov eax drX */
switch
(
instr
[
2
])
{
case
0xc8
:
/* mov eax, dr1 */
context
->
ContextFlags
=
CONTEXT_DEBUG_REGISTERS
;
NtGetContextThread
(
GetCurrentThread
(),
context
);
context
->
Dr1
=
context
->
Eax
;
context
->
Eip
+=
prefixlen
+
3
;
context
->
ContextFlags
=
CONTEXT_DEBUG_REGISTERS
;
NtSetContextThread
(
GetCurrentThread
(),
context
);
return
ExceptionContinueExecution
;
}
ERR
(
"Unsupported DR register, eip+2 is %02x
\n
"
,
instr
[
2
]);
/* fallthrough to illegal instruction */
break
;
case
0xa1
:
/* pop fs */
...
...
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