Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ROLW (0.07 sec)

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

    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386ROLW(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ROLW x (MOVLconst [c]))
    	// result: (ROLWconst [int16(c&15)] x)
    	for {
    		x := v_0
    		if v_1.Op != Op386MOVLconst {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		v.reset(Op386ROLWconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
Back to top