Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Antras (0.48 sec)

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

    				// Failed - save for next iteration.
    				dsts[i] = d
    				i++
    			}
    		}
    		if i < len(dsts) {
    			// Made some progress. Go around again.
    			dsts = dsts[:i]
    
    			// Append any extras destinations we generated.
    			dsts = append(dsts, e.extra...)
    			e.extra = e.extra[:0]
    			continue
    		}
    
    		// We made no progress. That means that any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

    	// are transmuted into other values.
    	s := v.String()
    	return fmt.Sprintf("<span class=\"%s ssa-value\">%s</span>", s, s)
    }
    
    func (v *Value) LongHTML() string {
    	// TODO: Any intra-value formatting?
    	// I'm wary of adding too much visual noise,
    	// but a little bit might be valuable.
    	// We already have visual noise in the form of punctuation
    	// maybe we could replace some of that with formatting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. src/cmd/internal/goobj/mkbuiltin.go

    	// The backend may create more references of builtin functions.
    	// We also want to include predefined types.
    	// Add them.
    	extras := append(fextras[:], enumerateBasicTypes()...)
    	for _, b := range extras {
    		prefix := ""
    		if !strings.HasPrefix(b.name, "type:") {
    			prefix = pkg + "."
    		}
    		name := prefix + b.name
    		if decls[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/pgo/devirtualize/mult.pkg/mult.go

    	}
    	return a * b
    }
    
    type NegMult struct{}
    
    func (NegMult) Multiply(a, b int) int {
    	for i := 0; i < 1000; i++ {
    		sink++
    	}
    	return -1 * a * b
    }
    
    // N.B. Different types than AddFunc to test intra-line disambiguation.
    type MultFunc func(int64, int64) int64
    
    func MultFn(a, b int64) int64 {
    	for i := 0; i < 1000; i++ {
    		sink++
    	}
    	return a * b
    }
    
    func NegMultFn(a, b int64) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top