Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    		v.AddArg(x)
    		return true
    	}
    	return false
    }
    func rewriteValueARM_OpARMSRR(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (SRR x (MOVWconst [c]))
    	// result: (SRRconst x [c&31])
    	for {
    		x := v_0
    		if v_1.Op != OpARMMOVWconst {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		v.reset(OpARMSRRconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top