Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SHRB (0.03 sec)

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

    		return true
    	}
    	// match: (SHRB _ (MOVQconst [c]))
    	// cond: c&31 >= 8
    	// result: (MOVLconst [0])
    	for {
    		if v_1.Op != OpAMD64MOVQconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		if !(c&31 >= 8) {
    			break
    		}
    		v.reset(OpAMD64MOVLconst)
    		v.AuxInt = int32ToAuxInt(0)
    		return true
    	}
    	// match: (SHRB _ (MOVLconst [c]))
    	// cond: c&31 >= 8
    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