From patchwork Fri Apr 19 08:27:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 237871 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 6774D2C01CA for ; Fri, 19 Apr 2013 18:28:22 +1000 (EST) Received: from localhost ([::1]:51044 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UT6g8-0005qN-Jo for incoming@patchwork.ozlabs.org; Fri, 19 Apr 2013 04:28:20 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53207) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UT6fj-0005jL-Hq for qemu-devel@nongnu.org; Fri, 19 Apr 2013 04:27:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UT6fg-0006Ii-Hw for qemu-devel@nongnu.org; Fri, 19 Apr 2013 04:27:55 -0400 Received: from mail-ee0-f44.google.com ([74.125.83.44]:40182) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UT6fg-0006I8-Bq for qemu-devel@nongnu.org; Fri, 19 Apr 2013 04:27:52 -0400 Received: by mail-ee0-f44.google.com with SMTP id c41so1705258eek.31 for ; Fri, 19 Apr 2013 01:27:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer; bh=c7B1s+4SjnxFq9Qcxq171TNEAGOcKJZzKKnYXHOQ2B4=; b=QlcOYVgoWZLu513SW+F19/QK8JKDWe0XCYzTg7ufNm6gusOAI+dGJEAos6CRLkIuQb I1DhXNt5FrmKW4KAOIfoZQym2NPae3fTFQlXQDsFd7HRlpnxI4utuaBcvAB1TPurVDFt 9hvyNerV8xrrZMc/mLboCj1eleDlaKaxI4aFL838dpO1VRqmCmKfRqTvYPbkmYi6QfPj gbxMlsebsH9JDkYwWphIFBRIXvCtlmMLDYzlWEhTn0bp7/PCY1hNu6A9Ker6kpX0gTwS xTr2lvxRoPBgyNeL9b/Ii2uHb+SqnmyElKQXyvPYoMTEL3EakAD5xFJOKrdrhUToCYt3 rvBQ== X-Received: by 10.14.39.5 with SMTP id c5mr39732785eeb.27.1366360071590; Fri, 19 Apr 2013 01:27:51 -0700 (PDT) Received: from pebble.mshome.net (144.Red-212-170-167.staticIP.rima-tde.net. [212.170.167.144]) by mx.google.com with ESMTPS id n48sm21211380eeg.12.2013.04.19.01.27.50 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 19 Apr 2013 01:27:51 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Fri, 19 Apr 2013 10:27:46 +0200 Message-Id: <1366360066-3373-1-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.8.1.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 74.125.83.44 Cc: aurelien@aurel32.net Subject: [Qemu-devel] [PATCH] 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 --- This depends on my tcg-arm patch set that's still outstanding. r~ --- 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 d8c64e9..41f5b32 100644 --- a/include/exec/cpu-defs.h +++ b/include/exec/cpu-defs.h @@ -152,8 +152,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. \