From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.126]) by sourceware.org (Postfix) with ESMTPS id 8B2643857BB3 for ; Thu, 21 Sep 2023 10:12:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 8B2643857BB3 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=intel.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=intel.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1695291135; x=1726827135; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=BGkt4DllMSj9TqhvQNZHo03fVx9r5gbRaPXTITUtMQI=; b=nyhMZ4BDLuhFz5RZ5Hhte3wZO01xdZU0HZjrVn7uaZwvNnV2WUya1Ri+ NCsZVMTIOBTL5Dnds73XP4nukEjdn1F3inWJOA3OuY1/ciunWwujvkina SDACndtktSuqKJxSDnS73LxJcBHHfKZte+0N1uTzu0leA+jO112hY0iUR DQe3Le31fCJhkuwwgG0KlVe1XYtfgcKE3+irU9Rxojn0nwcUkX06Y6jQG uW1LYFoj9ySikjmUsTEqsLLfkvdqFJmiaBj7wXjvfos8wYpGcJBwEDP8Y lx5zddZuI/XtHutjrNE2R9PU6IK5bgac4Qvhqdq9GHCFUCPY6h9dDG9kf Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10839"; a="365533226" X-IronPort-AV: E=Sophos;i="6.03,165,1694761200"; d="scan'208";a="365533226" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Sep 2023 03:12:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10839"; a="812585780" X-IronPort-AV: E=Sophos;i="6.03,165,1694761200"; d="scan'208";a="812585780" Received: from scymds04.sc.intel.com ([10.82.73.238]) by fmsmga008.fm.intel.com with ESMTP; 21 Sep 2023 03:11:52 -0700 Received: from shgcc101.sh.intel.com (shgcc101.sh.intel.com [10.239.85.97]) by scymds04.sc.intel.com (Postfix) with ESMTP id A6642181F52B; Thu, 21 Sep 2023 03:11:43 -0700 (PDT) From: "Cui, Lili" To: binutils@sourceware.org Cc: jbeulich@suse.com, hongjiu.lu@intel.com, ccoutant@gmail.com Subject: [PATCH 0/6] [RFC] Support Intel APX EGPR (part II) Date: Thu, 21 Sep 2023 10:11:35 +0000 Message-Id: <20230921101141.2518818-1-lili.cui@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.1 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Add another 6 patches to support Intel APX EGPR. Cui, Lili (1): Disable pseudo prefix {rex2} for illegal instructions. H.J. Lu (3): x86-64: Add R_X86_64_CODE_4_GOTPCRELX gold: Handle R_X86_64_CODE_4_GOTPCRELX For Hu, Lin1 (1): Support {evex} pseudo prefix for decode evex promoted insns without egpr32. hjl-tools (1): Gold: Handle R_X86_64_CODE_4_GOTPC32_TLSDESC/R_X86_64_CODE_4_GOTTPOFF bfd/bfd-in2.h | 3 + bfd/elf64-x86-64.c | 196 ++- bfd/libbfd.h | 3 + bfd/reloc.c | 6 + elfcpp/x86_64.h | 14 +- gas/config/tc-i386.c | 42 +- gas/config/tc-i386.h | 6 +- .../gas/i386/ilp32/x86-64-localpic.d | 4 +- .../gas/i386/x86-64-apx_f-evex-intel.d | 1184 +++++++++++++++++ gas/testsuite/gas/i386/x86-64-apx_f-evex.d | 1184 +++++++++++++++++ gas/testsuite/gas/i386/x86-64-apx_f-evex.s | 1180 ++++++++++++++++ gas/testsuite/gas/i386/x86-64-gotpcrel.d | 12 + gas/testsuite/gas/i386/x86-64-gotpcrel.s | 19 + gas/testsuite/gas/i386/x86-64-gottpoff.d | 19 + gas/testsuite/gas/i386/x86-64-gottpoff.s | 15 + gas/testsuite/gas/i386/x86-64-localpic.d | 4 +- gas/testsuite/gas/i386/x86-64-localpic.s | 2 + gas/testsuite/gas/i386/x86-64-pseudos-bad.l | 36 + gas/testsuite/gas/i386/x86-64-pseudos-bad.s | 42 + gas/testsuite/gas/i386/x86-64-pseudos.d | 1 - gas/testsuite/gas/i386/x86-64-pseudos.s | 1 - gas/testsuite/gas/i386/x86-64-tlsdesc.d | 17 + gas/testsuite/gas/i386/x86-64-tlsdesc.s | 13 + gas/testsuite/gas/i386/x86-64.exp | 5 + gas/write.h | 3 +- gold/testsuite/Makefile.am | 11 + gold/testsuite/Makefile.in | 17 + gold/testsuite/x86_64_gd_to_le.s | 1 + gold/testsuite/x86_64_gd_to_le.sh | 1 + gold/testsuite/x86_64_ie_to_le.s | 17 + gold/testsuite/x86_64_ie_to_le.sh | 29 + gold/testsuite/x86_64_mov_to_lea.sh | 16 + gold/testsuite/x86_64_mov_to_lea1.s | 1 + gold/testsuite/x86_64_mov_to_lea2.s | 1 + gold/testsuite/x86_64_mov_to_lea3.s | 1 + gold/testsuite/x86_64_mov_to_lea4.s | 1 + gold/testsuite/x86_64_mov_to_lea5.s | 1 + gold/x86_64.cc | 193 ++- include/elf/x86-64.h | 12 +- ld/testsuite/ld-x86-64/apx-load1.s | 51 + ld/testsuite/ld-x86-64/apx-load1a.d | 54 + ld/testsuite/ld-x86-64/apx-load1b.d | 55 + ld/testsuite/ld-x86-64/apx-load1c.d | 47 + ld/testsuite/ld-x86-64/apx-load1d.d | 47 + ld/testsuite/ld-x86-64/tlsbindesc.dd | 49 + ld/testsuite/ld-x86-64/tlsbindesc.rd | 36 +- ld/testsuite/ld-x86-64/tlsbindesc.s | 39 + ld/testsuite/ld-x86-64/x86-64.exp | 4 + opcodes/i386-dis-evex-len.h | 2 +- opcodes/i386-dis-evex-mod.h | 24 +- opcodes/i386-dis-evex-prefix.h | 36 +- opcodes/i386-dis-evex-reg.h | 50 +- opcodes/i386-dis-evex-x86.h | 32 +- opcodes/i386-dis-evex.h | 20 +- opcodes/i386-dis.c | 53 +- opcodes/i386-opc.tbl | 70 +- 56 files changed, 4743 insertions(+), 239 deletions(-) create mode 100644 gas/testsuite/gas/i386/x86-64-apx_f-evex-intel.d create mode 100644 gas/testsuite/gas/i386/x86-64-apx_f-evex.d create mode 100644 gas/testsuite/gas/i386/x86-64-apx_f-evex.s create mode 100644 gas/testsuite/gas/i386/x86-64-gottpoff.d create mode 100644 gas/testsuite/gas/i386/x86-64-gottpoff.s create mode 100644 gas/testsuite/gas/i386/x86-64-tlsdesc.d create mode 100644 gas/testsuite/gas/i386/x86-64-tlsdesc.s create mode 100644 gold/testsuite/x86_64_ie_to_le.s create mode 100755 gold/testsuite/x86_64_ie_to_le.sh create mode 100644 ld/testsuite/ld-x86-64/apx-load1.s create mode 100644 ld/testsuite/ld-x86-64/apx-load1a.d create mode 100644 ld/testsuite/ld-x86-64/apx-load1b.d create mode 100644 ld/testsuite/ld-x86-64/apx-load1c.d create mode 100644 ld/testsuite/ld-x86-64/apx-load1d.d -- 2.25.1