Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for Less64$ (0.19 sec)

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

    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less64",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less64U",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less32F",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less64F",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Leq8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		y := v_1
    		v.reset(OpMIPSSGTU)
    		v.AddArg2(y, x)
    		return true
    	}
    }
    func rewriteValueMIPS_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
    		y := v_1
    		v.reset(OpMIPSFPFlagTrue)
    		v0 := b.NewValue0(v.Pos, OpMIPSCMPGTD, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite386.go

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

    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueARM_OpLess64F(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Less64F x y)
    	// result: (GreaterThan (CMPD y x))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpARMGreaterThan)
    		v0 := b.NewValue0(v.Pos, OpARMCMPD, types.TypeFlags)
    		v0.AddArg2(y, x)
    		v.AddArg(v0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top