Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unCacheLine (0.1 sec)

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

    		n = strings.Replace(f.pass.name, " ", "_", -1)
    	}
    	f.Warnl(f.Entry.Pos, "\t%s\t%s%s\t%s", n, key, value, f.Name)
    }
    
    // unCacheLine removes v from f's constant cache "line" for aux,
    // resets v.InCache when it is found (and removed),
    // and returns whether v was found in that line.
    func (f *Func) unCacheLine(v *Value, aux int64) bool {
    	vv := f.constants[aux]
    	for i, cv := range vv {
    		if v == cv {
    			vv[i] = vv[len(vv)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top