/tools/lib/perf/ |
D | cpumap.c | 15 struct perf_cpu_map *cpus = malloc(sizeof(*cpus) + sizeof(int)); in perf_cpu_map__dummy_new() local 17 if (cpus != NULL) { in perf_cpu_map__dummy_new() 18 cpus->nr = 1; in perf_cpu_map__dummy_new() 19 cpus->map[0] = -1; in perf_cpu_map__dummy_new() 20 refcount_set(&cpus->refcnt, 1); in perf_cpu_map__dummy_new() 23 return cpus; in perf_cpu_map__dummy_new() 50 struct perf_cpu_map *cpus; in cpu_map__default_new() local 57 cpus = malloc(sizeof(*cpus) + nr_cpus * sizeof(int)); in cpu_map__default_new() 58 if (cpus != NULL) { in cpu_map__default_new() 62 cpus->map[i] = i; in cpu_map__default_new() [all …]
|
D | evlist.c | 46 perf_cpu_map__put(evsel->cpus); in __perf_evlist__propagate_maps() 47 evsel->cpus = perf_cpu_map__get(evlist->cpus); in __perf_evlist__propagate_maps() 48 } else if (!evsel->system_wide && perf_cpu_map__empty(evlist->cpus)) { in __perf_evlist__propagate_maps() 49 perf_cpu_map__put(evsel->cpus); in __perf_evlist__propagate_maps() 50 evsel->cpus = perf_cpu_map__get(evlist->cpus); in __perf_evlist__propagate_maps() 51 } else if (evsel->cpus != evsel->own_cpus) { in __perf_evlist__propagate_maps() 52 perf_cpu_map__put(evsel->cpus); in __perf_evlist__propagate_maps() 53 evsel->cpus = perf_cpu_map__get(evsel->own_cpus); in __perf_evlist__propagate_maps() 58 evlist->all_cpus = perf_cpu_map__merge(evlist->all_cpus, evsel->cpus); in __perf_evlist__propagate_maps() 128 perf_cpu_map__put(evlist->cpus); in perf_evlist__exit() [all …]
|
/tools/perf/tests/ |
D | openat-syscall-all-cpus.c | 26 struct perf_cpu_map *cpus; in test__openat_syscall_event_on_all_cpus() local 39 cpus = perf_cpu_map__new(NULL); in test__openat_syscall_event_on_all_cpus() 40 if (cpus == NULL) { in test__openat_syscall_event_on_all_cpus() 54 if (evsel__open(evsel, cpus, threads) < 0) { in test__openat_syscall_event_on_all_cpus() 61 for (cpu = 0; cpu < cpus->nr; ++cpu) { in test__openat_syscall_event_on_all_cpus() 69 if (cpus->map[cpu] >= CPU_SETSIZE) { in test__openat_syscall_event_on_all_cpus() 70 pr_debug("Ignoring CPU %d\n", cpus->map[cpu]); in test__openat_syscall_event_on_all_cpus() 74 CPU_SET(cpus->map[cpu], &cpu_set); in test__openat_syscall_event_on_all_cpus() 77 cpus->map[cpu], in test__openat_syscall_event_on_all_cpus() 85 CPU_CLR(cpus->map[cpu], &cpu_set); in test__openat_syscall_event_on_all_cpus() [all …]
|
D | cpumap.c | 54 struct cpu_map_entries *cpus; in process_event_cpus() local 62 cpus = (struct cpu_map_entries *)data->data; in process_event_cpus() 64 TEST_ASSERT_VAL("wrong nr", cpus->nr == 2); in process_event_cpus() 65 TEST_ASSERT_VAL("wrong cpu", cpus->cpu[0] == 1); in process_event_cpus() 66 TEST_ASSERT_VAL("wrong cpu", cpus->cpu[1] == 256); in process_event_cpus() 80 struct perf_cpu_map *cpus; in test__cpu_map_synthesize() local 83 cpus = perf_cpu_map__new("0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19"); in test__cpu_map_synthesize() 86 !perf_event__synthesize_cpu_map(NULL, cpus, process_event_mask, NULL)); in test__cpu_map_synthesize() 88 perf_cpu_map__put(cpus); in test__cpu_map_synthesize() 91 cpus = perf_cpu_map__new("1,256"); in test__cpu_map_synthesize() [all …]
|
D | mmap-basic.c | 37 struct perf_cpu_map *cpus; in test__basic_mmap() local 55 cpus = perf_cpu_map__new(NULL); in test__basic_mmap() 56 if (cpus == NULL) { in test__basic_mmap() 62 CPU_SET(cpus->map[0], &cpu_set); in test__basic_mmap() 66 cpus->map[0], str_error_r(errno, sbuf, sizeof(sbuf))); in test__basic_mmap() 76 perf_evlist__set_maps(&evlist->core, cpus, threads); in test__basic_mmap() 93 if (evsel__open(evsels[i], cpus, threads) < 0) { in test__basic_mmap() 161 cpus = NULL; in test__basic_mmap() 164 perf_cpu_map__put(cpus); in test__basic_mmap()
|
D | event-times.c | 115 struct perf_cpu_map *cpus; in attach__cpu_disabled() local 120 cpus = perf_cpu_map__new("0"); in attach__cpu_disabled() 121 if (cpus == NULL) { in attach__cpu_disabled() 128 err = evsel__open_per_cpu(evsel, cpus, -1); in attach__cpu_disabled() 137 perf_cpu_map__put(cpus); in attach__cpu_disabled() 144 struct perf_cpu_map *cpus; in attach__cpu_enabled() local 149 cpus = perf_cpu_map__new("0"); in attach__cpu_enabled() 150 if (cpus == NULL) { in attach__cpu_enabled() 155 err = evsel__open_per_cpu(evsel, cpus, -1); in attach__cpu_enabled() 159 perf_cpu_map__put(cpus); in attach__cpu_enabled()
|
D | task-exit.c | 54 struct perf_cpu_map *cpus; in test__task_exit() local 73 cpus = perf_cpu_map__dummy_new(); in test__task_exit() 75 if (!cpus || !threads) { in test__task_exit() 81 perf_evlist__set_maps(&evlist->core, cpus, threads); in test__task_exit() 83 cpus = NULL; in test__task_exit() 153 perf_cpu_map__put(cpus); in test__task_exit()
|
D | sw-clock.c | 45 struct perf_cpu_map *cpus; in __test__sw_clock_freq() local 64 cpus = perf_cpu_map__dummy_new(); in __test__sw_clock_freq() 66 if (!cpus || !threads) { in __test__sw_clock_freq() 72 perf_evlist__set_maps(&evlist->core, cpus, threads); in __test__sw_clock_freq() 74 cpus = NULL; in __test__sw_clock_freq() 133 perf_cpu_map__put(cpus); in __test__sw_clock_freq()
|
/tools/perf/arch/arm64/util/ |
D | header.c | 17 static int _get_cpuid(char *buf, size_t sz, struct perf_cpu_map *cpus) in _get_cpuid() argument 26 cpus = perf_cpu_map__get(cpus); in _get_cpuid() 28 for (cpu = 0; cpu < perf_cpu_map__nr(cpus); cpu++) { in _get_cpuid() 33 sysfs, cpus->map[cpu]); in _get_cpuid() 57 perf_cpu_map__put(cpus); in _get_cpuid() 67 struct perf_cpu_map *cpus = perf_cpu_map__new(NULL); in get_cpuid() local 70 if (!cpus) in get_cpuid() 73 ret = _get_cpuid(buf, sz, cpus); in get_cpuid() 75 perf_cpu_map__put(cpus); in get_cpuid() 85 if (!pmu || !pmu->cpus) in get_cpuid_str() [all …]
|
/tools/lib/perf/tests/ |
D | test-cpumap.c | 15 struct perf_cpu_map *cpus; in main() local 21 cpus = perf_cpu_map__dummy_new(); in main() 22 if (!cpus) in main() 25 perf_cpu_map__get(cpus); in main() 26 perf_cpu_map__put(cpus); in main() 27 perf_cpu_map__put(cpus); in main()
|
D | test-evlist.c | 30 struct perf_cpu_map *cpus; in test_stat_cpu() local 43 cpus = perf_cpu_map__new(NULL); in test_stat_cpu() 44 __T("failed to create cpus", cpus); in test_stat_cpu() 59 perf_evlist__set_maps(evlist, cpus, NULL); in test_stat_cpu() 65 cpus = perf_evsel__cpus(evsel); in test_stat_cpu() 67 for (idx = 0; idx < perf_cpu_map__nr(cpus); idx++) { in test_stat_cpu() 78 perf_cpu_map__put(cpus); in test_stat_cpu() 200 struct perf_cpu_map *cpus; in test_mmap_thread() local 246 cpus = perf_cpu_map__dummy_new(); in test_mmap_thread() 247 __T("failed to create cpus", cpus); in test_mmap_thread() [all …]
|
D | test-evsel.c | 18 struct perf_cpu_map *cpus; in test_stat_cpu() local 26 cpus = perf_cpu_map__new(NULL); in test_stat_cpu() 27 __T("failed to create cpus", cpus); in test_stat_cpu() 32 err = perf_evsel__open(evsel, cpus, NULL); in test_stat_cpu() 35 for (idx = 0; idx < perf_cpu_map__nr(cpus); idx++) { in test_stat_cpu() 45 perf_cpu_map__put(cpus); in test_stat_cpu()
|
/tools/perf/arch/nds32/util/ |
D | header.c | 15 struct cpu_map *cpus; in get_cpuid_str() local 18 if (!sysfs || !pmu || !pmu->cpus) in get_cpuid_str() 25 cpus = cpu_map__get(pmu->cpus); in get_cpuid_str() 26 sprintf(buf, "0x%x", cpus->nr - 1); in get_cpuid_str() 27 cpu_map__put(cpus); in get_cpuid_str()
|
/tools/lib/perf/include/perf/ |
D | cpumap.h | 18 LIBPERF_API int perf_cpu_map__cpu(const struct perf_cpu_map *cpus, int idx); 19 LIBPERF_API int perf_cpu_map__nr(const struct perf_cpu_map *cpus); 23 #define perf_cpu_map__for_each_cpu(cpu, idx, cpus) \ argument 24 for ((idx) = 0, (cpu) = perf_cpu_map__cpu(cpus, idx); \ 25 (idx) < perf_cpu_map__nr(cpus); \ 26 (idx)++, (cpu) = perf_cpu_map__cpu(cpus, idx))
|
/tools/perf/util/ |
D | perf_api_probe.c | 63 struct perf_cpu_map *cpus; in perf_probe_api() local 66 cpus = perf_cpu_map__new(NULL); in perf_probe_api() 67 if (!cpus) in perf_probe_api() 69 cpu = cpus->map[0]; in perf_probe_api() 70 perf_cpu_map__put(cpus); in perf_probe_api() 128 struct perf_cpu_map *cpus; in perf_can_record_cpu_wide() local 131 cpus = perf_cpu_map__new(NULL); in perf_can_record_cpu_wide() 132 if (!cpus) in perf_can_record_cpu_wide() 134 cpu = cpus->map[0]; in perf_can_record_cpu_wide() 135 perf_cpu_map__put(cpus); in perf_can_record_cpu_wide()
|
D | cpumap.c | 21 static struct perf_cpu_map *cpu_map__from_entries(struct cpu_map_entries *cpus) in cpu_map__from_entries() argument 25 map = perf_cpu_map__empty_new(cpus->nr); in cpu_map__from_entries() 29 for (i = 0; i < cpus->nr; i++) { in cpu_map__from_entries() 35 if (cpus->cpu[i] == (u16) -1) in cpu_map__from_entries() 38 map->map[i] = (int) cpus->cpu[i]; in cpu_map__from_entries() 83 struct perf_cpu_map *cpus = malloc(sizeof(*cpus) + sizeof(int) * nr); in perf_cpu_map__empty_new() local 85 if (cpus != NULL) { in perf_cpu_map__empty_new() 88 cpus->nr = nr; in perf_cpu_map__empty_new() 90 cpus->map[i] = -1; in perf_cpu_map__empty_new() 92 refcount_set(&cpus->refcnt, 1); in perf_cpu_map__empty_new() [all …]
|
D | cpumap.h | 25 int cpu_map__build_socket_map(struct perf_cpu_map *cpus, struct perf_cpu_map **sockp); 26 int cpu_map__build_die_map(struct perf_cpu_map *cpus, struct perf_cpu_map **diep); 27 int cpu_map__build_core_map(struct perf_cpu_map *cpus, struct perf_cpu_map **corep); 28 int cpu_map__build_node_map(struct perf_cpu_map *cpus, struct perf_cpu_map **nodep); 60 int cpu_map__build_map(struct perf_cpu_map *cpus, struct perf_cpu_map **res, 64 int cpu_map__cpu(struct perf_cpu_map *cpus, int idx); 65 bool cpu_map__has(struct perf_cpu_map *cpus, int cpu);
|
/tools/testing/selftests/rcutorture/bin/ |
D | jitter.sh | 56 if cpus=`grep 1 /sys/devices/system/cpu/*/online 2>&1 | 61 cpus= 64 cpus="$cpus $nohotplugcpus" 66 cpumask=`awk -v cpus="$cpus" -v me=$me -v n=$n 'BEGIN {
|
/tools/perf/python/ |
D | twatch.py | 12 cpus = perf.cpu_map() 28 evsel.open(cpus = cpus, threads = threads); 29 evlist = perf.evlist(cpus, threads) 34 for cpu in cpus:
|
/tools/testing/selftests/cpufreq/ |
D | cpu.sh | 17 cpus=$(ls $CPUROOT | grep "cpu[0-9].*") 18 for cpu in $cpus; do 25 cpus=$(ls $CPUROOT | grep "cpu[1-9].*") 26 for cpu in $cpus; do
|
/tools/power/cpupower/utils/ |
D | cpufreq-set.c | 299 struct cpufreq_affected_cpus *cpus; in cmd_freq_set() local 305 cpus = cpufreq_get_related_cpus(cpu); in cmd_freq_set() 306 if (!cpus) in cmd_freq_set() 308 while (cpus->next) { in cmd_freq_set() 309 bitmask_setbit(cpus_chosen, cpus->cpu); in cmd_freq_set() 310 cpus = cpus->next; in cmd_freq_set() 313 bitmask_setbit(cpus_chosen, cpus->cpu); in cmd_freq_set() 314 cpufreq_put_related_cpus(cpus); in cmd_freq_set()
|
D | cpufreq-info.c | 393 struct cpufreq_affected_cpus *cpus = cpufreq_get_affected_cpus(cpu); in get_affected_cpus() local 396 if (!cpus) { in get_affected_cpus() 401 while (cpus->next) { in get_affected_cpus() 402 printf("%d ", cpus->cpu); in get_affected_cpus() 403 cpus = cpus->next; in get_affected_cpus() 405 printf("%d\n", cpus->cpu); in get_affected_cpus() 406 cpufreq_put_affected_cpus(cpus); in get_affected_cpus() 414 struct cpufreq_affected_cpus *cpus = cpufreq_get_related_cpus(cpu); in get_related_cpus() local 417 if (!cpus) { in get_related_cpus() 422 while (cpus->next) { in get_related_cpus() [all …]
|
/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/ |
D | test_script.sh | 71 cpus=${NR_CPUS:-${default_cpus}} 74 if test $cpus -lt ${min_cpus_fail:-0}; then 78 cbmc_opts="-DNR_CPUS=${cpus} ${sync_srcu_mode_flags} ${test_cbmc_options} ${CBMC_FLAGS}"
|
/tools/lib/perf/Documentation/examples/ |
D | sampling.c | 28 struct perf_cpu_map *cpus; in main() local 42 cpus = perf_cpu_map__new(NULL); in main() 43 if (!cpus) { in main() 62 perf_evlist__set_maps(evlist, cpus, NULL); in main() 117 perf_cpu_map__put(cpus); in main()
|
/tools/power/cpupower/lib/ |
D | cpupower.c | 133 int cpu, last_pkg, cpus = sysconf(_SC_NPROCESSORS_CONF); in get_cpu_topology() local 135 cpu_top->core_info = malloc(sizeof(struct cpuid_core_info) * cpus); in get_cpu_topology() 139 for (cpu = 0; cpu < cpus; cpu++) { in get_cpu_topology() 160 qsort(cpu_top->core_info, cpus, sizeof(struct cpuid_core_info), in get_cpu_topology() 167 for(cpu = 1; cpu < cpus; cpu++) { in get_cpu_topology() 185 return cpus; in get_cpu_topology()
|