Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for Less32F (0.15 sec)

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

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less32U zero:(MOVDconst [0]) x)
    	// result: (Neq32 zero x)
    	for {
    		zero := v_0
    		if zero.Op != OpARM64MOVDconst || auxIntToInt64(zero.AuxInt) != 0 {
    			break
    		}
    		x := v_1
    		v.reset(OpNeq32)
    		v.AddArg2(zero, x)
    		return true
    	}
    	// match: (Less32U x (MOVDconst [1]))
    	// result: (Eq32 x (MOVDconst [0]))
    	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)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    }
    func rewriteValueAMD64_OpLess32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less32F x y)
    	// result: (SETGF (UCOMISS y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpAMD64SETGF)
    		v0 := b.NewValue0(v.Pos, OpAMD64UCOMISS, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

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

    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueWasm_OpLess32U(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less32U x y)
    	// result: (I64LtU (ZeroExt32to64 x) (ZeroExt32to64 y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpWasmI64LtU)
    		v0 := b.NewValue0(v.Pos, OpZeroExt32to64, typ.UInt64)
    		v0.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Less16 x y) => (LessThan (CMP (SignExt16to32 x) (SignExt16to32 y)))
    (Less32 x y) => (LessThan (CMP x y))
    (Less(32|64)F x y) => (GreaterThan (CMP(F|D) y x)) // reverse operands to work around NaN
    
    (Less8U x y)  => (LessThanU (CMP (ZeroExt8to32 x) (ZeroExt8to32 y)))
    (Less16U x y) => (LessThanU (CMP (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Less32U x y) => (LessThanU (CMP x y))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    		generic: true,
    	},
    	{
    		name:    "Less32",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less32U",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less64",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less64U",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less32F",
    		argLen:  2,
    		generic: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top