Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for Less64$ (0.16 sec)

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

    (RotateLeft64 ...) => (RLLG ...)
    
    // Lowering comparisons
    (Less64      x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMP x y))
    (Less32      x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMPW x y))
    (Less(16|8)  x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMPW (MOV(H|B)reg x) (MOV(H|B)reg y)))
    (Less64U     x y) => (LOCGR {s390x.Less} (MOVDconst [0]) (MOVDconst [1]) (CMPU x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritedec64.go

    		v.AddArg2(v0, v3)
    		return true
    	}
    }
    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)
    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/_gen/ARM64.rules

    (Less32U x y) => (LessThanU (CMPW x y))
    (Less64U x y) => (LessThanU (CMP x y))
    
    (Leq8  x y) => (LessEqual (CMPW (SignExt8to32  x) (SignExt8to32  y)))
    (Leq16 x y) => (LessEqual (CMPW (SignExt16to32 x) (SignExt16to32 y)))
    (Leq32 x y) => (LessEqual (CMPW x y))
    (Leq64 x y) => (LessEqual (CMP x y))
    
    // Refer to the comments for op Less64F above.
    (Leq32F x y) => (LessEqualF (FCMPS 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)
  4. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Less64 x y)
    	// result: (SGT y x)
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpLOONG64SGT)
    		v.AddArg2(y, x)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpLess64F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less64F x y)
    	// result: (FPFlagTrue (CMPGTD y x))
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Less64 x y)
    	// result: (SGT y x)
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpMIPS64SGT)
    		v.AddArg2(y, x)
    		return true
    	}
    }
    func rewriteValueMIPS64_OpLess64F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less64F x y)
    	// result: (FPFlagTrue (CMPGTD y x))
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  6. 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: (Leq64U x y)
    	// result: (Not (Less64U y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpNot)
    		v0 := b.NewValue0(v.Pos, OpLess64U, typ.Bool)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueRISCV64_OpLeq8(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)
  7. src/cmd/compile/internal/ssa/rewritePPC64.go

    	}
    }
    func rewriteValuePPC64_OpLess64F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less64F 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)
  8. src/cmd/compile/internal/ssa/rewriteS390X.go

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

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

    	}
    }
    func rewriteValueAMD64_OpLess64F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less64F x y)
    	// result: (SETGF (UCOMISD y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpAMD64SETGF)
    		v0 := b.NewValue0(v.Pos, OpAMD64UCOMISD, 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)
Back to top