Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 503 for sP (0.07 sec)

  1. src/runtime/cgo/gcc_arm64.S

    EXT(crosscall1):
    	.cfi_startproc
    	stp x29, x30, [sp, #-96]!
    	.cfi_def_cfa_offset 96
    	.cfi_offset 29, -96
    	.cfi_offset 30, -88
    	mov x29, sp
    	.cfi_def_cfa_register 29
    	stp x19, x20, [sp, #80]
    	.cfi_offset 19, -16
    	.cfi_offset 20, -8
    	stp x21, x22, [sp, #64]
    	.cfi_offset 21, -32
    	.cfi_offset 22, -24
    	stp x23, x24, [sp, #48]
    	.cfi_offset 23, -48
    	.cfi_offset 24, -40
    	stp x25, x26, [sp, #32]
    	.cfi_offset 25, -64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. src/runtime/cgo/asm_386.s

    TEXT crosscall2(SB),NOSPLIT,$28-16
    	MOVL BP, 24(SP)
    	MOVL BX, 20(SP)
    	MOVL SI, 16(SP)
    	MOVL DI, 12(SP)
    
    	MOVL	ctxt+12(FP), AX
    	MOVL	AX, 8(SP)
    	MOVL	a+4(FP), AX
    	MOVL	AX, 4(SP)
    	MOVL	fn+0(FP), AX
    	MOVL	AX, 0(SP)
    	CALL	runtime·cgocallback(SB)
    
    	MOVL 12(SP), DI
    	MOVL 16(SP), SI
    	MOVL 20(SP), BX
    	MOVL 24(SP), BP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/runtime/export_debug_arm64_test.go

    }
    
    func (h *debugCallHandler) saveSigContext(ctxt *sigctxt) {
    	sp := ctxt.sp()
    	sp -= 2 * goarch.PtrSize
    	ctxt.set_sp(sp)
    	*(*uint64)(unsafe.Pointer(uintptr(sp))) = ctxt.lr() // save the current lr
    	ctxt.set_lr(ctxt.pc())                              // set new lr to the current pc
    	// Write the argument frame size.
    	*(*uintptr)(unsafe.Pointer(uintptr(sp - 16))) = h.argSize
    	// Save current registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. src/runtime/export_debug_ppc64le_test.go

    }
    
    func (h *debugCallHandler) saveSigContext(ctxt *sigctxt) {
    	sp := ctxt.sp()
    	sp -= 4 * goarch.PtrSize
    	ctxt.set_sp(sp)
    	*(*uint64)(unsafe.Pointer(uintptr(sp))) = ctxt.link() // save the current lr
    	ctxt.set_link(ctxt.pc())                              // set new lr to the current pc
    	// Write the argument frame size.
    	*(*uintptr)(unsafe.Pointer(uintptr(sp - 32))) = h.argSize
    	// Save current registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 15:33:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/runtime/sys_plan9_amd64.s

    	MOVQ	(g_stack+stack_hi)(R10), BP
    	MOVQ	BP, SP
    
    	// make room for args and g
    	SUBQ	$128, SP
    
    	// save g
    	MOVQ	g(AX), BP
    	MOVQ	BP, 32(SP)
    
    	// g = m->gsignal
    	MOVQ	R10, g(AX)
    
    	// load args and call sighandler
    	MOVQ	CX, 0(SP)
    	MOVQ	DX, 8(SP)
    	MOVQ	BP, 16(SP)
    
    	CALL	runtime·sighandler(SB)
    	MOVL	24(SP), AX
    
    	// restore g
    	get_tls(BX)
    	MOVQ	32(SP), R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 16:41:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/runtime/sys_plan9_386.s

    	MOVL	(g_stack+stack_hi)(BP), BP
    	MOVL	BP, SP
    
    	// make room for args and g
    	SUBL	$24, SP
    
    	// save g
    	MOVL	g(AX), BP
    	MOVL	BP, 20(SP)
    
    	// g = m->gsignal
    	MOVL	m_gsignal(BX), DI
    	MOVL	DI, g(AX)
    
    	// load args and call sighandler
    	MOVL	CX, 0(SP)
    	MOVL	DX, 4(SP)
    	MOVL	BP, 8(SP)
    
    	CALL	runtime·sighandler(SB)
    	MOVL	12(SP), AX
    
    	// restore g
    	get_tls(BX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  7. src/runtime/time_linux_amd64.s

    	JNE	noswitch
    
    	MOVQ	m_g0(BX), DX
    	MOVQ	(g_sched+gobuf_sp)(DX), SP	// Set SP to g0 stack
    
    noswitch:
    	SUBQ	$32, SP		// Space for two time results
    	ANDQ	$~15, SP	// Align for C code
    
    	MOVL	$0, DI // CLOCK_REALTIME
    	LEAQ	16(SP), SI
    	MOVQ	runtime·vdsoClockgettimeSym(SB), AX
    	CMPQ	AX, $0
    	JEQ	fallback
    	CALL	AX
    
    	MOVL	$1, DI // CLOCK_MONOTONIC
    	LEAQ	0(SP), SI
    	MOVQ	runtime·vdsoClockgettimeSym(SB), AX
    	CALL	AX
    
    ret:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. src/runtime/asm_386.s

    	// Align stack to call C function.
    	// We moved SP to BP above, but BP was clobbered by the libpreinit call.
    	MOVL	SP, BP
    	ANDL	$~15, SP
    
    	MOVL	$_rt0_386_lib_go(SB), BX
    	MOVL	BX, 0(SP)
    	MOVL	$0, 4(SP)
    
    	CALL	AX
    
    	MOVL	BP, SP
    
    	JMP	restore
    
    nocgo:
    	MOVL	$0x800000, 0(SP)                    // stacksize = 8192KB
    	MOVL	$_rt0_386_lib_go(SB), AX
    	MOVL	AX, 4(SP)                           // fn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. src/reflect/asm_386.s

    // for more details.
    // No argsize here, gc generates argsize info at call site.
    TEXT ·makeFuncStub(SB),(NOSPLIT|WRAPPER),$20
    	NO_LOCAL_POINTERS
    	MOVL	DX, 0(SP)
    	LEAL	argframe+0(FP), CX
    	MOVL	CX, 4(SP)
    	MOVB	$0, 16(SP)
    	LEAL	16(SP), AX
    	MOVL	AX, 8(SP)
    	MOVL	$0, 12(SP)
    	CALL	·callReflect(SB)
    	RET
    
    // methodValueCall is the code half of the function returned by makeMethodValue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 02 16:53:18 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. src/syscall/asm_plan9_amd64.s

    	MOVQ	trap+0(FP), BP	// syscall entry
    	// copy args down
    	LEAQ	a1+8(FP), SI
    	LEAQ	sysargs-160(SP), DI
    	CLD
    	MOVSQ
    	MOVSQ
    	MOVSQ
    	SYSCALL
    	MOVQ	AX, r1+32(FP)
    	MOVQ	$0, r2+40(FP)
    	CMPL	AX, $-1
    	JNE	ok3
    
    	LEAQ	errbuf-128(SP), AX
    	MOVQ	AX, sysargs-160(SP)
    	MOVQ	$128, sysargs1-152(SP)
    	MOVQ	$SYS_ERRSTR, BP
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 01:29:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top