ds.c (a976c2951d8f376112361830aa7762beff83a205) | ds.c (dd0b06b551f6b14da19582e301814746d838965a) |
---|---|
1#include <linux/bitops.h> 2#include <linux/types.h> 3#include <linux/slab.h> 4 5#include <asm/perf_event.h> 6#include <asm/insn.h> 7 8#include "../perf_event.h" --- 637 unchanged lines hidden (view full) --- 646}; 647 648struct event_constraint intel_glm_pebs_event_constraints[] = { 649 /* Allow all events as PEBS with no flags */ 650 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1), 651 EVENT_CONSTRAINT_END 652}; 653 | 1#include <linux/bitops.h> 2#include <linux/types.h> 3#include <linux/slab.h> 4 5#include <asm/perf_event.h> 6#include <asm/insn.h> 7 8#include "../perf_event.h" --- 637 unchanged lines hidden (view full) --- 646}; 647 648struct event_constraint intel_glm_pebs_event_constraints[] = { 649 /* Allow all events as PEBS with no flags */ 650 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1), 651 EVENT_CONSTRAINT_END 652}; 653 |
654struct event_constraint intel_glp_pebs_event_constraints[] = { 655 /* Allow all events as PEBS with no flags */ 656 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf), 657 EVENT_CONSTRAINT_END 658}; 659 |
|
654struct event_constraint intel_nehalem_pebs_event_constraints[] = { 655 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */ 656 INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */ 657 INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */ 658 INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INST_RETIRED.ANY */ 659 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */ 660 INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */ 661 INTEL_FLAGS_UEVENT_CONSTRAINT(0x02c5, 0xf), /* BR_MISP_RETIRED.NEAR_CALL */ --- 814 unchanged lines hidden --- | 660struct event_constraint intel_nehalem_pebs_event_constraints[] = { 661 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */ 662 INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */ 663 INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */ 664 INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INST_RETIRED.ANY */ 665 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */ 666 INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */ 667 INTEL_FLAGS_UEVENT_CONSTRAINT(0x02c5, 0xf), /* BR_MISP_RETIRED.NEAR_CALL */ --- 814 unchanged lines hidden --- |