mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
35dffc5681
Enhance the EXCP_DUMP() macro to print out the failing program too. During debugging it's sometimes hard to track down the actual failing program if you are e.g. building a whole debian package. Signed-off-by: Helge Deller <deller@gmx.de> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220918194555.83535-5-deller@gmx.de> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
40 lines
1.7 KiB
C
40 lines
1.7 KiB
C
/*
|
|
* qemu user cpu loop
|
|
*
|
|
* Copyright (c) 2003-2008 Fabrice Bellard
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef CPU_LOOP_COMMON_H
|
|
#define CPU_LOOP_COMMON_H
|
|
|
|
#include "exec/log.h"
|
|
#include "special-errno.h"
|
|
|
|
#define EXCP_DUMP(env, fmt, ...) \
|
|
do { \
|
|
CPUState *cs = env_cpu(env); \
|
|
fprintf(stderr, fmt , ## __VA_ARGS__); \
|
|
fprintf(stderr, "Failing executable: %s\n", exec_path); \
|
|
cpu_dump_state(cs, stderr, 0); \
|
|
if (qemu_log_separate()) { \
|
|
qemu_log(fmt, ## __VA_ARGS__); \
|
|
qemu_log("Failing executable: %s\n", exec_path); \
|
|
log_cpu_state(cs, 0); \
|
|
} \
|
|
} while (0)
|
|
|
|
void target_cpu_copy_regs(CPUArchState *env, struct target_pt_regs *regs);
|
|
#endif
|