2014-04-08 07:31:41 +02:00
|
|
|
/* Helper file for declaring TCG helper functions.
|
|
|
|
This one expands prototypes for the helper functions. */
|
|
|
|
|
|
|
|
#ifndef HELPER_PROTO_H
|
2016-06-29 15:29:06 +02:00
|
|
|
#define HELPER_PROTO_H
|
2014-04-08 07:31:41 +02:00
|
|
|
|
2016-06-22 19:11:19 +02:00
|
|
|
#include "exec/helper-head.h"
|
2014-04-08 07:31:41 +02:00
|
|
|
|
|
|
|
#define DEF_HELPER_FLAGS_0(name, flags, ret) \
|
|
|
|
dh_ctype(ret) HELPER(name) (void);
|
|
|
|
|
|
|
|
#define DEF_HELPER_FLAGS_1(name, flags, ret, t1) \
|
|
|
|
dh_ctype(ret) HELPER(name) (dh_ctype(t1));
|
|
|
|
|
|
|
|
#define DEF_HELPER_FLAGS_2(name, flags, ret, t1, t2) \
|
|
|
|
dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2));
|
|
|
|
|
|
|
|
#define DEF_HELPER_FLAGS_3(name, flags, ret, t1, t2, t3) \
|
|
|
|
dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2), dh_ctype(t3));
|
|
|
|
|
|
|
|
#define DEF_HELPER_FLAGS_4(name, flags, ret, t1, t2, t3, t4) \
|
|
|
|
dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2), dh_ctype(t3), \
|
|
|
|
dh_ctype(t4));
|
|
|
|
|
|
|
|
#define DEF_HELPER_FLAGS_5(name, flags, ret, t1, t2, t3, t4, t5) \
|
|
|
|
dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2), dh_ctype(t3), \
|
|
|
|
dh_ctype(t4), dh_ctype(t5));
|
|
|
|
|
2017-12-13 23:52:57 +01:00
|
|
|
#define DEF_HELPER_FLAGS_6(name, flags, ret, t1, t2, t3, t4, t5, t6) \
|
|
|
|
dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2), dh_ctype(t3), \
|
|
|
|
dh_ctype(t4), dh_ctype(t5), dh_ctype(t6));
|
|
|
|
|
2020-02-05 23:41:50 +01:00
|
|
|
#define DEF_HELPER_FLAGS_7(name, flags, ret, t1, t2, t3, t4, t5, t6, t7) \
|
|
|
|
dh_ctype(ret) HELPER(name) (dh_ctype(t1), dh_ctype(t2), dh_ctype(t3), \
|
|
|
|
dh_ctype(t4), dh_ctype(t5), dh_ctype(t6), \
|
|
|
|
dh_ctype(t7));
|
|
|
|
|
2020-12-15 18:47:59 +01:00
|
|
|
#define IN_HELPER_PROTO
|
|
|
|
|
2014-04-08 07:31:41 +02:00
|
|
|
#include "helper.h"
|
2014-05-30 14:12:07 +02:00
|
|
|
#include "trace/generated-helpers.h"
|
2014-04-08 08:08:47 +02:00
|
|
|
#include "tcg-runtime.h"
|
plugin-gen: add module for TCG-related code
We first inject empty instrumentation from translator_loop.
After translation, we go through the plugins to see what
they want to register for, filling in the empty instrumentation.
If if turns out that some instrumentation remains unused, we
remove it.
This approach supports the following features:
- Inlining TCG code for simple operations. Note that we do not
export TCG ops to plugins. Instead, we give them a C API to
insert inlined ops. So far we only support adding an immediate
to a u64, e.g. to count events.
- "Direct" callbacks. These are callbacks that do not go via
a helper. Instead, the helper is defined at run-time, so that
the plugin code is directly called from TCG. This makes direct
callbacks as efficient as possible; they are therefore used
for very frequent events, e.g. memory callbacks.
- Passing the host address to memory callbacks. Most of this
is implemented in a later patch though.
- Instrumentation of memory accesses performed from helpers.
See the corresponding comment, as well as a later patch.
Signed-off-by: Emilio G. Cota <cota@braap.org>
[AJB: add alloc_tcg_plugin_context, use glib, rm hwaddr]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
2018-12-07 21:33:56 +01:00
|
|
|
#include "plugin-helpers.h"
|
2014-04-08 07:31:41 +02:00
|
|
|
|
2020-12-15 18:47:59 +01:00
|
|
|
#undef IN_HELPER_PROTO
|
|
|
|
|
2014-04-08 07:31:41 +02:00
|
|
|
#undef DEF_HELPER_FLAGS_0
|
|
|
|
#undef DEF_HELPER_FLAGS_1
|
|
|
|
#undef DEF_HELPER_FLAGS_2
|
|
|
|
#undef DEF_HELPER_FLAGS_3
|
|
|
|
#undef DEF_HELPER_FLAGS_4
|
|
|
|
#undef DEF_HELPER_FLAGS_5
|
2017-12-13 23:52:57 +01:00
|
|
|
#undef DEF_HELPER_FLAGS_6
|
2020-02-05 23:41:50 +01:00
|
|
|
#undef DEF_HELPER_FLAGS_7
|
2014-04-08 07:31:41 +02:00
|
|
|
|
|
|
|
#endif /* HELPER_PROTO_H */
|