From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.1 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 1F78F20248 for ; Thu, 7 Mar 2019 01:52:43 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; q=dns; s=default; b=R7WPcFiM neJd3B0/zlqFr61dDq3W3Jufk5ES0/FwFzJItJ3QiBs9zsUUE23rpLdse/qVRQlv TwbmeKMqqRYLQI3KSGJQCkf4nSgCLMtN3AQE69ngGPUbDlbEo5cyiHwTpnPe3UTn 042/5bfbpCa9RFaSZ8Wpl9jWjkBBIVCoCL8= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; s=default; bh=DMKsa/QI0UHCQt wExMqg4szDxtU=; b=OrKMb8w85VvDQ+b6a7/+/gJpBfhcILRXvPH/kDc1tvOUbv ICYEMD3ug1qmTA0ZBacg9UA+winXiSoZgiwOXfUs9EATs+LQaYDu4b+spiE75FIQ 9gwGb+smuVHz153OVJM0gKBr6Feb0tagC44FVm2+wIG6SIwl0pJ5H/5yR9qE4= Received: (qmail 74537 invoked by alias); 7 Mar 2019 01:52:40 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 74448 invoked by uid 89); 7 Mar 2019 01:52:39 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: vmh-VirtualBox From: Mao Han To: libc-alpha@sourceware.org Cc: Mao Han Subject: [PATCH 4/4] C-SKY: add elf header definition for elfutils Date: Thu, 7 Mar 2019 09:34:06 +0800 Message-Id: In-Reply-To: References: In-Reply-To: References: This patch adds some defines relate to machine flag and section information, which is used by elfutils elflint check. A C-SKY typo is also fixed with this patch. * elf/elf.h (EF_CSKY_ABIMASK, EF_CSKY_OTHER, EF_CSKY_PROCESSOR) (EF_CSKY_ABIV1, EF_CSKY_ABIV2, SHT_CSKY_ATTRIBUTES): New defines. --- elf/elf.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/elf/elf.h b/elf/elf.h index 47a514a..01648bd 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -360,7 +360,7 @@ typedef struct #define EM_RISCV 243 /* RISC-V */ #define EM_BPF 247 /* Linux BPF -- in-kernel virtual machine */ -#define EM_CSKY 252 /* C_SKY */ +#define EM_CSKY 252 /* C-SKY */ #define EM_NUM 253 @@ -3022,7 +3022,7 @@ enum /* Keep this the last entry. */ #define R_ARM_NUM 256 -/* csky */ +/* C-SKY */ #define R_CKCORE_NONE 0 /* no reloc */ #define R_CKCORE_ADDR32 1 /* direct 32 bit (S + A) */ #define R_CKCORE_PCRELIMM8BY4 2 /* disp ((S + A - P) >> 2) & 0xff */ @@ -3086,6 +3086,17 @@ enum #define R_CKCORE_TLS_DTPOFF32 57 #define R_CKCORE_TLS_TPOFF32 58 +/* C-SKY elf header definition. */ +#define EF_CSKY_ABIMASK 0XF0000000 +#define EF_CSKY_OTHER 0X0FFF0000 +#define EF_CSKY_PROCESSOR 0X0000FFFF + +#define EF_CSKY_ABIV1 0X10000000 +#define EF_CSKY_ABIV2 0X20000000 + +/* C-SKY attributes section. */ +#define SHT_CSKY_ATTRIBUTES (SHT_LOPROC + 1) + /* IA-64 specific declarations. */ /* Processor specific flags for the Ehdr e_flags field. */ -- 2.7.4