HomeSort by: relevance | last modified time | path
    Searched refs:PSL_VEC (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/arch/powerpc/oea/
altivec.c 88 mtmsr((msr & ~PSL_EE) | PSL_VEC);
112 l->l_md.md_flags |= PSL_VEC;
113 l->l_md.md_utf->tf_srr1 |= PSL_VEC;
125 mtmsr((msr & ~PSL_EE) | PSL_VEC);
155 l->l_md.md_utf->tf_srr1 &= ~PSL_VEC;
156 l->l_md.md_flags &= ~PSL_VEC;
199 mcp->__gregs[_REG_MSR] |= PSL_VEC;
223 msr = (omsr & ~PSL_EE) | PSL_VEC;
283 msr = (omsr & ~PSL_EE) | PSL_VEC;
oea_machdep.c 332 : "J"(PSL_VEC));
338 if (scratch & PSL_VEC) {
442 * Don't allow to set PSL_FP/PSL_VEC, since that will affect PCU.
  /src/sys/arch/powerpc/include/
userret.h 72 tf->tf_srr1 &= (PSL_USERSRR1|PSL_FP|PSL_VEC);
76 * We need to manually restore PSL_VEC each time we return
77 * to user mode since PSL_VEC isn't always preserved in SRR1.
80 tf->tf_srr1 |= l->l_md.md_flags & PSL_VEC;
psl.h 46 #define PSL_VEC 0x02000000 /* ..6. AltiVec vector unit available */
75 #define PSL_601_MASK ~(PSL_VEC|PSL_POW|PSL_ILE|PSL_BE|PSL_RI|PSL_LE)
98 * only ones preserved in the trap. Note that this means PSL_VEC needs to
  /src/sys/arch/powerpc/powerpc/
syscall.c 72 tf->tf_srr1 &= ~(PSL_FP|PSL_VEC); /* Disable FP & AltiVec, as we can't
powerpc_machdep.c 781 msr |= PSL_VEC;
800 msr &= ~PSL_VEC;

Completed in 16 milliseconds