mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 11:53:39 +08:00
c9274b6bf0
move everything related to translate, as well as HELPER code in tcg/ mmu_helper.c stays put for now, as it contains both TCG and KVM code. After the reshuffling, update MAINTAINERS accordingly. Make use of the new directory: target/s390x/tcg/ Signed-off-by: Claudio Fontana <cfontana@suse.de> Signed-off-by: Cho, Yu-Chen <acho@suse.com> Acked-by: David Hildenbrand <david@redhat.com> Acked-by: Cornelia Huck <cohuck@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20210707105324.23400-8-acho@suse.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
25 lines
829 B
C
25 lines
829 B
C
/*
|
|
* QEMU TCG support -- s390x specific functions.
|
|
*
|
|
* Copyright 2018 Red Hat, Inc.
|
|
*
|
|
* Authors:
|
|
* David Hildenbrand <david@redhat.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef TCG_S390X_H
|
|
#define TCG_S390X_H
|
|
|
|
void tcg_s390_tod_updated(CPUState *cs, run_on_cpu_data opaque);
|
|
void QEMU_NORETURN tcg_s390_program_interrupt(CPUS390XState *env,
|
|
uint32_t code, uintptr_t ra);
|
|
void QEMU_NORETURN tcg_s390_data_exception(CPUS390XState *env, uint32_t dxc,
|
|
uintptr_t ra);
|
|
void QEMU_NORETURN tcg_s390_vector_exception(CPUS390XState *env, uint32_t vxc,
|
|
uintptr_t ra);
|
|
|
|
#endif /* TCG_S390X_H */
|