Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for modsw (0.1 sec)

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

    }
    func rewriteValuePPC64_OpMod32(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Mod32 x y)
    	// cond: buildcfg.GOPPC64 >= 9
    	// result: (MODSW x y)
    	for {
    		x := v_0
    		y := v_1
    		if !(buildcfg.GOPPC64 >= 9) {
    			break
    		}
    		v.reset(OpPPC64MODSW)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Mod32 x y)
    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