Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xing Lin
qemu
Commits
4cbf74b6
Commit
4cbf74b6
authored
Aug 10, 2003
by
bellard
Browse files
soft mmu support
git-svn-id:
svn://svn.savannah.nongnu.org/qemu/trunk@355
c046a42c-6fe2-441c-8c8c-71466251a162
parent
33417e70
Changes
1
Hide whitespace changes
Inline
Side-by-side
cpu-exec.c
View file @
4cbf74b6
...
...
@@ -245,6 +245,7 @@ int cpu_exec(CPUState *env1)
(
unsigned
long
)
env
->
segs
[
R_SS
].
base
)
!=
0
)
<<
GEN_FLAG_ADDSEG_SHIFT
;
flags
|=
env
->
cpl
<<
GEN_FLAG_CPL_SHIFT
;
flags
|=
env
->
soft_mmu
<<
GEN_FLAG_SOFT_MMU_SHIFT
;
flags
|=
(
env
->
eflags
&
VM_MASK
)
>>
(
17
-
GEN_FLAG_VM_SHIFT
);
flags
|=
(
env
->
eflags
&
(
IOPL_MASK
|
TF_MASK
));
cs_base
=
env
->
segs
[
R_CS
].
base
;
...
...
@@ -333,6 +334,15 @@ int cpu_exec(CPUState *env1)
gen_func
();
#endif
env
->
current_tb
=
NULL
;
/* reset soft MMU for next block (it can currently
only be set by a memory fault) */
#if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU)
if
(
env
->
soft_mmu
)
{
env
->
soft_mmu
=
0
;
/* do not allow linking to another block */
T0
=
0
;
}
#endif
}
}
else
{
}
...
...
@@ -478,14 +488,21 @@ static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
a virtual CPU fault */
cpu_restore_state
(
tb
,
env
,
pc
);
}
if
(
ret
==
1
)
{
#if 0
printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
env->eip, env->cr[2], env->error_code);
printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
env->eip, env->cr[2], env->error_code);
#endif
/* we restore the process signal mask as the sigreturn should
do it (XXX: use sigsetjmp) */
sigprocmask
(
SIG_SETMASK
,
old_set
,
NULL
);
raise_exception_err
(
EXCP0E_PAGE
,
env
->
error_code
);
/* we restore the process signal mask as the sigreturn should
do it (XXX: use sigsetjmp) */
sigprocmask
(
SIG_SETMASK
,
old_set
,
NULL
);
raise_exception_err
(
EXCP0E_PAGE
,
env
->
error_code
);
}
else
{
/* activate soft MMU for this block */
env
->
soft_mmu
=
1
;
sigprocmask
(
SIG_SETMASK
,
old_set
,
NULL
);
cpu_loop_exit
();
}
/* never comes here */
return
1
;
}
...
...
Write
Preview
Supports
Markdown
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