Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for Less32F (0.22 sec)

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

    	}
    }
    func rewriteValue386_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(Op386SETGF)
    		v0 := b.NewValue0(v.Pos, Op386UCOMISS, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValue386_OpLess32U(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritedec64.go

    }
    func rewriteValuedec64_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: (OrB (Less32U (Int64Hi x) (Int64Hi y)) (AndB (Eq32 (Int64Hi x) (Int64Hi y)) (Less32U (Int64Lo x) (Int64Lo y))))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpOrB)
    		v0 := b.NewValue0(v.Pos, OpLess32U, typ.Bool)
    		v1 := b.NewValue0(v.Pos, OpInt64Hi, typ.UInt32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    			v2.AuxInt = int64ToAuxInt(d - c - 1)
    			v.AddArg2(v0, v2)
    			return true
    		}
    		break
    	}
    	// match: (AndB (Less32U (Const32 [c]) x) (Less32U x (Const32 [d])))
    	// cond: uint32(d) >= uint32(c+1) && uint32(c+1) > uint32(c)
    	// result: (Less32U (Sub32 <x.Type> x (Const32 <x.Type> [c+1])) (Const32 <x.Type> [d-c-1]))
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, 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)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    	}
    }
    func rewriteValuePPC64_OpLess32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less32F x y)
    	// result: (FLessThan (FCMPU x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpPPC64FLessThan)
    		v0 := b.NewValue0(v.Pos, OpPPC64FCMPU, types.TypeFlags)
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.AddArg3(v0, v1, v2)
    		return true
    	}
    }
    func rewriteValueS390X_OpLess32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less32F x y)
    	// result: (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (FCMPS 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)
  6. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (RotateLeft32 ...) => (ROLW ...)
    (RotateLeft64 ...) => (ROL  ...)
    
    (Less64  ...) => (SLT  ...)
    (Less32  x y) => (SLT  (SignExt32to64 x) (SignExt32to64 y))
    (Less16  x y) => (SLT  (SignExt16to64 x) (SignExt16to64 y))
    (Less8   x y) => (SLT  (SignExt8to64  x) (SignExt8to64  y))
    (Less64U ...) => (SLTU ...)
    (Less32U x y) => (SLTU (ZeroExt32to64 x) (ZeroExt32to64 y))
    (Less16U x y) => (SLTU (ZeroExt16to64 x) (ZeroExt16to64 y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (Less16 x y) => (SGT (SignExt16to64 y) (SignExt16to64 x))
    (Less32 x y) => (SGT (SignExt32to64 y) (SignExt32to64 x))
    (Less64 x y) => (SGT y x)
    (Less(32|64)F x y) => (FPFlagTrue (CMPGT(F|D) y x)) // reverse operands to work around NaN
    
    (Less8U x y)  => (SGTU (ZeroExt8to64 y) (ZeroExt8to64 x))
    (Less16U x y) => (SGTU (ZeroExt16to64 y) (ZeroExt16to64 x))
    (Less32U x y) => (SGTU (ZeroExt32to64 y) (ZeroExt32to64 x))
    (Less64U x y) => (SGTU y x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteARM.go

    	}
    }
    func rewriteValueARM_OpLess32F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less32F x y)
    	// result: (GreaterThan (CMPF y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpARMGreaterThan)
    		v0 := b.NewValue0(v.Pos, OpARMCMPF, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (Less16 x y) => (SGT (SignExt16to32 y) (SignExt16to32 x))
    (Less32 x y) => (SGT y x)
    (Less(32|64)F x y) => (FPFlagTrue (CMPGT(F|D) y x)) // reverse operands to work around NaN
    
    (Less8U x y)  => (SGTU (ZeroExt8to32 y) (ZeroExt8to32 x))
    (Less16U x y) => (SGTU (ZeroExt16to32 y) (ZeroExt16to32 x))
    (Less32U x y) => (SGTU y x)
    
    (Leq8 x y)  => (XORconst [1] (SGT (SignExt8to32 x) (SignExt8to32 y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (Less16 x y) => (SGT (SignExt16to64 y) (SignExt16to64 x))
    (Less32 x y) => (SGT (SignExt32to64 y) (SignExt32to64 x))
    (Less64 x y) => (SGT y x)
    (Less(32|64)F x y) => (FPFlagTrue (CMPGT(F|D) y x)) // reverse operands to work around NaN
    
    (Less8U x y)  => (SGTU (ZeroExt8to64 y) (ZeroExt8to64 x))
    (Less16U x y) => (SGTU (ZeroExt16to64 y) (ZeroExt16to64 x))
    (Less32U x y) => (SGTU (ZeroExt32to64 y) (ZeroExt32to64 x))
    (Less64U x y) => (SGTU y x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
Back to top