Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 238 for sP (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/interface/receiver.go

    	if _, ok := j.(P); ok {
    		println("dynamic j.(P) succeeded incorrectly")
    		panic("fail")
    	}
    
    	//	println("--struct pointer--");
    	var sp SP
    	sp.T = &t
    	sp.P()
    	sp.V()
    
    	v = sp
    	sp.V()
    
    	p = &sp
    	p.P()
    	p.V()
    
    	v = &sp
    	v.V()
    
    	p = sp // not error
    	p.P()
    	p.V()
    
    	if nv != 13 || np != 7 {
    		println("bad count", nv, np)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/avx512enc/avx512pf.s

    	VGATHERPF1DPS K3, (AX)(Z4*1)                       // 62f27d4bc61420
    	VGATHERPF1DPS K3, (SP)(Z4*2)                       // 62f27d4bc61464
    	VGATHERPF1QPD K3, (DX)(Z10*4)                      // 62b2fd4bc71492
    	VGATHERPF1QPD K3, (AX)(Z4*1)                       // 62f2fd4bc71420
    	VGATHERPF1QPD K3, (SP)(Z4*2)                       // 62f2fd4bc71464
    	VGATHERPF1QPS K3, (BP)(Z10*2)                      // 62b27d4bc7545500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  10. src/runtime/signal_arm64.go

    	// push the call. The function being pushed is responsible
    	// for restoring the LR and setting the SP back.
    	// This extra space is known to gentraceback.
    	sp := c.sp() - 16 // SP needs 16-byte alignment
    	c.set_sp(sp)
    	*(*uint64)(unsafe.Pointer(uintptr(sp))) = c.lr()
    	// Make sure a valid frame pointer is saved on the stack so that the
    	// frame pointer checks in adjustframe are happy, if they're enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 18:16:00 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top