aboutsummaryrefslogtreecommitdiff
path: root/risu_reginfo_m68k.h
AgeCommit message (Collapse)Author
2017-06-20all: fix up code consistencyAlex Bennée
This is pretty much a mechanical change where I ran: indent -kr Across all the files and then fixed up all but a few violations of: ../../qemu.git/scripts/checkpatch.pl -f *.c *.h > checkpatch.out Along with heavy use of M-x untabify to make everything consistent. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-id: 20170619104655.31104-4-alex.bennee@linaro.org [PMM: some bits of indent in risu_reginfo_arm.c were not right: fixed] Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2017-02-24Make reginfo_{init,is_eq,dump,dump_mismatch} official per-CPU APIPeter Maydell
All CPUs now implement reginfo_{init,is_eq,dump,dump_mismatch} with the same API and semantics. Make this official by moving the prototypes into risu.h. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2017-02-24m68k: Drop unused ucontext_t* argument to reginfo_is_eq()Peter Maydell
Drop the ucontext*t argument to reginfo_is_eq(); we don't use it. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2017-02-24ppc64le, m68k: Make reginfo_dump() API match arm, aarch64Peter Maydell
Make the reginfo_dump() API for ppc64le and m68k match the one used for ARM and AArch64, which takes a FILE*, doesn't have a flag for is_master, and returns a success indication. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2017-02-10m68k: implement server and client sideLaurent Vivier
This also adds the basic test file and the configuration update. This implementation can only test instructions with values in register and no memory access. Signed-off-by: Laurent Vivier <laurent@vivier.eu> Message-id: 20170207183356.17840-3-laurent@vivier.eu Signed-off-by: Peter Maydell <peter.maydell@linaro.org>