| Message ID | 20260507194615.943267-1-simon.marchi@efficios.com |
|---|---|
| Headers |
Return-Path: <binutils-bounces~patchwork=sourceware.org@sourceware.org> X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from vm01.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 46E024BA23E6 for <patchwork@sourceware.org>; Thu, 7 May 2026 19:46:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 46E024BA23E6 X-Original-To: binutils@sourceware.org Delivered-To: binutils@sourceware.org Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 68FC14BA2E15 for <binutils@sourceware.org>; Thu, 7 May 2026 19:46:18 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 68FC14BA2E15 Authentication-Results: sourceware.org; dmarc=fail (p=none dis=none) header.from=efficios.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=efficios.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 68FC14BA2E15 Authentication-Results: sourceware.org; arc=none smtp.remote-ip=158.69.221.121 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1778183178; cv=none; b=ggSrVLO+kEcdOPycgmbNn3O8NQRBTYkPSQpz5AlTZ+1BjltauGAzVUT2CKEMTh5kGLnzR9pdfNGZK8cC6zN4Z+keOrYvn4cR28duZZinfAOxi2C+vBUfi8UIeZHd8suGx52YOGQZ5FL7cNIwXcLRGhgPJtrv5+AppAMD2eyRaV0= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1778183178; c=relaxed/simple; bh=EFCFB1LCUwywC3y4EMXmH/J5SZz0UdQkADZ1qXQgYa4=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=sIXmMWeIaVLVJjkYwCtv8quxICmN/n2oFQEUTFqahOeRjBCPiPrQqvZ3n2IFpkAB4zZvuY1YF/8nWIikKVRI9yIEYwlWAwa5N141971meWRxShu6/3/QpyKhwNMCSPEM9DUASecbsdv3dAtuTqXuQORK32/v/Ne6jXjAMNnHf3A= ARC-Authentication-Results: i=1; sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 68FC14BA2E15 Received: by simark.ca (Postfix) id E19511E067; Thu, 07 May 2026 15:46:16 -0400 (EDT) From: Simon Marchi <simon.marchi@efficios.com> To: binutils@sourceware.org Cc: Luis Machado <luis.machado@amd.com>, Simon Marchi <simon.marchi@efficios.com> Subject: [PATCH v2 0/4] Add support for new AMDGPU architectures Date: Thu, 7 May 2026 15:43:56 -0400 Message-ID: <20260507194615.943267-1-simon.marchi@efficios.com> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20251031175411.1303161-1-luis.machado@amd.com> References: <20251031175411.1303161-1-luis.machado@amd.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-1159.8 required=5.0 tests=BAYES_00, KAM_DMARC_NONE, KAM_DMARC_STATUS, LOCAL_AUTHENTICATION_FAIL_DMARC, LOCAL_AUTHENTICATION_FAIL_SPF, RCVD_IN_DNSWL_BLOCKED, SPF_HELO_PASS, SPF_SOFTFAIL, TXREP, URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on sourceware.org X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Binutils mailing list <binutils.sourceware.org> List-Unsubscribe: <https://sourceware.org/mailman/options/binutils>, <mailto:binutils-request@sourceware.org?subject=unsubscribe> List-Archive: <https://sourceware.org/pipermail/binutils/> List-Post: <mailto:binutils@sourceware.org> List-Help: <mailto:binutils-request@sourceware.org?subject=help> List-Subscribe: <https://sourceware.org/mailman/listinfo/binutils>, <mailto:binutils-request@sourceware.org?subject=subscribe> Errors-To: binutils-bounces~patchwork=sourceware.org@sourceware.org |
| Series |
Add support for new AMDGPU architectures
|
|
Message
Simon Marchi
May 7, 2026, 7:43 p.m. UTC
This is v2 of: https://inbox.sourceware.org/binutils/20251031175411.1303161-1-luis.machado@amd.com/ I address the review comments, and I also added the gfx1250 and gfx12-5-generic architectures. Patch 4 is new. Lancelot Six (2): Update list of supported AMDGPU architectures readelf: Add support for AMDGPU code object V6 Simon Marchi (2): Add AMDGPU generic targets include: add reference URLs in elf/amdgpu.h bfd/archures.c | 44 ++++++++++++++++++++++++++------------- bfd/bfd-in2.h | 46 +++++++++++++++++++++++++++-------------- bfd/cpu-amdgcn.c | 34 ++++++++++++++++++++++-------- binutils/readelf.c | 31 +++++++++++++++++++++++++++- include/elf/amdgpu.h | 49 ++++++++++++++++++++++++++++++++++++++------ 5 files changed, 159 insertions(+), 45 deletions(-) base-commit: cca4420639a1390f1fb23286618efbe494987825
Comments
On 07.05.2026 21:43, Simon Marchi wrote: > This is v2 of: > > https://inbox.sourceware.org/binutils/20251031175411.1303161-1-luis.machado@amd.com/ > > I address the review comments, and I also added the gfx1250 and > gfx12-5-generic architectures. > > Patch 4 is new. > > > Lancelot Six (2): > Update list of supported AMDGPU architectures > readelf: Add support for AMDGPU code object V6 > > Simon Marchi (2): > Add AMDGPU generic targets > include: add reference URLs in elf/amdgpu.h > > bfd/archures.c | 44 ++++++++++++++++++++++++++------------- > bfd/bfd-in2.h | 46 +++++++++++++++++++++++++++-------------- > bfd/cpu-amdgcn.c | 34 ++++++++++++++++++++++-------- > binutils/readelf.c | 31 +++++++++++++++++++++++++++- > include/elf/amdgpu.h | 49 ++++++++++++++++++++++++++++++++++++++------ > 5 files changed, 159 insertions(+), 45 deletions(-) Except for the one aspect in patch 1: Okay for the entire series. Jan