Searched refs:hole_end (Results 1 - 23 of 23) sorted by relevance

/illumos-gate/usr/src/lib/libbc/inc/include/sun4/
H A Dmmu.h96 extern addr_t hole_end; /* addr of end of MMU "hole" */
111 (mmu_3level || (addr_t)(a) < hole_start || (addr_t)(a) >= hole_end)
114 ((addr_t)(a) < hole_start || (addr_t)(a) >= hole_end)
/illumos-gate/usr/src/uts/sun4u/sys/
H A Dmachsystm.h360 extern caddr_t hole_start, hole_end;
367 #define INVALID_VADDR(a) (((a) >= hole_start && (a) < hole_end))
/illumos-gate/usr/src/uts/sun4v/cpu/
H A Dgeneric.c109 hole_end = (caddr_t)(0ull - (1ull << (va_bits - 1)));
111 hole_start = hole_end = 0;
H A Dniagara.c142 hole_end = (caddr_t)((0ull - (1ull << (va_bits - 1))) + (1ull << 32));
H A Dniagara2.c157 hole_end = (caddr_t)((0ull - (1ull << (va_bits - 1))) + (1ull << 32));
/illumos-gate/usr/src/uts/sun4v/sys/
H A Dmachsystm.h346 extern caddr_t hole_start, hole_end;
353 #define INVALID_VADDR(a) (((a) >= hole_start && (a) < hole_end))
/illumos-gate/usr/src/uts/sun4/os/
H A Ddtrace_subr.c71 if (hole_end > hole_start)
72 (*func)((uintptr_t)hole_start, (uintptr_t)hole_end);
H A Dstartup.c376 * 0xFFFFF810.00000000 -|-----------------------|- hole_end
2082 if ((caddr_t)ppvm_base <= hole_end) {
/illumos-gate/usr/src/uts/sun4u/cpu/
H A Dopl_olympus.c606 hole_start = hole_end = 0;
H A Dspitfire.c483 hole_end = (caddr_t)0xfffff80000000000ull;
492 hole_end = (caddr_t)((uintptr_t)hole_end + (1ul << 32));
H A Dus3_common.c533 hole_start = hole_end = 0;
/illumos-gate/usr/src/uts/i86pc/os/
H A Ddtrace_subr.c116 if (hole_end > hole_start)
117 (*func)(hole_start, hole_end);
H A Dstartup.c247 uintptr_t hole_start, hole_end; variable
/illumos-gate/usr/src/uts/i86pc/sys/
H A Dmachsystm.h163 extern uintptr_t hole_start, hole_end;
166 (((a) >= (caddr_t)hole_start && (a) < (caddr_t)hole_end))
/illumos-gate/usr/src/uts/i86pc/vm/
H A Dhat_kdi.c325 if (va + sz >= hole_start && va < hole_end)
H A Dhat_pte.h184 uintptr_t hole_end; /* end of VA hole (or 0 if none) */ member in struct:hat_mmu_info
244 #define IN_VA_HOLE(va) (mmu.hole_start <= (va) && (va) < mmu.hole_end)
H A Dhtable.h139 mmu.hole_end : (va & LEVEL_MASK(l)) + LEVEL_SIZE(l))
H A Dkboot_mmu.c266 probe_va = mmu.hole_end;
H A Dhtable.c1580 base = (mmu.hole_end + MMU_PAGEOFFSET) & MMU_PAGEMASK;
1653 if (l == mmu.max_level && va >= mmu.hole_start && va <= mmu.hole_end)
1654 va = mmu.hole_end + va - mmu.hole_start;
1882 va += ((mmu.hole_end - mmu.hole_start) + 1);
H A Dhat_i86.c554 mmu.hole_end = 0ul - mmu.hole_start - 1;
556 mmu.hole_end = 0;
557 mmu.hole_start = mmu.hole_end - 1;
569 hole_end = mmu.hole_end;
H A Dvm_machdep.c859 * hole_start and hole_end that should never be mapped.
863 if (hi < hole_end) {
866 /* lo < hole_start && hi >= hole_end */
873 else if (hi - hole_end >= tot_len)
874 lo = hole_end;
881 if (hi - hole_end >= tot_len)
882 lo = hole_end;
892 if (hi < hole_end)
894 if (lo < hole_end)
895 lo = hole_end;
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dmmapobj.c789 if ((lib_va_end > (size_t)hole_end) &&
790 (lib_va_start < (size_t)hole_end)) {
792 (size_t)hole_end, PAGESIZE);
/illumos-gate/usr/src/uts/sun4/vm/
H A Dvm_dep.c252 caddr_t hole_start, hole_end; variable
298 * hole_start and hole_end that should never be mapped by the MMU.
303 if (hi < hole_end)
306 /* lo < hole_start && hi >= hole_end */
313 else if (hi - hole_end >= tot_len)
314 lo = hole_end;
321 if (hi - hole_end >= tot_len)
322 lo = hole_end;
330 if (hi < hole_end)
332 if (lo < hole_end)
[all...]

Completed in 293 milliseconds