Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (SHRQ x (MOVQconst [c]))
    	// result: (SHRQconst [int8(c&63)] x)
    	for {
    		x := v_0
    		if v_1.Op != OpAMD64MOVQconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		v.reset(OpAMD64SHRQconst)
    		v.AuxInt = int8ToAuxInt(int8(c & 63))
    		v.AddArg(x)
    		return true
    	}
    	// match: (SHRQ x (MOVLconst [c]))
    	// result: (SHRQconst [int8(c&63)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top