1 #define _XOPEN_SOURCE 500 /* needed for nftw() */
2 #define _GNU_SOURCE /* needed for asprintf() */
4 /* Parse event JSON files */
7 * Copyright (c) 2014, Intel Corporation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions are met:
13 * 1. Redistributions of source code must retain the above copyright notice,
14 * this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31 * OF THE POSSIBILITY OF SUCH DAMAGE.
44 #include <sys/time.h> /* getrlimit */
45 #include <sys/resource.h> /* getrlimit */
48 #include <linux/list.h>
56 int eprintf(int level
, int var
, const char *fmt
, ...)
67 ret
= vfprintf(stderr
, fmt
, args
);
74 __attribute__((weak
)) char *get_cpu_str(void)
79 static void addfield(char *map
, char **dst
, const char *sep
,
80 const char *a
, jsmntok_t
*bt
)
82 unsigned int len
= strlen(a
) + 1 + strlen(sep
);
83 int olen
= *dst
? strlen(*dst
) : 0;
84 int blen
= bt
? json_len(bt
) : 0;
87 out
= realloc(*dst
, len
+ olen
+ blen
);
89 /* Don't add field in this case */
100 strncat(*dst
, map
+ bt
->start
, blen
);
103 static void fixname(char *s
)
109 static void fixdesc(char *s
)
111 char *e
= s
+ strlen(s
);
113 /* Remove trailing dots that look ugly in perf list */
115 while (e
>= s
&& isspace(*e
))
121 /* Add escapes for '\' so they are proper C strings. */
122 static char *fixregex(char *s
)
129 /* Count the number of '\' in string */
130 for (p
= s
; *p
; p
++) {
139 /* allocate space for a new string */
140 fixed
= (char *) malloc(len
+ 1);
144 /* copy over the characters */
146 for (p
= s
; *p
; p
++) {
158 static struct msrmap
{
162 { "0x3F6", "ldlat=" },
163 { "0x1A6", "offcore_rsp=" },
164 { "0x1A7", "offcore_rsp=" },
165 { "0x3F7", "frontend=" },
169 static struct field
{
173 { "UMask", "umask=" },
174 { "CounterMask", "cmask=" },
175 { "Invert", "inv=" },
176 { "AnyThread", "any=" },
177 { "EdgeDetect", "edge=" },
178 { "SampleAfterValue", "period=" },
179 { "FCMask", "fc_mask=" },
180 { "PortMask", "ch_mask=" },
184 static void cut_comma(char *map
, jsmntok_t
*newval
)
188 /* Cut off everything after comma */
189 for (i
= newval
->start
; i
< newval
->end
; i
++) {
195 static int match_field(char *map
, jsmntok_t
*field
, int nz
,
196 char **event
, jsmntok_t
*val
)
199 jsmntok_t newval
= *val
;
201 for (f
= fields
; f
->field
; f
++)
202 if (json_streq(map
, field
, f
->field
) && nz
) {
203 cut_comma(map
, &newval
);
204 addfield(map
, event
, ",", f
->kernel
, &newval
);
210 static struct msrmap
*lookup_msr(char *map
, jsmntok_t
*val
)
212 jsmntok_t newval
= *val
;
216 cut_comma(map
, &newval
);
217 for (i
= 0; msrmap
[i
].num
; i
++)
218 if (json_streq(map
, &newval
, msrmap
[i
].num
))
222 pr_err("%s: Unknown MSR in event file %.*s\n", prog
,
223 json_len(val
), map
+ val
->start
);
232 { "CBO", "uncore_cbox" },
233 { "QPI LL", "uncore_qpi" },
234 { "SBO", "uncore_sbox" },
235 { "iMPH-U", "uncore_arb" },
236 { "CPU-M-CF", "cpum_cf" },
237 { "CPU-M-SF", "cpum_sf" },
238 { "UPI LL", "uncore_upi" },
239 { "hisi_sccl,ddrc", "hisi_sccl,ddrc" },
240 { "hisi_sccl,hha", "hisi_sccl,hha" },
241 { "hisi_sccl,l3c", "hisi_sccl,l3c" },
245 static const char *field_to_perf(struct map
*table
, char *map
, jsmntok_t
*val
)
249 for (i
= 0; table
[i
].json
; i
++) {
250 if (json_streq(map
, val
, table
[i
].json
))
251 return table
[i
].perf
;
256 #define EXPECT(e, t, m) do { if (!(e)) { \
257 jsmntok_t *loc = (t); \
258 if (!(t)->start && (t) > tokens) \
260 pr_err("%s:%d: " m ", got %s\n", fn, \
261 json_line(map, loc), \
269 static char *get_topic(void)
274 /* tp is free'd in process_one_file() */
275 i
= asprintf(&tp
, "%s", topic
);
277 pr_info("%s: asprintf() error %s\n", prog
);
281 for (i
= 0; i
< (int) strlen(tp
); i
++) {
295 static int add_topic(char *bname
)
298 topic
= strdup(bname
);
300 pr_info("%s: strdup() error %s for file %s\n", prog
,
301 strerror(errno
), bname
);
307 struct perf_entry_data
{
312 static int close_table
;
314 static void print_events_table_prefix(FILE *fp
, const char *tblname
)
316 fprintf(fp
, "struct pmu_event %s[] = {\n", tblname
);
320 static int print_events_table_entry(void *data
, char *name
, char *event
,
321 char *desc
, char *long_desc
,
322 char *pmu
, char *unit
, char *perpkg
,
324 char *metric_name
, char *metric_group
)
326 struct perf_entry_data
*pd
= data
;
327 FILE *outfp
= pd
->outfp
;
328 char *topic
= pd
->topic
;
331 * TODO: Remove formatting chars after debugging to reduce
334 fprintf(outfp
, "{\n");
337 fprintf(outfp
, "\t.name = \"%s\",\n", name
);
339 fprintf(outfp
, "\t.event = \"%s\",\n", event
);
340 fprintf(outfp
, "\t.desc = \"%s\",\n", desc
);
341 fprintf(outfp
, "\t.topic = \"%s\",\n", topic
);
342 if (long_desc
&& long_desc
[0])
343 fprintf(outfp
, "\t.long_desc = \"%s\",\n", long_desc
);
345 fprintf(outfp
, "\t.pmu = \"%s\",\n", pmu
);
347 fprintf(outfp
, "\t.unit = \"%s\",\n", unit
);
349 fprintf(outfp
, "\t.perpkg = \"%s\",\n", perpkg
);
351 fprintf(outfp
, "\t.metric_expr = \"%s\",\n", metric_expr
);
353 fprintf(outfp
, "\t.metric_name = \"%s\",\n", metric_name
);
355 fprintf(outfp
, "\t.metric_group = \"%s\",\n", metric_group
);
356 fprintf(outfp
, "},\n");
361 struct event_struct
{
362 struct list_head list
;
375 #define ADD_EVENT_FIELD(field) do { if (field) { \
376 es->field = strdup(field); \
381 #define FREE_EVENT_FIELD(field) free(es->field)
383 #define TRY_FIXUP_FIELD(field) do { if (es->field && !*field) {\
384 *field = strdup(es->field); \
389 #define FOR_ALL_EVENT_STRUCT_FIELDS(op) do { \
402 static LIST_HEAD(arch_std_events
);
404 static void free_arch_std_events(void)
406 struct event_struct
*es
, *next
;
408 list_for_each_entry_safe(es
, next
, &arch_std_events
, list
) {
409 FOR_ALL_EVENT_STRUCT_FIELDS(FREE_EVENT_FIELD
);
410 list_del_init(&es
->list
);
415 static int save_arch_std_events(void *data
, char *name
, char *event
,
416 char *desc
, char *long_desc
, char *pmu
,
417 char *unit
, char *perpkg
, char *metric_expr
,
418 char *metric_name
, char *metric_group
)
420 struct event_struct
*es
;
422 es
= malloc(sizeof(*es
));
425 memset(es
, 0, sizeof(*es
));
426 FOR_ALL_EVENT_STRUCT_FIELDS(ADD_EVENT_FIELD
);
427 list_add_tail(&es
->list
, &arch_std_events
);
430 FOR_ALL_EVENT_STRUCT_FIELDS(FREE_EVENT_FIELD
);
435 static void print_events_table_suffix(FILE *outfp
)
437 fprintf(outfp
, "{\n");
439 fprintf(outfp
, "\t.name = 0,\n");
440 fprintf(outfp
, "\t.event = 0,\n");
441 fprintf(outfp
, "\t.desc = 0,\n");
443 fprintf(outfp
, "},\n");
444 fprintf(outfp
, "};\n");
448 static struct fixed
{
452 { "inst_retired.any", "event=0xc0" },
453 { "inst_retired.any_p", "event=0xc0" },
454 { "cpu_clk_unhalted.ref", "event=0x0,umask=0x03" },
455 { "cpu_clk_unhalted.thread", "event=0x3c" },
456 { "cpu_clk_unhalted.core", "event=0x3c" },
457 { "cpu_clk_unhalted.thread_any", "event=0x3c,any=1" },
462 * Handle different fixed counter encodings between JSON and perf.
464 static char *real_event(const char *name
, char *event
)
471 for (i
= 0; fixed
[i
].name
; i
++)
472 if (!strcasecmp(name
, fixed
[i
].name
))
473 return (char *)fixed
[i
].event
;
478 try_fixup(const char *fn
, char *arch_std
, char **event
, char **desc
,
479 char **name
, char **long_desc
, char **pmu
, char **filter
,
480 char **perpkg
, char **unit
, char **metric_expr
, char **metric_name
,
481 char **metric_group
, unsigned long long eventcode
)
483 /* try to find matching event from arch standard values */
484 struct event_struct
*es
;
486 list_for_each_entry(es
, &arch_std_events
, list
) {
487 if (!strcmp(arch_std
, es
->name
)) {
488 if (!eventcode
&& es
->event
) {
489 /* allow EventCode to be overridden */
493 FOR_ALL_EVENT_STRUCT_FIELDS(TRY_FIXUP_FIELD
);
498 pr_err("%s: could not find matching %s for %s\n",
503 /* Call func with each event in the json file */
504 int json_events(const char *fn
,
505 int (*func
)(void *data
, char *name
, char *event
, char *desc
,
507 char *pmu
, char *unit
, char *perpkg
,
509 char *metric_name
, char *metric_group
),
514 jsmntok_t
*tokens
, *tok
;
522 tokens
= parse_json(fn
, &map
, &size
, &len
);
525 EXPECT(tokens
->type
== JSMN_ARRAY
, tokens
, "expected top level array");
527 for (i
= 0; i
< tokens
->size
; i
++) {
528 char *event
= NULL
, *desc
= NULL
, *name
= NULL
;
529 char *long_desc
= NULL
;
530 char *extra_desc
= NULL
;
535 char *metric_expr
= NULL
;
536 char *metric_name
= NULL
;
537 char *metric_group
= NULL
;
538 char *arch_std
= NULL
;
539 unsigned long long eventcode
= 0;
540 struct msrmap
*msr
= NULL
;
541 jsmntok_t
*msrval
= NULL
;
542 jsmntok_t
*precise
= NULL
;
543 jsmntok_t
*obj
= tok
++;
545 EXPECT(obj
->type
== JSMN_OBJECT
, obj
, "expected object");
546 for (j
= 0; j
< obj
->size
; j
+= 2) {
547 jsmntok_t
*field
, *val
;
552 EXPECT(field
->type
== JSMN_STRING
, tok
+ j
,
553 "Expected field name");
555 EXPECT(val
->type
== JSMN_STRING
, tok
+ j
+ 1,
556 "Expected string value");
558 nz
= !json_streq(map
, val
, "0");
559 if (match_field(map
, field
, nz
, &event
, val
)) {
561 } else if (json_streq(map
, field
, "EventCode")) {
563 addfield(map
, &code
, "", "", val
);
564 eventcode
|= strtoul(code
, NULL
, 0);
566 } else if (json_streq(map
, field
, "ExtSel")) {
568 addfield(map
, &code
, "", "", val
);
569 eventcode
|= strtoul(code
, NULL
, 0) << 21;
571 } else if (json_streq(map
, field
, "EventName")) {
572 addfield(map
, &name
, "", "", val
);
573 } else if (json_streq(map
, field
, "BriefDescription")) {
574 addfield(map
, &desc
, "", "", val
);
576 } else if (json_streq(map
, field
,
577 "PublicDescription")) {
578 addfield(map
, &long_desc
, "", "", val
);
580 } else if (json_streq(map
, field
, "PEBS") && nz
) {
582 } else if (json_streq(map
, field
, "MSRIndex") && nz
) {
583 msr
= lookup_msr(map
, val
);
584 } else if (json_streq(map
, field
, "MSRValue")) {
586 } else if (json_streq(map
, field
, "Errata") &&
587 !json_streq(map
, val
, "null")) {
588 addfield(map
, &extra_desc
, ". ",
589 " Spec update: ", val
);
590 } else if (json_streq(map
, field
, "Data_LA") && nz
) {
591 addfield(map
, &extra_desc
, ". ",
592 " Supports address when precise",
594 } else if (json_streq(map
, field
, "Unit")) {
597 ppmu
= field_to_perf(unit_to_pmu
, map
, val
);
602 pmu
= strdup("uncore_");
603 addfield(map
, &pmu
, "", "", val
);
604 for (s
= pmu
; *s
; s
++)
607 addfield(map
, &desc
, ". ", "Unit: ", NULL
);
608 addfield(map
, &desc
, "", pmu
, NULL
);
609 addfield(map
, &desc
, "", " ", NULL
);
610 } else if (json_streq(map
, field
, "Filter")) {
611 addfield(map
, &filter
, "", "", val
);
612 } else if (json_streq(map
, field
, "ScaleUnit")) {
613 addfield(map
, &unit
, "", "", val
);
614 } else if (json_streq(map
, field
, "PerPkg")) {
615 addfield(map
, &perpkg
, "", "", val
);
616 } else if (json_streq(map
, field
, "MetricName")) {
617 addfield(map
, &metric_name
, "", "", val
);
618 } else if (json_streq(map
, field
, "MetricGroup")) {
619 addfield(map
, &metric_group
, "", "", val
);
620 } else if (json_streq(map
, field
, "MetricExpr")) {
621 addfield(map
, &metric_expr
, "", "", val
);
622 for (s
= metric_expr
; *s
; s
++)
624 } else if (json_streq(map
, field
, "ArchStdEvent")) {
625 addfield(map
, &arch_std
, "", "", val
);
626 for (s
= arch_std
; *s
; s
++)
629 /* ignore unknown fields */
631 if (precise
&& desc
&& !strstr(desc
, "(Precise Event)")) {
632 if (json_streq(map
, precise
, "2"))
633 addfield(map
, &extra_desc
, " ",
634 "(Must be precise)", NULL
);
636 addfield(map
, &extra_desc
, " ",
637 "(Precise event)", NULL
);
639 snprintf(buf
, sizeof buf
, "event=%#llx", eventcode
);
640 addfield(map
, &event
, ",", buf
, NULL
);
641 if (desc
&& extra_desc
)
642 addfield(map
, &desc
, " ", extra_desc
, NULL
);
643 if (long_desc
&& extra_desc
)
644 addfield(map
, &long_desc
, " ", extra_desc
, NULL
);
646 addfield(map
, &event
, ",", filter
, NULL
);
648 addfield(map
, &event
, ",", msr
->pname
, msrval
);
654 * An arch standard event is referenced, so try to
655 * fixup any unassigned values.
657 err
= try_fixup(fn
, arch_std
, &event
, &desc
, &name
,
658 &long_desc
, &pmu
, &filter
, &perpkg
,
659 &unit
, &metric_expr
, &metric_name
,
660 &metric_group
, eventcode
);
664 err
= func(data
, name
, real_event(name
, event
), desc
, long_desc
,
665 pmu
, unit
, perpkg
, metric_expr
, metric_name
, metric_group
);
685 EXPECT(tok
- tokens
== len
, tok
, "unexpected objects at end");
688 free_json(map
, size
, tokens
);
692 static char *file_name_to_table_name(char *fname
)
700 * Ensure tablename starts with alphabetic character.
701 * Derive rest of table name from basename of the JSON file,
702 * replacing hyphens and stripping out .json suffix.
704 n
= asprintf(&tblname
, "pme_%s", fname
);
706 pr_info("%s: asprintf() error %s for file %s\n", prog
,
707 strerror(errno
), fname
);
711 for (i
= 0; i
< strlen(tblname
); i
++) {
714 if (c
== '-' || c
== '/')
719 } else if (!isalnum(c
) && c
!= '_') {
720 pr_err("%s: Invalid character '%c' in file name %s\n",
721 prog
, c
, basename(fname
));
731 static void print_mapping_table_prefix(FILE *outfp
)
733 fprintf(outfp
, "struct pmu_events_map pmu_events_map[] = {\n");
736 static void print_mapping_table_suffix(FILE *outfp
)
739 * Print the terminating, NULL entry.
741 fprintf(outfp
, "{\n");
742 fprintf(outfp
, "\t.cpuid = 0,\n");
743 fprintf(outfp
, "\t.version = 0,\n");
744 fprintf(outfp
, "\t.type = 0,\n");
745 fprintf(outfp
, "\t.table = 0,\n");
746 fprintf(outfp
, "},\n");
748 /* and finally, the closing curly bracket for the struct */
749 fprintf(outfp
, "};\n");
752 static int process_mapfile(FILE *outfp
, char *fpath
)
761 pr_info("%s: Processing mapfile %s\n", prog
, fpath
);
767 mapfp
= fopen(fpath
, "r");
769 pr_info("%s: Error %s opening %s\n", prog
, strerror(errno
),
774 print_mapping_table_prefix(outfp
);
776 /* Skip first line (header) */
777 p
= fgets(line
, n
, mapfp
);
783 char *cpuid
, *version
, *type
, *fname
;
786 p
= fgets(line
, n
, mapfp
);
790 if (line
[0] == '#' || line
[0] == '\n')
793 if (line
[strlen(line
)-1] != '\n') {
794 /* TODO Deal with lines longer than 16K */
795 pr_info("%s: Mapfile %s: line %d too long, aborting\n",
796 prog
, fpath
, line_num
);
799 line
[strlen(line
)-1] = '\0';
801 cpuid
= fixregex(strtok_r(p
, ",", &save
));
802 version
= strtok_r(NULL
, ",", &save
);
803 fname
= strtok_r(NULL
, ",", &save
);
804 type
= strtok_r(NULL
, ",", &save
);
806 tblname
= file_name_to_table_name(fname
);
807 fprintf(outfp
, "{\n");
808 fprintf(outfp
, "\t.cpuid = \"%s\",\n", cpuid
);
809 fprintf(outfp
, "\t.version = \"%s\",\n", version
);
810 fprintf(outfp
, "\t.type = \"%s\",\n", type
);
813 * CHECK: We can't use the type (eg "core") field in the
814 * table name. For us to do that, we need to somehow tweak
815 * the other caller of file_name_to_table(), process_json()
816 * to determine the type. process_json() file has no way
817 * of knowing these are "core" events unless file name has
818 * core in it. If filename has core in it, we can safely
819 * ignore the type field here also.
821 fprintf(outfp
, "\t.table = %s\n", tblname
);
822 fprintf(outfp
, "},\n");
826 print_mapping_table_suffix(outfp
);
831 * If we fail to locate/process JSON and map files, create a NULL mapping
832 * table. This would at least allow perf to build even if we can't find/use
835 static void create_empty_mapping(const char *output_file
)
839 pr_info("%s: Creating empty pmu_events_map[] table\n", prog
);
841 /* Truncate file to clear any partial writes to it */
842 outfp
= fopen(output_file
, "w");
848 fprintf(outfp
, "#include \"pmu-events/pmu-events.h\"\n");
849 print_mapping_table_prefix(outfp
);
850 print_mapping_table_suffix(outfp
);
854 static int get_maxfds(void)
858 if (getrlimit(RLIMIT_NOFILE
, &rlim
) == 0)
859 return min((int)rlim
.rlim_max
/ 2, 512);
865 * nftw() doesn't let us pass an argument to the processing function,
866 * so use a global variables.
868 static FILE *eventsfp
;
869 static char *mapfile
;
871 static int is_leaf_dir(const char *fpath
)
881 while ((dir
= readdir(d
)) != NULL
) {
882 if (!strcmp(dir
->d_name
, ".") || !strcmp(dir
->d_name
, ".."))
885 if (dir
->d_type
== DT_DIR
) {
888 } else if (dir
->d_type
== DT_UNKNOWN
) {
892 sprintf(path
, "%s/%s", fpath
, dir
->d_name
);
896 if (S_ISDIR(st
.st_mode
)) {
908 static int is_json_file(const char *name
)
912 if (strlen(name
) < 5)
915 suffix
= name
+ strlen(name
) - 5;
917 if (strncmp(suffix
, ".json", 5) == 0)
922 static int preprocess_arch_std_files(const char *fpath
, const struct stat
*sb
,
923 int typeflag
, struct FTW
*ftwbuf
)
925 int level
= ftwbuf
->level
;
926 int is_file
= typeflag
== FTW_F
;
928 if (level
== 1 && is_file
&& is_json_file(fpath
))
929 return json_events(fpath
, save_arch_std_events
, (void *)sb
);
934 static int process_one_file(const char *fpath
, const struct stat
*sb
,
935 int typeflag
, struct FTW
*ftwbuf
)
937 char *tblname
, *bname
;
938 int is_dir
= typeflag
== FTW_D
;
939 int is_file
= typeflag
== FTW_F
;
940 int level
= ftwbuf
->level
;
943 if (level
== 2 && is_dir
) {
945 * For level 2 directory, bname will include parent name,
946 * like vendor/platform. So search back from platform dir
949 bname
= (char *) fpath
+ ftwbuf
->base
- 2;
957 bname
= (char *) fpath
+ ftwbuf
->base
;
959 pr_debug("%s %d %7jd %-20s %s\n",
960 is_file
? "f" : is_dir
? "d" : "x",
961 level
, sb
->st_size
, bname
, fpath
);
963 /* base dir or too deep */
964 if (level
== 0 || level
> 3)
968 /* model directory, reset topic */
969 if ((level
== 1 && is_dir
&& is_leaf_dir(fpath
)) ||
970 (level
== 2 && is_dir
)) {
972 print_events_table_suffix(eventsfp
);
975 * Drop file name suffix. Replace hyphens with underscores.
976 * Fail if file name contains any alphanum characters besides
979 tblname
= file_name_to_table_name(bname
);
981 pr_info("%s: Error determining table name for %s\n", prog
,
986 print_events_table_prefix(eventsfp
, tblname
);
991 * Save the mapfile name for now. We will process mapfile
992 * after processing all JSON files (so we can write out the
993 * mapping table after all PMU events tables).
996 if (level
== 1 && is_file
) {
997 if (!strcmp(bname
, "mapfile.csv")) {
998 mapfile
= strdup(fpath
);
1002 pr_info("%s: Ignoring file %s\n", prog
, fpath
);
1007 * If the file name does not have a .json extension,
1008 * ignore it. It could be a readme.txt for instance.
1011 if (!is_json_file(bname
)) {
1012 pr_info("%s: Ignoring file without .json suffix %s\n", prog
,
1018 if (level
> 1 && add_topic(bname
))
1022 * Assume all other files are JSON files.
1024 * If mapfile refers to 'power7_core.json', we create a table
1025 * named 'power7_core'. Any inconsistencies between the mapfile
1026 * and directory tree could result in build failure due to table
1027 * names not being found.
1029 * Atleast for now, be strict with processing JSON file names.
1030 * i.e. if JSON file name cannot be mapped to C-style table name,
1034 struct perf_entry_data data
= {
1035 .topic
= get_topic(),
1039 err
= json_events(fpath
, print_events_table_entry
, &data
);
1048 #define PATH_MAX 4096
1052 * Starting in directory 'start_dirname', find the "mapfile.csv" and
1053 * the set of JSON files for the architecture 'arch'.
1055 * From each JSON file, create a C-style "PMU events table" from the
1056 * JSON file (see struct pmu_event).
1058 * From the mapfile, create a mapping between the CPU revisions and
1059 * PMU event tables (see struct pmu_events_map).
1061 * Write out the PMU events tables and the mapping table to pmu-event.c.
1063 int main(int argc
, char *argv
[])
1067 char ldirname
[PATH_MAX
];
1070 const char *output_file
;
1071 const char *start_dirname
;
1074 prog
= basename(argv
[0]);
1076 pr_err("Usage: %s <arch> <starting_dir> <output_file>\n", prog
);
1081 start_dirname
= argv
[2];
1082 output_file
= argv
[3];
1085 verbose
= atoi(argv
[4]);
1087 eventsfp
= fopen(output_file
, "w");
1089 pr_err("%s Unable to create required file %s (%s)\n",
1090 prog
, output_file
, strerror(errno
));
1094 sprintf(ldirname
, "%s/%s", start_dirname
, arch
);
1096 /* If architecture does not have any event lists, bail out */
1097 if (stat(ldirname
, &stbuf
) < 0) {
1098 pr_info("%s: Arch %s has no PMU event lists\n", prog
, arch
);
1102 /* Include pmu-events.h first */
1103 fprintf(eventsfp
, "#include \"pmu-events/pmu-events.h\"\n");
1106 * The mapfile allows multiple CPUids to point to the same JSON file,
1107 * so, not sure if there is a need for symlinks within the pmu-events
1110 * For now, treat symlinks of JSON files as regular files and create
1111 * separate tables for each symlink (presumably, each symlink refers
1112 * to specific version of the CPU).
1115 maxfds
= get_maxfds();
1117 rc
= nftw(ldirname
, preprocess_arch_std_files
, maxfds
, 0);
1118 if (rc
&& verbose
) {
1119 pr_info("%s: Error preprocessing arch standard files %s\n",
1122 } else if (rc
< 0) {
1123 /* Make build fail */
1124 free_arch_std_events();
1130 rc
= nftw(ldirname
, process_one_file
, maxfds
, 0);
1131 if (rc
&& verbose
) {
1132 pr_info("%s: Error walking file tree %s\n", prog
, ldirname
);
1134 } else if (rc
< 0) {
1135 /* Make build fail */
1136 free_arch_std_events();
1143 print_events_table_suffix(eventsfp
);
1146 pr_info("%s: No CPU->JSON mapping?\n", prog
);
1150 if (process_mapfile(eventsfp
, mapfile
)) {
1151 pr_info("%s: Error processing mapfile %s\n", prog
, mapfile
);
1152 /* Make build fail */
1160 create_empty_mapping(output_file
);
1161 free_arch_std_events();