Home
last modified time | relevance | path

Searched refs:VM_WIMG_MASK (Results 1 – 14 of 14) sorted by relevance

/xnu-12377.41.6/osfmk/vm/
H A Dmemory_types.h41 #define VM_WIMG_MASK 0xFF macro
H A Dvm_object_xnu.h434 #define vm_object_is_mte_mappable(object) (((object)->wimg_bits & VM_WIMG_MASK) == VM_WIMG_MTE)
H A Ddevice_vm.c282 vm_object->wimg_bits = device_object->flags & VM_WIMG_MASK; in device_pager_init()
H A Dvm_fault.c1818 VM_WIMG_MASK)) { in vm_fault_page()
3643 assert(!(flags & VM_WIMG_MASK)); in pmap_enter_object_options_check()
5789 if (!HAS_DEFAULT_CACHEABILITY(m_object->wimg_bits & VM_WIMG_MASK)) { in vm_fault_internal()
6852 int block_map_wimg = VM_WIMG_MASK & (int)object->wimg_bits; in vm_fault_internal()
8036 switch (object->wimg_bits & VM_WIMG_MASK) { in object_supports_coredump()
H A Dvm_pageout.c8107 cache_attr = object->wimg_bits & VM_WIMG_MASK;
H A Dvm_resident.c3350 cache_attr = object->wimg_bits & VM_WIMG_MASK; in vm_page_insert_internal()
H A Dvm_map.c17933 HAS_DEFAULT_CACHEABILITY(object->wimg_bits & VM_WIMG_MASK) && in vm_map_entry_is_reusable()
/xnu-12377.41.6/osfmk/device/
H A Ddevice_port.h83 _Static_assert(((DEVICE_PAGER_CONTIGUOUS | DEVICE_PAGER_NOPHYSCACHE) & VM_WIMG_MASK) == 0,
/xnu-12377.41.6/osfmk/kdp/
H A Dkdp_common.c213 …if ((cur_wimg_bits & VM_WIMG_MASK) != VM_WIMG_DEFAULT && (cur_wimg_bits & VM_WIMG_MASK) != VM_WIMG… in kdp_find_phys()
217 if ((cur_wimg_bits & VM_WIMG_MASK) != VM_WIMG_DEFAULT) { in kdp_find_phys()
/xnu-12377.41.6/osfmk/arm64/
H A Dloose_ends.c105 if ((wimg_bits_src & VM_WIMG_MASK) != VM_WIMG_DEFAULT) { in bcopy_phys_internal()
122 if ((wimg_bits_dst & VM_WIMG_MASK) != VM_WIMG_DEFAULT) { in bcopy_phys_internal()
343 if ((wimg_bits & VM_WIMG_MASK) != VM_WIMG_DEFAULT) { in bzero_phys_internal()
374 switch (wimg_bits & VM_WIMG_MASK) { in bzero_phys_internal()
420 (wimg_bits & VM_WIMG_MASK) == VM_WIMG_MTE); in bzero_phys_internal()
/xnu-12377.41.6/osfmk/kdp/output_stages/
H A Dout_memory_backing_aware_buffer.c55 return (attr & VM_WIMG_MASK) == VM_WIMG_DEFAULT; in is_normal_memory()
/xnu-12377.41.6/osfmk/arm64/sptm/pmap/
H A Dpmap.c2416 return (wimg & VM_WIMG_MASK) == VM_WIMG_MTE; in pmap_is_tagged_page()
6222 switch (wimg & (VM_WIMG_MASK)) {
6524 if ((flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT))) {
6525 wimg_bits = (flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT));
6657 if ((flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT))) {
6658 wimg_bits = (wimg_bits & (~VM_WIMG_MASK)) | (flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT));
10022 pmap_sync_wimg(pn, prev_cacheattr & VM_WIMG_MASK, new_cacheattr & VM_WIMG_MASK);
10043 unsigned int cacheattr = pmap_cache_attributes(pn) & VM_WIMG_MASK;
10054 unsigned int cacheattr = pmap_cache_attributes(pn) & VM_WIMG_MASK;
10436 switch (attributes & VM_WIMG_MASK) {
[all …]
/xnu-12377.41.6/osfmk/arm/pmap/
H A Dpmap.c5982 switch (wimg & (VM_WIMG_MASK)) {
6458 if ((flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT))) {
6459 wimg_bits = (flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT));
6606 if ((flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT))) {
6607 wimg_bits = (wimg_bits & (~VM_WIMG_MASK)) | (flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT));
10670 pmap_sync_wimg(pn, prev_cacheattr & VM_WIMG_MASK, new_cacheattr & VM_WIMG_MASK);
10677 unsigned int cacheattr = pmap_cache_attributes(pn) & VM_WIMG_MASK;
10693 unsigned int cacheattr = pmap_cache_attributes(pn) & VM_WIMG_MASK;
11021 arm64_sync_tlb((cacheattr & VM_WIMG_MASK) == VM_WIMG_RT);
11151 …_attr_template = (pp_attr_current & ~PP_ATTR_WIMG_MASK) | PP_ATTR_WIMG(cacheattr & (VM_WIMG_MASK));
[all …]
/xnu-12377.41.6/iokit/Kernel/
H A DIOMemoryDescriptor.cpp398 pagerFlags &= VM_WIMG_MASK; in cacheModeForPagerFlags()