From patchwork Mon Sep 10 11:34:06 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 182847 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 946892C0086 for ; Mon, 10 Sep 2012 21:34:42 +1000 (EST) Received: from localhost ([::1]:50961 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB2GG-00046v-IQ for incoming@patchwork.ozlabs.org; Mon, 10 Sep 2012 07:34:40 -0400 Received: from eggs.gnu.org ([208.118.235.92]:56573) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB2G3-00045f-2I for qemu-devel@nongnu.org; Mon, 10 Sep 2012 07:34:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TB2Fx-00072C-2t for qemu-devel@nongnu.org; Mon, 10 Sep 2012 07:34:26 -0400 Received: from hall.aurel32.net ([88.191.126.93]:47135) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB2Fw-00071b-Sk for qemu-devel@nongnu.org; Mon, 10 Sep 2012 07:34:20 -0400 Received: from [46.27.32.65] (helo=ohm.aurel32.net) by hall.aurel32.net with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1TB2Fn-0000QM-AI; Mon, 10 Sep 2012 13:34:11 +0200 Received: from aurel32 by ohm.aurel32.net with local (Exim 4.80) (envelope-from ) id 1TB2Fl-0006e8-4R; Mon, 10 Sep 2012 13:34:09 +0200 From: Aurelien Jarno To: qemu-devel@nongnu.org Date: Mon, 10 Sep 2012 13:34:06 +0200 Message-Id: <1347276847-25377-1-git-send-email-aurelien@aurel32.net> X-Mailer: git-send-email 1.7.10.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 88.191.126.93 Cc: Blue Swirl , Aurelien Jarno Subject: [Qemu-devel] [PATCH 1/2] tcg/optimize: fix end of basic bloc detection X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Commit e31b0a7c050711884ad570fe73df806520953618 fixed copy propagation on 32-bit host by restricting the copy between different types. This was the wrong fix. The real problem is that the all temps states should be reset at the end of a basic bloc. This was done by adding such operations in the switch, but brcond2 was forgotten (that's why the crash was only observed on 32-bit hosts). Fix that by looking at the TCG_OPF_BB_END instead. Cc: Blue Swirl Signed-off-by: Aurelien Jarno --- tcg/optimize.c | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/tcg/optimize.c b/tcg/optimize.c index 9c65474..64aa35b 100644 --- a/tcg/optimize.c +++ b/tcg/optimize.c @@ -487,22 +487,17 @@ static TCGArg *tcg_constant_folding(TCGContext *s, uint16_t *tcg_opc_ptr, i--; } break; - case INDEX_op_set_label: - case INDEX_op_jmp: - case INDEX_op_br: - CASE_OP_32_64(brcond): - memset(temps, 0, nb_temps * sizeof(struct tcg_temp_info)); - for (i = 0; i < def->nb_args; i++) { - *gen_args = *args; - args++; - gen_args++; - } - break; default: /* Default case: we do know nothing about operation so no - propagation is done. We only trash output args. */ - for (i = 0; i < def->nb_oargs; i++) { - reset_temp(args[i], nb_temps, nb_globals); + propagation is done. We trash everything if the operation + is the end of a basic block, otherwise we only trash the + output args. */ + if (def->flags & TCG_OPF_BB_END) { + memset(temps, 0, nb_temps * sizeof(struct tcg_temp_info)); + } else { + for (i = 0; i < def->nb_oargs; i++) { + reset_temp(args[i], nb_temps, nb_globals); + } } for (i = 0; i < def->nb_args; i++) { gen_args[i] = args[i];