Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 990 for pgstack (0.22 sec)

  1. src/runtime/sys_aix_ppc64.s

    	XOR	 R0, R0 // reset R0
    
    	// set g
    	MOVD	m_g0(R3), g
    	BL	runtime·save_g(SB)
    	MOVD	R3, g_m(g)
    
    	// Layout new m scheduler stack on os stack.
    	MOVD	R1, R3
    	MOVD	R3, (g_stack+stack_hi)(g)
    	SUB	$(const_threadStackSize), R3		// stack size
    	MOVD	R3, (g_stack+stack_lo)(g)
    	ADD	$const_stackGuard, R3
    	MOVD	R3, g_stackguard0(g)
    	MOVD	R3, g_stackguard1(g)
    
    	BL	runtime·mstart(SB)
    
    	MOVD R0, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/runtime/asm_386.s

    	get_tls(CX)
    	MOVL	8(SP), DI
    	MOVL	(g_stack+stack_hi)(DI), SI
    	SUBL	4(SP), SI
    	MOVL	DI, g(CX)
    	MOVL	SI, SP
    
    	MOVL	AX, ret+8(FP)
    	RET
    nosave:
    	// Now on a scheduling stack (a pthread-created stack).
    	SUBL	$32, SP
    	ANDL	$~15, SP	// alignment, perhaps unnecessary
    	MOVL	DX, 4(SP)	// save original stack pointer
    	MOVL	BX, 0(SP)	// first argument in x86-32 ABI
    	CALL	AX
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_amd64.s

    	PUSH_REGS_HOST_TO_ABI0()
    
    	// CX contains first arg newm
    	MOVQ	m_g0(CX), DX		// g
    
    	// Layout new m scheduler stack on os stack.
    	MOVQ	SP, AX
    	MOVQ	AX, (g_stack+stack_hi)(DX)
    	SUBQ	$(64*1024), AX		// initial stack size (adjusted later)
    	MOVQ	AX, (g_stack+stack_lo)(DX)
    	ADDQ	$const_stackGuard, AX
    	MOVQ	AX, g_stackguard0(DX)
    	MOVQ	AX, g_stackguard1(DX)
    
    	// Set up tls.
    	LEAQ	m_tls(CX), DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_s390x.s

    	MOVB	runtime·iscgo(SB),R12
    	CMPBNE	R12, $0, nosaveg
    
    	MOVD	m_gsignal(R6), R12	// g.m.gsignal
    	CMPBEQ	R12, $0, nosaveg
    
    	CMPBEQ	g, R12, nosaveg
    	MOVD	(g_stack+stack_lo)(R12), R12 // g.m.gsignal.stack.lo
    	MOVD	g, (R12)
    
    	BL	R9 // to vdso lookup
    
    	MOVD	$0, (R12)
    
    	JMP	finish
    
    nosaveg:
    	BL	R9					// to vdso lookup
    
    finish:
    	MOVD	0(R15), R3		// sec
    	MOVD	8(R15), R5		// nsec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.stack.part.pbtxt

    A. Unique TensorFlower <******@****.***> 1690483910 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 27 18:59:05 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.stack.part.pbtxt.debug

    Andy Ly <******@****.***> 1576078406 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 11 15:36:55 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  7. releasenotes/notes/45564-virtualHost-Domains-for-dual-stack.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 45557
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 12 23:53:06 UTC 2023
    - 229 bytes
    - Viewed (0)
  8. src/internal/trace/internal/oldtrace/parser.go

    	EvGoSleep           event.Type = 19 // goroutine calls Sleep [timestamp, stack]
    	EvGoBlock           event.Type = 20 // goroutine blocks [timestamp, stack]
    	EvGoUnblock         event.Type = 21 // goroutine is unblocked [timestamp, goroutine id, seq, stack]
    	EvGoBlockSend       event.Type = 22 // goroutine blocks on chan send [timestamp, stack]
    	EvGoBlockRecv       event.Type = 23 // goroutine blocks on chan recv [timestamp, stack]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. src/internal/trace/generation.go

    		ev, err := r.ReadByte()
    		if err != nil {
    			return err
    		}
    		if event.Type(ev) != go122.EvStack {
    			return fmt.Errorf("expected stack event, got %d", ev)
    		}
    
    		// Read the stack's ID.
    		id, err := binary.ReadUvarint(r)
    		if err != nil {
    			return err
    		}
    
    		// Read how many frames are in each stack.
    		nFrames, err := binary.ReadUvarint(r)
    		if err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    		return false
    	}
    	// pending is not absent, therefore it has either a stack mapping,
    	// or registers, or both.
    	if pending.onStack() && pending.StackOffset != new.StackOffset {
    		// if pending has a stack offset, then new must also, and it
    		// must be the same (StackOffset encodes onStack).
    		return false
    	}
    	if pending.Registers&new.Registers != pending.Registers {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top