2005-04-19 04:01:25 +00:00
|
|
|
/*-
|
2017-11-26 02:00:33 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2008-03-12 15:51:32 +00:00
|
|
|
* Copyright (c) 2003-2008 Joseph Koshy
|
2005-04-19 04:01:25 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2014-02-01 02:03:50 +00:00
|
|
|
#include <sys/param.h>
|
2005-04-19 04:01:25 +00:00
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/pmc.h>
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
2018-06-04 21:17:46 +00:00
|
|
|
#include <err.h>
|
2005-04-19 04:01:25 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <pmc.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
2018-06-04 21:17:46 +00:00
|
|
|
#include <sysexits.h>
|
2005-04-19 04:01:25 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
#include "libpmcinternal.h"
|
|
|
|
|
2005-04-19 04:01:25 +00:00
|
|
|
/* Function prototypes */
|
2005-07-03 16:33:22 +00:00
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
2005-06-09 19:45:09 +00:00
|
|
|
static int k8_allocate_pmc(enum pmc_event _pe, char *_ctrspec,
|
2005-04-19 04:01:25 +00:00
|
|
|
struct pmc_op_pmcallocate *_pmc_config);
|
|
|
|
#endif
|
2008-10-09 14:55:45 +00:00
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
|
|
|
static int tsc_allocate_pmc(enum pmc_event _pe, char *_ctrspec,
|
|
|
|
struct pmc_op_pmcallocate *_pmc_config);
|
|
|
|
#endif
|
2015-01-28 16:08:07 +00:00
|
|
|
#if defined(__arm__)
|
|
|
|
static int armv7_allocate_pmc(enum pmc_event _pe, char *_ctrspec,
|
|
|
|
struct pmc_op_pmcallocate *_pmc_config);
|
|
|
|
#endif
|
2015-05-19 15:25:47 +00:00
|
|
|
#if defined(__aarch64__)
|
|
|
|
static int arm64_allocate_pmc(enum pmc_event _pe, char *_ctrspec,
|
|
|
|
struct pmc_op_pmcallocate *_pmc_config);
|
|
|
|
#endif
|
2010-03-03 15:05:58 +00:00
|
|
|
#if defined(__mips__)
|
2012-03-22 18:07:44 +00:00
|
|
|
static int mips_allocate_pmc(enum pmc_event _pe, char* ctrspec,
|
2010-03-03 15:05:58 +00:00
|
|
|
struct pmc_op_pmcallocate *_pmc_config);
|
|
|
|
#endif /* __mips__ */
|
2012-03-28 20:58:30 +00:00
|
|
|
static int soft_allocate_pmc(enum pmc_event _pe, char *_ctrspec,
|
|
|
|
struct pmc_op_pmcallocate *_pmc_config);
|
2010-03-03 15:05:58 +00:00
|
|
|
|
2011-12-24 19:34:52 +00:00
|
|
|
#if defined(__powerpc__)
|
2014-02-01 02:03:50 +00:00
|
|
|
static int powerpc_allocate_pmc(enum pmc_event _pe, char* ctrspec,
|
2011-12-24 19:34:52 +00:00
|
|
|
struct pmc_op_pmcallocate *_pmc_config);
|
|
|
|
#endif /* __powerpc__ */
|
2010-03-03 15:05:58 +00:00
|
|
|
|
2005-04-19 04:01:25 +00:00
|
|
|
#define PMC_CALL(cmd, params) \
|
|
|
|
syscall(pmc_syscall, PMC_OP_##cmd, (params))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Event aliases provide a way for the user to ask for generic events
|
|
|
|
* like "cache-misses", or "instructions-retired". These aliases are
|
|
|
|
* mapped to the appropriate canonical event descriptions using a
|
|
|
|
* lookup table.
|
|
|
|
*/
|
|
|
|
struct pmc_event_alias {
|
|
|
|
const char *pm_alias;
|
|
|
|
const char *pm_spec;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pmc_event_alias *pmc_mdep_event_aliases;
|
|
|
|
|
|
|
|
/*
|
2008-10-09 14:55:45 +00:00
|
|
|
* The pmc_event_descr structure maps symbolic names known to the user
|
2005-04-19 04:01:25 +00:00
|
|
|
* to integer codes used by the PMC KLD.
|
|
|
|
*/
|
|
|
|
struct pmc_event_descr {
|
|
|
|
const char *pm_ev_name;
|
|
|
|
enum pmc_event pm_ev_code;
|
|
|
|
};
|
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
/*
|
|
|
|
* The pmc_class_descr structure maps class name prefixes for
|
|
|
|
* event names to event tables and other PMC class data.
|
|
|
|
*/
|
|
|
|
struct pmc_class_descr {
|
|
|
|
const char *pm_evc_name;
|
|
|
|
size_t pm_evc_name_size;
|
|
|
|
enum pmc_class pm_evc_class;
|
|
|
|
const struct pmc_event_descr *pm_evc_event_table;
|
|
|
|
size_t pm_evc_event_table_size;
|
|
|
|
int (*pm_evc_allocate_pmc)(enum pmc_event _pe,
|
|
|
|
char *_ctrspec, struct pmc_op_pmcallocate *_pa);
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PMC_TABLE_SIZE(N) (sizeof(N)/sizeof(N[0]))
|
|
|
|
#define PMC_EVENT_TABLE_SIZE(N) PMC_TABLE_SIZE(N##_event_table)
|
|
|
|
|
|
|
|
#undef __PMC_EV
|
|
|
|
#define __PMC_EV(C,N) { #N, PMC_EV_ ## C ## _ ## N },
|
|
|
|
|
|
|
|
/*
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
* PMC_CLASSDEP_TABLE(NAME, CLASS)
|
2008-10-09 14:55:45 +00:00
|
|
|
*
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
* Define a table mapping event names and aliases to HWPMC event IDs.
|
2008-10-09 14:55:45 +00:00
|
|
|
*/
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
#define PMC_CLASSDEP_TABLE(N, C) \
|
2008-10-09 14:55:45 +00:00
|
|
|
static const struct pmc_event_descr N##_event_table[] = \
|
|
|
|
{ \
|
|
|
|
__PMC_EV_##C() \
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PMC_CLASSDEP_TABLE(iaf, IAF);
|
|
|
|
PMC_CLASSDEP_TABLE(k8, K8);
|
2015-01-28 16:08:07 +00:00
|
|
|
PMC_CLASSDEP_TABLE(armv7, ARMV7);
|
2015-05-19 15:25:47 +00:00
|
|
|
PMC_CLASSDEP_TABLE(armv8, ARMV8);
|
2019-09-18 16:13:50 +00:00
|
|
|
PMC_CLASSDEP_TABLE(beri, BERI);
|
2010-03-03 15:05:58 +00:00
|
|
|
PMC_CLASSDEP_TABLE(mips24k, MIPS24K);
|
2015-04-05 02:57:02 +00:00
|
|
|
PMC_CLASSDEP_TABLE(mips74k, MIPS74K);
|
2012-03-23 00:10:21 +00:00
|
|
|
PMC_CLASSDEP_TABLE(octeon, OCTEON);
|
2011-12-24 19:34:52 +00:00
|
|
|
PMC_CLASSDEP_TABLE(ppc7450, PPC7450);
|
2014-02-01 02:03:50 +00:00
|
|
|
PMC_CLASSDEP_TABLE(ppc970, PPC970);
|
2020-11-05 16:41:28 +00:00
|
|
|
PMC_CLASSDEP_TABLE(power8, POWER8);
|
2015-04-18 21:39:17 +00:00
|
|
|
PMC_CLASSDEP_TABLE(e500, E500);
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
|
2012-03-28 20:58:30 +00:00
|
|
|
static struct pmc_event_descr soft_event_table[PMC_EV_DYN_COUNT];
|
|
|
|
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
#undef __PMC_EV_ALIAS
|
|
|
|
#define __PMC_EV_ALIAS(N,CODE) { N, PMC_EV_##CODE },
|
|
|
|
|
2015-06-10 12:42:30 +00:00
|
|
|
static const struct pmc_event_descr cortex_a8_event_table[] =
|
|
|
|
{
|
|
|
|
__PMC_EV_ALIAS_ARMV7_CORTEX_A8()
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pmc_event_descr cortex_a9_event_table[] =
|
|
|
|
{
|
|
|
|
__PMC_EV_ALIAS_ARMV7_CORTEX_A9()
|
|
|
|
};
|
|
|
|
|
2015-05-19 15:25:47 +00:00
|
|
|
static const struct pmc_event_descr cortex_a53_event_table[] =
|
|
|
|
{
|
|
|
|
__PMC_EV_ALIAS_ARMV8_CORTEX_A53()
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pmc_event_descr cortex_a57_event_table[] =
|
|
|
|
{
|
|
|
|
__PMC_EV_ALIAS_ARMV8_CORTEX_A57()
|
|
|
|
};
|
|
|
|
|
2020-08-12 10:17:17 +00:00
|
|
|
static const struct pmc_event_descr cortex_a76_event_table[] =
|
|
|
|
{
|
|
|
|
__PMC_EV_ALIAS_ARMV8_CORTEX_A76()
|
|
|
|
};
|
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
static const struct pmc_event_descr tsc_event_table[] =
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2008-10-09 14:55:45 +00:00
|
|
|
__PMC_EV_TSC()
|
|
|
|
};
|
|
|
|
|
|
|
|
#undef PMC_CLASS_TABLE_DESC
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
#define PMC_CLASS_TABLE_DESC(NAME, CLASS, EVENTS, ALLOCATOR) \
|
|
|
|
static const struct pmc_class_descr NAME##_class_table_descr = \
|
|
|
|
{ \
|
|
|
|
.pm_evc_name = #CLASS "-", \
|
|
|
|
.pm_evc_name_size = sizeof(#CLASS "-") - 1, \
|
|
|
|
.pm_evc_class = PMC_CLASS_##CLASS , \
|
|
|
|
.pm_evc_event_table = EVENTS##_event_table , \
|
2008-10-09 14:55:45 +00:00
|
|
|
.pm_evc_event_table_size = \
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
PMC_EVENT_TABLE_SIZE(EVENTS), \
|
|
|
|
.pm_evc_allocate_pmc = ALLOCATOR##_allocate_pmc \
|
2008-10-09 14:55:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__i386__) || defined(__amd64__)
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(k8, K8, k8, k8);
|
2008-10-09 14:55:45 +00:00
|
|
|
#endif
|
|
|
|
#if defined(__i386__) || defined(__amd64__)
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(tsc, TSC, tsc, tsc);
|
2008-10-09 14:55:45 +00:00
|
|
|
#endif
|
2015-01-28 16:08:07 +00:00
|
|
|
#if defined(__arm__)
|
2015-10-14 16:56:25 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(cortex_a8, ARMV7, cortex_a8, armv7);
|
2015-06-10 12:42:30 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(cortex_a9, ARMV7, cortex_a9, armv7);
|
2015-01-28 16:08:07 +00:00
|
|
|
#endif
|
2015-05-19 15:25:47 +00:00
|
|
|
#if defined(__aarch64__)
|
|
|
|
PMC_CLASS_TABLE_DESC(cortex_a53, ARMV8, cortex_a53, arm64);
|
|
|
|
PMC_CLASS_TABLE_DESC(cortex_a57, ARMV8, cortex_a57, arm64);
|
2020-08-12 10:17:17 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(cortex_a76, ARMV8, cortex_a76, arm64);
|
2015-05-19 15:25:47 +00:00
|
|
|
#endif
|
2010-03-03 15:05:58 +00:00
|
|
|
#if defined(__mips__)
|
2019-09-18 16:13:50 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(beri, BERI, beri, mips);
|
2012-03-22 18:07:44 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(mips24k, MIPS24K, mips24k, mips);
|
2015-04-05 02:57:02 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(mips74k, MIPS74K, mips74k, mips);
|
2012-03-23 00:10:21 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(octeon, OCTEON, octeon, mips);
|
2010-03-03 15:05:58 +00:00
|
|
|
#endif /* __mips__ */
|
2011-12-24 19:34:52 +00:00
|
|
|
#if defined(__powerpc__)
|
2014-02-01 02:03:50 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(ppc7450, PPC7450, ppc7450, powerpc);
|
|
|
|
PMC_CLASS_TABLE_DESC(ppc970, PPC970, ppc970, powerpc);
|
2020-11-05 16:41:28 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(power8, POWER8, power8, powerpc);
|
2015-04-18 21:39:17 +00:00
|
|
|
PMC_CLASS_TABLE_DESC(e500, E500, e500, powerpc);
|
2011-12-24 19:34:52 +00:00
|
|
|
#endif
|
|
|
|
|
2012-03-28 20:58:30 +00:00
|
|
|
static struct pmc_class_descr soft_class_table_descr =
|
|
|
|
{
|
|
|
|
.pm_evc_name = "SOFT-",
|
|
|
|
.pm_evc_name_size = sizeof("SOFT-") - 1,
|
|
|
|
.pm_evc_class = PMC_CLASS_SOFT,
|
|
|
|
.pm_evc_event_table = NULL,
|
|
|
|
.pm_evc_event_table_size = 0,
|
|
|
|
.pm_evc_allocate_pmc = soft_allocate_pmc
|
|
|
|
};
|
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
#undef PMC_CLASS_TABLE_DESC
|
|
|
|
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
static const struct pmc_class_descr **pmc_class_table;
|
|
|
|
#define PMC_CLASS_TABLE_SIZE cpu_info.pm_nclass
|
|
|
|
|
2005-04-19 04:01:25 +00:00
|
|
|
/*
|
|
|
|
* Mapping tables, mapping enumeration values to human readable
|
|
|
|
* strings.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static const char * pmc_capability_names[] = {
|
|
|
|
#undef __PMC_CAP
|
|
|
|
#define __PMC_CAP(N,V,D) #N ,
|
|
|
|
__PMC_CAPS()
|
|
|
|
};
|
|
|
|
|
2015-05-19 18:58:18 +00:00
|
|
|
struct pmc_class_map {
|
|
|
|
enum pmc_class pm_class;
|
|
|
|
const char *pm_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pmc_class_map pmc_class_names[] = {
|
2005-04-19 04:01:25 +00:00
|
|
|
#undef __PMC_CLASS
|
2015-05-19 18:58:18 +00:00
|
|
|
#define __PMC_CLASS(S,V,D) { .pm_class = PMC_CLASS_##S, .pm_name = #S } ,
|
2005-04-19 04:01:25 +00:00
|
|
|
__PMC_CLASSES()
|
|
|
|
};
|
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
struct pmc_cputype_map {
|
2011-12-16 00:13:43 +00:00
|
|
|
enum pmc_cputype pm_cputype;
|
2008-10-09 14:55:45 +00:00
|
|
|
const char *pm_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pmc_cputype_map pmc_cputype_names[] = {
|
2005-04-19 04:01:25 +00:00
|
|
|
#undef __PMC_CPU
|
2008-10-09 14:55:45 +00:00
|
|
|
#define __PMC_CPU(S, V, D) { .pm_cputype = PMC_CPU_##S, .pm_name = #S } ,
|
2005-04-19 04:01:25 +00:00
|
|
|
__PMC_CPUS()
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * pmc_disposition_names[] = {
|
|
|
|
#undef __PMC_DISP
|
|
|
|
#define __PMC_DISP(D) #D ,
|
|
|
|
__PMC_DISPOSITIONS()
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * pmc_mode_names[] = {
|
|
|
|
#undef __PMC_MODE
|
|
|
|
#define __PMC_MODE(M,N) #M ,
|
|
|
|
__PMC_MODES()
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * pmc_state_names[] = {
|
|
|
|
#undef __PMC_STATE
|
|
|
|
#define __PMC_STATE(S) #S ,
|
|
|
|
__PMC_STATES()
|
|
|
|
};
|
|
|
|
|
2012-03-28 20:58:30 +00:00
|
|
|
/*
|
|
|
|
* Filled in by pmc_init().
|
|
|
|
*/
|
|
|
|
static int pmc_syscall = -1;
|
|
|
|
static struct pmc_cpuinfo cpu_info;
|
|
|
|
static struct pmc_op_getdyneventinfo soft_event_info;
|
2005-06-10 03:45:04 +00:00
|
|
|
|
2005-04-19 04:01:25 +00:00
|
|
|
/* Event masks for events */
|
|
|
|
struct pmc_masks {
|
|
|
|
const char *pm_name;
|
2012-09-06 13:54:01 +00:00
|
|
|
const uint64_t pm_value;
|
2005-04-19 04:01:25 +00:00
|
|
|
};
|
|
|
|
#define PMCMASK(N,V) { .pm_name = #N, .pm_value = (V) }
|
2010-04-02 13:23:49 +00:00
|
|
|
#define NULLMASK { .pm_name = NULL }
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-07-03 16:33:22 +00:00
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
2005-04-19 04:01:25 +00:00
|
|
|
static int
|
2012-09-06 13:54:01 +00:00
|
|
|
pmc_parse_mask(const struct pmc_masks *pmask, char *p, uint64_t *evmask)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
|
|
|
const struct pmc_masks *pm;
|
|
|
|
char *q, *r;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
if (pmask == NULL) /* no mask keywords */
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2008-09-17 04:13:14 +00:00
|
|
|
q = strchr(p, '='); /* skip '=' */
|
2005-04-19 04:01:25 +00:00
|
|
|
if (*++q == '\0') /* no more data */
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
c = 0; /* count of mask keywords seen */
|
|
|
|
while ((r = strsep(&q, "+")) != NULL) {
|
2008-10-09 14:55:45 +00:00
|
|
|
for (pm = pmask; pm->pm_name && strcasecmp(r, pm->pm_name);
|
|
|
|
pm++)
|
2005-04-19 04:01:25 +00:00
|
|
|
;
|
|
|
|
if (pm->pm_name == NULL) /* not found */
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
*evmask |= pm->pm_value;
|
|
|
|
c++;
|
|
|
|
}
|
2007-12-07 13:52:51 +00:00
|
|
|
return (c);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
2005-04-20 20:48:24 +00:00
|
|
|
#endif
|
2005-04-19 04:01:25 +00:00
|
|
|
|
|
|
|
#define KWMATCH(p,kw) (strcasecmp((p), (kw)) == 0)
|
|
|
|
#define KWPREFIXMATCH(p,kw) (strncasecmp((p), (kw), sizeof((kw)) - 1) == 0)
|
|
|
|
#define EV_ALIAS(N,S) { .pm_alias = N, .pm_spec = S }
|
|
|
|
|
2005-07-03 16:33:22 +00:00
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
/*
|
2018-05-31 22:41:07 +00:00
|
|
|
* AMD K8 PMCs.
|
2009-10-24 04:11:40 +00:00
|
|
|
*
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
*/
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
static struct pmc_event_alias k8_aliases[] = {
|
|
|
|
EV_ALIAS("branches", "k8-fr-retired-taken-branches"),
|
|
|
|
EV_ALIAS("branch-mispredicts",
|
|
|
|
"k8-fr-retired-taken-branches-mispredicted"),
|
|
|
|
EV_ALIAS("cycles", "tsc"),
|
|
|
|
EV_ALIAS("dc-misses", "k8-dc-miss"),
|
|
|
|
EV_ALIAS("ic-misses", "k8-ic-miss"),
|
|
|
|
EV_ALIAS("instructions", "k8-fr-retired-x86-instructions"),
|
|
|
|
EV_ALIAS("interrupts", "k8-fr-taken-hardware-interrupts"),
|
|
|
|
EV_ALIAS("unhalted-cycles", "k8-bu-cpu-clk-unhalted"),
|
2009-10-24 04:11:40 +00:00
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
#define __K8MASK(N,V) PMCMASK(N,(1 << (V)))
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
|
|
|
|
/*
|
2018-05-31 22:41:07 +00:00
|
|
|
* Parsing tables
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
*/
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* fp dispatched fpu ops */
|
|
|
|
static const struct pmc_masks k8_mask_fdfo[] = {
|
|
|
|
__K8MASK(add-pipe-excluding-junk-ops, 0),
|
|
|
|
__K8MASK(multiply-pipe-excluding-junk-ops, 1),
|
|
|
|
__K8MASK(store-pipe-excluding-junk-ops, 2),
|
|
|
|
__K8MASK(add-pipe-junk-ops, 3),
|
|
|
|
__K8MASK(multiply-pipe-junk-ops, 4),
|
|
|
|
__K8MASK(store-pipe-junk-ops, 5),
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* ls segment register loads */
|
|
|
|
static const struct pmc_masks k8_mask_lsrl[] = {
|
|
|
|
__K8MASK(es, 0),
|
|
|
|
__K8MASK(cs, 1),
|
|
|
|
__K8MASK(ss, 2),
|
|
|
|
__K8MASK(ds, 3),
|
|
|
|
__K8MASK(fs, 4),
|
|
|
|
__K8MASK(gs, 5),
|
|
|
|
__K8MASK(hs, 6),
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* ls locked operation */
|
|
|
|
static const struct pmc_masks k8_mask_llo[] = {
|
|
|
|
__K8MASK(locked-instructions, 0),
|
|
|
|
__K8MASK(cycles-in-request, 1),
|
|
|
|
__K8MASK(cycles-to-complete, 2),
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* dc refill from {l2,system} and dc copyback */
|
|
|
|
static const struct pmc_masks k8_mask_dc[] = {
|
|
|
|
__K8MASK(invalid, 0),
|
|
|
|
__K8MASK(shared, 1),
|
|
|
|
__K8MASK(exclusive, 2),
|
|
|
|
__K8MASK(owner, 3),
|
|
|
|
__K8MASK(modified, 4),
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* dc one bit ecc error */
|
|
|
|
static const struct pmc_masks k8_mask_dobee[] = {
|
|
|
|
__K8MASK(scrubber, 0),
|
|
|
|
__K8MASK(piggyback, 1),
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* dc dispatched prefetch instructions */
|
|
|
|
static const struct pmc_masks k8_mask_ddpi[] = {
|
|
|
|
__K8MASK(load, 0),
|
|
|
|
__K8MASK(store, 1),
|
|
|
|
__K8MASK(nta, 2),
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* dc dcache accesses by locks */
|
|
|
|
static const struct pmc_masks k8_mask_dabl[] = {
|
|
|
|
__K8MASK(accesses, 0),
|
|
|
|
__K8MASK(misses, 1),
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* bu internal l2 request */
|
|
|
|
static const struct pmc_masks k8_mask_bilr[] = {
|
|
|
|
__K8MASK(ic-fill, 0),
|
|
|
|
__K8MASK(dc-fill, 1),
|
|
|
|
__K8MASK(tlb-reload, 2),
|
|
|
|
__K8MASK(tag-snoop, 3),
|
|
|
|
__K8MASK(cancelled, 4),
|
2010-04-02 13:23:49 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* bu fill request l2 miss */
|
|
|
|
static const struct pmc_masks k8_mask_bfrlm[] = {
|
|
|
|
__K8MASK(ic-fill, 0),
|
|
|
|
__K8MASK(dc-fill, 1),
|
|
|
|
__K8MASK(tlb-reload, 2),
|
2012-09-06 13:54:01 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* bu fill into l2 */
|
|
|
|
static const struct pmc_masks k8_mask_bfil[] = {
|
|
|
|
__K8MASK(dirty-l2-victim, 0),
|
|
|
|
__K8MASK(victim-from-l2, 1),
|
2015-11-30 17:35:49 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* fr retired fpu instructions */
|
|
|
|
static const struct pmc_masks k8_mask_frfi[] = {
|
|
|
|
__K8MASK(x87, 0),
|
|
|
|
__K8MASK(mmx-3dnow, 1),
|
|
|
|
__K8MASK(packed-sse-sse2, 2),
|
|
|
|
__K8MASK(scalar-sse-sse2, 3),
|
2013-03-28 19:15:54 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* fr retired fastpath double op instructions */
|
|
|
|
static const struct pmc_masks k8_mask_frfdoi[] = {
|
|
|
|
__K8MASK(low-op-pos-0, 0),
|
|
|
|
__K8MASK(low-op-pos-1, 1),
|
|
|
|
__K8MASK(low-op-pos-2, 2),
|
|
|
|
NULLMASK
|
|
|
|
};
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
/* fr fpu exceptions */
|
|
|
|
static const struct pmc_masks k8_mask_ffe[] = {
|
|
|
|
__K8MASK(x87-reclass-microfaults, 0),
|
|
|
|
__K8MASK(sse-retype-microfaults, 1),
|
|
|
|
__K8MASK(sse-reclass-microfaults, 2),
|
|
|
|
__K8MASK(sse-and-x87-microtraps, 3),
|
2005-04-19 04:01:25 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
/* nb memory controller page access event */
|
|
|
|
static const struct pmc_masks k8_mask_nmcpae[] = {
|
|
|
|
__K8MASK(page-hit, 0),
|
|
|
|
__K8MASK(page-miss, 1),
|
|
|
|
__K8MASK(page-conflict, 2),
|
2005-04-19 04:01:25 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* nb memory controller turnaround */
|
|
|
|
static const struct pmc_masks k8_mask_nmct[] = {
|
|
|
|
__K8MASK(dimm-turnaround, 0),
|
|
|
|
__K8MASK(read-to-write-turnaround, 1),
|
|
|
|
__K8MASK(write-to-read-turnaround, 2),
|
2005-06-09 19:45:09 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* nb memory controller bypass saturation */
|
|
|
|
static const struct pmc_masks k8_mask_nmcbs[] = {
|
|
|
|
__K8MASK(memory-controller-hi-pri-bypass, 0),
|
|
|
|
__K8MASK(memory-controller-lo-pri-bypass, 1),
|
|
|
|
__K8MASK(dram-controller-interface-bypass, 2),
|
|
|
|
__K8MASK(dram-controller-queue-bypass, 3),
|
2005-06-09 19:45:09 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* nb sized commands */
|
|
|
|
static const struct pmc_masks k8_mask_nsc[] = {
|
|
|
|
__K8MASK(nonpostwrszbyte, 0),
|
|
|
|
__K8MASK(nonpostwrszdword, 1),
|
|
|
|
__K8MASK(postwrszbyte, 2),
|
|
|
|
__K8MASK(postwrszdword, 3),
|
|
|
|
__K8MASK(rdszbyte, 4),
|
|
|
|
__K8MASK(rdszdword, 5),
|
|
|
|
__K8MASK(rdmodwr, 6),
|
2005-06-09 19:45:09 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* nb probe result */
|
|
|
|
static const struct pmc_masks k8_mask_npr[] = {
|
|
|
|
__K8MASK(probe-miss, 0),
|
|
|
|
__K8MASK(probe-hit, 1),
|
|
|
|
__K8MASK(probe-hit-dirty-no-memory-cancel, 2),
|
|
|
|
__K8MASK(probe-hit-dirty-with-memory-cancel, 3),
|
2005-06-09 19:45:09 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* nb hypertransport bus bandwidth */
|
|
|
|
static const struct pmc_masks k8_mask_nhbb[] = { /* HT bus bandwidth */
|
|
|
|
__K8MASK(command, 0),
|
|
|
|
__K8MASK(data, 1),
|
|
|
|
__K8MASK(buffer-release, 2),
|
|
|
|
__K8MASK(nop, 3),
|
2005-06-09 19:45:09 +00:00
|
|
|
NULLMASK
|
|
|
|
};
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
#undef __K8MASK
|
|
|
|
|
|
|
|
#define K8_KW_COUNT "count"
|
|
|
|
#define K8_KW_EDGE "edge"
|
|
|
|
#define K8_KW_INV "inv"
|
|
|
|
#define K8_KW_MASK "mask"
|
|
|
|
#define K8_KW_OS "os"
|
|
|
|
#define K8_KW_USR "usr"
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
static int
|
2018-05-31 22:41:07 +00:00
|
|
|
k8_allocate_pmc(enum pmc_event pe, char *ctrspec,
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_pmcallocate *pmc_config)
|
|
|
|
{
|
2018-05-31 22:41:07 +00:00
|
|
|
char *e, *p, *q;
|
|
|
|
int n;
|
|
|
|
uint32_t count;
|
|
|
|
uint64_t evmask;
|
|
|
|
const struct pmc_masks *pm, *pmask;
|
2005-06-09 19:45:09 +00:00
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
pmc_config->pm_caps |= (PMC_CAP_READ | PMC_CAP_WRITE);
|
2018-05-31 22:41:07 +00:00
|
|
|
pmc_config->pm_md.pm_amd.pm_amd_config = 0;
|
2005-06-09 19:45:09 +00:00
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
pmask = NULL;
|
2005-06-09 19:45:09 +00:00
|
|
|
evmask = 0;
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
#define __K8SETMASK(M) pmask = k8_mask_##M
|
|
|
|
|
|
|
|
/* setup parsing tables */
|
|
|
|
switch (pe) {
|
|
|
|
case PMC_EV_K8_FP_DISPATCHED_FPU_OPS:
|
|
|
|
__K8SETMASK(fdfo);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_LS_SEGMENT_REGISTER_LOAD:
|
|
|
|
__K8SETMASK(lsrl);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_LS_LOCKED_OPERATION:
|
|
|
|
__K8SETMASK(llo);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_DC_REFILL_FROM_L2:
|
|
|
|
case PMC_EV_K8_DC_REFILL_FROM_SYSTEM:
|
|
|
|
case PMC_EV_K8_DC_COPYBACK:
|
|
|
|
__K8SETMASK(dc);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_DC_ONE_BIT_ECC_ERROR:
|
|
|
|
__K8SETMASK(dobee);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_DC_DISPATCHED_PREFETCH_INSTRUCTIONS:
|
|
|
|
__K8SETMASK(ddpi);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_DC_DCACHE_ACCESSES_BY_LOCKS:
|
|
|
|
__K8SETMASK(dabl);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_BU_INTERNAL_L2_REQUEST:
|
|
|
|
__K8SETMASK(bilr);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_BU_FILL_REQUEST_L2_MISS:
|
|
|
|
__K8SETMASK(bfrlm);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_BU_FILL_INTO_L2:
|
|
|
|
__K8SETMASK(bfil);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_FR_RETIRED_FPU_INSTRUCTIONS:
|
|
|
|
__K8SETMASK(frfi);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_FR_RETIRED_FASTPATH_DOUBLE_OP_INSTRUCTIONS:
|
|
|
|
__K8SETMASK(frfdoi);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_FR_FPU_EXCEPTIONS:
|
|
|
|
__K8SETMASK(ffe);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_NB_MEMORY_CONTROLLER_PAGE_ACCESS_EVENT:
|
|
|
|
__K8SETMASK(nmcpae);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_NB_MEMORY_CONTROLLER_TURNAROUND:
|
|
|
|
__K8SETMASK(nmct);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_NB_MEMORY_CONTROLLER_BYPASS_SATURATION:
|
|
|
|
__K8SETMASK(nmcbs);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_NB_SIZED_COMMANDS:
|
|
|
|
__K8SETMASK(nsc);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_NB_PROBE_RESULT:
|
|
|
|
__K8SETMASK(npr);
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_NB_HT_BUS0_BANDWIDTH:
|
|
|
|
case PMC_EV_K8_NB_HT_BUS1_BANDWIDTH:
|
|
|
|
case PMC_EV_K8_NB_HT_BUS2_BANDWIDTH:
|
|
|
|
__K8SETMASK(nhbb);
|
2005-06-09 19:45:09 +00:00
|
|
|
break;
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
default:
|
|
|
|
break; /* no options defined */
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
while ((p = strsep(&ctrspec, ",")) != NULL) {
|
2018-05-31 22:41:07 +00:00
|
|
|
if (KWPREFIXMATCH(p, K8_KW_COUNT "=")) {
|
2005-06-09 19:45:09 +00:00
|
|
|
q = strchr(p, '=');
|
|
|
|
if (*++q == '\0') /* skip '=' */
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2018-05-31 22:41:07 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
count = strtol(q, &e, 0);
|
|
|
|
if (e == q || *e != '\0')
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2018-05-31 22:41:07 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_config->pm_caps |= PMC_CAP_THRESHOLD;
|
2018-05-31 22:41:07 +00:00
|
|
|
pmc_config->pm_md.pm_amd.pm_amd_config |=
|
|
|
|
AMD_PMC_TO_COUNTER(count);
|
|
|
|
|
|
|
|
} else if (KWMATCH(p, K8_KW_EDGE)) {
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_config->pm_caps |= PMC_CAP_EDGE;
|
2018-05-31 22:41:07 +00:00
|
|
|
} else if (KWMATCH(p, K8_KW_INV)) {
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_config->pm_caps |= PMC_CAP_INVERT;
|
2018-05-31 22:41:07 +00:00
|
|
|
} else if (KWPREFIXMATCH(p, K8_KW_MASK "=")) {
|
2005-06-09 19:45:09 +00:00
|
|
|
if ((n = pmc_parse_mask(pmask, p, &evmask)) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_config->pm_caps |= PMC_CAP_QUALIFIER;
|
2018-05-31 22:41:07 +00:00
|
|
|
} else if (KWMATCH(p, K8_KW_OS)) {
|
|
|
|
pmc_config->pm_caps |= PMC_CAP_SYSTEM;
|
|
|
|
} else if (KWMATCH(p, K8_KW_USR)) {
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_config->pm_caps |= PMC_CAP_USER;
|
|
|
|
} else
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 22:41:07 +00:00
|
|
|
/* other post processing */
|
2005-06-09 19:45:09 +00:00
|
|
|
switch (pe) {
|
2018-05-31 22:41:07 +00:00
|
|
|
case PMC_EV_K8_FP_DISPATCHED_FPU_OPS:
|
|
|
|
case PMC_EV_K8_FP_CYCLES_WITH_NO_FPU_OPS_RETIRED:
|
|
|
|
case PMC_EV_K8_FP_DISPATCHED_FPU_FAST_FLAG_OPS:
|
|
|
|
case PMC_EV_K8_FR_RETIRED_FASTPATH_DOUBLE_OP_INSTRUCTIONS:
|
|
|
|
case PMC_EV_K8_FR_RETIRED_FPU_INSTRUCTIONS:
|
|
|
|
case PMC_EV_K8_FR_FPU_EXCEPTIONS:
|
|
|
|
/* XXX only available in rev B and later */
|
2005-06-09 19:45:09 +00:00
|
|
|
break;
|
2018-05-31 22:41:07 +00:00
|
|
|
case PMC_EV_K8_DC_DCACHE_ACCESSES_BY_LOCKS:
|
|
|
|
/* XXX only available in rev C and later */
|
|
|
|
break;
|
|
|
|
case PMC_EV_K8_LS_LOCKED_OPERATION:
|
|
|
|
/* XXX CPU Rev A,B evmask is to be zero */
|
|
|
|
if (evmask & (evmask - 1)) /* > 1 bit set */
|
|
|
|
return (-1);
|
|
|
|
if (evmask == 0) {
|
|
|
|
evmask = 0x01; /* Rev C and later: #instrs */
|
|
|
|
pmc_config->pm_caps |= PMC_CAP_QUALIFIER;
|
|
|
|
}
|
2005-06-09 19:45:09 +00:00
|
|
|
break;
|
|
|
|
default:
|
2018-05-31 22:41:07 +00:00
|
|
|
if (evmask == 0 && pmask != NULL) {
|
2005-06-09 19:45:09 +00:00
|
|
|
for (pm = pmask; pm->pm_name; pm++)
|
|
|
|
evmask |= pm->pm_value;
|
|
|
|
pmc_config->pm_caps |= PMC_CAP_QUALIFIER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pmc_config->pm_caps & PMC_CAP_QUALIFIER)
|
2018-05-31 22:41:07 +00:00
|
|
|
pmc_config->pm_md.pm_amd.pm_amd_config =
|
|
|
|
AMD_PMC_TO_UNITMASK(evmask);
|
2005-06-09 19:45:09 +00:00
|
|
|
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
#if defined(__i386__) || defined(__amd64__)
|
|
|
|
static int
|
|
|
|
tsc_allocate_pmc(enum pmc_event pe, char *ctrspec,
|
|
|
|
struct pmc_op_pmcallocate *pmc_config)
|
|
|
|
{
|
|
|
|
if (pe != PMC_EV_TSC_TSC)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
/* TSC events must be unqualified. */
|
|
|
|
if (ctrspec && *ctrspec != '\0')
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
pmc_config->pm_md.pm_amd.pm_amd_config = 0;
|
|
|
|
pmc_config->pm_caps |= PMC_CAP_READ;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-03-28 20:58:30 +00:00
|
|
|
static struct pmc_event_alias generic_aliases[] = {
|
|
|
|
EV_ALIAS("instructions", "SOFT-CLOCK.HARD"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
soft_allocate_pmc(enum pmc_event pe, char *ctrspec,
|
|
|
|
struct pmc_op_pmcallocate *pmc_config)
|
|
|
|
{
|
|
|
|
(void)ctrspec;
|
|
|
|
(void)pmc_config;
|
|
|
|
|
2012-11-05 18:49:21 +00:00
|
|
|
if ((int)pe < PMC_EV_SOFT_FIRST || (int)pe > PMC_EV_SOFT_LAST)
|
2012-03-28 20:58:30 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
pmc_config->pm_caps |= (PMC_CAP_READ | PMC_CAP_WRITE);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2015-01-28 16:08:07 +00:00
|
|
|
#if defined(__arm__)
|
2015-06-10 12:42:30 +00:00
|
|
|
static struct pmc_event_alias cortex_a8_aliases[] = {
|
2015-01-28 16:08:07 +00:00
|
|
|
EV_ALIAS("dc-misses", "L1_DCACHE_REFILL"),
|
|
|
|
EV_ALIAS("ic-misses", "L1_ICACHE_REFILL"),
|
|
|
|
EV_ALIAS("instructions", "INSTR_EXECUTED"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
2015-06-10 12:42:30 +00:00
|
|
|
|
|
|
|
static struct pmc_event_alias cortex_a9_aliases[] = {
|
|
|
|
EV_ALIAS("dc-misses", "L1_DCACHE_REFILL"),
|
|
|
|
EV_ALIAS("ic-misses", "L1_ICACHE_REFILL"),
|
|
|
|
EV_ALIAS("instructions", "INSTR_EXECUTED"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2015-01-28 16:08:07 +00:00
|
|
|
static int
|
|
|
|
armv7_allocate_pmc(enum pmc_event pe, char *ctrspec __unused,
|
|
|
|
struct pmc_op_pmcallocate *pmc_config __unused)
|
|
|
|
{
|
|
|
|
switch (pe) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-05-19 15:25:47 +00:00
|
|
|
#if defined(__aarch64__)
|
|
|
|
static struct pmc_event_alias cortex_a53_aliases[] = {
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
static struct pmc_event_alias cortex_a57_aliases[] = {
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
2020-08-12 10:17:17 +00:00
|
|
|
static struct pmc_event_alias cortex_a76_aliases[] = {
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
2015-05-19 15:25:47 +00:00
|
|
|
static int
|
|
|
|
arm64_allocate_pmc(enum pmc_event pe, char *ctrspec __unused,
|
|
|
|
struct pmc_op_pmcallocate *pmc_config __unused)
|
|
|
|
{
|
|
|
|
switch (pe) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-03-03 15:05:58 +00:00
|
|
|
#if defined(__mips__)
|
|
|
|
|
2019-09-18 16:13:50 +00:00
|
|
|
static struct pmc_event_alias beri_aliases[] = {
|
|
|
|
EV_ALIAS("instructions", "INST"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2010-03-03 15:05:58 +00:00
|
|
|
static struct pmc_event_alias mips24k_aliases[] = {
|
|
|
|
EV_ALIAS("instructions", "INSTR_EXECUTED"),
|
|
|
|
EV_ALIAS("branches", "BRANCH_COMPLETED"),
|
|
|
|
EV_ALIAS("branch-mispredicts", "BRANCH_MISPRED"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2015-04-05 02:57:02 +00:00
|
|
|
static struct pmc_event_alias mips74k_aliases[] = {
|
|
|
|
EV_ALIAS("instructions", "INSTR_EXECUTED"),
|
|
|
|
EV_ALIAS("branches", "BRANCH_INSNS"),
|
|
|
|
EV_ALIAS("branch-mispredicts", "MISPREDICTED_BRANCH_INSNS"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2012-03-23 00:10:21 +00:00
|
|
|
static struct pmc_event_alias octeon_aliases[] = {
|
|
|
|
EV_ALIAS("instructions", "RET"),
|
|
|
|
EV_ALIAS("branches", "BR"),
|
|
|
|
EV_ALIAS("branch-mispredicts", "BRMIS"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2012-03-22 18:07:44 +00:00
|
|
|
#define MIPS_KW_OS "os"
|
|
|
|
#define MIPS_KW_USR "usr"
|
|
|
|
#define MIPS_KW_ANYTHREAD "anythread"
|
2010-03-03 15:05:58 +00:00
|
|
|
|
|
|
|
static int
|
2012-03-22 18:07:44 +00:00
|
|
|
mips_allocate_pmc(enum pmc_event pe, char *ctrspec __unused,
|
2010-03-03 15:05:58 +00:00
|
|
|
struct pmc_op_pmcallocate *pmc_config __unused)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
(void) pe;
|
|
|
|
|
|
|
|
pmc_config->pm_caps |= (PMC_CAP_READ | PMC_CAP_WRITE);
|
|
|
|
|
|
|
|
while ((p = strsep(&ctrspec, ",")) != NULL) {
|
2012-03-22 18:07:44 +00:00
|
|
|
if (KWMATCH(p, MIPS_KW_OS))
|
2010-03-03 15:05:58 +00:00
|
|
|
pmc_config->pm_caps |= PMC_CAP_SYSTEM;
|
2012-03-22 18:07:44 +00:00
|
|
|
else if (KWMATCH(p, MIPS_KW_USR))
|
2010-03-03 15:05:58 +00:00
|
|
|
pmc_config->pm_caps |= PMC_CAP_USER;
|
2012-03-22 18:07:44 +00:00
|
|
|
else if (KWMATCH(p, MIPS_KW_ANYTHREAD))
|
2010-03-03 15:05:58 +00:00
|
|
|
pmc_config->pm_caps |= (PMC_CAP_USER | PMC_CAP_SYSTEM);
|
|
|
|
else
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
2012-03-22 18:07:44 +00:00
|
|
|
|
2010-03-03 15:05:58 +00:00
|
|
|
#endif /* __mips__ */
|
|
|
|
|
2011-12-24 19:34:52 +00:00
|
|
|
#if defined(__powerpc__)
|
|
|
|
|
|
|
|
static struct pmc_event_alias ppc7450_aliases[] = {
|
|
|
|
EV_ALIAS("instructions", "INSTR_COMPLETED"),
|
|
|
|
EV_ALIAS("branches", "BRANCHES_COMPLETED"),
|
|
|
|
EV_ALIAS("branch-mispredicts", "MISPREDICTED_BRANCHES"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2014-02-01 02:03:50 +00:00
|
|
|
static struct pmc_event_alias ppc970_aliases[] = {
|
|
|
|
EV_ALIAS("instructions", "INSTR_COMPLETED"),
|
|
|
|
EV_ALIAS("cycles", "CYCLES"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2020-11-05 16:41:28 +00:00
|
|
|
static struct pmc_event_alias power8_aliases[] = {
|
|
|
|
EV_ALIAS("instructions", "INSTR_COMPLETED"),
|
|
|
|
EV_ALIAS("cycles", "CYCLES"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2015-04-18 21:39:17 +00:00
|
|
|
static struct pmc_event_alias e500_aliases[] = {
|
|
|
|
EV_ALIAS("instructions", "INSTR_COMPLETED"),
|
|
|
|
EV_ALIAS("cycles", "CYCLES"),
|
|
|
|
EV_ALIAS(NULL, NULL)
|
|
|
|
};
|
|
|
|
|
2014-02-01 02:03:50 +00:00
|
|
|
#define POWERPC_KW_OS "os"
|
|
|
|
#define POWERPC_KW_USR "usr"
|
|
|
|
#define POWERPC_KW_ANYTHREAD "anythread"
|
2011-12-24 19:34:52 +00:00
|
|
|
|
|
|
|
static int
|
2014-02-01 02:03:50 +00:00
|
|
|
powerpc_allocate_pmc(enum pmc_event pe, char *ctrspec __unused,
|
|
|
|
struct pmc_op_pmcallocate *pmc_config __unused)
|
2011-12-24 19:34:52 +00:00
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
(void) pe;
|
|
|
|
|
|
|
|
pmc_config->pm_caps |= (PMC_CAP_READ | PMC_CAP_WRITE);
|
|
|
|
|
|
|
|
while ((p = strsep(&ctrspec, ",")) != NULL) {
|
2014-02-01 02:03:50 +00:00
|
|
|
if (KWMATCH(p, POWERPC_KW_OS))
|
2011-12-24 19:34:52 +00:00
|
|
|
pmc_config->pm_caps |= PMC_CAP_SYSTEM;
|
2014-02-01 02:03:50 +00:00
|
|
|
else if (KWMATCH(p, POWERPC_KW_USR))
|
2011-12-24 19:34:52 +00:00
|
|
|
pmc_config->pm_caps |= PMC_CAP_USER;
|
2014-02-01 02:03:50 +00:00
|
|
|
else if (KWMATCH(p, POWERPC_KW_ANYTHREAD))
|
2011-12-24 19:34:52 +00:00
|
|
|
pmc_config->pm_caps |= (PMC_CAP_USER | PMC_CAP_SYSTEM);
|
|
|
|
else
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
2014-02-01 02:03:50 +00:00
|
|
|
|
2011-12-24 19:34:52 +00:00
|
|
|
#endif /* __powerpc__ */
|
|
|
|
|
2010-03-03 15:05:58 +00:00
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
/*
|
|
|
|
* Match an event name `name' with its canonical form.
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
*
|
|
|
|
* Matches are case insensitive and spaces, periods, underscores and
|
|
|
|
* hyphen characters are considered to match each other.
|
2008-10-09 14:55:45 +00:00
|
|
|
*
|
|
|
|
* Returns 1 for a match, 0 otherwise.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
pmc_match_event_name(const char *name, const char *canonicalname)
|
|
|
|
{
|
|
|
|
int cc, nc;
|
|
|
|
const unsigned char *c, *n;
|
|
|
|
|
|
|
|
c = (const unsigned char *) canonicalname;
|
|
|
|
n = (const unsigned char *) name;
|
|
|
|
|
|
|
|
for (; (nc = *n) && (cc = *c); n++, c++) {
|
|
|
|
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
if ((nc == ' ' || nc == '_' || nc == '-' || nc == '.') &&
|
|
|
|
(cc == ' ' || cc == '_' || cc == '-' || cc == '.'))
|
2008-10-09 14:55:45 +00:00
|
|
|
continue;
|
|
|
|
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
if (toupper(nc) == toupper(cc))
|
2008-10-09 14:55:45 +00:00
|
|
|
continue;
|
|
|
|
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*n == '\0' && *c == '\0')
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Match an event name against all the event named supported by a
|
|
|
|
* PMC class.
|
|
|
|
*
|
|
|
|
* Returns an event descriptor pointer on match or NULL otherwise.
|
|
|
|
*/
|
|
|
|
static const struct pmc_event_descr *
|
|
|
|
pmc_match_event_class(const char *name,
|
|
|
|
const struct pmc_class_descr *pcd)
|
|
|
|
{
|
|
|
|
size_t n;
|
|
|
|
const struct pmc_event_descr *ev;
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
ev = pcd->pm_evc_event_table;
|
|
|
|
for (n = 0; n < pcd->pm_evc_event_table_size; n++, ev++)
|
|
|
|
if (pmc_match_event_name(name, ev->pm_ev_name))
|
|
|
|
return (ev);
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
/*
|
|
|
|
* API entry points
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_allocate(const char *ctrspec, enum pmc_mode mode,
|
2018-06-06 02:48:09 +00:00
|
|
|
uint32_t flags, int cpu, pmc_id_t *pmcid,
|
|
|
|
uint64_t count)
|
2005-06-09 19:45:09 +00:00
|
|
|
{
|
2008-10-09 14:55:45 +00:00
|
|
|
size_t n;
|
2005-06-09 19:45:09 +00:00
|
|
|
int retval;
|
|
|
|
char *r, *spec_copy;
|
|
|
|
const char *ctrname;
|
2008-10-09 14:55:45 +00:00
|
|
|
const struct pmc_event_descr *ev;
|
|
|
|
const struct pmc_event_alias *alias;
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_pmcallocate pmc_config;
|
2008-10-09 14:55:45 +00:00
|
|
|
const struct pmc_class_descr *pcd;
|
2005-06-09 19:45:09 +00:00
|
|
|
|
|
|
|
spec_copy = NULL;
|
|
|
|
retval = -1;
|
|
|
|
|
|
|
|
if (mode != PMC_MODE_SS && mode != PMC_MODE_TS &&
|
|
|
|
mode != PMC_MODE_SC && mode != PMC_MODE_TC) {
|
2018-05-29 20:30:46 +00:00
|
|
|
errno = EINVAL;
|
|
|
|
goto out;
|
2018-05-26 19:29:19 +00:00
|
|
|
}
|
|
|
|
bzero(&pmc_config, sizeof(pmc_config));
|
|
|
|
pmc_config.pm_cpu = cpu;
|
|
|
|
pmc_config.pm_mode = mode;
|
|
|
|
pmc_config.pm_flags = flags;
|
2018-06-06 02:48:09 +00:00
|
|
|
pmc_config.pm_count = count;
|
2018-05-26 19:29:19 +00:00
|
|
|
if (PMC_IS_SAMPLING_MODE(mode))
|
|
|
|
pmc_config.pm_caps |= PMC_CAP_INTERRUPT;
|
2021-05-13 18:57:37 +00:00
|
|
|
|
2018-05-26 19:29:19 +00:00
|
|
|
/*
|
2021-05-13 18:57:37 +00:00
|
|
|
* Try to pull the raw event ID directly from the pmu-events table. If
|
|
|
|
* this is unsupported on the platform, or the event is not found,
|
|
|
|
* continue with searching the regular event tables.
|
2018-05-26 19:29:19 +00:00
|
|
|
*/
|
|
|
|
r = spec_copy = strdup(ctrspec);
|
|
|
|
ctrname = strsep(&r, ",");
|
2018-06-04 21:17:46 +00:00
|
|
|
if (pmc_pmu_enabled()) {
|
2021-05-13 18:57:37 +00:00
|
|
|
if (pmc_pmu_pmcallocate(ctrname, &pmc_config) == 0)
|
|
|
|
goto found;
|
|
|
|
|
|
|
|
/* Otherwise, reset any changes */
|
|
|
|
pmc_config.pm_ev = 0;
|
|
|
|
pmc_config.pm_caps = 0;
|
|
|
|
pmc_config.pm_class = 0;
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
2021-05-13 18:57:37 +00:00
|
|
|
free(spec_copy);
|
|
|
|
spec_copy = NULL;
|
2005-06-09 19:45:09 +00:00
|
|
|
|
|
|
|
/* replace an event alias with the canonical event specifier */
|
|
|
|
if (pmc_mdep_event_aliases)
|
2008-10-09 14:55:45 +00:00
|
|
|
for (alias = pmc_mdep_event_aliases; alias->pm_alias; alias++)
|
|
|
|
if (!strcasecmp(ctrspec, alias->pm_alias)) {
|
|
|
|
spec_copy = strdup(alias->pm_spec);
|
2005-06-09 19:45:09 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (spec_copy == NULL)
|
|
|
|
spec_copy = strdup(ctrspec);
|
|
|
|
|
|
|
|
r = spec_copy;
|
|
|
|
ctrname = strsep(&r, ",");
|
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
/*
|
|
|
|
* If a explicit class prefix was given by the user, restrict the
|
|
|
|
* search for the event to the specified PMC class.
|
|
|
|
*/
|
|
|
|
ev = NULL;
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
for (n = 0; n < PMC_CLASS_TABLE_SIZE; n++) {
|
|
|
|
pcd = pmc_class_table[n];
|
2021-05-13 19:00:07 +00:00
|
|
|
if (pcd != NULL && strncasecmp(ctrname, pcd->pm_evc_name,
|
|
|
|
pcd->pm_evc_name_size) == 0) {
|
2008-10-09 14:55:45 +00:00
|
|
|
if ((ev = pmc_match_event_class(ctrname +
|
|
|
|
pcd->pm_evc_name_size, pcd)) == NULL) {
|
|
|
|
errno = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2005-06-09 19:45:09 +00:00
|
|
|
break;
|
2008-10-09 14:55:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Otherwise, search for this event in all compatible PMC
|
|
|
|
* classes.
|
|
|
|
*/
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
for (n = 0; ev == NULL && n < PMC_CLASS_TABLE_SIZE; n++) {
|
|
|
|
pcd = pmc_class_table[n];
|
2021-05-13 19:00:07 +00:00
|
|
|
if (pcd != NULL)
|
2008-10-09 14:55:45 +00:00
|
|
|
ev = pmc_match_event_class(ctrname, pcd);
|
|
|
|
}
|
2005-06-09 19:45:09 +00:00
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
if (ev == NULL) {
|
2005-06-09 19:45:09 +00:00
|
|
|
errno = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
pmc_config.pm_ev = ev->pm_ev_code;
|
|
|
|
pmc_config.pm_class = pcd->pm_evc_class;
|
2005-06-09 19:45:09 +00:00
|
|
|
|
2008-10-09 14:55:45 +00:00
|
|
|
if (pcd->pm_evc_allocate_pmc(ev->pm_ev_code, r, &pmc_config) < 0) {
|
2005-06-09 19:45:09 +00:00
|
|
|
errno = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2021-05-13 18:57:37 +00:00
|
|
|
found:
|
|
|
|
if (PMC_CALL(PMCALLOCATE, &pmc_config) == 0) {
|
|
|
|
*pmcid = pmc_config.pm_pmcid;
|
|
|
|
retval = 0;
|
|
|
|
}
|
|
|
|
out:
|
2005-06-09 19:45:09 +00:00
|
|
|
if (spec_copy)
|
|
|
|
free(spec_copy);
|
|
|
|
|
2007-12-07 13:52:51 +00:00
|
|
|
return (retval);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_attach(pmc_id_t pmc, pid_t pid)
|
|
|
|
{
|
|
|
|
struct pmc_op_pmcattach pmc_attach_args;
|
|
|
|
|
|
|
|
pmc_attach_args.pm_pmc = pmc;
|
|
|
|
pmc_attach_args.pm_pid = pid;
|
|
|
|
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(PMCATTACH, &pmc_attach_args));
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_capabilities(pmc_id_t pmcid, uint32_t *caps)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
enum pmc_class cl;
|
|
|
|
|
|
|
|
cl = PMC_ID_TO_CLASS(pmcid);
|
|
|
|
for (i = 0; i < cpu_info.pm_nclass; i++)
|
|
|
|
if (cpu_info.pm_classes[i].pm_class == cl) {
|
|
|
|
*caps = cpu_info.pm_classes[i].pm_caps;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
2008-03-12 15:51:32 +00:00
|
|
|
errno = EINVAL;
|
|
|
|
return (-1);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_configure_logfile(int fd)
|
|
|
|
{
|
|
|
|
struct pmc_op_configurelog cla;
|
|
|
|
|
|
|
|
cla.pm_logfd = fd;
|
|
|
|
if (PMC_CALL(CONFIGURELOG, &cla) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
|
|
|
return (0);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_cpuinfo(const struct pmc_cpuinfo **pci)
|
|
|
|
{
|
|
|
|
if (pmc_syscall == -1) {
|
|
|
|
errno = ENXIO;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
2005-06-10 03:45:04 +00:00
|
|
|
*pci = &cpu_info;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_detach(pmc_id_t pmc, pid_t pid)
|
|
|
|
{
|
|
|
|
struct pmc_op_pmcattach pmc_detach_args;
|
|
|
|
|
|
|
|
pmc_detach_args.pm_pmc = pmc;
|
|
|
|
pmc_detach_args.pm_pid = pid;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(PMCDETACH, &pmc_detach_args));
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_disable(int cpu, int pmc)
|
|
|
|
{
|
|
|
|
struct pmc_op_pmcadmin ssa;
|
|
|
|
|
|
|
|
ssa.pm_cpu = cpu;
|
|
|
|
ssa.pm_pmc = pmc;
|
|
|
|
ssa.pm_state = PMC_STATE_DISABLED;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(PMCADMIN, &ssa));
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_enable(int cpu, int pmc)
|
|
|
|
{
|
|
|
|
struct pmc_op_pmcadmin ssa;
|
|
|
|
|
|
|
|
ssa.pm_cpu = cpu;
|
|
|
|
ssa.pm_pmc = pmc;
|
|
|
|
ssa.pm_state = PMC_STATE_FREE;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(PMCADMIN, &ssa));
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return a list of events known to a given PMC class. 'cl' is the
|
|
|
|
* PMC class identifier, 'eventnames' is the returned list of 'const
|
|
|
|
* char *' pointers pointing to the names of the events. 'nevents' is
|
|
|
|
* the number of event name pointers returned.
|
|
|
|
*
|
|
|
|
* The space for 'eventnames' is allocated using malloc(3). The caller
|
|
|
|
* is responsible for freeing this space when done.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
pmc_event_names_of_class(enum pmc_class cl, const char ***eventnames,
|
|
|
|
int *nevents)
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
const char **names;
|
|
|
|
const struct pmc_event_descr *ev;
|
|
|
|
|
|
|
|
switch (cl)
|
|
|
|
{
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
case PMC_CLASS_IAF:
|
|
|
|
ev = iaf_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(iaf);
|
|
|
|
break;
|
2005-06-09 19:45:09 +00:00
|
|
|
case PMC_CLASS_TSC:
|
2008-10-09 14:55:45 +00:00
|
|
|
ev = tsc_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(tsc);
|
2005-06-09 19:45:09 +00:00
|
|
|
break;
|
|
|
|
case PMC_CLASS_K8:
|
2008-10-09 14:55:45 +00:00
|
|
|
ev = k8_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(k8);
|
|
|
|
break;
|
2015-01-28 16:08:07 +00:00
|
|
|
case PMC_CLASS_ARMV7:
|
2015-06-10 12:42:30 +00:00
|
|
|
switch (cpu_info.pm_cputype) {
|
|
|
|
default:
|
|
|
|
case PMC_CPU_ARMV7_CORTEX_A8:
|
|
|
|
ev = cortex_a8_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(cortex_a8);
|
|
|
|
break;
|
|
|
|
case PMC_CPU_ARMV7_CORTEX_A9:
|
|
|
|
ev = cortex_a9_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(cortex_a9);
|
|
|
|
break;
|
|
|
|
}
|
2015-01-28 16:08:07 +00:00
|
|
|
break;
|
2015-05-19 15:25:47 +00:00
|
|
|
case PMC_CLASS_ARMV8:
|
|
|
|
switch (cpu_info.pm_cputype) {
|
|
|
|
default:
|
|
|
|
case PMC_CPU_ARMV8_CORTEX_A53:
|
|
|
|
ev = cortex_a53_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(cortex_a53);
|
|
|
|
break;
|
|
|
|
case PMC_CPU_ARMV8_CORTEX_A57:
|
|
|
|
ev = cortex_a57_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(cortex_a57);
|
|
|
|
break;
|
2020-08-12 10:17:17 +00:00
|
|
|
case PMC_CPU_ARMV8_CORTEX_A76:
|
|
|
|
ev = cortex_a76_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(cortex_a76);
|
|
|
|
break;
|
2015-05-19 15:25:47 +00:00
|
|
|
}
|
|
|
|
break;
|
2019-09-18 16:13:50 +00:00
|
|
|
case PMC_CLASS_BERI:
|
|
|
|
ev = beri_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(beri);
|
|
|
|
break;
|
2010-03-03 15:05:58 +00:00
|
|
|
case PMC_CLASS_MIPS24K:
|
|
|
|
ev = mips24k_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(mips24k);
|
|
|
|
break;
|
2015-04-05 02:57:02 +00:00
|
|
|
case PMC_CLASS_MIPS74K:
|
|
|
|
ev = mips74k_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(mips74k);
|
|
|
|
break;
|
2012-03-23 00:10:21 +00:00
|
|
|
case PMC_CLASS_OCTEON:
|
|
|
|
ev = octeon_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(octeon);
|
|
|
|
break;
|
2011-12-24 19:34:52 +00:00
|
|
|
case PMC_CLASS_PPC7450:
|
|
|
|
ev = ppc7450_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(ppc7450);
|
|
|
|
break;
|
2014-02-01 02:03:50 +00:00
|
|
|
case PMC_CLASS_PPC970:
|
|
|
|
ev = ppc970_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(ppc970);
|
|
|
|
break;
|
2020-11-05 16:41:28 +00:00
|
|
|
case PMC_CLASS_POWER8:
|
|
|
|
ev = power8_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(power8);
|
|
|
|
break;
|
2015-04-18 21:39:17 +00:00
|
|
|
case PMC_CLASS_E500:
|
|
|
|
ev = e500_event_table;
|
|
|
|
count = PMC_EVENT_TABLE_SIZE(e500);
|
|
|
|
break;
|
2012-03-28 20:58:30 +00:00
|
|
|
case PMC_CLASS_SOFT:
|
|
|
|
ev = soft_event_table;
|
|
|
|
count = soft_event_info.pm_nevent;
|
|
|
|
break;
|
2005-04-19 04:01:25 +00:00
|
|
|
default:
|
2005-06-09 19:45:09 +00:00
|
|
|
errno = EINVAL;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
if ((names = malloc(count * sizeof(const char *))) == NULL)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
*eventnames = names;
|
|
|
|
*nevents = count;
|
|
|
|
|
|
|
|
for (;count--; ev++, names++)
|
|
|
|
*names = ev->pm_ev_name;
|
2012-03-28 20:58:30 +00:00
|
|
|
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
int
|
|
|
|
pmc_flush_logfile(void)
|
|
|
|
{
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(FLUSHLOG,0));
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
2011-10-18 15:25:43 +00:00
|
|
|
int
|
|
|
|
pmc_close_logfile(void)
|
|
|
|
{
|
|
|
|
return (PMC_CALL(CLOSELOG,0));
|
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
int
|
|
|
|
pmc_get_driver_stats(struct pmc_driverstats *ds)
|
|
|
|
{
|
|
|
|
struct pmc_op_getdriverstats gms;
|
|
|
|
|
|
|
|
if (PMC_CALL(GETDRIVERSTATS, &gms) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-06-09 19:45:09 +00:00
|
|
|
|
|
|
|
/* copy out fields in the current userland<->library interface */
|
|
|
|
ds->pm_intr_ignored = gms.pm_intr_ignored;
|
|
|
|
ds->pm_intr_processed = gms.pm_intr_processed;
|
|
|
|
ds->pm_intr_bufferfull = gms.pm_intr_bufferfull;
|
|
|
|
ds->pm_syscalls = gms.pm_syscalls;
|
|
|
|
ds->pm_syscall_errors = gms.pm_syscall_errors;
|
|
|
|
ds->pm_buffer_requests = gms.pm_buffer_requests;
|
|
|
|
ds->pm_buffer_requests_failed = gms.pm_buffer_requests_failed;
|
|
|
|
ds->pm_log_sweeps = gms.pm_log_sweeps;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_get_msr(pmc_id_t pmc, uint32_t *msr)
|
|
|
|
{
|
|
|
|
struct pmc_op_getmsr gm;
|
|
|
|
|
|
|
|
gm.pm_pmcid = pmc;
|
|
|
|
if (PMC_CALL(PMCGETMSR, &gm) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-06-09 19:45:09 +00:00
|
|
|
*msr = gm.pm_msr;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
2005-04-19 04:01:25 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
pmc_init(void)
|
|
|
|
{
|
|
|
|
int error, pmc_mod_id;
|
2005-06-10 03:45:04 +00:00
|
|
|
unsigned int n;
|
2005-04-19 04:01:25 +00:00
|
|
|
uint32_t abi_version;
|
|
|
|
struct module_stat pmc_modstat;
|
2005-06-10 03:45:04 +00:00
|
|
|
struct pmc_op_getcpuinfo op_cpu_info;
|
2005-04-19 04:01:25 +00:00
|
|
|
|
|
|
|
if (pmc_syscall != -1) /* already inited */
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
|
|
|
/* retrieve the system call number from the KLD */
|
|
|
|
if ((pmc_mod_id = modfind(PMC_MODULE_NAME)) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
|
|
|
pmc_modstat.version = sizeof(struct module_stat);
|
|
|
|
if ((error = modstat(pmc_mod_id, &pmc_modstat)) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
|
|
|
pmc_syscall = pmc_modstat.data.intval;
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
/* check the kernel module's ABI against our compiled-in version */
|
|
|
|
abi_version = PMC_VERSION;
|
2005-04-19 04:01:25 +00:00
|
|
|
if (PMC_CALL(GETMODULEVERSION, &abi_version) < 0)
|
|
|
|
return (pmc_syscall = -1);
|
|
|
|
|
2016-05-01 19:37:33 +00:00
|
|
|
/* ignore patch & minor numbers for the comparison */
|
2005-06-09 19:45:09 +00:00
|
|
|
if ((abi_version & 0xFF000000) != (PMC_VERSION & 0xFF000000)) {
|
2005-04-19 04:01:25 +00:00
|
|
|
errno = EPROGMISMATCH;
|
|
|
|
return (pmc_syscall = -1);
|
|
|
|
}
|
|
|
|
|
2018-05-30 04:12:51 +00:00
|
|
|
bzero(&op_cpu_info, sizeof(op_cpu_info));
|
2005-06-10 03:45:04 +00:00
|
|
|
if (PMC_CALL(GETCPUINFO, &op_cpu_info) < 0)
|
2005-04-19 04:01:25 +00:00
|
|
|
return (pmc_syscall = -1);
|
|
|
|
|
2005-06-10 03:45:04 +00:00
|
|
|
cpu_info.pm_cputype = op_cpu_info.pm_cputype;
|
|
|
|
cpu_info.pm_ncpu = op_cpu_info.pm_ncpu;
|
|
|
|
cpu_info.pm_npmc = op_cpu_info.pm_npmc;
|
|
|
|
cpu_info.pm_nclass = op_cpu_info.pm_nclass;
|
2018-05-30 04:12:51 +00:00
|
|
|
for (n = 0; n < op_cpu_info.pm_nclass; n++)
|
2018-01-13 04:53:04 +00:00
|
|
|
memcpy(&cpu_info.pm_classes[n], &op_cpu_info.pm_classes[n],
|
|
|
|
sizeof(cpu_info.pm_classes[n]));
|
2005-06-10 03:45:04 +00:00
|
|
|
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
pmc_class_table = malloc(PMC_CLASS_TABLE_SIZE *
|
|
|
|
sizeof(struct pmc_class_descr *));
|
|
|
|
|
|
|
|
if (pmc_class_table == NULL)
|
|
|
|
return (-1);
|
|
|
|
|
2009-10-24 04:11:40 +00:00
|
|
|
for (n = 0; n < PMC_CLASS_TABLE_SIZE; n++)
|
|
|
|
pmc_class_table[n] = NULL;
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
|
2012-03-28 20:58:30 +00:00
|
|
|
/*
|
|
|
|
* Get soft events list.
|
|
|
|
*/
|
|
|
|
soft_event_info.pm_class = PMC_CLASS_SOFT;
|
|
|
|
if (PMC_CALL(GETDYNEVENTINFO, &soft_event_info) < 0)
|
|
|
|
return (pmc_syscall = -1);
|
|
|
|
|
|
|
|
/* Map soft events to static list. */
|
|
|
|
for (n = 0; n < soft_event_info.pm_nevent; n++) {
|
|
|
|
soft_event_table[n].pm_ev_name =
|
|
|
|
soft_event_info.pm_events[n].pm_ev_name;
|
|
|
|
soft_event_table[n].pm_ev_code =
|
|
|
|
soft_event_info.pm_events[n].pm_ev_code;
|
|
|
|
}
|
|
|
|
soft_class_table_descr.pm_evc_event_table_size = \
|
|
|
|
soft_event_info.pm_nevent;
|
|
|
|
soft_class_table_descr.pm_evc_event_table = \
|
|
|
|
soft_event_table;
|
|
|
|
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
/*
|
|
|
|
* Fill in the class table.
|
|
|
|
*/
|
|
|
|
n = 0;
|
2012-03-28 20:58:30 +00:00
|
|
|
|
|
|
|
/* Fill soft events information. */
|
|
|
|
pmc_class_table[n++] = &soft_class_table_descr;
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
2012-03-28 20:58:30 +00:00
|
|
|
if (cpu_info.pm_cputype != PMC_CPU_GENERIC)
|
|
|
|
pmc_class_table[n++] = &tsc_class_table_descr;
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
#endif
|
|
|
|
|
2021-05-13 19:00:07 +00:00
|
|
|
#define PMC_MDEP_INIT(C) pmc_mdep_event_aliases = C##_aliases
|
2008-10-09 14:55:45 +00:00
|
|
|
|
|
|
|
/* Configure the event name parser. */
|
2005-04-19 04:01:25 +00:00
|
|
|
switch (cpu_info.pm_cputype) {
|
2005-07-03 16:33:22 +00:00
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
2005-04-19 04:01:25 +00:00
|
|
|
case PMC_CPU_AMD_K8:
|
2008-10-09 14:55:45 +00:00
|
|
|
PMC_MDEP_INIT(k8);
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
pmc_class_table[n] = &k8_class_table_descr;
|
|
|
|
break;
|
2005-04-19 04:01:25 +00:00
|
|
|
#endif
|
2012-03-28 20:58:30 +00:00
|
|
|
case PMC_CPU_GENERIC:
|
|
|
|
PMC_MDEP_INIT(generic);
|
|
|
|
break;
|
2015-01-28 16:08:07 +00:00
|
|
|
#if defined(__arm__)
|
2015-06-10 12:42:30 +00:00
|
|
|
case PMC_CPU_ARMV7_CORTEX_A8:
|
|
|
|
PMC_MDEP_INIT(cortex_a8);
|
|
|
|
pmc_class_table[n] = &cortex_a8_class_table_descr;
|
|
|
|
break;
|
|
|
|
case PMC_CPU_ARMV7_CORTEX_A9:
|
|
|
|
PMC_MDEP_INIT(cortex_a9);
|
|
|
|
pmc_class_table[n] = &cortex_a9_class_table_descr;
|
2015-01-28 16:08:07 +00:00
|
|
|
break;
|
2009-12-23 23:16:54 +00:00
|
|
|
#endif
|
2015-05-19 15:25:47 +00:00
|
|
|
#if defined(__aarch64__)
|
|
|
|
case PMC_CPU_ARMV8_CORTEX_A53:
|
|
|
|
PMC_MDEP_INIT(cortex_a53);
|
|
|
|
pmc_class_table[n] = &cortex_a53_class_table_descr;
|
|
|
|
break;
|
|
|
|
case PMC_CPU_ARMV8_CORTEX_A57:
|
|
|
|
PMC_MDEP_INIT(cortex_a57);
|
|
|
|
pmc_class_table[n] = &cortex_a57_class_table_descr;
|
|
|
|
break;
|
2020-08-12 10:17:17 +00:00
|
|
|
case PMC_CPU_ARMV8_CORTEX_A76:
|
|
|
|
PMC_MDEP_INIT(cortex_a76);
|
|
|
|
pmc_class_table[n] = &cortex_a76_class_table_descr;
|
|
|
|
break;
|
2015-05-19 15:25:47 +00:00
|
|
|
#endif
|
2010-03-03 15:05:58 +00:00
|
|
|
#if defined(__mips__)
|
2019-09-18 16:13:50 +00:00
|
|
|
case PMC_CPU_MIPS_BERI:
|
|
|
|
PMC_MDEP_INIT(beri);
|
|
|
|
pmc_class_table[n] = &beri_class_table_descr;
|
|
|
|
break;
|
2010-03-03 15:05:58 +00:00
|
|
|
case PMC_CPU_MIPS_24K:
|
|
|
|
PMC_MDEP_INIT(mips24k);
|
|
|
|
pmc_class_table[n] = &mips24k_class_table_descr;
|
|
|
|
break;
|
2015-04-05 02:57:02 +00:00
|
|
|
case PMC_CPU_MIPS_74K:
|
|
|
|
PMC_MDEP_INIT(mips74k);
|
|
|
|
pmc_class_table[n] = &mips74k_class_table_descr;
|
|
|
|
break;
|
2012-03-23 00:10:21 +00:00
|
|
|
case PMC_CPU_MIPS_OCTEON:
|
|
|
|
PMC_MDEP_INIT(octeon);
|
|
|
|
pmc_class_table[n] = &octeon_class_table_descr;
|
|
|
|
break;
|
2010-03-03 15:05:58 +00:00
|
|
|
#endif /* __mips__ */
|
2011-12-24 19:34:52 +00:00
|
|
|
#if defined(__powerpc__)
|
|
|
|
case PMC_CPU_PPC_7450:
|
|
|
|
PMC_MDEP_INIT(ppc7450);
|
|
|
|
pmc_class_table[n] = &ppc7450_class_table_descr;
|
|
|
|
break;
|
2014-02-01 02:03:50 +00:00
|
|
|
case PMC_CPU_PPC_970:
|
|
|
|
PMC_MDEP_INIT(ppc970);
|
|
|
|
pmc_class_table[n] = &ppc970_class_table_descr;
|
|
|
|
break;
|
2020-11-05 16:41:28 +00:00
|
|
|
case PMC_CPU_PPC_POWER8:
|
|
|
|
PMC_MDEP_INIT(power8);
|
|
|
|
pmc_class_table[n] = &power8_class_table_descr;
|
|
|
|
break;
|
2015-04-18 21:39:17 +00:00
|
|
|
case PMC_CPU_PPC_E500:
|
|
|
|
PMC_MDEP_INIT(e500);
|
|
|
|
pmc_class_table[n] = &e500_class_table_descr;
|
|
|
|
break;
|
2011-12-24 19:34:52 +00:00
|
|
|
#endif
|
2005-04-19 04:01:25 +00:00
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* Some kind of CPU this version of the library knows nothing
|
|
|
|
* about. This shouldn't happen since the abi version check
|
|
|
|
* should have caught this.
|
|
|
|
*/
|
2018-06-01 00:45:48 +00:00
|
|
|
#if defined(__amd64__) || defined(__i386__)
|
|
|
|
break;
|
|
|
|
#endif
|
2005-04-19 04:01:25 +00:00
|
|
|
errno = ENXIO;
|
|
|
|
return (pmc_syscall = -1);
|
|
|
|
}
|
|
|
|
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
const char *
|
|
|
|
pmc_name_of_capability(enum pmc_caps cap)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
int i;
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
/*
|
|
|
|
* 'cap' should have a single bit set and should be in
|
|
|
|
* range.
|
|
|
|
*/
|
|
|
|
if ((cap & (cap - 1)) || cap < PMC_CAP_FIRST ||
|
|
|
|
cap > PMC_CAP_LAST) {
|
2005-04-19 04:01:25 +00:00
|
|
|
errno = EINVAL;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (NULL);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
i = ffs(cap);
|
2007-12-07 13:52:51 +00:00
|
|
|
return (pmc_capability_names[i - 1]);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
const char *
|
|
|
|
pmc_name_of_class(enum pmc_class pc)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2015-05-19 18:58:18 +00:00
|
|
|
size_t n;
|
|
|
|
|
|
|
|
for (n = 0; n < PMC_TABLE_SIZE(pmc_class_names); n++)
|
|
|
|
if (pc == pmc_class_names[n].pm_class)
|
|
|
|
return (pmc_class_names[n].pm_name);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
errno = EINVAL;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (NULL);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
const char *
|
|
|
|
pmc_name_of_cputype(enum pmc_cputype cp)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2008-10-09 14:55:45 +00:00
|
|
|
size_t n;
|
|
|
|
|
|
|
|
for (n = 0; n < PMC_TABLE_SIZE(pmc_cputype_names); n++)
|
|
|
|
if (cp == pmc_cputype_names[n].pm_cputype)
|
|
|
|
return (pmc_cputype_names[n].pm_name);
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
errno = EINVAL;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (NULL);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
const char *
|
|
|
|
pmc_name_of_disposition(enum pmc_disp pd)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
if ((int) pd >= PMC_DISP_FIRST &&
|
|
|
|
pd <= PMC_DISP_LAST)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (pmc_disposition_names[pd]);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
errno = EINVAL;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (NULL);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
const char *
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
_pmc_name_of_event(enum pmc_event pe, enum pmc_cputype cpu)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2008-10-09 14:55:45 +00:00
|
|
|
const struct pmc_event_descr *ev, *evfence;
|
|
|
|
|
|
|
|
ev = evfence = NULL;
|
2018-05-31 22:41:07 +00:00
|
|
|
if (pe >= PMC_EV_K8_FIRST && pe <= PMC_EV_K8_LAST) {
|
2008-10-09 14:55:45 +00:00
|
|
|
ev = k8_event_table;
|
|
|
|
evfence = k8_event_table + PMC_EVENT_TABLE_SIZE(k8);
|
2020-12-25 10:41:34 +00:00
|
|
|
|
2015-01-28 16:08:07 +00:00
|
|
|
} else if (pe >= PMC_EV_ARMV7_FIRST && pe <= PMC_EV_ARMV7_LAST) {
|
2015-06-10 12:42:30 +00:00
|
|
|
switch (cpu) {
|
|
|
|
case PMC_CPU_ARMV7_CORTEX_A8:
|
|
|
|
ev = cortex_a8_event_table;
|
|
|
|
evfence = cortex_a8_event_table + PMC_EVENT_TABLE_SIZE(cortex_a8);
|
|
|
|
break;
|
|
|
|
case PMC_CPU_ARMV7_CORTEX_A9:
|
|
|
|
ev = cortex_a9_event_table;
|
|
|
|
evfence = cortex_a9_event_table + PMC_EVENT_TABLE_SIZE(cortex_a9);
|
|
|
|
break;
|
|
|
|
default: /* Unknown CPU type. */
|
|
|
|
break;
|
|
|
|
}
|
2015-05-19 15:25:47 +00:00
|
|
|
} else if (pe >= PMC_EV_ARMV8_FIRST && pe <= PMC_EV_ARMV8_LAST) {
|
|
|
|
switch (cpu) {
|
|
|
|
case PMC_CPU_ARMV8_CORTEX_A53:
|
|
|
|
ev = cortex_a53_event_table;
|
|
|
|
evfence = cortex_a53_event_table + PMC_EVENT_TABLE_SIZE(cortex_a53);
|
|
|
|
break;
|
|
|
|
case PMC_CPU_ARMV8_CORTEX_A57:
|
|
|
|
ev = cortex_a57_event_table;
|
|
|
|
evfence = cortex_a57_event_table + PMC_EVENT_TABLE_SIZE(cortex_a57);
|
|
|
|
break;
|
2020-08-12 10:17:17 +00:00
|
|
|
case PMC_CPU_ARMV8_CORTEX_A76:
|
|
|
|
ev = cortex_a76_event_table;
|
|
|
|
evfence = cortex_a76_event_table + PMC_EVENT_TABLE_SIZE(cortex_a76);
|
|
|
|
break;
|
2015-05-19 15:25:47 +00:00
|
|
|
default: /* Unknown CPU type. */
|
|
|
|
break;
|
|
|
|
}
|
2019-09-18 16:13:50 +00:00
|
|
|
} else if (pe >= PMC_EV_BERI_FIRST && pe <= PMC_EV_BERI_LAST) {
|
|
|
|
ev = beri_event_table;
|
|
|
|
evfence = beri_event_table + PMC_EVENT_TABLE_SIZE(beri);
|
2010-03-03 15:05:58 +00:00
|
|
|
} else if (pe >= PMC_EV_MIPS24K_FIRST && pe <= PMC_EV_MIPS24K_LAST) {
|
|
|
|
ev = mips24k_event_table;
|
2012-03-28 20:58:30 +00:00
|
|
|
evfence = mips24k_event_table + PMC_EVENT_TABLE_SIZE(mips24k);
|
2015-04-05 02:57:02 +00:00
|
|
|
} else if (pe >= PMC_EV_MIPS74K_FIRST && pe <= PMC_EV_MIPS74K_LAST) {
|
|
|
|
ev = mips74k_event_table;
|
|
|
|
evfence = mips74k_event_table + PMC_EVENT_TABLE_SIZE(mips74k);
|
2012-03-23 00:10:21 +00:00
|
|
|
} else if (pe >= PMC_EV_OCTEON_FIRST && pe <= PMC_EV_OCTEON_LAST) {
|
|
|
|
ev = octeon_event_table;
|
|
|
|
evfence = octeon_event_table + PMC_EVENT_TABLE_SIZE(octeon);
|
2011-12-24 19:34:52 +00:00
|
|
|
} else if (pe >= PMC_EV_PPC7450_FIRST && pe <= PMC_EV_PPC7450_LAST) {
|
|
|
|
ev = ppc7450_event_table;
|
2012-03-28 20:58:30 +00:00
|
|
|
evfence = ppc7450_event_table + PMC_EVENT_TABLE_SIZE(ppc7450);
|
2014-02-01 02:03:50 +00:00
|
|
|
} else if (pe >= PMC_EV_PPC970_FIRST && pe <= PMC_EV_PPC970_LAST) {
|
|
|
|
ev = ppc970_event_table;
|
|
|
|
evfence = ppc970_event_table + PMC_EVENT_TABLE_SIZE(ppc970);
|
2020-11-05 16:41:28 +00:00
|
|
|
} else if (pe >= PMC_EV_POWER8_FIRST && pe <= PMC_EV_POWER8_LAST) {
|
|
|
|
ev = power8_event_table;
|
|
|
|
evfence = power8_event_table + PMC_EVENT_TABLE_SIZE(power8);
|
2015-04-18 21:39:17 +00:00
|
|
|
} else if (pe >= PMC_EV_E500_FIRST && pe <= PMC_EV_E500_LAST) {
|
|
|
|
ev = e500_event_table;
|
|
|
|
evfence = e500_event_table + PMC_EVENT_TABLE_SIZE(e500);
|
2008-10-09 14:55:45 +00:00
|
|
|
} else if (pe == PMC_EV_TSC_TSC) {
|
|
|
|
ev = tsc_event_table;
|
|
|
|
evfence = tsc_event_table + PMC_EVENT_TABLE_SIZE(tsc);
|
2012-11-05 18:49:21 +00:00
|
|
|
} else if ((int)pe >= PMC_EV_SOFT_FIRST && (int)pe <= PMC_EV_SOFT_LAST) {
|
2012-03-28 20:58:30 +00:00
|
|
|
ev = soft_event_table;
|
|
|
|
evfence = soft_event_table + soft_event_info.pm_nevent;
|
2008-10-09 14:55:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (; ev != evfence; ev++)
|
|
|
|
if (pe == ev->pm_ev_code)
|
|
|
|
return (ev->pm_ev_name);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).
In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.
Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.
- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.
Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.
- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.
- Minor code tweaks: staticize a global, freshen a few comments.
Tested by: gnn
2008-11-27 09:00:47 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
pmc_name_of_event(enum pmc_event pe)
|
|
|
|
{
|
|
|
|
const char *n;
|
|
|
|
|
|
|
|
if ((n = _pmc_name_of_event(pe, cpu_info.pm_cputype)) != NULL)
|
|
|
|
return (n);
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
errno = EINVAL;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (NULL);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
const char *
|
|
|
|
pmc_name_of_mode(enum pmc_mode pm)
|
|
|
|
{
|
|
|
|
if ((int) pm >= PMC_MODE_FIRST &&
|
|
|
|
pm <= PMC_MODE_LAST)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (pmc_mode_names[pm]);
|
2005-06-09 19:45:09 +00:00
|
|
|
|
|
|
|
errno = EINVAL;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (NULL);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
const char *
|
|
|
|
pmc_name_of_state(enum pmc_state ps)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
if ((int) ps >= PMC_STATE_FIRST &&
|
|
|
|
ps <= PMC_STATE_LAST)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (pmc_state_names[ps]);
|
2005-06-09 19:45:09 +00:00
|
|
|
|
|
|
|
errno = EINVAL;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (NULL);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_ncpu(void)
|
|
|
|
{
|
|
|
|
if (pmc_syscall == -1) {
|
|
|
|
errno = ENXIO;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2007-12-07 13:52:51 +00:00
|
|
|
return (cpu_info.pm_ncpu);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pmc_npmc(int cpu)
|
|
|
|
{
|
|
|
|
if (pmc_syscall == -1) {
|
|
|
|
errno = ENXIO;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cpu < 0 || cpu >= (int) cpu_info.pm_ncpu) {
|
|
|
|
errno = EINVAL;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2007-12-07 13:52:51 +00:00
|
|
|
return (cpu_info.pm_npmc);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_pmcinfo(int cpu, struct pmc_pmcinfo **ppmci)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
int nbytes, npmc;
|
2005-04-19 04:01:25 +00:00
|
|
|
struct pmc_op_getpmcinfo *pmci;
|
|
|
|
|
|
|
|
if ((npmc = pmc_npmc(cpu)) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
|
|
|
nbytes = sizeof(struct pmc_op_getpmcinfo) +
|
|
|
|
npmc * sizeof(struct pmc_info);
|
|
|
|
|
|
|
|
if ((pmci = calloc(1, nbytes)) == NULL)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
|
|
|
pmci->pm_cpu = cpu;
|
|
|
|
|
|
|
|
if (PMC_CALL(GETPMCINFO, pmci) < 0) {
|
|
|
|
free(pmci);
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
/* kernel<->library, library<->userland interfaces are identical */
|
|
|
|
*ppmci = (struct pmc_pmcinfo *) pmci;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_read(pmc_id_t pmc, pmc_value_t *value)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_pmcrw pmc_read_op;
|
|
|
|
|
|
|
|
pmc_read_op.pm_pmcid = pmc;
|
|
|
|
pmc_read_op.pm_flags = PMC_F_OLDVALUE;
|
|
|
|
pmc_read_op.pm_value = -1;
|
|
|
|
|
|
|
|
if (PMC_CALL(PMCRW, &pmc_read_op) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
*value = pmc_read_op.pm_value;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-05-01 14:11:49 +00:00
|
|
|
int
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_release(pmc_id_t pmc)
|
2005-05-01 14:11:49 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_simple pmc_release_args;
|
2005-05-01 14:11:49 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_release_args.pm_pmcid = pmc;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(PMCRELEASE, &pmc_release_args));
|
2005-05-01 14:11:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_rw(pmc_id_t pmc, pmc_value_t newvalue, pmc_value_t *oldvaluep)
|
2005-05-01 14:11:49 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_pmcrw pmc_rw_op;
|
2005-05-01 14:11:49 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_rw_op.pm_pmcid = pmc;
|
|
|
|
pmc_rw_op.pm_flags = PMC_F_NEWVALUE | PMC_F_OLDVALUE;
|
|
|
|
pmc_rw_op.pm_value = newvalue;
|
2005-05-01 14:11:49 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
if (PMC_CALL(PMCRW, &pmc_rw_op) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
*oldvaluep = pmc_rw_op.pm_value;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
int
|
|
|
|
pmc_set(pmc_id_t pmc, pmc_value_t value)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_pmcsetcount sc;
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
sc.pm_pmcid = pmc;
|
|
|
|
sc.pm_count = value;
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
if (PMC_CALL(PMCSETCOUNT, &sc) < 0)
|
2007-12-07 13:52:51 +00:00
|
|
|
return (-1);
|
|
|
|
return (0);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
int
|
|
|
|
pmc_start(pmc_id_t pmc)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_simple pmc_start_args;
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_start_args.pm_pmcid = pmc;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(PMCSTART, &pmc_start_args));
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
int
|
|
|
|
pmc_stop(pmc_id_t pmc)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_simple pmc_stop_args;
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_stop_args.pm_pmcid = pmc;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(PMCSTOP, &pmc_stop_args));
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
int
|
|
|
|
pmc_width(pmc_id_t pmcid, uint32_t *width)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
unsigned int i;
|
|
|
|
enum pmc_class cl;
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
cl = PMC_ID_TO_CLASS(pmcid);
|
|
|
|
for (i = 0; i < cpu_info.pm_nclass; i++)
|
|
|
|
if (cpu_info.pm_classes[i].pm_class == cl) {
|
|
|
|
*width = cpu_info.pm_classes[i].pm_width;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (0);
|
2005-06-09 19:45:09 +00:00
|
|
|
}
|
2008-03-12 15:51:32 +00:00
|
|
|
errno = EINVAL;
|
|
|
|
return (-1);
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_write(pmc_id_t pmc, pmc_value_t value)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_pmcrw pmc_write_op;
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_write_op.pm_pmcid = pmc;
|
|
|
|
pmc_write_op.pm_flags = PMC_F_NEWVALUE;
|
|
|
|
pmc_write_op.pm_value = value;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(PMCRW, &pmc_write_op));
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-06-09 19:45:09 +00:00
|
|
|
pmc_writelog(uint32_t userdata)
|
2005-04-19 04:01:25 +00:00
|
|
|
{
|
2005-06-09 19:45:09 +00:00
|
|
|
struct pmc_op_writelog wl;
|
2005-04-19 04:01:25 +00:00
|
|
|
|
2005-06-09 19:45:09 +00:00
|
|
|
wl.pm_userdata = userdata;
|
2007-12-07 13:52:51 +00:00
|
|
|
return (PMC_CALL(WRITELOG, &wl));
|
2005-04-19 04:01:25 +00:00
|
|
|
}
|