Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mergePPC64RShiftMask (0.73 sec)

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

    		v.AddArg2(x, r)
    		return true
    	}
    	// match: (ANDconst [m] (SRWconst x [s]))
    	// cond: mergePPC64RShiftMask(m,s,32) == 0
    	// result: (MOVDconst [0])
    	for {
    		m := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpPPC64SRWconst {
    			break
    		}
    		s := auxIntToInt64(v_0.AuxInt)
    		if !(mergePPC64RShiftMask(m, s, 32) == 0) {
    			break
    		}
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(0)
    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