Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Less16 (0.38 sec)

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

    (Less16 x (Const16 <t> [math.MinInt16+1])) => (Eq16 x (Const16 <t> [math.MinInt16]))
    (Less8  x (Const8  <t> [math.MinInt8 +1])) => (Eq8  x (Const8  <t> [math.MinInt8 ]))
    (Less64 (Const64 <t> [math.MaxInt64-1]) x) => (Eq64 x (Const64 <t> [math.MaxInt64]))
    (Less32 (Const32 <t> [math.MaxInt32-1]) x) => (Eq32 x (Const32 <t> [math.MaxInt32]))
    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/genericOps.go

    	{name: "Less8", argLength: 2, typ: "Bool"},  // arg0 < arg1, signed
    	{name: "Less8U", argLength: 2, typ: "Bool"}, // arg0 < arg1, unsigned
    	{name: "Less16", argLength: 2, typ: "Bool"},
    	{name: "Less16U", argLength: 2, typ: "Bool"},
    	{name: "Less32", argLength: 2, typ: "Bool"},
    	{name: "Less32U", argLength: 2, typ: "Bool"},
    	{name: "Less64", argLength: 2, typ: "Bool"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValuePPC64_OpLess16(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less16 x y)
    	// result: (LessThan (CMPW (SignExt16to32 x) (SignExt16to32 y)))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpPPC64LessThan)
    		v0 := b.NewValue0(v.Pos, OpPPC64CMPW, types.TypeFlags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM64.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Less16U zero:(MOVDconst [0]) x)
    	// result: (Neq16 zero x)
    	for {
    		zero := v_0
    		if zero.Op != OpARM64MOVDconst || auxIntToInt64(zero.AuxInt) != 0 {
    			break
    		}
    		x := v_1
    		v.reset(OpNeq16)
    		v.AddArg2(zero, x)
    		return true
    	}
    	// match: (Less16U x (MOVDconst [1]))
    	// result: (Eq16 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)
  5. pkg/printers/internalversion/printers_test.go

    			[]metav1.TableRow{{Cells: []interface{}{"test15", "0/2", apiv1.PodReasonSchedulingGated, "0", "<unknown>"}}},
    		},
    		{
    			// Test pod condition succeed
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test16"},
    				Spec:       api.PodSpec{Containers: make([]api.Container, 1)},
    				Status: api.PodStatus{
    					Phase: api.PodSucceeded,
    					ContainerStatuses: []api.ContainerStatus{
    						{
    							Ready:        false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    		name:    "Less8",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less8U",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less16",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less16U",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less32",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Less32U",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Less(8U|16U|32U|64U) x (MOVDconst [1])) => (Eq(8|16|32|64)  x (MOVDconst [0]))
    (Leq(8U|16U|32U|64U)  (MOVDconst [1]) x) => (Neq(8|16|32|64) (MOVDconst [0]) x)
    
    (Less8U  x y) => (LessThanU (CMPW (ZeroExt8to32  x) (ZeroExt8to32  y)))
    (Less16U x y) => (LessThanU (CMPW (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Less32U x y) => (LessThanU (CMPW x y))
    (Less64U x y) => (LessThanU (CMP x y))
    
    (Leq8  x y) => (LessEqual (CMPW (SignExt8to32  x) (SignExt8to32  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)
Back to top