Lines Matching refs:pes
694 uint64_t pes[2]; in ptm_pcbe_overflow_bitmap() local
708 pes[0] = rdmsr(REG_PERFEVNT0); in ptm_pcbe_overflow_bitmap()
709 if (((uint32_t)pes[0] & P6_PES_EN) != P6_PES_EN) in ptm_pcbe_overflow_bitmap()
718 pes[1] = rdmsr(REG_PERFEVNT1); in ptm_pcbe_overflow_bitmap()
719 if ((uint32_t)pes[0] & P6_PES_INT) in ptm_pcbe_overflow_bitmap()
721 if ((uint32_t)pes[1] & P6_PES_INT) in ptm_pcbe_overflow_bitmap()
936 uint64_t pes; in ptm_pcbe_program() local
940 pes = pic1->ptm_ctl; in ptm_pcbe_program()
941 DTRACE_PROBE1(ptm__pes1, uint64_t, pes); in ptm_pcbe_program()
942 wrmsr(REG_PERFEVNT1, pes); in ptm_pcbe_program()
943 pes = pic0->ptm_ctl | (1 << CPC_P6_PES_EN); in ptm_pcbe_program()
944 DTRACE_PROBE1(ptm__pes0, uint64_t, pes); in ptm_pcbe_program()
945 wrmsr(REG_PERFEVNT0, pes); in ptm_pcbe_program()