Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for FlagLT_UGT (0.21 sec)

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

    (CMOV(QEQ|QGT|QGE|QHI|QCC|LEQ|LGT|LGE|LHI|LCC|WEQ|WGT|WGE|WHI|WCC) y _ (FlagLT_ULT)) => y
    (CMOV(QNE|QLT|QLE|QHI|QCC|LNE|LLT|LLE|LHI|LCC|WNE|WLT|WLE|WHI|WCC) _ x (FlagLT_UGT)) => x
    (CMOV(QEQ|QGT|QGE|QCS|QLS|LEQ|LGT|LGE|LCS|LLS|WEQ|WGT|WGE|WCS|WLS) y _ (FlagLT_UGT)) => y
    
    // Miscellaneous
    (IsNonNil p) => (SETNE (TESTQ p p))
    (IsInBounds idx len) => (SETB (CMPQ idx len))
    (IsSliceInBounds idx len) => (SETBE (CMPQ idx len))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite386.go

    			break
    		}
    		v.reset(Op386FlagLT_ULT)
    		return true
    	}
    	// match: (CMPBconst (MOVLconst [x]) [y])
    	// cond: int8(x)<y && uint8(x)>uint8(y)
    	// result: (FlagLT_UGT)
    	for {
    		y := auxIntToInt8(v.AuxInt)
    		if v_0.Op != Op386MOVLconst {
    			break
    		}
    		x := auxIntToInt32(v_0.AuxInt)
    		if !(int8(x) < y && uint8(x) > uint8(y)) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    	// match: (CMOVLCC y _ (FlagLT_ULT))
    	// result: y
    	for {
    		y := v_0
    		if v_2.Op != OpAMD64FlagLT_ULT {
    			break
    		}
    		v.copyOf(y)
    		return true
    	}
    	// match: (CMOVLCC _ x (FlagLT_UGT))
    	// result: x
    	for {
    		x := v_1
    		if v_2.Op != OpAMD64FlagLT_UGT {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		// These ops are for temporary use by rewrite rules. They
    		// cannot appear in the generated assembly.
    		{name: "FlagEQ"},     // equal
    		{name: "FlagLT_ULT"}, // signed < and unsigned <
    		{name: "FlagLT_UGT"}, // signed < and unsigned >
    		{name: "FlagGT_UGT"}, // signed > and unsigned <
    		{name: "FlagGT_ULT"}, // signed > and unsigned >
    
    		// Special ops for PIC floating-point constants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// These ops are for temporary use by rewrite rules. They
    		// cannot appear in the generated assembly.
    		{name: "FlagEQ"},     // equal
    		{name: "FlagLT_ULT"}, // signed < and unsigned <
    		{name: "FlagLT_UGT"}, // signed < and unsigned >
    		{name: "FlagGT_UGT"}, // signed > and unsigned >
    		{name: "FlagGT_ULT"}, // signed > and unsigned <
    
    		// Atomic loads.  These are just normal loads but return <value,memory> tuples
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/ssa/opGen.go

    			},
    		},
    	},
    	{
    		name:   "FlagEQ",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagLT_ULT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagLT_UGT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_UGT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_ULT",
    		argLen: 0,
    		reg:    regInfo{},
    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