Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for int64ToAuxInt (0.1 sec)

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

    		if v_0.Op != OpRISCV64MOVBUreg {
    			break
    		}
    		x := v_0.Args[0]
    		if !(c <= 56) {
    			break
    		}
    		v.reset(OpRISCV64SRLI)
    		v.AuxInt = int64ToAuxInt(56 - c)
    		v0 := b.NewValue0(v.Pos, OpRISCV64SLLI, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(56)
    		v0.AddArg(x)
    		v.AddArg(v0)
    		return true
    	}
    	// match: (SLLI [c] (MOVHUreg x))
    	// cond: c <= 48
    	// result: (SRLI [48-c] (SLLI <typ.UInt64> [48] x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top