Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for is32Bit (0.17 sec)

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

    	// match: (ADDconst [off1] (MOVDaddr [off2] {sym} ptr))
    	// cond: is32Bit(off1+int64(off2))
    	// result: (MOVDaddr [int32(off1)+off2] {sym} ptr)
    	for {
    		off1 := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpARM64MOVDaddr {
    			break
    		}
    		off2 := auxIntToInt32(v_0.AuxInt)
    		sym := auxToSym(v_0.Aux)
    		ptr := v_0.Args[0]
    		if !(is32Bit(off1 + int64(off2))) {
    			break
    		}
    		v.reset(OpARM64MOVDaddr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top