Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 418 for clobber (0.62 sec)

  1. src/cmd/internal/obj/loong64/obj.go

    				// during the execution of the function prologue, the traceback
    				// code will not see a half-updated stack frame.
    				// This sequence is not async preemptible, as if we open a frame
    				// at the current SP, it will clobber the saved LR.
    				q = c.ctxt.StartUnsafePoint(q, c.newprog)
    
    				q = obj.Appendp(q, newprog)
    				q.As = mov
    				q.Pos = p.Pos
    				q.From.Type = obj.TYPE_REG
    				q.From.Reg = REGLINK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. src/runtime/sys_netbsd_arm64.s

    	MOVD	8*36(g), g
    
    	// this might be called in external code context,
    	// where g is not set.
    	// first save R0, because runtime·load_g will clobber it
    	MOVD	R0, 8(RSP)		// signum
    	MOVB	runtime·iscgo(SB), R0
    	CMP 	$0, R0
    	// XXX branch destination
    	BEQ	2(PC)
    	BL	runtime·load_g(SB)
    
    	// Restore signum to R0.
    	MOVW	8(RSP), R0
    	// R1 and R2 already contain info and ctx, respectively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_arm64.s

    	SAVE_R19_TO_R28(8*4)
    	SAVE_F8_TO_F15(8*14)
    
    	// this might be called in external code context,
    	// where g is not set.
    	// first save R0, because runtime·load_g will clobber it
    	MOVW	R0, 8(RSP)
    	MOVBU	runtime·iscgo(SB), R0
    	CBZ	R0, 2(PC)
    	BL	runtime·load_g(SB)
    
    	// Restore signum to R0.
    	MOVW	8(RSP), R0
    	// R1 and R2 already contain info and ctx, respectively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  4. src/go/types/operand.go

    	}
    
    	// x's type V is a type parameter and T is not a named type,
    	// and values x' of each specific type in V's type set are
    	// assignable to T.
    	if Vp != nil && !hasName(T) {
    		x := *x // don't clobber outer x
    		ok := false
    		code := IncompatibleAssign
    		Vp.is(func(V *term) bool {
    			if V == nil {
    				return false // no specific types
    			}
    			x.typ = V.typ
    			ok, code = x.assignableTo(check, T, cause)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/runtime/sys_freebsd_arm64.s

    	SAVE_R19_TO_R28(8*4)
    	SAVE_F8_TO_F15(8*14)
    
    	// this might be called in external code context,
    	// where g is not set.
    	// first save R0, because runtime·load_g will clobber it
    	MOVW	R0, 8(RSP)
    	MOVBU	runtime·iscgo(SB), R0
    	CMP	$0, R0
    	BEQ	2(PC)
    	BL	runtime·load_g(SB)
    
    	// Restore signum to R0.
    	MOVW	8(RSP), R0
    	// R1 and R2 already contain info and ctx, respectively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/walk.go

    	length.SetType(types.Types[types.TINT])
    	length.SetTypecheck(1)
    	return ptr, length
    }
    
    // mayCall reports whether evaluating expression n may require
    // function calls, which could clobber function call arguments/results
    // currently on the stack.
    func mayCall(n ir.Node) bool {
    	// When instrumenting, any expression might require function calls.
    	if base.Flag.Cfg.Instrumenting {
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/runtime/sys_netbsd_arm.s

    	MOVM.DB.W [R4-R11], (R13)
    	SUB	$16, R13
    
    	// this might be called in external code context,
    	// where g is not set.
    	// first save R0, because runtime·load_g will clobber it
    	MOVW	R0, 4(R13) // signum
    	MOVB	runtime·iscgo(SB), R0
    	CMP 	$0, R0
    	BL.NE	runtime·load_g(SB)
    
    	MOVW	R1, 8(R13)
    	MOVW	R2, 12(R13)
    	BL	runtime·sigtrampgo(SB)
    
    	// Restore callee-save registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/operand.go

    	}
    
    	// x's type V is a type parameter and T is not a named type,
    	// and values x' of each specific type in V's type set are
    	// assignable to T.
    	if Vp != nil && !hasName(T) {
    		x := *x // don't clobber outer x
    		ok := false
    		code := IncompatibleAssign
    		Vp.is(func(V *term) bool {
    			if V == nil {
    				return false // no specific types
    			}
    			x.typ = V.typ
    			ok, code = x.assignableTo(check, T, cause)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pkg/registry/policy/poddisruptionbudget/strategy_test.go

    		t.Errorf("PodDisruptionBudget status updates should allow change of CurrentHealthy: %v", newPdb.Status.CurrentHealthy)
    	}
    	if newPdb.Spec.MinAvailable.IntValue() != 3 {
    		t.Errorf("PodDisruptionBudget status updates should not clobber spec: %v", newPdb.Spec)
    	}
    	errs := StatusStrategy.ValidateUpdate(ctx, newPdb, oldPdb)
    	if len(errs) != 0 {
    		t.Errorf("Unexpected error %v", errs)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/runtime/sys_freebsd_arm.s

    	MOVM.DB.W [R4-R11], (R13)
    	SUB	$16, R13
    
    	// this might be called in external code context,
    	// where g is not set.
    	// first save R0, because runtime·load_g will clobber it
    	MOVW	R0, 4(R13) // signum
    	MOVB	runtime·iscgo(SB), R0
    	CMP 	$0, R0
    	BL.NE	runtime·load_g(SB)
    
    	MOVW	R1, 8(R13)
    	MOVW	R2, 12(R13)
    	BL	runtime·sigtrampgo(SB)
    
    	// Restore callee-save registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top