Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp1647416ybt; Thu, 18 Jun 2020 13:48:21 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzDDVVbP/SZt1vZolsjDgIIMYSfxp7PKSEOtMtEs1ZtW+sTo8aWpvHHYwmbPCjrvr9+DlbI X-Received: by 2002:a17:907:2118:: with SMTP id qn24mr551122ejb.252.1592513301852; Thu, 18 Jun 2020 13:48:21 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1592513301; cv=none; d=google.com; s=arc-20160816; b=MVg7p13gNlmo180c5/Of/LYxFevB4GV91SuoqfFBSX7fNG34dF6FXf4bwE30lKjhu3 mxquFI/Trkz884Gs6CWGf8dVWpOEamhNFsN4aOHGuJbpj3NhbkTlv1vWKQo/WbD+oG/t ExgQjctCqZnSGx7glAr+LH5M/rWgg97JrcGTl1YnLJOeHOngWhWyKahcYvKjQnksC80X fbVefHZtyFvkKO1lZ5gTPgXDMsTh+lJuVmeRSFau8x/qYWKAEXCAVteubrTP71eTNZCS pox2k1IJwxP6VeZj9Gj0iB4kMvFsyq7b+5bY8C1S0XK6kOq903nF6ehBnfG+viLFRQQd 8CqA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=+LdKAKlBnHDUPJcSAJeu5viQ9p5W4CyZQw8SLaQnbCo=; b=yXQ6XBEyhie23X8wjKNXaqf1rtDvVkQGStbk6+TwGT3PKtyf6mKH7VPP+lepqfkvMf RrJEjM8BoD8wOtikEiZe2BRaSmdqSEie6/hlvp9pn+jWqBxyYNGH9yjoCIj1CAjswTXq jKPTDCUd3yJF7yJStWTkin7Hkol/mocp/LicnN/AYeXpyrOZ/Us7sGDyomyCEBzQDurO 2YQawcESDWY4njZSBOJ/gXyZNY9+bUwOQzSTu1XTt92RbEkcHxkaYOFaDtTex1Gq5z4Y 2OXU3jYZOORO4k83OKsLiMSwuFGR4azXQsnu/OZZQuk3RlNMfFgV+94HqNfvXUC86G+n Usjg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=vmware.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id p5si2506615edq.385.2020.06.18.13.47.59; Thu, 18 Jun 2020 13:48:21 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=vmware.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731985AbgFRUkc (ORCPT + 99 others); Thu, 18 Jun 2020 16:40:32 -0400 Received: from ex13-edg-ou-002.vmware.com ([208.91.0.190]:48844 "EHLO EX13-EDG-OU-002.vmware.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731123AbgFRUja (ORCPT ); Thu, 18 Jun 2020 16:39:30 -0400 Received: from sc9-mailhost2.vmware.com (10.113.161.72) by EX13-EDG-OU-002.vmware.com (10.113.208.156) with Microsoft SMTP Server id 15.0.1156.6; Thu, 18 Jun 2020 13:39:21 -0700 Received: from sc9-mailhost2.vmware.com (unknown [10.129.221.29]) by sc9-mailhost2.vmware.com (Postfix) with ESMTP id 67C1AB2656; Thu, 18 Jun 2020 16:39:24 -0400 (EDT) From: Matt Helsley To: CC: Josh Poimboeuf , Peter Zijlstra , Steven Rostedt , Julien Thierry , Kamalesh Babulal , Matt Helsley Subject: [RFC][PATCH v5 32/51] objtool: mcount: Move sift_rel_mcount out of wrapper file Date: Thu, 18 Jun 2020 13:38:18 -0700 Message-ID: X-Mailer: git-send-email 2.25.4 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII Received-SPF: None (EX13-EDG-OU-002.vmware.com: mhelsley@vmware.com does not designate permitted sender hosts) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Now that this function no longer uses any of the old recordmcount wrapper code we can move it out of the wrapper too. Signed-off-by: Matt Helsley --- tools/objtool/recordmcount.c | 47 +++++++++++++++++++++++++++++++++ tools/objtool/recordmcount.h | 50 ------------------------------------ 2 files changed, 47 insertions(+), 50 deletions(-) diff --git a/tools/objtool/recordmcount.c b/tools/objtool/recordmcount.c index 34976f3294ac..b9f15fc1f40e 100644 --- a/tools/objtool/recordmcount.c +++ b/tools/objtool/recordmcount.c @@ -395,6 +395,53 @@ static int mcount_adjust = 0; /* Size of an entry in __mcount_loc; 4 or 8 */ static size_t loc_size; +/* + * Look at the relocations in order to find the calls to mcount. + * Accumulate the section offsets that are found, and their relocation info, + * onto the end of the existing arrays. + */ +static void sift_rel_mcount(GElf_Addr **mlocpp, + GElf_Sxword *r_offsetp, + void **const mrelpp, + const struct section * const rels, + unsigned const recsym_index, + unsigned long const recval, + unsigned const reltype, + bool is_rela) +{ + GElf_Rel *mrelp = *mrelpp; + GElf_Rela *mrelap = *mrelpp; + struct symbol *mcount_sym = NULL; + struct reloc *reloc; + + list_for_each_entry(reloc, &rels->reloc_list, list) { + unsigned long addend; + + if (!mcount_sym) + mcount_sym = get_mcount_sym(reloc); + + if (mcount_sym != reloc->sym || is_fake_mcount(reloc)) + continue; + + addend = reloc->offset - recval + mcount_adjust; + if (is_rela) { + mrelap->r_offset = *r_offsetp; + mrelap->r_info = GELF_R_INFO(recsym_index, reltype); + mrelap->r_addend = addend; + mrelap++; + **mlocpp = 0; + } else { + mrelp->r_offset = *r_offsetp; + mrelp->r_info = GELF_R_INFO(recsym_index, reltype); + mrelp++; + **mlocpp = addend; + } + (*mlocpp)++; + *r_offsetp += loc_size; + } + *mrelpp = is_rela ? (void *)mrelap : (void *)mrelp; +} + /* 32 bit and 64 bit are very similar */ #include "recordmcount.h" #define RECORD_MCOUNT_64 diff --git a/tools/objtool/recordmcount.h b/tools/objtool/recordmcount.h index fc6346a7eaf5..2dd303d51b78 100644 --- a/tools/objtool/recordmcount.h +++ b/tools/objtool/recordmcount.h @@ -17,67 +17,17 @@ * This conversion to macros was done by: * Copyright 2010 Steven Rostedt , Red Hat Inc. */ -#undef sift_rel_mcount #undef do_func #undef Elf_Rela #ifdef RECORD_MCOUNT_64 -# define sift_rel_mcount sift64_rel_mcount # define do_func do64 # define Elf_Rela Elf64_Rela #else -# define sift_rel_mcount sift32_rel_mcount # define do_func do32 # define Elf_Rela Elf32_Rela #endif -/* - * Look at the relocations in order to find the calls to mcount. - * Accumulate the section offsets that are found, and their relocation info, - * onto the end of the existing arrays. - */ -static void sift_rel_mcount(GElf_Addr **mlocpp, - GElf_Sxword *r_offsetp, - void **const mrelpp, - const struct section * const rels, - unsigned const recsym_index, - unsigned long const recval, - unsigned const reltype, - bool is_rela) -{ - GElf_Rel *mrelp = *mrelpp; - GElf_Rela *mrelap = *mrelpp; - struct symbol *mcount_sym = NULL; - struct reloc *reloc; - - list_for_each_entry(reloc, &rels->reloc_list, list) { - unsigned long addend; - - if (!mcount_sym) - mcount_sym = get_mcount_sym(reloc); - - if (mcount_sym != reloc->sym || is_fake_mcount(reloc)) - continue; - - addend = reloc->offset - recval + mcount_adjust; - if (is_rela) { - mrelap->r_offset = *r_offsetp; - mrelap->r_info = GELF_R_INFO(recsym_index, reltype); - mrelap->r_addend = addend; - mrelap++; - **mlocpp = 0; - } else { - mrelp->r_offset = *r_offsetp; - mrelp->r_info = GELF_R_INFO(recsym_index, reltype); - mrelp++; - **mlocpp = addend; - } - (*mlocpp)++; - *r_offsetp += loc_size; - } - *mrelpp = is_rela ? (void *)mrelap : (void *)mrelp; -} - /* Overall supervision for Elf32 ET_REL file. */ static int do_func(unsigned const reltype) { -- 2.20.1