Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Min (0.18 sec)

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

    		// the jump table at all.
    		// We check that min <= idx <= max and jump around the jump table
    		// if that test fails.
    		// We implement min <= idx <= max with 0 <= idx-min <= max-min, because
    		// we'll need idx-min anyway as the control value for the jump table.
    		var min, max uint64
    		if unsigned {
    			min, _ = constant.Uint64Val(n.Cases[0])
    			max, _ = constant.Uint64Val(n.Cases[len(n.Cases)-1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/deadcode.go

    	"fmt"
    	"internal/abi"
    	"internal/buildcfg"
    	"strings"
    	"unicode"
    )
    
    var _ = fmt.Print
    
    type deadcodePass struct {
    	ctxt *Link
    	ldr  *loader.Loader
    	wq   heap // work queue, using min-heap for better locality
    
    	ifaceMethod        map[methodsig]bool // methods called from reached interface call sites
    	genericIfaceMethod map[string]bool    // names of methods called from reached generic interface call sites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    func symalign(ldr *loader.Loader, s loader.Sym) int32 {
    	min := int32(thearch.Minalign)
    	align := ldr.SymAlign(s)
    	if align >= min {
    		return align
    	} else if align != 0 {
    		return min
    	}
    	align = int32(thearch.Maxalign)
    	ssz := ldr.SymSize(s)
    	for int64(align) > ssz && align > min {
    		align >>= 1
    	}
    	ldr.SetSymAlign(s, align)
    	return align
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    //
    (Add(Ptr|64|32|16|8) ...) => (ADD ...)
    (Add64F ...) => (FADD ...)
    (Add32F ...) => (FADDS ...)
    
    (Sub(Ptr|64|32|16|8) ...) => (SUB ...)
    (Sub32F ...) => (FSUBS ...)
    (Sub64F ...) => (FSUB ...)
    
    (Min(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMINJDP x y)
    (Max(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMAXJDP x y)
    
    // Combine 64 bit integer multiply and adds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    		if err != nil {
    			panic(err)
    		}
    		ruleFile = w
    	}
    	_, err := fmt.Fprintln(ruleFile, s)
    	if err != nil {
    		panic(err)
    	}
    }
    
    var ruleFile io.Writer
    
    func min(x, y int64) int64 {
    	if x < y {
    		return x
    	}
    	return y
    }
    func max(x, y int64) int64 {
    	if x > y {
    		return x
    	}
    	return y
    }
    
    func isConstZero(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top