Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SRDconst (0.07 sec)

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

    		if !(sizeof(x.Type) == 8) {
    			break
    		}
    		v.reset(OpPPC64SRWconst)
    		v.AuxInt = int64ToAuxInt(c)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBZreg (SRDconst [c] x))
    	// cond: c>=56
    	// result: (SRDconst [c] x)
    	for {
    		if v_0.Op != OpPPC64SRDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		x := v_0.Args[0]
    		if !(c >= 56) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    }
    func rewriteValueS390X_OpAvg64u(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Avg64u <t> x y)
    	// result: (ADD (SRDconst <t> (SUB <t> x y) [1]) y)
    	for {
    		t := v.Type
    		x := v_0
    		y := v_1
    		v.reset(OpS390XADD)
    		v0 := b.NewValue0(v.Pos, OpS390XSRDconst, t)
    		v0.AuxInt = uint8ToAuxInt(1)
    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