Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SUBW (0.31 sec)

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

    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (SUBW x (MOVDconst [c]))
    	// result: (SUBWconst x [int32(c)])
    	for {
    		x := v_0
    		if v_1.Op != OpS390XMOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		v.reset(OpS390XSUBWconst)
    		v.AuxInt = int32ToAuxInt(int32(c))
    		v.AddArg(x)
    		return true
    	}
    	// match: (SUBW (MOVDconst [c]) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top