Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Less64U$ (0.27 sec)

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

    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValuePPC64_OpLess64U(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less64U x y)
    	// result: (LessThan (CMPU x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpPPC64LessThan)
    		v0 := b.NewValue0(v.Pos, OpPPC64CMPU, types.TypeFlags)
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    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(v0, v1, v2)
    		return true
    	}
    }
    func rewriteValueS390X_OpLess64U(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less64U x y)
    	// result: (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMPU x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpS390XLOCGR)
    		v.Aux = s390xCCMaskToAux(s390x.Less)
    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