Received: by 2002:a25:d7c1:0:0:0:0:0 with SMTP id o184csp4133887ybg; Fri, 25 Oct 2019 13:52:33 -0700 (PDT) X-Google-Smtp-Source: APXvYqyyEln5c9zBRAQEK8C1Ey92JaG9TdPyn6WftZtPzsq/o/SS+HeOw3SXDSgvBOiD9JvJMqAJ X-Received: by 2002:a50:eacc:: with SMTP id u12mr6259571edp.290.1572036753008; Fri, 25 Oct 2019 13:52:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1572036753; cv=none; d=google.com; s=arc-20160816; b=OBXLhx5/8+ltEk/20X7t9YvbYZrTsYgt28M+hDEArP/CPqXDMc8aGT3IjtKtGkaf+w HFMtuD8FtXGVIKcuFw3CUs+JTxxE4xYdbAM9K4Sk/gNM5meRxvR6r+19IjlbjOMCaoeP 5c0YWDk4wFSZfWDhauxAzj7lnYICpDb4JMCzAFkXFWmqQoNJg64On30QfXq7YYRAbyEX Fbcl1ikmg4R9dw4s6hMKVjw+B3un9VrtsBR7Xoog1N6pxtqlA6XWqIPSSkJGbGU3FxCI 7SvqoyxyHnOJTrd7WR4ZcJZoiES+KlaHkqO0fwP8S7owMGbBRVkl8J4xKF2ZkJP6SJUm hPbw== 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=zo6NqNOUDnG5joAlJZiUKDOFZS+gdqNL0nEYpP8sSn4=; b=q1XOJNjG53zy/4+FZkBlr3kFW4cTUYiogID9rSZfVeUH19FTTwgtPhijFiRioOa7DG A8i4OQqpC+ZFOkGWyJW7hzIh7MaIsgnKNiG4umOuWdugCyBbhPQXVeQRh8UURNka0/PV 1k18XMSZEpA4sZ2SDTeHeeJYJ3nMqiV5duyik313rkby37in9gRtF0Kf9atAWNQ6LIG4 sQyrB0EaNzHVoGKHyQ4vz/yJxRWNeVffGcpG/9mZtjnMBDMEh5KZwEZyOJN8eLO9WY7X gr1bFWilvK7e/LcJfnLKczchTKE3IPSJn8siYTVdo3NaZknHLSU3f02xX0SethyA40uw W5Pg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v13si2731418edb.164.2019.10.25.13.52.10; Fri, 25 Oct 2019 13:52:32 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388365AbfJYSOh (ORCPT + 99 others); Fri, 25 Oct 2019 14:14:37 -0400 Received: from mga18.intel.com ([134.134.136.126]:12175 "EHLO mga18.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388217AbfJYSO0 (ORCPT ); Fri, 25 Oct 2019 14:14:26 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Oct 2019 11:14:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,229,1569308400"; d="scan'208";a="400193953" Received: from tassilo.jf.intel.com (HELO tassilo.localdomain) ([10.7.201.137]) by fmsmga006.fm.intel.com with ESMTP; 25 Oct 2019 11:14:24 -0700 Received: by tassilo.localdomain (Postfix, from userid 1000) id D7F2B300B2B; Fri, 25 Oct 2019 11:14:24 -0700 (PDT) From: Andi Kleen To: acme@kernel.org Cc: jolsa@kernel.org, eranian@google.com, linux-kernel@vger.kernel.org, Andi Kleen Subject: [PATCH v3 3/7] perf evsel: Add iterator to iterate over events ordered by CPU Date: Fri, 25 Oct 2019 11:14:13 -0700 Message-Id: <20191025181417.10670-4-andi@firstfloor.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20191025181417.10670-1-andi@firstfloor.org> References: <20191025181417.10670-1-andi@firstfloor.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Andi Kleen Add some common code that is needed to iterate over all events in CPU order. Used in followon patches Signed-off-by: Andi Kleen --- v2: Add cpumap__for_each_cpu macro to factor out some common code --- tools/perf/util/cpumap.h | 8 ++++++++ tools/perf/util/evlist.c | 33 +++++++++++++++++++++++++++++++++ tools/perf/util/evlist.h | 4 ++++ tools/perf/util/evsel.h | 1 + 4 files changed, 46 insertions(+) diff --git a/tools/perf/util/cpumap.h b/tools/perf/util/cpumap.h index 2553bef1279d..a9b13d72fd29 100644 --- a/tools/perf/util/cpumap.h +++ b/tools/perf/util/cpumap.h @@ -60,4 +60,12 @@ int cpu_map__build_map(struct perf_cpu_map *cpus, struct perf_cpu_map **res, int cpu_map__cpu(struct perf_cpu_map *cpus, int idx); bool cpu_map__has(struct perf_cpu_map *cpus, int cpu); + +#define __cpumap__for_each_cpu(cpus, index, cpu, maxcpu)\ + for ((index) = 0; \ + (cpu) = (index) < (maxcpu) ? (cpus)->map[index] : -1, (index) < (maxcpu); \ + (index)++) +#define cpumap__for_each_cpu(cpus, index, cpu) \ + __cpumap__for_each_cpu(cpus, index, cpu, (cpus)->nr) + #endif /* __PERF_CPUMAP_H */ diff --git a/tools/perf/util/evlist.c b/tools/perf/util/evlist.c index fdce590d2278..da3c8f8ef68e 100644 --- a/tools/perf/util/evlist.c +++ b/tools/perf/util/evlist.c @@ -342,6 +342,39 @@ static int perf_evlist__nr_threads(struct evlist *evlist, return perf_thread_map__nr(evlist->core.threads); } +struct perf_cpu_map *evlist__cpu_iter_start(struct evlist *evlist) +{ + struct perf_cpu_map *cpus; + struct evsel *pos; + + /* + * evlist->cpus is not necessarily a superset of all the + * event's cpus, so compute our own super set. This + * assume that there is a super set + */ + cpus = evlist->core.cpus; + evlist__for_each_entry(evlist, pos) { + pos->cpu_index = 0; + if (pos->core.cpus->nr > cpus->nr) + cpus = pos->core.cpus; + } + return cpus; +} + +bool evlist__cpu_iter_skip(struct evsel *ev, int cpu) +{ + if (ev->cpu_index >= ev->core.cpus->nr) + return true; + if (cpu >= 0 && ev->core.cpus->map[ev->cpu_index] != cpu) + return true; + return false; +} + +void evlist__cpu_iter_next(struct evsel *ev) +{ + ev->cpu_index++; +} + void evlist__disable(struct evlist *evlist) { struct evsel *pos; diff --git a/tools/perf/util/evlist.h b/tools/perf/util/evlist.h index 13051409fd22..c1deb8ebdcea 100644 --- a/tools/perf/util/evlist.h +++ b/tools/perf/util/evlist.h @@ -336,6 +336,10 @@ void perf_evlist__to_front(struct evlist *evlist, void perf_evlist__set_tracking_event(struct evlist *evlist, struct evsel *tracking_evsel); +struct perf_cpu_map *evlist__cpu_iter_start(struct evlist *evlist); +bool evlist__cpu_iter_skip(struct evsel *ev, int cpu); +void evlist__cpu_iter_next(struct evsel *ev); + struct evsel * perf_evlist__find_evsel_by_str(struct evlist *evlist, const char *str); diff --git a/tools/perf/util/evsel.h b/tools/perf/util/evsel.h index ddc5ee6f6592..cf90019ae744 100644 --- a/tools/perf/util/evsel.h +++ b/tools/perf/util/evsel.h @@ -95,6 +95,7 @@ struct evsel { bool collect_stat; bool weak_group; bool percore; + int cpu_index; const char *pmu_name; struct { perf_evsel__sb_cb_t *cb; -- 2.21.0