From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NSyxx-0004oG-MC for qemu-devel@nongnu.org; Thu, 07 Jan 2010 15:28:21 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NSyxw-0004mF-8n for qemu-devel@nongnu.org; Thu, 07 Jan 2010 15:28:20 -0500 Received: from [199.232.76.173] (port=38275 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSyxw-0004lz-2a for qemu-devel@nongnu.org; Thu, 07 Jan 2010 15:28:20 -0500 Received: from fg-out-1718.google.com ([72.14.220.156]:43162) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NSyxu-000123-4Q for qemu-devel@nongnu.org; Thu, 07 Jan 2010 15:28:18 -0500 Received: by fg-out-1718.google.com with SMTP id e12so1181694fga.10 for ; Thu, 07 Jan 2010 12:28:07 -0800 (PST) Received: from localhost ([127.0.0.1] helo=[192.168.1.2]) by skyserv with esmtp (Exim 4.71) (envelope-from ) id 1NSyxh-0004Pm-Hx for qemu-devel@nongnu.org; Thu, 07 Jan 2010 23:28:05 +0300 From: "Igor V. Kovalenko" Date: Thu, 07 Jan 2010 23:28:05 +0300 Message-ID: <20100107202805.16653.45299.stgit@skyserv> In-Reply-To: <20100107201810.16653.85771.stgit@skyserv> References: <20100107201810.16653.85771.stgit@skyserv> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 3/9] sparc64: add PIL to cpu state dump List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org From: Igor V. Kovalenko Signed-off-by: Igor V. Kovalenko --- target-sparc/helper.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/target-sparc/helper.c b/target-sparc/helper.c index a06923a..e801474 100644 --- a/target-sparc/helper.c +++ b/target-sparc/helper.c @@ -1452,6 +1452,7 @@ void cpu_dump_state(CPUState *env, FILE *f, #ifdef TARGET_SPARC64 cpu_fprintf(f, "pstate: 0x%08x ccr: 0x%02x asi: 0x%02x tl: %d fprs: %d\n", env->pstate, GET_CCR(env), env->asi, env->tl, env->fprs); + cpu_fprintf(f, "pil=%x\n", env->psrpil); cpu_fprintf(f, "cansave: %d canrestore: %d otherwin: %d wstate %d " "cleanwin %d cwp %d\n", env->cansave, env->canrestore, env->otherwin, env->wstate,