]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tcg: Introduce byte pointer arithmetic helpers
authorRichard Henderson <rth@twiddle.net>
Mon, 31 Mar 2014 21:27:27 +0000 (14:27 -0700)
committerRichard Henderson <rth@twiddle.net>
Mon, 12 May 2014 17:03:04 +0000 (10:03 -0700)
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
tcg/tcg.h

index a6a2d06080f847606438ce43dd8cd5b41241bbfc..d38c92d636c399b2c31fa0c00e5de8c7efbf3aba 100644 (file)
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -723,6 +723,51 @@ TCGv_i64 tcg_const_i64(int64_t val);
 TCGv_i32 tcg_const_local_i32(int32_t val);
 TCGv_i64 tcg_const_local_i64(int64_t val);
 
+/**
+ * tcg_ptr_byte_diff
+ * @a, @b: addresses to be differenced
+ *
+ * There are many places within the TCG backends where we need a byte
+ * difference between two pointers.  While this can be accomplished
+ * with local casting, it's easy to get wrong -- especially if one is
+ * concerned with the signedness of the result.
+ *
+ * This version relies on GCC's void pointer arithmetic to get the
+ * correct result.
+ */
+
+static inline ptrdiff_t tcg_ptr_byte_diff(void *a, void *b)
+{
+    return a - b;
+}
+
+/**
+ * tcg_pcrel_diff
+ * @s: the tcg context
+ * @target: address of the target
+ *
+ * Produce a pc-relative difference, from the current code_ptr
+ * to the destination address.
+ */
+
+static inline ptrdiff_t tcg_pcrel_diff(TCGContext *s, void *target)
+{
+    return tcg_ptr_byte_diff(target, s->code_ptr);
+}
+
+/**
+ * tcg_current_code_size
+ * @s: the tcg context
+ *
+ * Compute the current code size within the translation block.
+ * This is used to fill in qemu's data structures for goto_tb.
+ */
+
+static inline size_t tcg_current_code_size(TCGContext *s)
+{
+    return tcg_ptr_byte_diff(s->code_ptr, s->code_buf);
+}
+
 /**
  * tcg_qemu_tb_exec:
  * @env: CPUArchState * for the CPU