Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for InvertFlags (0.27 sec)

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

    // reverse ordering of compare instruction
    (SETL (InvertFlags x)) => (SETG x)
    (SETG (InvertFlags x)) => (SETL x)
    (SETB (InvertFlags x)) => (SETA x)
    (SETA (InvertFlags x)) => (SETB x)
    (SETLE (InvertFlags x)) => (SETGE x)
    (SETGE (InvertFlags x)) => (SETLE x)
    (SETBE (InvertFlags x)) => (SETAE x)
    (SETAE (InvertFlags x)) => (SETBE x)
    (SETEQ (InvertFlags x)) => (SETEQ x)
    (SETNE (InvertFlags x)) => (SETNE x)
    
    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/_gen/ARM64.rules

    // absorb InvertFlags into branches
    (LT  (InvertFlags cmp) yes no) => (GT cmp yes no)
    (GT  (InvertFlags cmp) yes no) => (LT cmp yes no)
    (LE  (InvertFlags cmp) yes no) => (GE cmp yes no)
    (GE  (InvertFlags cmp) yes no) => (LE cmp yes no)
    (ULT (InvertFlags cmp) yes no) => (UGT cmp yes no)
    (UGT (InvertFlags cmp) yes no) => (ULT cmp yes no)
    (ULE (InvertFlags cmp) yes no) => (UGE cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM.rules

    // absorb InvertFlags into branches
    (LT (InvertFlags cmp) yes no) => (GT cmp yes no)
    (GT (InvertFlags cmp) yes no) => (LT cmp yes no)
    (LE (InvertFlags cmp) yes no) => (GE cmp yes no)
    (GE (InvertFlags cmp) yes no) => (LE cmp yes no)
    (ULT (InvertFlags cmp) yes no) => (UGT cmp yes no)
    (UGT (InvertFlags cmp) yes no) => (ULT cmp yes no)
    (ULE (InvertFlags cmp) yes no) => (UGE cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (GE (FlagGT) yes no) => (First yes no)
    
    // absorb InvertFlags into branches
    (LT (InvertFlags cmp) yes no) => (GT cmp yes no)
    (GT (InvertFlags cmp) yes no) => (LT cmp yes no)
    (LE (InvertFlags cmp) yes no) => (GE cmp yes no)
    (GE (InvertFlags cmp) yes no) => (LE cmp yes no)
    (EQ (InvertFlags cmp) yes no) => (EQ cmp yes no)
    (NE (InvertFlags cmp) yes no) => (NE cmp yes no)
    
    // constant comparisons
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. test/codegen/comparisons.go

    }
    
    type Point struct {
    	X, Y int
    }
    
    // invertLessThanNoov checks (LessThanNoov (InvertFlags x)) is lowered as
    // CMP, CSET, CSEL instruction sequence. InvertFlags are only generated under
    // certain conditions, see canonLessThan, so if the code below does not
    // generate an InvertFlags OP, this check may fail.
    func invertLessThanNoov(p1, p2, p3 Point) bool {
    	// arm64:`CMP`,`CSET`,`CSEL`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (CMP x (MOVDconst [c])) && is32Bit(c) => (CMPconst x [int32(c)])
    (CMP (MOVDconst [c]) x) && is32Bit(c) => (InvertFlags (CMPconst x [int32(c)]))
    
    // Unsigned 64-bit comparison with immediate.
    (CMPU x (MOVDconst [c])) && isU32Bit(c) => (CMPUconst x [int32(c)])
    (CMPU (MOVDconst [c]) x) && isU32Bit(c) => (InvertFlags (CMPUconst x [int32(c)]))
    
    // Signed and unsigned 32-bit comparison with immediate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite386.go

    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		v.reset(Op386CMPBconst)
    		v.AuxInt = int8ToAuxInt(int8(c))
    		v.AddArg(x)
    		return true
    	}
    	// match: (CMPB (MOVLconst [c]) x)
    	// result: (InvertFlags (CMPBconst x [int8(c)]))
    	for {
    		if v_0.Op != Op386MOVLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_1
    		v.reset(Op386InvertFlags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		return true
    	}
    	return false
    }
    func rewriteValueAMD64_OpAMD64CMOVLCC(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (CMOVLCC x y (InvertFlags cond))
    	// result: (CMOVLLS x y cond)
    	for {
    		x := v_0
    		y := v_1
    		if v_2.Op != OpAMD64InvertFlags {
    			break
    		}
    		cond := v_2.Args[0]
    		v.reset(OpAMD64CMOVLLS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteARM.go

    		if v_1.Op != OpARMFlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_1.AuxInt)
    		if !(fc.ult()) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (CMOVWHSconst x (InvertFlags flags) [c])
    	// result: (CMOVWLSconst x flags [c])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		x := v_0
    		if v_1.Op != OpARMInvertFlags {
    			break
    		}
    		flags := v_1.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/386Ops.go

    			faultOnNilArg1: true,
    		},
    
    		// (InvertFlags (CMPL a b)) == (CMPL b a)
    		// So if we want (SETL (CMPL a b)) but we can't do that because a is a constant,
    		// then we do (SETL (InvertFlags (CMPL b a))) instead.
    		// Rewrites will convert this to (SETG (CMPL b a)).
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    		// Pseudo-ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top