Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for shiftName (0.12 sec)

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

    	// Check that all the shift/trunc are of the same base value.
    	shiftBase := getShiftBase(a)
    	if shiftBase == nil {
    		return false
    	}
    	for i := int64(0); i < n; i++ {
    		if !isShiftBase(a[i].store, shiftBase) {
    			return false
    		}
    	}
    
    	// Check for writes in little-endian or big-endian order.
    	isLittleEndian := true
    	shift0 := shift(a[0].store, shiftBase)
    	for i := int64(1); i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top