From patchwork Tue Mar 5 00:32: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: 224861 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 2045E2C033D for ; Tue, 5 Mar 2013 11:33:55 +1100 (EST) Received: from localhost ([::1]:59277 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCfpJ-00057M-4v for incoming@patchwork.ozlabs.org; Mon, 04 Mar 2013 19:33:53 -0500 Received: from eggs.gnu.org ([208.118.235.92]:45803) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCfom-00054x-Gk for qemu-devel@nongnu.org; Mon, 04 Mar 2013 19:33:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UCfoj-00044E-Qp for qemu-devel@nongnu.org; Mon, 04 Mar 2013 19:33:20 -0500 Received: from mail-ie0-x22e.google.com ([2607:f8b0:4001:c03::22e]:42213) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCfoj-000449-MM for qemu-devel@nongnu.org; Mon, 04 Mar 2013 19:33:17 -0500 Received: by mail-ie0-f174.google.com with SMTP id k10so7045550iea.33 for ; Mon, 04 Mar 2013 16:33:17 -0800 (PST) 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 :in-reply-to:references; bh=FSXogqPxIHLdSLD5AfT0w3H+4jpWXazXeGmHpX9jYxA=; b=c/z+nEV1C+CLDS5Bz8hNE/FOFSg04XGaF8oAEYm+oFfSR8ThWTSf1gWSvbWpu3npqQ G1QKKABlm+gQsusbA5KZNstBRr1cMV7MW17OzXsJarGcphZdgVCvrwGLepUKHaspZ5lA KWiQpbSTpiFomIZk+B+sl7IQ+4PGkOZRha4tJjHp63QNUkbps5wAoYkG4wt1AsXxmQQS AsZeIqQLaJNuT8WbLzU76R24+gNSA/ZYnlzb8CGxzx2wq39ee0VnKQ/9fHmZfdP1dEIw D0GMCycOMJL52Go6pryOPcuyjDX5VmigOcDzu7zHd67EIw+SPF9JSB5khPkitF33SOB7 +WEA== X-Received: by 10.50.41.200 with SMTP id h8mr4272793igl.14.1362443597257; Mon, 04 Mar 2013 16:33:17 -0800 (PST) Received: from pebble.twiddle.net (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPS id ih1sm12171205igc.3.2013.03.04.16.33.15 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 04 Mar 2013 16:33:16 -0800 (PST) From: Richard Henderson To: qemu-devel@nongnu.org Date: Mon, 4 Mar 2013 16:32:44 -0800 Message-Id: <1362443590-28191-2-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1362443590-28191-1-git-send-email-rth@twiddle.net> References: <1362443590-28191-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:4001:c03::22e Cc: av1474@comtv.ru Subject: [Qemu-devel] [PATCH v2 01/27] disas: Disassemble all ppc insns for the host 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 Signed-off-by: Richard Henderson Reviewed-by: Aurelien Jarno --- disas.c | 1 + 1 file changed, 1 insertion(+) diff --git a/disas.c b/disas.c index a46faee..c0ac7ec 100644 --- a/disas.c +++ b/disas.c @@ -322,6 +322,7 @@ void disas(FILE *out, void *code, unsigned long size) s.info.mach = bfd_mach_x86_64; print_insn = print_insn_i386; #elif defined(_ARCH_PPC) + s.info.disassembler_options = (char *)"any"; print_insn = print_insn_ppc; #elif defined(__alpha__) print_insn = print_insn_alpha;