Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FlagLT (0.09 sec)

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

    // absorb flag constants into branches
    (EQ (FlagEQ) yes no) => (First yes no)
    (EQ (FlagLT) yes no) => (First no yes)
    (EQ (FlagGT) yes no) => (First no yes)
    
    (NE (FlagEQ) yes no) => (First no yes)
    (NE (FlagLT) yes no) => (First yes no)
    (NE (FlagGT) yes no) => (First yes no)
    
    (LT (FlagEQ) yes no) => (First no yes)
    (LT (FlagLT) yes no) => (First yes no)
    (LT (FlagGT) yes no) => (First no yes)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64CMPUconst(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (CMPUconst [d] (ANDconst z [c]))
    	// cond: uint64(d) > uint64(c)
    	// result: (FlagLT)
    	for {
    		d := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpPPC64ANDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		if !(uint64(d) > uint64(c)) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// both signed and unsigned comparison results.)
    
    		// These ops are for temporary use by rewrite rules. They
    		// cannot appear in the generated assembly.
    		{name: "FlagEQ"}, // equal
    		{name: "FlagLT"}, // signed < or unsigned <
    		{name: "FlagGT"}, // signed > or unsigned >
    	}
    
    	blocks := []blockData{
    		{name: "EQ", controls: 1},
    		{name: "NE", controls: 1},
    		{name: "LT", controls: 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    		},
    	},
    	{
    		name:   "InvertFlags",
    		argLen: 1,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagEQ",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagLT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    
    	{
    		name:        "ADD",
    		argLen:      2,
    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