Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for runtime_entersyscall (0.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_386.s

    // The runtime may know about them.
    
    TEXT ·Syscall(SB),NOSPLIT,$0-28
    	JMP	syscall·Syscall(SB)
    
    TEXT ·Syscall6(SB),NOSPLIT,$0-40
    	JMP	syscall·Syscall6(SB)
    
    TEXT ·SyscallNoError(SB),NOSPLIT,$0-24
    	CALL	runtime·entersyscall(SB)
    	MOVL	trap+0(FP), AX  // syscall entry
    	MOVL	a1+4(FP), BX
    	MOVL	a2+8(FP), CX
    	MOVL	a3+12(FP), DX
    	MOVL	$0, SI
    	MOVL	$0, DI
    	INVOKE_SYSCALL
    	MOVL	AX, r1+16(FP)
    	MOVL	DX, r2+20(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/syscall/asm_linux_mipsx.s

    // Actually Syscall8 but the rest of the code expects it to be named Syscall9.
    TEXT ·Syscall9(SB),NOSPLIT,$28-52
    	NO_LOCAL_POINTERS
    	JAL	runtime·entersyscall(SB)
    	MOVW	a1+4(FP), R4
    	MOVW	a2+8(FP), R5
    	MOVW	a3+12(FP), R6
    	MOVW	a4+16(FP), R7
    	MOVW	a5+20(FP), R8
    	MOVW	a6+24(FP), R9
    	MOVW	a7+28(FP), R10
    	MOVW	a8+32(FP), R11
    	MOVW	R8, 16(R29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/syscall/asm_linux_arm.s

    // taking the address of the return value newoffset.
    // Underlying system call is
    //	llseek(int fd, int offhi, int offlo, int64 *result, int whence)
    TEXT ·seek(SB),NOSPLIT,$0-28
    	BL	runtime·entersyscall(SB)
    	MOVW	$SYS__LLSEEK, R7	// syscall entry
    	MOVW	fd+0(FP), R0
    	MOVW	offset_hi+8(FP), R1
    	MOVW	offset_lo+4(FP), R2
    	MOVW	$newoffset_lo+16(FP), R3
    	MOVW	whence+12(FP), R4
    	SWI	$0
    	MOVW	$0xfffff001, R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/syscall/asm_linux_s390x.s

    // func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err int)
    // Kernel interface gets call sub-number and pointer to a0.
    TEXT ·socketcall(SB),NOSPLIT,$0-72
    	BL	runtime·entersyscall(SB)
    	MOVD	$SYS_SOCKETCALL, R1	// syscall entry
    	MOVD	call+0(FP), R2		// socket call number
    	MOVD	$a0+8(FP), R3		// pointer to call arguments
    	MOVD	$0, R4
    	MOVD	$0, R5
    	MOVD	$0, R6
    	MOVD	$0, R7
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top