Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 275 for sP (0.23 sec)

  1. src/runtime/sys_windows_386.s

    TEXT sigtramp<>(SB),NOSPLIT,$0-0
    	SUBL	$40, SP
    
    	// save callee-saved registers
    	MOVL	BX, 28(SP)
    	MOVL	BP, 16(SP)
    	MOVL	SI, 20(SP)
    	MOVL	DI, 24(SP)
    
    	MOVL	AX, 0(SP)
    	MOVL	CX, 4(SP)
    	CALL	runtime·sigtrampgo(SB)
    	MOVL	8(SP), AX
    
    	// restore callee-saved registers
    	MOVL	24(SP), DI
    	MOVL	20(SP), SI
    	MOVL	16(SP), BP
    	MOVL	28(SP), BX
    
    	ADDL	$40, SP
    	// RET 4 (return and pop 4 bytes parameters)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. test/codegen/issue61356.go

    	// amd64:-`.*SP.*`
    	out |= in[10] << 34
    	// amd64:-`.*SP.*`
    	out |= in[11] << 37
    	// amd64:-`.*SP.*`
    	out |= in[12] << 40
    	// amd64:-`.*SP.*`
    	out |= in[13] << 43
    	// amd64:-`.*SP.*`
    	out |= in[14] << 46
    	// amd64:-`.*SP.*`
    	out |= in[15] << 49
    	// amd64:-`.*SP.*`
    	out |= in[16] << 52
    	// amd64:-`.*SP.*`
    	out |= in[17] << 55
    	// amd64:-`.*SP.*`
    	out |= in[18] << 58
    	// amd64:-`.*SP.*`
    	out |= in[19] << 61
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:19:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/runtime/asan.go

    //go:nosplit
    func asanread(addr unsafe.Pointer, sz uintptr) {
    	sp := getcallersp()
    	pc := getcallerpc()
    	doasanread(addr, sz, sp, pc)
    }
    
    //go:linkname asanwrite
    //go:nosplit
    func asanwrite(addr unsafe.Pointer, sz uintptr) {
    	sp := getcallersp()
    	pc := getcallerpc()
    	doasanwrite(addr, sz, sp, pc)
    }
    
    //go:noescape
    func doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:39:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_amd64.s

    	// The values are in registers.
    	MOVQ	CX, (16+0)(SP)
    	MOVQ	DX, (16+8)(SP)
    	MOVQ	R8, (16+16)(SP)
    	MOVQ	R9, (16+24)(SP)
    	// R8 = address of args vector
    	LEAQ	(16+0)(SP), R8
    
    	// remove return address from stack, we are not returning to callbackasm, but to its caller.
    	MOVQ	0(SP), AX
    	ADDQ	$8, SP
    
    	// determine index into runtime·cbs table
    	MOVQ	$runtime·callbackasm(SB), DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/runtime/asm_amd64.s

    	MOVQ	R15, r15-(14*8+8)(SP)
    	MOVQ	R14, r14-(13*8+8)(SP)
    	MOVQ	R13, r13-(12*8+8)(SP)
    	MOVQ	R12, r12-(11*8+8)(SP)
    	MOVQ	R11, r11-(10*8+8)(SP)
    	MOVQ	R10, r10-(9*8+8)(SP)
    	MOVQ	R9, r9-(8*8+8)(SP)
    	MOVQ	R8, r8-(7*8+8)(SP)
    	MOVQ	DI, di-(6*8+8)(SP)
    	MOVQ	SI, si-(5*8+8)(SP)
    	MOVQ	BP, bp-(4*8+8)(SP)
    	MOVQ	BX, bx-(3*8+8)(SP)
    	MOVQ	DX, dx-(2*8+8)(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. src/runtime/asan_amd64.s

    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    TEXT	runtime·doasanread(SB), NOSPLIT, $0-32
    	MOVQ	addr+0(FP), RARG0
    	MOVQ	sz+8(FP), RARG1
    	MOVQ	sp+16(FP), RARG2
    	MOVQ	pc+24(FP), RARG3
    	// void __asan_read_go(void *addr, uintptr_t sz, void *sp, void *pc);
    	MOVQ	$__asan_read_go(SB), AX
    	JMP	asancall<>(SB)
    
    // func runtime·doasanwrite(addr unsafe.Pointer, sz, sp, pc uintptr)
    TEXT	runtime·doasanwrite(SB), NOSPLIT, $0-32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. pkg/kubelet/server/stats/summary.go

    func (sp *summaryProviderImpl) GetCPUAndMemoryStats(ctx context.Context) (*statsapi.Summary, error) {
    	// TODO(timstclair): Consider returning a best-effort response if any of
    	// the following errors occur.
    	node, err := sp.provider.GetNode()
    	if err != nil {
    		return nil, fmt.Errorf("failed to get node info: %v", err)
    	}
    	nodeConfig := sp.provider.GetNodeConfig()
    	rootStats, err := sp.provider.GetCgroupCPUAndMemoryStats("/", false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top