Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SETG (0.04 sec)

  1. src/runtime/proc.go

    	// Store the original signal mask for use by minit.
    	mp.sigmask = sigmask
    
    	// Install TLS on some platforms (previously setg
    	// would do this if necessary).
    	osSetupTLS(mp)
    
    	// Install g (= m->g0) and set the stack bounds
    	// to match the current stack.
    	setg(mp.g0)
    	sp := getcallersp()
    	callbackUpdateSystemStack(mp, sp, signal)
    
    	// Should mark we are already in Go now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		x15        = buildReg("X15")
    		gpsp       = gp | buildReg("SP")
    		gpspsb     = gpsp | buildReg("SB")
    		gpspsbg    = gpspsb | g
    		callerSave = gp | fp | g // runtime.setg (and anything calling it) may clobber g
    	)
    	// Common slices of register masks
    	var (
    		gponly = []regMask{gp}
    		fponly = []regMask{fp}
    	)
    
    	// Common regInfo
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
Back to top