From 465830fbd9be22995b34d7b3f8cd35572e1f8a36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Vilanova?= Date: Fri, 30 May 2014 14:12:13 +0200 Subject: trace: [tcg] Generate TCG tracing routines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Generate header "trace/generated-tcg-tracers.h" with the necessary routines for tracing events in guest code: * trace_${event}_tcg Convenience wrapper that calls the translation-time tracer 'trace_${event}_trans', and calls 'gen_helper_trace_${event}_exec to generate the TCG code to later trace the event at execution time. Signed-off-by: LluĂ­s Vilanova Signed-off-by: Stefan Hajnoczi --- include/trace-tcg.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 include/trace-tcg.h (limited to 'include/trace-tcg.h') diff --git a/include/trace-tcg.h b/include/trace-tcg.h new file mode 100644 index 0000000..6f6bdbb --- /dev/null +++ b/include/trace-tcg.h @@ -0,0 +1,7 @@ +#ifndef TRACE_TCG_H +#define TRACE_TCG_H + +#include "trace/generated-tcg-tracers.h" +#include "trace/generated-events.h" + +#endif /* TRACE_TCG_H */ -- cgit v1.1