From: Lluís <xscript@gmx.net>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH v2 3/4] trace-gen: [all] include "trace-helper.h" on all "helper.h" files
Date: Thu, 04 Nov 2010 23:37:18 +0100 [thread overview]
Message-ID: <20101104223718.16931.34576.stgit@ginnungagap.bsc.es> (raw)
In-Reply-To: <20101104223628.16931.21689.stgit@ginnungagap.bsc.es>
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
---
target-alpha/helper.h | 2 ++
target-arm/helper.h | 2 ++
target-cris/helper.h | 2 ++
target-i386/helper.h | 2 ++
target-m68k/helper.h | 2 ++
target-microblaze/helper.h | 2 ++
target-mips/helper.h | 2 ++
target-ppc/helper.h | 2 ++
target-sh4/helper.h | 2 ++
target-sparc/helper.h | 2 ++
10 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/target-alpha/helper.h b/target-alpha/helper.h
index ccf6a2a..030def3 100644
--- a/target-alpha/helper.h
+++ b/target-alpha/helper.h
@@ -123,4 +123,6 @@ DEF_HELPER_2(stl_c_raw, i64, i64, i64)
DEF_HELPER_2(stq_c_raw, i64, i64, i64)
#endif
+#include "trace-helper.h"
+
#include "def-helper.h"
diff --git a/target-arm/helper.h b/target-arm/helper.h
index 0d1bc47..d3ba5d9 100644
--- a/target-arm/helper.h
+++ b/target-arm/helper.h
@@ -447,4 +447,6 @@ DEF_HELPER_3(iwmmxt_muladdswl, i64, i64, i32, i32)
DEF_HELPER_2(set_teecr, void, env, i32)
+#include "trace-helper.h"
+
#include "def-helper.h"
diff --git a/target-cris/helper.h b/target-cris/helper.h
index 093063a..620a199 100644
--- a/target-cris/helper.h
+++ b/target-cris/helper.h
@@ -23,4 +23,6 @@ DEF_HELPER_FLAGS_2(evaluate_flags_move_2, TCG_CALL_PURE, i32, i32, i32)
DEF_HELPER_0(evaluate_flags, void)
DEF_HELPER_0(top_evaluate_flags, void)
+#include "trace-helper.h"
+
#include "def-helper.h"
diff --git a/target-i386/helper.h b/target-i386/helper.h
index 979d94e..94d7bd1 100644
--- a/target-i386/helper.h
+++ b/target-i386/helper.h
@@ -217,6 +217,8 @@ DEF_HELPER_2(rclq, tl, tl, tl)
DEF_HELPER_2(rcrq, tl, tl, tl)
#endif
+#include "trace-helper.h"
+
#if defined(CONFIG_BACKDOOR)
#include "backdoor/helper.h"
#endif
diff --git a/target-m68k/helper.h b/target-m68k/helper.h
index cb8a0c7..29e206b 100644
--- a/target-m68k/helper.h
+++ b/target-m68k/helper.h
@@ -51,4 +51,6 @@ DEF_HELPER_3(set_mac_extu, void, env, i32, i32)
DEF_HELPER_2(flush_flags, void, env, i32)
DEF_HELPER_1(raise_exception, void, i32)
+#include "trace-helper.h"
+
#include "def-helper.h"
diff --git a/target-microblaze/helper.h b/target-microblaze/helper.h
index 11ad1b6..3606614 100644
--- a/target-microblaze/helper.h
+++ b/target-microblaze/helper.h
@@ -34,4 +34,6 @@ DEF_HELPER_2(mmu_write, void, i32, i32)
DEF_HELPER_4(memalign, void, i32, i32, i32, i32)
+#include "trace-helper.h"
+
#include "def-helper.h"
diff --git a/target-mips/helper.h b/target-mips/helper.h
index cb13fb2..4855b67 100644
--- a/target-mips/helper.h
+++ b/target-mips/helper.h
@@ -287,4 +287,6 @@ DEF_HELPER_0(rdhwr_ccres, tl)
DEF_HELPER_1(pmon, void, int)
DEF_HELPER_0(wait, void)
+#include "trace-helper.h"
+
#include "def-helper.h"
diff --git a/target-ppc/helper.h b/target-ppc/helper.h
index 2bf9283..c76e733 100644
--- a/target-ppc/helper.h
+++ b/target-ppc/helper.h
@@ -401,4 +401,6 @@ DEF_HELPER_2(store_601_batl, void, i32, tl)
DEF_HELPER_2(store_601_batu, void, i32, tl)
#endif
+#include "trace-helper.h"
+
#include "def-helper.h"
diff --git a/target-sh4/helper.h b/target-sh4/helper.h
index 4b2fcdd..daec7cd 100644
--- a/target-sh4/helper.h
+++ b/target-sh4/helper.h
@@ -50,4 +50,6 @@ DEF_HELPER_1(fsqrt_DT, i64, i64)
DEF_HELPER_1(ftrc_FT, i32, i32)
DEF_HELPER_1(ftrc_DT, i32, i64)
+#include "trace-helper.h"
+
#include "def-helper.h"
diff --git a/target-sparc/helper.h b/target-sparc/helper.h
index 6f103e7..f2014b8 100644
--- a/target-sparc/helper.h
+++ b/target-sparc/helper.h
@@ -160,4 +160,6 @@ VIS_CMPHELPER(cmpne);
DEF_HELPER_0(compute_psr, void);
DEF_HELPER_0(compute_C_icc, i32);
+#include "trace-helper.h"
+
#include "def-helper.h"
next prev parent reply other threads:[~2010-11-04 22:37 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-04 22:36 [Qemu-devel] [RFC][PATCH v2 0/4] trace-gen: support for trace points in code-generation routines Lluís
2010-11-04 22:36 ` [Qemu-devel] [PATCH v2 1/4] trace-gen: gracefully handle TCG types in "trace-events" Lluís
2010-11-04 22:37 ` [Qemu-devel] [PATCH v2 2/4] trace-gen: auto-generate TCG helper routines for tracing Lluís
2010-11-04 22:37 ` Lluís [this message]
2010-11-04 22:37 ` [Qemu-devel] [PATCH v2 4/4] trace-gen: auto-generate wrappers to call TCG trace helpers Lluís
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20101104223718.16931.34576.stgit@ginnungagap.bsc.es \
--to=xscript@gmx.net \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).