Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,045 for mcall (0.1 sec)

  1. src/runtime/asm_mipsx.s

    	JMP	(R4)
    
    // void mcall(fn func(*g))
    // Switch to m->g0's stack, call fn(g).
    // Fn must never return. It should gogo(&g->sched)
    // to keep running g.
    TEXT runtime·mcall(SB),NOSPLIT|NOFRAME,$0-4
    	// Save caller state in g->sched
    	MOVW	R29, (g_sched+gobuf_sp)(g)
    	MOVW	R31, (g_sched+gobuf_pc)(g)
    	MOVW	R0, (g_sched+gobuf_lr)(g)
    
    	// Switch to m->g0 & its stack, call fn.
    	MOVW	g, R1
    	MOVW	g_m(g), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/runtime/asm_ppc64x.s

    DATA	debugCallFrameTooLarge<>+0x00(SB)/20, $"call frame too large"
    GLOBL	debugCallFrameTooLarge<>(SB), RODATA, $20	// Size duplicated below
    
    // debugCallV2 is the entry point for debugger-injected function
    // calls on running goroutines. It informs the runtime that a
    // debug call has been injected and creates a call frame for the
    // debugger to fill in.
    //
    // To inject a function call, a debugger should:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. src/runtime/metrics_test.go

    			for i, stk := range acceptStacks {
    				if goexperiment.StaticLockRanking {
    					if !slices.ContainsFunc(stk, func(s string) bool {
    						return s == "runtime.systemstack" || s == "runtime.mcall" || s == "runtime.mstart"
    					}) {
    						// stk is a call stack that is still on the user stack when
    						// it calls runtime.unlock. Add the extra function that
    						// we'll see, when the static lock ranking implementation of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/runtime/panic.go

    //
    //go:nosplit
    func gorecover(argp uintptr) any {
    	// Must be in a function running as part of a deferred call during the panic.
    	// Must be called from the topmost function of the call
    	// (the function used in the defer statement).
    	// p.argp is the argument pointer of that topmost deferred function call.
    	// Compare against argp reported by caller.
    	// If they match, the caller is the one who can recover.
    	gp := getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	CMPQ	BX, CX
    	JNE	bad_cpu
    #endif
    
    	CALL	runtime·check(SB)
    
    	MOVL	24(SP), AX		// copy argc
    	MOVL	AX, 0(SP)
    	MOVQ	32(SP), AX		// copy argv
    	MOVQ	AX, 8(SP)
    	CALL	runtime·args(SB)
    	CALL	runtime·osinit(SB)
    	CALL	runtime·schedinit(SB)
    
    	// create a new goroutine to start program
    	MOVQ	$runtime·mainPC(SB), AX		// entry
    	PUSHQ	AX
    	CALL	runtime·newproc(SB)
    	POPQ	AX
    
    	// start this M
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/call.go

    	} else {
    		if ddd {
    			// standard_func(a, b, c...)
    			//check.errorf(call.Ellipsis, "cannot use ... in call to non-variadic %s", call.Fun)
    			check.errorf(call, NonVariadicDotDotDot, "cannot use ... in call to non-variadic %s", call.Fun)
    			return
    		}
    		// standard_func(a, b, c)
    	}
    
    	// check argument count
    	if nargs != npars {
    		var at poser = call
    		qualifier := "not enough"
    		if nargs > npars {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. src/runtime/asm_arm64.s

    DATA	debugCallFrameTooLarge<>+0x00(SB)/20, $"call frame too large"
    GLOBL	debugCallFrameTooLarge<>(SB), RODATA, $20	// Size duplicated below
    
    // debugCallV2 is the entry point for debugger-injected function
    // calls on running goroutines. It informs the runtime that a
    // debug call has been injected and creates a call frame for the
    // debugger to fill in.
    //
    // To inject a function call, a debugger should:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. src/go/types/call.go

    	}
    	// x.typ may be generic
    
    	switch x.mode {
    	case invalid:
    		check.use(call.Args...)
    		x.expr = call
    		return statement
    
    	case typexpr:
    		// conversion
    		check.nonGeneric(nil, x)
    		if x.mode == invalid {
    			return conversion
    		}
    		T := x.typ
    		x.mode = invalid
    		switch n := len(call.Args); n {
    		case 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    					Name:   "plaintext on port 8000",
    					Call:   mkCall(8000, simulation.Plaintext),
    					Result: simulation.Result{Error: simulation.ErrNoFilterChain},
    				},
    				{
    					Name:   "mtls on port 8000",
    					Call:   mkCall(8000, simulation.MTLS),
    					Result: simulation.Result{ClusterMatched: "inbound|8000||"},
    				},
    				{
    					Name:   "plaintext port 9000",
    					Call:   mkCall(9000, simulation.Plaintext),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    	} {
    		calls = append(calls, simulation.Expect{
    			Name: fmt.Sprintf("%s-%d", call.call.Protocol, call.call.Port),
    			Call: call.call,
    			Result: simulation.Result{
    				ClusterMatched: fmt.Sprintf("outbound|%d||%s.default.svc.cluster.local", call.call.Port, call.expected),
    			},
    		})
    	}
    	service := `apiVersion: v1
    kind: Service
    metadata:
      name: alias
      namespace: default
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top