Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Neq64 (0.3 sec)

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

    		return true
    	}
    	// match: (Leq64 x c:(Const64 [math.MinInt64]))
    	// result: (Eq64 x c)
    	for {
    		x := v_0
    		c := v_1
    		if c.Op != OpConst64 || auxIntToInt64(c.AuxInt) != math.MinInt64 {
    			break
    		}
    		v.reset(OpEq64)
    		v.AddArg2(x, c)
    		return true
    	}
    	// match: (Leq64 c:(Const64 [math.MaxInt64]) x)
    	// result: (Eq64 x c)
    	for {
    		c := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// match: (Leq64U x zero:(MOVDconst [0]))
    	// result: (Eq64 x zero)
    	for {
    		x := v_0
    		zero := v_1
    		if zero.Op != OpARM64MOVDconst || auxIntToInt64(zero.AuxInt) != 0 {
    			break
    		}
    		v.reset(OpEq64)
    		v.AddArg2(x, zero)
    		return true
    	}
    	// match: (Leq64U (MOVDconst [1]) x)
    	// result: (Neq64 (MOVDconst [0]) 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)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueAMD64_OpLeq64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Leq64 x y)
    	// result: (SETLE (CMPQ x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpAMD64SETLE)
    		v0 := b.NewValue0(v.Pos, OpAMD64CMPQ, types.TypeFlags)
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top