13 lines
311 B
C
13 lines
311 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include "map_symbol.h"
|
|
#include "mem-events.h"
|
|
|
|
/* PowerPC does not support 'ldlat' parameter. */
|
|
char *perf_mem_events__name(int i, char *pmu_name __maybe_unused)
|
|
{
|
|
if (i == PERF_MEM_EVENTS__LOAD)
|
|
return (char *) "cpu/mem-loads/";
|
|
|
|
return (char *) "cpu/mem-stores/";
|
|
}
|