Home
last modified time | relevance | path

Searched refs:md_flags (Results 1 – 11 of 11) sorted by relevance

/f-stack/freebsd/amd64/amd64/
H A Dvm_machdep.c375 return (((curproc->p_md.md_flags & P_MD_KPTI) != 0) == in cpu_exec_vmspace_reuse()
384 p->p_md.md_flags |= P_MD_KPTI; in cpu_procctl_kpti_ctl()
386 p->p_md.md_flags &= ~P_MD_KPTI; in cpu_procctl_kpti_ctl()
392 *val = (p->p_md.md_flags & P_MD_KPTI) != 0 ? in cpu_procctl_kpti_status()
407 p->p_md.md_flags |= P_MD_LA48; in cpu_procctl_la_ctl()
408 p->p_md.md_flags &= ~P_MD_LA57; in cpu_procctl_la_ctl()
412 p->p_md.md_flags &= ~P_MD_LA48; in cpu_procctl_la_ctl()
413 p->p_md.md_flags |= P_MD_LA57; in cpu_procctl_la_ctl()
419 p->p_md.md_flags &= ~(P_MD_LA48 | P_MD_LA57); in cpu_procctl_la_ctl()
430 if ((p->p_md.md_flags & P_MD_LA48) != 0) in cpu_procctl_la_status()
[all …]
H A Delf_machdep.c151 if ((imgp->proc->p_md.md_flags & P_MD_LA57) != 0) in freebsd_brand_info_la57_img_compat()
155 if ((imgp->proc->p_md.md_flags & P_MD_LA48) != 0) in freebsd_brand_info_la57_img_compat()
H A Dpmap.c4091 p->p_md.md_flags |= P_MD_KPTI; in pmap_pinit0()
4227 if ((curproc->p_md.md_flags & P_MD_KPTI) != 0) { in pmap_pinit_type()
/f-stack/freebsd/mips/include/
H A Dproc.h52 int md_flags; /* machine-dependent flags */ member
/f-stack/freebsd/mips/mips/
H A Dpm_machdep.c119 sf.sf_uc.uc_mcontext.mc_fpused = td->td_md.md_flags & MDTD_FPUSED; in sendsig()
342 mcp->mc_fpused = td->td_md.md_flags & MDTD_FPUSED; in get_mcontext()
369 td->td_md.md_flags = mcp->mc_fpused & MDTD_FPUSED; in set_mcontext()
469 td->td_md.md_flags &= ~MDTD_FPUSED; in exec_setregs()
H A Dvm_machdep.c115 td2->td_md.md_flags = td1->td_md.md_flags & MDTD_FPUSED; in cpu_fork()
148 if (td1->td_md.md_flags & MDTD_COP2USED) { in cpu_fork()
H A Dtrap.c932 if ((td->td_md.md_flags & MDTD_COP2USED) && in trap()
951 td->td_md.md_flags |= MDTD_COP2USED; in trap()
979 td->td_md.md_flags |= MDTD_FPUSED; in trap()
985 if ((td->td_md.md_flags & MDTD_COP2USED) && in trap()
1003 td->td_md.md_flags |= MDTD_COP2USED; in trap()
H A Dgenassym.c78 ASSYM(TD_MDFLAGS, offsetof(struct thread, td_md.md_flags));
H A Dswtch.S230 lw t2, TD_MDFLAGS(a3) # get md_flags
H A Dfreebsd32_machdep.c385 sf.sf_uc.uc_mcontext.mc_fpused = td->td_md.md_flags & MDTD_FPUSED; in freebsd32_sendsig()
/f-stack/freebsd/amd64/include/
H A Dproc.h83 u_int md_flags; /* (c) md process flags P_MD */ member