From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752191AbcGULW5 (ORCPT ); Thu, 21 Jul 2016 07:22:57 -0400 Received: from mga02.intel.com ([134.134.136.20]:26973 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751592AbcGULWz (ORCPT ); Thu, 21 Jul 2016 07:22:55 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,399,1464678000"; d="scan'208";a="1011182523" Subject: Re: [PATCH V2 0/4] x86/insn: perf tools: Add AVX-512 support to the instruction decoder To: Masami Hiramatsu References: <1469003437-32706-1-git-send-email-adrian.hunter@intel.com> <20160721031127.97f0f3bb0cab21d9b14896ef@kernel.org> Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Jiri Olsa , Dan Williams , Ingo Molnar , "H. Peter Anvin" , Thomas Gleixner , Andy Lutomirski , X86 ML From: Adrian Hunter Organization: Intel Finland Oy, Registered Address: PL 281, 00181 Helsinki, Business Identity Code: 0357606 - 4, Domiciled in Helsinki Message-ID: <5790AF8A.1000006@intel.com> Date: Thu, 21 Jul 2016 14:18:34 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0 MIME-Version: 1.0 In-Reply-To: <20160721031127.97f0f3bb0cab21d9b14896ef@kernel.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 20/07/16 21:11, Masami Hiramatsu wrote: > On Wed, 20 Jul 2016 11:30:33 +0300 > Adrian Hunter wrote: > >> Hi >> >> Here are patches to add support for Intel's AVX-512 instructions to the >> instruction decoder. Also there is a patch to fix vcvtph2ps. >> >> AVX-512 instructions are documented in Intel Architecture Instruction Set >> Extensions Programming Reference (February 2016). >> >> These patches do not conflict with Dan's removal of pcommit. >> >> Changes in V2: >> >> Split patches: separate out perf tools and new instructions test. >> Amend decription of 'evo' annotation in x86-opcode-map.txt > > Thanks for updating! > > Acked-by: Masami Hiramatsu > > for the series :) > > Thank you, Thanks to Masami's quick ack's, I think it would be reasonable to queue these patches for v4.8 unless anyone objects. Arnaldo, if you are willing, please consider queuing these. > >> >> >> Adrian Hunter (4): >> x86/insn: perf tools: Fix vcvtph2ps instruction decoding >> x86/insn: Add AVX-512 support to the instruction decoder >> perf tools: Add AVX-512 support to the instruction decoder used by Intel PT >> perf tools: Add AVX-512 instructions to the new instructions test >> >> arch/x86/include/asm/inat.h | 17 +- >> arch/x86/include/asm/insn.h | 12 +- >> arch/x86/lib/insn.c | 18 +- >> arch/x86/lib/x86-opcode-map.txt | 263 ++- >> arch/x86/tools/gen-insn-attr-x86.awk | 11 +- >> tools/perf/arch/x86/tests/insn-x86-dat-32.c | 1018 ++++++++++- >> tools/perf/arch/x86/tests/insn-x86-dat-64.c | 940 +++++++++- >> tools/perf/arch/x86/tests/insn-x86-dat-src.c | 1789 ++++++++++++++++++++ >> .../util/intel-pt-decoder/gen-insn-attr-x86.awk | 11 +- >> tools/perf/util/intel-pt-decoder/inat.h | 17 +- >> tools/perf/util/intel-pt-decoder/insn.c | 18 +- >> tools/perf/util/intel-pt-decoder/insn.h | 12 +- >> .../perf/util/intel-pt-decoder/x86-opcode-map.txt | 263 ++- >> 13 files changed, 4179 insertions(+), 210 deletions(-) >> >> >> Regards >> Adrian > >