Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LocResults (0.38 sec)

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

    	n0, n1 := "nil", "nil"
    	if t[0] != nil {
    		n0 = t[0].String()
    	}
    	if t[1] != nil {
    		n1 = t[1].String()
    	}
    	return fmt.Sprintf("<%s,%s>", n0, n1)
    }
    
    type LocResults []Location
    
    func (t LocResults) String() string {
    	s := ""
    	a := "<"
    	for _, r := range t {
    		a += s
    		s = ","
    		a += r.String()
    	}
    	a += ">"
    	return a
    }
    
    type Spill struct {
    	Type   *types.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    				continue
    			}
    			if v.Op == OpSelect0 || v.Op == OpSelect1 || v.Op == OpSelectN {
    				if s.values[v.ID].needReg {
    					if v.Op == OpSelectN {
    						s.assignReg(register(s.f.getHome(v.Args[0].ID).(LocResults)[int(v.AuxInt)].(*Register).num), v, v)
    					} else {
    						var i = 0
    						if v.Op == OpSelect1 {
    							i = 1
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top