Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CMPWconst (0.23 sec)

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

    	// match: (CMPW x (MOVDconst [c]))
    	// result: (CMPWconst [int32(c)] x)
    	for {
    		x := v_0
    		if v_1.Op != OpARM64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		v.reset(OpARM64CMPWconst)
    		v.AuxInt = int32ToAuxInt(int32(c))
    		v.AddArg(x)
    		return true
    	}
    	// match: (CMPW (MOVDconst [c]) x)
    	// result: (InvertFlags (CMPWconst [int32(c)] x))
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top