Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for elts (0.1 sec)

  1. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	b := v.Block
    	// match: (MOVBUreg x:(FLES _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpRISCV64FLES {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(FLTS _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpRISCV64FLTS {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(FEQS _ _))
    	// result: x
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	semacquire(&worldsema)
    	gp := getg()
    	gp.m.preemptoff = reason.String()
    	systemstack(func() {
    		// Mark the goroutine which called stopTheWorld preemptible so its
    		// stack may be scanned.
    		// This lets a mark worker scan us while we try to stop the world
    		// since otherwise we could get in a mutual preemption deadlock.
    		// We must not modify anything on the G stack because a stack shrink
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top