Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for __kuser_memory_barrier (0.16 sec)

  1. src/runtime/sys_linux_arm.s

    // register. ARMv7 introduced the DMB instruction, but it's expensive
    // even on single-core devices. The kernel helper takes care of all of
    // this for us.
    
    TEXT kernelPublicationBarrier<>(SB),NOSPLIT,$0
    	// void __kuser_memory_barrier(void);
    	MOVW	$0xffff0fa0, R11
    	CALL	(R11)
    	RET
    
    TEXT ·publicationBarrier(SB),NOSPLIT,$0
    	MOVB	·goarm(SB), R11
    	CMP	$7, R11
    	BLT	2(PC)
    	JMP	·armPublicationBarrier(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top