Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Neq64 (0.08 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Less(64|32|16|8)U (Const(64|32|16|8) <t> [-2]) x) => (Eq(64|32|16|8) x (Const(64|32|16|8) <t> [-1]))
    (Leq64 x c:(Const64 [math.MinInt64])) => (Eq64 x c)
    (Leq32 x c:(Const32 [math.MinInt32])) => (Eq32 x c)
    (Leq16 x c:(Const16 [math.MinInt16])) => (Eq16 x c)
    (Leq8  x c:(Const8  [math.MinInt8 ])) => (Eq8  x c)
    (Leq64 c:(Const64 [math.MaxInt64]) x) => (Eq64 x c)
    (Leq32 c:(Const32 [math.MaxInt32]) x) => (Eq32 x c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Eq32  x y) => (Equal (CMPW  x y))
    (Eq64  x y) => (Equal (CMP   x y))
    (EqPtr x y) => (Equal (CMP   x y))
    (Eq32F x y) => (Equal (FCMPS x y))
    (Eq64F x y) => (Equal (FCMPD x y))
    
    (Neq8   x y) => (NotEqual (CMPW (ZeroExt8to32  x) (ZeroExt8to32  y)))
    (Neq16  x y) => (NotEqual (CMPW (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Neq32  x y) => (NotEqual (CMPW  x y))
    (Neq64  x y) => (NotEqual (CMP   x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpLeq64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Leq64 x y)
    	// result: (XOR (MOVVconst [1]) (SGT x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpLOONG64XOR)
    		v0 := b.NewValue0(v.Pos, OpLOONG64MOVVconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueRISCV64_OpNeq64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Neq64 x y)
    	// result: (Not (Eq64 x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpNot)
    		v0 := b.NewValue0(v.Pos, OpEq64, typ.Bool)
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueMIPS64_OpLeq64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Leq64 x y)
    	// result: (XOR (MOVVconst [1]) (SGT x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpMIPS64XOR)
    		v0 := b.NewValue0(v.Pos, OpMIPS64MOVVconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
Back to top