|
PAPI
5.3.0.0
|

Go to the source code of this file.
Functions | |
| char * | get_offcore_event (char *event, int size) |
| char * | get_instructions_event (char *event, int size) |
| char* get_instructions_event | ( | char * | event, |
| int | size | ||
| ) |
Definition at line 57 of file event_name_lib.c.
{
const PAPI_hw_info_t *hwinfo;
hwinfo = PAPI_get_hardware_info();
if ( hwinfo == NULL ) {
return NULL;
}
if (hwinfo->vendor == PAPI_VENDOR_INTEL) {
if ( hwinfo->cpuid_family == 6) {
strncpy(event,"INSTRUCTIONS_RETIRED",size);
return event;
}
if ( hwinfo->cpuid_family == 15) {
strncpy(event,"INSTR_RETIRED:NBOGUSNTAG",size);
return event;
}
return NULL;
}
else if (hwinfo->vendor == PAPI_VENDOR_AMD) {
strncpy(event,"RETIRED_INSTRUCTIONS",size);
return event;
}
return NULL;
}


| char* get_offcore_event | ( | char * | event, |
| int | size | ||
| ) |
Definition at line 7 of file event_name_lib.c.
{
const PAPI_hw_info_t *hwinfo;
hwinfo = PAPI_get_hardware_info();
if ( hwinfo == NULL ) {
return NULL;
}
if (hwinfo->vendor == PAPI_VENDOR_INTEL) {
if ( hwinfo->cpuid_family == 6) {
switch(hwinfo->cpuid_model) {
case 26:
case 30:
case 31: /* Nehalem */
case 46: /* Nehalem EX */
strncpy(event,"OFFCORE_RESPONSE_0:DMND_DATA_RD:LOCAL_DRAM",size);
return event;
break;
case 37:
case 44: /* Westmere */
case 47: /* Westmere EX */
strncpy(event,"OFFCORE_RESPONSE_0:DMND_DATA_RD:LOCAL_DRAM",size);
return event;
break;
case 45: /* SandyBridge EP */
case 42: /* SandyBridge */
strncpy(event,"OFFCORE_RESPONSE_0:DMND_DATA_RD:ANY_RESPONSE",size);
return event;
break;
case 58: /* IvyBridge */
case 62: /* Ivy Trail */
strncpy(event,"OFFCORE_RESPONSE_0:DMND_DATA_RD:ANY_RESPONSE",size);
return event;
break;
}
}
return NULL;
}
else if (hwinfo->vendor == PAPI_VENDOR_AMD) {
return NULL;
}
return NULL;
}

