Home
last modified time | relevance | path

Searched refs:ild (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_ild.c60 static inline uint8_t get_byte(const struct pt_ild *ild, uint8_t i) in get_byte() argument
62 return ild->itext[i]; in get_byte()
65 static inline uint8_t const *get_byte_ptr(const struct pt_ild *ild, uint8_t i) in get_byte_ptr() argument
67 return ild->itext + i; in get_byte_ptr()
70 static inline int mode_64b(const struct pt_ild *ild) in mode_64b() argument
72 return ild->mode == ptem_64bit; in mode_64b()
75 static inline int mode_32b(const struct pt_ild *ild) in mode_32b() argument
77 return ild->mode == ptem_32bit; in mode_32b()
86 pti_get_nominal_eosz_non64(const struct pt_ild *ild) in pti_get_nominal_eosz_non64() argument
88 if (mode_32b(ild)) { in pti_get_nominal_eosz_non64()
[all …]
/freebsd/contrib/processor-trace/libipt/internal/include/
H A Dpt_ild.h80 static inline pti_map_enum_t pti_get_map(const struct pt_ild *ild) in pti_get_map() argument
82 return (pti_map_enum_t) ild->map; in pti_get_map()
85 static inline uint8_t pti_get_modrm_mod(const struct pt_ild *ild) in pti_get_modrm_mod() argument
87 return ild->modrm_byte >> 6; in pti_get_modrm_mod()
90 static inline uint8_t pti_get_modrm_reg(const struct pt_ild *ild) in pti_get_modrm_reg() argument
92 return (ild->modrm_byte >> 3) & 7; in pti_get_modrm_reg()
95 static inline uint8_t pti_get_modrm_rm(const struct pt_ild *ild) in pti_get_modrm_rm() argument
97 return ild->modrm_byte & 7; in pti_get_modrm_rm()
/freebsd/sys/x86/iommu/
H A Damd_drv.c445 struct ivhd_lookup_data ild; in amdiommu_attach() local
466 ild.sc = sc; in amdiommu_attach()
467 ild.devid = sc->device_id; in amdiommu_attach()
469 ivrs_lookup_ivhd_0x40, ivrs_lookup_ivhd_0x10, &ild); in amdiommu_attach()
/freebsd/contrib/libpcap/
H A Doptimize.c951 struct slist *add, *tax, *ild; in opt_peep() local
987 ild = this_op(tax->next); in opt_peep()
988 if (ild == 0 || BPF_CLASS(ild->s.code) != BPF_LD || in opt_peep()
989 BPF_MODE(ild->s.code) != BPF_IND) in opt_peep()
1019 ild->s.k += s->s.k; in opt_peep()
/freebsd/contrib/processor-trace/libipt/
H A DCMakeLists.txt122 add_ptunit_std_test(ild)
/freebsd/usr.sbin/pmcstudy/
H A Dpmcstudy.c1293 struct counters *ild; in lcp_stall() local
1298 ild = find_counter(cpu, "ILD_STALL.LCP"); in lcp_stall()
1300 d1 = ild->vals[pos] * 1.0; in lcp_stall()
1303 d1 = ild->sum * 1.0; in lcp_stall()