From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42370) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VF9UH-0003T3-R2 for qemu-devel@nongnu.org; Thu, 29 Aug 2013 17:10:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VF9UB-0001rM-EV for qemu-devel@nongnu.org; Thu, 29 Aug 2013 17:10:41 -0400 Received: from mail-qe0-x231.google.com ([2607:f8b0:400d:c02::231]:51112) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VF9UA-0001qb-Pt for qemu-devel@nongnu.org; Thu, 29 Aug 2013 17:10:35 -0400 Received: by mail-qe0-f49.google.com with SMTP id k5so519002qej.8 for ; Thu, 29 Aug 2013 14:10:34 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Thu, 29 Aug 2013 14:09:36 -0700 Message-Id: <1377810586-19931-9-git-send-email-rth@twiddle.net> In-Reply-To: <1377810586-19931-1-git-send-email-rth@twiddle.net> References: <1377810586-19931-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH v2 08/18] tcg: Change frame pointer offsets to intptr_t List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aurelien@aurel32.net Reviewed-by: Aurelien Jarno Signed-off-by: Richard Henderson --- tcg/tcg.c | 5 ++--- tcg/tcg.h | 9 ++++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/tcg/tcg.c b/tcg/tcg.c index eac8bd2..f6fa226 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -306,8 +306,7 @@ void tcg_prologue_init(TCGContext *s) #endif } -void tcg_set_frame(TCGContext *s, int reg, - tcg_target_long start, tcg_target_long size) +void tcg_set_frame(TCGContext *s, int reg, intptr_t start, intptr_t size) { s->frame_start = start; s->frame_end = start + size; @@ -1589,7 +1588,7 @@ static void temp_allocate_frame(TCGContext *s, int temp) ts->mem_offset = s->current_frame_offset; ts->mem_reg = s->frame_reg; ts->mem_allocated = 1; - s->current_frame_offset += (tcg_target_long)sizeof(tcg_target_long); + s->current_frame_offset += sizeof(tcg_target_long); } /* sync register 'reg' by saving it to the corresponding temporary */ diff --git a/tcg/tcg.h b/tcg/tcg.h index 98b487e..9a267ca 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -433,9 +433,9 @@ struct TCGContext { into account fixed registers */ int reg_to_temp[TCG_TARGET_NB_REGS]; TCGRegSet reserved_regs; - tcg_target_long current_frame_offset; - tcg_target_long frame_start; - tcg_target_long frame_end; + intptr_t current_frame_offset; + intptr_t frame_start; + intptr_t frame_end; int frame_reg; uint8_t *code_ptr; @@ -528,8 +528,7 @@ void tcg_func_start(TCGContext *s); int tcg_gen_code(TCGContext *s, uint8_t *gen_code_buf); int tcg_gen_code_search_pc(TCGContext *s, uint8_t *gen_code_buf, long offset); -void tcg_set_frame(TCGContext *s, int reg, - tcg_target_long start, tcg_target_long size); +void tcg_set_frame(TCGContext *s, int reg, intptr_t start, intptr_t size); TCGv_i32 tcg_global_reg_new_i32(int reg, const char *name); TCGv_i32 tcg_global_mem_new_i32(int reg, tcg_target_long offset, -- 1.8.1.4