Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for moduw (0.04 sec)

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

    		v.AuxInt = int64ToAuxInt(c % d)
    		return true
    	}
    	return false
    }
    func rewriteValueARM64_OpARM64MODW(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MODW (MOVDconst [c]) (MOVDconst [d]))
    	// cond: d != 0
    	// result: (MOVDconst [int64(uint32(int32(c)%int32(d)))])
    	for {
    		if v_0.Op != OpARM64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    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