Searched refs:pte32 (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/lib/libkvm/
H A Dkvm_minidump_mips.c160 mips32_pte_t pte32; local
207 if (pteindex >= vm->hdr.ptesize / sizeof(pte32))
209 pte32 = _mips32_pte_get(kd, pteindex);
210 valid = pte32 & MIPS_PTE_V;
212 a = MIPS32_PTE_TO_PA(pte32);
302 mips32_pte_t pte32; local
321 pte32 = _mips32_pte_get(it->kd, it->pteindex);
322 if ((pte32 & MIPS_PTE_V) == 0)
324 if ((pte32 & MIPS32_PTE_RO) == 0)
326 *pa = MIPS32_PTE_TO_PA(pte32);
[all...]
H A Dkvm_minidump_i386.c291 i386_pte_t pte32; local
308 pte32 = _i386_pte_get(it->kd, it->pteindex);
309 if ((pte32 & I386_PG_V) == 0)
311 *prot = _i386_entry_to_prot(pte32);
312 *pa = pte32 & I386_PG_FRAME;
/freebsd-13-stable/sys/amd64/vmm/
H A Dvmm_instruction_emul.c2073 uint32_t *ptpbase32, pte32; local
2120 pte32 = ptpbase32[ptpindex];
2122 if ((pte32 & PG_V) == 0 ||
2123 (usermode && (pte32 & PG_U) == 0) ||
2124 (writable && (pte32 & PG_RW) == 0)) {
2127 pte32);
2140 if (!check_only && (pte32 & PG_A) == 0) {
2142 pte32, pte32 | PG_A) == 0) {
2148 if (nlevels > 0 && (pte32
[all...]

Completed in 98 milliseconds