From patchwork Mon Jul 15 20:25:44 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 259265 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 928AC2C00FD for ; Tue, 16 Jul 2013 06:28:12 +1000 (EST) Received: from localhost ([::1]:38570 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UypNS-0005c1-FZ for incoming@patchwork.ozlabs.org; Mon, 15 Jul 2013 16:28:10 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54436) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UypLm-0003Jw-R0 for qemu-devel@nongnu.org; Mon, 15 Jul 2013 16:26:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UypLk-0000AI-JV for qemu-devel@nongnu.org; Mon, 15 Jul 2013 16:26:26 -0400 Received: from mail-qa0-x231.google.com ([2607:f8b0:400d:c00::231]:37657) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UypLk-0000A9-Cq for qemu-devel@nongnu.org; Mon, 15 Jul 2013 16:26:24 -0400 Received: by mail-qa0-f49.google.com with SMTP id hu16so1864020qab.1 for ; Mon, 15 Jul 2013 13:26:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=cwyt9klgA+7sVoLTfNnNjY5WqSvbtA9zN4LN3hHXnUo=; b=cGe8UwWdrzcc8JDte1uYQ5UYdhCE6vqkRY5rZsQDxiBn75B15fDyVQMcMNExb4eTeW aG1yChk7I+Su/vGPJUf1IcJafm91w40hPC++F7Bx6t7721/Oiz7eOQN2JMgVavIeRXvX KnfGwFmzwwJT5uSe9qfy+M70xCApqPyWHis4yMQZlfxWIh/ihex6egYCi1OiXCgI/6oD d0NBiZ3bEuAavbI3qMzDuJBwA7yvUGeNjNlFx8Ne9P1NKwEqWSSjO8rRdGtpS4naDw77 G6y1iKEutoUqg1zGOQZump0Y+9vSI1m25iVvmeYSQbAKZcEFS1j531bWSfp3jRuDwdiF kelA== X-Received: by 10.49.84.164 with SMTP id a4mr53050129qez.4.1373919984054; Mon, 15 Jul 2013 13:26:24 -0700 (PDT) Received: from pebble.com (ip-86-181-132-209.redhat.com. [209.132.181.86]) by mx.google.com with ESMTPSA id 4sm58675556qaq.6.2013.07.15.13.26.22 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 15 Jul 2013 13:26:23 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Mon, 15 Jul 2013 13:25:44 -0700 Message-Id: <1373919944-8521-4-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1373919944-8521-1-git-send-email-rth@twiddle.net> References: <1373919944-8521-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c00::231 Cc: aliguori@us.ibm.com Subject: [Qemu-devel] [PULL 3/3] tcg: Remove temp_buf 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 All targets have been converted to allocating space for temporaries on the stack. No need to allocate space within the CPU_COMMON block. Signed-off-by: Richard Henderson --- include/exec/cpu-defs.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/exec/cpu-defs.h b/include/exec/cpu-defs.h index 39094b3..5321171 100644 --- a/include/exec/cpu-defs.h +++ b/include/exec/cpu-defs.h @@ -154,8 +154,6 @@ typedef struct CPUWatchpoint { memory was accessed */ \ CPU_COMMON_TLB \ struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE]; \ - /* buffer for temporaries in the code generator */ \ - long temp_buf[CPU_TEMP_BUF_NLONGS]; \ \ int64_t icount_extra; /* Instructions until next timer event. */ \ /* Number of cycles left, with interrupt flag in high bit. \