From patchwork Tue Feb 11 00:40:02 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Taylor Simpson X-Patchwork-Id: 11374385 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 7A68F921 for ; Tue, 11 Feb 2020 00:45:51 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 51CC820733 for ; Tue, 11 Feb 2020 00:45:51 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=quicinc.com header.i=@quicinc.com header.b="KuJygL6W" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 51CC820733 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=quicinc.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Received: from localhost ([::1]:41624 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1JgU-0001s4-D2 for patchwork-qemu-devel@patchwork.kernel.org; Mon, 10 Feb 2020 19:45:50 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:60410) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1Jc5-0001Fa-9l for qemu-devel@nongnu.org; Mon, 10 Feb 2020 19:41:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1Jc2-00060S-W0 for qemu-devel@nongnu.org; Mon, 10 Feb 2020 19:41:17 -0500 Received: from alexa-out-sd-02.qualcomm.com ([199.106.114.39]:59203) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j1Jc2-0004tJ-HX for qemu-devel@nongnu.org; Mon, 10 Feb 2020 19:41:14 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=quicinc.com; i=@quicinc.com; q=dns/txt; s=qcdkim; t=1581381674; x=1612917674; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7J02XIJDUNa61CDvaSOSBnTQmnONmNE19JbMqcSXgss=; b=KuJygL6WY8Hk/Ubbs8qmv/xZu6DG+OCmjCazzYjhzkTK2/12LRCo+lNQ DMkb5oQSIINIZeSHb9uHHsARvL8ZRl/Uy6nqfxuhebh6YJs7YDLsfI5ZB D9+45j7LhQkYnfFhKl0RFLq6PIttgOTYp5nC8kO3yhIn0z10OOkXKVvll A=; Received: from unknown (HELO ironmsg02-sd.qualcomm.com) ([10.53.140.142]) by alexa-out-sd-02.qualcomm.com with ESMTP; 10 Feb 2020 16:41:00 -0800 Received: from vu-tsimpson-aus.qualcomm.com (HELO vu-tsimpson1-aus.qualcomm.com) ([10.222.150.1]) by ironmsg02-sd.qualcomm.com with ESMTP; 10 Feb 2020 16:40:59 -0800 Received: by vu-tsimpson1-aus.qualcomm.com (Postfix, from userid 47164) id C1BCC1BBA; Mon, 10 Feb 2020 18:40:59 -0600 (CST) From: Taylor Simpson To: qemu-devel@nongnu.org Subject: [RFC PATCH 24/66] Hexagon generator phase 2 - op_attribs_generated.h Date: Mon, 10 Feb 2020 18:40:02 -0600 Message-Id: <1581381644-13678-25-git-send-email-tsimpson@quicinc.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1581381644-13678-1-git-send-email-tsimpson@quicinc.com> References: <1581381644-13678-1-git-send-email-tsimpson@quicinc.com> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x [fuzzy] X-Received-From: 199.106.114.39 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: riku.voipio@iki.fi, richard.henderson@linaro.org, laurent@vivier.eu, Taylor Simpson , philmd@redhat.com, aleksandar.m.mail@gmail.com Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" Lists all the attributes associated with each instruction Signed-off-by: Taylor Simpson --- target/hexagon/do_qemu.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/target/hexagon/do_qemu.py b/target/hexagon/do_qemu.py index 5439964..f297931 100755 --- a/target/hexagon/do_qemu.py +++ b/target/hexagon/do_qemu.py @@ -797,3 +797,16 @@ realf.write(f.getvalue()) realf.close() f.close() +## +## Generate the op_attribs_generated.h file +## Lists all the attributes associated with each instruction +## +f = StringIO() +for tag in tags: + f.write('OP_ATTRIB(%s,ATTRIBS(%s))\n' % \ + (tag,string.join(sorted(attribdict[tag]),","))) +realf = open('op_attribs_generated.h', 'wt') +realf.write(f.getvalue()) +realf.close() +f.close() +