unicorn/qemu/util
Markus Armbruster 97ad660361
error: On abort, report where the error was created
This is particularly useful when we abort in error_propagate(),
because there the stack backtrace doesn't lead to where the error was
created. Looks like this:

Unexpected error in parse_block_error_action() at .../qemu/blockdev.c:322:
qemu-system-x86_64: -drive if=none,werror=foo: 'foo' invalid write error action
Aborted (core dumped)

Note: to get this example output, I monkey-patched drive_new() to pass
&error_abort to blockdev_init().

To keep the error handling boiler plate from growing even more, all
error_setFOO() become macros expanding into error_setFOO_internal()
with additional __FILE__, __LINE__, __func__ arguments. Not exactly
pretty, but it works.

The macro trickery breaks down when you take the address of an
error_setFOO(). Fortunately, we do that in just one place: qemu-ga's
Windows VSS provider and requester DLL wants to call
error_setg_win32() through a function pointer "to avoid linking glib
to the DLL". Use error_setg_win32_internal() there. The use of the
function pointer is already wrapped in a macro, so the churn isn't
bad.

Code size increases by some 35KiB for me (0.7%). Tolerable. Could be
less if we passed relative rather than absolute source file names to
the compiler, or forwent reporting __func__.

Backports commit 1e9b65bb1bad51735cab6c861c29b592dccabf0e from qemu
2018-02-17 15:23:37 -05:00
..
bitmap.c bitmap: add atomic test and clear 2018-02-13 10:02:12 -05:00
bitops.c Automated leading tab to spaces conversion. 2017-01-21 12:28:22 +11:00
crc32c.c
cutils.c Remove unused qemu_fls function 2018-02-17 15:23:35 -05:00
error.c error: On abort, report where the error was created 2018-02-17 15:23:37 -05:00
getauxval.c
host-utils.c platform.h move #3 2017-01-21 00:13:21 +11:00
Makefile.objs crypto: move built-in AES implementation into crypto/ 2018-02-17 15:23:17 -05:00
module.c
oslib-posix.c fix conflicts 2017-01-21 11:06:05 +08:00
oslib-win32.c Arm support ported. (#736) 2017-01-23 23:30:57 +08:00
qemu-error.c This code should now build the x86_x64-softmmu part 2. 2017-01-19 22:50:28 +11:00
qemu-thread-posix.c platform.h move #3 2017-01-21 00:13:21 +11:00
qemu-thread-win32.c Some more little edits to prepare for pull request. 2017-01-20 22:46:32 +11:00
qemu-timer-common.c cleanup qemu/util/qemu-timer-common.c 2017-01-21 14:55:35 +08:00