VirtualBox

Changeset 59747 in vbox for trunk/src/VBox/Runtime/r0drv


Ignore:
Timestamp:
Feb 19, 2016 11:18:18 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
105617
Message:

iprt/asm.h: Cleaned up the ASMMemIsAll8/U32 mess and implmeneted the former in assembly. (Found inverted usage due to bad naming in copyUtf8Block, but it is fortunately an unused method.) Replaces the complicated ASMBitFirstSet based scanning in RTSgBufIsZero with a simple call to the new ASMMemIsZero function.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r0drv/alloc-ef-r0drv.cpp

    r58278 r59747  
    672672         */
    673673# ifdef RTR0MEM_EF_IN_FRONT
    674         void *pvWrong = ASMMemIsAll8((char *)pv + pBlock->cbUnaligned,
    675                                      RT_ALIGN_Z(pBlock->cbAligned, PAGE_SIZE) - pBlock->cbUnaligned,
    676                                      RTR0MEM_EF_NOMAN_FILLER);
     674        void *pvWrong = ASMMemFirstMismatchingU8((char *)pv + pBlock->cbUnaligned,
     675                                                 RT_ALIGN_Z(pBlock->cbAligned, PAGE_SIZE) - pBlock->cbUnaligned,
     676                                                 RTR0MEM_EF_NOMAN_FILLER);
    677677# else
    678678        /* Alignment must match allocation alignment in rtMemAlloc(). */
    679         void *pvWrong = ASMMemIsAll8((char *)pv + pBlock->cbUnaligned,
    680                                      pBlock->cbAligned - pBlock->cbUnaligned,
    681                                      RTR0MEM_EF_NOMAN_FILLER);
     679        void *pvWrong = ASMMemFirstMismatchingU8((char *)pv + pBlock->cbUnaligned,
     680                                                 pBlock->cbAligned - pBlock->cbUnaligned,
     681                                                 RTR0MEM_EF_NOMAN_FILLER);
    682682        if (pvWrong)
    683683            RTAssertDoPanic();
    684         pvWrong = ASMMemIsAll8((void *)((uintptr_t)pv & ~(uintptr_t)PAGE_OFFSET_MASK),
    685                                RT_ALIGN_Z(pBlock->cbAligned, PAGE_SIZE) - pBlock->cbAligned,
    686                                RTR0MEM_EF_NOMAN_FILLER);
     684        pvWrong = ASMMemFirstMismatchingU8((void *)((uintptr_t)pv & ~(uintptr_t)PAGE_OFFSET_MASK),
     685                                           RT_ALIGN_Z(pBlock->cbAligned, PAGE_SIZE) - pBlock->cbAligned,
     686                                           RTR0MEM_EF_NOMAN_FILLER);
    687687# endif
    688688        if (pvWrong)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette