mirror of
https://github.com/qemu/qemu.git
synced 2025-08-08 08:05:17 +00:00
s390x/tcg: drop potential_page_fault()
Only one user left, get rid of it so we don't get any new users. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: David Hildenbrand <david@redhat.com> Message-Id: <20171130162744.25442-17-david@redhat.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
This commit is contained in:
parent
51dcdbd319
commit
cb3129c376
@ -240,12 +240,6 @@ static void update_cc_op(DisasContext *s)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void potential_page_fault(DisasContext *s)
|
|
||||||
{
|
|
||||||
update_psw_addr(s);
|
|
||||||
update_cc_op(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline uint64_t ld_code2(CPUS390XState *env, uint64_t pc)
|
static inline uint64_t ld_code2(CPUS390XState *env, uint64_t pc)
|
||||||
{
|
{
|
||||||
return (uint64_t)cpu_lduw_code(env, pc);
|
return (uint64_t)cpu_lduw_code(env, pc);
|
||||||
@ -2939,7 +2933,8 @@ static ExitStatus op_lpd(DisasContext *s, DisasOps *o)
|
|||||||
|
|
||||||
/* In a parallel context, stop the world and single step. */
|
/* In a parallel context, stop the world and single step. */
|
||||||
if (tb_cflags(s->tb) & CF_PARALLEL) {
|
if (tb_cflags(s->tb) & CF_PARALLEL) {
|
||||||
potential_page_fault(s);
|
update_psw_addr(s);
|
||||||
|
update_cc_op(s);
|
||||||
gen_exception(EXCP_ATOMIC);
|
gen_exception(EXCP_ATOMIC);
|
||||||
return EXIT_NORETURN;
|
return EXIT_NORETURN;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user