Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ROTLconst (0.11 sec)

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

    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64ROTL(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ROTL x (MOVDconst [c]))
    	// result: (ROTLconst x [c&63])
    	for {
    		x := v_0
    		if v_1.Op != OpPPC64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		v.reset(OpPPC64ROTLconst)
    		v.AuxInt = int64ToAuxInt(c & 63)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top