Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sequentialAddresses (0.21 sec)

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

    	if 0 <= off && off < int64(len(lsym.P)) {
    		src = lsym.P[off:]
    	}
    	buf := make([]byte, 8)
    	copy(buf, src)
    	return byteorder.Uint64(buf)
    }
    
    // sequentialAddresses reports true if it can prove that x + n == y
    func sequentialAddresses(x, y *Value, n int64) bool {
    	if x == y && n == 0 {
    		return true
    	}
    	if x.Op == Op386ADDL && y.Op == Op386LEAL1 && y.AuxInt == n && y.Aux == nil &&
    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